@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Winky+Rough:wght@300..900&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
:root {
  --green: #0c9351;
  --mizuiro: #40c5d3;
  --kimidori: #6bc949;
  --yellow: #fff000;
  --red: #e60012;
  --beige: #f0eee9;
  --blue: #1d9bcf;
  --kon: #226ea5;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html,
body {
  overflow-x: clip;
} /* または hidden でもOK */
p {
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

a.alink {
  text-decoration: underline;
  color: var(--green);
}

section {
  padding: 4rem 0;
}

.narrow {
  width: min(600px, 80vw);
  margin: auto;
}

p.wide {
  line-height: 2;
  font-weight: 600;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2.5rem;
}
h2 img.h2mark {
  margin: auto;
  width: 105px;
  display: block;
  margin-bottom: 1rem;
}
h2 img.dot {
  width: 300px;
}
h2 span {
  font-family: "Winky Rough", sans-serif;
  font-size: 1.6rem;
  display: block;
  letter-spacing: 0.1rem;
}

h3 {
  font-family: "ads-shiokaze", sans-serif;
  color: #e60012;
  font-size: 2.5rem;
  letter-spacing: -0.2rem;
}

h4 {
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
h4 span {
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}

.red {
  color: var(--red);
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-md-6 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .mb-md-6 {
    margin-bottom: 3rem;
  }
}

.hamburger-outer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 84px; /* タップ領域 */
  height: 84px;
  background: #006934;
  border-radius: 0 0 0 20px;
  display: grid;
  place-items: center; /* 中央寄せ */
  cursor: pointer;
  overflow: hidden; /* 角の欠け対策 */
}
@media (max-width: 768px) {
  .hamburger-outer {
    width: 60px; /* タップ領域 */
    height: 60px;
  }
}

.hamburger {
  position: relative; /* ← これが重要（線の基準） */
  width: 32px;
  height: 24px;
}
@media (max-width: 768px) {
  .hamburger {
    width: 25px;
  }
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 300ms ease;
  transform: rotate(0deg);
}

/* 線の位置（通常） */
.hamburger__line:nth-child(1) {
  top: 0px;
}

.hamburger__line:nth-child(2) {
  top: 9px;
}

.hamburger__line:nth-child(3) {
  top: 18px;
}

/* ×変形（2本） */
/* ×変形（3本） */
.hamburger.open .hamburger__line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* メニュー本体 */
.menu {
  flex-direction: column;
  display: flex;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 300ms ease;
  width: min(400px, 70vw);
  background-color: #006934;
  text-align: center;
  color: white;
  padding: 40px 40px 20px 40px;
  gap: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
  border-radius: 0 0 0 30px;
}

.menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: inherit;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  justify-content: center;
  letter-spacing: 0.1rem;
}

.menu__item:last-child {
  border-bottom: none;
}

/* 初期状態 */
#menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.3s;
  visibility: hidden; /* ← ここを使うなら… */
}

/* 開いた状態 */
#menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible; /* ← これを必ず入れる */
}

.icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* アニメーション */
/* 上から下 */
.slide-top-enter-active,
.slide-top-leave-active {
  transition: all 300ms ease;
}

.slide-top-enter-from,
.slide-top-leave-to {
  opacity: 0;
  transform: translateY(-20px);
}

.slide-top-enter-to,
.slide-top-leave-from {
  opacity: 1;
  transform: translateY(0);
}

#footer {
  background-image: url(img/bg-green.jpg);
  background-size: cover;
  position: relative;
  z-index: 0;
  padding-bottom: 1rem;
}
#footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px; /* 上へ食い込ませる */
  width: 100vw; /* 横幅を広くして端切れを防止 */
  height: 200px; /* 丸みの深さを調整 */
  background-image: url(img/bg-green.jpg);
  background-size: cover;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  z-index: -1;
  text-align: center;
}
@media (max-width: 768px) {
  #footer::before {
    top: -60px;
    height: 120px;
  }
}

#fi1 {
  position: absolute;
  left: 0;
  top: -100px;
}
@media (max-width: 768px) {
  #fi1 {
    left: -30px;
  }
  #fi1 img {
    width: 130px;
  }
}

#fi2 {
  position: absolute;
  right: 0;
  top: -150px;
}
@media (max-width: 768px) {
  #fi2 {
    right: -30px;
  }
  #fi2 img {
    width: 130px;
  }
}

.copyright {
  margin-top: 3rem;
  font-size: 14px;
  color: #3a3a3a;
  font-family: "Winky Rough", sans-serif;
}

:root {
  --cover: 100vh; /* かぶせる量 */
  --content-offset: 10vh; /* 中身の開始位置 */
}
@media (max-width: 768px) {
  :root {
    --cover: 80vh;
    --content-offset: 6vh;
  }
}

