/* ==========================================
   全般的なリセット & 基本設定
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP",
    serif, Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "MS PGothic", sans-serif;
  color: #4a4a4a;
  background-color: #fbfaf5;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

li {
  list-style: none;
}

p {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 15px;
}

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

/* レイアウトコンテナ */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションの共通タイトル */
.section {
  padding: 170px 0;
}

.section-title {
  font-size: clamp(40px, 5vw, 52px);
  color: #8ba865;

}

.section-title.greet {
  display: inline-block;
  position: relative;
  /*z-indexのためだけのもの*/
}

.section-title.staff {
  text-align: center;
}

.section-title.menu {
  display: inline-block;
}


@media screen and (max-width:764px) {
  .section {
    padding: 100px 0;
  }
}

@media screen and (max-width:480px) {
  .section-title {
    font-size: clamp(37px, 5vw, 37px);
    color: #8ba865;
  }

  .section-title.greet {
    margin-bottom: 20px;
  }
}

/* ==========================================
   ローディング
   ========================================== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #edf2e7;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loading.fadeout {
  opacity: 0;
  visibility: hidden;
}

#loading img {
  width: 300px;
  height: auto;
}

#loading.fadeout {
  opacity: 0;
  visibility: hidden;
}

.fv-title {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 2s ease, transform 2s ease;
}

.fv-title.show {
  opacity: 1;
  transform: translateY(0);
}

.fv-subtxt {
  opacity: 0;
  transition: opacity 3s ease, transform 3s ease;
}

.fv-subtxt.show {
  opacity: 1;
}

.fv-icon-wrapper {
  opacity: 0;
  transition: opacity 3s ease, transform 3s ease;
}

.fv-icon-wrapper.show {
  opacity: 1;
}

@media (max-width: 764px) {
  #loading img {
    width: 260px;
  }
}

@media (max-width: 480px) {
  #loading img {
    width: 220px;
  }
}

/* ==========================================
   あいさつ文アニメーション
   ========================================== */
.gsapBox {
  position: relative;
}

.gsapText-back {
  position: relative;
  color: rgba(74,
      74,
      74,
      0.5);
  z-index: 1;
}

.gsapText-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #4a4a4a;
  z-index: 2;
}

.gsapText-front p {
  clip-path: inset(0 100% 0 0);
}


/* ==========================================
   ヘッダー
   ========================================== */
.header {
  width: 100%;
  background-color: #fdfcef;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
}

.logo {
  width: 250px;
  margin-top: 5px;
}

@media screen and (max-width:1100px) {
  .logo {
    position: fixed;
    z-index: 3;
  }
}

@media screen and (max-width:764px) {
  .logo {
    width: 170px;
  }
}

/* PC */
.nav-top,
.nav-bottom {
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav ul {
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 40px;
  font-size: clamp(12px, 1.4vw, 17px);
}

.nav ul .LINE_Brand_icon {
  display: flex;
  align-items: center;
}

.nav a {
  transition: 0.5s;
}

.nav a:hover {
  opacity: 0.7;
}

.btn-small {
  background-color: #52834d;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
}

.btn-small span {
  font-size: 12px;
}

.LINE_Brand_icon {
  width: 34.5px;
}




/* ==========================
ハンバーガーメニュー
========================== */

.hamburger {
  position: fixed;
  display: none;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  top: 30px;
  right: 8%;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #4a4a4a;
  transition: .3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 5px;
}

.hamburger span:nth-child(3) {
  top: 10px;
}

/* × */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 4;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width:1100px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    display: block;
    top: -100%;
    left: 0;
    width: 100%;
    background: #fdfcef;
    z-index: 5;
    transition: .4s;
    padding: 70px 40px 30px 40px;
  }

  .nav-top {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .nav-bottom {
    justify-content: center;
  }

  .nav.active {
    top: 0;
  }

  .nav li {
    text-align: center;
  }
}



