body {
  font-family: "EB Garamond", "Hina Mincho", serif;
}

a {
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

section {
  padding: 70px 0 0;
  color: white;
}
@media screen and (min-width:600px) {
  section {
    padding: 120px 0;
  }
}
@media screen and (min-width:1025px) {
  section {
    padding: 70px 0;
  }
}

.content-width, .header__inner, .reserve__inner, .concept__inner, .rooms__inner, .restaurant__inner, .news__inner, .access__inner, .footer__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1090px;
}
@media screen and (min-width:1025px) {
  .content-width, .header__inner, .reserve__inner, .concept__inner, .rooms__inner, .restaurant__inner, .news__inner, .access__inner, .footer__inner {
    max-width: 1240px;
  }
}

.flex, .concept__inner, .rooms__cards, .restaurant__inner, .news__list, .access__inner, .footer__nav-content, .footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width:1025px) {
  .flex, .concept__inner, .rooms__cards, .restaurant__inner, .news__list, .access__inner, .footer__nav-content, .footer__nav {
    flex-direction: row;
  }
}

.pb-sm, .concept__copy, .restaurant__texts, .news__date, .access__texts, .copy {
  padding-bottom: 20px;
}
@media screen and (min-width:600px) {
  .pb-sm, .concept__copy, .restaurant__texts, .news__date, .access__texts, .copy {
    padding-bottom: 30px;
  }
}

.mb-sm, .concept__copy, .concept__description, .description, .copy, .main-title {
  margin-bottom: 20px;
}
@media screen and (min-width:600px) {
  .mb-sm, .concept__copy, .concept__description, .description, .copy, .main-title {
    margin-bottom: 30px;
  }
}

.main-title {
  font-size: 70px;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width:600px) {
  .main-title {
    font-size: 90px;
  }
}
@media screen and (min-width:1025px) {
  .main-title {
    font-size: 120px;
  }
}

.sub-title {
  font-size: 14px;
}
@media screen and (min-width:600px) {
  .sub-title {
    font-size: 16px;
  }
}
@media screen and (min-width:1025px) {
  .sub-title {
    font-size: 16px;
  }
}

.copy {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.15em;
}
@media screen and (min-width:600px) {
  .copy {
    font-size: 22px;
  }
}
@media screen and (min-width:1025px) {
  .copy {
    font-size: 22px;
  }
}

.description {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.view-arrow {
  width: 100%;
  text-align: left;
  margin: 30px 0 40px;
  display: flex;
  justify-content: flex-end;
}
.view-arrow > a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  height: auto;
  position: relative;
  padding-right: 30px;
}
.view-arrow > a:hover::after {
  transform: translateX(5px);
}
@media screen and (min-width:1025px) {
  .view-arrow > a {
    font-size: 20px;
  }
}
.view-arrow > a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0px;
  transition: all 1s;
}
@media screen and (min-width:1025px) {
  .view-arrow > a::after {
    top: 5px;
  }
}

.up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}
.up.inview {
  opacity: 1;
  transform: translateY(0);
}

.text-animation {
  opacity: 1;
}
.text-animation.inview {
  opacity: 1;
}
.text-animation.inview .char {
  display: inline-block;
}
.text-animation .char {
  opacity: 0;
  display: inline-block;
}

.header {
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  background-color: transparent;
  color: white;
  align-items: center;
  display: flex;
  z-index: 80;
  transition: background-color 0.5s;
}
.header.inview {
  background-color: transparent !important;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width:1025px) {
  .header__inner {
    max-width: 100%;
  }
}
.header__ul {
  display: none;
  width: 30%;
}
@media screen and (min-width:1025px) {
  .header__ul {
    display: flex;
  }
}
.header__li {
  margin-right: 25px;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-size: 18px;
}

