@charset "UTF-8";

/*----------------------------------------
	Header
----------------------------------------*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    transition: all 1s ease;
}

.header__hide {
    transform: translateY(-100%);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 11px 15px 11px 10px;
}

/* ヘッダーロゴ */
.header__logo {
    display: block;
}

.header__home-link {
    display: block;
}

.header__logo-img {
    width: auto;
    height: 22.25px;
}

/* ハンバーガーメニュー・ボタン */
.header__hamburger-btn {
    display: block;
    width: 28px;
    height: 23px;
    background: none;
}

/* ハンバーガーメニュー・罫線 */
.header__hamburger-line {
    position: relative;
    display: block;
    height: 2px;
    background: #000;
    transition: all .2s;
}

/* ハンバーガーメニュー・罫線 */
.header__hamburger-line::before,
.header__hamburger-line::after {
    position: absolute;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all .2s;
}

/* ハンバーガーメニュー・上罫線 */
.header__hamburger-line::before {
    top: -8px;
}

/* ハンバーガーメニュー・した罫線 */
.header__hamburger-line::after {
    bottom: -8px;
}

/* ハンバーガーメニューオープン時・中罫線 */
.header__hamburger-btn--open .header__hamburger-line {
    background: transparent;
}

/* ハンバーガーメニューオープン時・上罫線 */
.header__hamburger-btn--open .header__hamburger-line::before {
    top: 0;
    transform: rotate(45deg);
}

/* ハンバーガーメニューオープン時・下罫線 */
.header__hamburger-btn--open .header__hamburger-line::after {
    top: 0;
    transform: rotate(-45deg);
}

@media screen and (min-width:1025px), print {
    /* ハンバーガーメニュー・ボタン */
    .header__hamburger-btn {
        display: block;
        width: 60px;
        height: 60px;
        padding: 0 18px;
        background: #000;
    }
    /* ハンバーガーメニュー・罫線 */
    .header__hamburger-line {
        background: #fff;
    }
    /* ハンバーガーメニュー・罫線 */
    .header__hamburger-line::before,
    .header__hamburger-line::after {
         background: #fff;
    }
}




/* ヘッダーnav */
.header__nav {
    display: none;
    margin-top: 45px;
    width: 100%;
    height: 100vh;
    padding-bottom: 150px;
    overflow-y: scroll;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .3s ease-out;
}

.header__nav-inner {
    display: flex;
    flex-direction: column;
}

/* 言語切替メニュー */
.header__lange-menu {
    order: 1;
    display: flex;
    padding: 40px 36px 0 36px;
}

/* 言語切替メニュー ul */
.header__lange-menu-item:first-child {
    margin-right: 18px;
    position: relative;
}


/* 言語切替メニュー 区切り線 */
.header__lange-menu-item:first-child::after {
    content: "／";
    position: absolute;
    bottom: 4px;
    right: -13px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #000;
}

/* 言語切替メニュー 項目 */
.header__lange-menu-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
    transition: all .1s;
}

.header__lange-menu-link:hover {
    color: #E7391B;
}

/* メガメニュー（並び順変更） */
.header__mega-menu {
    order: 0;
}

@media screen and (min-width:1025px), print {

    .header {
        height: 60px;
    }
    /* ヘッダー inner */
    .header__inner {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 0 0 24px;
        height: 100%;
    }

    /* ハンバーガーメニュー・ボタン */
    /* .header__hamburger-btn {
        display: none;
    } */

    /* ヘッダー・ロゴ */
    .header__logo {
        margin-right: auto;
        padding-right: 24px;
    }

    /* ヘッダー・メインメニュー */
    .header__nav {
        display: block;
        flex-direction: column;
        align-items: flex-end;
        margin-top: 0;
        padding: 0;
        width: auto;
        height: 100%;
        position: static;
        overflow-y: visible;
    }

    .header__nav-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        height: 100%;
    }

    /* 言語切替メニュー */
    .header__lange-menu {
        order: 0;
        margin: 0 0 5px 0;
        padding: 0 10px 0 0;
    }

    /* 言語切替メニュー 区切り線 */
    .header__lange-menu-item:first-child::after {
        content: "／";
        position: absolute;
        bottom: 1px;
        right: -13px;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: normal;
        font-size: 0.7rem;
        line-height: 1.5;
        color: #000;
    }

    .header__lange-menu-link {
        font-size: 1.0rem;
    }

    /* メインメニュー */
    .header__mega-menu {
        order: 1;
        height: 100%;
    }

}


/*----------------------------------------
	Mega-menu(ヘッダー内メガメニュー)
----------------------------------------*/
.mega-menu {
    display: flex;
    flex-direction: column;
}

.mega-menu__item, .mega-menu__item--sp {
    border-bottom: 1px solid #F4F4F4;
}

.mega-menu__item:first-child {
    border-top: 1px solid #F4F4F4;
}

/* メガメニュー・項目名 */
.mega-menu__link {
    display: block;
    width: 100%;
    padding: 20px 36px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.0;
    color: #000;
    position: relative;
}