@media screen and (max-width:480px) {
  .hamburger {
    width: 20px;
    height: 30px;
  }
}


/* ==========================================
   メインビジュアル
   ========================================== */
.fv-visual {
  width: 100%;
  background: linear-gradient(to bottom, #fdfcef, #edf2e7);
}

.fv-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 0px 20px 10%;
  display: flex;
  justify-content: space-between;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic";
}

.fv-leaf {
  position: absolute;
  width: 25%;
  top: 100px;
  left: 0;
}

.fv-title {
  width: 75%;
  max-width: 600px;
  min-width: 280px;
  padding: 10% 0px 10% 0px;
}

.fv-wrapper p {
  z-index: 3;
  font-size: clamp(12px, 1.4vw, 17px);
}

.fv-icon-wrapper {
  display: flex;
  width: 50%;
  gap: 10%;
  padding-top: 10%;
}

.fv-icon-wrapper img {
  width: 50%;
  max-width: 120px;
}

.fv-man {
  width: 100%;
  max-width: 750px;
}

.fv-female-container {
  position: relative;
}

.fv-female {
  width: 40%;
  max-width: 550px;
  margin-top: 70px;
  margin-left: 17%;
}

.fv-bird_and_leaf {
  position: absolute;
  width: 40%;
  max-width: 700px;
  min-width: 400px;
  height: auto;
  top: 80%;
  right: 10%;
}

@media screen and (min-width:1500px) {
  .fv-bird_and_leaf {
    top: 50%;
  }
}

@media screen and (max-width:764px) {
  .fv-container {
    position: relative;
    display: block;
    padding: 30px 0px 0px 0%;
  }

  .fv-leaf {
    position: absolute;
    width: 30%;
    top: 150px;
    left: 0;
    z-index: 0;
  }

  .fv-title {
    width: 45%;
    min-width: 250px;
    padding: 10% 0px 2% 0px;
  }

  .fv-wrapper {
    position: relative;
    padding: 0px 0px 0px 10%;
  }

  .fv-wrapper p {
    position: relative;
    font-size: clamp(12px, 2vw, 16px);
  }

  .fv-wrapper-img {
    position: absolute;
    right: 0;
    top: 152px;
    width: 70%;
    z-index: 2;
  }

  .fv-man {
    width: 100%;
    display: block;
  }

  .fv-icon-wrapper {
    display: none;
  }

  .fv-female {
    width: 50%;
    max-width: 550px;
    margin-top: 43%;
    margin-bottom: 8%;
    margin-left: 17%;
  }

  .fv-bird_and_leaf {
    position: absolute;
    width: 53%;
    min-width: 0px;
    top: 80%;
    right: 5%;
    rotate: calc(10deg);
  }
}

@media screen and (max-width:480px) {
  .fv-leaf {
    width: 50%;
    top: 50px;
  }

  .fv-title {
    width: 60%;
    min-width: 230px;
    padding: 10% 0px 2% 0px;
  }

  .fv-wrapper p {
    font-size: clamp(11px, 2vw, 14px);
  }

  .fv-wrapper-img {
    position: absolute;
    right: 0;
    width: 80%;
  }

  .fv-female {
    width: 50%;
    max-width: 550px;
    margin-top: 60%;
    margin-bottom: 8%;
    margin-left: 10%;
  }

  .fv-bird_and_leaf {
    position: absolute;
    min-width: 250px;
    top: 87%;
  }
}

/* ==========================================
   ごあいさつ (About)
   ========================================== */
.about-section {
  background-color: #edf2e7;
}

.text-center {
  width: 80%;
  max-width: 1000px;
  margin: 0px auto;
}

.about-content p {
  font-size: clamp(13px, 1.4vw, 15px);
  margin-bottom: 20px;
}

.greet-bird_and_leaf-cantainer {
  text-align: right;
}

.greet-bird_and_leaf {
  width: 50%;
  max-width: 800px;
  min-width: 500px;
  height: auto;
  position: relative;
  bottom: 20%;
}

