/* 共通設定 */
:root {
  --color-primary: #00615c;
  --color-primary-dark: #004541;
  --color-white: #fff;
  --color-accent: #e7ff01;
  --color-error: #ff6b6b;
  --color-green: #02b88c;
  --color-orange: #ff5937;

  /* フォントサイズの共通変数 */
  --font-xs: 12px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 20px;
  --font-xl: 24px;
  --font-xxl: 28px;
  --font-xxxl: 32px;
  --font-jumbo: 48px;
  --pc-font-xs: 14px;
  --pc-font-sm: 19px;
  --pc-font-md: 22px;
  --pc-font-lg: 24px;
  --pc-font-xl: 29px;
  --pc-font-xxl: 34px;
  --pc-font-xxxl: 38px;
  --pc-font-jumbo: 58px;
}

body {
  max-width: 450px;
  margin: auto;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.01em;
  background-color: var(--color-primary-dark);
}

img {
  width: 100%;
  height: auto;
  margin: auto;
}

a:visited {
  color: inherit;
}

/* utils */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 共通フォントサイズクラス */

.font-xs {
  font-size: var(--font-xs);
}

.font-sm {
  font-size: var(--font-sm);
}

.font-md {
  font-size: var(--font-md);
}

.font-lg {
  font-size: var(--font-lg);
}

.font-xl {
  font-size: var(--font-xl);
}

.font-xxl {
  font-size: var(--font-xxl);
}

.font-xxxl {
  font-size: var(--font-xxxl);
}

.font-jumbo {
  font-size: var(--font-jumbo);
}

.font14{
  font-size: 14px;
}

/* 共通のフォント関連スタイル */
.text-center {
  text-align: center;
}

.font-rounded {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.font-bold {
  font-weight: 800;
}

.font-normal {
  font-weight: 500;
}

.cp-arrows {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  .cp-arrow {
    /* 矢印の基本スタイル */
    position: absolute;

    /* top はアニメーションで指定するため、初期値は不要 */
    left: 50%;
    width: 35px;
    height: auto;
    opacity: 0;
    transform: translateX(-50%);
    
    
    
    
    
    
    
    
    
    
    

    &:first-child {
      animation: arrow-move-down 1s ease-in infinite;
      animation-delay: 0s;
    }

    &:nth-child(2) {
      animation: arrow-move-down 1s ease-in infinite;
      animation-delay: 0.33s;
    }

    &:nth-child(3) {
      animation: arrow-move-down 1s ease-in infinite;
      animation-delay: 0.67s;
    }
  }
}

.cp-arrows-container {
  display: flex;
  
  
  
  
  
  
  
  
  
  
  

  .cp-arrows:nth-child(1) {
    left: 20px;

    .cp-arrow {
      transform: translateX(50%);
    }
  }

  .cp-arrows:nth-child(2) {
    .cp-arrow {
      transform: translateX(-50%);
    }
  }

  .cp-arrows:nth-child(3) {
    right: 20px;

    .cp-arrow {
      transform: translateX(-150%);
    }
  }
}

.outline-primary-dark {
  color: var(--color-white);
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: var(--color-primary-dark);
  paint-order: stroke fill;
}

.outline-red {
  color: var(--color-white);
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #c02403;
  paint-order: stroke fill;
}

.accent-label {
  display: flex;
  justify-content: center;
  padding: 0 2px;
  background-color: var(--color-accent);
}

/* animation */

/* 矢印のアニメーションキーフレーム (上から下へ加速) */
@keyframes arrow-move-down {
  /* キーフレーム名を変更 */
  0% {
    top: 10%; /* 開始位置 (上: コンテナ高さの30%) */
    opacity: 0;
  }

  /* ease-in のため、中間地点はアニメーションの後半に到達 */
  50% {
    opacity: 1; /* アニメーション中間あたりで完全に表示 */
  }

  80% {
    top: 60%;
    opacity: 1;
  }

  100% {
    top: 70%; /* 終了位置 (下: コンテナ高さの70%) */
    opacity: 0;
  }
}

/* 特典エリア */
.special-benefits {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 20px;
}

.benefits-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 6;
  width: 80%;
  transform: translateX(-50%);
}

