@charset "UTF-8";
/**
 * かみさま縁結びLP - PC版CSS
 * Width: 100% (デスクトップ)
 * Figmaデザインから正確に再現
 */

/* ==========================================================================
   CSS Variables (カスタムプロパティ)
   ========================================================================== */
:root {
  /* カラーパレット */
  --color-primary: #c1272d;
  --color-secondary: #464646;
  --color-accent: #f298a8;
  --color-accent-2: #44ebcf;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #999999;
  --color-gray-dark: #333333;

  /* フォント設定 */
  --font-family: "Shippori Mincho", serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --font-size-5xl: 36px;
  --font-size-6xl: 48px;
  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-loose: 1.8;

  /* スペーシング */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;

  /* ブレークポイント */
  --breakpoint-sm: 768px;
  --breakpoint-md: 1200px;

  /* アニメーション */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* シャドウ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* ボーダー */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-full: 50%;
}

/* ==========================================================================
   Utility Classes (ユーティリティクラス)
   ========================================================================== */

/* テキスト関連 */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.text-primary {
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-white {
  color: var(--color-white);
}

.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}

/* スペーシング */
.m-0 {
  margin: 0;
}
.mt-sm {
  margin-top: var(--spacing-sm);
}
.mt-md {
  margin-top: var(--spacing-md);
}
.mt-lg {
  margin-top: var(--spacing-lg);
}
.mb-sm {
  margin-bottom: var(--spacing-sm);
}
.mb-md {
  margin-bottom: var(--spacing-md);
}
.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.p-sm {
  padding: var(--spacing-sm);
}
.p-md {
  padding: var(--spacing-md);
}
.p-lg {
  padding: var(--spacing-lg);
}

/* フレックスボックス */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* 表示・非表示 */
.hidden {
  display: none;
}
.visible {
  display: block;
}

/* アニメーション */
.transition {
  transition: var(--transition-base);
}
.transition-fast {
  transition: var(--transition-fast);
}
.transition-slow {
  transition: var(--transition-slow);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-enmusubi {
  font-family: var(--font-family);
  color: var(--color-secondary);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-white);
}

.lp-wrapper {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   セクション: ファーストビュー (First View)
   ========================================================================== */

/* メインコンテナ */
.fv {
  position: relative;
  width: 100%;
  height: 719px;
  margin: 0 auto;
  overflow: hidden;
}

/* 背景画像コンテナ */
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 719px;
  z-index: 1;
}

.fv__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 1) 95%
  );
  z-index: 1;
}

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

.fv__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 719px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* ラベル部分 */
.fv__label-wrapper {
  position: relative;
  width: 100%;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv__label-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 89px;
  background: rgba(248, 243, 242, 0.8);
  filter: blur(20px);
  -webkit-filter: blur(20px);
  z-index: 1;
}

.fv__label {
  position: relative;
  z-index: 2;
  width: 476px;
  height: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #bf3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メインコンテンツ */
.fv__main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}

/* テキストグループ */
.fv__text-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fv__ellipse {
  position: absolute;
  left: -66px;
  top: 3px;
  width: 225px;
  height: 390px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 1;
}

.fv__main-text {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fv__title-svg {
  width: auto;
  height: 500px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

.fv__text-1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: -0.02em;
  writing-mode: vertical-rl;
  color: #464646;
  width: 40px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgb(255, 255, 255),
    0 0 30px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 1);
}

.fv__text-2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -0.02em;
  writing-mode: vertical-rl;
  color: #464646;
  width: 40px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.3);
}

/* タイトル部分 */
.fv__title-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  flex: 1;
}

.fv__title {
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 1),
    0px 0px 11px rgba(255, 255, 255, 1), 0px 0px 17px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   キャンペーンセクション
   ========================================================================== */
.campaign {
  width: 100%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2)
    ),
    url("../images/enmusubi/campaign-bg.png") center/cover no-repeat;
  padding: 100px 0;
}

.campaign__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
}

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

.campaign__header {
  width: 686px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.decoration-torii {
  width: 33px;
  height: 32.19px;
}

.decoration-ashirai {
  width: 33px;
  height: 33px;
  margin: 0 auto 16px;
  display: block;
}

.campaign__logo {
  width: auto;
  height: 60px;
  margin: 0 auto 30px;
  display: block;
}

.campaign__title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  padding: 24px 0;
}

.campaign__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  color: #464646;
  margin: 0;
}

