/* ===============================================
header
=============================================== */

.site-header {
    padding-left: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 14rem;
    letter-spacing: 0;
    background-color: var(--white);

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
}

.site {
    padding-top: 14rem;
}

.site-header .site-branding {
    width: 37rem;
}

.site-header .site-branding h1 {
    line-height: 1;
}

.main-nav .menu-toggle {
    display: none;
}

.main-nav-list {
    padding-right: 3rem;
    display: flex;
    justify-content: flex-end;
    flex: 1 1 100%;
}

.main-nav__item {}

.main-nav__link {
    text-decoration: none;
    line-height: 1.3;
    display: block;
    padding: 2.4rem;
    text-align: center;
}

.main-nav__text-en {
    display: block;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.main-nav__text-jp {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
}

/* sp nav */
.sp-nav {
    z-index: 9;
}

@media screen and (max-width: 1366px) {

    /* header */
    .site-header {
        height: 80px;
        padding-left: 4vw;
        background: transparent;
        position: relative;
    }

    .site {
        padding-top: 0;
    }

    .site-header .site-branding {
        width: 28.2rem;
        margin-top: 8px;
    }

    .sp-nav {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-out;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        background-color: var(--light-pink);
        padding-bottom: 4vw;
    }

    .sp-nav.active {}

    .main-nav.active .sp-nav {
        visibility: visible;
        opacity: 1;
        z-index: 90;
    }

    .sp-nav__logo {
        width: 30.6rem;
        margin-top: 2rem;
        margin-bottom: 1em;
        margin-left: 4vw;
    }


    /* btn */
    .main-nav .menu-toggle {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        border: none;
        background: transparent;
        width: 80px;
        height: 80px;
        z-index: 100;
        color: var(--pink);
    }

    .main-nav .menu-toggle__line {
        width: 35px;
        height: 3px;
        background: var(--pink);
        position: absolute;
        right: 22px;
        border-radius: 1.5px;
        transition: all 0.2s ease-out;
    }

    .main-nav .menu-toggle__line--01 {
        top: 30px;
        /* transform: translateX(-50%); */
    }

    .main-nav .menu-toggle__line--02 {
        width: 25px;
        top: 37px;
        /* transform: translate(-50%, -50%); */
    }

    /* .main-nav .menu-toggle__line--03 {
        bottom: 17px;
        left: 50%;
        transform: translateX(-50%);
    } */

    .menu-toggle__text {
        position: absolute;
        top: 40px;
        right: 22px;
        font-size: 10px;
        text-align: center;
    }

    .main-nav .menu-toggle__text.close {
        display: none;
    }


    /* .main-nav.active .menu-toggle {
        background: var(--white);
    } */

    .main-nav.active .menu-toggle__line--01 {
        top: 28.5px;
        /* right: 18px; */
        transform: rotate(20deg);
    }

    .main-nav.active .menu-toggle__line--02 {
        width: 35px;
        top: 28.5px;
        /* right: 18px; */
        transform: rotate(-20deg);
    }

    .main-nav.active .menu-toggle__text.close {
        display: block;
        right: 23px;
    }

    .main-nav.active .menu-toggle__text.menu {
        display: none;
    }


    /* sp-nav */

    .main-nav-list {
        margin-inline: 8vw;
        background: var(--white);
        padding: 4vw 8vw 6vw;
        flex-direction: column;
        border-radius: 1rem;
    }

    .main-nav__item {
        border-bottom: 1px solid #333;
    }

    .main-nav__link {
        padding: .5em;
        text-align: left;
    }

    .sp-nav-info-btn {
        margin-top: 1em;
        margin-inline: 8vw;
    }

    .sp-nav-info-btn .main-btn {
        height: 3.2em;
    }

}

/* ===============================================
footer
=============================================== */

.site-footer {
    padding-top: 10rem;
    padding: 10rem 0 5rem;
    text-align: center;
    background: var(--white);
}

.sns-icon-list {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.sns-icon-list__item {
    max-width: 33px;
	flex:1;
}

.site-copyright {
    font-size: 14px;
    margin-top: 10rem;
}

/* ===============================================
    sns-list
=============================================== */

.sns-list-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
}

.sns-list {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
}

.sns-list__item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 2em;
}

.sns-list__item a {
    width: 9.6rem;
}

