


/*---------------------------------

  中身

---------------------------------*/

.main{

}


@media screen and (max-width:1024px){
    
    
}

@media screen and (max-width:767px){

    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header > div{
    position: fixed;
    top: 20px;
    left: 3%;
    align-items: center;
    justify-content: space-between;
    width: 94%;
    height: 92px;
    padding: 0 50px;
    background: rgba( 255, 255, 255, .8);
    border-radius: 50px;
    z-index: 100;
}
.header .logo{
    width: 250px;
    height: 60px;
    margin: 0;
}

@media screen and (max-width:1024px){

}
@media screen and (max-width:767px){

    .header > div{
        padding: 0 30px;
    }
    .header .logo{
        width: 200px;
        height: 50px;
        margin: 0;
    }

}

/*---------------------------------

  グロナビ

---------------------------------*/

.header_nav{
    height: 100%;
}
.header_nav .gnav_list{
    height: 100%;
    padding: 15px 0;
}
.header_nav li a{
    display: block;
    height: 100%;
    padding: 20px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.header_nav li a:hover{
    color: var(--sub);
}
.header_nav li .en{
    display: none;
    font-size: 12px;
    line-height: 1.5;
}
.header_nav .recruit_btn{
    width: 106px;
    height: 50px;
    margin-left: 13px;
    margin-top: 7px;
}
.header_nav .recruit_btn a{
    width: 100%;
    padding: 15px 0 0;
    background: var(--accent);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}
.header_nav li.recruit_btn a:hover{
    background: #FF4520;
    color: #fff;
}
.header_nav .contact_btn{
    width: 52px;
    height: 52px;
    margin-left: 15px;
    margin-top: 7px;
}
.header_nav .contact_btn a{
    width: 100%;
    padding: 18px 0 0;
    background: var(--main);
    border: 1px solid var(--white);
    border-radius: 50%;
    color: #fff;
}
.header_nav .contact_btn a:hover{
    background: var(--link);
}
.header_nav .contact_btn a::before{
    content: '';
    position: relative;
    left: calc(50% - 10px);
    display: block;
    width: 21px;
    height: 16px;
    margin: 0 0 8px;
    background: url(../img/common/ico_mail.png) no-repeat;
    background-size: 21px;
}

@media screen and (max-width:1439px){

    .header_nav li a{
        padding: 20px 10px;
    }

}
@media screen and (max-width:1024px){

    .header_nav{
        display: none;
    }
}

/*---------------------------------

  ハンバーガー（メニュー）

---------------------------------*/

.header_nav_sp{
    position: fixed;
    top: 0;
    right: -375px;
    display: none;
    width: 375px;
    max-width: 100%;
    height: 100%;
    padding: 150px 20px 20px;
    background: var(--lgray-bg);
    z-index: 99;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    overflow-y: auto;
}

/* サイドメニューオープン */
.side_open .header_nav_sp{
    -webkit-transform: translate3d(-375px, 0, 0);
    transform: translate3d(-375px, 0, 0);
}

.header_nav_sp .hnav_sp_list{
    justify-content: space-between;
    padding: 20px 5% 20px;
    background: var(--white);
    border-radius: 20px;
}
/*
.header_nav_sp .hnav_sp_list > li{
    width: 100%;
    padding: 20px 0 0;
    border-bottom: 1px solid #DADADA;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.header_nav_sp .hnav_sp_list li .list{
    display: none;
    padding: 24px;
    background: #fff;
}
.header_nav_sp .hnav_sp_list li .list li a{
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}
.header_nav_sp .hnav_sp_list li .list li a::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
}
.header_nav_sp .hnav_sp_list li .list li + li{
    margin: 15px 0 0;
}

.header_nav_sp .hnav_sp_list > li > a.arrow_r_o{
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 0 0;
    margin: 0 0 20px;
}
*/
/* 1. 初期状態：子ページ（dd）を非表示にする */
.js-accordion dd {
    display: none;
    padding: 10px 15px;
}
.js-accordion dd::before{
    content: '-';
    display: inline-block;
    margin-right: 5px;
    color: var(--main);
}

/* 2. 親要素（dt）のカーソルをポインターにする */
.js-accordion dt {
    cursor: pointer;
    position: relative;
    border-top: 1px solid var(--main);
}

.js-accordion dt .c-arrow::before {
    top: calc(50% - 15px);
}
.js-accordion dt.has-child .c-arrow::before {
    transform: rotate(90deg);
}
.js-accordion dt.minus .c-arrow::before {
    transform: rotate(270deg);
}

.js-accordion dt > *{
    display: block; /* 領域全体をタップできるようにする */
    width: 100%;
    padding: 20px 0;
}


/* 自動追加された「〇〇 トップ」のリンクを少し強調したい場合 */
.js-accordion dd.parent-top-link a {
    font-weight: bold;
    opacity: 0.8;
}

@media screen and (max-width:1024px){

    .header_nav_sp{
        display: block;
    }

}
@media screen and (max-width:767px){

}

/*---------------------------------

  ハンバーガー（ボタン）

---------------------------------*/

.nav_trigger {
    position: fixed;
    right: calc(3% + 15px);
    top: 34px;
    display: none;
    width: 64px;
    height: 64px;
    padding: 28px 0 0;
    background: var(--main);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all .5s;
}
.nav_trigger:hover{
    background: var(--main);
}
.nav_trigger .line{
    position: absolute;
    top: 30px;
    right: 22px;
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,1);
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.01em;
    line-height: 28px;
    text-align: center;
    transition: all .5s;
}
.nav_trigger .line::before,
.nav_trigger .line::after{
    position: absolute;
    display: block;    
    height: 2px;
    margin: auto;
    background: rgba(255,255,255,1);
    border-radius: 2px;
    transition: all .5s;
}
.nav_trigger .line::before{
    content: '';
    top: -5px;
    width: 20px;
}
.nav_trigger .line::after{
    content: '';
    top: -10px;
    width: 20px;
}

.nav_trigger.active{
    width: 64px;
    height: 64px;
}
.nav_trigger.active .line::before{
    top: -1px;
    width: 20px;
    height: 2px;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
}
.nav_trigger.active .line{
    background: rgba( 0, 0, 0, 0);
}
.nav_trigger.active .line::after{
    width: 20px;
    height: 2px;
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}
.nav_trigger .text{
    position: absolute;
    bottom: 26px;
    width: 100%;
    color: #fff;
    font-size: 10px;
}
.nav_trigger .text::before{
    content: 'MENU';
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 1;
    transition: .5s;
}
.nav_trigger.active .text::before{
    opacity: 0;
}
.nav_trigger .text::after{
    content: 'CLOSE';
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: .5s;
}
.nav_trigger.active .text::after{
    opacity: 1;
}

@media screen and (max-width:1024px){
    
    .nav_trigger {
        display: block;
    }
    
}

/*---------------------------------

  下層ページヘッダー

---------------------------------*/

.page_header{
    position: relative;
    height: 543px;
    padding: 286px 0 0;
    background: url(../img/common/page_header_bg.png) center center / cover no-repeat;
}
.page_header .title{
    position: relative;
    color: var(--black-txt);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    z-index: 1;
}
.page_header .title span{
    position: relative;
    display: none;
    color: #fff;
    font-size: 60px;
    font-family: "Josefin Sans", sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

@media screen and (max-width:767px){

    .page_header{
        height: 300px;
        padding: 170px 0 0;
    }
    .page_header .title{
        font-size: 32px;
    }

}

/*---------------------------------

  下層ページレイアウト

---------------------------------*/

.bloc{
    padding: var(--space-bloc);
}

.bloc:not(.-color_bg) + .bloc:not(.-color_bg){
    padding-top: 0;
}


/*---------------------------------

  パンくず

---------------------------------*/

.breadcrumb{
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    padding: 0px 0;
}
.breadcrumb li{
    display: inline-block;
    color: var(--text);
    font-size: 11px;
    font-weight: 400;
}
.breadcrumb li::before{
    content: '＞';
    display: inline-block;
    padding: 0 5px;
    color: var(--darkgreen-txt);
}
.breadcrumb li:first-child::before{
    content: '';
    padding: 0 0;
}
.breadcrumb li a{
    color: var(--link);
}
.breadcrumb li a:hover{
    color: var(--main);
}

@media screen and (max-width:767px){

}

/*---------------------------------

  aside

---------------------------------*/

.aside{
    position: relative;
    width: 100%;
    min-height: 700px;
    background: url(../img/common/aside_bg.png) center / cover no-repeat;
}
.aside::before{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #B4E9E6 0%, rgba(180, 233, 230, 0) 100%);

}

.aside .inner{
    position: relative;
    padding: 134px 0;
    z-index: 1;
}

.aside .inner .message{
    display: block;
    width: 100%;
    max-width: 471px;
    margin: 0 auto 100px;
}

.aside .inner .flex{
    justify-content: center;
    align-items: center;
    gap: 20%;
}

.aside .inner .flex dt,
.aside .inner .flex dd:first-of-type{
    font-size: 18px;
}

.aside .inner .flex dd:not(:last-of-type){
    line-height: 1;
}

.aside .inner .flex dd + dd{
    margin-top: 30px;
}


@media screen and (max-width:767px){

    .aside .inner{
        position: relative;
        padding: 134px 4%;
        z-index: 1;
    }

    .aside .inner .message{
        max-width: 400px;
    }

    .aside .inner .flex{
        gap: 30px 25%;
    }

    .aside .inner .flex dl{
        width: 100%;
        text-align: center;
    }
    .aside .inner .flex dd .c-btn{
        margin: auto;
    }

}

/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    width: 100%;
    padding: 120px 0 24px;
    background: var(--footer-bg);
    color: var(--black-txt);
    font-size: 15px;
    font-weight: 400;
}

.footer .flex{
    position: relative;
    gap: 5%;
}

.footer a{
    color: var(--black-txt);
}

.footer .fnav_list div{
    width: 30%;

}

.footer .fnav_list div dt a{
    display: block;
    min-height: 65px;
    padding: 8px 0 0;
    border-bottom: 1px solid var(--main);
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
}
.footer .fnav_list div dd a::before{
    content: '-';
    display: inline-block;
    margin-right: 4px;
}
.footer .fnav_list div dt + dt{
    margin-top: 38px;
}
.footer .fnav_list div dt + dd{
    margin-top: 32px;
}
.footer .fnav_list div dd + dt{
    margin-top: 45px;
}
.footer .fnav_list div a:hover{
    color: var(--sub);
}

.footer .copy{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 80px;
}
.footer .copy small{
    display: inline-block;
    color: #059FA2;
    font-size: 12px;
    font-weight: 600;
}

@media screen and (max-width:767px){

    .footer .fnav_list div{
        width: 100%;
    }

    .footer .fnav_list div dt a{
        min-height: 50px;
        font-size: 18px;
    }

    .footer .fnav_list div dd:last-of-type{
        margin-bottom: 40px;
    }


}

/*---------------------------------

  その他共通

---------------------------------*/

.overlay {
    content: '';
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 10;
}
.overlay.open{
    visibility: visible;
    cursor: pointer;
    background: rgba(0,0,0,.7);
}

.c-title{
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 48px;
    color: var(--text);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .1em;
}
.c-title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 45px;
    height: 4px;
    background: var(--darkgreen-line);

}
.c-title.ta-center::before{
    left: calc(50% - 23px);
}

