/* ==================================================
  Base
================================================== */
:root {
  --color-base: #ffffff;
  --color-main: #0055ff;
  --color-accent: #ffcc00;
  --color-text: #000000;
  --color-border: #999999;
  --color-gray: #e9e9e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-base);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

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

/* ==================================================
  Common Section Width
  ヒーロー以外のセクションは830px幅
================================================== */
.section-container {
  max-width: 960px;
}

/* ==================================================
  Hero
================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
	padding-top: 120px;
}

/* グラデーションの台形 */
.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";

  /*
   * #F8651D：
   * 左から0%、上から40%付近
   *
   * #EBCF95：
   * 左から40%、上から20%付近
   */
  background: linear-gradient(
    76deg,
    #F7641D 6.67%,
    #ebcf95 44.44%
		);

  /*
   * 左上     0% 0%
   * 右上    30% 0%
   * 右下    50% 100%
   * 左下     0% 100%
   */
  clip-path: polygon(
    0 0,
    35% 0,
    55% 100%,
    0 100%
		);
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .hero-section::before {
    background: linear-gradient(225deg, #EBCF95 0%, #F8A41D 70%, #F8651D 100%);
    clip-path: polygon(0 30%, 0% 0, 0% 100%, 110% 100%);
  }
}



/* Visual Area */
.hero-visual {
  position: relative;
  text-align: center;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .hero-main-img {
    max-width: 95%; /* スマホ時は少し小さく調整（必要に応じて） */
  }
}

/* Copy Area */
.hero-copy {
  padding-left: 20px;
}

.hero-sub-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
	padding-left: 90px;
	letter-spacing: 0.3em;
}

.hero-lead {
  font-size: 20px;
  font-weight: 600;
  color: #ff8a00;
  margin-bottom: 15px;
  letter-spacing: 0.3em;
}
.hero-lead img{
	height: 40px;
	display: inline;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
	margin-top: 30px;
	letter-spacing: 0.1em;
}

.hero-title .dot-text {
  color: #ff8a00;
  position: relative;
  display: inline-block;
}

/* 傍点（ドット）の再現 */
.hero-title .dot-text::before,
.hero-title .dot-text::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 12px;
  height: 12px;
  background-color: #ff8a00;
  border-radius: 50%;
}
.hero-title .dot-text::before {
	left: 20%;
}
.hero-title .dot-text::after {
	left: 70%;
}

.hero-brand {
  font-size: 24px;
  font-weight: 900;
  color: #ff8a00;
  margin-bottom: 0;
}
.hero-brand img{
  width: 300px;
}
/* CTA Buttons */
.hero-cta {
  margin-top: 40px;
}

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 64px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-white {
  background-color: #fff;
  color: #2a6fb4;
  border: 2px solid #2a6fb4;
}

.btn-hero-blue {
  background-color: #1f63ae;
  color: #fff;
  border: 2px solid #1f63ae;
}

