@charset "utf-8";
/* basic
----------------------------------------------------------- */
.areaMain ul.listDisc {
    list-style: none;
}
.listDisc li, .dlDisc dt {
    position: relative;
    padding-left: 1.2em;
}
.dlDisc dt {
    margin-bottom: 0.4em;
    font-weight: 700;
    font-size: clamp(1.70rem, 0.25vw + 1.61rem, 1.80rem);
}
.listDisc li:not(:last-of-type) {
    margin-bottom: 0.5em;
}
.dlDisc dd {
    margin-bottom: 1.2em;
}
.listDisc li::before, .dlDisc dt::before {
    display: block;
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 13px;
    height: 13px;
    background-color: var(--mainColorBg);
    border-radius: 100%;
}
.dlDisc dt::before {
    top: 8px;
}
@media print, screen and (min-width: 768px) {
    .listDisc li::before, .dlDisc dt::before {
        top: 7px;
        width: 14px;
        height: 14px;
    }
    .dlDisc dt::before {
        top: 8px;
    }
}
/* color
----------------------------------------------------------- */
.colorStrong {
    color: #F51212;
}
/* box
----------------------------------------------------------- */
.areaBox {
    padding: 2em 4%;
    background-color: #fff;
    border-radius: 10px;
}
@media print, screen and (min-width: 768px) {
    .areaBox {
        padding: 3.5em 50px 4em;
    }
}
/* about
----------------------------------------------------------- */
.pageNavi {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.pageNavi li a {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(76, 137, 191, 0.5);
    border-radius: 50px;
    margin-bottom: 1.2em;
    padding: 0.5em;
    color: var(--mainColor);
    font-weight: 700;
    font-size: clamp(1.30rem, 0.49vw + 1.12rem, 1.50rem);
    text-align: center;
}
.pageNavi li a::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: 2px solid var(--mainColor);
    border-right: 2px solid var(--mainColor);
    transform: rotate(45deg);
    top: -5px;
    right: 30px;
    bottom: 0;
    margin: auto;
}
.pageNavi li a:hover {
    background-color: rgba(76, 137, 191, 0.10);
}
.pageNavi li a:hover::after {
    top: 5px;
}
.pageNavi li {
    width: calc((100% - 20px) / 2);
}
@media print, screen and (min-width: 768px) {
    .pageNavi {
        margin-bottom: 4em;
    }
    .pageNavi li a {
        padding: 0.8em;
    }
    .pageNavi li {
        width: calc((100% - 60px) / 4);
    }
}
/* philosophy --------------- */
.txtPhilosophy {
    color: var(--mainColor);
    font-size: clamp(2.40rem, 2.19vw + 1.61rem, 3.80rem);
    letter-spacing: 0.05em;
    text-align: center;
}
/* profile --------------- */
.tblNormal {
    background-color: #fff;
}
.tblNormal th {
    background-color: rgba(76, 137, 191, 0.1);
}
.dlProfile dt {
    margin-bottom: 0.2em;
    font-weight: 700;
}
.dlProfile dd:not(:last-of-type) {
    margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
    .tblNormal th {
        width: 24%;
    }
    .tblNormal td {
        width: 76%;
    }
    .dlProfile dd:not(:last-of-type) {
        margin-bottom: 1.2em;
    }
}
/* report
----------------------------------------------------------- */
.listReport li:not(:last-child) {
    margin-bottom: 0.6em;
}
.listReport a {
    position: relative;
    display: inline-block;
    background: url("../images/ic_pdf.svg") no-repeat 0 center;
    background-size: 18px;
    padding-right: 20px;
    padding-left: 28px;
}
.listReport a::after {
    position: absolute;
    top: 6px;
    right: 0;
    width: 12px;
    height: 10px;
    background: url("../images/ic_link.svg") no-repeat center right;
    content: "";
}
@media print, screen and (min-width: 600px) {
    .listReport {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
    }
    .listReport li {
        width: calc((100% - 20px) / 2);
    }
    .listReport li:not(:last-child) {
        margin-bottom: 0;
    }
}
/* service --------------- */
a .bnFacility {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    background-color: #E9F1F7;
    border-radius: 10px;
}
a .bnFacility:last-of-type {
    margin-top: 1.2em;
}
.bnFacilityImg img {
    width: 118px;
    border-radius: 10px 0 0 10px;
}
.bnFacilityName {
    padding-left: 3em;
    font-weight: 700;
    font-size: clamp(1.60rem, 0.31vw + 1.49rem, 1.80rem);
    line-height: 1.5;
}
a .bnFacility::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: 2px solid var(--mainColor);
    border-right: 2px solid var(--mainColor);
    transform: rotate(-45deg);
    top: -4px;
    right: 32px;
    bottom: 0;
    margin: auto;
    transition: 0.4s;
}
a:hover .bnFacility::after {
    right: 22px;
}
a .bnFacility.anchor::after {
    transform: rotate(45deg);
    top: -4px;
    right: 32px;
    transition: 0.4s;
}
a:hover .bnFacility.anchor::after {
    top: 4px;
}
a:hover .bnFacility {
    background-color: rgba(76, 137, 191, 0.10);
}
@media print, screen and (min-width: 768px) {
    .areaBnFacility {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .areaBnFacility a {
        width: calc((100% - 46px) / 2);
    }
}
/* Facility
----------------------------------------------------------- */
.read {
    font-size: clamp(1.60rem, 0.94vw + 1.26rem, 2.20rem);
    text-align: center;
}
.readRight {
    text-align: right !important;
}
.read span {
    display: inline-block;
}
.areaImgCol {
    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;
    justify-content: space-between;
}
.areaImgCol img, .imgL img {
    border-radius: 10px;
}
.mgBtxt {
    margin-bottom: 1.5em;
}
.img4col p, .img3col p, .img2col p {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
}
.img3colSora div {
    /*width: calc((100% - 20px) / 3);*/
    margin-bottom: 14px;
}
.img3colSora .item01, .img3colSora .item03 {
    width: 29.72%;
}
.img3colSora .item02 {
    width: 35.13%;
}
.img2colSora div {
    /*width: calc((100% - 10px) / 2);*/
    width: 48.64%;
}
.areaFacilityInfo {
    margin-bottom: 2em;
}
.imgFacility {
    margin-bottom: 1em;
}
.imgFacility img {
    border-radius: 15px;
}
.facilityInfo dt {
    margin-bottom: 0.2em;
    font-weight: bold;
    font-size: clamp(1.70rem, 0.78vw + 1.42rem, 2.20rem);
}
.googlemap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}
.googlemap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
@media print, screen and (min-width: 768px) {
    .mgBtxt {
        margin-bottom: 2em;
    }
    .areaImgL {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
    }
    .imgL {
        width: 353px;
    }
    .txtImgL {
        flex: 1;
        margin-right: 40px;
    }
    .img2col {
        width: 726px;
    }
    .img2col p, .img2colSora div {
        width: calc((100% - 20px) / 2);
    }
    .img3col p, .img3colSora div {
        width: calc((100% - 40px) / 3);
    }
    .img3colSora div {
        margin-bottom: 20px;
    }
    .img4col p {
        width: calc((100% - 60px) / 4);
    }
    .areaFacilityInfo {
        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;
        margin-bottom: 4em;
    }
    .imgFacility {
        width: 600px;
        margin-right: 80px;
    }
    .facilityInfo {
        flex: 1;
    }
    .facilityInfo dt {
        margin-bottom: 1em;
    }
    .googlemap {
        padding-bottom: 490px;
    }
    .googlemap iframe {
        height: 490px;
    }
    .areaImgSora {
        width: 740px;
        margin-right: auto;
        margin-left: auto;
    }
    .img3colSora .item01, .img3colSora .item03 {
        width: 220px;
    }
    .img3colSora .item02 {
        width: 260px;
    }
    .areaDaytime {
        position: relative;
        height: 358px;
    }
    .imgDaytime01 {
        position: absolute;
        top: 0;
        left: 0;
        width: 540px;
    }
    .txtDaytime {
        position: absolute;
        top: 0;
        left: 560px;
    }
    .imgDaytime02 {
        position: absolute;
        bottom: 0;
        left: 560px;
        width: 540px;
    }
    .img2col p {
        margin-bottom: 0 !important;
    }
}