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

/* 基本設定 */
:root {
  --color-primary: #ff5c0e;
  --color-primary-dark: #ff590d;
  --color-secondary: #4273a3;
  --color-secondary-dark: #284b66;
  --color-accent: #6fb2ff;
  --color-yellow: #fedd33;
  --color-yellow-light: #ffe143;
  --color-red: #f53030;
  --color-gray: #3a3939;
  --color-gray-light: #585858;
  --color-bg-light: #fff9f4;
  --color-bg-pink: #ffd5c2;
  --color-bg-beige: #ffefe3;
  --color-bg-gray: #BBBQ6F;
  --color-border-primary: #ff5c0e;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Noto Sans JP", sans-serif;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
  padding: 0;
  padding-top: 76px; /* ヘッダーの高さ分のpadding */
  background-color: #fff;
}

.container {
  margin: 0 auto;
}

/* ヘッダー */
.header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.header__logo {
  height: 52px;
  width: 148px;
  object-fit: contain;
}

/* セクションタイトル共通 */
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-gray);
}

.section-title--white {
  color: #fff;
}

/* ヒーローセクション */
.hero {
  background: linear-gradient(180deg, #f4ffeb 0%, #fff 98.85%);
  padding: 60px 0 80px;
  position: relative;
  overflow: visible;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/hero-bg.svg") no-repeat center;
  background-size: cover;
  z-index: -2;
}

.hero__content {
  display: flex;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.hero__text {
  flex: 1;
  padding-left: 60px;
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  position: relative;
  color: #3b3a3a;
}

.hero_title-decoration_box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero__title-decoration {
  min-width: 47px;
  min-height: 47px;
  padding: 0 3px 0 4px;
  background: url("../images/hero-title-decoration.svg") no-repeat center;
  background-size: contain;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-light);
}

.hero__title-decoration--white {
  color: #4273a3;
  background: url("../images/hero-title-decoration--white.svg") no-repeat center;
}

.hero__title-text_01 {
  font-size: 34px;
}

.hero__title-text_02 {
  font-size: 36px;
  line-height: 1.4;
}

.hero__subtitle {
  width: 563px;
  background: #fff;
  border: 2px solid var(--color-border-primary);
  padding: 22px 32px 12px 32px;
  margin-bottom: 40px;
}

.search-box {
  margin-bottom: 0px;
}

.search-box__input {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.search-box__field {
  flex: 1;
  background: url("../images/top-searchbox.png") no-repeat right;
  background-size: contain;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-align: left;
  padding-left: 60px;
  margin-right: 4px;
}

.search-box__field::placeholder {
  color: #3a3939;
}

.search-box__button {
  background: #3a3939;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.search-box__button svg {
  width: 20px;
  height: 20px;
}

.search-box__button svg circle,
.search-box__button svg line {
  stroke: #fff;
}

.search-box__button span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.search-box__text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.67;
  color: #3a3939;
}

.hero__divider {
  height: 1px;
  background: rgba(255, 134, 78, 0.4);
  margin: 10px 0;
}

.hero__description {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.67;
}

.hero__description-highlight {
  color: #ff864e;
  font-weight: 700;
}

.hero__image {
  flex: 1;
  position: relative;
  top: -100px;
  right: 100px;
}

.hero__illustration {
  position: absolute;
  top: -100px;
  right: 0;
  width: 380px;
  height: auto;
  z-index: 1;
}

.hero__mockup {
  position: relative;
  margin-top: 100px;
  margin-left: 0px;
}

.hero__mockup img:first-child {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}

.hero__magnifier {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 463px;
  height: auto;
}

.hero__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}

.feature-card {
  background: #4273a3;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
.feature-card img:first-child {
  position: absolute;
  top: -230px;
  left: 0;
  width: 100%;
  height: 792px;
  object-fit: cover;
  z-index: -1;
  transform: translateY(200px);
}

.feature-card__check {
  width: 29px;
  height: 29px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  z-index: 10;
}

.feature-card__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.hero__highlight {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 20px;
  line-height: 1.21;
}

.hero__subtext {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.21;
}

.hero__subtext::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  top: 0;
  left: 0;
  overflow: auto;
}

.hero__badges {
  display: flex;
  justify-content: start;
  gap: 8px;
  position: relative;
  margin-left: 205px;
  margin-top: -75px;
  line-height: 1.41;
  letter-spacing: 0.05em;
}

