@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.header {
  width: 100%;
  height: var(--header);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 2px 50px rgba(0, 0, 0, 0.15);
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gray1);
  width: 100%;
  height: 1px;
  pointer-events: none;
}
.header__inner {
  width: 96.6666666667%;
  height: 100%;
  margin: 0 auto;
  margin-right: 0;
  display: grid;
  grid-template-columns: 160px 1fr 140px;
  -moz-column-gap: min(40px, 2.6666666667%);
       column-gap: min(40px, 2.6666666667%);
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    grid-template-columns: 100px auto;
    margin: 0 0 0 auto;
  }
}
.header__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .header__logo-link:hover {
    opacity: 0.7;
  }
}
.header__logo-img {
  width: 100%;
}
.header__nav {
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto 1fr;
  justify-items: end;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    padding: 10px 0 30px;
    overflow: auto;
    height: calc(100dvh - var(--header));
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: var(--header);
    left: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, clip-path 0.3s ease;
    clip-path: rect(0 100% 0 0);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    overscroll-behavior: contain;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    clip-path: rect(auto auto auto auto);
  }
}
.header__nav-list {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: min(25px, 1.6666666667%);
       column-gap: min(25px, 1.6666666667%);
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    -moz-column-gap: min(20px, 2.44140625%);
         column-gap: min(20px, 2.44140625%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.header__nav-item {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .header__nav-item:nth-child(n+2) .header__nav-link,
  .header__nav-item:nth-child(n+2) .header__nav-btn {
    border-top: 1px solid var(--gray1);
  }
}
@media (hover) {
  .header__nav-item:has(.header__sub):hover > .header__nav-btn {
    color: var(--marukin);
  }
  .header__nav-item:has(.header__sub):hover > .header__nav-btn .header__nav-btn--icon::before, .header__nav-item:has(.header__sub):hover > .header__nav-btn .header__nav-btn--icon::after {
    background: var(--marukin);
  }
  .header__nav-item:has(.header__sub):hover > .header__nav-btn .header__nav-btn--icon::before {
    height: 0;
  }
}
@media screen and (hover) and (max-width: 1024px) {
  .header__nav-item:has(.header__sub):hover > .header__nav-btn .header__nav-btn--icon::before {
    height: 100%;
  }
}
@media (hover) {
  .header__nav-item:has(.header__sub):hover > .header__sub {
    visibility: visible;
    opacity: 1;
    clip-path: rect(auto auto auto auto);
  }
}
@media screen and (hover) and (max-width: 1024px) {
  .header__nav-item:has(.header__sub):hover > .header__sub {
    visibility: hidden;
    opacity: 0;
    clip-path: rect(0 100% 0 0);
  }
}
@media (hover) {
  .header__nav-item:has(.header__sub):hover > .header__mask {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (hover) and (max-width: 1024px) {
  .header__nav-item:has(.header__sub):hover > .header__mask {
    opacity: 0;
    visibility: hidden;
  }
}
.header__nav-item:has(.header__sub).is-open > .header__nav-btn {
  color: var(--marukin);
}
.header__nav-item:has(.header__sub).is-open > .header__nav-btn .header__nav-btn--icon::before, .header__nav-item:has(.header__sub).is-open > .header__nav-btn .header__nav-btn--icon::after {
  background: var(--marukin);
}
.header__nav-item:has(.header__sub).is-open > .header__nav-btn .header__nav-btn--icon::before {
  height: 0;
}
.header__nav-item:has(.header__sub).is-open > .header__sub {
  visibility: visible;
  opacity: 1;
  clip-path: rect(auto auto auto auto);
}
.header__nav-item:has(.header__sub).is-open > .header__mask {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .header__nav-item:has(.header__sub).is-open > .header__mask {
    opacity: 0;
    visibility: hidden;
  }
}
.header__nav-btn, .header__nav-link {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: var(--sm);
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn, .header__nav-link {
    width: 90%;
    margin: 0 auto;
    justify-content: flex-start;
    padding: 5.2083333333vw 0;
    font-size: 4.1666666667vw;
  }
}
.header__nav-btn.is-current, .header__nav-link.is-current {
  color: var(--marukin);
}
.header__nav-btn.is-current::before, .header__nav-link.is-current::before {
  content: "";
  width: 4px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--marukin);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .header__nav-btn.is-current::before, .header__nav-link.is-current::before {
    display: none;
  }
}
.header__nav-btn.is-current .header__nav-btn--icon::before, .header__nav-btn.is-current .header__nav-btn--icon::after, .header__nav-link.is-current .header__nav-btn--icon::before, .header__nav-link.is-current .header__nav-btn--icon::after {
  background: var(--marukin);
}
.header__nav-btn {
  cursor: auto;
}
.header__nav-btn--icon {
  width: 8px;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn--icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.515625vw;
  }
}
.header__nav-btn--icon::before, .header__nav-btn--icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black);
  transform-origin: center center;
  transition: background 0.3s ease, height 0.3s ease;
}
.header__nav-btn--icon::after {
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn--icon::after {
    height: 0.2604166667vw;
  }
}
.header__nav-btn--icon::before {
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__nav-btn--icon::before {
    width: 0.2604166667vw;
  }
}
.header__nav-link {
  transition: color 0.3s ease;
}
@media (hover) {
  .header__nav-link:hover {
    color: var(--marukin);
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.515625vw;
    aspect-ratio: 27/14;
    -webkit-mask-image: url("/common/img/icon_arrow.svg");
            mask-image: url("/common/img/icon_arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: var(--black);
  }
}
.header__btn-group {
  width: 130px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .header__btn-group:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .header__btn-group {
    display: none;
  }
}
.header__btn-group img {
  width: 100%;
}
.header__sub {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  padding: 50px 0;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  clip-path: rect(0 100% 0 0);
  transition: opacity 0.3s ease, visibility 0.3s ease, clip-path 0.3s cubic-bezier(0.52, 0, 0.085, 1), height 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__sub {
    height: 0;
    background: var(--gray2);
    opacity: 0;
    visibility: hidden;
    position: static;
    transform: translateY(0);
    clip-path: rect(auto auto auto auto);
    padding: 0;
  }
}
.header__sub-inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media screen and (max-width: 1024px) {
  .header__sub-inner {
    width: 84%;
    grid-template-columns: repeat(1, 1fr);
    padding: 10px 0;
  }
}
.header__sub-title, .header__sub-list {
  width: 100%;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .header__sub-title, .header__sub-list {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__sub-title, .header__sub-list {
    padding: 0;
  }
}
.header__sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--gray1);
  font-size: var(--lg);
}
@media screen and (max-width: 1024px) {
  .header__sub-title {
    display: none;
  }
}
.header__sub-list {
  padding-left: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .header__sub-list {
    flex-direction: column;
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0;
  }
}
.header__sub-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__sub-item {
    width: 100%;
  }
  .header__sub-item:nth-child(n+2) {
    border-top: 1px solid var(--gray1);
  }
}
.header__sub-link {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: var(--sm);
  transition: color 0.3s ease;
}
@media (hover) {
  .header__sub-link:hover {
    color: var(--marukin);
  }
  .header__sub-link:hover::after {
    background: var(--marukin);
  }
}
@media screen and (max-width: 1024px) {
  .header__sub-link {
    width: 100%;
    padding: 3.90625vw 0;
    font-size: 3.125vw;
  }
}
.header__sub-link::after {
  content: "";
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
  transition: background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__sub-link::after {
    width: 3.515625vw;
    aspect-ratio: 27/14;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header__mask {
  width: 100%;
  height: calc(100dvh - var(--header));
  position: fixed;
  top: var(--header);
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .header__mask {
    display: none;
  }
}
.header__contact {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  transition: opacity 0.3s ease;
  background: var(--black);
}
@media (hover) {
  .header__contact:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__contact-icon {
  width: 16px;
  aspect-ratio: 16/13;
  -webkit-mask-image: url("/common/img/icon_contact.svg");
          mask-image: url("/common/img/icon_contact.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
.header__contact-text {
  font-size: var(--md);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .header__contact-text {
    font-size: var(--sm);
  }
}
.header-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-sp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.header-sp__group {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-sp__group {
    width: 150px;
    margin: 30px auto 0;
    margin-right: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header-sp__hamburger {
  width: 70px;
  aspect-ratio: 1/1;
  position: relative;
  transition: opacity 0.3s ease;
  touch-action: manipulation;
}
@media (hover) {
  .header-sp__hamburger:hover {
    opacity: 0.7;
  }
}
.header-sp__hamburger-line {
  width: 50%;
  height: 1px;
  background: var(--black);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: transform 0.5s ease, top 0.3s ease, bottom 0.3s ease;
}
.header-sp__hamburger-line:nth-child(1) {
  top: 40%;
}
.header-sp__hamburger-line:nth-child(2) {
  bottom: 40%;
}
.header-sp__hamburger.is-open .header-sp__hamburger-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(135deg);
  top: 50%;
}
.header-sp__hamburger.is-open .header-sp__hamburger-line:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-135deg);
  bottom: 50%;
}
.header-sp__contact {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-sp__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70px;
    aspect-ratio: 1/1;
    background: var(--black);
    row-gap: 5px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 1024px) and (hover) {
  .header-sp__contact:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .header-sp__contact-icon {
    width: 20px;
    aspect-ratio: 36/29;
    -webkit-mask-image: url("/common/img/icon_contact.svg");
            mask-image: url("/common/img/icon_contact.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: var(--white);
  }
  .header-sp__contact-text {
    font-size: var(--xs);
    color: var(--white);
  }
}

.fixed-contact {
  position: fixed;
  right: 0;
  top: 40vh;
  z-index: 3;
  background: var(--black);
  border-radius: 14px 0 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px 40px 30px;
  row-gap: 15px;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .fixed-contact:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-contact {
    padding: 30px 10px 30px 20px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fixed-contact {
    display: none;
  }
}
.fixed-contact::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 5px);
  height: calc(100% - 10px);
  border: 1px solid var(--white);
  border-right: none;
  border-radius: 10px 0 0 10px;
}
.fixed-contact__icon {
  width: 24px;
  aspect-ratio: 24/17;
  -webkit-mask-image: url("/common/img/icon_contact.svg");
          mask-image: url("/common/img/icon_contact.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
@media screen and (max-width: 1024px) {
  .fixed-contact__icon {
    width: 20px;
  }
}
.fixed-contact__text {
  font-size: var(--lg);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.footer {
  width: 100%;
  background: var(--black);
}
.footer__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 50px 0;
  }
}
.footer__info {
  width: 200px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .footer__info {
    justify-content: flex-start;
    row-gap: 20px;
  }
}
.footer__logo {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    justify-content: flex-start;
  }
}
.footer__address {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 3px;
  font-size: var(--sm);
  line-height: 1.7142857143;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .footer__address {
    row-gap: 0;
  }
}
.footer__nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: grid;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 20%;
         column-gap: 20%;
    row-gap: 5vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__nav {
    align-items: start;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    row-gap: 20px;
  }
}
.footer__nav-link {
  color: var(--white) !important;
  font-size: var(--sm);
  transition: opacity 0.3s ease;
}
@media (hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}
.footer__nav-link--disabled {
  pointer-events: none;
}
@media (hover) {
  .footer__nav-link--disabled:hover {
    opacity: 1;
  }
}
.footer__sub {
  width: 100%;
  margin: 30px auto 0;
  margin-left: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__sub {
    row-gap: 10px;
    margin: 10px auto 0;
  }
}
.footer__sub-link {
  color: var(--gray3) !important;
  font-size: var(--xs);
  transition: opacity 0.3s ease;
}
@media (hover) {
  .footer__sub-link:hover {
    opacity: 0.7;
  }
}
.footer__copyright {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: var(--xs);
  color: var(--gray3);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__copyright-year {
  padding: 0 5px;
}
/*# sourceMappingURL=header_footer.css.map */