.campaign__decoration {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.campaign__details {
  width: 686px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campaign__subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
  margin-top: 32px;
}

.campaign__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.campaign__text p {
  margin: 0 0 1em;
}

.campaign__text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CTAセクション
   ========================================================================== */
.cta {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.cta__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
}

.cta__deadline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.cta__deadline-text {
  font-size: 40px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: #bf3a3a;
  text-align: center;
}

.cta__deadline-line {
  width: 140px;
  height: 1px;
  background: #c1272d;
  border: none;
  margin: 0;
}

.cta__content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.cta__text-area {
  width: 558px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: #464646;
}

.cta__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: #464646;
}

.cta__image {
  width: 362px;
  height: 407px;
  flex-shrink: 0;
}

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

/* CTAボタン - 共通スタイル */
.cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  width: 400px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-2xl);
  font-weight: 400;
  line-height: 1.917;
  text-decoration: none;
  margin: 0 auto;
  transition: var(--transition-base);
  border-radius: 0;
  cursor: pointer;
}

.cta__button:hover {
  background: #a03030; /* ホバー時の色は変数化せずに明示的に指定 */
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.cta__arrow {
  font-size: 16px;
  color: white;
}

/* ==========================================================================
   セクション2: お金も人脈もある
   ========================================================================== */
.sec2 {
  width: 100%;
  padding: 100px 0;
  background: #fafafa;
}

.sec2__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.sec2__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 158px;
}

/* セクションタイトル - 共通スタイル */
.section-title {
  font-size: var(--font-size-5xl);
  font-weight: 400;
  line-height: var(--line-height-tight);
  text-align: center;
  color: var(--color-secondary);
}

.section-title__small {
  font-size: var(--font-size-3xl);
}

