@charset "UTF-8";

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






header {
    font-size: 1.6rem;
    line-height: 1.2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backface-visibility: hidden;
    width: 100%;
    /* min-width: 1300px; */
    -webkit-backface-visibility: hidden;
    color: #fff;
    height: 80px;
}

/*
.gnav_right li a {
    transition: color 0.2s ease-out;
}*/


.h_logo img {
    width: 198px;
    transition: all 0.2s ease-out;
}

.h_logo img:hover {
    opacity: .7;
    transition: all 0.2s ease-out;
}

/*---------------------------*/

header .gnav_menu > li .back_toright_btn {
    display: block;
    position: relative;
    padding: 6.9px 12.2px;
    border: 1pt solid #fff;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
    font-weight: 500;
    width: 110px;
}


.back_toright_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00469B;
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1);
    z-index: -1;
}

.back_toright_btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

header .gnav_menu > li .back_toright_btn:hover {
    color: #fff;
    border: 1pt solid #00469B;
}

header .gnav_menu > li .back_toright_btn:hover img {
    content: url("../images/common/upright_arw.svg");

}

/*-----------------------------*/

.header_dropdown {
    background-color: #fff;
    display: none;
    gap: 15px;
    position: absolute;
    right: 352px;
    top: 80px;
    padding: 25px;
    animation: .2s fadeup linear forwards;
}

@keyframes fadeup {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header_dropdown::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 302px;
    margin-left: -15px;
    border: 15px solid rgba(0, 0, 0, 0);
    border-bottom: 30px solid #fff;
}


.dropdown_card_ttl h3 {

    color: #4F4F4F;
}

.header_dropdown .header_dropdown-list:first-child .dropdown_card_ttl h3::after {

    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/common/right_arw.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 102px;
    top: 1px;
}

.header_dropdown .header_dropdown-list:last-child .dropdown_card_ttl h3::after {

    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/common/right_arw.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 167px;
    top: 1px;
}


.dropdown_card_ttl {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.dropdown_card_ttl img {
    padding-left: 30px;
}

.header_dropdown-list:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}

/*-----------------------------*/
.scrolled {
    background: hsla(0, 0%, 100%, .8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

}

.scrolled .h_logo img {
    content: url("../images/common/logo_bk.svg");
}

.scrolled .gnav_menu .back_toright_btn > img {
    content: url("../images/common/upright_arw_bl.svg");
}

.scrolled .gnav_right li a {
    color: #000
}

.scrolled .gnav_right li .back_toright_btn {
    color: #00469B;
    border: 1px #00469B solid;
}



.scrolled .h_logo img:hover {
    opacity: 0.5;
    transition: 0.2s ease-out;
}

.scrolled .gnav_menu li:not(:nth-child(2)):not(:last-child) a:hover {
    opacity: 0.5;
    transition: 0.2s ease-out;
}

.scrolled #hamburger > p {
    color: #000;
}

.scrolled #hamburger > .inner_line {
    background-color: #000;
}

.scrolled .gnav_right li .back_toright_btn::before {
    background-color: #CDE7FF;
}

.scrolled .gnav_right li .back_toright_btn:hover {
    color: #00469B
}

.scrolled .gnav_right li .back_toright_btn:hover > img {
    content: url(../images/common/upright_arw_bl.svg);
}


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

.gnav_menu li:not(:nth-child(2)):not(:last-child) a:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}


.h_contact {
    background: #00469B;
    width: 80px;
    height: 80px;
    padding-top: 20px;
}

.h_contact p {
    color: #fff;
    text-align: center;
    margin: auto;
}

.h_contact:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}


@media (min-width: 1024px) {
    header {
        font-size: 1.6rem;
    }

}

@media (min-width: 900px) {

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

    header .h_logo a {
        vertical-align: super;
    }
}


@media (max-width: 767px) {

    header .h_logo {
        margin-top: 1rem;
        max-width: calc(100% - 6rem);
    }

    header .h_right_top {
        max-width: calc(100% - 6rem);
        padding: 1rem;
        border-radius: .5rem;
    }


}

