@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Source_Serif_4;
    src: url(../font/Source_Serif_4/static/SourceSerif4-Medium.ttf);
}

@font-face {
    font-family: Noto_Serif_JP;
    src: url(../font/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf);
}

@@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Source_Serif_4;
    src: url(../font/Source_Serif_4/static/SourceSerif4-Medium.ttf);
}

@font-face {
    font-family: Noto_Serif_JP;
    src: url(../font/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf);
}

@font-face {
    font-family: EB_Garamond;
    src: url(../font/EB_Garamond/static/EBGaramond-Regular.ttf);
}

body {
    color: #544a47;
}

ul li {
    list-style-type: none;
}



@keyframes hedderTop {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

header {
    display:  block;
    position: relative;
    width: 100%;
    height: 60vw;
    overflow: hidden;
    animation: hedderTop  2s;
    transition: 0.5s;
}

.header-box {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 5vw;
    background-color: #fff;
    z-index: 1000;
    animation: hedderTop  2s;
    transition: 1S;
}

h1 {
    width: 5%;
    margin-left: 3%;
    animation: hedderTop  2s;
}

h1 img {
    width: 100%;
}

header .header-box .header .hamburger-overlay {
    display: none;
}


header .header-box .header {
    width: 50%;
    margin-top: 1.5vw;
    margin-left: auto;
    margin-right: 5%;
}

header .header-box .header nav {
    width: 100%;
    animation: hedderTop  2s;
}

header .header-box .header nav .nav-overlay__content {
    width: 100%;
}

header .header-box .header nav .nav-overlay__content ul {
    display: flex;
}

header .header-box .header nav .nav-overlay__content ul li {
    width: calc( 100% / 7 );
    padding-right: 8%;
    transform: scale(1,1);
    transition: 1s;
}

header .header-box .header nav .nav-overlay__content ul li:hover {
    transform: scale(1.1,1.1);
    transition: 0.8s;
}


header .header-box .header nav .nav-overlay__content ul li a {
    display: block;
    text-decoration: none;
    font-size: 1.3vw;
    font-family: Source_Serif_4;
    color: #544a47;
    transition: 1s;
}

header .header-box .header nav .nav-overlay__content ul li a:hover {
    color: #a99e93;
    transition: 0.8s;
}


/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav .header-box {
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0.5rem 1rem rgba(84,74,71,0.1);
    transition: 1s;
}


/* ヘッダー中央文字 */
.top-ttl{
    position: absolute;
    width: 25%;
    top: 35%;
    left: 69%;
    z-index: 100;
}

.textanimation {
    font-size: 2.8vw;
    color: #544a47;
    font-family: EB_Garamond;
}

@keyframes showText {
0%{
    transform: translateY(100%);
    opacity: 0;
}
100%{
    transform: translateY(0px);
    opacity: 1;
}
}

.textanimation span {
animation: showText 3s backwards;
display: inline-block;
}
.textanimation > span {
overflow: hidden;
}
.textanimation > span > span {
animation: showText 0.5s backwards;
}

/* ヘッダー画像 */

.main_visual {
    width: 100%;
    height: 60vw;
    position: absolute;
    background-image: url(../images/main_visual4.png);
    opacity: 0.8;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 10;
    animation: hedderTop  5s;
}

.main_img1, .main_img2, .main_img3, .main_img4, .main_img5 {
    width: 100%;
    height: 60vw;
    position: absolute;
    background-size: 100% 100%;
    background-repeat:no-repeat;
    animation: anime 25s infinite;
    z-index: 1;
    opacity: 0;
}


.main_img1 {
    background-image: url(../images/hedder_main1.jpg);
}

.main_img2 {
    background-image: url(../images/hedder_main2.jpg);
    animation-delay: 5s;
}

.main_img3 {
    background-image: url(../images/hedder_main3.jpg);
    animation-delay: 10s;
}

.main_img4 {
    background-image: url(../images/hedder_main4.jpg);
    animation-delay: 15s;
}

.main_img5 {
    background-image: url(../images/hedder_main5.jpg);
    animation-delay: 20s;
}
/* 「@keyframes anime」の中身は0%〜20%にかけて「opacity: 0;」〜「opacity: 1;」に不透明にして、
20%〜80%で背景画像を「transform: scale(1.2);」拡大しながら、次の写真が見るように
「z-index: 0;」で1番上の写真を下に潜りこませ、「opacity: 0;」でまた透明にしています。
 */
@keyframes anime {
    0%{
      opacity: 0;
    }
    20%{
      opacity: 1;
    }
    80%{
      opacity: 0;
      transform: scale(1.2);
    }
    100%{
      opacity: 0;
      z-index: 0;
    }
}


/* スライドイン */
.box {
    aspect-ratio: 16 / 9;
    background-color: #fffffc;
    /* opacity: 0; visibility: hidden;で要素を非表示にする。
    display: noneでも非表示にできるが、transitionが効かなくなる */
    opacity: 0;
    visibility: hidden;
    transition: all 3s;
    transform: translateY(150px);
}
.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




/* mein sec1 service */

main .area-service {
    position: relative;
    width: 100%;
    height: 100vw;
    top: 10%;
    background-color: #fffffc;
}


main .area-service h2 {
    position: absolute;
    top: 8%;
    left: 38.5%;
    letter-spacing: 0.1em;
    font-family: EB_Garamond;
    font-size: 7vw;
}

main .area-service h2 + p {
    position: absolute;
    top: 17%;
    left: 20%;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-family: Noto_Serif_JP;
    text-align: center;
    line-height: 1.8;
    font-size: 1.2vw;
}


main .area-service .service-container {
    position: absolute;
    width: 80%;
    top: 25%;
    left: 10%;
    background-color: #a99e93;
}

main .area-service .service-container img {
    width: 100%;
    vertical-align: bottom;
    transition: 1s;
}

main .area-service .service-container:hover img {
    opacity: 0.2;
    transition: 1s;
}

main .area-service .service-container p {
    position: absolute;
    top: 28%;
    left: 26%;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-family: Noto_Serif_JP;
    text-align: center;
    color: transparent;/* 透明色 */
    transition: 1s;
    font-size: 2.5vw;
}

.area-service .service-container:hover p {
    color: #fffffc;
    transition: 1s;
}

main .area-service .service-container p:nth-child(3) {
    margin-top: 24%;
    margin-left: 2.8%;
    line-height: 1.8;
    font-size: 1.2vw;
}

main .area-service .service-container + p {
    position: absolute;
    top: 84%;
    left: 36%;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-family: Noto_Serif_JP;
    text-align: center;
    line-height: 2;
    font-size: 1.2vw;
}




/* buttonアニメ */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #a99e93;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(169 158 147 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(169 158 147 / 0%);
    }
  }
  