@media screen and (max-width:764px) {
  .greet-bird_and_leaf {
    width: 70%;
    min-width: 0px;
  }
}

@media screen and (max-width:480px) {
  .greet-bird_and_leaf {
    width: 85%;
  }

  .text-center {
    width: 90%;
  }
}

/* ==========================================
   スタッフ紹介
   ========================================== */
.staff-section {
  background-color: #fdfced;
}

.staff-wrapper {
  padding: 7% 7%;
}

.staff-card {
  display: flex;
}

/*配置を逆にできる
.staff-card.reverse {
  flex-direction: row-reverse;
}
*/

.staff-img-wrapper img {
  width: clamp(100px, 34vw, 450px);
  height: auto;
}

.staff-info {
  margin-left: 10%;
}

h3 {
  font-size: 1.3rem;
  color: #515151;
}

.staff-info p {
  margin-top: 15px;
  font-size: clamp(13px, 1.4vw, 15px);
}

.female {
  margin-top: 100px;
}

@media screen and (max-width:764px) {
  .staff-card {
    display: block;
  }

  .staff-img-wrapper,
  .staff-info h3 {
    text-align: center;
  }

  .staff-img-wrapper img {
    width: clamp(100px, 47vw, 470px);
    height: auto;
  }

  .staff-info {
    margin-left: 0%;
  }

  .female {
    margin-top: 70px;
  }
}

@media screen and (max-width:480px) {
  h3 {
    font-size: 1.1rem;
  }

  .staff-img-wrapper img {
    width: 100%;
  }
}

/* ==========================================
   メニュー
   ========================================== */
.menu-section {
  position: relative;
  background-color: #cdd7c3;
}