@media screen and (min-width: 1024px) {
    .sns-list-top-txt {
        font-size: 2.6rem;
    }

    .sns-list {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 640px) {
    .sns-list__item a {
        width: 5.2rem;
    }

    .sns-list {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .sns-list__item {
        gap: 1.2em;
    }

}


/* ===============================================
page-header
=============================================== */

.page-header {
    position: relative;
    line-height: 1;
    height: 32rem;
    display: flex;
    align-items: flex-end;
    padding: 3rem 6rem;

    background: url(../images/page-header.jpg) center center no-repeat;
    background-size: cover;
}

.page-title {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 5.6rem;
}


@media screen and (max-width: 640px) {

    .page-header {
        height: auto;
        min-height: 9.6rem;
        padding: 1rem 8vw;
    }

    .page-title {
        font-size: 3.2rem;
    }

}


/* ===============================================
page layout
=============================================== */

@media screen and (min-width: 1240px) {

    /* 全体のwrap */
    .page-wrap {
        padding-top: 10rem;
        display: flex;
        justify-content: center;
        column-gap: 30px;
    }

    /* left */
    .page-nav {
        flex: 0 0 220px;
    }

    /* right */
    .page-content {
        flex: 0 0 990px;
    }
}

@media screen and (max-width: 1239.999px) {
    .page-wrap {
        padding-top: 6rem;
    }

    .page-content {
        padding-top: 6rem;
    }
}


/* ===============================================
page-nav
=============================================== */

@media screen and (min-width: 1240px) {

    .page-nav-list {
        padding-left: 2em;

        /* overflow: hidden;が祖先要素にかかっていると効かないので注意 */
        position: sticky;
        top: 100px;
    }

    .page-nav-list li {
        position: relative;
    }

    .page-nav-list a {
        display: block;
        padding: 19px 0;
        font-size: 16px;
        color: #333333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .page-nav-list li.current a {
        color: var(--pink);
    }

    .page-nav-list li.current::before {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        background: var(--pink);
        border-radius: 50%;

        position: absolute;
        top: 50%;
        left: -1.2em;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 1239.999px) {
    .page-nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0 2em;
    }

    .page-nav-list li {
        flex: 1 1 220px;
        border-bottom: 1px solid #9CA9B6;
    }

    .page-nav-list a {
        position: relative;
        display: block;
        padding: 19px 0;
        font-size: 16px;
        color: #333333;
        text-decoration: none;
    }

    .page-nav-list a::before {
        position: absolute;
        top: 27px;
        right: 10px;
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        border-top: 1px solid var(--pink);
        border-right: 1px solid var(--pink);
        transform: rotate(135deg);
    }
}

@media screen and (max-width: 640px) {}

/* ---------------------------------- */

.number-list {
    counter-reset: number 0;
}

.number-list__item {
    position: relative;
    padding-left: 50px;
}

.number-list__item {
    margin-top: 4rem;
    border-top: 1px solid #9CA9B6;
    padding-top: 4rem;
}

.number-list__item.txt-only {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
}

.number-list__item.txt-only:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}


.number-list__item::before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    position: absolute;
    top: calc(5px + 4rem);
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pink);
    width: 40px;
    height: 18px;
    border-radius: 9px;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
}

.number-list__item.txt-only::before {
    top: calc(5px + 3.5rem);
}

.number-list__item.txt-only:first-child::before {
    top: 5px;
}

.number-list__title {
    font-size: 18px;
    color: var(--pink);
    margin-bottom: 0.6em;
}

.number-list__txt {
    font-size: 16px;
}

/* 画像ありバージョン */
.number-list__item:has(.number-list__item-image) {
    display: flex;
    justify-content: space-between;
}

.number-list__item-txt {
    flex: 0 0 calc((536 / 990) * 100%);
}

.number-list__item-image {
    flex: 0 0 calc((378 / 990) * 100%);
}

.number-list__item:has(.number-list__item-image):last-child {
    border-bottom: 1px solid #9CA9B6;
    padding-bottom: 4rem;
}

@media screen and (max-width: 640px) {
    .number-list__item {
        padding-left: 0;
    }

    .number-list__item::before {
        position: static;
        margin-bottom: 10px;
    }

    /* 画像ありバージョン */
    .number-list__item:has(.number-list__item-image) {
        flex-direction: column;
    }

    .number-list__item-image {
        margin-top: 18px;
    }
}


/* ---------------------------------- */

.table-list__item {
    display: flex;
}

.table-list__item dt {
    flex: 0 0 calc((226 / 842) * 100%);
    padding: 1.2em 1.2em;
    border-bottom: 1px solid var(--pink);
}

.table-list__item dd {
    flex: 0 0 calc((616 / 842) * 100%);
    padding: 1.2em 1.2em;
    border-bottom: 1px solid #9CA9B6;
}

.table-list__item:first-child dt,
.table-list__item:first-child dd {
    padding-top: 0;
}

@media screen and (max-width: 640px) {
    .table-list__item {
        display: flex;
        flex-direction: column;
    }

    .table-list__item dt {
        border-bottom: none;
        padding-bottom: 0;
        padding-inline: 0;
        font-size: 16px;
        font-weight: 700;
    }

    .table-list__item dd {
        padding-inline: 0;
        padding-top: 0.6em !important;
    }

}


/* ---------------------------------- */
@media screen and (max-width: 640px) {}

/* オーバーレイ */
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* コンテナ */
.modal__container {
  background: #fff;
  padding: 30px;
  max-width: 1800px;
  width: 90%;
  max-height: 90vh;          /* 画面の90%まで */
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

@media screen and (max-width: 640px) {
	.modal__container {
		padding: 15px;
	}
}

.modal__content {
  overflow-y: auto;
  flex: 1;                   /* 余った高さを埋める */
  min-height: 0;             /* flexの子要素でスクロールさせるために必要 */
}

/* 閉じるボタン */
.modal__close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
	.modal__close {
		font-size: 18px;
	}
}

.modal__close::before {
  content: "×";
}

/* ヘッダー */
.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
	.modal__header {
		margin-bottom: 10px;
	}
}

/* 非表示状態 */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}

/* フェードアニメーション（任意） */
.micromodal-slide .modal__overlay {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.micromodal-slide.is-open .modal__overlay {
  opacity: 1;
}

.micromodal-slide .modal__container {
  transform: translateY(-20px);
  transition: transform 0.2s ease;
}
.micromodal-slide.is-open .modal__container {
  transform: translateY(0);
}

.footer-info__logo img {
	width:78px;
}

	
.grecaptcha-badge { visibility: hidden; }