@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;
    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;
}

/* 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;
    margin-bottom: 30px;
}
.mainTxt p{
    font-size: 1em;
    line-height: 2;
}
.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;
}
.under1024,
.under500{
    display: none;
}
@media (max-width:1500px){
    .pageTtl h2 span{
        font-size: 2.25em;
    }
    .mainTxt h3{
        font-size: 1.5em;
    }
}
@media (max-width:1024px){
    .under1024{
        display: block;
    }
}
@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;
    }
}

/* gallery */
.gallery{
    margin-bottom: 80px;
}
.main-slider {
    max-width: 1320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px;
}
.main-slider .swiper-slide {
    position: relative;
} 
.main-slider .swiper-slide span{
    position: absolute;
    bottom: 0em;
    right: 0.1em;
    font-family: "Libre Baskerville", serif;
    font-size: 2em;
    color: #fff;
}           
.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}  
.thumb-slider {
    max-width: 1320px;
    width: 95%;
    margin: 0 auto;
}            
.thumb-slider .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}
.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-button-prev,
.swiper-button-next{
    width: 30px;
    height: 30px;
    background-color: #b46c62;
    border-radius: 50%;
}
.swiper-button-prev{
    left: 0;
}
.swiper-button-next{
    right: 0;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    font-size: 18px;
    color: #fff;
}
@media (max-width: 768px) {
    .gallery{
        margin-bottom: 50px;
    }
} 

/* pageNotice */
.pageNotice{
    width: 100%;
}
.pageNotice p{
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    font-size: 0.75em;
    color: #adaf8d;
}
@media (max-width:1200px){
    .pageNotice p{
        font-size: 0.65em;
    }
}
@media (max-width:960px){
    .pageNotice p{
        font-size: 0.55em;
    }
}
@media (max-width:768px){
    .pageNotice{
        margin-bottom:50px;
    }
    .pageNotice>p{
        width: 90%;
    }
}