.c-title_s{
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 2px 15px;
    margin: 0 0 40px;
    font-size: 30px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .05em;
}
.c-title_s::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 36px;
    height: 4px;
    background: var(--darkgreen-line);
    transform: rotate(-90deg);
    transform-origin: left bottom;

}

@media screen and (max-width:1024px){
    

}

@media screen and (max-width:767px){

    .c-title{
        margin: 0 0 40px;
        font-size: 24px;
    }

    .c-title_s{
        margin: 0 0 40px;
        font-size: 21px;
    }
    .c-title_s::before{
        bottom: calc(50% - 14px);
        width: 28px;
    }
    
}


/*---------------------------------

  table

---------------------------------*/

.table{
    width: 100%;
}
.table .grid{
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
}
.table dt{
    padding: 32px 0;

    color: var(--darkgreen-txt);
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
}
.table dt::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    border-bottom: 2px solid var(--darkgreen-txt);
}
.table dd{
    padding: 32px 22px;
    border-bottom: 2px solid #E7E7E7;
}

@media screen and (max-width:767px){

    .table .grid{
        grid-template-columns: 1fr;
    }
    .table dt{
        width: 100%;
        padding: 24px 0 10px;
        border-bottom: 2px solid var(--darkgreen-txt);
        font-size: 14px;
    }
    .table dt::after{
        content: none;
    }
    .table dd{
        padding: 24px 0;
        font-size: 14px;
    }

}

