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

/* カスタムプロパティ（CSS変数） */
:root {
  --brand-color: #702527;
  --brand-light: #8a3032;
  --brand-dark: #5c1e1f;
  --line-color: #06c755;
  --line-light: #07df5f;
  --line-dark: #05a648;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --amber-400: #fbbf24;
}

/* ベーススタイル */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
}

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

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-content {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-link {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-color);
  text-decoration: none;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: -0.25rem;
}

/* ボタンスタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--brand-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--brand-dark);
}

.btn-line {
  background-color: var(--line-color);
  color: var(--white);
}

.btn-line:hover {
  background-color: var(--line-dark);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ボタンサイズの最適化 */
.btn-cta {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-footer {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ヒーローセクションのボタンサイズ調整 */
.hero-content .btn-cta {
  display: none;
}

/* CTAセクションのボタンサイズ調整 */
.cta-buttons .btn-cta {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* フッターボタンのサイズ調整 */
.footer-actions .btn-footer {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 48px;
}

/* セクション共通スタイル */
.section {
  padding: 4rem 0;
}

.section-gray {
  background-color: var(--gray-50);
}

.section-brand-light {
  background-color: rgba(112, 37, 39, 0.05);
}

.section-cta {
  background-color: rgba(112, 37, 39, 0.1);
}

.section-content {
  max-width: 1024px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-block;
  background-color: var(--brand-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--brand-color);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

/* ヒーローセクション */
.hero {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85), transparent);
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--brand-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  width: fit-content;
  margin-top: 2rem;
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ヒーローセクションのLINEクーポン部分 */
.line-coupon-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.coupon-text {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
  margin: 0;
}

.coupon-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.original-price {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.coupon-label {
  font-size: 1.125rem;
  color: var(--brand-color);
  font-weight: 600;
}

.btn-hero-line {
  background-color: var(--line-color);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-hero-line:hover {
  background-color: var(--line-dark);
  transform: translateY(-1px);
}

.btn-hero-line .btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* 悩みセクション */
.worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.worry-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.worry-check {
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 1rem;
  height: 1rem;
}

.worry-image {
  position: relative;
  height: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.empathy-message {
  text-align: center;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empathy-message p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.empathy-highlight {
  font-size: 1.125rem;
  color: var(--brand-color);
  font-weight: 500;
}

/* 解決策セクション */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.solution-image {
  position: relative;
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.solution-text-large {
  font-size: 1.125rem;
  color: var(--gray-700);
}

.solution-text {
  color: var(--gray-700);
}

.solution-highlight {
  background-color: rgba(112, 37, 39, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

.solution-highlight p {
  color: var(--brand-color);
  font-weight: 500;
}

/* 強みセクション */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
}

.reason-image {
  width: 33.333333%;
  position: relative;
  height: 192px;
}

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

.reason-content {
  width: 66.666667%;
  padding: 1.5rem;
}

.reason-title {
  font-weight: 500;
  color: var(--brand-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.reason-text {
  color: var(--gray-700);
}

/* 手に入る未来セクション */
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.future-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.benefit-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(112, 37, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.benefit-check .check-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brand-color);
}

.future-highlight {
  background-color: rgba(112, 37, 39, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.future-highlight p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--brand-color);
}

.future-image {
  position: relative;
  height: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

/* お客様の声セクション */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background-color: var(--white);
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.review-avatar {
  flex-shrink: 0;
}

.review-avatar img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-content {
  flex: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.review-name {
  font-weight: 500;
  color: var(--gray-900);
}

.review-info {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  color: var(--brand-color);
}

.review-text {
  color: var(--gray-700);
  line-height: 1.6;
}

/* オーナー紹介セクション */
.owner-card {
  background-color: rgba(112, 37, 39, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}

.owner-profile {
  width: 33.333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owner-avatar {
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-color);
  margin-bottom: 0.5rem;
}

.owner-title {
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 1rem;
}

.owner-details {
  width: 66.666667%;
}

.owner-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.owner-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-color);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.info-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.info-value {
  color: var(--gray-700);
}

.owner-interests {
  margin-bottom: 1.5rem;
}

.interest-section {
  margin-bottom: 1.5rem;
}

.interest-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.interest-title {
  font-weight: 500;
  color: var(--gray-700);
}

.interest-text {
  color: var(--gray-700);
  padding-left: 1.75rem;
}

.food-tags {
  padding-left: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.food-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid var(--gray-200);
}

.tag-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--brand-color);
}

/* 初めての方へセクション */
.greeting-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.greeting-quote {
  background-color: rgba(112, 37, 39, 0.05);
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.quote-text {
  color: var(--gray-700);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}

.quote-question {
  color: var(--gray-700);
  margin-top: 1rem;
}

.greeting-text {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.greeting-emphasis {
  font-weight: 500;
}

.salon-info {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.salon-image {
  width: 33.333333%;
}

.salon-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.salon-description {
  width: 66.666667%;
}

/* CTA/特典セクション */
.cta-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-promise {
  color: var(--brand-color);
  font-weight: 500;
  font-size: 1.125rem;
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.cta-info {
  text-align: center;
  color: var(--gray-600);
}

.cta-info p {
  margin-bottom: 0.5rem;
}

.cta-info-small {
  font-size: 0.875rem;
}

.contact-details {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

/* フッター */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.footer-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-300);
}

.footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-note {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-actions .btn {
  width: 100%;
}

.footer-copyright {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 64rem;
  max-height: 90vh;
  width: 90vw;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--white);
  border-radius: 50%;
  padding: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: none;
  cursor: pointer;
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-800);
}

.modal-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: auto;
}

.modal-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

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

  .hero {
    height: 500px;
  }

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

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

  .worry-grid,
  .solution-grid,
  .future-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .worry-image,
  .solution-image,
  .future-image {
    height: 250px;
  }

  .reason-card {
    flex-direction: column;
  }

  .reason-image {
    width: 100%;
    height: 200px;
  }

  .reason-content {
    width: 100%;
  }

  .owner-card {
    flex-direction: column;
    text-align: center;
  }

  .owner-profile,
  .owner-details {
    width: 100%;
  }

  .owner-info-grid {
    grid-template-columns: 1fr;
  }

  .salon-info {
    flex-direction: column;
  }

  .salon-image,
  .salon-description {
    width: 100%;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-actions {
    align-items: stretch;
  }

  .btn-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-width: auto;
  }

  .hero-content .btn-cta {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    min-width: 260px;
    margin-bottom: -0.5rem; /* モバイルでもボタン下スペースを調整 */
  }

  .cta-buttons .btn-cta {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 52px;
  }

  .footer-actions .btn-footer {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  .hero-badge {
    margin-top: 1.5rem; /* モバイルでは 1rem から 1.5rem に調整 */
  }

  .line-coupon-section {
    gap: 0.5rem;
  }

  .coupon-text {
    font-size: 0.9375rem;
  }

  .coupon-label {
    font-size: 1rem;
  }

  .btn-hero-line {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    justify-content: center;
  }
}

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

  .section-title {
    font-size: 1.25rem;
  }

  .owner-avatar {
    width: 8rem;
    height: 8rem;
  }

  .btn-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-content .btn-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-width: 240px;
    margin-bottom: -0.375rem; /* 小さい画面でもボタン下スペースを調整 */
  }

  .cta-buttons .btn-cta {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    min-height: 48px;
  }

  .footer-actions .btn-footer {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    min-height: 40px;
  }

  .hero-badge {
    margin-top: 1.25rem; /* 小さい画面では 0.75rem から 1.25rem に調整 */
  }

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

  .coupon-label {
    font-size: 0.9375rem;
  }

  .btn-hero-line {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* WordPress管理バー対応 */
.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* 印刷スタイル */
@media print {
  .header,
  .footer,
  .modal,
  .btn {
    display: none !important;
  }

  .section {
    padding: 1rem 0;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}
