@charset "utf-8";

/*==== RESET =====================*/

*, *::before, *::after {
  box-sizing: border-box;
}
html{
  height: 100%;
  font-size: 62.5%;
}
html.fixed, html.fixed body {
  height: 100%;
  overflow: hidden;
}
body{
  height: 100%;
  margin: 0;
  color: #090F44;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
}
body.fixed {
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: normal;
}
a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.8;
}
p {
  margin: 0;
  font-weight: 400;
}
main p + p {
  margin-top: 2rem;
}
img{
  width: 100%;
  vertical-align: bottom;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
table{
  border-collapse: collapse;
}
th, td {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 2rem;
  font-weight: normal;
}
.preload {
  transition: none !important;
}

/*==== COMMON =====================*/
:root {
  --headerHeight: 120px;
  --headerLogoSize: 152px;
  --globalContentPadding: 48px;
  /* --globalContentWidth: calc(1440px + (2 * var(--globalContentPadding))); */
  --globalContentWidth: calc(800px + (2 * var(--globalContentPadding)));
  --sectionRadius: 48px;
}
main {

}
main a {
  color: #00AFCC;
  text-decoration: underline;
}
.break-line {
  display: inline-block;
}
.sp-content,
.sp-content-540 {
  display: none;
}
@media screen and (max-width:1240px) {
  :root {
    --headerLogoSize: 128px;
  }
}
@media screen and (max-width:768px) {
  :root {
    --globalContentPadding: 32px !important;
    --headerLogoSize: 96px;
  }
  .sp-content {
    display: block;
  }
  .pc-content {
    display: none;
  }
}
@media screen and (max-width:540px) {
  :root {
    --globalContentPadding: 8.6vw !important;
    --headerLogoSize: 72px;
  }
  .sp-content-540 {
    display: block;
  }
  .pc-content-540 {
    display: none;
  }
}

/*==== HEADER =====================*/
.global-header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.global-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 32px;
  max-width: var(--globalContentWidth);
  margin: 0 auto;
  /* padding: 16px var(--globalContentPadding) 0; */
}
.global-header__logo {
  display: inline-block;
  max-width: var(--headerLogoSize);
  position: fixed;
  top: 24px;
  left: var(--globalContentPadding);
}
.global-header__hamburger-btn {
  display: none;
  aspect-ratio: 28 / 10;
  width: 28px;
  border: none;
  background-color: transparent;
  position: fixed;
  top: 32px;
  right: var(--globalContentPadding);
  cursor: pointer;
}
.global-header__hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  transform-origin: center;
}
.global-header__hamburger-btn span:first-of-type {
  top: 0;
  transform: translateY(0) rotate(0);
}
.global-header__hamburger-btn span:last-of-type {
  bottom: 0;
  transform: translateY(0) rotate(0);
}
@media screen and (max-width:1120px) {
  .global-header__hamburger-btn {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .global-header__logo {
    top: 16px;
    left: 8px;
  }
}


/* navigation
------------------------------------------------ */
.global-menu {
  max-width: calc(100% - var(--headerLogoSize) - var(--globalContentPadding));
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: fixed;
  top: 40px;
  right: var(--globalContentPadding);
}
.global-menu__link-list {
  display: flex;
  justify-content: flex-end;
  gap: 8px 48px;
}
.global-menu__link-item:not(:first-of-type) {
  position: relative;
}
.global-menu__link-item:not(:first-of-type)::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translate(50%, -50%);
}
.global-menu__link-item a {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 1240px) {
  .global-menu {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1120px) {
  .global-menu {
    width: 100%;
    max-width: fit-content;
    background-color: rgba(0, 0, 0, 0.8);
    right: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
  }
  .global-menu__inner {
    max-height: 100vh;
    max-height: 100svh;
    overflow: auto;
  }
  .global-header:has(.global-header__hamburger-btn.active) .global-menu {
    pointer-events: auto;
    animation: global-menu-open 0.3s ease-in-out forwards;
  }
  .global-header:has(.global-header__hamburger-btn.not-active) .global-menu {
    pointer-events: auto;
    animation: global-menu-close 0.3s ease-in-out forwards;
  }
  .global-menu__inner {
    padding: 64px var(--globalContentPadding) 64px;

  }
  .global-menu__link-list {
    flex-direction: column;
    gap: 16px;
    filter: blur(10px);
    transition: filter 0.3s 0.2s;
  }
  .global-header:has(.global-header__hamburger-btn.active) .global-menu__link-list {
    filter: blur(0);
  }
  .global-menu__link-item:not(:first-of-type)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .global-menu {
    font-size: 1.4rem;
  }
}
@keyframes global-menu-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes global-menu-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* contents
------------------------------------------------ */
.main {

}



/* footer
------------------------------------------------ */
.global-footer {
  padding-top: 38px;
  padding-bottom: 16px;
  background-color: #ae694e;
  color: #fff;
}
.global-footer__inner {
  max-width: var(--globalContentWidth);
  margin: 0 auto;
  padding: 0 var(--globalContentPadding);
}
.global-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 190px) 1fr;
  align-items: center;
}
.global-footer__logo {
  display: block;
  max-width: 190px;
}
.global-footer__nav {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.global-footer__nav-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px 0;
  padding: 0 24px;
}
.global-footer__nav-item a {
  color: #fff;
}
.global-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 72px;
  font-size: 1.2rem;
}
.global-footer__copyright-logo {
  max-width: 122px;
}
@media screen and (max-width: 768px) {
  .global-footer__logo {
    max-width: 120px;
  }
  .global-footer__nav-list {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .global-footer {
    padding-bottom: 24px;
  }
  .global-footer__inner {
    padding: 0 5.6vw;
  }
  .global-footer__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px 0;
  }
  .global-footer__logo {
    max-width: 75px;
    margin: 0 auto;
  }
  .global-footer__nav {
    --min: 120px;
    display: grid;
		grid-template-columns: repeat(auto-fill, minmax(var(--min), 1fr));
    gap: 12px;
    padding: 24px 16px;
    font-size: 1.2rem;
    letter-spacing: 0.025em;
  }
  .global-footer__nav-list {
    padding: 0;
  }
  .global-footer__copyright {
    margin-top: 24px;
  }
  .global-footer__copyright-logo {
    max-width: 94px;
  }
  .global-footer__copyright {
    font-size: 1rem;
    gap: 8px 16px;
  }
}