@charset "utf-8";

#vdbanner {
  width: 0;
}

/* リセットCSS */
* {
  scrollbar-color: transparent transparent;
  /* thumb and track color */
  scrollbar-width: 0px;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: black;
  line-height: 1.5;
  background-color: white;
  height: 100%;
  overflow: auto;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* リセットCSSここまで */

/* 全体の設定 */
.layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* 左のコンテンツ */
.left-panel {
  width: 40%;
  background-color: #889d73;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  margin: 0 auto;
}

.left-panel img {
  width: 50%;
  margin: auto;
}

/* 左のコンテンツここまで */


/* 右のコンテンツ */
/* ナビ */
.right-panel {
  width: 30%;
  background-color: #889d73;
  background-image: url(../img/bgi_hana_right.png);
  background-repeat: repeat;
  background-size: contain;
  padding: 0;
  /* ← 上余白の原因になりうる */
  color: #75604E;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  /* 横中央 */
  align-items: center;
  /* 縦中央 */
}

.pc_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  /* リンクの間隔調整（お好みで） */
  background-color: white;
  height: 100vh;
  width: 50%;
  padding-top: 30px;
  min-width: 150px;
}

.name{
  font-size: 14px;
}

.pc_nav ul li {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 10px auto;
}

.pc_nav a {
  margin: 0;
  /* ← これが超重要。aタグの初期マージンを削除 */
  /* padding: 0.5em; */
  /* お好みで */
  color: #75604E;
  font-weight: bold;
  text-decoration: none;
}

/* SNSエリア */
.sns {
  border: #75604E solid 1px;
  border-radius: 10px;
  width: 90%;
  margin-top: 20px;
}

.sns_name {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.snsicon {
  width: 30%;
}

.name {
  font-size: clamp(14px, 1.8vw, 16px);
  margin-left: 10px;
}

.sns_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  
}

.sns_img img {
  width: 30%;
}

.follow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.follow_text {
  transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  margin-left: 5%;
  font-size: 14px;
}

.follow_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: 5%;
}

.follow_icon img {
  width: 30px;
}

/* 予約 */

.yoyaku_logo {
  position: relative;
  margin-top: 20px;
}

.yoyaku_btn {
  position: absolute;
  top: 20%;
  left: 37%;
  width: 35px;
  height: 35px;
  background-color: #75604E;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 10px #75604E;
}


.yoyaku_logo{
  margin-top: 20px;
  line-height: 0;        /* インライン隙間をゼロに */
  text-align: center; 
}

.yoyaku_logo img {
  display: block;
  margin: 0 auto;
  padding: 0;
}

.yoyaku_logo a {
  display: block; /* これもブロックにすることで下の画像にぴったりくっつく */
  transition: transform 1.0s;
}

.yoyakutop {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}






/* 右のコンテンツここまで */

/* 真ん中のコンテンツ */
header {
  position: fixed;
  top: 10px;
  left: calc(40% + (30% / 2)); 
  width: 100%; 
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 1000;
}

/* ヘッダーロゴ */
header img {
  width: 50px;
  display: block;
}

.main-content {
  width: 30%;
  min-width: 350px;
  /* background-color: #f5f4e9; */
  position: relative;
  /* ハンバーガーボタンの絶対配置の基準 */
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox用 */
  -ms-overflow-style: none;
  /* IE用 */
  background-image: url(../img/bgi_hana.png);
  background-repeat: no-repeat;
  background-position: center;
}

.main-content::-webkit-scrollbar {
  display: none;
}

/* ハンバーガーメニュー */

