@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
*,
*:before,
*:after{
    box-sizing: border-box;
    word-wrap: break-word;
    /*outline: 1px solid magenta;*/
}
html{
    font-size:62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* 初期値設定 */
    --font-family-Sans: "Noto Sans JP", sans-serif; 
    /*--font-family-Serif: "Noto Serif JP", serif; 
    --font-family-Yugo: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; */
    --font-family-Gothic: "Zen Kaku Gothic New", sans-serif;
    --font-family-AlSans: "Albert Sans", sans-serif;
    --font-family-OpSans: "Open Sans", sans-serif;
    
    --height-header: 9rem; /* ヘッダー高さ */
    --base-width: 119rem; /* base_width幅 */
        --basw-w-padding: 2.5rem; /* base_width内余白 */
    /*--inner-width: 100rem;/* inner_width幅 */
    
    --font-color-base: #222;

    --color-blue: #0177ba;
    --color-rightblue: #83c6d6;
    --color-rightorange: #ffa758;
    --color-orange01: #ed7305;
    --color-orange02: #fd7903;
    
    --bg-color: #fff; /* 背景色 */

    --transition: all 0.5s;
    --ahover:translateY(-0.2rem);
}
/*--------------SP------------------ */
@media screen and (max-width: 767px) {
    :root{
        --height-header: 12.5rem; /* ヘッダー高さ */
        --base-width: 96vw; /* base_width幅 */
            --basw-w-padding: 2.5vw; /* base_width内余白 */
        /*--inner-width: 90vw;/* inner_width幅 */
    }
}
/*------------------------------------
        基本設定
-------------------------------------*/
body{
    line-height: 1.8;
    color: var(--font-color-base);
    font-family: var(--font-family-Gothic);
}
.full_width{
    width: 100%;
        margin: 0;
        padding: 0;
    /*overflow: hidden;*/
}
.outer_width{
    width: 100%;
    padding-inline: 5rem;
    margin-inline: auto;
}
.base_width{
    width: 100%;
    max-width: var(--base-width);
    padding-inline: var(--basw-w-padding);
    margin-inline: auto;
}
/*.inner_width{    
    width: calc(100% - (var(--basw-w-padding)*2));
    max-width: var(--inner-width);
    margin-inline: auto;
}*/
/*-------------note-----------------------*/
@media screen and (max-width:1250px) and (min-width:768px){
    .outer_width{
        width: 100%;
        padding-inline: 3rem;
        margin-inline: auto;
    }
}
/*-------------tab-----------------------*/
@media screen and (max-width:960px) and (min-width:768px){

}
/*-------------SP-----------------------*/
@media screen and (max-width:767px){
    /*------------------------------------
            基本設定
    -------------------------------------*/
    /* support iOS */
    html{
        height: -webkit-fill-available;
        font-size: calc(100vw * 10 / 750); /*幅390pxのとき1rem=10px*/
    }
    body{
        min-width: unset;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    .full_width{
        max-width: 100vw;
        min-width: unset;
        /*overflow:hidden !important;*/
    }
    .outer_width{
        padding-inline: 3vw;
    }
}
/*------------------------------
    共通コンテンツ
-------------------------------*/
/*-------------img--------------*/
picture,
img{
    width: 100%;
}
.ofi_cover_c { 
    height: 100%;
    object-fit: cover;
        object-position: center;
        font-family: 'object-fit: cover; object-position: center;';
}
.ofi_cover_L { 
    height: 100%;
    object-fit: cover;
        object-position: left;
        font-family: 'object-fit: cover; object-position: left;';
}
.ofi_cover_R { 
    height: 100%;
    object-fit: cover;
        object-position: right;
        font-family: 'object-fit: cover; object-position: right;';
}
.ofi_contain_c {
    height: 100%;
    object-fit: contain;
        object-position: center;
        font-family: 'object-fit: contain; object-position: center;';
}
/*---------------flex---------*/
.flex_c{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_sb{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_st{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex_ed{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/*-------------br 端末限定表示----*/
br.pc,
.pc_only{
    display: inline-block;
}
br.tab,
br.sp,
.sp_only{
    display: none;
}
/*-------------tab-----------------------*/
@media screen and (max-width:960px) and (min-width:768px){
    br.tab_none{
        display: none;
    }    
    br.tab{
        display: inline-block;
    }
}
/*-------------SP-----------------------*/
@media screen and (max-width:767px){
    br.pc,
    .pc_only{
        display: none;
    }    
    br.sp,
    .sp_only{
        display: inline-block;
    }        
}


a{
    opacity: 1;
    transition: var(--transition);
}
    a:hover{
        opacity: 0.7;
        transform: var(--ahover);
    }
/*-------------電話リンク---*/
@media (min-width: 767px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*------------------------------
            common
-------------------------------*/
/*-------------header------*/
.header{
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 9980;
}
.header .header_inner{
    height: var(--height-header);
    display: flex;
        justify-content: space-between;
        align-items: center;
    position: relative;
}
.h-logo{ 
}
.h-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #5f5e5e;
    display: flex;
    align-items: center;
}
.h-logo a:hover{
    opacity: 1;
}
.h-logo a img{
    width: 23.4rem; 
    margin-right: 1.6rem;  
    display: block;
}
.header_right{
    gap: 2.5rem;
}
.h-mynavi{
    width: 23.4rem;
    height: 5rem;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid #009ae6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h-mynavi img{
    width: 15.5rem;
    display: block;
}
.h-mail{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange02);
}
.h-mail img{
    width: 2rem;
}
/*-------------ハンバーガー------*/
#open_btn{
    width: 4rem;
    height: 4rem;
    padding-top: 2rem;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    display: block;
    transition: var(--transition);
}
#open_btn:hover{
    transform: var(--ahover);
}
#open_btn span.op-text{
    font-size: 1.4rem;
    letter-spacing: .075em;
    font-family: var(--font-family-AlSans);
    font-weight: 400;
    line-height: 1;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
#open_btn span.op-border{
    width: 100%;
    position: absolute;
    right: 0;
    height: 0.2rem;
    display: inline-block;
    transition: var(--transition);
    background: var(--font-color-base);
}
    #open_btn span.op-border:nth-of-type(1){
        top: 0.2rem;
    }
    #open_btn span.op-border:nth-of-type(2){
        top: 1.1rem;
        transition: all 0s;
    }
    #open_btn span.op-border:nth-of-type(3){
        bottom: 1.8rem;
    }
    #open_btn.active span.op-border:nth-of-type(1){
        width: 100%;
        top: 1.2rem;
        right: 0;
        transform: translateY(-50%) rotate(-25deg);
    }
    #open_btn.active span.op-border:nth-of-type(2){        
        opacity: 0;
    }
    #open_btn.active span.op-border:nth-of-type(3){
        width: 100%;
        top: 1.2rem;
        right: 0;
        transform: translateY(-50%) rotate(25deg);
    }
    /*-------------nav------*/
    .nav{
        width: auto;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        right: -120%;
        flex-direction: column;
        justify-content: flex-start;
        transition: var(--transition);
        z-index: 8888;
    }
    .nav_inner{
        border-top-left-radius: 5rem;
        border-bottom-left-radius: 5rem;
        padding: 14rem 5.5rem;
        background: url(../images/bg/bg_h-navi.png);
        background-repeat: repeat;
        background-size: contain;
    }
    .nav .nav_list{
        margin-right:unset;
        margin-bottom: 4.5rem;
        flex-direction: column;
        justify-content: flex-start;
    }
    /*-------------nav　開いているとき------*/
    /*-------------nav縦スクロール------*/
    #nav.panel_active{
        top: 0;
        right: 0;
    }        
    .nav .nav_list li{
        margin-bottom: 3.5rem;
        display: block;
    }
    .nav .nav_list li:last-of-type{
        margin-bottom: 0;
    }
    .nav .nav_list li a{    
        font-size: 2.2rem;
        font-weight: 500;
        display: inline-block;
        position: relative;
        opacity: 1;
    }
    .nav .nav_list li a span{
        font-size: 1.4rem;
        font-weight: 500;
        font-family: var(--font-family-AlSans);
        color: #015a88;
        display: block;
    }
    .nav .nav_list li a::after{
        width: 0;
        height: 0.1rem;
        background: var(--color-blue);
        position: absolute;
        left: 0;
        bottom: 1.15em;
        content: "";
        display: block;
        transition: var(--transition);
    }
    .nav .nav_list li a:hover::after{
        width: 100%;
    }
    .nav .nav_list li a:hover{
        color: #015a88;
        opacity: 1;
    }
    .nav .nav_list li a:hover span{
        color: var(--color-blue);
    }
