@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;
}
.pageTtl h2{
    text-align: center;
    margin-bottom: 50px;               
}
.pageTtl h2 span{
    font-family: "EB Garamond", serif;
    font-size: 2.5em;
    font-weight: 300;
    color: #727171;
    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;           
}
@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;
    margin-bottom: 30px;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
    top: 0;
    left: 0;
}
.mainTxt p{
    max-width: 600px;
    width: 50%;
    margin: 0 auto;
}
.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;
    }
    .mainTxt p{
        width: 70%;
    }
}
@media (max-width:500px){
    .pageTtl h2 span{
        font-size: 2.25em;
    }
    .mainTxt h3{
        font-size: 1.5em;
    }
    .under500{
        display: block;
    }
}

/* threeRow */
.threeRow{
    margin-bottom: 80px;
}
.threeRow>ul{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.threeRow>ul>li{
    width: 30%;
    margin-bottom: 50px;
}
.threeRow>ul>li:nth-child(7),
.threeRow>ul>li:nth-child(8),
.threeRow>ul>li:last-child{
    margin-bottom: 0px;
}
.pointTxt{
    position: absolute;
    width: 30%;
    aspect-ratio: 1/1;
    top: -10px;
    right:-10px;
}
@media (max-width:1024px){
    .threeRow>ul{
        width: 90%;
    }
}
@media (max-width:768px){
    .threeRow>ul{
        max-width: 550px;
        width: 90%;
    }
    .threeRow>ul>li{
        width: 47%;
    }
    .threeRow>ul>li:nth-child(7),
    .threeRow>ul>li:nth-child(8){
        margin-bottom: 50px;
    }
}

/* halfRow */
.halfRow{
    margin-bottom: 80px;
}
.halfRow>ul{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.halfRow>ul>li{
    width: 45%;
}
.contentBox>.imgBox{
    position: relative;
}
.imgNotice{
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    font-size: 0.65em;
}
.imgNotice.white{
    color: #fff;
}
.contentBox>.txtBox>h3{
    font-size: 1em;
    font-weight: 500;
    color: #c48f93;
    margin-bottom: 5px;
}
.contentBox>.txtBox.point_txtBox>h3{
    color: #000;
}
.contentBox>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.contentBox>.txtBox.point_txtBox>p{
    color: #c38e92;
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
    border: 2px solid #c38e92;
}
.contentBox>.txtBox>p>span.notice{
    font-size: 0.8em;
}
.contentBox>.txtBox{
    margin-top: 10px;
}
.contentBox>.txtBox>ul{
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentBox>.txtBox>ul>li{
    width: 48%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9em;
    text-align: center;
    color: #fff;
    padding: 0.5em 0;
    background-color: #c48f93;
    margin-top: 5px;
}
.contentBox>.txtBox>ul>li:nth-child(1),
.contentBox>.txtBox>ul>li:nth-child(2){
    margin-top: 0px;
}
.contentBox>.txtBox02{
    margin-top: 20px;
}
.contentBox>.txtBox02>ul>li{
    margin-bottom: 10px;
}
.contentBox>.txtBox02>ul>li:last-child{
    margin-bottom: 0px;
}
.contentBox>.txtBox02>ul>li>h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
    color: #fff;
    padding: 0.5em 0;
    background-color: #b8b5b4;
    margin-bottom: 5px;
}
.contentBox>.txtBox02>ul>li>.contentRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contentBox>.txtBox02>ul>li>.contentRow>p{
    width: 48%;
    font-size: 0.9em;
    line-height: 1.8;
}
.multiply{
    mix-blend-mode: multiply;
}
@media (max-width:1024px){
    .halfRow>ul{
        width: 90%;
    }
}
@media (max-width:768px){
    .halfRow>ul{
        max-width: 550px;
        width: 90%;
    }
    .halfRow>ul>li{
        width: 100%;
    }
    .halfRow>ul>li.leftBox{
        margin-bottom: 50px;
    }
}

/* iotBox */
.iotBox{
    max-width:1100px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 80px;
    border: 2px solid #c38e92;
    padding: 50px;
    box-sizing: border-box;
}
.iotBox>.mainBox{
    text-align: center;
    margin-bottom: 30px;
}
.iotBox>.mainBox>h3{
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.8;
    color: #c48f93;
    margin-bottom: 20px;
}
.iotBox>.mainBox>h3>span{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    padding: 0.25em 1em;
    color: #fff;
    background-color: #f29600;
}
.overlay{
    mix-blend-mode: overlay;
}
.iotBox>.txtBox>h3{
    font-size: 1em;
    font-weight: 500;
    color: #c48f93;
    margin-bottom: 5px;
}
.iotBox>.txtBox>p{
    font-size: 0.9em;
    line-height: 1.8;
}
.iotBox>.txtBox>p>span.notice{
    display: inline-block;
    font-size: 0.8em;
    line-height: 1.6;
    padding-bottom: 0;
}
@media (max-width:1024px){
    .iotBox{
        width: 90%;
    }
}
@media (max-width:768px){
    .iotBox{
        max-width: 550px;
        width: 90%;
        padding: 30px;
    }
}