@charset "utf-8";
/* -----------------------------------------------------------
 =common css
----------------------------------------------------------- */ :root {
    --mainColor: #4C8EBF;
    --mainColorBg: #6CA2CA;
    --textColor: #3B4043;
    --bgColor: #F9F8F4;
}
body {
    min-width: 320px;
    background-color: #fff;
    color: var(--textColor);
    font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.50rem, 0.49vw + 1.32rem, 1.70rem);
    letter-spacing: 0.02em;
    line-height: 1;
}
.h1, h2, h3, h4, h5 {
    font-weight: 700;
}
@media print, screen and (min-width: 768px) {
    body {
        letter-spacing: 0.04em;
    }
}
/* default link color
----------------------------------------------------------- */
a {
    text-decoration: none;
}
a, a img, a::before, a::after, .btnForm {
    transition: 0.4s;
}
a {
    color: var(--textColor);
}
.telLink a {
    /*color: var(--textColor);*/
}
a:hover, a:hover .facilityName dt {
    color: var(--mainColor);
}
a:hover img {
    opacity: 0.6;
}
a.txtLink {
    color: var(--mainColor);
}
a:hover.txtLink {
    text-decoration: underline;
}
/* -----------------------------------------------------------
 =header, glovalnavi
----------------------------------------------------------- */
#areaHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    background-color: #fff;
    padding: 0 4%;
    z-index: 1000;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}