.hamburger-grid {
  display: none;
  position: absolute;
  top: 0px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-grid__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.hamburger-grid__dot {
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
  background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
  transform: translateY(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
  transform: translateX(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
  transform: scale(1.2);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
  transform: translateX(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
  transform: translateY(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
  transform: scale(0);
}

.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}

.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-grid__list li {
  margin-bottom: 15px;
  overflow: hidden;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #4a90e2;
}

/* メイン画像 */
.main_img_area {
  position: relative;
  height: 100vh;
  background-image: url(../img/mainimg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  /* ← これでflexboxに */
  justify-content: center;
  /* 横方向の中央 */
  align-items: center;
  /* 縦方向の中央 */
  z-index: 0;
}

.main_img_area::before,
.main_img_area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 15s infinite;
  pointer-events: none;
  z-index: 0;
  /* ← main_img_areaと同じかそれ以下 */
}

.main_img_area::before {
  background-image: url(../img/mainimg_2.jpg);
  animation-delay: 4s;
}

.main_img_area::after {
  background-image: url(../img/mainimg_3.jpg);
  animation-delay: 7s;
}

/* フェードイン・アウトアニメーション */
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* 店名 */
.main_img_area {
  position: relative;
  height: 100vh;
  background-image: url(../img/mainimg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  /* 横方向の中央 */
  align-items: center;
  /* 縦方向の中央 */
  z-index: 0;
}

/* 中央に配置されるラッパー */
.mainimg {
  display: flex;
  flex-direction: column;
  /* 子要素を縦に並べる */
  align-items: center;
  /* 横揃え */
  text-align: center;
  z-index: 1;
  position: relative;
  /* z-indexのため */
}

/* テキストを見やすくする（任意） */
.mainimg h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.mainimg h1 img {
  max-width: 50%;
  /* 画像サイズを調整（任意） */
  height: auto;
}

/* スクロール */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 2;
}

.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #75604E;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #889d73;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }

  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 160px;
  background: #75604E;
}

/* 固定予約ボタン */
.reservebtn {
  position: fixed;
  bottom: 0;
  width: 30%;
  background-color: #889d73;
  color: white;
  font-size: 14px;
  padding: 10px 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}



.rsb_btn_area {
  width: 40%;
  border: 1px solid white;
  padding: 5px;
  margin-left: 20px;
}

.rsb_btn_area a {
  display: block;
  width: 100%;
  text-align: center;
  color: white;
  text-decoration: none;
}

.reserve_btn_en {
  display: block;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: .05em;
  font-family: eb-garamond, serif;
  font-weight: 400;
  font-style: normal;
}

.reserve_btn_ja {
  display: block;
  font-size: 11px;
  line-height: 12px;
  letter-spacing: .05em;
  margin-top: 2px;
}

.back-to-top {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.back-to-top a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.back-to-top a span {
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 2px;
}








/* バナースライダー */
.carousel {
  position: relative;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #889d73;
  border-radius: 50%;
  opacity: 0.5;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5em 0.8em;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.carousel-dot.active {
  background: #fff;
}

/* ニュース */
.news-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 50px;
}

/* ニュースボックスの幅 */
.news {
  max-width: 500px;
  margin: auto;
}

/* タイトル部分の横並び */
.contents-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.contents-title h2 {
  font-size: 35px;
  color: #75604E;
  margin: 0;
}

.contents-title a {
  font-size: 16px;
  color: #75604E;
  margin-top: 5px;
}

/* ニュースリスト */
.news-list li {
  margin-bottom: 20px;
}

/* 共通スタイル：スマホ向け（縦並び） */
.news-item {
  display: flex;
  flex-direction: column;
}

.news-item .date {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.news-item a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}



/* 予約 */
.fuwatop {
  width: 100%;
  height: 100px;
  background-image: url(../img/fuwa_top.png);
  background-repeat: repeat;
}

.fuwabtm {
  width: 100%;
  height: 100px;
  background-image: url(../img/fuwa_btm.png);
  background-repeat: repeat;
}


.reserve-shoplist {
  background-color: #D6DAD2;
}

.reserve-title h2 {
  font-size: 3rem;
}

.reservename{
  padding-left: 20px;
}

/* 予約内のショップリスト */
.shoptitle {
  color: white;
  font-size: 30px;
  font-weight: bold;
  display: block;
  text-align: right;
  padding: 0 10px;
   text-shadow: 0px 10px 8px rgba(0, 0, 0, 0.4);
}

.new{
  color: red;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 10px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
}

address {
  font-style: normal;
}

.shop_img {
  float: right;
  margin-left: 10px;

  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;

  /* 角丸消え防止 */
  overflow: hidden;
  margin-bottom: 20px;
}

.shop_img img {
  display: block;
  border-top-left-radius: 10px;
  /* 左上だけ丸く */
}

.shop_img.active {
  opacity: 1;
  transform: translateX(0);
}

.address_area{
  margin-left: 20px;
}

.shopname {
  font-size: 20px;
  font-weight: bold;
}

.shoplist{
  margin-top: 20px;
}



.reserve_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.tellbox,
.calendar {
  height: 45px;
  background-color: white;
  color: #75604E;
  border: #75604E solid 1px;
  width: 50%;
  padding: 5px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center; /* Flexboxで縦中央揃え */
  justify-content: center;
  height: 45px;
  padding: 0 10px; /* 横の余白 */
  white-space: nowrap;
  box-shadow: 0 4px 0 #75604E; 
}

.reserve_box a {
  line-height: 45px; /* 親要素の高さに合わせて縦中央 */
  margin-left: 5px;
  display: inline-block; /* line-heightを効かせるため */
}

.reserve_box img {
  height: 24px;
  vertical-align: middle;
}

/* コンセプト */
.concept{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 20px;
  font-size: clamp(14px, 1.0vw, 16px);
  margin-top: 20px;
  margin-bottom: 30px;
}

.cathcopy_text p{
  writing-mode: vertical-rl;
  color: #96AA80;
  font-size: 26px;
  letter-spacing: 0.4em;
}

.text_margin{
  margin-bottom: 10px;
}


.cathcopy_text p span {
  opacity: 0;
  transform: translateX(30px); /* 縦書きなので横方向に */
  display: inline-block;
  transition: opacity 3s cubic-bezier(0.25, 1, 0.5, 1),
              transform 3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cathcopy_text p.animate span {
  opacity: 1;
  transform: translateX(0);
}

/* やさしい遅延を文字ごとに */
.cathcopy_text p span:nth-child(1) { transition-delay: 0.1s; }
.cathcopy_text p span:nth-child(2) { transition-delay: 0.2s; }
.cathcopy_text p span:nth-child(3) { transition-delay: 0.3s; }
.cathcopy_text p span:nth-child(4) { transition-delay: 0.4s; }
.cathcopy_text p span:nth-child(5) { transition-delay: 0.5s; }
.cathcopy_text p span:nth-child(6) { transition-delay: 0.6s; }
.cathcopy_text p span:nth-child(7) { transition-delay: 0.7s; }


@media (max-width: 600px) {
  .carousel-button {
    font-size: 1.5rem;
    padding: 0.4em 0.6em;
  }
}

/* メニュー */

/* .menu{
  margin-bottom: 50px;
  padding: 10px;
} */


.menu{
  margin: 0 auto 30px;
  padding: 20px;
  font-size: clamp(14px, 1.0vw, 16px);
}

.slider {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.progress-container {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.progress-container svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-circle {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke: #889d73;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: none;
}

.slide-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
  color: #75604E;
  user-select: none;
}

.dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #889d73;
}

.slide-container {
  position: relative;
  width: 400px;
  height: 300px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 5px;
  user-select: none;
  pointer-events: none;
}

.caption {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  /* text-align: center; */
}



/* スタイル */
.style-content{
  z-index: 50;
  background-color: white;
  border: #75604E solid 1px;
  padding: 50px;
  color: #75604E;
}



.style-section{
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.style-bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-slide{
  display: flex;
  width: calc(100% * 4);
  animation: slide 60S linear infinite;
}

.bg-slide img{
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 50% / 40%;
  margin: 0 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}



@keyframes slide{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}


.animate-text span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: all 0.5s ease;
}

/* 表示クラスが付いたらアニメーション開始 */
.animate-text.visible span {
  opacity: 1;
  transform: translateY(0);
}

/* 各文字にアニメーションの遅延を設定 */
.animate-text span:nth-child(1) { transition-delay: 0s; }
.animate-text span:nth-child(2) { transition-delay: 0.1s; }
.animate-text span:nth-child(3) { transition-delay: 0.2s; }
.animate-text span:nth-child(4) { transition-delay: 0.3s; }
.animate-text span:nth-child(5) { transition-delay: 0.4s; }





/* コンテンツ */
.contents_area{
  margin: 50px 0;
}

.contents_title{
  text-align: center;
  margin: 30px 0;
}

.contentsbox_1{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-bottom: 15px;
}

.contentsbtn{
  width: 30%;
  height: 50px;
  color: white;
  background-color: #75604E;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* SNSエリア */
.sns_area{
  margin-top: 50px;
}

.sns_name_icon{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sns_name_area{
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.sns_icon img{
  height: 80px;
}

.sns_icon{
  padding-left: 20px;
}

.sns_icon_area{
  display: flex;
  padding-right: 20px;
  gap: 20px;
}

.sns_icon_area img{
  height: 45px;
  width: 45px;
}

.name span{
  font-size: 20px;
}

.sns-slider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px;
  justify-items: center;
  margin: 0 auto 80px;
}

.slider-box {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.slider-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slider-box img.active {
  opacity: 1;
  z-index: 1;
}

/* フッター */
.footer_area{
  background-color: #D6DAD2;
  padding-bottom: 100px;
}


.footerlogoimg{
  width: 150px;
  display: block;
  margin: 0 auto;
}

/* .footer_reserve{
  width: 100px;
  height: 45px;
  background-color: white;
  border: #75604E solid 1px;
  padding: 10px;
  margin: auto;
  text-align: center;
} */

.footer_nav{
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-top: white solid 2px;
  border-bottom: white solid 2px;
  margin-top: 20px;
  font-weight: bold;
}

.footer_nav2{
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-bottom: white solid 2px;
  font-weight: bold;
}


.footer_sns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.footer_sns img{
  height: 45px;
  width: 45px;
}

.copyright{
  margin-top: 10px;
  text-align: center;
}



/* 各見出し */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* トップページホバー */
header img:hover,
.footerlogoimg img:hover{
  transform:scale(1.2,1.2);
}

.scroll_down a:hover{
  color: #96AA80;
}

.news-item a:hover{
  animation: zoom .5s;
}

@keyframes zoom {
  50% {
    transform: scale(1.05); /* 拡大 */
  }
}


.contents-title {
  transition: transform 0.5s;
}
.contents-title a:hover{
  transform: scale(1.1);
}

.style-content a:hover{
  color:#889d73;
}



.tellbox:hover,
.calendar:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.contentsbtn:hover{
  color: #75604E;
  background: white;
  transition: .4s;
  border: #75604E solid 1px;
}

.sns_icon_area a:hover,
.footer_sns a:hover{
  transform: scale(0.8, 0.8);
}

.footer_nav a:hover,
.footer_nav2 a:hover{
  color: white;
}

.rsb_btn_area:hover{
  background-color:#D6DAD2;
  border: none;
}

.rsb_btn_area a:hover{
  color: #75604E;
}

.back-to-top:hover {
  transform: translateY(-10px);
}




/* 右コンテンツホバー */
.follow_icon a:hover{
  transform: scale(0.8, 0.8);
}

.pc_nav ul li a {
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.pc_nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* 下線の位置調整 */
  width: 0;
  height: 2px; /* 下線の太さ */
  background-color: #889d73; /* 下線の色 */
  transition: width 0.3s ease;
}

.pc_nav ul li a:hover::after {
  width: 100%;
}

.yoyaku_logo a:hover{
  transform: scale(1.2, 1.2);
}





/* サロンページ */
.salon-content{
  background-color: white;
  background-image: none; 
}

.pageimg{
  margin-top: 120px;
}

.pageimg img{
  width: 100%;

}

.midashi{
  margin-top: 30px;
  padding: 15px 0;
  border-top: #96AA80 solid 2px;
  border-bottom: #96AA80 solid 2px;
}

.midashi h2{
  text-align: center;
  color: #75604E;
  font-size: 26px;
}

.concept_text {
  height: 600px;
  display: flex;
  justify-content: center;  /* 横中央 */
  align-items: center;      /* 縦中央 */
  text-align: center;
  color: white;
  background-image: url(../img/concept_bgi.png);
  background-repeat: no-repeat;
  background-position: center;
}

.con_tex_area {
  position: relative;
  padding: 40px 60px;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1; /* テキストを前に */
}

.con_tex_area::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #95a77e;
  border-radius: 50% 50% 50% 50% / 60% 70% 30% 40%;
  z-index: -1;
  animation: floatShape 15s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% {
    border-radius: 50% 50% 50% 50% / 60% 70% 30% 40%;
  }
  50% {
    border-radius: 60% 40% 70% 30% / 30% 50% 60% 60%;
  }
}




.con_tex_area h4{
  font-size: 26px;
  font-weight: bold;
}

.con_tex_area p{
  margin-top: 15px;
}

.listbtn_area{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.listbtn{
  background-color: white;
  border: #75604E solid 2px;
  color: #75604E;
  border-radius: 50px;
  width: 150px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.listbtn:hover{
  background-color: #75604E;
  color: white;
}

.shop_list{
  margin: 30px auto;
  color: #75604E;
}

.shop_list_img{
  width: 90%;
  margin: 15px auto;
}

.shop_list_name{
  background-color: #75604E;
  padding: 10px 0;
}

.shop_list_name h4{
  color: white;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.2em;
}

.shop_name{
  padding-left: 20px;
  width: 50%;
  border-bottom: #75604E solid 3px;
}

.shop_name h3{
  font-size: 20px;
  font-weight: bold;
}


.map-btn {
  display: inline-block;
  background-color: #95a77e;
  color: white;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.map-btn:hover {
  background-color: #7e9169;
}

.shop_ad{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
}

.shop_time{
  padding: 5px 10px;
}

.time_title{
  font-weight: bold;
}



.shop_remarks{
  background-color: #D6DAD2;
  border-radius: 30px;
  padding: 10px 0;
  text-align: center;
  margin-top: 10px;
}

/* メニューページ */
.first{
  margin-top: 30px;
}

.menu_btn_1{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
}

.listbtn_green{
  background-color: #96AA80;
  color: white;
  border-radius: 50px;
  width: 150px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.listbtn_green:hover{
  background-color: white;
  color: #96AA80;
  border: #96AA80 solid 2px;
}





/* レスポンシブ */
@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .hamburger-grid {
    display: block;
  }

  header {
    left: 0;
  }


  .left-panel,
  .right-panel {
    display: none;
  }

  .main-content {
    width: 100%;
    height: 100vh;
    /* スマホ幅いっぱいに */
    overflow-y: auto;
  }

  .hamburger-grid {
    position: fixed;
    /* 画面右上に */
    top: 15px;
    right: 15px;
    z-index: 1000;
  }

  .layout {
    height: auto;
    flex-direction: column;
  }

  .nav-grid__content {
    padding: 80px 20px;
  }

  .nav-grid__sections {
    grid-template-columns: 1fr;
  }

  .nav-grid__link {
    font-size: 20px;
  }

  /* .sns-slider-grid {
    grid-template-columns: repeat(2, 1fr);
  } */
}


@media screen and (min-width: 768px) {
  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 20px; /* 日付とタイトルの間に余白 */
  }

  .news-item .date {
    margin-bottom: 0;
    white-space: nowrap; /* 日付を1行に保つ */
  }


  a[href^="tel:"] {
    pointer-events: none;
    /* カーソルイベントを無効 */
  }

  .tellbox,
  .calendar {
    background-color: white;
    color: #75604E;
    border: #75604E solid 1px;
    width: 50%;
    white-space: nowrap;
    padding: 5px;
    border-radius: 10px;
    font-size: clamp(14px, 1.0vw, 16px);
    box-shadow: 0 4px 0 #75604E; 
  }

  .reservebtn{
    background-color: #75604E;
  }

  header {
    width: 30%; 
    transform: translateX(-50%);
  }


}