.badge {
  width: 129px;
  height: 129px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  word-spacing: 5%;
  color: var(--color-gray);
}

.badge--yellow {
  background: var(--color-yellow);
}

.badge--text-secondary {
  font-size: 24px;
  color: var(--color-secondary);
}
.badge--text-secondary-small {
  font-size: 20px;
}

.badge:nth-child(2) {
  background: #ffe143;
}

.badge p {
  font-size: 20px;
  line-height: 1.75;
  color: #000;
  font-weight: 400;
}

.badge p .badge__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  line-height: 1;
  margin: 5px 0;
}

.badge p .badge__unit {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

/* ターゲットセクション */
.target {
  background: transparent;
  padding: 54px 30px 63px;
  position: relative;
  overflow: visible;
  z-index: 10;
  margin-top: -80px;
  background-color: #8ab8e0;
}

.target::after {
  content: "";
  position: absolute;
  bottom: -48px; /* 高さ分だけ下に出す */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 137px solid transparent;
  border-right: 137px solid transparent;
  border-top: 49px solid #8ab8e0;
}

.target__content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.target__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.target__item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 30px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.21;
  max-width: 681px;
  white-space: nowrap;
}

.target__images {
  position: relative;
  height: 400px;
}

.target__graph {
  width: 369px;
  height: auto;
  border-radius: 44px;
}

.target__data {
  position: absolute;
  top: 100px;
  right: 60px;
  width: 72px;
  height: auto;
}

.target__ambulance {
  position: absolute;
  bottom: 100px;
  left: 50px;
  width: 101px;
  height: auto;
}

.target__doctor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 133px;
  height: auto;
}

/* メリットセクション */
.benefits {
  background: #fafff5;
  padding: 120px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #fffdfc;
  border-radius: 10px;
  padding: 20px 20px;
  position: relative;
  box-shadow: 0 0 6px #f34e1f;
  display: flex;
  flex-direction: row;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.benefit-card--highlight {
  border: 1px solid #d9d9d9;
}

.benefit-card__icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 20px;
}

.benefit-card__check {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.benefit-card__text {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.benefit-card__text__highlight {
  color: var(--color-primary);
  font-size: 24px;
}

/* 流れセクション */
.flow {
  padding-top: 60px;
}

.flow__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.flow__step {
  width: 342px;
  text-align: center;
  position: relative;
}

.flow__step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #4273a3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-family: "Istok Web", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #4273a3;
}

.flow__step-label-text {
  font-size: 14px;
}

.flow__step-image {
  width: 100%;
  height: 205px;
  object-fit: cover;
  margin-bottom: -10px;
}

.flow__step-text {
  background: #4273a3;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
}

.flow__arrow {
  font-size: 30px;
  width: 30px;
  height: 60px;
}

/* CTAセクション共通 */
.cta-section {
  text-align: center;
  margin: 60px 0;
  margin-top: 100px;
}

.cta-button {
  background: linear-gradient(180deg, #aeff9c 0%, #25c503 30.77%);
  border: none;
  border-radius: 10px;
  padding: 29px 110px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 3s infinite;
  z-index: 1;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.21;
}

/* Lineボタン */
.line-btn {
  color: #7e7e7e;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* 問題セクション */
.problem {
  position: relative;
  background: linear-gradient(180deg, #89b7e0 0%, #f5f5f5 100%);
  padding: 60px 0;
}

.problem__content {
  text-align: center;
}

.problem__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-bottom: 40px;
}

.problem__image {
  width: 145px;
  height: auto;
}

.problem__text {
  background: #fff;
  border-radius: 10px;
  padding: 20px 60px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--color-gray-light);
}

.problem__dots {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

.problem__answer {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 解決策セクション */
.solution {
  position: relative;
  padding-top: 60px;
  background: #fafff5;
}

.solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: url("../images/Polygon.png") no-repeat center;
}

.solution__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.solution__illustration {
  width: 167px;
  height: auto;
}

.solution__title {
  text-align: center;
}

.solution__title p {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.08;
}

.solution__logo {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-border-primary);
  border: 7px solid var(--color-border-primary);
  padding: 4px 24px;
  margin: 5px 0;
}

.solution__highlight {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.56;
}

.solution__highlight-text {
  color: #ff5c0e;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.solution__box {
  background: #f1faff;
  border-radius: 10px;
  padding: 30px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.solution__text {
  flex: 1;
  font-size: 28px;
  line-height: 1.79;
}

.solution__text-highlight {
  color: var(--color-border-primary);
  font-weight: 700;
}

.solution__text-highlight--black {
  color: var(--color-gray);
  font-weight: 700;
}

.solution__image {
  width: 237px;
  height: auto;
}

/* 検索結果セクション */
.search-results {
  background: #fafff5;
  padding: 100px 0 0 0;
}

.search-results__header {
  position: relative;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.search-results__header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.search-results__bg {
  width: 650px;
  height: 357px;
  object-fit: cover;
  border-radius: 10px;
  height: auto;
  z-index: 0;
}

.search-results__header .section-title {
  position: relative;
  z-index: 1;
}

.highlight {
  width: 100%;
  background: #4273a3;
  padding: 0 35px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.56;
  justify-content: center;
  align-items: start;
  display: flex;
  gap: 0;
  color: var(--color-bg-light);
}

.search-results__points {
  display: flex;
  flex-direction: column;
  gap: 65px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.point {
  display: flex;
  align-items: top;
  gap: 40px;
}

.point:nth-child(even) {
  flex-direction: row-reverse;
}

.point__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 570px;
}

.point__header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f1f8ff;
  border-radius: 10px;
  padding: 8px 20px;
  margin-bottom: 37px;
}

.point__header img:first-child {
  width: 39px;
  height: 64px;
}

.point__number {
  width: 39px;
  height: 64px;
  background: url("../images/point-number-bg.png") no-repeat center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary-dark);
}

.point__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.point__text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.96;
  letter-spacing: 0.05em;
}

.point__text--primary {
  font-size: 30px;
  color: var(--color-border-primary);
}

.point__text--black {
  font-size: 32px;
  color: var(--color-gray);
}

.point__image {
  width: 571px;
  height: 352px;
  object-fit: cover;
  border-radius: 10px;
}

.search-results__answer {
  width: 100%;
  background: #4273a3;
  padding: 80px 30px 60px 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.search-results__answer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 228px;
  height: 39px;
  background: transparent;
  z-index: 2;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #fafff5;
}

.answer__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.answer__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.answer__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.54;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}

