@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;           
}
.pageTtl h2 span:nth-child(6){
    animation-delay: 1.2s;           
}
.pageTtl h2 span:nth-child(7){
    animation-delay: 1.4s;           
}
.pageTtl h2 span:nth-child(8){
    animation-delay: 1.6s;           
}
.pageTtl h2 span:nth-child(9){
    animation-delay: 1.8s;           
}
@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;
    }
}

/* mainImg */
.mainImg{
    max-width: 1100px;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 120px;
}
.mainImg_box{
    position: relative;
}
.mainImg_box>img.grayscale{
    opacity: 0;
    transition: opacity 1s ease-out;
    filter: grayscale(1);
}
.mainImg_box.open>img.grayscale{
    opacity: 1;
}
.mainImg_box>img.absolute01{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    clip-path: inset(50% 50% 50% 50%); /* 中心0%からスタート */
    transition: clip-path 1s ease-out 1s;
}
.mainImg_box.open>img.absolute01{
    clip-path: inset(0% 0% 0% 0%); /* 中心から徐々に広がる */
}
.mainImg_box>img.absolute02{
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: opacity 1s ease-out 2s;
}
.mainImg_box.open>img.absolute02{
    opacity: 1;
}
@media (max-width:1500px){
    .mainImg{
        margin-bottom: 100px;
    }
}
@media (max-width:1024px){
    .mainImg{
        max-width: 500px;
        width: 80%;
        margin-bottom: 80px;
    }
}
@media (max-width:768px){
    .mainImg{
        width: 90%;
        margin-bottom: 120px;
    }
    .mainImg_box>img.absolute02{
        width: 80%;
    }
}
@media (max-width:375px){
    .mainImg_box>img.absolute02{
        width: 90%;
    }
}

/* mainTxt_row */
.mainTxt_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.mainTxt_row>.txtBox,
.mainTxt_row>.imgBox{
    width: 48%;
}
.mainTxt_row>.txtBox>h3{
    font-size: 1.5em;
    font-weight: 400;
    color: #c38e92;
    margin-bottom: 10px;
}
.mainTxt_row>.txtBox>p{
    font-size: 1.1em;
    line-height: 1.8;
}
.mainTxt_row>.imgBox{
    position: relative;
}
.under768,
.under500{
    display: none;
}
@media (max-width:1500px){
    .mainTxt_row>.txtBox>h3{
        font-size: 1.3em;
    }
    .mainTxt_row>.txtBox>p{
        font-size: 1em;
    }
}
@media (max-width:768px){
    .mainTxt_row>.txtBox,
    .mainTxt_row>.imgBox{
        width: 100%;
        text-align: center;
    }
    .mainTxt_row>.txtBox{
        margin-bottom: 20px;
    }
    .mainTxt_row>.txtBox>h3{
        font-size: 1.5em;
    }
    .mainTxt_row>.txtBox>p{
        font-size: 1.1em;
    }
    .under768{
        display: block;
    }
}
@media (max-width:500px){
    .under500{
        display: block;
    }
}

