@charset "UTF-8";

/*==================
画面設計
768px をブレイクポイントとし
それ以上はPCレイアウト
768px以下はスマホレイアウトととする
@media screen and ( max-width:48rem) { }
@media screen and ( max-width:768px) {  }
==================*/

html {
    font-size: 10px;
    height: 100%;
    color: #3E3B38;
    background-color: #F8F6F2;
    padding-top: 80px;
}
@media screen and (max-width:900px) {
    html{
        padding-top: 80px;
    }
}
body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
section, div, ul, li, dl, dt, dd {
    box-sizing: border-box;
}
.wfontSan {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* .wfontSanBold {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-style: normal;
} */
.wfontSerif {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-style: normal;
}
.spDispOnly {
    display: none;
}
.pcDispOnly {
    display: block;
}
@media screen and (max-width:767px) {
    .spDispOnly {
        display: block;
    }
    .pcDispOnly {
        display: none;
    }
    img {
        max-width: 100%;
    }
}
a:hover img {
    opacity: 0.8;
}
a.pagetopBtn {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 20px;
    padding: 5px;
    background-color: #333;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0.8;
    border-radius: 100%;
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
}
.imgWrapper img{
    max-width: 100%;
}


.headerArea {
    width: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    /* min-width: 800px; */
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-color: #FFF; */

    font-size: 1.4rem;
    position: fixed;
    top: 0;
    z-index: 999;
}
.headLogo {
    display: block;
    position: absolute;
    top: 30px;
    left: 60px;
    z-index: 99;
}
.headLogo img{
}
@media screen and (max-width:900px) {
    .headLogo {
        position: absolute;
        left: calc( 50% - 60px );
        top: 20px;
        text-align: center;
        margin: 0 auto 20px;
    }
    .headLogo img{
        width: 120px;
        height: 120px;
    }
}
#headNavi{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 40px;
}
#headNavi ul{
    display: flex;
    background-color: #F8F6F2;
    padding: 0 10px;
    border-radius: 10px;
}
#headNavi ul li a{
    display: block;
    padding:  20px 10px;
    text-decoration: none;
    color: inherit;
}
.spMenuBtn{
    display: none;
}
#spMenuOpen{
    display: none;
    width: 50px;
    height: 50px;
    line-height: 60px;
    text-align: center;
    background-color: #5E503F;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}
#spMenuClose{
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #5E503F;
    border-radius: 5px;
    position: absolute;
    top: 7px;
    right: 7px;
    color: #fff;
    font-size: 2em;
}
@media screen and (max-width:900px) {
    #headNavi{
        display: none;
        position: fixed;
        top: 0;
        /* left: 0; */
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 400px;
        min-height: 100vh;
        background-color: rgba(255, 255, 255, 1);
        border: #5E503F 3px solid;
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 80px;
        padding-bottom: 20px;
        overflow: hidden scroll;
          overflow-y: auto;
          margin-right: 0;
        
        background-color: #F8F6F2;
    }
    #headNavi ul{
        display: block;
        text-align: left;
        width: 90%;
        margin: 0 auto;
        border-top: #cccccc 1px solid;
        border-radius: 0;
    }
    #headNavi ul li{
        line-height: 1em;
        height: auto;
        border-bottom: #cccccc 1px solid;
        padding: 10px;
        width: 100%;
    }
    #headNavi ul li a{
        line-height: 1.6em;
        padding: 4px 0 2px;
        border-bottom: none;
    }
    #spMenuOpen{
        display: block;
    }
    #spMenuClose{
        display: block;
    }
}
@media screen and (max-width:768px) {
    .headerArea {
        width: 100%;
        min-width: auto;
        padding-left: 10px;
        box-sizing: border-box;
        background-size: 40px 110px;
    }
}




.mainVisualSection{
    width: 100%;
    padding: 0 10px 40px;
    background-image: url(../image/bg_mvgreen.svg);
    background-position: center bottom;
    background-repeat: repeat-x;
    overflow: hidden;
}
.mainVisualSection ul{
    width: 100%;
    max-width: calc( 100% - 20px );
    margin: 0 auto;
}
.mainVisualSection ul li img{
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    height: 80vh;
}
.mainVisualSection ul.pc{
    display: block;
}
.mainVisualSection ul.sp{
    display: none;
}
@media screen and (max-width:767px) {
    .mainVisualSection ul.pc{
        display: none;
    }
    .mainVisualSection ul.sp{
        display: block;
    }
    .mainVisualSection ul li img{
        height: 84vh;
    }
}


.conceptSection{
    width: 100%;
    min-height: 300px;
    padding: 0 20px 30px;
    background-image: url(../image/bg_conceptgreen.svg);
    background-position: right top;
    background-repeat: no-repeat;
}