.answer__ranking {
  margin-bottom: 20px;
}

.answer__text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.05em;
  color: #fff;
}

.answer__conclusion {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 14px 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.answer__mockup {
  position: relative;
  bottom: -40px;
  left: -60px;
  width: 700px;
}

.answer__mockup img:first-child {
  width: 764px;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.answer__magnifier {
  position: absolute;
  top: 0;
  left: 0;
  width: 573px;
  height: auto;
}

/* 費用比較セクション */
.comparison {
  padding-top: 70px;
}

.comparison_price_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.comparison__title {
  color: #3a3939;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px; /* 141.667% */
  letter-spacing: 2.4px;
}

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

.comparison__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.comparison__item {
  width: 495px;
  height: 265px;
  padding: 6px;
  text-align: center;
  position: relative;
}

.comparison__item--highlight {
  border-color: #ff5c0e;
  border-width: 6px;
  background: #ff5c0e;
}

.comparison__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.05em;
  padding: 14px 0px;
}

.comparison__item--highlight .comparison__name {
  font-size: 36px;
  line-height: 1.89;
  color: #fff;
}

.comparison__price {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.comparison__price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 157px;
  background: white;
}

.comparison__item--highlight .comparison__price {
  color: #000;
}

.comparison__price small {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.comparison__icon {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 58px;
  height: 85px;
}

.comparison__doctor-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 58px;
  height: 85px;
  object-fit: contain;
}

.comparison__doctor-icon--highlight {
  top: -12px;
  right: 60px;
}

.comparison__note {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
  line-height: 2.13;
}

.comparison__note-highlight {
  color: var(--color-primary);
  font-size: 36px;
  border-bottom: 6px solid var(--color-primary);
}

.warning-box {
  position: relative;
  margin: 60px auto;
}

.warning-box__arrow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-top: 50px solid var(--color-red);
}

