@charset "UTF-8";


/* ヘッダー */
header > div {
    position: relative;
}

header {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 22.4px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backface-visibility: hidden;
    width: 100%;
    -webkit-backface-visibility: hidden;
    background-color: #fff;
    height: 80px;
}

header .brand_logo {
    display: flex;
    margin: 27px 0;

}

.brand_logo img {
    width: 230px;
    height: 26.5px;
}


.container-lg {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding-left: clamp(20px, 1.68vw, 9999px);
    padding-right: clamp(16px, 0.8vw, 9999px);
    align-items: center;
}

header .primary_menu > li > a {
    color: #252525;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0 1.5rem;
    position: relative;
    white-space: nowrap;
}

header .primary_menu {
    margin-bottom: 0;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

header .primary_menu > li {
    margin: 0;
    padding: 0;
    position: inherit !important;
    display: flex;
    align-items: center;
}

header .primary_menu > li .cta_button {

    margin: 0 0 0 15px;
    padding: 13.8px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.6rem;
    width: 100%;
    max-width: 130px;
    background: var(--main-color);
    color: #fff;
}


/* SPグローバルナビゲーション */
@media (max-width: 799px) {

    header {
        height: 55px;
    }

    .container-lg {
        padding-left: clamp(0px, 4vw, 20px);
        padding-right: clamp(0px, 4vw, 20px);
    }

    .brand_logo img {
        width: 200px;
    }

    /* 三本線ボタン */
    header #gnav_btn > div > span:nth-of-type(1) {
        top: 0;
    }

    header #gnav_btn > div > span:nth-of-type(2) {
        top: calc(50% - 2px);
    }

    header #gnav_btn > div > span:nth-of-type(3) {
        bottom: 0;
    }

    .open header #gnav_btn > div > span:nth-of-type(1) {
        transform: translateY(15px) rotate(45deg);
    }

    .open header #gnav_btn > div > span:nth-of-type(2) {
        opacity: 0;
    }

    .open header #gnav_btn > div > span:nth-of-type(3) {
        transform: translateY(-15px) rotate(-45deg);
    }

    header .pc_only {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    header #main-nav .menuList li > a {
        font-size: 1.3rem;
        color: #222;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    header .primary_menu {
        height: 100%;
        display: none;
    }

    body.open header .primary_menu {
        display: block;
        position: relative;
        z-index: 1999;
        width: 90%;
        margin: 0 auto;
        padding: 0px 20px 50px 0;
        overflow: auto;
        height: 90vh;
    }

    header .primary_menu a {
        text-decoration: none;
        padding: 15px 0;
        display: block;
        position: relative;
        color: #2367d4;
    }

    header .btn_link a {
        padding-top: 1rem;
    }

    header .primary_menu > li > a {
        font-weight: 700;
    }


}



/* ハンバーガーメニュー */
/* 隠れている状態 */
#mobile-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    background: #fff;
    transition: transform 0.3s ease;
    /* transitionの指定を少し詳細に */
    transform: translateX(100%);
    z-index: 9998;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#mobile-menu > ul {
    margin: 70px auto 0;
    padding-left: clamp(0px, 4vw, 88.5px);
    padding-right: clamp(0px, 4vw, 88.5px);
}

#mobile-menu > ul li {
    text-align: center;
}


#mobile-menu a {
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    padding: 27.5px 0;
    display: block;
    color: var(--black);
    position: relative;
    text-align: center;
    margin: 0 88.5px;
}

#mobile-menu .cta_button {

    margin: 0 auto;
    padding: 17px 16.7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.6rem;
    width: 100%;
    max-width: 130px;
    background: var(--main-color);
    color: #fff;
}

#mobile-menu li:nth-child(-n+3) a {
    border-bottom: 1px solid var(--gray02);
}

#mobile-menu .sp-nav-pd01 {
    padding: 15px 0 30px 0;
}



#mobile-menu .sp-nav-pd02 {
    padding: 0 0 10px 0;
}

#mobile-menu .sp-nav-pd03 {
    padding: 30px 0 15px 0;
}

#mobile-menu ul .sp-contact-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    background: var(--main-color);
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    box-sizing: border-box;
    width: 100%;
    margin: 58px auto 6px auto;
    text-align: center;
    height: 41px;
}

.sp-contact-btn > a {

    padding: 16px 96px;
}


#mobile-menu li {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

.sp-nav-lowerBox {
    border-left: #fff 1pt solid;
}

#mobile-menu li .sp-nav-lower > a {
    padding: 0 0 0 12px;
    font-weight: 500;
    font-size: 1.4rem;
}


#menu-toggle {
    position: absolute;
    top: 18.5px;
    right: 30px;
    width: 30px;
    height: 20px;
    transition: 0.2s;
}