.benefits-text {
  padding: 5px 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-accent);
  text-align: center;
  text-shadow: 2px 2px 0 var(--color-primary);
  letter-spacing: 0.1em;
}

.benefits-box {
  padding: 30px 15px 15px;
  background-color: var(--color-accent);
  border-radius: 18px;
  box-shadow:
    inset -4px -4px 4px rgb(0 0 0 / 25%),
    inset 4px 4px 4px rgb(255 255 255 / 100%);
}

.benefits-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* 無料体験 */
.free-trial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.free-trial-text,
.present-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-orange);
  text-shadow: 0 0 8px var(--color-white);
  letter-spacing: 0.07em;
}

.present-text {
  margin-top: 5px;
}

.weeks-label {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.weeks-number {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 0 0 7px var(--color-white);
  letter-spacing: -0.14em;
}

.weeks-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 7px var(--color-white);
  letter-spacing: 0.07em;
}

.more-benefits {
  margin-top: 5px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  text-shadow: 1px 1px 0 var(--color-primary-dark);
  letter-spacing: 0.1em;
}

/* 体験情報 */
.trial-info {
  z-index: 5;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 15px 0 30px;
}

.trial-details {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--color-primary);
  border-radius: 5px;
}

.trial-prefix,
.trial-suffix {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  color: var(--color-white);
  text-shadow: 0 0 5px var(--color-primary);
}

.trial-number {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  text-shadow: 0 0 5px var(--color-primary);
  letter-spacing: -0.14em;
}

.trial-unit {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  text-shadow: 0 0 5px var(--color-primary);
  letter-spacing: -0.08em;
}

.trial-time {
  margin: 0 5px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 0 5px var(--color-primary);
}

.trial-ok {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  color: var(--color-accent);
  text-shadow: 0 0 5px var(--color-primary);
}

.enquete-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  padding: 60px 20px;
  padding-top: calc(51% + 23px);
  margin-top: -51%;
  overflow: hidden;
  background-color: var(--color-green);
}

/* 見出し */
.enquete-heading {
  position: relative;
  z-index: 2;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.01em;
}

/* 装飾要素 */
.decoration-group {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.vector {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.vector1 {
  z-index: 3;
}

.vector2 {
  z-index: 2;
  opacity: 0.6;
}

.vector3 {
  z-index: 1;
  opacity: 0.2;
}

/* アンケートコンテナ */
.questionnaire-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 76px;
  width: 100%;
  max-width: 500px;
}

/* 質問ブロック */
.question-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.question-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.question-number-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 10px;
  background-color: var(--color-primary-dark);
}

.question-number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.question-text {
  flex: 1;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.01em;
}

/* 回答オプション */
.answer-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.answer-option-wrapper {
  width: 100%;
  cursor: pointer;
}

.answer-radio {
  display: none;
}

.option-content {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 17px;
  color: var(--color-primary-dark);
  cursor: pointer;
  background-color: var(--color-white);
  border: 3px solid var(--color-primary-dark);
  border-radius: 100px;
  box-shadow: 0 2px 0 0 var(--color-primary);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  
  
  

  &:hover {
    box-shadow: 0 3px 0 0 var(--color-primary);
    opacity: 0.6;
    transform: translateY(2px);
  }

  &:active {
    box-shadow: 0 3px 0 0 var(--color-primary);
    opacity: 0.6;
    transform: translateY(2px);
  }
}

.answer-radio:checked + .option-content {
  box-shadow: 0 3px 0 0 var(--color-primary);
  opacity: 0.6;
  transform: translateY(2px);
}

/* 選択済みオプションのスタイル */
.answer-option.selected .option-content {
  background-color: var(--color-accent);
  box-shadow: 0 0 0 0 var(--color-primary);
  transform: translateY(2px);
}

.option-number {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.01em;
}

.option-text {
  flex: 1;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.01em;
}

/* campaign-section スタイル */
.campaign-section {
  padding: 60px 0 3px;
  overflow: hidden;
  background-color: var(--color-green);
}

.campaign-top{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: center;
  padding: 0 20px;
}

