@charset "UTF-8";

/* ヘッダー
***************************************************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 27px 0 20px 0;
    z-index: 100;
    background-color: #F6F8F9;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1550px;
    /*min-width: 1200px;*/
    width: calc(100% - 40px);
    margin: 0 auto;
}

.header__logo-link {}

.header__logo-link img {
    width: 138px;
}


.header__logo a {
    margin-left: 57px;
}

/* ハンバーガーメニュー非表示 */
.toggle__menu {
    display: none;
}

/* ヘッダーリンク */
.header__menu {}

.header__nav {
    display: flex;
    position: relative;
}

.header__items {
    display: flex;
    background-color: #E1E6F0;
    border-radius: 16px;
    padding: 18px 193px 18px 40px;
    gap: 40px;
}

.accordion-area {
    display: flex;
    gap: 40px;
}

.header__item-box,
.header__item {
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
    color: #26499D;
    background-image: url('../../images/pc/arrow-navy.svg');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 18px !important;
}

.header__item-noarrow {
    background-image: none !important;
    padding-right: 0 !important;
}

.header__item-noarrow a {
    color: #26499D;
}

.header__contact {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background-color: #26499D;
    border-radius: 12px;
    padding: 14px 33px 15px;
    content: "";
    display: inline-block;
    position: absolute;
    right: 4px;
    top: 3px;
}




/* ドロップダウンメニュー */
.drop__menu {
    padding: 32px 25px;
    background-color: #E1E6F0;
    border-radius: 16px;
    position: absolute;
    top: 80px;
    width: 300px;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.08));
}

.drop__menu::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 30px;
    clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
    background-color: #E1E6F0;
    top: -28px;
    left: 72px;
}

.drop__menu.drop01 {
    left: 162px;
}

.drop__menu.drop02 {
    left: 285px;
}

.drop__menu.drop03 {
    left: 0;
}

.drop__menu-list a {
    font-size: 15px;
    line-height: 1.4;
    display: block;
    padding: 13px 20px 13px 0;
    width: 100%;
    color: #26499D;
    font-weight: 700;
    border-bottom: 1px solid #CDD6E8;
}

.drop__menu-list:first-child a {
    padding-top: 0;
}

.drop__menu-list:last-child a {
    padding-bottom: 0;
    border-bottom: none;
}

.drop__menu-list {
    position: relative;
}