.sec2__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.sec2__lead {
  width: 686px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.sec2__benefits {
  display: flex;
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.benefit-card {
  width: 311px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-card__image {
  width: 311px;
  height: 196px;
  overflow: hidden;
}

.benefit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.sec2__conclusion {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

/* ==========================================================================
   セクション3: かみさま縁結びとは
   ========================================================================== */
.sec3 {
  position: relative;
  width: 100%;
  padding: 100px 0;
  min-height: 905px;
}

.sec3__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
}

.sec3__bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 408.73px;
  height: 445.59px;
  background: url("../images/enmusubi/sec3-decoration.svg") no-repeat;
  background-size: contain;
}

.sec3__inner {
  position: relative;
  z-index: 2;
  /* width: 1440px; */
  margin: 0 auto;
  /* padding: 0 220px; */
  box-sizing: border-box;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.sec3__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sec3__image {
  width: 784px;
  height: 361px;
}

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

.sec3__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sec3__subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
}

.sec3__description {
  width: 784px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #464646;
}

.badge {
  background: #c1272d;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.badge-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}

.badge--vertical {
  font-size: 40px;
  line-height: 1.27;
  padding: 12px 11px;
  display: inline-block;
  width: auto;
  writing-mode: vertical-rl;
}

.badge--horizontal {
  font-size: 36px;
  line-height: 1.27;
  padding: 12px 15px;
  width: auto;
  writing-mode: vertical-rl;
}

.badge--white {
  background: #c1272d;
  color: #ffffff;
}

/* セクション7専用バッジスタイル */
.badge--sec7.badge--vertical {
  font-size: 24px;
  line-height: 1.27;
  padding: 12px 11px;
  display: inline-block;
  width: auto;
  writing-mode: vertical-rl;
}

.badge--sec7.badge--horizontal {
  font-size: 36px;
  line-height: 1.27;
  padding: 12px 15px;
  width: auto;
  writing-mode: vertical-rl;
}

.sec3__badge-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ==========================================================================
   セクション4: 得られる8つのご利益
   ========================================================================== */
.sec4 {
  width: 100%;
  padding: 100px 0;
  background: rgba(248, 243, 242, 0.72);
  position: relative;
}

.sec4__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.sec4__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec4__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.sec4__row {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 312px;
}

.benefit-item__image {
  width: 312px;
  height: 196px;
  overflow: hidden;
}

.benefit-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 311px;
}

.benefit-item__title {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
  width: 311px;
}

.benefit-item__mark {
  width: 2px;
  height: 18px;
  background: #c1272d;
  flex-shrink: 0;
  margin-top: 5px;
}

.benefit-item__text {
  width: 312px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
}

/* ==========================================================================
   セクション5: 体験者の声
   ========================================================================== */
.sec5 {
  width: 100%;
  padding: 136px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec5__inner {
  display: flex;
  align-items: center;
  gap: 19px;
}

.sec5__slider-container {
  width: 1245px;
  height: auto;
  max-height: 450px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c1272d #f5f5f5;
  padding-bottom: 10px;
}

.sec5__slider-container::-webkit-scrollbar {
  height: 8px;
}

.sec5__slider-container::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

.sec5__slider-container::-webkit-scrollbar-thumb {
  background: #c1272d;
  border-radius: 4px;
}

.sec5__slider-container::-webkit-scrollbar-thumb:hover {
  background: #a03030;
}

.sec5__slider {
  display: flex;
  gap: 13.51px;
  padding: 8px;
  height: auto;
  width: max-content;
  align-items: stretch;
}

.testimonial-card {
  width: 249.12px;
  background: #ffffff;
  border: 1px solid #9e9e9e;
  display: flex;
  flex-direction: column;
  gap: 29.26px;
  padding: 9px;
  box-sizing: border-box;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card__image {
  width: 100%;
  height: 159.45px;
  min-height: 159.45px;
  max-height: 159.45px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
  flex-shrink: 0;
}

.testimonial-card__image-placeholder {
  width: 100%;
  height: 159.45px;
  min-height: 159.45px;
  max-height: 159.45px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.testimonial-card__content {
  display: flex;
  flex-direction: column;
  gap: 8.25px;
  flex: 1;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 9.38px;
}

.testimonial-card__age,
.testimonial-card__gender {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.437;
  color: #191919;
}

.testimonial-card__text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.802;
  color: #191919;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px;
  background: #c1272d;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-card__button:hover {
  background: #a03030;
}

.testimonial-card__button span {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.437;
  color: #ffffff;
}

/* モーダル */
.testimonial-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.testimonial-modal.is-open {
  display: flex;
}

.testimonial-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.testimonial-modal__content {
  position: relative;
  z-index: 10000;
  max-width: 90vw;
  max-height: 90vh;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #191919;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.testimonial-modal.is-open .testimonial-modal__close {
  opacity: 1;
  visibility: visible;
}

.testimonial-modal__close:hover {
  background: #c1272d;
  color: #ffffff;
}

.testimonial-modal__image {
  max-width: 600px;
  max-height: 80vh;
  min-width: 400px;
  min-height: 500px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
}

.testimonial-modal__image-placeholder {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.testimonial-modal__image-placeholder img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 0;
}

/* ==========================================================================
   セクション6: 保証サービス
   ========================================================================== */
.sec6 {
  width: 100%;
  padding: 100px 0;
  background: #f8f3f2;
}

.sec6__title-subsub {
  font-size: 26px;
}

.sec6__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 106px;
}

.sec6__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sec6__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.sec6__lead {
  width: 686px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.sec6__services {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.sec6__services-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.service-card {
  width: 312px;
  height: 396px;
  position: relative;
}

.service-card__image {
  width: 312px;
  height: 196px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  position: absolute;
  left: 12px;
  top: 164px;
  width: 288px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-card__title {
  width: 265px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.service-card__line {
  width: 40px;
  height: 2px;
  background: #c1272d;
  border: none;
  margin: 16px 0;
}

.service-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
  text-align: left;
}

.sec6__reassurance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.sec6__reassurance-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #464646;
}

.sec6__reassurance-box {
  width: 100%;
  padding: 32px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.sec6__reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-item__icon {
  width: 22.5px;
  height: 22.5px;
  flex-shrink: 0;
}

.check-item__text {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #464646;
}

.sec6__reassurance-text {
  width: 686px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

/* ==========================================================================
   セクション区切り画像
   ========================================================================== */
.section-divider {
  width: 100%;
  height: 538px;
  overflow: hidden;
  position: relative;
}

.section-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* モバイル用バッジグループ（PC版では非表示） */
.sec7__badge-group--mobile {
  display: none;
}

/* ==========================================================================
   セクション7: 唯一無二の存在
   ========================================================================== */
.sec7 {
  position: relative;
  width: 100%;
  min-height: 562px;
  background: #ffffff;
  padding: 80px 0;
}

.sec7__bg-white {
  display: none;
}

.sec7__inner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  padding: 0 296px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.sec7__text {
  width: 736px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.03em;
  color: #464646;
  flex-shrink: 0;
}

.sec7__text p {
  margin: 0 0 1.5em;
}

.sec7__text p:last-child {
  margin-bottom: 0;
}

.sec7__badge-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-top: -194px;
  align-items: flex-start;
}

/* ==========================================================================
   セクション8: かみさま縁結びのはじまり
   ========================================================================== */
.sec8 {
  position: relative;
  width: 100%;
  min-height: 1607px;
  background: #ffffff;
  padding: 100px 0;
}

.sec8__bg-pattern {
  position: absolute;
  left: 0;
  top: 130px;
  width: 732.78px;
  height: 463px;
  background: #ffffff;
  background-image: url("../images/enmusubi/sec8-pattern.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.sec8__inner {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  padding: 0 110px;
  box-sizing: border-box;
  z-index: 2;
}

.sec8__top-section {
  position: relative;
  margin-bottom: 60px;
}

.sec8__top-image {
  position: absolute;
  left: 0;
  top: 216px;
  width: 498px;
  height: 498px;
}

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

.sec8__badge-wrapper {
  position: absolute;
  left: 38px;
  top: 0;
}

.sec8__main-content {
  margin-left: 678px;
  width: 522px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 0;
}

.sec8__image {
  width: 522px;
  height: 349px;
  overflow: hidden;
}

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

.sec8__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
  margin-bottom: 24px;
}

.sec8__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #464646;
}

.sec8__achievements {
  position: relative;
  width: auto;
  min-width: 400px;
  max-width: 800px;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
}

.sec8__achievements-content {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border: solid 2px #cfad70;
  background: #ffffff;
  box-sizing: border-box;
  width: auto;
  min-width: 400px;
  max-width: 800px;
}

.sec8__achievements-content::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: solid 1px #cfad70;
  z-index: 1;
  pointer-events: none;
}

.sec8__achievements-decoration {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 3;
}

.sec8__achievements-decoration .decoration-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec8__achievements-decoration.decoration-tl {
  top: 12px;
  left: 12px;
  transform: rotate(-90deg);
}

.sec8__achievements-decoration.decoration-tr {
  top: 12px;
  right: 12px;
  transform: rotate(0deg);
}

.sec8__achievements-decoration.decoration-bl {
  bottom: 12px;
  left: 12px;
  transform: rotate(180deg);
}

.sec8__achievements-decoration.decoration-br {
  bottom: 12px;
  right: 12px;
  transform: rotate(90deg);
}

.sec8__achievements-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.sec8__achievements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.achievement-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.achievement-item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
}

.achievement-highlight {
  color: #c1272d;
  font-weight: 500;
}

.sec8__image--PC {
  display: block;
}
.sec8__image--SP {
  display: none;
}
/* ==========================================================================
   セクション9: 守っていただく内容
   ========================================================================== */
.sec9 {
  width: 100%;
  padding: 80px 0;
  background: url("../images/enmusubi/back.jpg") center/cover no-repeat;
}

.sec9__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 270px;
  box-sizing: border-box;
}

.sec9__box {
  padding: 40px 144px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec9__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.sec9__notice {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
  margin-bottom: 20px;
}

.sec9__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

.sec9__rules {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 574px;
}

.sec9__line {
  width: 100%;
  height: 1px;
  background: #cecece;
  border: none;
}

.sec9__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec9__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec9__bullet {
  width: 6px;
  height: 6px;
  background: #c1272d;
  border-radius: 50%;
  flex-shrink: 0;
}

.sec9__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #464646;
}

.sec9__warning {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
  margin-top: 20px;
}

/* ==========================================================================
   セクション10: 価格・プラン
   ========================================================================== */
.sec10 {
  width: 100%;
  padding: 100px 219px;
  background: #f8f3f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec10__inner {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.sec10__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.sec10__header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.sec10__decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 34px;
}

.sec10__plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.plan-card {
  width: 100%;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.plan-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
  margin-bottom: 24px;
}

.plan-card__image {
  width: 338px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 522px;
}

.plan-card__stars {
  display: flex;
  align-items: center;
}

.plan-card__star-icon {
  width: 28px;
  height: 19px;
  flex-shrink: 0;
}

.plan-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
}

.plan-card__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #464646;
}

