@charset "utf-8";

/* navHeight */
.navHeight{
    width: 100%;
    height: 120px;
}
@media (max-width:1024px){
    .navHeight{
        height: 60px;
        background-image: url(../images/common/bg01.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-bottom: 1px solid #d3adaf;
    }
}

/* pageWrap */
.pageWrap{
    background-image: url(../images/top/bg01.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    position: relative;
}
.pageWrap:before{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,#fff,transparent);
    position: absolute;
    top: 0;
    left: 0;
}
.pageWrap_inner{
    position: relative;
}
.fadeIn{
    opacity: 0;
    transition: opacity 1s ease-out,transform 1s ease-out;
}
.fadeIn.show{
    opacity: 1;
}

/* equipmentBtn */
.equipmentBtn{
    background-color: #b46c62;
    padding: 30px 0;
}
.equipmentBtn.pageBottom{
    margin-bottom: 80px;
}
.equipmentBtn ul{
    max-width:1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.equipmentBtn ul li{
    width: 18%;
    margin-bottom: 10px;
}
.equipmentBtn ul li:nth-child(6),
.equipmentBtn ul li:nth-child(7),
.equipmentBtn ul li:nth-child(8),
.equipmentBtn ul li:nth-child(9),
.equipmentBtn ul li:nth-child(10){
    margin-bottom: 0px;
}
.equipmentBtn ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-sizing: border-box;
    font-family: "EB Garamond", serif;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.5s all;
}
.equipmentBtn ul li a:hover,
.equipmentBtn ul li a:active,
.equipmentBtn ul li a.current{
    border: 1px solid transparent;
    background-color: rgba(255,255,255,0.3);
    transition: 0.5s all;
}
@media (max-width:1024px){
    .equipmentBtn ul{
        width: 90%;
    }
}
@media (max-width:768px){
    .equipmentBtn ul li{
        width: 48%;
    }
    .equipmentBtn ul li:nth-child(6),
    .equipmentBtn ul li:nth-child(7),
    .equipmentBtn ul li:nth-child(8){
        margin-bottom: 10px;
    }
    .equipmentBtn ul li a{
        font-size: 1.15em;
    }
}
@media (max-width:500px){
    .equipmentBtn ul li a{
        font-size: 1.05em;
    }
}

/* pageTtl */
.pageTtl{
    padding: 80px 0 0 0;
}
.pageTtl h2{
    text-align: center;
    background-color: #c38e92;
    margin-bottom: 50px;               
}
.pageTtl h2 span{
    font-family: "EB Garamond", serif;
    font-size: 2.5em;
    font-weight: 300;
    color: #fff;
    opacity: 0;
    animation: txtAnime 1s forwards;             
}
.pageTtl h2 span:nth-child(1){
    animation-delay: 0.2s;           
}
.pageTtl h2 span:nth-child(2){
    animation-delay: 0.4s;           
}
.pageTtl h2 span:nth-child(3){
    animation-delay: 0.6s;           
}
.pageTtl h2 span:nth-child(4){
    animation-delay: 0.8s;           
}
.pageTtl h2 span:nth-child(5){
    animation-delay: 1s;           
}
@keyframes txtAnime{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.mainTxt{
    text-align: center;
}
.mainTxt h3{
    font-size: 1.75em;
    font-weight: 400;
    letter-spacing: 0.25em;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
    top: 0;
    left: 0;
}
.imgNotice{
    font-size: 0.75em;
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
}
.imgNotice.white{
    color: #fff;
}
.multiply{
    mix-blend-mode: multiply;
}
.under500{
    display: none;
}
@media (max-width:1500px){
    .pageTtl h2 span{
        font-size: 2.25em;
    }
    .mainTxt h3{
        font-size: 1.5em;
    }
}
@media (max-width:768px){
    .pageTtl h2 span{
        font-size: 2.5em;
    }
    .mainTxt h3{
        font-size: 1.75em;
    }
}
@media (max-width:500px){
    .pageTtl h2 span{
        font-size: 2.25em;
    }
    .mainTxt h3{
        font-size: 1.5em;
    }
    .under500{
        display: block;
    }
}

/* halfRow */
.contentBox{
    max-width: 1320px;
    width:80%;
    margin: 0 auto;
    margin-bottom: 80px;
    padding-top: 130px;
}
.contentBox>.ttlBox{
    text-align: center;
    margin-bottom: 30px;
}
.contentBox>.ttlBox>h3{
    font-family: "EB Garamond", serif;
    font-size: 2em;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: #636155;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.contentBox>.ttlBox>h3:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent 0%,#636155 50%,transparent 100%);                
    transition: transform 1.5s ease;
    transition-delay: 0.5s;
}
.contentBox>.ttlBox>h3.animate:after{
    transform: translateX(-50%) scaleX(1);
}
.contentBox>.ttlBox>p{
    font-size: 1.5em;
    color: #c38e92;
}
.contentBox>.mainTxt_box{
    text-align: center;
    margin-bottom: 50px;
}
.contentBox>.mainTxt_box>.imgBox{
    position: relative;
    margin-bottom: 30px;
}
.contentBox>.mainTxt_box>.txtBox>p{
    font-size: 1.1em;
    line-height: 1.8;
}
.contentBox>.mainTxt_box>.txtBox>p.noticeTxt{
    font-size: 0.75em;
    margin-top: 10px;
}
.contentBox>.subTxt_box{
    text-align: center;
    margin-bottom: 50px;
}
.contentBox>.subTxt_box>.txtBox>h4{
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 20px;
}
.contentBox>.subTxt_box>.txtBox>p{
    font-size: 1em;
    line-height: 1.8;
}
.content_innerBox>h5{
    font-size: 1.25em;
    font-weight: 400;
    color: #c38e92;
    position: relative;
    margin-bottom: 20px;
}
.content_innerBox>h5:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #c38e92;
    transition: width 1.5s ease-in;
}
.content_innerBox>h5.active:after{
    width: 100%;
}
.content_innerBox>p.noticeTxt{
    font-size: 0.75em;
}
.content_innerBox>p.noticeTxt.right{
    text-align: right;
}
.aboutBox,
.meritBox{
    margin-bottom: 50px;
}
.aboutRow{
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.aboutRow>.imgBox{
    width:16%;
}
.aboutRow>.txtBox{
    width:80%;
}
.aboutRow>.txtBox>p{
    font-size: 1em;
    line-height: 1.8;
}
.contentRow01{
    margin-bottom: 20px;
}
.contentRow01>ul,
.contentRow02>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentRow01>ul>li{
    width: 47%;
}
.contentRow02>ul>li{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.contentRow01>ul>li>.imgBox{
    position: relative;
}
.contentRow01>ul>li>.txtBox{
    text-align: center;
    margin-bottom: 20px;
}
.contentRow01>ul>li>.txtBox>h4,
.contentRow02>ul>li>.txtBox>h4{
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    color: #c38e92;
    background-color: #fff;
    padding: 0.25em 0;
    margin-bottom: 10px;
}
.contentRow01>ul>li>.txtBox>p,
.contentRow02>ul>li>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.contentRow02>ul>li>.txtBox{
    margin-bottom: 20px;
}
.contentRow02>ul>li>.imgBox{
    width: 75%;
    position: relative;
}
.conclusionBox{
    background-color: #fff;
    border: 2px solid #c38e92;
    padding: 20px 0;
    border-radius: 100px;
    text-align: center;
}
.conclusionBox>p{
    font-size: 1em;
    line-height: 1.8;
}
.conclusionBox>p.em{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    color: #c38e92;
    margin-bottom: 10px;
}
.under1200{
    display: none;
}
@media (max-width:1500px){
    .contentBox>.ttlBox>h3{
        font-size: 1.75em;
    }
    .contentBox>.ttlBox>p{
        font-size: 1.3em;
    }
    .contentBox>.mainTxt_box>.txtBox>p{
        font-size: 1em;
    }
    .under1200{
        display: block;
    }
}
@media (max-width:1024px){
    .contentBox{
        width:90%;
        padding-top: 70px;
    }                
}
@media (max-width:768px){
    .aboutRow{
        width: 100%;
    }
    .aboutRow>.imgBox{
        width:26%;
    }
    .aboutRow>.txtBox{
        width:70%;
    }
    .contentRow02>ul>li{
        width: 47%;
        margin-bottom: 30px;
    }
    .contentRow02>ul>li:nth-child(3){
        margin-bottom: 0px;
    }
    .contentBox>.ttlBox>h3{
        font-size: 2em;
    }
    .contentBox>.ttlBox>p{
        font-size: 1.5em;
    }
    .contentBox>.mainTxt_box>.txtBox>p{
        font-size: 1.1em;
    }
}
@media (max-width:500px){
    .contentRow01>ul>li,
    .contentRow02>ul>li{
        width: 100%;
    }
    .contentRow01>ul>li>.imgBox{
        width: 75%;
        margin: 0 auto;
    }
    .contentRow02>ul>li>.imgBox{
        width: 50%;
    }
    .contentRow01>ul>li:nth-child(1){
        margin-bottom: 30px;
    }
    .conclusionBox{
        border-radius: 50px;
    }
    .under500{
        display: block;
    }
}

/* toiletExplanation */
.contentBox.allSeasons>.subTxt_box>.txtBox>h4{
    display: inline-block;
    padding: 0.25em 1em;
    box-sizing: border-box;
    position: relative;
}
.contentBox.allSeasons>.subTxt_box>.txtBox>h4:before,
.contentBox.allSeasons>.subTxt_box>.txtBox>h4:after{
    content: '';
    position: absolute;
    width: 0.5em;
    height: 100%;                        
}
.contentBox.allSeasons>.subTxt_box>.txtBox>h4:before{
    top: 0;
    left: 0;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
}
.contentBox.allSeasons>.subTxt_box>.txtBox>h4:after{
    top: 0;
    right: 0;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

/* toiletExplanation */
.contentBox_wrap.allSeasons{
    background-image: url(../images/smartlife/bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding-bottom: 80px;
}
.contentBox_wrap.allSeasons>.contentBox{
    margin-bottom: 0;
}
.contentRow03>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentRow03>ul>li{
    width: 47%;
    margin-bottom: 50px;
}
.contentRow03>ul>li:last-child{
    width: 100%;
    margin-bottom: 0px;
}
.contentRow03>ul>li>h4{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    color: #c38e92;
    text-align: center;
    margin-bottom: 20px;
}
.contentRow03>ul>li>h4>.numberIcon{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25em;
    font-weight: 500;
    color: #c38e92;
    background-color: #fff;
    border-radius: 50px;
    border: 2px solid #c38e92;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
}
.content_innerBox>.ttlBox,
.content_innerBox>.mainBox,
.content_innerRow>ul>li{
    margin-bottom: 20px;
}
.content_innerRow>ul>li:last-child{
    margin-bottom: 0px;
}
.content_innerRow>ul>li>.mainRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content_innerRow>ul>li>.mainRow>.txtBox{
    width: 57%;
}
.content_innerRow>ul>li>.mainRow>.imgBox{
    width: 37%;
}
.content_innerBox.glass{
    margin-top: 50px;
}
.content_innerBox.glass>.imgBox{
    width: 50%;
    margin: 0 auto;
}
.content_innerRow>ul>li>.mainRow>.imgBox{
    position: relative;
}
.content_innerBox>.ttlBox>h5,
.content_innerRow>ul>li>h5{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    background-color: #c38e92;
    padding: 0.25em 1em;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
}
.content_innerBox>.ttlBox>p,
.content_innerRow>ul>li>.mainRow>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.content_innerBox>.ttlBox>p>span{
    font-size: 0.75em;
}
.content_innerBox>.mainBox>p.em,
.content_innerBox>.mainRow>.txtBox>p.em{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    line-height: 1.8;
    color: #c38e92;
}
.content_innerBox>.mainBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.content_innerBox>.mainRow>.txtBox>p.noticeTxt{
    font-size: 0.8em;
    line-height: 1.8;
    margin-top: 20px;
}
.content_innerBox>.imgRow,
.content_innerBox>.mainRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.content_innerBox>.imgRow>li{
    width: 47%;
}
.content_innerBox>.mainRow>.txtBox{
    width: 67%;
}
.content_innerBox>.mainRow>.imgBox{
    width: 27%;
}
@media (max-width:768px){
    .contentRow03>ul>li{
        width: 100%;
    }
    .contentRow03>ul>li>.mainBox{
        padding: 20px;
    }
}
@media (max-width:500px){
    .content_innerBox>.mainRow>.txtBox{
        width: 100%;
    }
    .content_innerBox.glass>.imgBox{
        width: 75%;
    }
    .content_innerBox>.mainRow>.imgBox{
        width: 75%;
        margin: 0 auto;
        margin-top: 20px;
    }
}