main .service-btn {
    position: absolute;
    width: 5vw;
    height: 5vw;
    top: 93%;
    left: 47%;
    border-radius: 2.5vw;
    background-color: #a99e93;
    z-index: 1;
}

main .service-btn:hover {
    animation: ripple 1.5s infinite;
}

main .service-btn a {
    width: 5vw;
    height: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
    color: #fffffc;
    transition: 1s;
}

main .service-btn a:hover {
    color: #dddcd6;
    transition: 1s;
}

main .area-service .bar1 {
    position: absolute;
    width: 100%;
    height: 22vw;
    top: 107%;
    background: rgb(169,158,147);
    background: linear-gradient(180deg, rgba(169,158,147,1) 26%, rgba(182,172,163,1) 57%, rgba(209,203,196,1) 77%, rgba(233,230,225,1) 88%, rgba(255,255,252,1) 100%);
}

/* sc1 room */
main .area-room {
    width: 100%;
    height: 175vw;
}

main .area-room .sticky {
    position: sticky;
    display: flex;
    top: 0;
    mix-blend-mode: difference;
    background-color: rgba(0,0,0,0);
    z-index: 1;
}

main .area-room .sticky h2 {
    margin-top: 18%;
    writing-mode: vertical-rl;
    font-size: 7vw;
    font-family: EB_Garamond;
    /* font-family: Source_Serif_4; */
}

main .area-room .sticky p {
    margin-top: 10%;
    writing-mode: vertical-rl;
    font-size: 1.5vw;
    font-family: EB_Garamond;
    /* font-family: Source_Serif_4; */
}

main .area-room .room-img1 {
    width: 85%;
    margin-top: -15vw;
    border-radius: 0.8vw;
    box-shadow: 1.5vw 1.5vw 1vw 0.5vw rgba(169, 158, 147, 1);
}

main .area-room .room-img1 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}

main .room-flexbox {
    display: flex;
    background-color: rgba(0,0,0,0);
}

main .room-flexbox p {
    margin-top: 12%;
    margin-left: 20%;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-size: 1.2vw;
    font-family: Noto_Serif_JP;
}