.hero-wrap {
  /* “画面1枚”に、#about がかぶさる分だけ余白を足す */
  height: calc(100vh + var(--cover));
  position: relative;
  /* parent に overflow や transform があると sticky が効かなくなるので付けない */
}

#hero {
  position: sticky;
  top: 0;
  height: 100vh; /* 1画面分 */
  z-index: 1; /* 背面に回す（#nayamiより低く） */
}

#about {
  background-color: #fff;
  position: relative;
  z-index: 2; /* #hero より前面 */
  height: 100vh; /*← ここで1画面に固定 */
  /* 1画面分かぶせる */
  margin-top: calc(var(--cover) * -1);
  /* 中身の開始位置は別で調整 */
  padding-top: var(--content-offset);
  /* お好みの装飾（角丸など） */
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  /* 影を少し入れると“かぶさり感”UP */
}
@media (max-width: 768px) {
  #about {
    height: 120vh; /* モバイルも画面いっぱい */
  }
}

/* 左側のツブツブ */
#about::before {
  content: "";
  position: absolute;
  background-image: url("img/tsubu1.svg");
  background-size: 250px;
  width: 250px;
  height: 350px;
  top: 40%;
  left: 3%;
  background-repeat: no-repeat;
  animation: tsubu-rotate 5s infinite steps(1);
  z-index: -10;
}

/* 右側のツブツブ */
#about::after {
  content: "";
  position: absolute;
  background-image: url("img/tsubu2.svg");
  background-size: 300px;
  width: 300px;
  height: 350px;
  top: 10%;
  right: 3%;
  background-repeat: no-repeat;
  animation: tsubu-rotate 5s infinite steps(1);
  z-index: -10;
}

#nagakute {
  position: relative;
  margin-bottom: 150px;
}

/* 左側のツブツブ */
#nagakute::before {
  content: "";
  position: absolute;
  background-image: url("img/tsubu1.svg");
  background-size: 250px;
  width: 250px;
  height: 350px;
  top: 70%;
  left: 3%;
  background-repeat: no-repeat;
  animation: tsubu-rotate 5s infinite steps(1);
  z-index: -10;
}
@media (max-width: 768px) {
  #nagakute::before {
    width: 150px;
  }
}

/* 右側のツブツブ */
#nagakute::after {
  content: "";
  position: absolute;
  background-image: url("img/tsubu2.svg");
  background-size: 300px;
  width: 300px;
  height: 350px;
  top: 10%;
  right: 3%;
  background-repeat: no-repeat;
  animation: tsubu-rotate 5s infinite steps(1);
  z-index: -10;
}
@media (max-width: 768px) {
  #nagakute::after {
    width: 150px;
  }
}

@keyframes tsubu-rotate {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
.mikata-hero {
  background-image: url(img/top-back.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

#top-logo {
  position: absolute;
  width: min(300px, 50vw);
  top: 0;
}

#top-catch {
  position: absolute;
  top: 22%;
  left: 12%;
  width: 35%;
  z-index: 11;
}
@media (max-width: 768px) {
  #top-catch {
    width: 80%;
  }
}

.hero-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 500px;
  background-image: url("img/bun-back.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* 指定サイズにフィットさせる */
  background-position: right bottom; /* 右下に固定 */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px; /* テキスト余白 */
}
@media (max-width: 768px) {
  .hero-right {
    width: 170px;
    height: 360px;
    bottom: 18%;
    right: 0;
    padding: 12px;
    background-size: 100% 100%;
    background-position: right bottom;
  }
}
.hero-right .hero-deco {
  position: absolute;
  top: 0;
  left: -100px;
  width: 180px;
  z-index: 4;
}
@media (max-width: 768px) {
  .hero-right .hero-deco {
    left: -70px;
    width: 140px;
  }
}
.hero-right .hero-right-text {
  color: #fff;
  text-align: center;
  writing-mode: vertical-rl; /* 縦書き */
  text-orientation: upright;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-right .hero-right-text {
    font-size: 0.8rem;
    margin-right: -10px;
  }
}
.hero-right .hero-right-text p {
  line-height: 2.3;
}
@media (max-width: 768px) {
  .hero-right .hero-right-text p {
    line-height: 1.8;
  }
}

#top-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15%;
}
@media (max-width: 768px) {
  #top-btn {
    bottom: 5%;
  }
}

#point {
  background-image: url(img/bg-beige.jpg);
  margin-top: 5rem;
}

#gallery,
#system,
#access,
#price {
  background-image: url(img/bg-beige.jpg);
}

#sale {
  background-image: url(img/bg-green.jpg);
  background-size: cover;
}

ul.gaiyou-list {
  list-style: none;
  line-height: 1.8;
  padding: 0;
}
ul.gaiyou-list li {
  padding: 1rem;
  border-bottom: 1px solid rgba(182, 182, 182, 0.774);
}
ul.gaiyou-list li span {
  font-weight: 700;
  letter-spacing: 0.2rem;
  padding-right: 1rem;
}