/* ヘッダー部分 */
.campaign-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.campaign-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.campaign-title-congrats {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.campaign-title-limited {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.campaign-main-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

.campaign-subtitle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.campaign-subtitle-now {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.campaign-subtitle-present {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
}

/* 特典ボックス */
.campaign-benefits {
  display: flex;
  justify-content: center;
  width: 100%;
}

.benefits-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 35px 15px 15px;
  background-color: var(--color-accent);
  border-radius: 20px;
  box-shadow:
    inset -4px -4px 4px rgb(0 0 0 / 25%),
    inset 4px 4px 4px rgb(255 255 255 / 100%);
}

.benefits-label {
  position: absolute;
  top: -15px;
  left: 50%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: var(--color-primary-dark);
  border-radius: 100px;
  transform: translateX(-50%);
}

.benefits-label-text {
  padding: 3px 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-accent);
}

.free-trial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.trial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trial-text-free,
.trial-text-present {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-orange);
  text-shadow: 0 0 8px var(--color-white);
  letter-spacing: 0.07em;
}

.trial-weeks {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.campaign-trial-number {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-dark);
  text-shadow: 0 0 7px var(--color-white);
  letter-spacing: -0.14em;
}

.campaign-trial-unit {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-primary-dark);
  text-shadow: 0 0 7px var(--color-white);
  letter-spacing: 0.07em;
}

.benefits-extra {
  margin-top: 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  text-shadow: 1px 1px 0 var(--color-primary-dark);
  letter-spacing: 0.1em;
}

/* 特典詳細 */
.parallelogram-wrapper {
  .upper {
  width: 100%;
  height: 78px;
  margin-bottom: -1px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: var(--color-accent);
  }

  .lower {
  width: 100%;
  height: 73px;
  margin-top: -1px;
  clip-path: polygon(0% 0, 100% 0%, 0% 100%);
  background-color: var(--color-accent);
  }
}

.campaign-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 13px 20px;
  background-color: var(--color-accent);
}

.detail-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.1em;
  white-space: nowrap;
  
  
  
  
  

  .strong {
    font-size: 1.6em;
  }
}

.detail-items {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.detail-row {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  width: 100%;
}

.detail-item {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  max-height: 136px;
  padding: 6px 5px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 4px 0 0 var(--color-primary);
}

.detail-item-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
}

/* CTA部分 */
.campaign-cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding-top: 5px;
  margin: 0 auto;
}

.cta-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.cta-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

.cta-deadline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.deadline-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #c02403;
}

main{
  overflow-x: hidden;
}

.cta-guide {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-bottom: -37px;
}

.guide-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
}

.campaign-cta-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 14px;
}

.campaign-button-caption {
  padding: 0 26px;
  margin-bottom: 4px;
  text-decoration: underline;
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  &:hover {
    text-decoration: none;
    cursor: pointer;
  }
}

.campaign-note {
  margin-top: 9px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: left;
}

/* what-section スタイル */
.what-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 60px 0 75px;
  background-color: var(--color-green);
}

.what-content {
  width: 100%;
  background-color: var(--color-accent);
}

.before-after-cards {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  width: 100%;
  padding: 32px 27px 13px;
}

.what-section-note {
  width: 74%;
  margin: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary-dark);
}

/* 特徴リスト */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 336px;
}

.what-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

.what-feature-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.what-feedback-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
}

/* 効果紹介部分 */
.effect-showcase {
  width: 100%;
  margin: 32px 0;
}

.before-after-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.before-after-image {
  width: 100%;
  max-width: 375px;
  height: auto;
  border-radius: 8px;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 320px;
  padding: 20px 10px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 4px 0 0 var(--color-primary);
}

.result-image-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.result-image {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.result-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
}

.result-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.result-note {
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

/* キャンペーン紹介部分 */
.campaign-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.campaign-intro-text-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.campaign-intro-text {
  font-size: var(--font-lg);
  font-weight: 800;
  
  
  
  
  
  
  
  
  

  &.underline {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--color-primary-dark);
    text-underline-offset: 1px;
  }
}

.campaign-intro-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-bottom: -20px;
}

.highlight-now {
  font-size: var(--font-lg);
  font-weight: 800;
}

.campaign-highlight-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
}

.campaign-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.campaign-special {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-top: -10px;
}

.special-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0 0 3px var(--color-error);
}

/* section-intro スタイル */
.section-intro {
  background-color: var(--color-green);
}

.intro-question {
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: center;
  width: 100%;
  margin: 32px 0;
}