.logo {
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo span {
  font-size: 1.3em;
  font-weight: 800;
}

.mobile-menu {
  width: 100vw;
  height: 100vh;
  background-color: #cbcdd1;
  color: #2D3C4D;
  padding: 20px;
  position: fixed;
  inset: 0;
  z-index: 100;
  transform: translateX(100vw);
  opacity: 0;
  transition: all 1s ease-in-out;
}
.mobile-menu__inner {
  padding: 0 30px;
}
@media screen and (min-width:600px) {
  .mobile-menu__inner {
    padding: 60px;
  }
}
.mobile-menu__ul {
  margin-top: 100px;
}
.mobile-menu__li {
  font-size: 23px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s;
}
.mobile-menu__rsv {
  margin-top: 30px;
  width: 100%;
  height: auto;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  background-color: #5e503f;
  color: #cbcdd1;
}
@media screen and (min-width:600px) {
  .mobile-menu__rsv {
    width: 40%;
  }
}
.mobile-menu__btn {
  width: 60px;
  height: 60px;
  z-index: 101;
  position: relative;
}
@media screen and (min-width:1025px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  display: block;
  background-color: white;
  width: 60%;
  height: 1px;
  margin: auto;
  margin-bottom: 0;
  transition: all 1s;
  position: absolute;
  top: 45%;
  right: 0;
}
.mobile-menu__btn > span:last-of-type {
  margin-top: 10px;
}
.mobile-menu__btn.inview > span {
  background-color: #2D3C4D;
  margin: 0;
  width: 60%;
}
.mobile-menu__btn.inview > span:first-child {
  transform: rotate(45deg);
  transform-origin: center;
}
.mobile-menu__btn.inview > span:last-child {
  transform: rotate(-45deg);
  transform-origin: center;
}
.mobile-menu.inview {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.inview .mobile-menu__li {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.inview .mobile-menu__li:nth-child(1) {
  transition-delay: 0.3s;
}
.mobile-menu.inview .mobile-menu__li:nth-child(2) {
  transition-delay: 0.6s;
}
.mobile-menu.inview .mobile-menu__li:nth-child(3) {
  transition-delay: 0.9s;
}
.mobile-menu.inview .mobile-menu__li:nth-child(4) {
  transition-delay: 1.2s;
}

.hero {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: -1;
}
.hero__cover {
  height: 100%;
  animation: heroZoom;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
.hero__cover .swiper-slide {
  height: 100%;
  width: 100%;
}
.hero__cover .swiper-slide:nth-of-type(1) {
  background: url(../img/hero-sp.png) no-repeat center/cover;
}
.hero__cover .swiper-slide:nth-of-type(2) {
  background: url(../img/hero-sp2.png) no-repeat center/cover;
}
.hero__cover .swiper-slide:nth-of-type(3) {
  background: url(../img/hero-sp.png) no-repeat center/cover;
}
.hero__cover .swiper-slide:nth-of-type(4) {
  background: url(../img/hero-sp2.png) no-repeat center/cover;
}
@media screen and (min-width:1025px) {
  .hero__cover .swiper-slide:nth-of-type(1) {
    background: url(../img/hero.jpg) no-repeat center/cover;
  }
  .hero__cover .swiper-slide:nth-of-type(2) {
    background: url(../img/hero2.png) no-repeat center/cover;
  }
  .hero__cover .swiper-slide:nth-of-type(3) {
    background: url(../img/hero.jpg) no-repeat center/cover;
  }
  .hero__cover .swiper-slide:nth-of-type(4) {
    background: url(../img/hero2.png) no-repeat center/cover;
  }
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero__main-copy {
  font-size: 18px;
  width: 80%;
  text-align: center;
  color: white;
  letter-spacing: 0.15em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width:1025px) {
  .hero__main-copy {
    text-align: left;
    font-size: 20px;
  }
}
.hero .scroll {
  color: white;
  font-size: 15px;
  display: block;
  position: absolute;
  bottom: 80px;
  right: 50%;
  transform: translateX(50%);
  letter-spacing: 0.1em;
  z-index: 2;
}
.hero .scroll::after {
  content: "";
  background-color: white;
  display: block;
  transform-origin: center;
  width: 60px;
  height: 0.5px;
  position: absolute;
  transform: rotate(90deg);
  top: 40px;
  left: 50%;
  animation-name: scrollLine;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-direction: nomal;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0) rotate(90deg);
    transform-origin: left;
  }
  50% {
    transform: scaleY(1) rotate(90deg);
    transform-origin: left;
  }
  100% {
    transform: scaleY(1) translateY(100px) rotate(90deg);
    transform-origin: left;
  }
}
.hero > .mobile-menu__rsv {
  display: none;
}
.hero > .mobile-menu__rsv::before {
  content: "";
  background: url(../img/calender.png) no-repeat center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 32%;
  right: 20%;
}
@media screen and (min-width:1025px) {
  .hero > .mobile-menu__rsv {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    z-index: 1;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s 1.5s, opacity 0.5s 1.5s, background-color 0.5s, border-radius 0.5s;
  }
  .hero > .mobile-menu__rsv:hover {
    background-color: #352d0c;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
  .hero > .mobile-menu__rsv.inview {
    transform: translateY(0);
    opacity: 1;
  }
}

#main-content {
  background-color: #071E2B;
  padding: 50px 0 0;
}

.reserve {
  color: white;
  height: auto;
}
@media screen and (min-width:600px) {
  .reserve {
    height: 250px;
  }
}
@media screen and (min-width:1025px) {
  .reserve {
    height: 120px;
    background-color: #5e503f;
  }
}
.reserve__inner {
  background-color: #5e503f;
  padding: 20px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width:1025px) {
  .reserve__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.reserve__date {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.reserve__date-box {
  width: 100%;
}
@media screen and (min-width:1025px) {
  .reserve__date {
    width: 40%;
  }
}
.reserve select {
  width: 80%;
  -moz-text-align-last: center;
       text-align-last: center;
}
.reserve__select-icon {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
}
.reserve__select-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: white transparent transparent;
  border-style: solid;
  border-width: 5px 3px 0;
}
.reserve input[type=date] {
  position: relative;
  -moz-text-align-last: left;
       text-align-last: left;
}
.reserve input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
.reserve input[type=date]::after {
  content: "";
  background-image: url(../img/calender.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 40%;
  right: 10px;
  transform: translateY(-50%);
}
.reserve__num {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
@media screen and (min-width:1025px) {
  .reserve__num {
    width: 30%;
  }
}
.reserve__num > .reserve__item {
  width: 80%;
}
.reserve__num-box {
  width: 30%;
  text-align: center;
}
.reserve__item {
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #CBCBCB;
  font-size: 20px;
  position: relative;
  width: 97%;
}
@media screen and (min-width:1025px) {
  .reserve__item {
    width: 93%;
  }
}
.reserve__item-label {
  font-size: 14px;
  padding-bottom: 5px;
}
.reserve__btn {
  width: 100%;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  display: block;
  margin: 10px auto;
  height: 40px;
  color: #071E2B;
  background-color: #b59e8c;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width:1025px) {
  .reserve__btn {
    max-width: 300px;
    margin: 0;
  }
}

@media screen and (min-width:1025px) {
  .concept__inner {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width:1025px) {
  .concept__texts {
    padding-left: 30px;
    width: 38%;
  }
}
.concept__copy {
  letter-spacing: 0.15em;
}
.concept__description {
  letter-spacing: 0.1em;
  line-height: 2;
}
.concept__imgs {
  position: relative;
  width: 80%;
}
.concept__imgs > img:last-of-type {
  position: absolute;
  width: 50%;
  top: 60%;
  right: -15%;
}
@media screen and (min-width:1025px) {
  .concept__imgs {
    flex-basis: 50%;
  }
}
@media screen and (min-width:1025px) {
  .concept button {
    margin-top: 100px;
  }
}

.rooms__card-item {
  width: 100%;
  height: 30vh;
  text-align: center;
  position: relative;
  margin-bottom: 3px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
@media screen and (min-width:1025px) {
  .rooms__card-item {
    height: 500px;
  }
  .rooms__card-item:nth-of-type(1) {
    transition: all 0.5s 0.2s;
  }
  .rooms__card-item:nth-of-type(2) {
    transition: all 0.5s 0.4s;
  }
  .rooms__card-item:nth-of-type(3) {
    transition: all 0.5s 0.6s;
  }
  .rooms__card-item:nth-of-type(4) {
    transition: all 0.5s 0.8s;
  }
  .rooms__card-item:nth-of-type(5) {
    transition: all 0.5s 1s;
  }
}
.rooms__card-item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
  transition: all 0.6s;
}
.rooms__card-item:hover::before {
  background: transparent;
}
.rooms__card-item > p {
  font-size: 20px;
  letter-spacing: 0.05em;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rooms__card-item:nth-of-type(1) {
  background-image: url(../img/room-1.jpg);
}
.rooms__card-item:nth-of-type(3) {
  background-image: url(../img/room-2.jpg);
}
.rooms__card-item:nth-of-type(5) {
  background-image: url(../img/room-3.jpg);
}
.rooms__pop-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 50;
  padding: 15%;
  display: none;
  transition: all 0.5s;
  animation: show 0.8s ease-in-out;
}
.rooms__pop-wrap-inner {
  background-color: #cbcdd1;
  padding: 40px;
  width: auto;
  text-align: center;
  color: #2D3C4D;
  position: relative;
  top: 20%;
}
.rooms__pop-wrap-inner .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}
.rooms__pop-wrap-inner p {
  padding-bottom: 15px;
  line-height: 1.5;
  color: #2D3C4D;
}
.rooms__pop-wrap-inner p.rooms__name {
  font-size: 1.2em;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width:1025px) {
  .restaurant__texts {
    padding-right: 40px;
  }
}
.view-btn {
  position: relative;
  text-align: right;
  width: 100%;
}
.view-btn > a {
  position: relative;
}
.view-btn > a:hover::before {
  transform: translateX(10px);
  transition: all 0.5s;
}
.view-btn > a::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 10px;
  left: -45px;
}

.news {
  padding-bottom: 0;
}
.news .main-title {
  text-align: center;
}
.news .sub-title {
  text-align: center;
}
.news__inner {
  max-width: 1024px;
}
@media screen and (min-width:600px) {
  .news__list {
    flex-direction: column;
  }
}
@media screen and (min-width:1025px) {
  .news__list {
    flex-direction: row;
  }
}
.news__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width:600px) {
  .news__item {
    justify-content: flex-start;
  }
}
@media screen and (min-width:1025px) {
  .news__item {
    flex-direction: column;
    text-align: left;
    align-items: baseline;
    justify-content: space-between;
    padding-right: 30px;
  }
}
.news__texts {
  padding-left: 15px;
}
@media screen and (min-width:1025px) {
  .news__texts {
    padding-left: 0;
    padding-top: 15px;
  }
}
.news__date {
  font-size: 11px;
}
@media screen and (min-width:600px) {
  .news__date {
    font-size: 14px;
  }
}
@media screen and (min-width:1025px) {
  .news__date {
    font-size: 15px;
    padding-bottom: 15px;
  }
}
.news__a-title {
  font-size: 13px;
}
@media screen and (min-width:600px) {
  .news__a-title {
    font-size: 15px;
  }
}
.news__sumbnail {
  width: 100px;
  height: 100px;
}
@media screen and (min-width:600px) {
  .news__sumbnail {
    width: 180px;
    height: 180px;
  }
}
@media screen and (min-width:1025px) {
  .news__sumbnail {
    width: 100%;
    height: 100%;
    padding-right: 0px;
    margin-right: 0;
  }
}
.news__sumbnail > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.image {
  padding: 0;
}
.image__area {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  text-align: center;
}
.image__area .image__img {
  background-color: #cbcdd1;
  width: 60%;
  height: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image__area .image__img > img {
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.image__loop-text {
  overflow: hidden;
  display: flex;
  font-size: 80px;
  position: absolute;
  top: 41%;
  width: 100vw;
}
.image__loop-text p {
  flex-shrink: 0;
  white-space: nowrap;
}
.image__loop-text p:first-child {
  animation: MoveLeft 30s -15s infinite linear;
}
.image__loop-text p:last-child {
  animation: MoveLeft2 30s infinite linear;
}
@media screen and (min-width:600px) {
  .image__loop-text {
    font-size: 120px;
  }
}
@media screen and (min-width:1441px) {
  .image__loop-text {
    font-size: 150px;
  }
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.access {
  background-color: #cbcdd1;
  color: #2D3C4D;
  padding-bottom: 50px;
}
.access__title {
  color: #2D3C4D;
}
@media screen and (min-width:1025px) {
  .access__title {
    position: relative;
  }
  .access__title::after {
    content: "";
    width: 40vw;
    height: 1px;
    background-color: #2D3C4D;
    display: block;
    position: absolute;
    top: 60%;
    left: 110%;
  }
  .access__title.inview::after {
    animation: lineAnimation 1s linear;
  }
}
.access__address {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.access__inner {
  align-items: flex-start;
}
@media screen and (min-width:1025px) {
  .access {
    align-items: center;
  }
}
.access__texts {
  margin-bottom: 20px;
}
.access__img {
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width:600px) {
  .access__img {
    width: 40%;
  }
}
@media screen and (min-width:1025px) {
  .access__img {
    width: 25%;
    text-align: right;
    margin: unset;
  }
}

@keyframes lineAnimation {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.g-map {
  width: 100%;
  height: auto;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #2D3C4D;
  transition: all 0.5s;
}
.g-map:hover {
  background-color: #2D3C4D;
  color: white;
}

.footer {
  background-color: #071E2B;
  color: white;
}
@media screen and (min-width:1025px) {
  .footer .logo {
    font-size: 25px;
  }
}
.footer__inner {
  padding: 30px 0;
}
.footer__nav {
  padding-top: 30px;
}
.footer__nav-item {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width:1025px) {
  .footer__nav-item {
    padding-right: 20px;
  }
}
.footer__address {
  padding-top: 30px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.footer__sns-icon {
  width: 100px;
  height: 50px;
  padding: 15px;
  display: flex;
  flex-direction: row;
}
.footer__sns-icon > a {
  display: block;
  width: 100%;
  padding-left: 15px;
}
.footer__sns-icon > img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copyright {
  font-size: 14px;
  padding-top: 15px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */