/* Main Styles */
:root {
  /* Colors */
  --background: #fefbf7;
  --foreground: #332e29;
  --card: #ffffff;
  --card-foreground: #332e29;
  --primary: #ff7a45;
  --primary-foreground: #ffffff;
  --secondary: #f8f0e3;
  --secondary-foreground: #332e29;
  --muted: #f8f0e3;
  --muted-foreground: #665e55;
  --accent: #f5e2c1;
  --accent-foreground: #332e29;
  --destructive: #ff5252;
  --destructive-foreground: #ffffff;
  --border: #f2e4d0;
  --input: #f2e4d0;
  --ring: #ff7a45;
  --radius: 0.5rem;

  /* Sunset Colors */
  --sunset-50: #fff6f0;
  --sunset-100: #ffeee4;
  --sunset-200: #ffd9c7;
  --sunset-300: #ffbea0;
  --sunset-400: #ff9a6e;
  --sunset-500: #ff7a45;
  --sunset-600: #ff5722;
  --sunset-700: #e64a19;
  --sunset-800: #bf360c;
  --sunset-900: #9c2a0a;

  /* Sand Colors */
  --sand-50: #fefbf7;
  --sand-100: #fdf7ef;
  --sand-200: #f9edd8;
  --sand-300: #f5e2c1;
  --sand-400: #f0d4a4;
  --sand-500: #e6c38c;
  --sand-600: #d4ad6d;
  --sand-700: #c19150;
  --sand-800: #a67339;
  --sand-900: #8c5e2e;

  /* Coral Colors */
  --coral-50: #fff0f0;
  --coral-100: #ffe1e1;
  --coral-200: #ffc7c7;
  --coral-300: #ffa0a0;
  --coral-400: #ff7878;
  --coral-500: #ff5252;
  --coral-600: #ff3d3d;
  --coral-700: #e53935;
  --coral-800: #c62828;
  --coral-900: #b71c1c;

  /* Beige Colors */
  --beige-50: #fefdf9;
  --beige-100: #fdf9f3;
  --beige-200: #f8f0e3;
  --beige-300: #f2e4d0;
  --beige-400: #e8d5b9;
  --beige-500: #ddc59f;
  --beige-600: #ceb182;
  --beige-700: #bd9c69;
  --beige-800: #a88653;
  --beige-900: #8c6e43;

  /* LINE Color */
  --line-green: #06c755;
  --line-green-hover: #05a748;
}

body {
  background-color: var(--beige-50);
  color: var(--foreground);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* Buttons */
.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--line-green);
  color: white;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
  padding: 0.5rem 1.25rem;
}

/* ボタン内のテキストとアイコンの間隔を調整 */
.button-text {
  margin-left: 0.5rem; /* LINEボタン内のアイコンとテキストの間隔 */
}

.phone-button i {
  margin-left: 0.75rem; /* 電話ボタン内のアイコンとテキストの間隔を広げる */
}

.line-button i {
  font-size: 1rem; /* メッセージアイコンのサイズ調整 */
}

.line-button:hover {
  background-color: var(--line-green-hover);
}

.line-button.small {
  font-size: 0.875rem;
  padding: 0.375rem 1.25rem;
}

.line-button.large {
  font-size: 1.125rem;
  padding: 1.5rem 1.5rem;
}

.line-button.full {
  width: 100%;
  padding: 0.75rem 0.5rem;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sunset-500);
  color: white;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
  padding: 0.5rem 1.25rem;
}

.phone-button:hover {
  background-color: var(--sunset-600);
}

.phone-button.full {
  width: 100%;
  padding: 0.75rem 0.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--sand-100);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img,
.custom-logo {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 200px;
  transition: opacity 0.3s ease;
}

.logo img:hover,
.custom-logo:hover {
  opacity: 0.9;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  text-decoration: none;
}