.conceptSection{
}
.conceptSection .inner{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.conceptSection .imgWrapper{
    width: 468px;
    max-width: 50%;
}
.conceptSection .imgWrapper img{
    width: 100%;
}
.conceptSection .contentGroup{
    padding: 30px 0;
    background-image: url(../image/concept_bgrect.svg);
    background-repeat: no-repeat;
    background-position: center left 60px;
    flex: 1;
}
.conceptSection .contentGroup .label{
    font-size: 1.6rem;
    font-weight: bold;
}
.conceptSection .contentGroup .headCopy{
    font-size: 2.8rem;
    line-height: 1.6;
    margin-top: 30px;
    text-indent: -.5em;
    color: #E98A15;
    font-weight: 500;
}
.conceptSection .contentGroup .desc{
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 30px;
}
@media screen and (max-width:767px) {
    .conceptSection .inner{
        display: block;
        padding-top: 90px;
    }
    .conceptSection .imgWrapper{
        width: 468px;
        max-width: 100%;
    }
    .conceptSection .contentGroup .headCopy{
        font-size: 2.4rem;
        font-weight: 500;
    }
}



.promiseSection{
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(0deg, #F4ECD8 0%, #F4ECD8 40%, transparent 40%, transparent 100%);
}
.promiseSection .secTitle{
    font-size: 2.2rem;
}
.promiseSection .secTitle span{
    display: block;
    margin-top: 20px;
    color: #E98A15;
    font-size: 1.4rem;
}
.promiseSection .unitWrapper{
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    background: url(../image/promise_bgline.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top 10px center;
}
.promiseSection .unitWrapper .proUnit{
    width: 100%;
    max-width: 270px;
    text-align: left;
    flex: 99;
}
.promiseSection .unitWrapper .proUnit .num{
    text-align: center;
}
.promiseSection .unitWrapper .proUnit .unitCopy{
    font-size: 1.8rem;
    padding: 40px 0;
    white-space: nowrap;
    color: #E98A15;
    font-weight: bold;
    text-align: center;
}
.promiseSection .unitWrapper .proUnit .imgWrapper img{
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.promiseSection .unitWrapper .proUnit .desc{
    padding: 20px 0;
    font-size: 1.4rem;
    line-height: 1.6;
}
@media screen and (max-width:767px) {
    .promiseSection .unitWrapper{
        display: block;
    }
    .promiseSection .unitWrapper .proUnit{
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        padding: 0 20px;
    }
}





.deviderImg{
    width: 100%;
}
.deviderImg img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.menuSection{
    text-align: center;
    border-top: #FFAC15 8px solid;
    padding: 60px 0px;

}
.menuSection .secTitle{
    font-size: 2.2rem;
}
.menuSection .secTitle span{
    display: block;
    margin-top: 20px;
    color: #E98A15;
    font-size: 1.4rem;
}
.menuSection .sectionDesc{
    font-size: 1.4rem;
    padding: 40px 0;
    margin-bottom: 30px;
}
.menuSection .menuTable{
    text-align: center;
}
.menuSection .menuTable .pc{
    display: inline;
    margin: 0 auto;
}
.menuSection .menuTable .sp{
    display: none;
}
@media screen and (max-width:767px) {
    .menuSection .menuTable .pc{
        display: none;
    }
    .menuSection .menuTable .sp{
        display: inline;
        margin: 0 auto;
    }
}




.staffSection{
    text-align: center;
    border-top: #5E503F 8px solid;
    padding: 60px 10px;

    background: url(../image/staff_bgimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.staffSection .secTitle{
    font-size: 2.2rem;
}
.staffSection .secTitle span{
    display: block;
    margin-top: 20px;
    color: #E98A15;
    font-size: 1.4rem;
}
.staffSection .sectionDesc{
    font-size: 1.4rem;
    padding: 40px 0;
    margin-bottom: 30px;
    line-height: 1.6;
}
.staffSection .staffList{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}
.staffSection .staffUnit{
    width: 100%;
    max-width: 220px;
}
.staffSection .staffUnit dt{
    margin-bottom: 20px;
}
.staffSection .staffUnit dd{
    text-align: center;
    font-size: 1.2rem;
    color: #5F371D;
    line-height: 1.6;
}
.staffSection .staffUnit dd .job{
    display: block;
    margin-bottom: 10px;
    color: #FFAC15;
}
@media screen and (max-width:767px) {
    .staffSection .staffList{
        gap: 10px;
    }
}






.recruitLink{
    padding: 30px 0;
    text-align: center;
}
.recruitLink a{
    display: block;
    padding: 10px;
    background-color: #5F371D;
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    max-width: 200px;
    border-radius: 5px;
    margin: 60px auto 30px;
}
.recruitSection {
    padding: 60px 0;
}
.recruitSection .inner{
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.recruitSection .imgWrapper{
    width: 500px;
    max-width: 40%;
}
.recruitSection .imgWrapper img{
    width: 100%;
}
.recruitSection .recruitContent{
    text-align: left;
    width: 100%;
    max-width: 500px;
    font-size: 1.4rem;
    line-height: 1.6;
}
.recruitSection .recruitContent .secTitle{
    font-size: 1.6rem;
    font-weight: bold;
}
.recruitSection .recruitContent .secCopy{
    font-size: 2.2rem;
    line-height: 1.6;
    margin-top: 30px;
    text-indent: -.5em;
    color: #E98A15;
    font-weight: 500;
}
.recruitSection .recruitContent .secDesc{
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 30px;
    margin-bottom: 40px;
}
.recruitSection .recruitContent .listHeader{
    font-size: 1.4rem;
    padding:  10px 0;
    font-weight: bold;
    color: #E98A15;
}
.recruitSection .recruitContent .moreInfo{
    border-top: #eee 1px solid;
    margin-bottom: 30px;
}

.recruitSection .recruitContent .moreInfo.prime{
    border: #eee 1px solid;
    padding: 10px 20px;
    background-color: #FCF2E6;
}
.recruitSection .recruitContent .moreInfo .row{
    display: flex;
    justify-content: flex-start;
    border-bottom: #eee 1px solid;
    padding: 10px 0;
}
.recruitSection .recruitContent .moreInfo .row dt{
    width: 6em;
}
.recruitSection .recruitContent .moreInfo .row dd{
    flex: 1;
    flex-shrink: 0;
}
@media screen and (max-width:767px) {
    .recruitSection .inner{
        width: 100%;
        padding: 60px 20px;
        display: block;
    }
    .recruitSection .imgWrapper{
        width: 100%;
        max-width: 100%;
        margin: 0 auto 30px;
    }
}



.accessSection{
    width: 100%;
    padding: 60px 0 0;
    text-align: center;
    background-color: #FFFFFF;
}
.accessSection .secTitle{
    font-size: 2.2rem;
}
.accessSection .secTitle span{
    display: block;
    margin-top: 20px;
    color: #E98A15;
    font-size: 1.4rem;
}
.accessSection .contentGroup{
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.accessSection .accessInformation{
    text-align: left;
    width: 100%;
    max-width: 400px;
    font-size: 1.4rem;
    line-height: 1.6;
}
.accessSection .accessInformation p{
    margin-bottom: 20px;
}
.accessSection .accessInformation .moreInfo{
    border-top: #eee 1px solid;
}
.accessSection .accessInformation .moreInfo .row{
    display: flex;
    justify-content: flex-start;
    border-bottom: #eee 1px solid;
    padding: 10px 0;
}
.accessSection .accessInformation .moreInfo .row dt{
    width: 6em;
}
.accessSection .gmapWrapper{
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(0deg, #F8F6F2 0%, #F8F6F2 50%, transparent 50%, transparent 100%);
}
.accessSection .gmapWrapper iframe{
    width: 100%;
    max-width: 940px;
    height: 300px;
    border: #eee 1px solid;
    margin: 0px auto;
    padding: 1px;
    box-sizing: border-box;
}

@media screen and (max-width:767px) {
    .accessSection .contentGroup{
        padding: 60px 20px;
        display: block;
    }
    .accessSection .accessInformation p{
        margin-top: 20px;
    }
}
















.footerSection{
    padding: 60px 20px 0;
    text-align: center;
}
.footerSection .message{
    margin-top: 30px;
    font-size: 2.6rem;
    padding: 20px 0;
    color: #E98A15;
}
.footerSection .desc{
    margin-top: 20px;
    font-size: 1.8rem;
    line-height: 1.8;
}
.footerSection .contactList{
    margin-top: 60px;
}
.footerSection .contactList li{
    font-size: 1.6rem;
    padding: 10px 0;
}
.footerSection .contactList li.tel{
    font-weight: bold;
    font-size: 4rem;
    margin-bottom: 30px;
}
.footerSection .contactList li.tel span.label{
    color: #E98A15;
    display: inline-block;
    margin-right: 20px;
    font-size: 2rem;
}
.footerSection .contactList li.tel span.bookFirstIcon{
    color: #FFFFFF;
    background-color: #E98A15;
    display: inline-block;
    margin-left: 20px;
    font-size: 1.4rem;
    padding: 10px;
    vertical-align: bottom;
}
.copyright{
    width: 100%;
    padding: 20px 0;
    margin-top: 60px;
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    background-color: #5E503F;
}
@media screen and (max-width:767px) {

    .footerSection .message{
        font-size: 2.2rem;
        line-height: 1.6;
    }
    .footerSection .desc{
        font-size: 1.4rem;
    }
    .footerSection .contactList li.tel span.bookFirstIcon{
        display: block;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.4rem;
        margin-top: 20px;
        width: 50%;
    }
    .footerSection .contactList li{
        font-size: 1.2rem;
    }
}