#areaHeader.dettach {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3);
}
.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 50px;
    padding-top: 2px;
}
.logo img {
    width: 150px;
}
/* gnavi --------------- */
.btnGNaviSp, .btnGNaviSp span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btnGNaviSp {
    position: relative;
    width: 26px;
    height: 18px;
}
.btnGNaviSp span, .btnGNaviSp.select span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--mainColor);
}
.btnGNaviSp span:nth-of-type(1) {
    top: 0;
}
.btnGNaviSp span:nth-of-type(2) {
    top: 8px;
}
.btnGNaviSp span:nth-of-type(3) {
    bottom: 0;
}
.btnGNaviSp.select span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.btnGNaviSp.select span:nth-of-type(2) {
    opacity: 0;
}
.btnGNaviSp.select span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
.areaGNavi {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    overflow-y: auto;
}
.gNavi {
    border-top: 1px solid #EFEFEF;
    margin-bottom: 25px;
}
.gNavi > li {
    border-bottom: 1px solid #EFEFEF;
}
.gNavi > li a {
    display: block;
    padding: 16px 16px 16px 70px;
    color: var(--textColor);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.gNavi > li a:hover {
    color: var(--mainColor);
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: lighten;
}
.gNavi01 {
    background: url("../images/ic_gnavi_01.svg") no-repeat 28px center;
    background-size: 16px;
}
.gNavi02 {
    background: url("../images/ic_gnavi_02.svg") no-repeat 26px center;
    background-size: 26px;
}
.gNavi03 {
    background: url("../images/ic_gnavi_03.svg") no-repeat 24px center;
    background-size: 28px;
}
.gNavi04 {
    background: url("../images/ic_gnavi_04.svg") no-repeat 21px center;
    background-size: 36px;
}
.gNavi05 {
    background: url("../images/ic_gnavi_05.svg") no-repeat 25px center;
    background-size: 30px;
}
.gNavi06 {
    background: url("../images/ic_gnavi_06.svg") no-repeat 28px center;
    background-size: 24px;
}
.btnHeaderContact a {
    width: 240px;
    margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
    #areaHeader {
        min-width: 1160px;
        height: 100px;
        padding: 0;
    }
    .areaHeaderInner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        padding-right: 3%;
        padding-left: 4%;
    }
    .header {
        height: 100px;
        margin-top: 0;
    }
    .logo img {
        width: 186px;
    }
    .areaBtnGnaviSp {
        display: none;
    }
    .areaGNavi {
        display: block;
        position: static;
        width: 660px;
        height: auto;
    }
    .gNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        border-top: none;
        margin-bottom: 0;
        padding-top: 20px;
        padding-bottom: 0;
    }
    .gNavi > li {
        border-bottom: none;
    }
    .gNavi li a {
        padding: 38px 0 20px;
        font-size: 1.5rem;
    }
    .gNavi01, .gNavi02, .gNavi04, .gNavi05 {
        background-position: center 0;
    }
    .gNavi03, .gNavi06 {
        background-position: center 4px;
    }
    .gNavi01 {
        background-size: 22px;
    }
    .gNavi02 {
        background-size: 36px;
    }
    .gNavi03 {
        background-size: 36px;
    }
    .gNavi04 {
        background-size: 46px;
    }
    .gNavi04 a {
        letter-spacing: -0.05em !important;
    }
    .gNavi05 {
        background-size: 38px;
    }
    .gNavi06 {
        background-size: 30px;
    }
}
/* -----------------------------------------------------------
 =breadcrumbs list
----------------------------------------------------------- */
.areaBreadcrumbs {
    padding: 10px 4% 0;
}
.breadcrumbs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #888;
    font-size: clamp(1.10rem, 0.25vw + 1.01rem, 1.20rem);
    line-height: 1.4;
    letter-spacing: 0;
}
.breadcrumbs li {
    position: relative;
    padding-left: 17px;
}
.breadcrumbs li:before {
    position: absolute;
    top: 50%;
    left: 4px;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.breadcrumbs li:first-child {
    padding-left: 0;
}
.breadcrumbs li:first-child:before {
    display: none;
}
.breadcrumbs li a {
    color: #888;
}
.breadcrumbs li a:hover {
    color: var(--mainColor);
}
@media print, screen and (min-width: 768px) {
    .areaBreadcrumbs {
        width: 1160px;
        margin: 0 auto;
        padding: 10px 30px 0;
    }
    .breadcrumbs li {
        padding-left: 20px;
    }
}
/* -----------------------------------------------------------
 =contents
----------------------------------------------------------- */
#contents {
    padding-top: 50px; /* default */
    line-height: 1.7;
}
.contentsBg {
    background-color: var(--bgColor);
}
.areaMain {
    padding: 2em 4% 2.5em;
}
.areaAccess {
    padding: 2.5em 4% 3em;
}
section {
    margin-bottom: 2.5em;
}
.areaMain section:last-of-type {
    margin-bottom: 0;
}
section > section {
    margin-bottom: 2em;
}
/* title --------------- */
.ttlTop {
    margin-bottom: 1.2em;
    font-size: clamp(2.00rem, 2.45vw + 1.12rem, 3.00rem);
    letter-spacing: 0.1em;
}
.ttlEn {
    display: block;
    color: var(--mainColor);
    font-size: clamp(1.50rem, 0.25vw + 1.41rem, 1.60rem);
    letter-spacing: 0.05em;
}
.areaPageTtl {
    /*height: 172px;*/
    background: url("../images/bg_header_sp.jpg") no-repeat center center;
    background-size: cover;
    padding: 22px 3% 17px;
    text-align: center;
}
.icH1 {
    margin-bottom: 0.5em;
}
.icH1 img {
    width: 60px;
}
.h1 {
    margin-bottom: 0.4em;
    font-size: clamp(2.40rem, 2.45vw + 1.52rem, 3.40rem);
    letter-spacing: 0.05em;
}
.h1CtgFacility {
    display: flex;
    justify-content: center;
}
.ctgFacility {
    display: flex;
    margin-bottom: 0.6em;
}
.h1CtgFacility li, .ctgFacility li {
    display: block;
    width: 8em;
    background-color: rgba(76, 142, 191, 0.82);
    border-radius: 16px;
    padding-bottom: 1px;
    color: #fff;
    font-size: clamp(1.00rem, 0.49vw + 0.82rem, 1.20rem);
    font-weight: bold;
    text-align: center;
}
.h1CtgFacility li.txt08 {
    width: 9em;
}
.h1CtgFacility li, .ctgFacility li {
    margin-left: 0.15em;
    margin-right: 0.15em;
}
.h2, .h2About {
    letter-spacing: 0.1em;
}
.h2 {
    margin-bottom: 0.5em;
    font-size: clamp(1.70rem, 1.23vw + 1.26rem, 2.20rem);
}
.h2About {
    margin-bottom: 1em;
    font-size: clamp(2.00rem, 2.45vw + 1.12rem, 3.00rem);
    text-align: center;
}
.h3 {
    margin-bottom: 0.8em;
    font-size: clamp(1.60rem, 0.98vw + 1.25rem, 2.00rem);
}
.h4 {
    margin-bottom: 0.5em;
    font-size: clamp(1.50rem, 0.74vw + 1.23rem, 1.80rem);
}
@media print, screen and (min-width: 768px) {
    #contents {
        padding-top: 100px;
        line-height: 1.9;
    }
    .areaMain {
        width: 1160px;
        margin: 0 auto;
        padding: 4.5em 30px 5.5em;
    }
    .areaAccess {
        padding-top: 5.5em;
        padding-bottom: 6.5em;
    }
    section {
        margin-bottom: 4em;
    }
    section > section {
        margin-bottom: 3em;
    }
    /* title --------------- */
    .areaPageTtl {
        height: 220px;
        background-image: url("../images/bg_header.jpg");
        padding-top: 26px;
    }
    .ttlTop {
        margin-bottom: 1.5em;
    }
    body.privacy .areaPageTtl {
        min-height: 150px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }
    .icH1 img {
        width: 76px;
    }
    .h1 {
        letter-spacing: 0.05em;
    }
    .h1CtgFacility li, .ctgFacility li, .h1CtgFacility li.txt08 {
        width: 10.5em;
        margin-left: 0.25em;
        margin-right: 0.25em;
    }
    .h2 {
        margin-bottom: 1em;
    }
    .h2About {
        margin-bottom: 1.2em;
    }
    .h3 {
        margin-bottom: 1em;
    }
}
/* -----------------------------------------------------------
 =footer
----------------------------------------------------------- */
/* contact --------------- */
.areaFooterContact {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 142, 191, 0.7);
    padding: 30px 4%;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.areaFooterContact::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: url("../images/bg_footer.jpg") no-repeat center center/cover;
    z-index: -1;
}
.areaFooterContact .ttlEn {
    color: #fff;
}
.contactTxt {
    margin-bottom: 1.5em;
    font-size: clamp(1.60rem, 0.98vw + 1.25rem, 2.00rem);
}
.contactTxt span {
    display: inline-block;
}
.areaFooterTel {
    margin-bottom: 1.5em;
}
.footerTel {
    display: inline-block;
    position: relative;
    margin-bottom: 0.3em;
    padding-left: 30px;
    font-size: clamp(2.60rem, 1.96vw + 1.89rem, 3.40rem);
}
.footerTel::before {
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
    background: url("../images/ic_phone.svg") no-repeat left center;
    width: 24px;
    height: 24px;
    background-size: 24px;
}
.btnFooterContact a {
    display: inline-block;
    position: relative;
    padding-left: 42px;
    color: #fff;
    font-size: clamp(2.40rem, 1.47vw + 1.87rem, 3.00rem);
    line-height: 30px;
}
.btnFooterContact a::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    background: url("../images/ic_instagram_wt.svg") no-repeat left center;
    width: 30px;
    height: 30px;
    background-size: 30px;
}
.btnFooterContact a:hover {
    opacity: 0.6;
}
/* footer info and navi --------------- */
.areaFooterWrap {
    background-color: var(--bgColor);
    padding: 25px 4%;
}
.areaFooter {
    font-size: 1.4rem;
}
.footerInfo dt {
    margin-bottom: 1em;
}
.footerLogo {
    width: 150px;
}
.footerInfo dd {
    margin-bottom: 1em;
    font-size: clamp(1.40rem, 0.25vw + 1.31rem, 1.50rem);
    line-height: 1.5;
}
.footerTel.telLink a {
    color: #fff !important;
}
.footerSns a {
    display: inline-block;
    margin-bottom: 1.5em;
    background-color: #fff;
    border-radius: 100px;
    padding: 10px;
}
.footerSns img {
    width: 21px;
}
.areaFooterNavi {
    margin-bottom: 1em;
}
.footerNavi li {
    margin-bottom: 1.2em;
}
.footerNavi01, .footerNavi02 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerNavi01 li:not(:last-of-type), .footerNavi02 li:not(:last-of-type) {
    margin-right: 2em;
}
.btnPrivacy {
    margin-bottom: 1.5em;
}
/* copyright --------------- */
.copyright small {
    color: #666;
    font-size: 1.1rem;
}
/* pagetop --------------- */
.pagetop {
    display: none;
    position: fixed;
    bottom: 65px;
    right: 1px;
    z-index: 10;
}
.pagetop a {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    background-color: rgba(76, 142, 191, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}
.pagetop img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
}
.pagetop a:hover {
    background-color: rgba(76, 142, 191, 0.9);
}
.pagetop a:hover img {
    top: -15px;
    opacity: 1;
}
@media print, screen and (min-width: 768px) {
    /* contact --------------- */
    .areaFooterContact {
        padding: 60px 30px;
    }
    .contactTxt {
        margin-bottom: 2em;
    }
    .areaFooterContactNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        width: 800px;
        justify-content: space-around;
        -ms-align-items: center;
        align-items: center;
        margin: 0 auto;
    }
    .areaFooterTel {
        margin-bottom: 0;
    }
    .footerTel {
        padding-left: 36px;
    }
    .footerTel::before {
        top: 7px;
        width: 30px;
        height: 30px;
        background-size: 30px;
    }
    .btnFooterContact a {
        padding-left: 54px;
    }
    .btnFooterContact a::before {
        top: 0;
        width: 38px;
        height: 38px;
        background-size: 38px;
    }
    /* footer info and navi --------------- */
    .areaFooterWrap {
        padding: 50px 30px 40px;
    }
    .areaFooter {
        width: 1100px;
        margin: 0 auto;
    }
    .areaFooterInner {
        position: relative;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
    }
    .footerLogo {
        width: 178px;
    }
    .footerInfo dd {
        margin-bottom: 1.3em;
    }
    .areaFooterNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        margin-top: 1em;
    }
    .footerNavi01 {
        margin-right: 6em;
    }
    .footerNavi01, .footerNavi02 {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }
    .footerNavi01 li:not(:last-of-type), .footerNavi02 li:not(:last-of-type) {
        margin-right: 0;
    }
    .areaCopyright {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
    }
    .btnPrivacy {
        margin-bottom: 0;
    }
    /* pagetop --------------- */
    .pagetop {
        right: 10px;
        bottom: 80px;
    }
    .pagetop a {
        width: 52px;
        height: 52px;
    }
}
@media print {
    .pagetop {
        display: none !important;
    }
}