.header-image {
  max-height: 40px;
  width: auto;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-text {
  max-width: 32rem;
  color: white;
}

.location-badge {
  display: inline-block;
  background-color: var(--sunset-500);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.location-bold {
  font-weight: bold;
  font-size: 0.875rem;
}

.location-normal {
  font-size: 0.75rem;
}

.hero-title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-title-highlight {
  color: var(--sunset-400);
}

.hero-description {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description .highlight {
  font-weight: bold;
  color: var(--sunset-400);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

.cta-text {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.cta-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* Concerns Section */
.concerns {
  background-color: var(--beige-50);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.concerns-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.concern-card {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--sand-100);
  transition: all 0.3s ease;
}

.concern-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.concern-icon {
  margin-right: 1rem;
  margin-top: 0.25rem;
  color: var(--sunset-500);
}

.concern-text {
  font-size: 1.125rem;
}

.intro-card {
  margin-bottom: 3rem;
  border-radius: 0.75rem;
  background-color: var(--sand-50);
  padding: 1.75rem;
  border: 1px solid var(--sand-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.intro-image img {
  height: 16rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-text {
  width: 100%;
}

.intro-lead {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.intro-highlight {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--sunset-600);
}

.solution-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.solution-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--sand-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.solution-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.solution-icon {
  margin-right: 1rem;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--sunset-50);
}

.solution-icon i {
  font-size: 2rem;
  color: var(--sunset-600);
}

.solution-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--sunset-600);
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}

.solution-highlight {
  padding: 1rem;
  background-color: var(--sand-50);
  border-radius: var(--radius);
  border: 1px solid var(--sand-100);
}

.solution-bold {
  font-weight: bold;
  color: var(--sunset-700);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  background-color: var(--sand-50);
  border-radius: var(--radius);
  border: 1px solid var(--sand-100);
}

.feature i {
  margin-bottom: 0.5rem;
  height: 1.5rem;
  width: 1.5rem;
  color: var(--sunset-500);
}

.feature p {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
}

.summary-card {
  margin-bottom: 3.5rem;
  border-radius: 0.75rem;
  background-color: var(--sunset-900);
  padding: 2rem;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.summary-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.summary-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.summary-image img {
  height: 16rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.summary-text {
  width: 100%;
  text-align: left;
}

.summary-lead {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.summary-bold {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.call-to-action {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.divider {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider::before {
  content: "";
  height: 0.125rem;
  width: 6rem;
  background-color: var(--sunset-300);
}

.call-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.call-title span {
  display: block;
  white-space: nowrap;
}

.call-image {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.call-image img {
  height: 16rem;
  width: 100%;
  max-width: 28rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.call-text {
  font-size: 1.125rem;
  text-align: left;
  margin-bottom: 1rem;
}

.call-text p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-content {
    flex-direction: row;
  }

  .intro-image {
    width: 40%;
  }

  .intro-text {
    width: 60%;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-content {
    flex-direction: row;
  }

  .summary-image {
    width: 40%;
  }

  .summary-text {
    width: 60%;
  }

  .call-title {
    font-size: 1.5rem;
  }

  .solution-content {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .concerns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Features Section */
.features {
  background-image: linear-gradient(to bottom, var(--sand-100), white);
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.feature-header {
  position: relative;
  margin: 0 auto 5rem;
  max-width: 48rem;
}

.trophy-icon {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--sunset-100);
  opacity: 0.3;
}

.feature-header .section-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
}

.feature-header .section-title span {
  color: var(--sunset-500);
}

.feature-description {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--sunset-700);
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
}

.gradient-divider {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 6rem;
  height: 0.375rem;
  background-image: linear-gradient(to right, var(--sunset-300), var(--sunset-500), var(--sunset-300));
  border-radius: 9999px;
}

.trainers-grid {
  display: grid;
  gap: 3rem;
}

.trainer-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.trainer-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.trainer-background {
  position: absolute;
  top: -4rem;
  right: -4rem;
  height: 10rem;
  width: 10rem;
  border-radius: 9999px;
  background-color: var(--sunset-100);
  opacity: 0.5;
  transition: all 0.5s ease;
}

.trainer-card:hover .trainer-background {
  background-color: var(--sunset-200);
}

.trainer-content {
  position: relative;
  z-index: 10;
  padding: 0.25rem;
}

.trainer-header {
  background-image: linear-gradient(to right, var(--sunset-500), var(--sunset-600));
  padding: 1.5rem;
  color: white;
  text-align: center;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.trainer-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.trainer-position {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.trainer-position i {
  margin-right: 0.5rem;
  height: 1rem;
  width: 1rem;
}

.trainer-body {
  display: flex;
  flex-direction: column;
}

/* トレーナー画像のスタイルを修正 - 完全な円形表示に最適化 */
.trainer-image {
  background-image: linear-gradient(to bottom right, var(--sunset-50), var(--sand-100));
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.trainer-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* ホバー時のエフェクト */
.trainer-card:hover .trainer-image img {
  transform: scale(1.05);
  border-color: var(--sunset-100);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.trainer-details {
  padding: 1.5rem;
}

.trainer-awards {
  margin-bottom: 1.25rem;
}

.awards-title {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--sunset-700);
}

.awards-title i {
  margin-right: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
  color: var(--sunset-500);
}

.awards-list {
  max-height: 10rem;
  overflow-y: auto;
  border-radius: var(--radius);
  border: 1px solid var(--sand-200);
  background-color: var(--sand-50);
  padding: 1rem;
}

.award {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.award:last-child {
  margin-bottom: 0;
}

.award-dot {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background-color: var(--sunset-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-dot::after {
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: var(--sunset-500);
}

.award-text {
  font-size: 0.875rem;
}

.award-title {
  font-weight: 500;
}

.award-result {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.award-result.highlight {
  font-weight: bold;
  color: var(--sunset-600);
}

.trainer-message {
  border-radius: var(--radius);
  background-color: var(--sand-50);
  padding: 1rem;
  border: 1px solid var(--sand-200);
}

.trainer-message p {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.5;
}

/* トレーナーカードのレイアウト調整 */
@media (min-width: 768px) {
  .trainer-body {
    flex-direction: row;
  }

  .trainer-image {
    width: 40%;
    padding: 2rem;
  }

  .trainer-details {
    width: 60%;
  }
}

/* モバイル表示の最適化 */
@media (max-width: 767px) {
  .trainer-image {
    padding: 2rem;
  }

  .trainer-image img {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .feature-header .section-title {
    font-size: 3.75rem;
  }
}

/* Transformations Section */
.transformations {
  background-color: white;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.transformations-grid {
  display: grid;
  gap: 2rem;
}

.transformation-card {
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: var(--sand-50);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sand-100);
  transition: all 0.3s ease;
}

.transformation-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.transformation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  margin-bottom: 0.75rem;
}

.client-info {
  font-weight: bold;
}

.training-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.before-after {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0 1.5rem;
}

.before,
.after {
  position: relative;
  width: 50%;
}

.image-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  z-index: 10;
}

.after .image-label {
  background-color: var(--sunset-500);
}

.image-container {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--sand-200);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0 1.5rem;
}

.result-before,
.result-after {
  text-align: center;
}

.result-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.result-value {
  font-weight: bold;
}

.result-fat {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.result-arrow {
  color: var(--sunset-500);
  height: 1rem;
  width: 1rem;
}

.achievement {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.achievement span {
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--sunset-100);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--sunset-700);
}

.fat-reduction {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.testimonial {
  padding: 1rem;
  background-color: white;
  border-radius: var(--radius);
  border: 1px solid var(--sand-100);
  margin: 0 1.5rem 1.5rem;
}

.testimonial p {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .transformations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .transformations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Section */
.cta-section {
  background-image: linear-gradient(to right, var(--sunset-600), var(--coral-500));
  padding-top: 5rem;
  padding-bottom: 7rem;
  color: white;
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
}

.cta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
}

.cta-description {
  margin: 0 auto 1rem;
  max-width: 32rem;
  font-size: 1.125rem;
}

.cta-description .bold {
  font-weight: bold;
  white-space: nowrap;
}

.cta-note {
  color: #ffeb3b;
  font-weight: 500;
  margin-bottom: 2rem;
}

.benefits {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  margin-right: 1rem;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
  height: 1.25rem;
  width: 1.25rem;
  color: white;
}

.benefit-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.8);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 32rem;
  margin: 1rem auto 0;
}

.contact-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.line-card .card-icon {
  background-color: rgba(6, 199, 85, 0.1);
}

.line-card:hover .card-icon {
  background-color: rgba(6, 199, 85, 0.2);
}

.phone-card .card-icon {
  background-color: var(--sunset-50);
}

.phone-card:hover .card-icon {
  background-color: var(--sunset-100);
}

.line-svg {
  height: 2rem;
  width: 2rem;
  color: var(--line-green);
}

.card-icon i {
  font-size: 2rem;
}

.phone-card .card-icon i {
  color: var(--sunset-600);
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #4a4a4a;
}

.card-description {
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.line-offer {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.offer-image {
  width: 33.333%;
}

.offer-image img {
  height: 6rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #e5e5e5;
}

.offer-text {
  width: 66.667%;
  padding-left: 0.75rem;
  text-align: left;
}

.offer-text p {
  font-size: 0.875rem;
  font-weight: bold;
  color: #4a4a4a;
}

.free {
  color: var(--line-green);
}

.hours {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* CTAセクションの電話予約ボタン */
.contact-card .phone-button i {
  margin-left: 0.75rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  color: #4a4a4a;
}

.footer-content {
  display: grid;
  gap: 2.5rem;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.company-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-item i {
  margin-right: 0.75rem;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  color: var(--sunset-500);
}

.info-label {
  font-weight: 500;
  color: #4a4a4a;
}

.info-value {
  color: #4a4a4a;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.25rem;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 20rem;
}

/* 既存のLINEアイコンスタイルを修正 */
.line-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.75rem; /* 間隔を広げる */
}

.line-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.5rem;
}

.copyright {
  margin-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* WordPress Specific Styles */
.site-main {
  padding: 4rem 0;
}

.page-header,
.entry-header {
  margin-bottom: 2rem;
}

.page-title,
.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-content,
.entry-content {
  margin-bottom: 2rem;
}

.page-thumbnail,
.post-thumbnail {
  margin-bottom: 2rem;
}

.entry-meta {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.entry-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cat-links,
.tags-links,
.comments-link {
  display: block;
  margin-bottom: 0.5rem;
}

.archive-posts {
  display: grid;
  gap: 2rem;
}

.search-results {
  display: grid;
  gap: 2rem;
}

.error-404 {
  text-align: center;
  padding: 4rem 0;
}

.error-home-link {
  margin-top: 2rem;
}

.error-home-link .button {
  display: inline-block;
  background-color: var(--sunset-500);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.error-home-link .button:hover {
  background-color: var(--sunset-600);
}

@media (min-width: 768px) {
  .archive-posts,
  .search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .archive-posts,
  .search-results {
    grid-template-columns: repeat(3, 1fr);
  }
}