main .area-room .room-flexbox .room-img2 {
    width: 40%;
    margin-top: 8%;
    margin-left: auto;
    border-radius: 0.8vw;
    box-shadow: -1vw 1vw 1vw 0.5vw rgba(169, 158, 147, 1);
    /* box-shadow: -3vw 3vw 1vw 1vw rgba(238, 232, 170, 1); */
}

main .area-room .room-flexbox .room-img2 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}


main .area-room .room-img3 {
    width: 70%;
    margin-top: 8%;
    border-radius: 0.8vw;
    box-shadow: 1.5vw 1.5vw 1vw 0.5vw rgba(169, 158, 147, 1);
}

main .area-room .room-img3 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}


/* room ボタン */
main .room-btn {
    position: relative;
    width: 5vw;
    height: 5vw;
    top: -40vw;
    left: 83%;
    border-radius: 2.5vw;
    background-color: #a99e93;
    z-index: 1;
}

main .room-btn:hover {
    animation: ripple 1.5s infinite;
}

main .room-btn a {
    width: 5vw;
    height: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
    color: #fffffc;
    transition: 1s;
}

main .room-btn a:hover {
    color: #dddcd6;
    transition: 1s;
}


/* sc2 menu */

main .bar2 {
    width: 100%;
    height: 22vw;
    margin-top: -5vw;
    background: rgb(169,158,147);
    background: linear-gradient(180deg, rgba(169,158,147,1) 26%, rgba(182,172,163,1) 57%, rgba(209,203,196,1) 77%, rgba(233,230,225,1) 88%, rgba(255,255,252,1) 100%);
}

main .area-menu {
    margin-top: -30vw;
    width: 100%;
    height: 155vw;
}

main .area-menu .sticky {
    position: sticky;
    display: flex;
    top: 0;
    mix-blend-mode: difference;
    background-color: rgba(0,0,0,0);
    z-index: 1;
}

main .area-menu .sticky h2 {
    margin-top: 15%;
    writing-mode: vertical-rl;
    font-size: 7vw;
    font-family: EB_Garamond;
    /* font-family: Source_Serif_4; */
}

main .area-menu .sticky p {
    margin-top: 10%;
    writing-mode: vertical-rl;
    font-size: 1.5vw;
    font-family: EB_Garamond;
    /* font-family: Source_Serif_4; */
}

main .area-menu .menu-img1 {
    width: 85%;
    height: 36vw;
    margin-top: -26vw;
    border-radius: 0.8vw;
    box-shadow: 1.5vw 1.5vw 1vw 0.5vw rgba(169, 158, 147, 1);
}

main .area-menu .menu-img1 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}

main .area-menu .menu-flexbox {
    display: flex;
    background-color: rgba(0,0,0,0);
}

main .area-menu .menu-flexbox p {
    margin-top: 8%;
    margin-left: 17%;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-size: 1.2vw;
    font-family: Noto_Serif_JP;
}

main .area-menu .menu-flexbox .menu-img2 {
    width: 40%;
    height: 27.5vw;
    margin-top: 10%;
    margin-left: auto;
    border-radius: 0.8vw;
    box-shadow: -1vw 1vw 1vw 0.5vw rgba(169, 158, 147, 1);
    /* box-shadow: -3vw 3vw 1vw 1vw rgba(238, 232, 170, 1); */
}

main .area-menu .menu-flexbox .menu-img2 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}


main .area-menu .menu-img3 {
    width: 70%;
    margin-top: 10%;
    border-radius: 0.8vw;
    box-shadow: 1.5vw 1.5vw 1vw 0.5vw rgba(169, 158, 147, 1);
}

main .area-menu .menu-img3 img {
    width: 100%;
    border-radius: 0.8vw;
    vertical-align: bottom;
}


/* menu ボタン */
main .menu-btn {
    position: relative;
    width: 5vw;
    height: 5vw;
    top: -31vw;
    left: 83%;
    border-radius: 2.5vw;
    background-color: #a99e93;
    z-index: 1;
}

main .menu-btn:hover {
    animation: ripple 1.5s infinite;
}

main .menu-btn a {
    width: 5vw;
    height: 5vw;
    border-radius: 2.5vw;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.8vw;
    color: #fffffc;
    transition: 1s;
}

main .menu-btn a:hover {
    color: #dddcd6;
    transition: 1s;
}

/* sec3 access */

main .area-access {
    width: 100%;
    height: 165vw;
}

main .area-access .access-continer1 {
    width: 80%;
}

main .area-access .access-continer1 h2 {
    width: 23%;
    margin-top: 5%;
    margin-left: 50%;
    letter-spacing: 0.03em;
    font-size: 7vw;
    font-family: EB_Garamond;
}