.h-nav-link {
    width: 34.2rem;
    height: 8.6rem;
    border-radius: 9999px;
    display: flex;
        align-items: center;
        justify-content: center;
}
.h-nav-link:not(:last-of-type){
    margin-bottom: 4.7rem;
}
.h-nav-mynavi{
    background: #fff;
    border: 2px solid #009ae6;
}
.h-nav-mynavi img{
    width: 19.5rem;
    display: block;
}
.h-nav-mail{
    font-size: 2.2rem;
        font-family: var(--font-family-AlSans);
        font-weight: 500;
        letter-spacing: .1em;
        color: #fff;
    background: var(--color-orange02);
}
.h-nav-mail img{
    width: 2.9rem;
    margin-right: 1.5rem;
    display: block;
}


/*-------------------------------------
        responsive
-------------------------------------*/
/*-------------tab-----------------------*/
@media screen and (max-width:960px) and (min-width:768px){
    .header .header_inner{
        padding-inline: 3rem;
    }
    .h-mynavi{
        width: 20rem;
    }
}
/*-------------SP-----------------------*/
@media screen and (max-width:767px){
    /*-------------header------*/
    .header{
        width: 100%;
            min-width: unset;
    }
    .h-logo{
        width: auto; 
        height: auto;
    }
    .h-logo a {
        font-size: 2.5rem;
    }
    .h-logo a img {
        width: 35rem;
    }
    .h-mynavi,
    .h-mail{
        display: none;
    }
    /*-------------ハンバーガー------*/
    #open_btn{
        width: 6rem;
        height: 6rem;
            padding-top: 3rem;
    }
    #open_btn span.op-text{
        font-size: 2.1rem;
    }
    #open_btn span.op-border{
        height: 2px;
    }
    #open_btn span.op-border:nth-of-type(1){
        top: 0.3rem;
    }
    #open_btn span.op-border:nth-of-type(2){
        top: 1.65rem;
    }
    #open_btn span.op-border:nth-of-type(3){
        bottom: 2.7rem;
    }
    #open_btn.active span.op-border:nth-of-type(1){
        top: 1.8rem;
    }
    #open_btn.active span.op-border:nth-of-type(3){
        top: 1.8rem;
    }
    /*-------------nav------*/
    .nav{
        width: 90%;
    }
    .nav_inner{
        width: 100%;
        padding: 14rem 5.5rem;
    }
    .nav .nav_list{
        margin-bottom: 7rem;
    }
    /*-------------nav　開いているとき------*/
    /*-------------nav縦スクロール------*/
        .nav .nav_list li{
            margin-bottom: 5rem;
        }
        .nav .nav_list li:last-of-type{
            margin-bottom: 0;
        }
        .nav .nav_list li a{    
            font-size: 3.5rem;
        }
        .nav .nav_list li a span{
            font-size: 2.2rem;
        }
    .h-nav-link {
        width: 100%;
        height: 10rem;
    }
    .h-nav-link:not(:last-of-type){
        margin-bottom: 4rem;
    }
    .h-nav-mynavi img{
        width: 30rem;
        display: block;
    }
    .h-nav-mail{
        font-size: 3.5rem;
    }
    .h-nav-mail img{
        width: 4.5rem;
        margin-right:2.5rem;
    }
}
/*-------------------------------------
    pageTopBtn
--------------------------------------*/
#pageTopBtn {
    width: 8rem;
    height: 8rem;
    border-radius: 4rem;
    background: var(--color-orange02);
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    font-size: 1.8rem;
    font-family: var(--font-family-AlSans);
    color: #fff;
    border: 2px solid var(--color-orange02);
    visibility: hidden; 
    opacity: 0;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999;
}
#pageTopBtn.show {
    opacity: 1;
    visibility: visible;
}
#pageTopBtn:hover {
    background: #fff;
    color: var(--color-orange02);
    transform: var(--ahover);
}
/*-------------------------------------
    footer
--------------------------------------*/
.footer{
    border-top: 1px solid #ccc;
    padding-top: 4.2rem;
}
.footer__inner{
    margin-bottom: 3.6rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
/*----footer__left---*/
.footer__logo{ 
    margin-bottom: 3.2rem;
}
.footer__logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #5f5e5e;
    display: flex;
        align-items: center;
}
.footer__logo a img{
    width: 23.4rem; 
    margin-right: 1.6rem;  
    display: block;
}
.footer__address{
    margin-bottom: 17rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: calc(3.2 / 1.6);
    text-align: left;
}