/*---------------------------------

  bloc_flexible

---------------------------------*/

.bloc_flexible .flex{
    justify-content: center;
}
.bloc_flexible .flex[class*="two-column"]{
    gap: 6%;
}
.bloc_flexible .flex.two-column_re{
    flex-direction: row-reverse;
}
.bloc_flexible .flex[class*="two-column"] .image-alt{
    width: 47%;
}
.bloc_flexible .flex[class*="two-column"] .detail{
    width: 47%;
}
.bloc_flexible .component + .component{
    margin-top: 60px;
}

.bloc_flexible .link img{
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.bloc_flexible .c-box{
    margin-top: 60px;
}

.bloc_flexible .c-box .flex{
    gap: 6%;
}
.bloc_flexible .c-box img{
    width: 44%;
}
.bloc_flexible .c-box .data{
    width: 50%;
}

.bloc_flexible .c-box .data .c-title_ss{
    color: var(--darkgreen-txt);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.bloc_flexible .c-box .data .c-title_ss + p{
    margin-top: 30px;
}
.bloc_flexible .c-box .data p + ul{
    margin-top: 40px;
}

@media screen and (max-width:767px){

    .bloc_flexible .flex[class*="two-column"]{
        gap: 30px 0;
    }
    .bloc_flexible .flex.two-column_re{
        flex-direction: row;
    }
    .bloc_flexible .flex[class*="two-column"] .image-alt{
        width: 100%;
    }
    .bloc_flexible .flex[class*="two-column"] .image-alt img{
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    .bloc_flexible .flex[class*="two-column"] .detail{
        width: 100%;
    }

    .bloc_flexible .component + .component{
        margin-top: 30px;
    }

    .bloc_flexible .c-box .flex{
        gap: 0;
    }
    .bloc_flexible .c-box img{
        width: 100%;
        margin-top: 40px;
    }
    .bloc_flexible .c-box .data{
        width: 100%;
    }

}

/*---------------------------------

  その他

---------------------------------*/


/* ========================================
component
再利用する部品


.c-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}



.c-card__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}
======================================== */

.c-box {
    padding: var(--space-box);
    background: var(--lightgray);
    border-radius: 10px;
}

.c-card {
    padding: var(--space-card);
    background: var(--white);
    border: none;
    border-radius: 10px;
}

.c-btn {
    position: relative;
    display: block;
    width: fit-content;
    min-height: 80px;
    padding: 24px 83px 20px 32px;
    background: var(--green-btn);
    background-position: 0% 50%; /*グラデ用仕様*/
    background-size: 200% auto; /*グラデ用仕様*/
    color: var(--white);
    border-radius: 999px;
}
.c-btn:hover {
    background-position: 100% 51%; /*グラデ用仕様*/
}
.c-btn.-white::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 19px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/common/arrow_white-green.png) center / contain no-repeat;
}

.c-arrow {
    position: relative;
}
.c-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
}
.c-arrow.-green::before {
    background: url(../img/common/arrow_green.png) center / contain no-repeat;
}
.c-arrow.-white::before {
    background: url(../img/common/arrow_white-green.png) center / contain no-repeat;
}

