/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本スタイル */
:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Noto Serif Japanese", "Noto Serif", serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.header-top {
  background-color: rgb(243 236 219);
  color: white;
  padding: 15px 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  width: 400px;
  display: flex;
  flex-direction: column;
}

.logo img {
  width: 350px;
}
@media (max-width: 768px) {
  .logo img {
    width: calc(350px - 55px);
  }
}

.logo span {
  color: black;
}

.header-contact {
  display: flex;
  gap: 15px;
}

@media (max-width: 850px) {
  .header-contact {
    display: none;
  }
}

.btn-tel,
.btn-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-tel {
  /* background: white; */
  color: #1f2937;
}

.btn-tel img {
  width: 25px;
  height: 25px;
}

.btn-tel:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tel-number {
  font-size: 18px;
}

.nowrap {
  white-space: nowrap;
}

.btn-line {
  /* background: #00c300; */
  color: #1f2937;
}

.btn-line img {
  width: 40px;
  height: 40px;
}

.btn-line:hover {
  background: #05b04a;
  transform: translateY(-2px);
}

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

/* nav 内レイアウト */
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ハンバーガーボタン */
.hamburger {
  width: 64px;
  height: 100%;
  /* width: 28px;
    height: 20px; */
  position: absolute;
  right: 0;
  top: 0;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1f2937;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, 14px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -14px);
}

/* ナビ */
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* スマホ用 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-contact {
    display: none;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: var(--shadow-md);
  }

  .nav-list.active {
    display: flex;
  }
}

/* ナビゲーション */
.nav {
  background: var(--bg-white);
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.nav-list li a {
  display: block;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: rgb(242, 148, 36);
  transition: width 0.3s ease;
}

.nav-list li a:hover {
  color: rgb(242, 148, 36);
}

.nav-list li a:hover::after {
  width: 80%;
}

/* メインビジュアル */
.hero {
  position: relative;
  padding: 100px 20px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  overflow: hidden;
  height: calc(100vh - 176px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>')
    no-repeat bottom;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* .hero-title {
    background-color: rgb(255, 255, 255, 0.5);
} */

.hero-badge {
  display: inline-block;
  /* background: rgba(255, 255, 255, 0.2); */
  background-color: rgb(242 36 36);
  padding: 12px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 230, 180, 0.8);
  text-shadow: none;
}

.badge-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-title-large {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.15);
  background-color: rgb(242, 148, 36);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-shadow: none;
  border: 2px solid rgba(255, 230, 180, 0.8);
}

/* セクション共通 */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}

.section-title-br {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #1f2937;
}

