@charset "utf-8";

/* pageTitle */
.fadeElement {
    opacity: 0;
    /*transform: translateY(20px);  少し下からフェードイン */
    transition: opacity 1s ease/*, transform 1s ease*/;
}
.fadeElement.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.page_eyeCatch{
    background-color: #302a24;
    position: relative;
    padding: 80px 0;
}
.page_eyeCatch:before{
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/top/bg01.svg);
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.5;
}
.page_eyeCatch_slide{
    position: relative;
    height: 400px;
}
.page_eyeCatch_slide>.slide{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeSlide 21s infinite ease-in-out;
    visibility: hidden;
}
.page_eyeCatch_slide>.slide.slide01{
    animation-delay: 0s;
}
.page_eyeCatch_slide>.slide.slide02{
    animation-delay: 7s;
}
.page_eyeCatch_slide>.slide.slide03{
    animation-delay: 14s;
}
@keyframes fadeSlide{
    0% , 4.99%{
        opacity: 0;
        visibility: hidden;
    }
    5%{
        opacity: 0;
        visibility: visible;
    }
    10% , 30%{
        opacity: 1;
        visibility: visible;
    }
    35%{
        opacity: 0;
        visibility: visible;
    }
    36% , 100%{
        opacity: 0;
        visibility: hidden;
    }
}
.page_eyeCatch_slide>.slide>ul{
    max-width: 500px;
    width: 90%;
}
.slide.slide01.active>ul>li,
.slide.slide02.active>ul>li{
    opacity: 0;
    transform:scale(0.5);
    animation: fadeScale 1s ease forwards;
}
.slide.slide01.active>ul>li:nth-child(1){
    animation-delay: 0.5s;
}
.slide.slide01.active>ul>li:nth-child(2){
    animation-delay: 1.5s;
}
.slide.slide01.active>ul>li:nth-child(3){
    animation-delay: 2.5s;
}
.slide.slide01.active>ul>li:nth-child(4){
    animation-delay: 3.5s;
}
.slide.slide01.active>ul>li:nth-child(5){
    animation-delay: 4.5s;
}
.slide.slide02.active>ul>li:nth-child(1){
    animation-delay: 0.5s;
}
.slide.slide02.active>ul>li:nth-child(2){
    animation-delay: 1.5s;
}
@keyframes fadeScale{
    from{
        opacity: 0;
        transform: scale(0.5);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
.slide.slide01>ul>li:nth-child(2n){
    position: relative;
    z-index: 1;
}
.catchAbs{
    max-width: 50px;
    width: 10%;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.slide.slide02>ul>li:nth-child(1){
    margin-bottom: 30px;
}
.page_eyeCatch_slide>.slide.slide03>ul{
    max-width: 1320px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page_eyeCatch_slide>.slide.slide03>ul>li{
    width: 31%;
}
@media (max-width:1024px){
    .page_eyeCatch_slide>.slide.slide03>ul{
        max-width: 500px;
        width: 90%;
    }
    .page_eyeCatch_slide>.slide.slide03>ul>li:nth-child(1),
    .page_eyeCatch_slide>.slide.slide03>ul>li:nth-child(3){
        display: none;
    }
    .page_eyeCatch_slide>.slide.slide03>ul>li{
        width: 100%;
    }
}
@media (max-width:500px){
    .page_eyeCatch{
        padding: 50px 0;
    }
}

/* mainTable */
.pageWrap{            
    background-color: #edeae8;
    padding: 80px 0;
    overflow: hidden;
}
.pageWrap>.mainTxt{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 80px;
}
.pageWrap>.mainTxt>h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    color: #302a24;
    margin-bottom: 30px;
}
.mainImg_row{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}
.planShadow{
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.25));
}
.triangle{
    max-width: 80px;
    width: 10%;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg,#adaf8c,rgba(173, 175, 140, 0),rgba(173, 175, 140, 0),#adaf8c);
    background-size: 300% 100%;
    animation: moveGradient 3s linear infinite;
    clip-path: polygon(0% 0%, 100% 50%,0% 100%);
    margin-left: 30px;
    margin-right: 30px;
}
@keyframes moveGradient{
    0%{
        background-position: 0% 0%;
    }
    100%{
        background-position: -300% 0%;
    }
}
.subImg_row{
    display: flex;
    justify-content: center;
}
.subImg_row>.planImg:nth-child(1){
    margin-right: 80px;
}
.pointImg{
    position: absolute;
    width: 100px;
    aspect-ratio: 1/1;
    top: -50px;
    left: -50px;
}
.under1024{
    display: none;
}
@media (max-width:1024px){
    .pageWrap>.mainTxt>h3{
        font-size: 1.4em;
    }
    .under1024{
        display: block;
    }
}
@media (max-width:768px){
    .pageWrap>.mainTxt{
        width: 90%;
    }
    .pageWrap>.mainTxt>h3{
        font-size: 1.3em;
    }
    .mainImg_row,
    .subImg_row{
        justify-content: space-between;
    }
    .mainImg_row>.planImg{
        width: 40%;
    }
    .planShadow{
        filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.25));
    }
    .triangle{
        margin-left: 0px;
        margin-right: 0px;
    }
    .subImg_row>.planImg:nth-child(1){
        width: 65%;
        margin-right: 0px;
    }
    .subImg_row>.planImg:nth-child(2){
        width: 30.75%;
    }
    .pointImg{
        width: 60px;
        top: -30px;
        left: -10px;
    }
}
@media (max-width:500px){
    .pageWrap{   
        padding: 50px 0;
    }
    .pageWrap>.mainTxt>h3{
        font-size: 1.2em;
    }
}
@media (max-width:375px){
    .pageWrap>.mainTxt>h3{
        font-size: 1.1em;
    }
}