a.-ex::after{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background: url(../img/common/ico_ex.png) center / contain no-repeat;
}

@media screen and (max-width:767px){

    .c-btn {
        min-height: 66px;
        padding: 18px 65px 3px 22px;
    }
    .c-btn.-white::before {
        top: 12px;
        right: 12px;
    }

    .c-arrow::before {
        width: 30px;
        height: 30px;
    }

}

/* ========================================
汎用component　※foundation.cssに移動候補　内容によってはui.cssを作成
再利用する部品の中でも触らないもの
======================================== */

/*---------------------------------

  modal

---------------------------------*/

/* モーダル開時に背景のスクロールを防ぐ */
body:has(.overlay.open){
    overflow: hidden;
}
body:has(.overlay.open) main{
    overflow: auto; /*要らないのかも？*/

}



/*---------------------------------

  フォーム

---------------------------------*/

.form td input[type=text],
.form td input[type=tel],
.form td input[type=email],
.form td input[type=number],
.form td select{
    width: 100%;
    max-width: 500px;
    height: 40px;
    padding: 0 15px;
    margin: 10px 0;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
}
.form td textarea {
    width: 100%;
    max-width: 800px;
    min-height: 100px;
    padding: 10px 15px;
    margin: 10px 0;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
}
.form td input[type=text]:focus-visible,
.form td input[type=tel]:focus-visible,
.form td input[type=email]:focus-visible,
.form td input[type=number]:focus-visible,
.form td select:focus-visible,
.form td textarea:focus-visible{
    outline: none;
    border: 1px solid var(--main);
}
.form .zipcode td input[type=text]{
    max-width: 150px;
}
.form .address td input[type=text],
.form .address td select{
    max-width: 400px;
}
.form .address td .span1{
    display: inline-block;
    min-width: 100px;
}

