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

.header-box {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 10vw;
    background-color: rgba(255,255,255,0.8);
    z-index: 1000;
    animation: hedderTop  2s;
    transition: 1S;
}

h1 {
    width: 10vw;
    height: fit-content;
    margin-top: 0.5%;
    margin-left: 3%;
    animation: hedderTop  2s;
}

h1 img {
    width: 100%;
}

/* ハンバーガーボタン */

.hamburger-overlay {
    position: fixed;
    top: 1vw;
    right: 2vw;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #544a47;/* ハンバーガーボタンカラー */
    transition: all 0.6s;
  }

  .hamburger-overlay__line:hover {
    background-color: #dddcd6;
    transition: 0.6s;
  }
  
  .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
  .hamburger-overlay__line:nth-of-type(2) { top: 23px; }
  .hamburger-overlay__line:nth-of-type(3) { top: 32px; }
  
  .hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fffffc;/* ×閉じカラー */
    transition: 0.5s;
  }

  .hamburger-overlay.active .hamburger-overlay__line:hover {
    background-color: #dddcd6;
    transition: 0.5s;
  }
  
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(84, 74, 71, 0.8);/* バックカラー */
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
  }
  
  .nav-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  .nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  
  .nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
  }
  
  .nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
  .nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
  .nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
  .nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
  
  .nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fffffc;
    font-size: 24px;
    text-decoration: none;
    transform: scale(1,1);
    transition: 0.5s;
  }
  
  .nav-overlay__link:hover {
    color: #a99e93;
    transform: scale(1.2,1.2);
    transition: 0.5s;
  }


/*nav {
    width: 50%;
    margin-top: 1.5vw;
    margin-left: auto;
    animation: hedderTop  2s;
}

 ul {
    display: flex;
}

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

nav ul li:hover {
    transform: scale(1.1,1.1);
    transition: 0.8s;
}


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

nav ul li a:hover {
    color: #a99e93;
    transition: 0.8s;
}

*/

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: 45%;
    top: 26%;
    left: 27.3%;
    z-index: 100;
}

.textanimation {
    text-align: center;
    background-color: #fffffc;
    font-size: 6vw;
    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;
}

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

/* mein sec1 service */

main .area-service {
    width: 100%;
    height: 242vw;
    background-color: #fffffc;
}

main .area-service .bar {
    width: 100%;
    height: 22vw;
    margin-top: 10%;
    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-service h2 {
    width: 26vw;
    margin-top: -5%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1em;
    font-family: EB_Garamond;
    font-size: 8vw;
}

main .area-service h2 + p {
    width: 82%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: 0.1em;
    font-family: Noto_Serif_JP;
    line-height: 1.8;
    font-size: 3vw;
}


main .area-service .service-container {
    width: 100%;
    margin-top: 10%;
}

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


main .area-service .service-container p {
    width: 76%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    font-family: Noto_Serif_JP;
    font-size: 4.5vw;
}


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

main .area-service .service-container + p {
    width: 76%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.1em; 
    font-family: Noto_Serif_JP;
    line-height: 1.8;
    font-size: 3vw;
}




/* 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 {
    width: 15vw;
    height: 15vw;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: #a99e93;
}

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

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

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

main .area-service .bar1 {
    width: 100%;
    height: 22vw;
    margin-top: 10vw;
    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%);
}

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



main .area-room .sticky h2 {
    width: 20vw;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    font-size: 8vw;
    font-family: EB_Garamond;
}

main .area-room .sticky p {
    margin-top: 1%;
    text-align: center;
    font-size: 3vw;
    font-family: EB_Garamond;
}

main .area-room .room-img1 {
    width: 100%;
    margin-top: 10%;
}

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


main .room-flexbox p {
    width: 76%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 3vw;
    font-family: Noto_Serif_JP;
}

main .area-room .room-flexbox .room-img2 {
    display: none;
}

main .area-room .room-img3 {
    display: none;
}


/* room ボタン */
main .room-btn {
    width: 15vw;
    height: 15vw;
    margin-bottom: 15%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: #a99e93;
}

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

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

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

/* sc2 menu */

main .bar2 {
    width: 100%;
    height: 22vw;
    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 {
    width: 100%;
    height: 176vw;
}

main .area-menu .sticky h2 {
    width: 34vw;
    margin-top: -5%;
    margin-left: 31%;
    font-size: 8vw;
    font-family: EB_Garamond;
}

main .area-menu .sticky p {
    margin-top: 1%;
    text-align: center;
    font-size: 3vw;
    font-family: EB_Garamond;
}

main .area-menu .menu-img1 {
    width: 100%;
    margin-top: 10%;
}

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

main .area-menu .menu-flexbox p {
    width: 76%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 3vw;
    font-family: Noto_Serif_JP;
}

main .area-menu .menu-flexbox .menu-img2 {
    width: 50%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-left: auto;
}

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

main .area-menu .menu-img3 {
    display: none;
}

/* menu ボタン */
main .menu-btn {
    width: 15vw;
    height: 15vw;
    margin-bottom: 15%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: #a99e93;
}

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

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

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


/* sec3 access */

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

main .area-access .bar3 {
    width: 100%;
    height: 22vw;
    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-access .access-continer1 h2 {
    width: 22%;
    margin-top: -5%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.03em;
    font-size: 8vw;
    font-family: EB_Garamond;
}

main .area-access .access-continer1 p {
    width: 80%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 3vw;
    font-family: Noto_Serif_JP;
}

main .area-access .access-continer2 p {
    width: 29%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    padding: 3%;
    font-size: 2.6vw;
}

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

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

/* 地図 */
main .area-access .googlemap {
    display: block;
    width: 90%;
    height: 55vw;
    margin-top: 20%;
    margin-left: auto;
    margin-right: auto;
  
}



main .area-access .access-map1 {
    width: 18vw;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
}

main .area-access .access-map1 a {
    display: block;
    width: 18vw;
    line-height: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 2vw;
    text-decoration: none;
    letter-spacing: 0.08em;
    background-color: #a99e93;
    color:  #fffffc;
    font-size: 2.2vw;
    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: 37%;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2.2vw;
}

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: 36vw;
    height: 1px;
    transition: 0.8s;
}

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

main .area-access .access-continer3 address {
    width: 76%;
    margin-left: auto;
    margin-right: auto;

}

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

main .area-access .access-continer3 .access-ad {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
  
main .area-access .access-continer3 .access-ad img {
    width: 100%;
    vertical-align: bottom;
}




/* sec5 予約 */

main .area-reserve {
    width: 100%;
    height: 100vw;
    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: 15%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #fffffc;
    font-size: 8vw;
    font-family: EB_Garamond;
    background-color: #a99e93;
}

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

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

main .area-reserve .reserve-ap a {
    width: 18vw;
    height: 18vw;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fffffc;
    font-size: 2.6vw;
    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: 30vw;
    margin-top: -10vw;

}

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

footer ul li {
    width: 17vw;
    margin-top: 5%;
    margin-right: 5%;
    text-align: center;
    background-color: #dddcd6;
    border-radius: 0.8vw;
    overflow: hidden;
}

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

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

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

@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}