.section-intro-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
}

.intro-question-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-accent);
  text-align: center;
  text-decoration: underline;
      text-decoration-thickness: 4px;
    text-decoration-color: var(--color-primary-dark);
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #004541;
  paint-order: stroke fill
}

.intro-highlight {
  margin-top: 2px;
  font-size: var(--font-xxxl);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-accent);
  text-align: center;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #004541;
  paint-order: stroke fill;
}

.intro-image-container {
  max-width: 500px;
  padding: 15px 30px 11px;
  margin: auto;
  background-color: var(--color-accent);
}

/* point-section スタイル */
.point-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  padding: 43px 20px;
  background-color: var(--color-green);
}

.point-video{
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.point-container {
  display: flex;
  flex-direction: column;
  gap: 33px;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

/* ポイントカード */
.point-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.point-card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 0 0 var(--color-primary-dark);
}

.point-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px 0;
  background-color: var(--color-primary-dark);
  border-radius: 12px 12px 0 0;
}

.point-number {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-shadow: 0 0 2px var(--color-primary-dark);
  letter-spacing: 0.01em;
}

.point-body {
  padding: 20px 16px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary-dark);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.point-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.point-text-small{
  margin-top: 15px;
}

/* ポイント詳細 */
.point-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.point-description {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.point-desc-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.point-highlight-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: var(--color-accent);
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: var(--color-primary-dark);
}

/* 初心者向けセクション */
.beginner-section {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.beginner-title {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.beginner-types {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin: 4px 0;
  
  
  
  

  & > div {
    width: fit-content;
  }
}

.beginner-type-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.beginner-types-note {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.beginner-subtitle {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.beginner-note {
  margin-top: 30px;
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.01em;
}

/* 統計グラフ */
.beginner-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

.stats-title {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.stats-highlight {
  display: flex;
  justify-content: center;
  padding: 0 2px;
  margin-bottom: 16px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

.stats-highlight-text {
  font-size: var(--font-lg);
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
  

  .strong {
    font-size: 1.4em;
  }
}

.stats-chart-container {
  width: 88%;
  padding: 22px 0;
}

.point2-images {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  width: 85%;
  margin: 32px auto 25px;
}

/* 便利な機能 */
.convenience-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  width: 100%;
}

.feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--color-primary-dark);
  border-radius: 50%;
  box-shadow:
    0 4px 4px rgb(0 0 0 / 25%),
    inset -4.8px -4.8px 4.8px rgb(0 0 0 / 25%),
    inset 2.4px 2.4px 3.6px rgb(255 255 255 / 40%);
}

.reservation-icon::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: '';
  background-image: url('./assets/img/icon-reservation.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.clothes-icon::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: '';
  background-image: url('./assets/img/icon-clothes.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.time-icon {
  position: relative;
}

.time-text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  color: black;
  letter-spacing: -0.06em;
}

.feature-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-label {
  display: flex;
  justify-content: center;
  padding: 0 12px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

.feature-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

/* まとめセクション */
.summary-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
}

.summary-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.summary-title-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.summary-label {
  margin-bottom: 16px;
}

.summary-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.summary-point {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 0 0 var(--color-primary-dark);
}

.summary-body-small {
  padding: 20px 16px;
}

.point-section-result {
  font-weight: 800;
  color: var(--color-primary-dark);
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-primary-dark);
}

/* voice-section スタイル */
.voice-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 68px;
  align-items: center;
  padding: 20px 0 42px;
  background-color: var(--color-green);
}

.voice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
  margin-bottom: -6px;
}

/* ヘッダー */
.voice-title-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.voice-title-box {
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 0 0 var(--color-primary-dark);
}

.voice-title {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

/* 口コミカード */
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.voice-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 0 0 var(--color-primary-dark);
}

.voice-section-bottom-image-link {
  margin-right: 10px;
  text-align: right;
  text-decoration: underline;
}

/* CTA部分 */
.voice-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin-top: 20px;
}

.cta-badge {
  display: flex;
  justify-content: center;
  padding: 5px 15px;
  background-color: var(--color-primary);
  border-radius: 30px;
}

.cta-badge-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

.voice-cta-message {
  width: 100%;
}

.voice-cta-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0 0 3px var(--color-primary-dark);
}