#menu-toggle.fixed {
    position: fixed;
    top: 18.5px;
    /* お好みで調整 */
    right: 20px;
    /* お好みで調整 */
    z-index: 10000;
    /* メニューより上に */
}

.bar {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    transition: 0.2s;
    z-index: 9999;
}

#bar1 {
    top: 0;
}

#bar2 {
    top: 10px;
}

#bar3 {
    bottom: 0px;
}

/* 表示する状態（body.in ではなく #mobile-menu.in に変更） */
#mobile-menu.in {
    transform: translateX(0);
}

.line_1,
.line_2,
.line_3 {
    background: var(--main-color);
}

.line_1 {
    transform: translateY(10px) rotate(-45deg);
    top: 0;
}

.line_2 {
    opacity: 0;
}

.line_3 {
    transform: translateY(-9px) rotate(45deg);
    bottom: 0;
}

#menu-toggle > p {
    font-family: roboto;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    display: block;
    position: absolute;
    top: 22px;
    right: 1px;
}

@media (min-width: 800px) {
    #mobile-menu {
        display: none;
    }

    #menu-toggle {
        display: none;
    }


}

@media (max-width: 799px) {
    #menu-toggle {
        display: block;
    }


}


/* フッター */

footer {
    padding-top: 66px;
    border-top: 1px solid var(--gray02);
    background: #fff;
}

footer img {
    max-width: 230px;
    width: 100%;
}

.footer_main {
    margin: 0 auto;
}

.footer_content {
    max-width: 574px;
    margin: 0 auto;
    padding-left: clamp(0px, 4vw, 20px);
    padding-right: clamp(0px, 4vw, 20px);
}

.footer_brand {
    text-align: center;
    margin-bottom: 45px;
}


.footer_navigation {
    list-style: none;
    display: flex;
    padding-bottom: 67.5px;
    justify-content: space-between;

}

.footer_navigation a {
    color: var(--black);
}

.footer_navigation li {
    font-size: 1.4rem;
}

.footer_copyright {
    height: 60px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gray02);
}


@media (max-width: 767px) {
    .footer_navigation {
        max-width: 345px;
        padding-bottom: 60px;
        margin: 0 auto;
        column-gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer_brand_link img {
        width: 230px;
    }

    .footer_navigation li {
        width: calc(100% / 2 - 30px);
        border-bottom: 1px solid var(--gray02);
        padding: 20px 0;
    }

}

@charset "UTF-8";


/* header */
header > div {
    position: relative;
}

header {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 22.4px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backface-visibility: hidden;
    width: 100%;
    -webkit-backface-visibility: hidden;
    background-color: #fff;
    height: 80px;
}

header .h_logo {
    display: flex;
    margin: 27px 0;

}

.h_logo img {
    width: 230px;
    height: 26.5px;
}


.container-lg {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding-left: clamp(20px, 1.68vw, 9999px);
    padding-right: clamp(16px, 0.8vw, 9999px);
    align-items: center;
}

header .gnav_menu > li > a {
    color: #252525;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0 1.5rem;
    position: relative;
    white-space: nowrap;
}

header .gnav_menu {
    margin-bottom: 0;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

header .gnav_menu > li {
    margin: 0;
    padding: 0;
    position: inherit !important;
    display: flex;
    align-items: center;
}

header .gnav_menu > li .nav_btn {

    margin: 0 0 0 15px;
    padding: 13.8px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.6rem;
    width: 100%;
    max-width: 130px;
    background: var(--main-color);
    color: #fff;
}


/*SP Gloval Nav */
@media (max-width: 799px) {

    header {
        height: 55px;
    }

    .container-lg {
        padding-left: clamp(0px, 4vw, 20px);
        padding-right: clamp(0px, 4vw, 20px);
    }

    .h_logo img {
        width: 200px;
    }

    /* 三ボタン */
    header #gnav_btn > div > span:nth-of-type(1) {
        top: 0;
    }

    header #gnav_btn > div > span:nth-of-type(2) {
        top: calc(50% - 2px);
    }

    header #gnav_btn > div > span:nth-of-type(3) {
        bottom: 0;
    }

    .open header #gnav_btn > div > span:nth-of-type(1) {
        transform: translateY(15px) rotate(45deg);
    }

    .open header #gnav_btn > div > span:nth-of-type(2) {
        opacity: 0;
    }

    .open header #gnav_btn > div > span:nth-of-type(3) {
        transform: translateY(-15px) rotate(-45deg);
    }

    header .pc_only {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    header #nav .menuList li > a {
        font-size: 1.3rem;
        color: #222;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    header .gnav_menu {
        height: 100%;
        display: none;
    }

    body.open header .gnav_menu {
        display: block;
        position: relative;
        z-index: 1999;
        width: 90%;
        margin: 0 auto;
        padding: 0px 20px 50px 0;
        overflow: auto;
        height: 90vh;
    }

    header .gnav_menu a {
        text-decoration: none;
        padding: 15px 0;
        display: block;
        position: relative;
        color: #2367d4;
    }

    header .btn_link a {
        padding-top: 1rem;
    }

    header .gnav_menu > li > a {
        font-weight: 700;
    }


}