.arrow-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 40px;
  }
  .btn-hero {
    width: 280px;
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }
  .hero-copy {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .hero-sub-text {
    font-size: 16px;
		padding-left: initial;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-title {
    font-size: 49px;
  }
  .hero-brand {
    font-size: 20px;
  }
  .hero-brand img{
    margin: 0 auto;
  }
  .hero-visual {
    margin-bottom: 20px;
  }
  .hero-cta {
    margin-top: 10px;
  }
  .btn-hero {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ==================================================
  Coupon Section
================================================== */

.coupon-heading {
  position: relative;
  text-align: center;
  padding: 16px 16px;
}

.coupon-heading::before,
.coupon-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 120px;
  background: #999;
}

.coupon-heading::before {
  left: 185px;
  transform: translateY(-50%) rotate(-17deg);
}

.coupon-heading::after {
  right: 185px;
  transform: translateY(-50%) rotate(17deg);
}

.coupon-heading p {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.coupon-heading .num {
  display: inline-block;
  color: #ff8a00;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0 4px 0 8px;
  vertical-align: -0.08em;
}

.coupon-heading .unit {
  color: #ff8a00;
  font-size: 42px;
  font-weight: 900;
  margin-right: 6px;
}

.coupon-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 46px;
}

.coupon-container {
  position: relative;
  max-width: 960px;
  z-index: 1;
}

.coupon-bg-text {
  position: absolute;
  left: 50%;
  top: -50px;
  z-index: -1;
  margin: 0;
  color: #fff1e2;
  font-size: 120px;
  /*font-weight: 900;*/
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}



@media (max-width: 767px) {
  .coupon-heading {
    padding: 0 28px 14px 28px;
  }

  .coupon-heading::before,
  .coupon-heading::after {
    height: 80px;
  }

  .coupon-heading::before {
    left: 16px;
  }

  .coupon-heading::after {
    right: 16px;
  }

  .coupon-heading p {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  .coupon-heading .num {
    font-size: 48px;
    margin-left: 4px;
  }

  .coupon-heading .unit {
    font-size: 26px;
  }
  .coupon-bg-text{
    position: initial;
    color: #fff1e2;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    transform: initial;
    text-align: center;

  }
}


/** マーキーさせたい部分 */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  color: #fff1e2;
  font-size: 120px;
  letter-spacing: 0.08em;

  /* 【追加】行の高さを文字の高さぴったり（1）にし、上下の余白をリセットします */
  line-height: 1;
	margin-bottom: -40px;
}

/* マーキーの内容部分の高さ確保 */
.marquee::after {
  content: "";
  white-space: nowrap;
  display: inline-block;

  /* 【追加】疑似要素自体の高さを0にして、余計な縦幅を取らないようにします */
  vertical-align: bottom; /* 縦方向のズレを防止 */
}
/* マーキーさせたい部分(内側) */
.marquee > .marquee-inner {
  position: absolute;
  top: 0;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 360s;
  animation-iteration-count: infinite;
}
/* マウスオーバーでマーキーストップ */
.marquee > .marquee-inner:hover {
  animation-play-state: paused;
  cursor: default;
}
/** マーキーアニメーション */
@keyframes marquee {
	0% {
    left: 0;
    transform: translate(0);
  }
  100% {
    left: 0;
    transform: translate(-100%);
  }
}


/* ==================================================
  Price Section
================================================== */

/* ==================================================
  Responsive
================================================== */

/* 1199px以下 */
@media (max-width: 1199.98px) {

}

/* 991px以下 */
@media (max-width: 991.98px) {
  /* Header */
  .coupon-section {
    padding: 0px 0 40px;
  }
}

/* 767px以下 */
@media (max-width: 767.98px) {
  /* Coupon */
}

/* 575px以下 */
@media (max-width: 575.98px) {
  /* Coupon */
  .coupon-section {
    padding: 0 0 36px;
  }
}
/* ==================================================
  Contact CTA Section
================================================== */

.contact-section {
  position: relative;
  padding: 80px 0 60px;
  background: #fff;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/lp/benefit/img/contact-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section__inner {
  position: relative;
  min-height: 390px;
}

.contact-section__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-section__heading-wrap {
  position: relative;
  display: inline-block;
  padding: 0 90px;
}

.contact-section__heading-wrap::before,
.contact-section__heading-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 108px;
  background: #ff8a00;
}

.contact-section__heading-wrap::before {
  left: 0;
  transform: translateY(-50%) rotate(28deg);
}

.contact-section__heading-wrap::after {
  right: 0;
  transform: translateY(-50%) rotate(28deg);
}

.contact-section__en {
  margin: 0 0 22px;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
}

.contact-section__title {
  margin: 0;
  color: #333;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.contact-section__service {
  margin: 22px 0 0;
  color: #ff9600;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.contact-section__lead {
  margin: 26px 0 0;
  color: #333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.contact-section__image--pc {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 1;
  width: 330px;
}

.contact-section__image img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-btn span {
  position: absolute;
  right: 52px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 50px 0 40px;
  }

  .contact-section__inner {
    min-height: auto;
  }

  .contact-section__content {
    max-width: 100%;
  }

  .contact-section__heading-wrap {
    padding: 0 34px;
  }

  .contact-section__heading-wrap::before,
  .contact-section__heading-wrap::after {
    height: 61px;
  }

  .contact-section__heading-wrap::before {
    left: 0;
  }

  .contact-section__heading-wrap::after {
    right: 0;
  }

  .contact-section__en {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .contact-section__title {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .contact-section__service {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .contact-section__lead {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }

  .contact-section__image {
    width: 260px;
    margin: 18px auto 0;
  }

  .contact-btn span {
    right: 38px;
    width: 10px;
    height: 10px;
  }
}

/* ==================================================
  Why Choose Us Section
================================================== */
.why-section {
  padding: 96px 0 120px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.why-header {
  margin-bottom: 60px;
}

.why-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: #ff8a00;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.why-label::before {
  content: '';
  position: absolute;
  left: 0; /* 左端からの位置 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央に配置 */
  width: 20px; /* 画像幅 指定 */
  height: 30px; /* 画像高さ 指定 */
  background-image: url('/lp/benefit/img/h2_line.png'); /* 画像のURL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.why-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #333333;
}

.why-title span{
  background: linear-gradient(90deg, #F8651D 0%, #F8A41D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.why-section__list {
  max-width: 980px;
  margin: 0 auto;
}

.why-item {
  margin-bottom: 96px;
}

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

.why-item__text {
  max-width: 470px;
}

.why-item__head {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f8a41d;
}

.why-item__num {
  color: #f8a41d;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
}

.why-item__title {
  margin: 0;
  color: #333;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.why-item__desc {
  margin: 28px 0 0;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

.why-item__image {
  text-align: center;
}

.why-item__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.why-item__image--01 img {
  max-width: 430px;
}

.why-item__image--02 img {
  max-width: 430px;
}

.why-item__image--03 img {
  max-width: 430px;
}
@media (max-width: 767.98px) {
  .why-section {
    padding: 46px 0 72px;
  }

  .why-section__list {
    max-width: 100%;
    margin: 10px;
  }

  .why-item {
    margin-bottom: 58px;
  }

  .why-item__text {
    max-width: 100%;
  }

  .why-item__head {
    gap: 20px;
    padding-bottom: 22px;
  }

  .why-item__num {
    font-size: 70px;
  }

  .why-item__title {
    font-size: 20px;
    line-height: 1.55;
  }

  .why-item__desc {
    margin-top: 22px;
    font-size: 14px;
    line-height: 2;
  }

  .why-item__image {
    margin-top: 34px;
  }

  .why-item__image--01 img,
  .why-item__image--02 img,
  .why-item__image--03 img {
    max-width: 320px;
  }

  .why-item--reverse .why-item__image {
    margin-bottom: 0;
  }
}

/* ==================================================
  CSS Conflict Fix
  bootstrap.min.css と既存テーマ styles.css の干渉対策
================================================== */

/* BootstrapのbodyスタイルがWordPressテーマ全体に干渉するのをリセット */
body {
  text-align: left !important;
  font-size: initial;
  background-color: transparent !important;
}

/* LP配下のリンク装飾をBootstrapのunderlineから戻す */
.lp-benefit-body a,
.p-header-main a,
.c-sp-menu a,
.c-mega-menu a {
  text-decoration: none;
}

/* Bootstrapの ul / ol 初期スタイルによるナビ崩れを戻す */
.p-header-main ul,
.c-sp-menu ul,
.c-mega-menu ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

/* Bootstrapの img vertical-align / max-width によるヘッダー画像崩れ対策 */
.p-header-main img,
.c-sp-menu img,
.c-mega-menu img {
  display: block;
  height: auto;
}

/* Bootstrapの body / h / p / a 初期値に負けないようにヘッダー基準を固定 */
.p-header-main {
  color: #000000;
  line-height: normal;
}

.p-header-main a {
  color: inherit;
}

.p-header-main a:hover {
  color: inherit;
}

/* ヘッダー内ナビゲーションの横並び・余白を固定 */
.p-header-main .p-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header-main nav,
.p-header-main nav ul {
  display: flex;
  align-items: center;
}

.p-header-main nav ul {
  gap: 40rem;
}

.p-header-main nav li {
  margin: 0;
  padding: 0;
}

/* ナビの矢印がBootstrapの nav / link 系に影響されないよう固定 */
.p-header-main .p-child-arrows li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}

.p-header-main .p-child-arrows li a::before {
  flex: 0 0 auto;
}

/* ヘッダーのお問い合わせボタン */
.p-header-main .c-btn-1 {
  width: auto;
  min-width: auto;
  box-sizing: border-box;
  border: 1px solid #2260d7;
  border-radius: 50rem;
  background: #ffffff;
  color: #2260d7 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  padding: 10rem 20rem;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.p-header-main .c-btn-1:hover {
  color: #2260d7 !important;
  opacity: 0.85;
}

/* メガメニュー内ボタンがBootstrap .btn系・a系に引っ張られないよう固定 */
.c-mega-menu__btn {
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
}

.c-mega-menu__btn--blue,
.c-mega-menu__btn--blue:hover {
  color: #ffffff !important;
  background: #2260d7;
}

.c-mega-menu__btn--orange,
.c-mega-menu__btn--orange:hover {
  color: #ffffff !important;
  background: #ffa322;
}

/* SPメニューのボタン色・表示を固定 */
.c-sp-menu a {
  text-decoration: none;
  box-sizing: border-box;
}

.c-sp-menu a.c-btn-1 {
  color: #ffffff !important;
}

.c-sp-menu a.c-btn-1 {
  color: #2260d7 !important;
  background: #ffffff;
}

.p-header-main a,
.c-sp-menu a,
.c-mega-menu a {
  text-decoration: none;
}

/* Bootstrapの .row > * padding と既存テーマ .p-flex の干渉をLP内で限定調整 */
.lp-benefit-body .row {
  box-sizing: border-box;
}

.lp-benefit-body .row > * {
  box-sizing: border-box;
}

/* SP表示時のヘッダー・メニュー崩れ対策 */
@media screen and (max-width: 750px) {
  .p-header-main .p-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .p-header-main nav {
    display: none !important;
  }

  .c-sp-menu ul {
    margin: 0;
    padding-left: 30rem;
    padding-right: 30rem;
  }

  .c-sp-menu li {
    margin: 0;
    padding: 0;
  }

  .c-sp-menu a {
    width: 100%;
  }
}

.features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-header {
  margin-bottom: 60px;
}

.features-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: #ff8a00;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.features-label::before {
  content: '';
  position: absolute;
  left: 0; /* 左端からの位置 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央に配置 */
  width: 20px; /* 画像幅 指定 */
  height: 30px; /* 画像高さ 指定 */
  background-image: url('/lp/benefit/img/h2_line.png'); /* 画像のURL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.features-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #333333;
}
.features-box .col-md-6 {

}

.features-item {
  border: solid 1px orange;
  border-radius: 5px;
  padding: 30px 20px;
  margin: 10px;
}

.features-item-img img {
  width: 140px;
}

.features-item-img {
  text-align: right;
}

.features-item h3 {
  color: orange;
  font-size: 18px;
}
.features-item-str {
  font-size: 14px;
}
.features-item-str h3 {
  margin-bottom: 10px;
}
@media screen and (max-width: 767.98px) {
  .features-item-img, .features-item-str {
    text-align: center;
  }

  .features-item-img img {
    margin: 0 auto;
  }
  .features-item-str h3 {
    margin: 20px 0;
  }

}




.solution-section {
  padding: 80px 0;
  position: relative;
  min-height: 500px;
  background: linear-gradient(90deg, #F8651D 0%, #F8A41D 100%);
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 34px solid #fff;
}

.solution-header {
  margin-bottom: 60px;
}

.solution-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.solution-label::before {
  content: '';
  color: #fff;
  position: absolute;
  left: 0; /* 左端からの位置 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央に配置 */
  width: 20px; /* 画像幅 指定 */
  height: 30px; /* 画像高さ 指定 */
  background-image: url('/lp/benefit/img/h2_line_w.png'); /* 画像のURL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.solution-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

.problem-card {
  text-align: center;
  margin: 10px;
  padding: 20px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* グレーのボックス */
.problem-card__box {
  position: relative;
  width: 100%;
  height: 174px;
  margin: 0 auto;
  background: #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左上のラベル */
.problem-card__label {
  position: absolute;
  top: -10px;
  left: -11px;
  width: 130px;
  height: 50px;
  background: #444;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 見出し */
.problem-card__title {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

/* オレンジの下向き矢印 */
.problem-card__arrow {
  position: relative;
  width: 34px;
  height: 34px;
  margin: -8px auto 18px;
}

.problem-card__arrow span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 1.5px solid #ff8a00;
  border-bottom: 1.5px solid #ff8a00;
  transform: translateX(-50%) rotate(45deg);
}

.problem-card__arrow span:nth-child(1) {
  top: 0;
}

.problem-card__arrow span:nth-child(2) {
  top: 12px;
}

/* 中央の画像部分：あとで本画像に差し替え */
.problem-card__image {
  margin: 0 auto 22px;
}

.problem-card__image img {
  display: block;
  width: 120px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

/* 下の説明文 */
.problem-card__text {
  margin: 0;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.problem-card__text strong {
  font-weight: 800;
}

.benefit_box div {
  /*border: solid 1px;*/
}

.benefit_item {
  text-align: center;
  box-shadow: 1px 1px 5px 1px #999;
  margin: 10px;
  padding: 1px 0 10px 0;
}

.benefit_item_img img {
  width: 100px;
  margin: 10px auto;
}

.benefit_item_label {
}

.benefit_item_label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 28px;
  background: linear-gradient(
		90deg,
		#ff9a4a 0%,
		#ff7a1a 45%,
		#ff5c00 100%
		);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.benefit_item_str {
}

.benefit_item_str span {
  font-size: 26px;
  font-weight: bold;

}

.price-section {
  padding: 80px 0;
  position: relative;
  min-height: 420px;
  overflow: hidden;
	background: #fff url("/lp/benefit/img/price_bg.jpg") repeat-x left top;

}

.price-header {
  margin-bottom: 60px;
}

.price-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.price-label::before {
  content: '';
  color: #fff;
  position: absolute;
  left: 0; /* 左端からの位置 */
  top: 50%;
  transform: translateY(-50%); /* 上下中央に配置 */
  width: 20px; /* 画像幅 指定 */
  height: 30px; /* 画像高さ 指定 */
  background-image: url('/lp/benefit/img/h2_line_w.png'); /* 画像のURL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.price-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.price-img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

@media (max-width: 767.98px) {
	.price-section {
		background: #fff url("/lp/benefit/img/price_bg_sp.png") repeat-x left top;
	}

  .price-box {
    flex-direction: column;
    gap: 15px;
  }

  .price-img-item {
    width: 100%;
  }
}

.price-img-item img {
  max-width: 100%;
  height: auto;
}
.faq-section {
  padding: 145px 0 140px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.faq-section__heading {
  margin-bottom: 96px;
}

.faq-section__en {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  color: #f8651d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.16em;
}

.faq-section__en::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 50%;
  width: 34px;
  height: 1px;
  background: #f8651d;
  transform: rotate(-58deg);
  transform-origin: center;
}

.faq-section__title {
  margin: 0;
  color: #333;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.faq-accordion {
  max-width: 1120px;
  margin: 0 auto;
}

.faq-item {
  border: 0;
  border-top: 1px solid #999;
  border-radius: 0;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 1px solid #999;
}

.faq-button {
  position: relative;
  min-height: 108px;
  padding: 0 74px 0 88px;
  background: transparent;
  color: #333;
  box-shadow: none;
  border-radius: 0;

  display: flex;
  align-items: center;
  gap: 34px;
}

.faq-button:not(.collapsed) {
  background: transparent;
  color: #333;
  box-shadow: none;
}

.faq-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-q {
  flex: 0 0 auto;
  color: #333;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.faq-question {
  color: #333;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* Bootstrap標準アイコンを消す */
.faq-button::after {
  display: none;
}

/* 右側の＋ / ー */
.faq-button::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #f8a41d;
  transform: translateY(-50%);
}

.faq-button .faq-question::after {
  content: "";
  position: absolute;
  right: 62px;
  top: 50%;
  width: 1px;
  height: 30px;
  background: #f8a41d;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

/* 開いているときは縦線を消して「ー」にする */
.faq-button:not(.collapsed) .faq-question::after {
  opacity: 0;
}

.faq-body {
  padding: 0 74px 34px 88px;
}

.faq-answer {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.faq-a {
  flex: 0 0 auto;
  color: #f8a41d;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.faq-answer p {
  margin: 0;
  padding-top: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media (max-width: 767.98px) {
  .faq-section {
    padding: 70px 0 80px;
  }

  .faq-section__heading {
    margin-bottom: 48px;
  }

  .faq-section__en {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .faq-section__en::before {
    left: -30px;
    width: 28px;
  }

  .faq-section__title {
    font-size: 30px;
  }

  .faq-button {
    min-height: 86px;
    padding: 0 46px 0 8px;
    gap: 18px;
  }

  .faq-q {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .faq-button::before {
    right: 8px;
    width: 22px;
  }

  .faq-button .faq-question::after {
    right: 18px;
    height: 22px;
  }

  .faq-body {
    padding: 0 8px 28px 8px;
  }

  .faq-answer {
    gap: 18px;
  }

  .faq-a {
    font-size: 30px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.8;
  }
}