main .area-access .access-continer1 p {
    margin-top: 5%;
    margin-left: 25%;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    white-space: pre-wrap; 
    font-size: 1.2vw;
    font-family: Noto_Serif_JP;
}

main .area-access .access-continer2 p {
    padding: 3%;
    margin-left: 10%;
    font-size: 1vw;
}

main .area-access .access-continer2 .access-images {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

main .area-access .access-continer2 .access-images img {
    width: 100%;
}

/* 地図 */
main .area-access .googlemap {
    display: block;
    width: 70%;
    height: 35vw;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
  
}
  
main .area-access .access-map1 {
    width: 8vw;
    height: 8vw;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}
main .area-access .access-map1 a {
    display: block;
    width: 8vw;
    height: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    letter-spacing: 0.08em;
    background-color: #a99e93;
    color:  #fffffc;
    font-size: 1.1vw;
    transition: 1.5s;
}
  
main .area-access .access-map1:hover a {
    color: #fffffc;
    transition: 1.5s;
    animation: ripple 1.8s infinite;
}

main .area-access .access-map2 {
    width: 19%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1vw;
}

main .area-access .access-map2 a {
    line-height: 2.4;
    text-decoration: none;
    color: #544a47;
    
}

main .area-access .access-map2 a::after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background-color: #a99e93;
    transition: 0.8s;
}

main .area-access .access-map2 a:hover::after {
    width: 18.2vw;
    height: 1px;
    transition: 0.8s;
}

/* アドレス */
main .area-access .access-continer3 {
    width: 78%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

main .area-access .access-continer3 address {
    width: 50%;
    margin-right: 5%;
}

main .area-access .access-continer3 address p {
    letter-spacing: 0.1em;
    font-style: normal;
    font-size: 1.1vw;
    font-family: Noto_Serif_JP;
}
  
main .area-access .access-continer3 address p:nth-of-type(1) {
    line-height: 1.8;
    font-size: 1.3vw;
    margin-top: 11%;
}
  
main .area-access .access-continer3 address p:nth-of-type(2) {
    line-height: 1.6;
    margin-top: 5%;
    white-space: pre-wrap; 
}

main .area-access .access-continer3 .access-ad {
    width: 45%;
}
  
main .area-access .access-continer3 .access-ad img {
    width: 100%;
    margin-top: 5%;
    vertical-align: bottom;
}




/* sec5 予約 */

main .area-reserve {
    width: 100%;
    height: 36vw;
    margin-top: 8%;
    background: rgb(255,255,252);
    background: linear-gradient(0deg, rgba(255,255,252,1) 0%, rgba(209,203,196,1) 22%, rgba(187,179,169,1) 38%, rgba(179,169,159,1) 50%, rgba(169,158,147,1) 61%);
}

main .area-reserve h2 {
    width: 100%;
    padding-top: 4%;
    text-align: center;
    color: #fffffc;
    font-size: 7vw;
    font-family: EB_Garamond;
    background-color: #a99e93;
}

main .area-reserve p {
    width: 100%;
    margin-top: 3%;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    white-space: pre-wrap;
    color: #fffffc;
    font-size: 1.2vw;
    font-family: Noto_Serif_JP;
}

main .area-reserve .reserve-ap {
    width: 8vw;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
}

main .area-reserve .reserve-ap a {
    width: 8vw;
    height: 8vw;
    border-radius: 4vw;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fffffc;
    font-size: 1.1vw;
    transition: 1s;
    background-color: #a99e93;
}

main .area-reserve .reserve-ap a:hover {
    color: #dddcd6;
    animation: ripple 1.5s infinite;
    transition: 1s;
}

main .ist {
    width: 100%;
}

main .ist img {
    width: 100%;
}




footer {
    width: 100%;
    height: 10vw;
    margin-top: -5vw;
    background-color: #fffffc;
}

footer ul {
    width: 46%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

footer ul li {
    width: calc( 100% / 7 );
    margin-right: 2%;
    text-align: center;
    background-color: #dddcd6;
    border-radius: 0.8vw;
    overflow: hidden;
}

footer ul li a {
    display: block;
    text-decoration: none;
    line-height: 3;
    transform: scale(1,1);
    font-size: 1.1vw;
    color: #544a47;
    transition: 1s;
}

footer ul li a:hover {
    transform: scale(2,2);
    color: #a99e93;
    transition: 1s;
}
  

footer ul + p {
    padding-top: 3%;
    padding-bottom: 5%;
    text-align: center;
    font-size: 0.9vw;
}

