/* 共通 */
:root {
    --txt_ja: "Noto Serif JP", serif;
    --txt_en: "Cormorant Infant", serif;
    --fw_bold: bold;
    --fw_md: 500;
    --main_color: #FFE9B0;
    --accent_color: #FB9804;
    --font_color: #352722;
    --bg_color: #1D1C1C;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
}
.header_box {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.header_logo {
    /* width: 144px; */
    width: 120px;
    height: auto;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.header_logo>a {
    display: block;
}

.header_link_box {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100vh;
    border-left: 1px solid var(--main_color);
    background-color: var(--bg_color);
}
.header_link_top {
    display: flex;
    align-items: center;
}
.header_link_top > a:not(:last-child) {
    position: relative;
    z-index: 3;
    display: block;
    width: 182px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 21px;
    text-align: center;
    color: var(--main_color);
    background-color: var(--bg_color);
}
.header_link_top>a>span:first-child {
    display: block;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    margin-bottom: 4px;
}
.header_link_top>a>span:last-child {
    display: block;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: calc(12px * (4 / 100));
}
.header_link_top>a:nth-child(n+2){
    border-left: 1px solid #3B3830;
}
.header_link_top>a:after {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    content: '';
    width: 96%;
    height: 6px;
    margin-left: auto;
    margin-right: auto;
}
.header_link_top>a:first-child:after {
    background-color: #AC1914;
}
.header_link_top>a:nth-child(2):after {
    background-color: #3D90B0;
}
.header_link_top>a:nth-child(3):after {
    background-color: #B19629;
}
.header_link_top>a:nth-child(4):after {
    background-color: #50AD4C;
}

.header_link_top > a:last-child {
    display: flex;
    width: 256px;
    height: auto;
    font-family: var(--txt_en);
    color: #1D1C1C;
    padding: 8px 16px;
    margin-left: 30px;
    background-image: linear-gradient(120deg, rgba(246, 244, 239, 1), rgba(235, 228, 210, 1) 26%, rgba(219, 211, 192, 1) 90%);
}
.header_link_top > a:last-child>div:first-child {
    width: 45%;
    border-right: 1px solid rgba(29, 28, 28, 0.3);
}
.header_link_top > a:last-child>div:first-child>span:first-child {
    display: block;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 6px;
}
.header_link_top > a:last-child>div:first-child>span:last-child {
    display: block;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: calc(20px * (4 / 100));
}
.header_link_top > a:last-child>div:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 55%;
}
.header_link_top > a:last-child>div:last-child>span {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: calc(14px * (4 / 100));
}

.header_link_middle {
    
}

.header_link_middle_box1 {
    display: flex;
    align-items: center;
    justify-content: end;
}
.header_link_middle_box1>a:nth-child(n+2){
    margin-left: 32px;
}

.header_link_middle_box2 {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header_link_bottom {
    display: flex;
    margin-top: 24px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.header_link_bottom>.header_link {
    display: block;
    width: 192px;
    height: auto;
    color: var(--main_color);
    text-align: center;
    padding-top: 27px;
    padding-bottom: 27px;
    background: rgba(29,28,28,0.4);
    border: 1px solid #3B3830;
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}
.header_link_bottom>.header_link:nth-child(n+2){
    border-left: none;
}
.header_link_bottom>.header_link.active {
    border-top: 2px solid var(--main_color);
}
.header_link_bottom>.header_link:hover {
    opacity: 1;
    border-top: 2px solid var(--main_color);
}
.header_link_bottom>.header_link>span:first-child {
    display: block;
    font-family: var(--txt_en);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 10px;
}
.header_link_bottom>.header_link>span:last-child {
    display: block;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
}

.header_link_tel_icon {
    display: block;
    width: 60px;
    height: 60px;
}

.hamburger_box {
    display: none;
}
#sp_glonav {
    display: none;
}

header {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
    -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
    -o-transition: opacity 0.5s ease, visibility 0.5s ease;
}
header.is-visible {
    opacity: 1;
    visibility: visible;
}

.pc_hamburger {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 1px solid var(--main_color);
    background-color: #1D1C1C;
    /* margin-left: 20px; */
    margin-left: -1px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}
.pc_inner_line {
    display: block;
    position: absolute;
    left: 50%;
    width: 21px;
    height: 1px;
    background-color: var(--main_color);
    transition: 0.3s;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.pc_inner_line.line1 {
    top: 20px;
}

.pc_inner_line.line2 {
    top: 30px;
}

.pc_inner_line.line3 {
    top: 40px;
}
.in {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
.pc_inner_line.line1.line_open_1 {
    top: 30px;
    left: 18px;
    transform: rotate(-225deg) translateX(0%);
    -webkit-transform: rotate(-225deg) translateX(0%);
    -moz-transform: rotate(-225deg) translateX(0%);
    -ms-transform: rotate(-225deg) translateX(0%);
    -o-transform: rotate(-225deg) translateX(0%);
}
.pc_inner_line.line2.line_open_2 {
    opacity: 0;
}
.pc_inner_line.line3.line_open_3 {
    top: 30px;
    left: 18px;
    transform: rotate(225deg) translateX(0%);
    -webkit-transform: rotate(225deg) translateX(0%);
    -moz-transform: rotate(225deg) translateX(0%);
    -ms-transform: rotate(225deg) translateX(0%);
    -o-transform: rotate(225deg) translateX(0%);
}

#pc_glonav {
    position: fixed;
    top: 0;
    left: 100%;
    background-color: var(--bg_color);
    transition: .3s;
    z-index: 11;
    display: block;
}

.pc_glonav_box {
    overflow-y: scroll;
    width: 100vw;
    height: calc(100svh - 60px);
    margin-top: 100px;
    padding-bottom: 100px;
}

.pc_glonav_logo_box {
    width: 216px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 49px;
}
.pc_glonav_box .top_news_box {
    margin-bottom: 50px;
}
.pc_glonav_box .top_news_link {
    border-top: 1px solid #3B3830;
    border-left: 1px solid #3B3830;
    border-right: 1px solid #3B3830;
}

.pc_glonav_box .footer_plan_link_box {
    border-top: 1px solid #3B3830;
}

.pc_glonav_box .footer_link_list_box2 {
    justify-content: center;
}
.pc_glonav_box .footer_link_list_box3 {
    justify-content: center;
}
.pc_glonav_box .footer_link_list_box4>a:nth-child(2) {
    margin-left: 32px;
    margin-right: 32px;
}

.pc_glonav_banner_box {
    display: flex;
    justify-content: center;
}
.pc_glonav_banner_box>a:first-child {
    display: flex;
    width: 347px;
    height: auto;
    font-family: var(--txt_en);
    text-align: left;
    color: #1D1C1C;
    padding: 8px 16px;
    background-image: linear-gradient(120deg, rgba(246, 244, 239, 1), rgba(235, 228, 210, 1) 26%, rgba(219, 211, 192, 1) 90%);
}
.pc_glonav_banner_box>a:first-child>div:first-child {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 45%;
    border-right: 1px solid rgba(29, 28, 28, 0.3);
    padding-right: 20px;
}
.pc_glonav_banner_box>a:first-child>div:first-child>div>span:first-child {
    display: block;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 6px;
}
.pc_glonav_banner_box>a:first-child>div:first-child>div>span:last-child {
    display: block;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: calc(20px * (4 / 100));
}
.pc_glonav_banner_box>a:first-child>div:last-child {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 55%;
    padding-left: 20px;
}
.pc_glonav_banner_box>a:first-child>div:last-child>span {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: calc(14px * (4 / 100));
}

.pc_glonav_box .copyright_box>p {
    text-align: center;
}

.pc_glonav_banner {
    max-width: 360px;
    margin-left: 35px;
}

@media only screen and (max-width: 1200px) {
    .header_box {
        max-width: 1000px;
    }
    .header_logo {
        width: 120px;
    }
    .header_link_top > a:not(:last-child) {
        width: 135px;
    }
    .header_link_top > a:last-child {
        width: 190px;
        text-align: center;
        padding: 10px 24px;
        margin-left: 20px;
    }
    .header_link_top>a>span:first-child {
        font-size: 12px;
    }
    .header_link_top>a>span:last-child {
        font-size: 10px;
    }
    .header_link_middle_box1>a:nth-child(n+2) {
        margin-left: 20px;
    }
    .header_link_middle_box2 .fv_link_tel {
        font-size: 20px;
        margin-right: 20px;
    }
    .header_link_middle_box2 .fv_link_btn {
        font-size: 14px;
    }
    .header_link_middle_box2 .change_lang {
        font-size: 14px;
    }
    .header_link_bottom>.header_link {
        width: 150px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .header_link_bottom>.header_link>span:first-child {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .header_link_bottom>.header_link>span:last-child {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1000px) {
    .header_box {
        max-width: 750px;
    }
    .header_logo {
        width: 100px;
    }
    .header_link_top > a:not(:last-child) {
        width: 90px;
    }
    .header_link_top > a:last-child {
        width: 130px;
        font-size: 12px;
        padding: 5px 10px;
        margin-left: 10px;
    }
    .header_link_top>a>span:first-child {
        font-size: 8px;
    }
    .header_link_top>a>span:last-child {
        font-size: 8px;
    }
    .header_link_middle_box1>a>svg {
        width: 16px;
    }
    .header_link_middle_box1>a:nth-child(n+2) {
        margin-left: 10px;
    }
    .header_link_middle_box2 .fv_link_tel {
        font-size: 12px;
        margin-right: 10px;
    }
    .header_link_middle_box2 .fv_link_btn {
        font-size: 10px;
        padding: 6px 10px 6px 30px;
    }
    .header_link_middle_box2 .fv_link_btn::after {
        left: 12px;
        width: 8px;
    }
    .header_link_middle_box2 .change_lang {
        font-size: 10px;
        padding: 6px 8px;
    }
    .header_link_bottom>.header_link {
        width: 100px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header_link_bottom>.header_link>span:first-child {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .header_link_bottom>.header_link>span:last-child {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    header {
        opacity: 1;
        visibility: visible;
    }
    .header_box {
        /* justify-content: end; */
        padding-top: 8px;
        padding-left: 16px;
        padding-right: 8px;
    }
    .header_link_box {
        display: none;
    }
    .header_logo {
        display: flex;
        align-items: center;
        width: 30px;
    }
    .hamburger_box {
        display: flex;
        align-items: center;
    }
    .hamburger_box .fv_link_bottom_lang_box {
        display: flex;
        align-items: center;
        border-bottom: none;
        padding: 0;
    }
    .hamburger_box .fv_link_bottom_lang_box .change_lang {
        width: 39px;
        margin-top: 0;
        margin-right: 2px;
    }
    .hamburger_box .fv_link_btn {
        font-size: 12px;
        padding: 6px 8px 6px 20px;
    }
    .hamburger_box .fv_link_btn::after {
        left: 10px;
        width: 6px;
    }
    .hamburger_box .header_link_tel_icon {
        width: 42px;
        height: 42px;
    }

    #hamburger {
        position: relative;
        width: 42px;
        height: 42px;
        cursor: pointer;
        z-index: 1000;
        border: 1px solid var(--main_color);
        background-color: #1D1C1C;
        transition: 1s;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        -o-transition: 1s;
    }
    .inner_line {
        display: block;
        position: absolute;
        left: 50%;
        width: 21px;
        height: 1px;
        background-color: var(--main_color);
        transition: 0.3s;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
    .inner_line.line1 {
        top: 12.5px;
    }
    
    .inner_line.line2 {
        top: 20.5px;
    }
    
    .inner_line.line3 {
        top: 28.5px;
    }
    .in {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
    .inner_line.line1.line_open_1 {
        top: 21px;
        left: 10px;
        transform: rotate(-225deg) translateX(0%);
        -webkit-transform: rotate(-225deg) translateX(0%);
        -moz-transform: rotate(-225deg) translateX(0%);
        -ms-transform: rotate(-225deg) translateX(0%);
        -o-transform: rotate(-225deg) translateX(0%);
    }
    .inner_line.line2.line_open_2 {
        opacity: 0;
    }
    .inner_line.line3.line_open_3 {
        top: 21px;
        left: 10px;
        transform: rotate(225deg) translateX(0%);
        -webkit-transform: rotate(225deg) translateX(0%);
        -moz-transform: rotate(225deg) translateX(0%);
        -ms-transform: rotate(225deg) translateX(0%);
        -o-transform: rotate(225deg) translateX(0%);
    }
    #sp_glonav {
        position: fixed;
        top: 0;
        left: 100%;
        background-color: var(--bg_color);
        transition: .3s;
        z-index: 20;
        display: block;
    }

    .sp_glonav_box {
        overflow-y: scroll;
        width: 100vw;
        height: calc(100svh - 60px);
        margin-top: 60px;
    }
}