.cta-campaign {
  margin: 10px 0;
}

.campaign-text {
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-accent);
  text-align: center;
  text-shadow: 2px 2px 0 var(--color-primary-dark);
}

.cta-button-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.cta-button {
  width: 100%;
  padding: 15px 20px;
  cursor: pointer;
  background-color: var(--color-accent);
  border: 3px solid var(--color-primary-dark);
  border-radius: 50px;
  box-shadow: 0 6px 0 0 var(--color-primary-dark);
  transition: all 0.2s ease;
}

.cta-button:hover {
  box-shadow: 0 3px 0 0 var(--color-primary-dark);
  transform: translateY(3px);
}

.button-text {
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
}

.button-caption {
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

/* 新しい testimonial スタイル */
.voice-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.voice-title,
.voice-subtitle {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.01em;
}

.testimonial-card {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 4px 0 0 var(--color-primary);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 29px 17px;
}

.testimonial-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.testimonial-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin: 0 auto auto;
}

.testimonial-text {
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
}

.testimonial-divider {
   width: 69%;
  height: 1px;
  margin: 20px auto;
  background-color: #26c29c;
}

.voice-note {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
  text-align: center;
}

/* attention-section */
.attention-section {
  background-color: var(--color-green);
}

/* 見出し */
.attention-header {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: 48px 25px 45px;
  margin: auto;
  background-color: black;
}

.attention-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding-top: 32px;
  margin: auto;
  text-align: center;
}

/* メッセージ */
.attention-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.attention-message-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;

  &.outline-primary-dark {
    color: var(--color-white);
  }
}

/* 警告メッセージ */
.attention-warning {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.warning-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.warning-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.warning-important {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.warning-reservation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.reservation-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.01em;
  border: 2px solid var(--color-primary-dark);
}

/* campaign2-section スタイル */
.campaign2-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 63px;
  align-items: center;
  padding: 64px 0;
  overflow: hidden;
  background-color: var(--color-green);
}

.campaign2-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

/* キャンペーンヘッダー */
.campaign2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.campaign2-title {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.campaign2-subtitle {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;

  .yellow {
    display: block;
    margin-top: 30px;
    color: var(--color-accent);
  }
}

.coupon-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 16px auto;
}

.coupon-button {
  display: block;
  width: 100%;
    padding: 10px 20px;
  margin-bottom: 6px;
  color: #000;
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 2px 2px 0 0 #620502;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  &:hover {
    background-color: rgb(255 255 255 / 80%);
    box-shadow: 4px 4px 0 0 #620502;
  }

  &:active {
    box-shadow:
      0 0 0 0 var(--color-primary-dark),
      inset -2px -2px 2px 0 rgb(0 0 0 / 25%);
    transform: translateY(4px);
  }
}

.coupon-location {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.01em;
}

.coupon-action {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
}

/* push-section */
.push-section {
  background-color: var(--color-green);
}

.push-header {
  max-width: 500px;
  padding: 27px 10px;
  margin: auto;
  font-family: 'Noto Serif JP', serif;
  color: #fc380f;
  text-align: center;
  background-color: white;
}

.date-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

/* メッセージグループ */
.push-messages {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.push-message-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.push-message {
  color: var(--color-accent);
  text-align: center;
  
  
  
  
  
  
  

  .underline {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--color-primary-dark);
  }
}

/* 情報グループ */
.push-info-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.push-info-text {
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

/* 警告グループ */
.push-warning-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

.push-warning-text {
  text-align: center;
}

/* full-booking-section スタイル */
.full-booking-section {
  padding: 0;
  background-color: var(--color-green);
}

.full-booking-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding-top: 33px;
  margin: auto;
}

/* レコメンドエリア */
.recommendation-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-bottom: 64px;
  margin: auto;
}

.recommendation-text {
  color: var(--color-primary-dark);
  text-align: center;

  .highlight {
    color: var(--color-accent);
    text-decoration: underline;
  }
}

/* 最終CTAボタンエリア */
.final-cta-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.last-cta-button {
  width: 100%;
}