@media (min-width: 1028px) {
    header .container-lg {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    #nav > .trigger01 .dropdown_menu {
        display: flex;
        justify-content: flex-end;
        width: 1400px;
        max-width: 90%;
        position: absolute;
        left: -150px;
        top: 50px;
        padding: 80px 0 30px;
        ;
        z-index: 1;
    }

    #nav > .trigger01:hover .dropdown_menu {
        margin-left: 70px;
        opacity: 1;
        visibility: visible;
        align-items: flex-end;
    }

    #nav > .trigger01 .dropdown_menu::after {
        border-top: solid 2px #ddd;
        content: '';
        width: 150vw;
        height: 100%;
        position: absolute;
        top: 40px;
        left: -25vw;
        z-index: -1;
        background-color: #fff;
        box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.09);
    }

    #nav .menuttl_01 {
        position: absolute;
    }

    #nav > .trigger01 .menuttl_03 {
        font-size: 2rem;
        position: absolute;
        left: -200px;
        background-color: #2367d4;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 165px;
        height: 165px;
        border-radius: 30px;
        box-shadow: 0 12px 0 #bdbdbd;
    }

    #nav > .trigger01 .menuttl_03::after {
        content: '>';
        color: #fff;
        font-size: 2rem;
        position: absolute;
        right: 15px;
        transform: scale(0.6, 1.2);
    }

    #nav > .trigger01 .menuList {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 340px;
    }

    #nav > .trigger01 .list_ttl {
        font-size: 2rem;
        color: #2367d4;
        text-align: left;
        pointer-events: none;
    }

    #nav > .trigger01 .dropdown_list {
        flex: 0 1 46%;
        max-width: 46%;
    }

    #nav > .trigger01 .dropdown_list a {
        display: block;
        padding: 10px 10px 10px 0;
        color: #222;
        font-size: 1.6rem;
        border-bottom: solid 1px #ddd;
        text-align: left;
        position: relative;
    }

    #nav > .trigger01 .dropdown_list a::before {
        content: '>';
        color: #2367d4;
        transform: scale(0.6, 1.2);
        position: absolute;
        right: 0;
        width: 10px;
    }
}

@media (min-width: 1300px) {
    #nav > .trigger01 .dropdown_menu {
        left: -100px;
    }
}

@media (min-width: 1400px) {
    #nav > .trigger01 .dropdown_menu {
        left: 0px;
    }
}

/*PC Gloval Nav */
@media (min-width: 1028px) {
    header .gnav_menu {
        margin-bottom: 0;
        display: inline-flex;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

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

    header .gnav_menu > li > a {
        font-size: 1.6rem;

        color: #fff;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        display: block;
        position: relative;
        white-space: nowrap;
    }
}

@media (min-width: 868px) {
    header .gnav_menu > li > a {
        font-size: 1.4rem;
    }
}

@media (min-width: 1000px) {
    header .btn_link a {
        font-size: 1.4rem;
    }

    header .gnav_menu > li > a {
        font-size: 1.6rem;
    }
}


@media (min-width: 1260px) {
    header .gnav_menu {
        height: 80px;
    }

    header .gnav_menu > li > a {
        font-size: 1.6rem;
    }


    header .gnav_menu > li > a:not(:last-child):hover {
        opacity: 0.7;
        transition: 0.2s ease-out;
    }
}

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


    header {
        height: 60px
    }

    header .h_logo {
        margin: 14px 0 0 16px;
    }

    .h_contact {
        display: none;
    }

    /* 三ボタン */
    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;
    }

    html.bk_fixed {
        /*背景固定*/
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
    }

    header #gnav .d_sp {
        display: block;
    }

    header #gnav_btn {
        padding: 0;
        margin: 0;
        border: 0;
        background-color: transparent;
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        z-index: 9999;
        cursor: pointer;
    }

    body.open {
        /*背景固定*/
        overflow: hidden;
        /*position: fixed;*/
    }

    .open header #gnav_btn {
        position: fixed;
        text-align: center;
        margin: 0 auto;
    }

    header #gnav_btn > div {
        width: 36px;
        height: 32px;
        position: relative;
    }

    header #gnav_btn > div > p {
        margin: 1.2rem -0.5rem;
    }

    header #gnav_btn > div > span {
        background: #fff;
        width: 100%;
        height: 3px;
        left: 0;
        display: block;
        position: absolute;
        transition: all .5s;
    }

    header #gnav {
        text-align: center;
        background-color: #fff;
        color: #444;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1999;
        visibility: hidden;
        opacity: 0;
        transition: all .5s;
    }

    body.open #gnav {
        visibility: visible;
        opacity: 1;
    }

    header #gnav > nav {
        text-align: left;
        width: 85%;
        margin-top: 3rem;
        margin-bottom: 2rem;
        overflow: auto;
        /*スクロール時メニュー固定*/
    }

    header .nav_top {
        display: flex;
        justify-content: flex-end;
        margin-right: 30px;
    }

    header #gnav > nav::-webkit-scrollbar {
        display: none;
    }

    header #nav li > a {
        border-bottom: 1px solid #2367d4;
    }

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

    /*  header #nav > li:nth-child(4) > a {
    border-top: 1px solid #2367d4;
  }*/
    header #nav li > a::before {
        content: '>';
        transform: scale(0.6, 1.2);
        position: absolute;
        right: 0;
        width: 10px;
    }

    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 a:hover {
        opacity: 0.5;
    }

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