.plan-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-card__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  white-space: nowrap;
  min-width: 72px;
}

.plan-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  flex: 1;
}

.plan-card__price {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  flex: 1;
}

.plan-card__price--sale {
  font-weight: 700;
  color: #c1272d;
  font-size: 18px;
}

.plan-card__row--full {
  flex-direction: column;
  gap: 0;
}

.plan-card__note {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  margin-top: 12px;
  width: 522px;
}

.sec10__additional {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 800px;
}

.sec10__additional-box {
  width: 100%;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sec10__additional-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sec10__additional-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  text-align: left;
}

.sec10__additional-line {
  width: 100%;
  height: 1px;
  background: #cecece;
  border: none;
  margin: 0;
}

.sec10__additional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  text-align: left;
}

.sec10__additional-list li {
  margin-bottom: 8px;
}

.sec10__additional-image {
  height: 210px;
  overflow: hidden;
}

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

.sec10__supplement {
  width: 613px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
  text-align: left;
}

/* ==========================================================================
   セクション11: 神様縁結びの流れ
   ========================================================================== */
.sec11 {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}

.sec11__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

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

.sec11__flow {
  position: relative;
}

.sec11__flow-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 674px;
  background: #f8f3f2;
  border-radius: 48px;
}

.sec11__flow-steps {
  position: relative;
  margin-left: 4px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-step {
  display: flex;
  gap: 8px;
}

.flow-step__number {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 0;
  height: 42px;
}

.flow-step__circle {
  width: 20px;
  height: 20px;
  background: #c1272d;
  border-radius: 50%;
}

.flow-step__line {
  width: 53px;
  height: 1px;
  background: transparent;
  border-top: 1px dashed #c1272d;
}

.flow-step__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.flow-step__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.flow-step__label {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
}

.flow-step__mark {
  width: 3px;
  height: 24px;
  background: #c1272d;
}

.flow-step__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
}