.plus{
    position: relative;
}
.plus::before{
    content: '+';
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 1px 0 0 1px;
    background: var(--main);
    border-radius: 50%;
    color: #fff;
    text-align: center;
}
.checkbox2 label input{
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    line-height: 0;
}
.checkbox2 label input + span,
.radio input + span{
    position: relative;
    display: inline-block;
    padding: 5px 0 5px 45px;
    margin: 5px 0;
    cursor: pointer;
}
.checkbox2 label input + span::before,
.radio input + span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    margin-top: -13px;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
}
.checkbox2 label input:focus + span::before,
.radio input:focus + span::before{
    border: 1px solid var(--main);
}
.checkbox2 label input + span::after{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 7px;
    width: 15px;
    height: 8px;
    border-left: solid 3px var(--main);
    border-bottom: solid 3px var(--main);
    transform: rotate(-45deg) scale(1);
    opacity: 0;
}

.checkbox2 label input[type="checkbox"]:checked + span::after{
    opacity: 1;
}

.checkbox2 label input:disabled + span::before{
    background: #eee;
}
.checkbox2 label input:disabled + span{
    cursor: inherit;
}

.radio input + span::before {
    border-radius: 50%;
    cursor: pointer;
}
.radio input + span::after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 9px;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--main);
}
.radio input[type="radio"]:checked + span::after {
    opacity: 1;
}

/*---------------------------------

  ページネイト,archiveページネイト

---------------------------------*/
.paging,
.nav-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 56px auto 0px;
}
.paging > *,
.nav-links > *{
    display: block;
    width: 48px;
    height: 48px;
    padding: 5px 0 0;
    background: var(--dgray-bg);
    border-radius: 50%;
    font-size: 19px;
    text-align: center;
}
.paging > .current,
.nav-links > .current{
    background: var(--main);
    color: #fff;
}
.paging > .dots,
.nav-links > .dots{
    background: transparent;
    border: none;
}
.paging > .next,
.nav-links > .next{
    position: relative;
    background: url(../img/common/arrow_white-green.png) center / contain no-repeat;
    border: none;
    text-indent: -9999px;
}
.paging > .prev,
.nav-links > .prev{
    position: relative;
    background: url(../img/common/arrow_white-green.png) center / contain no-repeat;
    border: none;
    text-indent: 9999px;
    transform: rotate(180deg);
}