@charset "UTF-8";

*,
*::after,
*::before {
    box-sizing: border-box;
}

body{
    background-color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

:root{
    --font-inter: 'Inter', sans-serif;
    --text-color: #4A5565;
}

.for-sp {
    display: none;
}

.for-pc {
    display: block;
}

@media screen and (max-width:767px) {
    .for-sp {
        display: block;
    }

    .for-pc {
        display: none;
    }

}

/* =============================
    header
===============================*/
.header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.js-hide-on-footer.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.header__inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem 0 min(8.33vw, 7.5rem);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.09);
}

.logo a{
    display: flex;
    gap: 12px;
    align-items: flex-end;
    padding-block: 19px;
}

.logo img{
    max-width: 194px;
}

.logo__text{
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.2;
    color: #0A0A0A;
}

.logo__text--small{
    font-size: 9px;
}

.header__right{
    display: flex;
    gap: 3.41rem;
}

.header__list{
    display: flex;
    gap: 22px;
    align-items: center;
}

.header__listItem{
    font-size: 1rem;
    letter-spacing: 1px;
}

.header__listItem a{
    font-size: min(1.11vw, 1rem);
    font-weight: 500;
    font-family: var(--font-inter);
    color: #4A5565;
}

.header__listItem a:hover{
    opacity: 0.75;
}

.header__btn{
    display: flex;
    gap: 8px;
    margin-top: 31px;
}

.contact__btn a, .data__btn a{
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 17.5px 19px;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-inter);
    background: linear-gradient(90deg, #293D6B 0%, #2976CF 100%);
}

.data__btn a{
    padding: 11px 19px 12px;
}

.contact__btn img{
    max-width: 26px;
}

.data__btn img{
    max-width: 28px;
}

.contact__btn p, .data__btn p{
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff;
}


/* ハンバーガーアイコン */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__toggle span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

@media screen and (max-width:1191px) {
    .header__right{
        justify-content: space-between;
        width: 100%;
    }

    .header__btn{
        margin-top: 0;
    }

    .header__inner{
        padding: 0 30px;
    }

    .header__right{
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .header__inner {
        padding: 0 1.25rem;
    }

    .header__btn{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================
    SP専用メニュー
===============================*/

/* 初期状態は非表示 */
.sp-menu {
    display: none;
}

.sp-menu .footer__dataBtn a{
    margin-top: 0;
}

/* 黒幕（初期は非表示） */
.sp-menu__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 998; /* sp-menu より下、header より上 */
}

/* SP メニューが開いたときに黒幕を表示 */
.sp-menu.is-open + .sp-menu__overlay {
    display: block;
}

/* SP表示 */
@media (max-width: 767px) {

    /* PCメニューは非表示 */
    .header__right {
        display: none;
    }

    /* ハンバーガーアイコン表示 */
    .header__toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: fixed;
        z-index: 1001;
        right: 6%;
        top: 4%;
    }

    .header__toggle span {
        display: block;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* SPメニュー本体 */
    .sp-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #fff;
        padding: 80px 40px;
        transition: 0.4s ease;
        overflow-y: auto;
        z-index: 999;
        box-shadow: -4px 0 10px rgba(0,0,0,0.1);
    }

    /* 開いた状態 */
    .sp-menu.is-open {
        right: 0;
    }

    /* SPメニュー内のリスト */
    .sp-menu__list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px;
    }

    .sp-menu__list li {
        margin-bottom: 20px;
    }

    .sp-menu__list a {
        font-size: 18px;
        color: #4A5565;
        letter-spacing: 1px;
    }

    /* SPメニュー内のボタン */
    .sp-menu__btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sp-menu__btn {
        display: block;
        padding: 16px 20px;
        border-radius: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        background: linear-gradient(90deg, #293D6B 0%, #2976CF 100%);
    }

    /* ハンバーガー → × */
    .header__toggle.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .header__toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .header__toggle.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

}



/* =============================
    footer
===============================*/
.footer{
    padding: 2.5625rem;
    background-color: #23355C;
}

.footer__flex{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer__flex.for__pc {
    display: flex;
}

.footer__left{
    max-width: 13.0625rem;
}

.footer__mail a{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #fff;
}

.footer__mail a:hover{
    opacity: 0.7;
}

.footer__mail img{
    max-width: 18px;
}

.flex__leftBtn{
    display: flex;
    gap: 12px;
    margin-top: 15px;
    align-items: center;
    justify-content: left;
}

.flex__leftBtn li{
    max-width: 30px;
}

.footer__list{
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
}

.footer__listItem a{
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.13;
    color: #fff;
}

.footer__contactBtn a,.footer__dataBtn a{
    display: flex;
    height: 3.1875rem;
    gap: 16px;
    align-items: center;
    padding: 17.5px 19.11px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(90deg, #293D6B 0%, #2976CF 100%);
}

.footer__contactBtn img{
    max-width: 26px;
}

.footer__contactBtn a{
    gap: 0.378125rem;
}

.footer__dataBtn a{
    padding: 10.5px 19px;
    margin-top: 9px;
    gap: 6px;
}

.footer__dataBtn img {
    max-width: 28px;
}

.policy__footer{
    margin-top: 9px;
    text-align: center;
}

.policy__footer a{
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.copyright{
    text-align: center;
    color: #fff;
    letter-spacing: 0.48px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-inter);
}

.copyright small{
    text-align: center;
    color: #fff;
    letter-spacing: 0.48px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-inter);
}

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

    .footer{
        padding: 8vw 4.27vw;
    }

    .footer__flex.for__pc {
        display: none;
    }

    .footer__list{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
        padding-top: 1rem;
    }

    .footer__list:first-of-type {
        padding-top: 0;
    }

    .footer__listItem {
      text-align: center;
    }

    .footer__contactBtn a, .footer__dataBtn a{
        margin: 0 auto;
        padding: 10px 10px 10px 19px;
        width: 205px;
        justify-content: left;
        gap: 16px;
    }

    .footer__contactBtn p,.footer__dataBtn p{
        font-size: 16px;
    }

    .footer .flex__right{
        margin-top: 38px;
    }

    .footer .flex__right .footer__dataBtn{
        margin-top: 9px;
    }

    .footer__left{
        margin: 38px auto;
    }

    .footer__mail a{
        justify-content: center;
    }

    .flex__leftBtn{
        justify-content: center;
    }

    .policy__footer{
        margin-top: 0;
        margin-bottom: 10px;
    }

    .copyright small{
        font-size: 2.67vw;
    }
}

/* =============================
    共通
===============================*/

.for__pc{
    display: block;
}

.for__sp{
    display: none;
}

.inner{
    max-width: 1240px;
    padding: 0 20px;
    margin: 9.375rem auto;
}

.page__title{
    display: flex;
    align-items: flex-end;
    gap: 13px;
}

.page__title--big{
    background: linear-gradient(90deg, #293D6B 0%, #2976CF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 65px;
    font-family: var(--font-inter);
    line-height: 1.16;
}

.page__title--small{
    color: #4A5565;
    line-height: 2.9;
}

@media screen and (max-width:767px) {
    .inner{
        margin: 26.7vw auto;
    }

    .for__pc{
        display: none;
    }

    .for__sp{
        display: block;
    }

    .page__title{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .page__title--big{
        font-size: 13.3vw;
        line-height: 1.3;
    }

    .page__title--small{
        font-size: 4.27vw;
        line-height: 1;
    }
}