/* 新しく追加されたセクション用の重複解消クラス */
.full-booking-highlight-box {
  display: flex;
  justify-content: center;
  padding: 0 2px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

.push-highlight-box {
  display: flex;
  justify-content: center;
  padding: 0 2px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

.full-booking-decoration-group {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

/* フッタースタイル */
.site-footer {
  padding: 32px 20px 30px;
  margin: auto;
  background-color: var(--color-white);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.official-site-text {
  font-size: var(--font-lg);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.footer-logo-container {
  width: 100%;
  max-width: 266px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.footer-nav a{
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.footer-link {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.footer-link:hover {
  text-decoration: underline;
}

.copyright {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

/* オーバーレイのスタイル */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; /* 他のコンテンツより前面に */
  display: flex;
  align-items: center; /* 中央に配置に変更 */
  justify-content: center;
  width: 100%;
  height: 100%;
  visibility: hidden; /* 初期状態は非表示 */
  background-color: rgb(0 0 0 / 50%); /* 半透明の黒 */
  opacity: 0; /* 初期状態は透明 */
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease; /* フェードイン・アウト用 */
}

/* ポップアップ本体のスタイル */
.popup-modal {
  position: relative; /* 子要素のabsolute基準 */

  /* 中央配置と初期位置調整 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px; /* 最大幅 */
  max-width: 90%;
  padding: 10px;
  text-align: center;
  background-color: #FF6141;
  border-radius: 12px;
  box-shadow:
    2px 2px 0 0 #620520,
    inset -2px -2px 4px 0 #640004,
    inset 4px 4px 4px 0 rgb(255 255 255 / 40%);
  opacity: 0; /* 初期状態は透明 */
  transition:
    transform 0.5s ease,
    opacity 0.5s ease; /* スライドアップとフェードイン用 */

  transform: translate(-50%, 100%); /* 初期状態：中央寄せ（水平）+ 自身の高さ分下に移動 */
}

.popup-note {
      margin-top: 10px;
    font-size: 10px;
    text-align: left;
}

.popup-button-container {
  margin-top: 10px;
}

/* 表示状態のオーバーレイ */
.popup-overlay.is-active {
  visibility: visible;
  opacity: 1;
}

/* 表示状態のポップアップ本体 */
.popup-overlay.is-active .popup-modal {
  max-width: 85%;
  opacity: 1; /* 不透明に */
  transform: translate(-50%, -50%); /* 中央に移動 */
}

/* 閉じるボタンのスタイル */
.popup-close {
  position: absolute;
    top: -20px;
    right: -15px;
    z-index: 1;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    background: none;
    border: none;
}

.bounce-scale {
  margin-bottom: 17px;
  animation: bounce-scale 1.5s ease-in-out infinite;
}

@keyframes bounce-scale {
  0% {
    transform: scale(0.9); /* 開始（通常のサイズ） */
  }

  /* 1回目の速い拡大 */
  10% {
    transform: scale(1); /* 少し大きくなる */
  }

  20% {
    transform: scale(0.9); /* 元に戻る */
  }

  /* 2回目のゆっくりな拡大 */
  60% {
    /* 40%から65%までの時間をかけてゆっくり拡大 */
    transform: scale(1); /* 1回目とは少し違うサイズでも良い */
  }

  100% {
    /* 65%から100%までの時間をかけてゆっくり元に戻る */
    transform: scale(0.9); /* 終了（通常のサイズ） */
  }
}


.fv-bottom{ 
  z-index: 4;
  margin-top:  -8.5vw;
}

.fv-video{
  display: block;
  width: 100%;
}

.relative{
  position: relative;
}

.video-label-top{
  position: absolute;
  top: 0;
  left: 0;
  width: 54%;
}

.video-label-bottom{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
}

.parallelogram-slider{
  position: absolute !important;
  right: 0;
  bottom: 59px;
  left: 0;
}

.parallelogram-slider .item{
  width: calc(100% - 120px);
  padding: 0 2px;
}

.point-desc-slogan{
    margin-bottom: 32px;
    line-height: 1.5;
      color: var(--color-primary-dark);
    text-align: center;
    letter-spacing: 0.01em;
}

.point-desc-slogan span{
  color: var(--color-accent);
}

.coach-feedback-container{
  margin: 0 -20px 30px;
}

.point-chat{
    width: calc(100% + 40px);
      margin: 0 -20px -35px;
}

.point-box-chat{
      margin-bottom: 31px;
}

.voice-section-images .voice-image02{
  margin-top: 26px;
}

.detail-item-text small{
  display: inline-block;
  font-size: 10px;
}

.campaign-detail-bottom{
  padding: 3px 20px;
  background-color: var(--color-accent);
}

.push-content{
  padding: 65px 0;
}

.push-date{
  margin-bottom: 31px;
}

.recommendation-text .outline-primary-dark{
  color: var(--color-accent);
}

.voice-section-images{
  padding: 0 20px;
}

.campaign2-container .cp-arrows-container{
  margin-top: -26px;
  ma;
  margin-bottom: 11px;
}

.fv-section02{
  background-color: var(--color-green); 
}

@media(width > 450px){
  .testimonial-card{
    max-width: 500px;
  }

  .campaign2-container{
    max-width: 100%;
  }

  .parallelogram-wrapper{
    width: 100%;
  }

  .campaign-cta-button-container{
    max-width: 500px;
  }

  .fv-bottom{
        margin-top: -41px;
  }

  .font-xs {
    font-size: var(--pc-font-xs);
  }

  .font-sm {
    font-size: var(--pc-font-sm);
  }

  .font-md {
    font-size: var(--pc-font-md);
  }

  .font-lg {
    font-size: var(--pc-font-lg);
  }

  .font-xl {
    font-size: var(--pc-font-xl);
  }

  .font-xxl {
    font-size: var(--pc-font-xxl);
  }

  .font-xxxl {
    font-size: var(--pc-font-xxxl);
  }

  .cp-arrows .cp-arrow{
    width: 42px;
  }

  .question-number-box {
    width: 94px;
    height: 94px;
    padding: 12px;
  }

  .campaign-top{
    gap: 59px;
    padding: 0 24px;
  }

  .enquete-section {
    gap: 20px;
    padding: 72px 24px;
    padding-top: calc(51% + 28px);
  }

  .campaign-cta-button-container {
    padding: 0 17px;
  }

  .campaign-button-caption {
    padding: 0 31px;
    margin-bottom: 5px;
  }

  .campaign-note {
    margin-top: 11px;
    font-size: 14px;
  }

  .parallelogram-wrapper .upper {
    height: 93px;
  }

  .before-after-cards {
    gap: 13px;
    padding: 38px 32px 16px;
  }

  .what-section-note{
    font-size: 14px;
  }

  .campaign-intro-text, .highlight-now,
  .campaign-highlight-text, .special-text, 
  .section-intro-text, .intro-question-text{
    font-size: var(--pc-font-lg);
  }

  .intro-highlight{
    font-size: var(--pc-font-xxxl);
  }

  .intro-image-container {
    padding: 18px 36px 13px;
  }

  .point-section {
    gap: 67px;
    padding: 52px 24px;
  }

  .point-card {
    max-width: 384px;
    border-radius: 10px;
    box-shadow: 0 5px 0 0 var(--color-primary-dark);
  }

  .point-header {
    padding: 2px 10px 0;
    border-radius: 14px 14px 0 0;
  }

  .point-video {
    width: calc(100% + 48px);
    margin: 0 -24px;
  }

  .beginner-title, .beginner-type-text, 
  .beginner-subtitle, .beginner-title,
  .beginner-note, .stats-highlight-text{
    font-size: var(--pc-font-lg);
  }

  .beginner-types-note{
    font-size: 14px;
  }

  .beginner-section{
    gap: 4px;
  }

  .beginner-section{
    max-width: 384px;
  }

  .stats-title{
    font-size: 19px;
  }

  .summary-section{
     gap: 38px;
    max-width: 390px;
  }

  .voice-section-images {
    padding: 0 24px;
  }

  .testimonial-icon {
    width: 72px;
    height: 72px;
  }

  .voice-note{
    font-size: 14px;
  }

  .coupon-button{
    max-width: 360px;
  }

  .coupon-location{
    font-size: 20px;
  }

  .coupon-action{
    font-size: 18px;
  }

  .detail-item {
    max-height: 163px;
    padding: 7px 6px;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    box-shadow: 0 5px 0 0 var(--color-primary);
  }

  .popup-modal{
    width: 375px;
  }

  .popup-note{
    font-size: 12px;
  }

}