.btn-sb {
  width: min(300px, 70vw);
  display: flex; /* ← inline-block から変更 */
  align-items: center; /* ← 垂直中央 */
  justify-content: center; /* ← 水平中央 */
  background-color: #fff;
  color: var(--red);
  border: solid 3px var(--red);
  text-align: center;
  font-weight: 700;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 0 #a1020f; /* 下に影 */
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
}
.btn-sb img {
  width: 25px;
  padding-left: 8px;
}

.btn-sb span {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
}

.btn-sb:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b5370c;
}

.btn-sb:active {
  transform: translateY(4px);
  box-shadow: none;
}

/* 小さい文字がある方（電話で予約する）をやや高さ調整 */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 20vw;
  padding-right: 1rem;
}
.scroll-infinity__item:nth-child(odd) {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  border-radius: 10px;
}

.point-area {
  margin-bottom: 3rem;
}
.point-area h3 {
  font-family: "ads-shiokaze", sans-serif;
  color: #e60012;
  font-size: 3rem;
  letter-spacing: -0.3rem;
}
@media (max-width: 768px) {
  .point-area h3 {
    font-size: 2.5rem;
  }
}
.point-area p {
  font-weight: 600;
  font-size: 17px;
  line-height: 2;
}
@media (max-width: 768px) {
  .point-area p {
    font-size: 15px;
  }
}

#il-ichigo {
  animation: tsubu-rotate 5s infinite steps(1);
}

#il-taberu {
  position: absolute;
  left: 45%;
  animation: tsubu-rotate 5s infinite steps(1);
}

.photo-gallery {
  max-width: 800px; /* お好みで */
  margin: 0 auto;
}

/* メイン画像 */
.slider-for img {
  width: 100%;
  height: 500px; /* お好みの高さ */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* サムネイル */
.slider-nav {
  margin-top: 20px;
}

.slider-nav .slick-slide {
  margin: 0 5px;
}

.slider-nav img {
  width: 100%;
  height: 100px; /* サムネ高さ */
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
}

.slider-nav .slick-current img {
  opacity: 1;
}

/* 矢印をサンプルのようなシンプルな「< >」に */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px;
  color: #000;
}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}

@media (max-width: 768px) {
  .slider-for img {
    height: 260px;
  }
  .slider-nav img {
    height: 70px;
  }
}
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 左右位置（お好みで調整） */
.slick-prev-custom {
  left: -50px;
}

.slick-next-custom {
  right: -50px;
}

/* SVGの大きさ */
.slick-prev-custom img,
.slick-next-custom img {
  width: 24px; /* 矢印のサイズ */
  height: auto;
}

/* hover で少し濃くするなど */
.slick-prev-custom:hover img,
.slick-next-custom:hover img {
  opacity: 0.8;
}

.marker-red {
  background-color: yellow;
  color: var(--red);
  padding: 0 2px;
}

.price-sale {
  font-size: 1.3rem;
  font-weight: 700;
}
.price-sale span {
  font-size: 2rem;
  color: var(--red);
  padding: 0 10px;
}

.hs-box {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  padding-top: 50px;
  margin-bottom: 1.5rem;
}
.hs-box .hs-no {
  position: absolute;
  margin-top: -65px;
  left: 50%;
  transform: translateX(-50%);
}

.nd-logo {
  max-width: 380px;
  margin: auto;
  margin-bottom: 4rem;
}

.price-box {
  width: min(800px, 90vw);
  margin: auto;
  background-color: white;
  border-radius: 20px;
  padding: 1.5rem 3rem;
}
@media (max-width: 768px) {
  .price-box {
    padding: 1.5rem;
  }
}

.price-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  border-bottom: dotted 2px rgb(160, 160, 160);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
}
@media (max-width: 768px) {
  .price-list {
    flex-direction: column;
  }
}
.price-list span {
  font-size: 1rem;
}
.price-list .title {
  padding-left: 1rem;
}
.price-list .title span {
  padding-left: 1rem;
}
.price-list .price {
  padding-right: 1rem;
  font-family: "ads-shiokaze", sans-serif;
  font-size: 2rem;
  color: var(--red);
  font-weight: 500;
}
.price-list .price span {
  font-size: 1.5rem;
  color: #000;
}

.vid_main {
  width: 100%;
  max-width: 620px; /*PC版での最大幅*/
}

#zansuu-box {
  border: 4px solid yellow;
  padding: 1rem;
  border-radius: 20px;
  margin-bottom: 4rem;
}
#zansuu-box p {
  text-align: left;
}
#zansuu-box p span {
  background: linear-gradient(transparent 70%, yellow 70%);
}/*# sourceMappingURL=mikata.css.map */