@charset "utf-8";

:root {
  --heading-font: "Noto Serif JP", serif;
  --default-font: "Noto Sans JP", sans-serif;

  --font-color: #352F2C;
  --blue-color: #CDF1FF;
  --pink-color: #FEC8EA;
  --yellow-color: #FFFE8D;
  --accent-color: #3FE7B0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 62.5%;
  width: 100%;
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--font-color);
}

.wrapper {
  width: 100%;
  height: auto;
  background-image: url("../img/bg.jpg");
  background-repeat: repeat-y;
  background-size: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: var(--font-color);
  letter-spacing: 0.1em;
}

img {
  display: block;
}

a {
  transition: ease-in-out 0.3s;
  color: var(--font-color);
}

.sp-br {
  display: none;
}

/* =======================================
MV メインビジュアル
========================================== */
.mv {
  width: 100%;
  height: auto;
  /* height: fit-content; */
  overflow: hidden;
}

.mv-inner {
  position: relative;
  width: 100%;
  height: fit-content;
}

.title-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.title-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.title-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 40%;
}

.mv-bg {
  width: 100%;
  height: 110vh;
  background-image: url("../img/mv-deco.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.title-pic img {
  width: 100%;
  height: auto;
}

/* フェードイン */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(150px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =======================================
キャッチコピー
========================================== */
.catchcopy {
  margin: 8rem;
}

.catchcopy p {
  text-align: center;
  line-height: 2;
  font-weight: 500;
}

/* =======================================
タブメニュー
========================================== */
.tab-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: 0;
}

.tab-menu>div {
  position: relative;
  padding-top: 7rem;
  z-index: 2;
  height: 70%;
}

.memory {
  background-color: var(--blue-color);
}

.comfortable {
  background-color: var(--pink-color);
}

.healing {
  background-color: var(--yellow-color);
}

.tab-menu a {
  position: relative;
  z-index: 5;
  display: block;
  width: 80%;
  margin: 0 auto;
}

.tab-menu .img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.tab-menu .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.tab-menu .img img:hover {
  transform: scale(1.05);
}

.tab-menu a h3 {
  position: absolute;
  top: -4.5rem;
  left: -10px;
  z-index: 5;
  padding-top: 1rem;
  font-size: 3.6rem;
  text-shadow:
    1px 1px 3px rgba(255, 255, 255, 0.5),
    -1px -1px 2px rgba(255, 255, 255, 0.5),
    1px -1px 2px rgba(255, 255, 255, 0.5),
    -1px 1px 2px rgba(255, 255, 255, 0.5),
    1px 1px 2px rgba(255, 255, 255, 0.5);
}
/* =======================================
思い出
========================================== */
#memory {
  background-color: #daf9ff;
  scroll-margin-top: 150px;
}

/* =======================================
快適さ
========================================== */
#comfortable {
  background-color: #ffd6ef;
  scroll-margin-top: 150px;
}

/* =======================================
癒し
========================================== */
#healing {
  background-color: #FFFEB8;
  scroll-margin-top: 150px;
}
/* =======================================
コンテンツ共通
========================================== */
.content {
  position: relative;
  padding: 15rem 0;
  margin-top: 20rem;
}
.content h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1360px;
  font-size: 5rem;
  margin: 0 auto;
}

.inner {
  width: 80%;
  max-width: 1360px;
  margin: 0 auto;
}

.hotel:not(:last-child) {
  margin-bottom: 10rem;
}

.hotel-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.hotel:nth-child(even) .hotel-inner {
  flex-direction: row-reverse;
}

.hotel-inner>div {
  width: 50%;
}

.hotel-img .img {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.hotel:nth-child(odd) .hotel-img {
  padding-right: 50px;
}

.hotel:nth-child(even) .hotel-img {
  padding-left: 50px;
}

.hotel-img .img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hotel-txt {
  display: flex;
  flex-flow: column;
  justify-content: start;
  gap: 50px;
}

.hotel-txt h3 {
  font-size: 2.4rem;
  font-family: var(--default-font);
  font-weight: 500;
  padding-left: 10px;
  line-height: 1;
  border-left: 5px solid var(--accent-color);
  margin-bottom: 20px;
}

.logo {
  width: 200px;
}

.logo img {
  width: 100%;
  height: auto;
}

.point {
  display: flex;
  justify-content: start;
  gap: 10%;
  align-items: start;
}

.point div {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.point .img {
  height: 100px;
}

.point .img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.point p {
  font-size: 1.8rem;
  font-weight: 500;
}

.btn-wrap {
  margin-top: 30px;
  display: flex;
  flex-flow: column;
  gap: 15px;
}
.btn-wrap p {
  width: fit-content;
  font-size: 1.8rem;
  text-align: center;
  color: #03cf8b;
  border-bottom: 1px solid #03cf8b;
  margin: 0 auto;
}

.btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--accent-color);
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  margin: 0 auto;
}

.btn span {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.8rem;
}

.arrow_r {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.arrow_r::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px var(--accent-color);
  border-right: solid 3px var(--accent-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto;
}

.soraniwa .logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.soraniwa .logo img {
  width: 45%;
}
.hotel small {
  display: block;
  font-size: 1.4rem;
  text-align: center;
  color: #03cf8b;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.7;
  }
}



/* =======================================
注意事項
========================================== */
.other {
  width: 80%;
  max-width: 900px;
  background-color: #fff;
  margin: 10rem auto;
  /* padding: 10rem 0; */
}
.sp-br {
  display: none;
}

.other a {
  position: relative;
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
  cursor: pointer;
}

.hiyoriclub {
  display: flex;
  align-items: center;
  padding: 5rem 0 5rem 4.8rem;
}

.hiyori-logo {
  width: 160px;
  margin-right: 5.6rem;
}

.hiyori-logo img {
  width: 100%;
  height: auto;
}

.new-open {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
}

.hiyori-name {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #072A52;
}

.hiyoriclub h3 {
  margin-top: 0.4rem;
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 400s;
  font-family: var(--default-font);
  color: #072A52;
}
.hiyori-txt {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 1.6px;
  color: #072A52;
}
@media (hover: hover) and (pointer: fine) {
  .other a:hover {
    opacity: 0.7;
  }
}

/* =======================================
ページトップボタン
========================================== */
.page-top {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

}

.page-top.show {
  opacity: 1;
  visibility: visible;
}


.page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: linear-gradient(0deg, rgba(149, 233, 243, 1), rgba(244, 168, 255, 0.69) 58%, rgba(238, 168, 255, 1));
}

.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 3em;
  height: 3em;
  border: 0.5em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

/* =======================================
フッター
========================================== */
footer {
  background-color: var(--blue-color);
  padding: 30px 0;
}

footer small {
  display: block;
  text-align: center;
  font-size: 1.6rem;
}