.mega-menu__link .page__link-img {
    display: inline-block;
    margin-top: 2px;
    margin-left: 2px;
    width: 11px;
    height: 11px;
}
.mega-menu__child-link .page__link-img {
    display: inline-block;
    margin-top: 2px;
    margin-left: 0;
    width: 11px;
    height: 11px;
}
.mega-menu__sublink .page__link-img {
    display: inline-block;
    margin-top: 2px;
    margin-left: 2px;
    width: 11px;
    height: 11px;
}

/* 個人情報保護、サイトマップページのメニュー（スマホ時のみ表示） */
.mega-menu__sublink {
    display: block;
    width: 100%;
    padding: 20px 36px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 1.2rem;
    color: #000;
    position: relative;
}


/* リンク先がないメニュー（スマホ時のアコーディオン対応） */
.mega-menu__link--sp:after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    width: 7.5px;
    height: 7.5px;
    margin: auto 0;
    border-top: 1px solid #B1B1B1;
    border-right: 1px solid #B1B1B1;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
}


/* 矢印ナビアイコン・ドロップダウン開いた状態 */
.mega-menu__item--active .mega-menu__link--sp:after {
    top: 55%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}




/* リンク先があるメニュー（スマホ時のアコーディオン対応） */
.mega-menu__link--pc {
    display: none;
}


/* 下層メニュー */
.mega-menu__child {
    display: none;
    width: 100%;
    background-color: #f3f3f3;
}

.mega-menu__child-item {
    border-top: 1px solid #ffffff;
}

.mega-menu__child-item:first-child {
    border-top: 0;
}

/* 下層メニュー項目 */
.mega-menu__child-link {
    display: block;
    padding: 20px 36px 20px 63px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
    text-align: left;
    color: #000000;
    white-space: nowrap;
    position: relative;
}

/* 下層メニュー項目・下層アイコン */
.mega-menu__child-link::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 51%;
    /* top: 1.6rem; */
    left: 48px;
    width: 10px;
    height: 0.5px;
    background-color: #E7391B;
    transform: translateY(-50%);
}

/* 下層メニュー項目・矢印ナビアイコン */
/* .mega-menu__child-link::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    right: 40px;
    width: 7.5px;
    height: 7.5px;
    margin: auto 0;
    border-top: 1px solid #B1B1B1;
    border-right: 1px solid #B1B1B1;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
} */



@media screen and (min-width:1025px), print {

    /* メガメニュー */
    .mega-menu {
        display: flex;
        flex-direction: row;
    }

    /* メガメニュー・li */
    .mega-menu__item {
        margin-right: 35px;
        padding: 0;
        border: 0;
        position: relative;
    }

    /* メガメニュー・アクティブ時の罫線 */
    .mega-menu__item::after {
        position: absolute;
        bottom: 0;
        z-index: 100;
        display: block;
        width: 100%;
        height: 3px;
        content: '';
        background-color: #E7391B;
        /*アニメーションの指定*/
        transition: all 0.2s;
        transform: scale(0, 1);
        /*上部中央基点*/
        transform-origin: center top;

    }

    .mega-menu__item--active::after {
        /*X方向にスケール拡大*/
        transform: scale(1, 1);
    }


    .mega-menu__item:first-child {
        border: 0;
    }

    .mega-menu__item--last {
        margin-right: 0;
    }
    /* .mega-menu__item--button {
        background-color: #E7391B;
    }
    .mega-menu__item--button:hover {
        background-color: #C12E16;
    } */
    
    .mega-menu__item--button{
        margin-right: 0;
        margin-left: 1px;
    }
    .mega-menu__item--button .mega-menu__link {
        color: #fff !important;
        background-color: #E7391B;
        padding: 0px 16px 0px;
        /*アニメーションの指定*/
        transition: all 0.2s;
        width: 126px;
        justify-content: center;
    }
    .mega-menu__item--button .mega-menu__link:hover {
        background-color: #C12E16;
    }
    .mega-menu__item--button::after{
        display: none;
    }

    /* メガメニュー・aタグ */
    .mega-menu__link {
        padding: 0;
        font-size: 1.4rem;
        letter-spacing: 0.1rem;
        display: flex;
        align-items: center;
        height: 100%;
        position: relative;
    }
    .mega-menu__link:hover {
        color: #E7391B;
    }
    /* メガメニュー・アクティブ時の罫線 */
    .mega-menu__link:hover::after {
        position: absolute;
        bottom: 0;
        z-index: 100;
        display: block;
        width: 100%;
        height: 3px;
        content: '';
        background-color: #E7391B;
        /*アニメーションの指定*/
        transition: all 0.2s;
        transform: scale(0, 1);
        /*上部中央基点*/
        transform-origin: center top;

    }

    /* 個人情報保護、サイトマップページのメニュー（スマホ時のみ表示） */
    .mega-menu__sublink {
        display: none;
    }

    .mega-menu__link:after, .mega-menu__sublink:after {
        display: none;

    }

    /* リンク先があるメニュー（スマホ時のアコーディオン対応） */
    .mega-menu__link--sp {
        display: none;
    }

    /* .mega-menu__link--pc {
        display: block;
    } */

    .mega-menu__item--sp {
        display: none;
    }

    /* 下層メニュー */
    .mega-menu__child {
        display: none;
        width: auto;
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        /* transform: translateX(-50%); */
        background-color: #ffffff;
        padding: 8px 15px;
        border-radius: 8px;
    }

    /* 下層メニュー・ */
    .mega-menu__child::before {
        position: absolute;
        top: -16px;
        left: 0;
        z-index: 100;
        display: block;
        width: 100%;
        height: 16px;
        content: "";
        background-color: transparent;
    }

    .mega-menu__child-item {
        border-top: 0;
    }

    /* 下層メニュー・下層ページ直リンク */
    .mega-menu__child-item--pc {
        display: none;
    }

    .mega-menu__child-item--pc .mega-menu__child-link {
        display: none;
    }

    /* 下層メニュー項目 */
    .mega-menu__child-link {
        display: block;
        min-width: 150px;
        padding: 10px 10px 10px 15px;
        border-bottom: 1px solid #ECEEEF;
        font-size: 1.3rem;
        transition: all 0.1s ease;
        color: #000000;
        letter-spacing: 0.1rem;
        position: relative;
    }
    .mega-menu__child > .mega-menu__child-item:last-of-type .mega-menu__child-link {
        border-bottom: none;
    }



    .mega-menu__child-link:hover {
        /* background-color: #E7391B; */
        color: #E7391B;
    }

    /* .mega-menu__child-link::before, .mega-menu__child-link::after {
        display: none;
    } */

    /* 下層メニュー項目・下層アイコン */
    .mega-menu__child-link::before {
        top: 1.6rem;
        left: 0;
        transform: none;
    }

}

@media screen and (min-width:1025px) and (max-width:1200px), print {
    /* メガメニュー・li */
    .mega-menu__item {
        margin-right: 20px;
    }
    /* メガメニュー・項目名 */
    .mega-menu__link {
        white-space: nowrap;
    }
    .mega-menu__item--button .mega-menu__link {
        padding: 0px 8px 0px;
        width: 110px;
    }
    .mega-menu__item--button {
        margin-right: 0;
        margin-left: 1px;
    }
}


/*----------------------------------------
	Overlay-menu(PC用オーバーレイメニュー)
----------------------------------------*/
.header__nav-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    padding-top: 120px;
    padding-bottom: 60px;
    display: none;
    /* transition: all 0.2s ease; */
}
.header__nav-overlay .header__inner {
    flex-wrap: wrap;
    max-width: 1000px;
    padding: 0;
}
.header__nav-overlay .header__nav {
    flex-basis: 100%;
    margin-bottom: 64px;
}
.header__nav-overlay .header__inner > .header__nav:not(:last-child):first-child {
    border-bottom: 1px solid #B1B1B1;
    padding-bottom: 37px;
    margin-bottom: 43px;
}
.header__nav-overlay .header__inner > .header__nav:not(:last-child):nth-child(2) {
    border-bottom: 1px solid #B1B1B1;
    padding-bottom: 43px;
    margin-bottom: 37px;
}
.header__nav-overlay .header__inner > .header__nav:not(:last-child):nth-child(2) .mega-menu {
    gap: 80px;
}
.header__nav-overlay .header__inner > .header__nav:not(:last-child):nth-child(2) .mega-menu__item{
    width: auto;
}
.header__nav-overlay .header__inner > .header__nav:nth-child(3) .mega-menu {
    gap: 50px;
}
.header__nav-overlay .header__inner > .header__nav:nth-child(3) .mega-menu__item{
    width: auto;
}
.header__nav-overlay .header__nav-inner {
    align-items: center;
}
.header__nav-overlay .mega-menu {
    width: 100%;
}
.header__nav-overlay .mega-menu__item {
    width: calc((100% - 84px) / 4);
    transition: none !important;
    margin-right: 0;
}
.header__nav-overlay .mega-menu__item--active {
    transition: none !important;
}
.header__nav-overlay .mega-menu__link {
    height: auto;
    font-size: 1.5rem;
}
.header__nav-overlay .mega-menu__link--small {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.header__nav-overlay .mega-menu__child {
    display: block !important;
    position: relative;
    top: 0;
}
.header__nav-overlay .mega-menu__child::before {
    content: none;
}

.header__nav-overlay-button-container {
    flex-basis: 100%;
    display: flex;
    gap: 38px;
    max-width: 492px;
    margin: 0 auto;
}
.header__nav--close {
    display: none;
}
@media screen and (min-width:1025px), print {
    .header__nav-overlay .mega-menu {
        /* justify-content: space-between; */
        gap: 28px;
    }
    .header__nav-overlay .mega-menu__child {
        padding: 8px 0;
    }
    .header__nav-overlay .mega-menu__child-link {
        padding: 10px 10px 4px 15px;
        border-bottom: none;
    }
    .header__nav-overlay .mega-menu__child-link::before {
        display: inline-block;
        /* content: '─'; */
        position: absolute;
        top: 1.8rem;
        left: 0;
        margin: auto 0;
        transform: translateY(-50%);
    }
}