.footer__link{
    padding-right: 1.2em;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .05em;
    display: inline-block;
    position: relative;
    color: #5f5e5e;
}
.footer__link::before{
    width: 1.5rem;
    height: 1.5rem;
    background: url(../images/icon_outlink.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
}
.footer__link::after{
    width: 0;
    height: 1px;
    background: var(--font-color-base);
    position: absolute;
    left: 0;
    bottom: 2px;
    display: block;
    content: "";
    transition: var(--transition);
}
.footer__link:hover::after{
    width: 100%;
}
/*----footer__left---*/
/*----footer__right -*/
.footer__right{
    padding: 2rem 2rem 1.5rem 5rem;
    border-radius: 1.2rem;
    background: #f2f9fb;
}
.footer__contact__item{
    margin-bottom: 2.5rem;
}
.footer__contact__item dt{
    margin-bottom: 0rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .05em;
    position: relative;
}
.footer__contact__item dt::before{
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: var(--color-rightblue);
    position: absolute;
    left: -2.5rem;
    top: 1em;
    transform: translate( 50% , -50%);
    display: block;
    content: "";
}
.f-mynavi{
    margin-top: 2rem;
    width: 28.6rem;
    height: 6rem;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid #009ae6;
    display: flex;
        align-items: center;
        justify-content: center;
}
.f-mynavi img{
    width: 19.5rem;
    max-height: 100%;
    display: block;
}
.f-tel{
    font-size: 3rem;
    font-family: var(--font-family-AlSans);
    font-weight: 500;
    letter-spacing: .05em;
}
.f-mail{
    font-size: 2.2rem;
    font-family: var(--font-family-AlSans);
    font-weight: 500;
    letter-spacing: .05em;
}
/*----footer__right -*/
.footer__copyright{
    padding-block: 2.2rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1;
    color: #5f5e5e;
    font-family: var(--font-family-AlSans);
    text-align: right;
    display: block;
}
/*-------------tab-----------------------*/
@media screen and (max-width:960px) and (min-width:768px){
    
}
/*-------------SP-----------------------*/
@media screen and (max-width:767px){

    .footer{
        padding-top: 6.5rem;
    }
    .footer__inner{
        margin-bottom: 5.5rem;
        flex-direction: column;
        gap: 5rem;
    }
    /*----footer__left---*/
    .footer__logo{ 
        margin-bottom: 5rem;
    }
    .footer__logo a {
        font-size: 2.5rem;
    }
    .footer__logo a img{
        width: 35rem; 
        margin-right: 2.5rem; 
    }
    .footer__address{
        margin-bottom: 3rem;
        font-size: 2.4rem;
    }

    .footer__link{
        font-size: 2.4rem;
    }
    .footer__link::before{
        width: 2.4rem;
        height: 2.4rem;
    }
    /*----footer__left---*/
    /*----footer__right -*/
    .footer__right{
        padding: 3rem 3rem 2.25rem 7.5rem;
        border-radius: 2rem;
    }
    .footer__contact__item{
        margin-bottom: 3.75rem;
    }
    .footer__contact__item dt{
        font-size: 2.5rem;
    }
    .footer__contact__item dt::before{
        width: 1.4rem;
        height: 1.4rem;
        left: -4rem;
    }
    .f-mynavi{
        width: 45rem;
        height: 9rem;
    }
    .f-mynavi img{
        width: 28.5rem;
    }
    .f-tel{
        font-size: 4.5rem;
    }
    .f-mail{
        font-size: 3.3rem;
    }
    /*----footer__right -*/
    .footer__copyright{
        padding-block: 3.5rem;
        font-size: 2rem;
        text-align: center;
    }
}