.warning-box__content {
  background: linear-gradient(180deg, #ff864e 0%, #f53030 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.warning-box__icon {
  width: 79px;
  height: 79px;
}

.warning-box__text {
  text-align: center;
}

.warning-box__text p {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 15px;
}

.warning-box__highlight {
  font-size: 40px !important;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

/* 掲載場所セクション */
.placement {
  background: #f5ffeb;
  padding: 60px 0;
}

.placement__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.placement__item {
  background: #fff;
  border-radius: 10px;
  padding: 50px 41px;
  position: relative;
}

.placement__ribbon {
  position: absolute;
  top: -10px;
  left: 120px;
  width: 114px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  z-index: 10;
}

.placement__ribbon--free {
  background: url("../images/ribbon-free.svg") no-repeat center;
  background-size: contain;
}

.placement__ribbon-firstmonth-free {
  background: url("../images/ribbon-firstmonth-free.svg") no-repeat center;
  background-size: contain;
}

.placement__ribbon--paid {
  background: url("../images/ribbon-paid.svg") no-repeat center;
  background-size: contain;
}

.placement__title {
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  background: #4273a3;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 750px;
}

.placement__description {
  position: relative;
  background: #f1f8ff;
  padding: 20px 30px;
  max-width: 1048px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.placement__description p {
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: 0.05em;
}

.placement__flow {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  background: #f1f8ff;
  border: 3px dashed var(--color-accent);
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.placement__flow-item {
  text-align: center;
  max-width: 300px;
}

.placement__flow-item p {
  font-size: 15px;
  line-height: 1.67;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-align: left;
}

.placement__flow-item img {
  width: 200px;
  height: auto;
}

.placement__arrow {
  font-size: 30px;
  color: var(--color-primary);
}

.woman-pc-img {
  width: 200px;
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
}

.placement-02-woman-pc {
  position: relative;
}

.woman-pc-img-reverse {
  width: 171px;
  position: absolute;
  transform: scaleX(-1);
}

.placement__detail {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
  position: relative;
}

.placement__detail-image {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.placement__detail--rich {
  gap: 80px;
}

.placement__detail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.placement__badge {
  position: absolute;
  bottom: 50px;
  right: 100px;
  background: var(--color-red);
  color: #fff;
  padding: 14px 30px;
  border-radius: 180px;
  font-size: 28px;
  font-weight: 700;
}

.placement__images {
  position: relative;
}

.placement__label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #7e7e7e;
  color: #fff;
  padding: 14px 30px;
  border-radius: 72px;
  font-size: 20px;
  font-weight: 700;
}

.placement__label--rich {
  background: linear-gradient(180deg, #4da1e1 0%, #a6d0ff 49.52%, #4da1e1 100%);
}

.placement__note {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #000;
  text-align: left;
}

/* キャンペーンセクション */
.campaign {
  background: #f5ffeb;
  padding: 80px 0 20px;
}

.campaign__content {
  margin: 0 auto;
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #ff862b 100%);
  border-radius: 20px;
  padding: 30px 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
}

.campaign__image {
  width: 186px;
  height: auto;
  transform: scaleX(-1);
}

.campaign__text {
  text-align: center;
}

.campaign__badge {
  background: #fff;
  border-radius: 90px;
  padding: 0 60px;
  display: inline-block;
  font-size: 49px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.campaign__description {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.05em;
  color: #fff;
}

/* 実績紹介セクション */
.results {
  background: #4273a3;
  padding: 25px 0 53px;
  position: relative;
}

.results__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.results__decoration {
  width: 73px;
  height: 131px;
}

.results__content {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.results__item {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  max-width: 439px;
}

.results__item img {
  width: 100%;
  height: 443px;
  max-width: 418px;
  height: auto;
  margin-bottom: 28px;
}

.results__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.05em;
  color: #424242;
}

/* 口コミセクション */
.testimonials {
  background: #f1f8ff;
  padding: 100px 0 30px;
}

.testimonials__title-highlight {
  display: inline-block;
  position: relative;
  font-size: 50px;
  letter-spacing: 0.23em;
}

.testimonials__title-highlight::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--color-primary);
  z-index: -1;
}

.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 60px;
}

.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 994px;
  margin: 0 auto;
}

.testimonial:nth-child(even) {
  flex-direction: row-reverse;
}

.testimonial__text {
  flex: 1;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.testimonial__author {
  text-align: center;
}

.testimonial__author img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial__author p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000;
}

.testimonials__cta-text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 10px;
  line-height: 1.56;
}

/* FAQセクション */
.faq {
  padding: 60px 0;
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.faq__image {
  width: 82px;
  height: 120px;
}

.faq__decoration {
  width: 88px;
  height: 131px;
}

.faq__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq__item {
  width: 80%;
  background: #f5ffeb;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 14px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.faq__qa {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq__q,
.faq__a {
  width: 80px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  padding: 0 6px;
  color: #fff;
}

.faq__q {
  background: var(--color-gray-light);
}

.faq__a {
  background: var(--color-border-primary);
}

.faq__text {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

/* 差別化セクション */
.differentiation {
  background: #d1e7fb;
  border-radius: 40px;
  padding: 100px 0;
  margin: 0 auto;
  max-width: 1200px;
}

.differentiation__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.differentiation__decoration {
  width: 74px;
  height: 91px;
}

.differentiation__content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 90px;
}

.differentiation__text {
  flex: 1;
  font-size: 28px;
  line-height: 1.79;
}

.differentiation__image {
  width: 328px;
  height: auto;
}

/* フォームセクション */
.form-section {
  background: var(--color-bg-beige);
  padding: 100px 50px;
  margin-top: 100px;
}

.form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form__label {
  width: 250px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.21;
}

.form__input,
.form__textarea {
  flex: 1;
  padding: 10px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

.form__textarea {
  resize: vertical;
}

.form__submit {
  background: #61d049;
  border: none;
  border-radius: 10px;
  padding: 20px 205px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  margin: 30px auto 0;
  display: block;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  line-height: 0.97;
}

.form__submit:hover {
  transform: translateY(-2px);
}

/* フッター */
.footer {
  background: #4273a3;
  padding: 70px 0;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 150px;
  margin-bottom: 30px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: left;
  gap: 12px;
}

.footer__link {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.32;
  color: #fff;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-family: var(--font-secondary);
  font-size: 12px;
  line-height: 1.32;
  color: #ffffff;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .container {
    position: relative;
    max-width: 960px;
  }

  .hero__content {
    flex-direction: column;
  }

  .target__content {
    flex-direction: column;
  }

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

/* utility */
.text-primary {
  color: var(--color-primary);
}

.section-title-blue-black {
  color: #284b66;
}

.text-sub-primary {
  color: #4273a3;
}

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

.text-red {
  color: var(--color-red);
}

.display-table {
  display: table;
}

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

.underline {
  text-decoration: underline;
}

.border-b-white {
  border-bottom: 2px solid #ffffff;
}

/* 費用計算セクション */
.calculation-title {
  color: #3a3939;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 1.5px;
  text-align: center;
  margin: 30px 0;
}

.calculation-comparison {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.calculation-box {
  background: #fff;
  border: 2px solid #ddd;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.calculation-box--normal {
  width: 480px;
  padding: 30px 133px;
  border-color: #ccc;
  background: #f9f9f9;
}

.calculation-box--highlight {
  width: 480px;
  padding: 30px 90px;
  border: 6px solid #ff590d;
  position: relative;
}

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

.calculation-amount {
  color: #3a3939;
  text-align: center;
  font-family: Inter;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 1.45px;
  white-space: nowrap;
}

.calculation-free {
  color: #ff5c0e;
  text-align: center;
  font-family: Inter;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 116.279% */
  letter-spacing: 2.15px;
}

.calculation-result {
  text-align: center;
  margin: 20px 0;
}

.calculation-result-text {
  color: #ff5c0e;
  font-family: Inter;
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 2.15px;
  margin: 0;
}

.calculation-result-text-container {
  border-bottom: 6px solid #ff5c0e;
  padding: 0 15px 8px 15px;
}

.calculation-result-amount {
  color: #ff5c0e;
  font-family: Inter;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 2.75px;
}

.calculation-result-benefit {
  color: #ff5c0e;
  font-family: Inter;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 2.6px;
}

.pdf-look {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  height: 78px;
  border-radius: 10px;
  background-color: #4273a3;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0px 4px 4px #00000040;
  text-decoration: none;
  max-width: 1020px;
  width: 100%;
}

.pdf-look:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.line-look {
  margin-top: 10px;
  border: 1px solid #06c755;
  color: #06c755 !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  height: 78px;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0px 4px 4px #00000040;
  text-decoration: none;
  max-width: 1020px;
  width: 100%;
  transition: all 0.3s;
  margin-bottom: 50px;
}

.line-look:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.p-line-watch {
  font-size: 24px;
  color: #7e7e7e !important;
  display: inline-block;
  text-decoration: none !important;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .hero__subtitle {
    width: 100%; /* 固定幅を削除 */
    max-width: 90vw; /* ビューポート幅の90% */
    margin: 0 auto 40px auto;
  }

  .pdf-look {
    width: 90%;
  }
}