.title-en {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.title-en-br {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 50px;
}

.section-subtitle-br {
  text-align: center;
  color: #1f2937;
  font-size: 18px;
  margin-bottom: 50px;
}

/* お悩みセクション */
.problems {
  padding: 80px 20px;
  background: var(--bg-light);
  background-color: rgb(63, 92, 75);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.problem-card {
  background: white;
  /* padding: 20px 15px; */
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  /* はみ出し防止 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card img {
  width: 100%;
  /* カード幅に合わせる */
  height: auto;
  /* 縦横比を保持 */
  max-height: 150px;
  /* 高さを制限 */
  object-fit: contain;
  /* はみ出さないように調整 */
  border-radius: 10px;
  /* optional: 丸める */
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.problem-card h3 {
  width: 100%;
  padding: 5px 0px;
  color: #fff;
  background-color: #00c300;
  font-size: 20px;
  font-weight: 700;
}

.cta-message {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.cta-message h3 {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-dark);
}

.text-emphasis {
  color: #e60012;
  font-weight: 900;
  font-size: 32px;
}

/* メニューセクション */
.menu {
  padding: 80px 20px;
  background-color: rgb(243 236 219);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.menu-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu-content {
  padding: 30px;
}

.menu-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.menu-description {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.menu-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

.price-amount {
  font-size: 32px;
  font-weight: 900;
  color: rgb(242, 148, 36);
}

/* 施術法セクション */
.treatment {
  padding: 80px 20px;
  color: white;
  background-color: rgb(63, 92, 75);
}

.treatment .section-title {
  color: white;
}

.treatment .title-en {
  color: rgba(255, 255, 255, 0.8);
}

.treatment .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.treatment-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.treatment-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.treatment-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  /* 任意 */
  margin-bottom: 20px;
  /* アイテムとの間隔 */
  position: relative;
}

.treatment-image img {
  width: 100%;
  object-fit: contain !important;
  display: block;
  transition: transform 0.3s ease;
}

.treatment-number {
  font-size: 48px;
  font-weight: 900;
  opacity: 0.3;
  margin-bottom: 15px;
}

.treatment-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.treatment-item p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

/* 選ばれる理由 */
.reasons {
  padding: 80px 20px;
  background-color: rgb(243 236 219);
}

.reasons-list {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reason-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.reason-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateX(10px);
}

.reason-icon {
  flex-shrink: 0;
}

.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgb(242, 148, 36);
  color: white;
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
}

.reason-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.reason-content p {
  color: var(--text-light);
  line-height: 1.8;
}

/* お客様の声 */
.voice {
  padding: 80px 20px;
  background: var(--bg-white);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.voice-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.voice-rating {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 20px;
}

.voice-text {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.voice-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  border-top: 2px solid var(--border-color);
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
}

.author-info {
  font-size: 13px;
  color: var(--text-light);
}

/* 店舗一覧 */
.shops {
  padding: 80px 20px;
  background-color: rgb(63, 92, 75);
  margin-bottom: 80px;
}

.shops-item {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.shops-item01 {
  width: 50%;
  /* height: 80vh;
    max-height: 700px; */
  color: #fff;
}

.shops-item01 img {
  width: 100%;
  height: auto;
  display: block;
}

.shops-item01 .text-box-shops {
  padding: 10%;
}

.telephone {
  display: flex;
}

.telephone img {
  width: 10%;
  height: 35px;
  margin-top: 25px;
}

.telephone span {
  width: 90%;
}

.shops-item01 .shops-text span {
  margin-bottom: 50px;
  display: block;
  font-size: clamp(32px, 4.3vw, 48px);
  font-weight: bold;
}

.shops-item01 .time-table {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.shops-item01 .time-table table {
  border-collapse: collapse;
  width: 100%;
}

.shops-item01 .time-table th,
.shops-item01 .time-table td {
  border-bottom: 2px solid #fff;
  padding: 5px 0px;
}

.shops-item02 {
  width: min(100%, 580px);
  /* height: 70vh;
  max-height: 700px; */
  color: #fff;
}

.shops-item02 iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .shops-item {
    /* height: 600px; */
  }

  .shops-item01 {
    /* max-height: 700px; */
    overflow: visible;
  }

  .shops-item01 .text-box-shops {
    padding: 10%;
  }

  .shops-item02 {
    /* height: 70vh;
    max-height: 600px; */
  }
}

@media (max-width: 900px) {
  .shops-item,
  .shops-item01 {
    width: 100%;
    height: auto;
  }

  .shops-item01 .text-box-shops {
    padding: 5% 5% 5% 5%;
  }

  .shops-item01 .text-box-shops span {
    font-size: 46px;
    margin-bottom: 40px;
  }

  .shops-item01 .time-table {
    padding-left: 60px;
  }

  .shops-item02 {
    /* display: none; */
  }
}

@media (max-width: 700px) {
  .shops-item,
  .shops-item01 {
    width: 100%;
    height: auto;
    /* max-height: none; */
  }

  .shops-item01 .shops-text {
    padding: 10px;
  }

  .shops-item01 .text-box-shops span {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .telephone img {
    margin-top: 2%;
  }
}

@media (max-width: 500px) {
  .shops {
    padding: 50px 20px;
  }

  .telephone img {
    margin: 10px;
  }
}

@media (max-width: 375px) {
  .shops {
    padding: 50px 20px;
  }

  .shops-item01 .text-box-shops span {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

/* CTA */
.cta {
  padding: 0px 20px;
  margin-bottom: 80px;
}

.cta-item {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.cta-item-line,
.cta-item-tel,
.cta-item-form {
  width: 33%;
  padding: 64px 16px;
}

.cta-item-line h2,
.cta-item-tel h2,
.cta-item-form h2 {
  font-size: 1.9rem;
}

.cta-item-line p,
.cta-item-tel p,
.cta-item-form p {
  padding: 20px 0;
}

.cta-item-line a,
.cta-item-tel a,
.cta-item-form a {
  display: block;
  margin: auto;
  padding: 5px 20px;
  font-size: 21px;
  border: 3px solid;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.cta-item-tel a {
  color: #1f2937;
}

.cta-item-tel a:hover {
  color: #fff;
  background-color: #1f2937;
  border: none;
}

.cta-item-line a {
  color: #fff;
}

.cta-item-line a:hover {
  color: #05b04a;
  background-color: #fff;
  border: none;
}

.cta-item-form a {
  color: #fff;
}

.cta-item-form a:hover {
  color: #f59e0b;
  background-color: #fff;
  border: none;
}

.cta-item-tel {
  color: #1f2937;
  background-color: #e5e7eb;
}

.cta-item-line {
  color: #fff;
  background-color: #00c300;
  border-color: #fff;
}

.cta-item-form {
  color: #fff;
  background-color: #f59e0b;
  border-color: #fff;
}

@media (max-width: 900px) {
  .cta-item {
    flex-direction: column;
  }

  .cta-item-line,
  .cta-item-tel,
  .cta-item-form {
    width: 100%;
  }
}

/* フッター */
.footer {
  background-color: rgb(243 236 219);
  color: rgb(63, 92, 75);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgb(63, 92, 75);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* トップボタン */
.back-to-top {
  padding: 10px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
  background-color: #f59e0b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, box-shadow 0.3s;

  /* 影を追加 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* border-radius: 50%; */
}

.back-to-top-icon {
  width: 24px; /* アイコンサイズ */
  height: 24px;
}

.back-to-top-icon polygon {
  fill: #fff; /* ← 白になる */
}

.back-to-top:hover {
  opacity: 0.8; /* ホバー時に少し透ける */
}

@media (max-width: 850px) {
  .back-to-top {
    position: fixed;
    bottom: 85px;
  }
}

/* モバイルナビ */
.mobile-fixed-nav {
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* mobile-fixed-nav 内ではホバー効果を無効にする */
.mobile-fixed-nav .btn-tel:hover,
.mobile-fixed-nav .btn-line:hover {
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.mobile-nav {
  display: flex;
  justify-content: center;
  text-align: center;
}

/*メニューボタン */
.menu-button {
  width: 100%;
  height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e5e7eb;
}

/* 予約ボタン */
.cta-button {
  width: 100%;
  height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00c300;
  align-items: center;
}

.menu-button a {
  color: #1f2937;
}

.top-button a,
.cta-button a {
  color: #fff;
}

/* トップボタン */
.top-button {
  width: 100%;
  height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #f59e0b;
}

@media (max-width: 850px) {
  .mobile-fixed-nav {
    display: block;
  }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list li a {
    padding: 12px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-title-large {
    font-size: 36px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .reason-item {
    flex-direction: column;
    padding: 30px;
  }

  .problems-grid,
  .menu-grid,
  .voice-grid,
  .shops-grid {
    grid-template-columns: 1fr;
  }

  .treatment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .shop-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-title-large {
    font-size: 28px;
  }

  .header-contact {
    flex-direction: column;
    width: 100%;
  }

  .btn-tel,
  .btn-line {
    width: 100%;
    justify-content: center;
  }
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.problem-card,
.menu-card,
.voice-card,
.shop-card {
  animation: fadeIn 0.6s ease-out;
}