.flow-step__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #464646;
}

/* ==========================================================================
   セクション12: よくあるご質問
   ========================================================================== */
.sec12 {
  width: 100%;
  padding: 100px 0 80px;
  background: #f8f3f2;
}

.sec12__inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 220px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

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

.sec12__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.sec12__faqs {
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 24px 40px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(193, 39, 45, 0.1);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.faq-item__q-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 674px;
}

.faq-item__q-mark {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.448;
  letter-spacing: 0.05em;
  color: #464646;
  flex-shrink: 0;
}

.faq-item__q-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.448;
  letter-spacing: 0.05em;
  color: #3a2c24;
}

.faq-item__toggle {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-item__toggle-icon {
  width: 100%;
  height: 100%;
  background: #c1272d;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-item__toggle-icon.is-open {
  transform: rotate(180deg);
}

.faq-item__toggle-icon::before,
.faq-item__toggle-icon::after {
  content: "";
  position: absolute;
  left: 3.75px;
  top: 8px;
  width: 10.8px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-item__toggle-icon::after {
  transform: rotate(90deg);
}

.faq-item__toggle-icon.is-open::after {
  opacity: 0;
}

.faq-item__line {
  width: 720px;
  height: 0;
  border: none;
  border-top: 1px dashed #cecece;
  margin: 24px 0;
}

.faq-item__answer {
  display: flex;
  gap: 8px;
  width: 720px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.faq-item.is-open .faq-item__answer {
  margin-top: 20px;
}

.faq-item__a-mark {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.448;
  letter-spacing: 0.05em;
  color: #c1272d;
  flex-shrink: 0;
}

.faq-item__a-text {
  width: 701px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.448;
  letter-spacing: 0.05em;
  color: #3a2c24;
}

.sec12__closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 558px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sec12__closing-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #464646;
  text-align: center;
}

.sec12__closing-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
  color: #464646;
}

/* ==========================================================================
   装飾アイコン（鳥居マーク）
   ========================================================================== */
.decoration-torii {
  width: 35px;
  height: 34px;
  background: url("../images/enmusubi/torii-icon.svg") center/contain no-repeat;
  margin: 0 auto;
}

.decoration-torii--top {
  margin-bottom: 16px;
}

.decoration-torii--bottom {
  margin-top: 16px;
}

/* ==========================================================================
   ユーティリティ
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-red {
  color: #c1272d;
}

.font-bold {
  font-weight: 700;
}

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.scroll-animate {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* 遅延アニメーション */
.scroll-animate--delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate--delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate--delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate--delay-4 {
  transition-delay: 0.4s;
}

/* より大きな浮き出し効果 */
.scroll-animate--large {
  transform: scale(1);
}

/* 左右からの浮き出し（その場からふわっと） */
.scroll-animate--left {
  transform: scale(1);
}

.scroll-animate--right {
  transform: scale(1);
}

.scroll-animate--left.is-visible,
.scroll-animate--right.is-visible {
  transform: scale(1);
}

/* スマホ専用要素は非表示 */
br.sp {
  display: none;
}