/* hOption_row */
.hOption_row{
    border: 2px solid #c38e92;
    background-color: #fff;
    margin-bottom: 50px;
}
.hOption_row>h3{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c38e92;
    padding: 0.5em 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.hOption_row>ul{
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hOption_row>ul>li{
    width: 48%;
}
.hOption_row>ul>li>.txtBox{
    margin-bottom: 20px;
}
.hOption_row>ul>li>.txtBox>h4{
    font-size: 1em;
    font-weight: 400;
    color: #c38e92;
    margin-bottom: 5px;
}
.hOption_row>ul>li>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.hOption_row>ul>li>.txtBox>p.noticeTxt{
    font-size: 0.75em;
    margin-top: 5px;
}
.hOption_row>ul>li>.imgRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hOption_row>ul>li>.imgRow>p{
    width: 48%;
}
.h_absTxt{
    width: 50%;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
}
@media (max-width:1500px){
    .hOption_row>h3,
    .hOption_row>ul>li>.txtBox>h4{
        font-size: 0.9em;
    }
    .hOption_row>ul>li>.txtBox>p{
        font-size: 0.8em;
    }
    .hOption_row>ul>li>.txtBox>p.noticeTxt{
        font-size: 0.65em;
    }
}
@media (max-width:768px){
    .hOption_row>h3,
    .hOption_row>ul>li>.txtBox>h4{
        font-size: 1em;
    }
    .hOption_row>ul>li>.txtBox>p{
        font-size: 0.9em;
    }
    .hOption_row>ul>li>.txtBox>p.noticeTxt{
        font-size: 0.75em;
    }
    .hOption_row>h3{
        flex-direction: column;
    }
    .hOption_row>ul{
        padding: 20px;
    }
    .hOption_row>ul>li{
        width: 100%;
    }
    .hOption_row>ul>li:nth-child(1){
        margin-bottom: 20px;
    }
}
@media (max-width:500px){
    .hOption_row>h3,
    .hOption_row>ul>li>.txtBox>h4{
        font-size: 0.9em;
    }
    .hOption_row>ul>li>.txtBox>p{
        font-size: 0.8em;
    }
    .hOption_row>ul>li>.txtBox>p.noticeTxt{
        font-size: 0.65em;
    }
}

/* hSubTxt_row */
.hSubTxt_row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hSubTxt_row>.hSubTxt_box{
    width: 48%;
}
.hSubTxt_row>.hSubTxt_box>h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    background-color: #b4b4b5;
    padding: 0.5em 1em;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox{
    margin-top: 20px;
}
.hSubTxt_row>.hSubTxt_box>.txtBox{
    margin-top: 20px;
}
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>h4{
    font-size: 1em;
    font-weight: 400;
    color: #c38e92;
    margin-bottom: 5px;
}
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>p,
.hSubTxt_row>.hSubTxt_box>.txtBox>p,
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.imgBox,
.hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.txtBox{
    margin-top: 20px;
}
@media (max-width:1500px){
    .hSubTxt_row>.hSubTxt_box>h3,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>h4{
        font-size: 0.9em;
    }
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>p,
    .hSubTxt_row>.hSubTxt_box>.txtBox>p,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.txtBox>p{
        font-size: 0.8em;
    }
}
@media (max-width:768px){
    .hSubTxt_row>.hSubTxt_box{
        width: 100%;
    }
    .hSubTxt_row>.hSubTxt_box:nth-child(1){
        margin-bottom: 20px;
    }
    .hSubTxt_row>.hSubTxt_box>h3,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>h4{
        font-size: 1em;
    }
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>p,
    .hSubTxt_row>.hSubTxt_box>.txtBox>p,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.txtBox>p{
        font-size: 0.9em;
    }
}
@media (max-width:500px){
    .hSubTxt_row>.hSubTxt_box>h3,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>h4{
        font-size: 0.9em;
    }
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>p,
    .hSubTxt_row>.hSubTxt_box>.txtBox>p,
    .hSubTxt_row>.hSubTxt_box>.hSubTxt_innerbox>.txtBox>p{
        font-size: 0.8em;
    }
}

/* contentBox */
.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;
}
.contentRow01{
    margin-bottom: 50px;
}
.contentRow01>ul,
.contentRow02>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentRow01>ul>li{
    width: 47%;
}
.contentRow02>ul>li{
    width: 47%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #c8c9ca;
}
.contentRow01>ul>li>.imgBox{
    position: relative;
    margin-bottom: 10px;
}
.contentRow01>ul>li>.txtBox>h4{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #c38e92;
    margin-bottom: 5px;
}
.contentRow01>ul>li>.txtBox>p{
    font-size: 0.9em;
}
.contentRow01>ul>li>.txtBox>p.noticeTxt{
    font-size: 0.75em;
    margin-top: 5px;
}
.contentRow02>ul>li>.txtBox{
    margin-bottom: 10px;
}
.contentRow02>ul>li>.txtBox>h4{
    font-size: 1em;
    font-weight: 500;
    color: #c38e92;
    margin-bottom: 5px;
}
.contentRow02>ul>li>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.contentRow02>ul>li>.imgBox{
    position: relative;
}
@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;
    }
}
@media (max-width:1024px){
    .contentBox{
        width:90%;
        padding-top: 70px;
    }
}
@media (max-width:768px){
    .contentRow01>ul>li{
        width: 100%;
    }
    .contentRow01>ul>li:nth-child(1){
        margin-bottom: 30px;
    }
    .contentRow02>ul>li{
        width: 100%;
        padding: 20px;
    }
    .contentRow02>ul>li:nth-child(1){
        margin-bottom: 30px;
    }
    .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){
    .pageTtl h2 span{
        font-size: 2.25em;
    }
    .mainTxt h3{
        font-size: 1.5em;
    }
    .under500{
        display: block;
    }
}