/****************************ハンバーガーメニュー****************************/
/* 隠れている状態 */
#sp-nav {
    position: fixed;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    background: #fff;
    transition: transform 0.3s ease;
    /* transitionの指定を少し詳細に */
    transform: translateX(100%);
    z-index: 9998;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#sp-nav > ul {
    margin: 70px auto 0;
    padding-left: clamp(0px, 4vw, 88.5px);
    padding-right: clamp(0px, 4vw, 88.5px);
}

#sp-nav > ul li {
    text-align: center;
}


#sp-nav a {
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    padding: 27.5px 0;
    display: block;
    color: var(--black);
    position: relative;
    text-align: center;
    margin: 0 88.5px;
}

#sp-nav .nav_btn {

    margin: 0 auto;
    padding: 17px 16.7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.6rem;
    width: 100%;
    max-width: 130px;
    background: var(--main-color);
    color: #fff;
}

#sp-nav li:nth-child(-n+3) a {
    border-bottom: 1px solid var(--gray02);
}

#sp-nav .sp-nav-pd01 {
    padding: 15px 0 30px 0;
}



#sp-nav .sp-nav-pd02 {
    padding: 0 0 10px 0;
}

#sp-nav .sp-nav-pd03 {
    padding: 30px 0 15px 0;
}

#sp-nav ul .sp-contact-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    background: var(--main-color);
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    box-sizing: border-box;
    width: 100%;
    margin: 58px auto 6px auto;
    text-align: center;
    height: 41px;
}

.sp-contact-btn > a {

    padding: 16px 96px;
}


#sp-nav li {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

.sp-nav-lowerBox {
    border-left: #fff 1pt solid;
}

#sp-nav li .sp-nav-lower > a {
    padding: 0 0 0 12px;
    font-weight: 500;
    font-size: 1.4rem;
}


#hamburger {
    position: absolute;
    top: 18.5px;
    right: 30px;
    width: 30px;
    height: 20px;
    transition: 0.2s;
}

#hamburger.fixed {
    position: fixed;
    top: 18.5px;
    /* お好みで調整 */
    right: 20px;
    /* お好みで調整 */
    z-index: 10000;
    /* メニューより上に */
}

.inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--main-color);
    transition: 0.2s;
    z-index: 9999;
}

#line1 {
    top: 0;
}

#line2 {
    top: 10px;
}

#line3 {
    bottom: 0px;
}

/* 表示する状態（body.in ではなく #sp-nav.in に変更） */
#sp-nav.in {
    transform: translateX(0);
}

.line_1,
.line_2,
.line_3 {
    background: var(--main-color);
}

.line_1 {
    transform: translateY(10px) rotate(-45deg);
    top: 0;
}

.line_2 {
    opacity: 0;
}

.line_3 {
    transform: translateY(-9px) rotate(45deg);
    bottom: 0;
}

#hamburger > p {
    font-family: roboto;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    display: block;
    position: absolute;
    top: 22px;
    right: 1px;
}

@media (min-width: 800px) {
    #sp-nav {
        display: none;
    }

    #hamburger {
        display: none;
    }


}

@media (max-width: 799px) {
    #hamburger {
        display: block;
    }


}


/* =================================== 
Footer
 =================================== */

footer {
    padding-top: 66px;
    border-top: 1px solid var(--gray02);
    background: #fff;
}

footer img {
    max-width: 230px;
    width: 100%;
}

.footer_info_block {
    margin: 0 auto;
}

.footer_info_box {
    max-width: 574px;
    margin: 0 auto;
    padding-left: clamp(0px, 4vw, 20px);
    padding-right: clamp(0px, 4vw, 20px);
}

.footer_info_logo {
    text-align: center;
    margin-bottom: 45px;
}


.footer_info_link {
    list-style: none;
    display: flex;
    padding-bottom: 67.5px;
    justify-content: space-between;

}

.footer_info_link a {
    color: var(--black);
}

.footer_info_link li {
    font-size: 1.4rem;
}

.footer_copy {
    height: 60px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gray02);
}


@media (max-width: 767px) {
    .footer_info_link {
        max-width: 345px;
        padding-bottom: 60px;
        margin: 0 auto;
        column-gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer_info_logo_link img {
        width: 230px;
    }

    .footer_info_link li {
        width: calc(100% / 2 - 30px);
        border-bottom: 1px solid var(--gray02);
        padding: 20px 0;
    }

}