.menu-flower-top {
  position: absolute;
  width: 100%;
  height: auto;
  top: -50px;
  background: url(/images/menu-flower.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container-menu {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5% 20px;
  display: flex;
}

.section-title-container {
  width: 25%;
}

.menu-list {
  width: 80%;
  padding: 10%;
  border: 1px solid #fbdfbb;
  background-color: #fbfaf5;
  border-radius: 12px;
  font-size: clamp(13px, 1.4vw, 15px);
}

.menu-list li {
  background-color: #fbfaf5;
  margin: 10px 0px;
  border-bottom: dashed 1px #8ba865;
  display: inline-block;
}

.menu-grid {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin: 200px 0px 100px 0px;
}

@media screen and (min-width:1500px) {
  .menu-flower-top {
    top: -80px;
  }
}

@media screen and (max-width:1100px) {
  .container-menu {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0% 0px;
    display: block;
  }

  .section-title-container {
    width: 100%;
  }

  .menu-list {
    width: 100%;
    padding: 5%;
  }

  .menu-list li {
    margin: 5px 10px;
  }

  .menu-grid {
    width: 100%;
    margin: 50px 0px 100px 0px;
  }
}



/* 1番目のアイテム内の「上段」だけを横並びにする */
.original-layout .item-top,
.original-layout .item-option {
  display: flex;
  justify-content: space-between;
}

.original-layout .item-option {
  margin-bottom: 30px;
}

/* 1番目のアイテム内の「下段（補足文）」 */
.original-layout .item-bottom {
  display: block;
  padding: 20px 30px 40px 30px;
}

/* --- ここまで1番目のアイテム専用の内部レイアウト --- */

.menu-item,
.menu-item-option {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.menu-item {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  background: #fffcfa;
}

.option {
  border-radius: 12px;
  background: #fffcfa;
}

.menu-img-wrapper {
  padding: 30px;
}

/* 2番目以降も含めた、すべての画像の基本サイズ（70%） */
.main-img,
.main-img-swiper,
.main-img-swiper-option {
  width: 200px;
  min-width: 250px;
  height: auto;
  transition: opacity .8s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.thumb,
.thumb-option {
  display: flex;
  gap: 15px;
  scroll-behavior: smooth;
  /* スクロールバー非表示 */
  scrollbar-width: none;
  width: 160px;
}

.thumb-img {
  width: 70px;
  cursor: pointer;
  transition: .9s;
  transform: scale(.9);
  opacity: .6;
}

.thumb-img.active {
  transform: scale(1);
  opacity: 1;
}


/* 1番目のmenu-itemの中にある画像だけを100%にする 
.menu-item:nth-child(7) .menu-img-wrapper img,
.menu-item:nth-child(8) .menu-img-wrapper img {
  width: 50%;
  height: auto;
}
*/

.menu-details {
  width: 100%;
  padding: 20px 30px;
}

.menu-details-short-recommend,
.menu-details-short-basic {
  background-color: #52834d;
  color: white;
  display: inline-block;
  padding: 5px 20px;
  margin: 15px 0px 5px 0px;
  border-radius: 20px 0px 20px 0px;
}

.menu-details-short-basic {
  background-color: #78af71;
}

.menu-details-short-txt {
  font-size: clamp(14px, 1.7vw, 18px);
}

.price {
  color: #c29a76;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.menu-desc {
  font-size: clamp(13px, 1.4vw, 15px);
}

.example {
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 20px;
  font-weight: bold;
  font-family: "Noto Serif JP",
    serif, Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "MS PGothic", sans-serif;
}

.menu-details ul {
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: bold;
}


.option-select li {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: bold;
}

.option-title {
  width: 100%;
  padding: 20px 30px 0px 30px;
}

.option-title span {
  font-weight: bold;
}

.menu-flower-bottom {
  position: absolute;
  width: 100%;
  bottom: -50px;
  background: url(/images/menu-flower.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width:1500px) {
  .menu-flower-bottom {
    bottom: -80px;
  }
}

@media screen and (max-width:764px) {
  .container-menu {
    width: 90%;
  }

  .menu-grid {
    margin: 20px 0px 0px 0px;
  }

  .menu-details {
    font-size: clamp(14px, 3vw, 18px);
    width: 100%;
  }

  .menu-item,
  .menu-item-option {
    display: block;
  }

  .menu-img-wrapper {
    padding: 30px 30px 0px 30px;
  }

  .menu-flower-top {
    top: -30px;
  }

  .menu-flower-bottom {
    bottom: -30px;
  }
}

@media screen and (max-width:480px) {

  .menu-details-short-recommend,
  .menu-details-short-basic {
    padding: 2px 13px;
  }

  .main-img,
  .main-img-swiper,
  .main-img-swiper-option {
    width: 100%;
  }

  .menu-flower-top {
    top: -20px;
  }

  .menu-flower-bottom {
    bottom: -20px;
  }
}

/* ==========================================
  写真スライド
   ========================================== */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}



.scroll-infinity__wrap {
  width: 100%;
  position: relative;
  justify-content: center;
  display: flex;
  gap: 150px;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  gap: 150px;
}

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

.scroll-infinity__item.small>img {
  width: 100%;
}

.photo-1 {
  width: 300px;
  margin-top: 100px;
}

.photo-2 {
  width: 350px;
}

.photo-3 {
  width: 300px;
  margin-top: 100px;
}

.photo-4 {
  width: 350px;
}

.scroll-infinity__item img {
  width: 100%;
  height: auto;
  display: block;
}


.gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(170px, 20vw, 220px);
  font-weight: bold;
  opacity: 0.04;
  z-index: -1;
  font-family: "Noto Serif JP",
    serif, Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "MS PGothic", sans-serif;
}

@media screen and (max-width:764px) {
  .scroll-infinity__wrap {
    gap: 100px;
  }

  .scroll-infinity__list {
    gap: 100px;
  }

  .photo-1 {
    width: 200px;
    margin-top: 0px;
  }

  .photo-2 {
    width: 250px;
    margin-top: 50px;
  }

  .photo-3 {
    width: 200px;
    margin-top: 0px;
  }

  .photo-4 {
    width: 250px;
    margin-top: 50px;
  }

  .gallery {
    font-size: clamp(100px, 20vw, 150px);
  }
}

@media (max-width: 480px) {
  .scroll-infinity__wrap {
    gap: 0px;
  }

  .scroll-infinity__list {
    gap: 0px;
  }

  .scroll-infinity__item img {
    width: 70%;
    height: auto;
    display: block;
  }
}

/* ==========================================
   フッター & CTAボタン
   ========================================== */
.footer {
  padding-top: 3%;
}

.access-attention {
  max-width: 1160px;
  margin: 0px auto;
  margin-bottom: 100px;
}

.footer-logo-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 300px;
  height: auto;
  margin-bottom: 100px;
}

.access-wrapper {
  display: flex;
  justify-content: space-between;
}

.access-map {
  width: 60%;
  height: auto;
}

.access-map iframe {
  width: 80%;
  height: 100%;
}

.address {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.business-info {
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: clamp(13px, 1.4vw, 15px);
}

.business-info p {
  margin-bottom: 15px;
}

.station {
  font-size: 1.3rem;
  font-weight: bold;
}

.station-title {
  font-weight: bold;
}

.station-info ul {
  margin-bottom: 20px;
}

.station-info li {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic";
  line-height: 1.8;
  font-size: clamp(13px, 1.4vw, 15px);
}

.station-info li::before {
  content: "●";
  margin-right: 5px;
}

.access-info {
  width: 50%;
}

@media (max-width: 764px) {
  .footer {
    padding-top: 0px;
  }

  .access-attention {
    width: 90%;
    margin-bottom: 100px;
  }

  .footer-logo {
    width: 230px;
    margin-bottom: 50px;
  }

  .access-wrapper {
    display: block;
  }

  .access-map {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }

  .access-map iframe {
    width: 100%;
    height: 100%;
  }

  .access {
    padding: 0px 0;
  }

  .business-info {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .business-info p,
  .station-info ul {
    margin-bottom: 10px;
  }

  .access-info {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .access-attention {
    width: 100%;
    margin-bottom: 100px;
  }
}



/*問い合わせボタン*/
.footer-contact {
  padding-bottom: 30px;
  background-color: #455643;
}

.container-footer,
.attention-container {
  width: 90%;
  max-width: 1300px;
  margin: 0px auto;
}

.footer-contact-title {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 50px;
  color: white;
}

.insta-LINE-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-container-color,
.insta-container-color,
.LINE-container-color {
  background-color: #cdd7c3;
  border-radius: 20px;
  margin: 10px 0px;
  padding: 15px 30px;
}

@media (max-width: 1350px) {

  .container-footer,
  .attention-container {
    width: 90%;
  }

  .container-footer {
    text-align: center;
  }

  .insta-LINE-container {
    display: inline-block;
    margin-bottom: 0px;
  }

  .contact-container-color,
  .insta-container-color,
  .LINE-container-color {
    text-align: left;
    width: 100%;
  }
}



.contact-subtxt {
  margin-left: 5%;
  font-size: 0.8rem;
}

.insta-container,
.contact-container {
  display: inline-flex;
  align-items: flex-start;
}

.insta-container {
  margin-top: 10px;
}

.display {
  display: flex;
  height: 58%;
  margin-top: 10px;
}

.insta-logo-wrapper {
  padding: 15px;
  background-color: #edf2e7;
  border-radius: 10px 0 0 10px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
}

.insta-txt-wrapper {
  padding: 22px;
  background-color: #52834d;
  border-radius: 0 10px 10px 0;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
  color: white;
}

.insta-logo {
  display: block;
  width: 40px;
}


.arrow-btn,
.arrow-contact-btn {
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

.arrow-btn {
  top: 15px;
}


/* 線だけの三角 */
.arrow-btn::before,
.arrow-contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #425742;
  border-right: 2px solid #425742;
}

.LINE-txt-wrapper,
.contact-txt-wrapper {
  display: flex;
  gap: 10px;
  background-color: #52834d;
  border-radius: 10px;
  color: white;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.1);
}

.LINE-txt-wrapper {
  padding: 15px;
  margin-top: 10px;
}

.contact-txt-wrapper {
  align-items: center;
  padding: 21px;
  margin-left: 17px;
}

.copyright-container {
  display: flex;
  justify-content: space-between;
}

.copyright {
  text-align: left;
  margin-top: 100px;
  font-size: 0.8rem;
  opacity: 0.6;
  color: white;
}

#scroll-top {
  width: 100px;
  height: 100px;
  margin-top: 25px;
  border-radius: 100%;
  border: 2px solid #cdd7c3;
  font-size: 18px;
  color: #cdd7c3;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100px;
  transition: .5s;
  z-index: 100;
  cursor: pointer;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic";
}

#scroll-top:hover {
  color: #455643;
  background-color: #cdd7c3;
}

@media screen and (max-width: 480px) {
  #scroll-top {
    width: 70px;
    height: 70px;
    font-size: 13px;
  }

  .footer-contact-title {
    text-align: left;
    font-size: 1rem;
    margin-top: 70px;
    padding-top: 70px;
    padding-bottom: 20px;
  }

  .contact-subtxt {
    display: block;
    margin-left: 0%;
  }

  .display {
    display: flex;
    height: 58%;
  }

  .insta-logo-wrapper {
    padding: 10px;
  }

  .insta-txt-wrapper {
    padding: 17px;
  }

  .arrow-btn,
  .arrow-contact-btn {
    width: 20px;
    height: 20px;
  }

  .arrow-btn {
    top: 15px;
  }

  .LINE-txt-wrapper {
    padding: 10px;
  }

  .contact-txt-wrapper {
    padding: 16px;
  }

  .copyright {
    text-align: left;
    margin-top: 80px;
    font-size: 0.6rem;
  }
}



/* ==========================================
   レスポンシブ表示用（スマートフォン対応）
   ========================================== */
@media (max-width: 764px) {
  .display {
    display: block;
  }

  .contact-txt-wrapper {
    margin-left: 0px;
  }

  /* ヘッダーのナビゲーションを簡易調整 */
  .nav ul {
    gap: 10px;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .btn-small {
    padding: 6px 12px;
  }


  /* メニューを1カラムに */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* CTAボタンを縦並びに */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}






.attention-title {
  font-weight: 600;
  margin-bottom: 20px;
}

/* 緑色の変形角丸ベース */
.green-card {
  background-color: #cdd7c3;
  border-radius: 100px 0px 100px 0px;
  padding: 60px 40px;
}

/* 内側の白い（ほんのりクリーム色の）ボックス */
.white-box {
  background-color: #fffaf4;
  border: 1px solid #fbdfbb;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
  /* 植物のイラストがはみ出た場合を考慮 */
}

/* リストのスタイル */
.notice-list {
  max-width: 80%;
  /* 右側のイラストスペースを空ける */
  z-index: 2;
  position: relative;
  font-size: clamp(13px, 1.4vw, 15px);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic";
}

.notice-list li {
  position: relative;
  padding-left: 5%;
}

/* 行頭の「●」の再現 */
.notice-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #555;
}

/* 「完全予約制」の赤文字強調 */
.highlight {
  color: #d94636;
  font-weight: bold;
}

/* 右下の植物イラスト*/
.leaf-illustration {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.leaf-illustration img {
  width: 150px;
  height: auto;
  opacity: 0.3;
}


@media (max-width: 768px) {
  .title {
    font-size: 1.6rem;
    text-align: center;
  }

  .green-card {
    border-radius: 50px 0px 50px 0px;
    padding: 30px 20px;
  }

  .white-box {
    padding: 30px 20px;
  }

  .notice-list {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .attention-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}