/* contentBox */
.contentBox>.mainImg_box{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px 10px 30px;
    box-sizing: border-box;
    background-color: #fff;
    margin-bottom: 50px;
}

/* contentBox_wrap as */
.contentBox_wrap.as{
    background-image: url(../images/smartlife/bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding-bottom: 80px;
}
.contentBox_wrap.as>.contentBox{
    margin-bottom: 0;
}
.contentRow03>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentRow03>ul>li{
    width: 48%;
    margin-bottom: 0px;
}
.contentRow03>ul>li:last-child{
    width: 48%;
    margin-bottom: 0px;
}
.contentRow03>ul>li>h4{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    background-color: #b4b4b5;
    padding: 0.25em 1em;
    box-sizing: border-box;
}
.contentRow03>ul>li>.mainBox{
    background-color: #fff;
    padding: 30px;
    box-sizing: border-box;
}
.contentRow03>ul>li>.mainBox>.imgBox{
    position: relative;
    margin-bottom: 10px;
}
.contentRow03>ul>li>.mainBox>.imgRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.contentRow03>ul>li>.mainBox>.imgRow>p{
    width: 47%;
}
.contentRow03>ul>li>.mainBox>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.contentRow03>ul>li>.mainBox>.txtBox>p.txtNotice{
    font-size: 0.75em;
    line-height: 1.2;
}
.contentRow03>ul>li>.mainBox>.txtBox>table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>th,
.contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>td{
    width: 50%;
    border: 2px solid #c38e92;
    padding: 0.5em 0;
}
.contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>th{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #c38e92;
}
.contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>td{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    padding: 0.5em;
}
.contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>td>span{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
}
.js-scrollable.scrollImg01>img{
    width: 130%;
}
@media (max-width:768px){
    .contentRow03>ul>li{
        width: 100%;
        margin-bottom: 30px;
    }
    .contentRow03>ul>li:last-child{
        width: 100%;
        margin-bottom: 0px;
    }
    .contentRow03>ul>li>.mainBox{
        padding: 20px;
    }
}

/* contentBox_wrap iot */
.contentBox.iot>.mainTxt_box>.txtBox{
    margin-bottom: 30px;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox,
.contentBox.iot>.mainTxt_box>.mainPoint_row>.rightBox{
    width: 47%;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox{
    text-align: left;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.rightBox{
    border-top: 1px solid #1bb5ab;
    border-bottom: 1px solid #1bb5ab;
    padding: 30px 0;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox>h4{
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 10px;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox>ul>li{
    font-size: 0.9em;
    margin-bottom: 10px;
    padding-left: 0.5em;
    box-sizing: border-box;
    border-left: 5px solid #1bb5ab;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox>p.txtNotice{
    font-size: 0.75em;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.rightBox>h4{
    font-size: 1em;
    font-weight: 400;
    color: #1bb5ab;
    margin-bottom: 10px;
}
.contentBox.iot>.mainTxt_box>.mainPoint_row>.rightBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.roomMap{
    margin-bottom: 50px;
}
.pointRow_wrap>.titleRow{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.pointRow_wrap>.titleRow>.leftBox>h4{
    margin-bottom: 10px;
}
.pointRow_wrap>.titleRow>.leftBox>p{
    font-size: 1em;
}
.pointRow_wrap>.pointRow>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.pointRow_wrap>.pointRow>ul>li{
    width: 47%;
    margin-bottom: 50px;
}
.pointRow_wrap>.pointRow>ul>li:nth-child(3),
.pointRow_wrap>.pointRow>ul>li:nth-child(4){
    margin-bottom: 0px;
}
.pointRow_wrap>.pointRow>ul>li>.txtBox>h5{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    line-height: 1.6;
    font-weight: 500;
    color: #1bb5ab;
    border-bottom: 1px solid #1bb5ab;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.pointRow_wrap>.pointRow>ul>li>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.pointRow_wrap>.pointRow>ul>li>.txtBox>p.txtNotice{
    font-size: 0.75em;
    margin-top: 10px;
}
.pointRow_wrap>.pointRow>ul>li>.imgRow{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.pointRow_wrap>.pointRow>ul>li>.imgRow>p{
    width: 50%;
}
@media (max-width:768px){
    .contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox,
    .contentBox.iot>.mainTxt_box>.mainPoint_row>.rightBox{
        width: 100%;
    }
    .contentBox.iot>.mainTxt_box>.mainPoint_row>.leftBox{
        margin-bottom: 30px;
    }
    .pointRow_wrap>.pointRow>ul>li{
        width: 100%;
    }
    .pointRow_wrap>.pointRow>ul>li:nth-child(3){
        margin-bottom: 50px;
    }
    .contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>th,
    .contentRow03>ul>li>.mainBox>.txtBox>table>tbody>tr>td{
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .js-scrollable.scrollImg02>img{
        width: 175%;
    }
}

/* freeIcon */
.freeIcon{
    position: absolute;
    width:70px;
    top: -35px;
    right: -70px;
}

/* contentRow04 */
.contentRow04>h4{
    font-family: "EB Garamond", serif;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    line-height: 1.2;
    font-weight: 400;
    color: #636155;
    text-align: center;
    margin-bottom: 30px;
}
.contentRow04>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentRow04>ul>li{
    width: 15%;
}
.contentRow04>ul>li>h4{
    font-family: "EB Garamond", serif;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #c38e92;
    padding: 0.25em 0;
    box-sizing: border-box;
}
@media (max-width:768px){
    .contentRow04>ul>li{
        width: 47%;
        margin-bottom: 30px;
    }
    .contentRow04>ul>li:nth-child(5){
        margin-bottom: 0px;
    }
}

/* notice */
.notice{
    padding-bottom: 80px;
    /*position: relative;*/
}
.limited_noticeInner,
.page_noticeInner{
    width: 1100px;
    margin: 0 auto;
}
.limited_noticeInner{
    margin-bottom: 10px;
}
.limited_noticeInner>h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-align: center;
    border-bottom: 1px solid #000;
    padding: 0 0 10px 0;
}
.limited_noticeInner>.mainTxt{
    font-size: 0.9em;
    font-weight: 300;
    text-align: center;
    padding: 10px 0 0 0;
    margin-bottom: 10px;
}
.limited_noticeInner>p.subTxt{
    font-size: 0.75em;
    text-align: center;
}
.page_noticeInner>p{
    font-size: 0.75em;
    text-align: center;
}
.under1500,
.under1400{
    display: none;
}
@media (max-width:1500px){
    .limited_noticeInner,
    .page_noticeInner{
        width: 73.33%;
    }
    .under1500{
        display: block;
    }
}
@media (max-width:1400px){
    .under1400{
        display: block;
    }
}
@media (max-width:1200px){
    .limited_noticeInner,
    .page_noticeInner{
        width: 80%;
    }
}
@media (max-width:1000px){
    .limited_noticeInner,
    .page_noticeInner{
        width: 90%;
    }
}
@media (max-width:768px){
    .limited_noticeInner,
    .page_noticeInner{
        width: 80%;
    }
    .limited_noticeInner>p.subTxt{
        text-align: left;
    }
    .page_noticeInner>p{
        text-align: left;
    }
}
@media (max-width:500px){
    .notice{
        padding-bottom: 50px;
    }
    .limited_noticeInner,
    .page_noticeInner{
        width: 90%;
    }                
}