.drop__menu-list::before {
    content: "";
    display: inline-block;
    background-image: url('../../images/pc/arrow-right-navy.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 12px;
    position: absolute;
    top: 37%;
    right: 8px;
}

.drop__menu-list:first-child::before {
    top: 18% !important;
}

.drop__menu-list:last-child::before {
    top: 49%;
}

/*アコーディオン全体*/
.accordion-area {
    width: unset;
    margin: 0 auto;
}

/*アコーディオンタイトル*/
.header__item-box {
    cursor: pointer;
    transition: all .5s ease;
    padding: 0;
    color: #26499D;
    margin-inline: unset;
    position: relative;
}

/*アイコンの＋と×*/
.header__item-box::before,
.header__item-box::after {
    display: none;
}

.header__item-box::before {
    top: 27px;
    right: 0;
    transform: rotate(0deg);

}

.header__item-box::after {
    top: 27px;
    right: 0;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.header__item-box.close::before {}

.header__item-box.close::after {
    transform: rotate(0deg);
}

/*アコーディオンで現れるエリア*/
.drop__menu {
    display: none;
    /*はじめは非表示*/
}


.pc_only01 {
    display: block;
}

/* レスポンシブ */
@media screen and (min-width: 681px) {
    header {
        min-width: 1240px;
    }
}

@media screen and (max-width: 1550px) {
    .header__items {
        gap: 30px;
    }

    .accordion-area {
        gap: 30px;
    }
}

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

    .header {
        padding: 10px 0;
    }

    .header__inner {
        display: block;
        margin: 0 10px;
        width: 94.6%;
    }

    .header__logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo a {
        margin-left: 0;
    }

    .header__logo-link img {
        width: 23.5vw;
        /*width: 88px;*/
    }

    /* ハンバーガーメニュー */
    .toggle__menu {
        display: inline-block;
        width: 11vw;
        height: 11vw;
        /*width: 41px;
        height: 41px;*/
        border-radius: 6px;
        background-color: #26499D;
        position: relative;
        z-index: 100;
    }

    .toggle__menu .toggle__line {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        text-indent: -9999px;
        width: 20px;
        height: 1px;
        background-color: #FFF;
    }

    .toggle__menu .toggle__line::before,
    .toggle__menu .toggle__line::after {
        content: "";
        position: absolute;
        left: 0;
        width: 20px;
        height: 1px;
        background-color: #FFF;
        transition: .3s;
    }

    .toggle__menu .toggle__line::before {
        top: -4px;
        -webkit-animation: menu-barTop 0.6s forwards;
        animation: menu-barTop 0.6s forwards;
    }

    .toggle__menu .toggle__line::after {
        top: 4px;
        -webkit-animation: menu-barBottom 0.6s forwards;
        animation: menu-barBottom 0.6s forwards;
    }

    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        padding: 15px 11px 0 58px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        z-index: 90;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

    .header__nav {}

    .header__items {
        display: flex;
        background-color: #26499D;
        border-radius: 6px;
        padding: 78px 26px 76px;
        gap: unset;
        width: 100%;
    }

    .open .toggle__menu {
        /* -webkit-transition: all 0.5s linear 1s; */
        /* transition: all 0.5s linear 1s; */
        background-color: unset;
        margin-top: 15px;
        margin-right: 15px;
    }

    .open .toggle__menu .toggle__line {
        height: 0;
        background-color: #000;
    }

    .open .toggle__menu .toggle__line::before {
        background-color: #fff;
        -webkit-animation: active-menu-barTop 0.6s forwards;
        animation: active-menu-barTop 0.6s forwards;
        transform: rotate(-25deg);
        top: 0;
    }

    .open .toggle__menu .toggle__line::after {
        background-color: #fff;
        -webkit-animation: active-menu-barBottom 0.6s forwards;
        animation: active-menu-barBottom 0.6s forwards;
        transform: rotate(25deg);
        top: 0;
    }

    .open .header__menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        overflow: auto;
    }

    .header__nav ul {
        flex-flow: column;
    }

    .header__item {
        padding: 23px 0 17px 10px;
        width: 100%;
        border-bottom: 1px solid #FFF;
        color: #FFF;
        position: relative;
        margin-inline: auto;
        transition: 0.3s;
    }

    .header__item::before {
        content: "";
        display: inline-block;
        background-image: url('../../images/pc/arrow-white.svg');
        background-size: cover;
        background-repeat: no-repeat;
        width: 7px;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .header__item:nth-of-type(1) {
        border-top: unset;
    }

    .header__item a,
    .header__item-box {
        display: block;
        color: #fff
    }


    /* ドロップダウンメニュー */

    .drop__menu::before{
        display: none;
    }

    .drop__menu.drop01,
    .drop__menu.drop02,
    .drop__menu.drop03 {
        padding: 12px 26px;
        background-color: #1D3A7E;
        border-radius: unset;
        position: unset;
        width: calc(100% + 52px);
        margin-left: -26px;
    }

    .drop__menu-list::before{
        display: none;
    }

    .drop__menu-list a {
        position: relative;
        font-size: 14px;
        line-height: 1.4;
        display: block;
        padding: 20px!important;
        width: 100%;
        color: #FFF;
    }

    .drop__menu-list a::before {
        content: "";
        display: inline-block;
        background-image: url('../../images/pc/arrow-white.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 7px;
        height: 12px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    /*アコーディオン全体*/
    .accordion-area {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    /*アコーディオンタイトル*/
    .header__item-box {
        cursor: pointer;
        transition: all .5s ease;
        padding: 20px 0 20px 10px;
        border-bottom: 1px solid #FFF;
        color: #FFF;
        width: 100%;
        margin-inline: auto;
        position: relative;
    }

    /*アイコンの＋と×*/
    .header__item-box::before,
    .header__item-box::after {
        display: block;
        position: absolute;
        content: '';
        width: 12px;
        height: 2px;
        background-color: #FFF;

    }

    .header__item-box::before {
        top: 50%;
        right: 4px;
        transform: rotate(0deg) translateY(-50%);

    }

    .header__item-box::after {
        top: 50%;
        right: 5px;
        transform: rotate(90deg) translateY(-50%);

    }

    /*　closeというクラスがついたら形状変化　*/
    .header__item-box.close::before {}

    .header__item-box.close::after {
        display: none;
    }

    /*アコーディオンで現れるエリア*/
    .drop__menu {
        display: none;
        /*はじめは非表示*/
    }
}