/* update */
.pointBox{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
}
.pointBox.point01:before,
.pointBox.point03:before,
.pointBox.point05:before{
    content: '';
    position: absolute;
    top: 50%;
    right: -25%;
    transform: translate(0,-50%);
    width: 50%;
    height: 80%;
    background-image: url(../images/openAirliving/bg.svg);
    background-size: cover;
    mix-blend-mode: multiply;
}
.pointBox.point02:before,
.pointBox.point04:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -25%;
    transform: translate(0,-50%);
    width: 50%;
    height: 80%;
    background-image: url(../images/openAirliving/bg.svg);
    background-size: cover;
    mix-blend-mode: multiply;
}
.pointBox>.txtBox{
    padding: 50px 150px 100px 150px;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
}
.numberBox{
    position: absolute;
    display: block;
    aspect-ratio: 1/1;
    width: 180px;
    background-color: #312a24;
    clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
    top: -10px;
    left: -10px;
}
.numberBox>img{
    width: 40%;
    margin-top: 15px;
    margin-left: 15px;
}
.pointBox>.txtBox>h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    text-align: center;
    color: #302a24;
    margin-bottom: 30px;
}
.pointBox>.txtBox>h3>span{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #22ac38;
}
.pointBox>.txtBox>p{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 0.9em;
    line-height: 1.8;
    color: #302a24;
}
.pointBox>.imgBox{
    width: 100%;
    position: relative;
}
.pointBox.point01>.imgBox,
.pointBox.point03>.imgBox,
.pointBox.point05>.imgRow{
    margin-top: -50px;
    margin-left: -50px;
}
.pointBox.point02>.imgBox,
.pointBox.point04>.imgRow{
    margin-top: -50px;
    margin-left: 50px;
}
.pointBox>.imgRow{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.pointBox>.imgRow>p{
    width: 40%;
}
.pointBox>.imgRow>p:nth-child(1){
    margin-right: 4%;
}
.pointBox.point04>.imgRow>p:nth-child(1){
    margin-top: 25px;
} 
.pointBox.point05>.imgRow>p:nth-child(2){
    margin-top: 25px;
}               
.imgNotice{
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    font-size: 0.75em;
    color: #fff;
}
.absImg{
    position: absolute;
    width: 90%;
    left: 10%;
    bottom: 0%;
}
.pointBox>.imgBox,
.pointBox>.imgRow>p{
    overflow: hidden;
}
.pointBox>.imgBox>img,
.pointBox>.imgRow>p>img{
    opacity: 0;
    transition: opacity 0.5s ease;
    transition-delay: 1s; /* 幕が完全に上がるタイミングに合わせる */
}
.pointBox>.imgBox.show>img,
.pointBox>.imgRow>p.show>img{
    opacity: 1;
}
.pointBox>.imgBox:before,
.pointBox>.imgRow>p:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: #adaf8d;
    z-index: 2;
}
.pointBox>.imgBox.show:before,
.pointBox>.imgRow>p.show:before{
    animation: curtainOpen 1.5s ease forwards;
}
@keyframes curtainOpen {
    0% {
        height: 0%;
        transform: translateY(0);
    }
    60% {
        height: 100%;
        transform: translateY(0);
    }
    100% {
        height: 100%;
        transform: translateY(-100%);
    }
}
.under375{
    display: none;
}
@media (max-width:1024px){
    .pointBox>.txtBox{
        padding: 50px 100px 100px 100px;
    }
    .numberBox{
        width: 150px;
    }
    .numberBox>img{
        width: 35%;
    }
    .pointBox>.txtBox>h3{
        font-size: 1.15em;
    }
    .pointBox>.txtBox>p{
        font-size: 0.8em;
    }
    .imgNotice{
        font-size: 0.65em;
    }
}
@media (max-width:768px){
    .pointBox,
    .pointBox>.imgBox,
    .pointBox>.imgRow{
        width: 90%;
    }
    .pointBox.point01>.imgBox,
    .pointBox.point03>.imgBox,
    .pointBox.point05>.imgRow{
        margin-left: auto;
        margin-right: auto;
    }
    .pointBox.point02>.imgBox,
    .pointBox.point04>.imgRow{
        margin-left: auto;
        margin-right: auto;
    }
    .pointBox>.imgRow>p{
        width: 48%;
    }
    .pointBox>.txtBox{
        padding: 50px 80px 80px 80px;
    }
    .numberBox{
        width: 120px;
    }
    .numberBox>img{
        width: 30%;
    }
    .pointBox>.txtBox>h3{
        font-size: 1.05em;
    }
    .pointBox>.txtBox>p{
        font-size: 0.7em;
    }
    .imgNotice{
        font-size: 0.55em;
    }
}
@media (max-width:500px){
    .pointBox{
        margin-bottom: 50px;
    }
    .pointBox>.txtBox{
        padding: 50px 50px 80px 50px;
    }
    .pointBox>.txtBox>h3{
        font-size: 1em;
    }
    .pointBox>.txtBox>h3>span{
        font-size: 1.4em;
    }
}
@media (max-width:375px){
    .pointBox>.txtBox{
        padding: 30px 30px 80px 30px;
    }
    .pointBox>.txtBox>h3{
        font-size: 0.9em;
    }
    .under375{
        display: block;
    }
}