/****************************ハンバーガーメニュー****************************/
#sp-nav {
    position: fixed;
    height: 100%;
    width: 100%;
    right: -150%;
    top: 0;
    background: #4F4F4F;
    transition: .2s;
    z-index: 9998;
}

#sp-nav > ul {
    margin: 100px auto 0;
    max-width: 288px;
}


#sp-nav a {
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    color: #fff;

}

#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-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3382ED;
    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;
}

.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: 20px;
    right: 30px;
    width: 26px;
    height: 14px;
    transition: 0.2s;
}

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

.inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 22px;
    height: 1px;
    background-color: #fff;
    transition: 0.2s;
    z-index: 9999;
}

#line1 {
    top: 0;
}

#line2 {
    top: 7px;
}

#line3 {
    bottom: 0px;
}

.in #sp-nav {
    transform: translateX(-150%);
}

.line_1,
.line_2,
.line_3 {
    background: #fff;
}

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

.line_2 {
    opacity: 0;
}

.line_3 {
    transform: translateY(-6.5px) 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: 1028px) {
    #sp-nav {
        display: none;
    }

    #hamburger {
        display: none;
    }


}

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


}

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

.site-footer {
    background: #00469b;
    /* 青色 */
    color: #fff;
    font-size: 14px;
    padding-top: 3.7rem;
    padding-bottom: 2rem;
    position: relative;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
    row-gap: 2rem;
}

.footer-col01 {
    min-width: 150px;
    max-width: 410px;
}

.footer-col02 {
    min-width: 150px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-logo a:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}

.footer-logo p {
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 2rem 3.4rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}

.footer-bottom {
    text-align: left;
    max-width: 980px;
    margin: 65px auto 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-info {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.9rem
}

.footer_sub {
    padding: 0 0 0 1.2rem;
    border-left: 1px #fff solid;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0.6rem
}


.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    opacity: 0.7;
    transition: 0.2s ease-out;
}

.page-top {
    position: absolute;
    top: -20px;
    right: 30px;
    background: #00469b;
    border: 1px solid white;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    font-size: 20px;
    text-decoration: none;
    z-index: 999
}

.page-top:hover {
    background: white;
    color: #00469b;
    transition: 0.2s ease-out;
}

.page-top.top-fixed {
    position: fixed;
    top: unset;
    bottom: 30px;
    right: 30px;
}

.footer {
    background: #00469B
}

.footer p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
}

.footer-info_block {
    padding: 4rem 19rem 1rem 19rem;
}




.footer_text {
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: roboto;
}

.footer-nav01 {
    gap: 2rem 5.5rem;
}

@media (max-width:1024px) {


    .footer-inner {
        display: block;
        margin: 0 auto 2.8rem;
        max-width: 612px;
    }

    .footer-bottom {
        max-width: 612px;
    }

    .footer-nav {
        padding-top: 3rem;
    }
}

@media (max-width:760px) {
    .site-footer {
        margin: 0 auto;
        padding: 4.5rem 8.5rem 1rem 8.5rem;
    }

    .footer-inner {
        display: block;
        margin: 0 auto 2.8rem 0;
    }

    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }

    .under_top {
        display: none;
    }

    .under_about {
        margin-bottom: 2rem;
    }

    .under_sus {
        margin-top: 2rem;
    }

    .under_contact {
        display: none;
    }

    .footer-info {
        display: none;

    }

    .footer-info-sp {
        font-size: 1.3rem;
        font-weight: 500;
    }

    .footer_sub {
        font-weight: 400;
    }

    .footer-nav {
        display: block;
    }

    .footer-bottom {
        margin: 3.5rem auto 0
    }


}
