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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

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

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

/* スマホのみ表示 */
.sp-only {
  display: none;
}

/* PCのみ表示 */
.pc-only {
  display: inline;
}

/* ============================================
   Common Utilities
   ============================================ */
.text-orange {
  color: #e57331;
}

.text-orange-large {
  color: #ff9500;
  font-size: 60px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.text-orange-large::before {
  content: '・・・';
  position: absolute;
  top: -1.3em;
  left: 0;
  right: 0;
  font-size: 0.6em;
  letter-spacing: 0.95em;
  text-align: center;
  color: #ff9500;
}

.text-red {
  color: #b50404;
}

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

.highlight {
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
}

/* ============================================
   Header
   ============================================ */
.header {
  background-color: #073763;
  height: 81px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  opacity: 0.8;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background-color: #edece9;
  padding-top: 81px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
}

/* 左の斜め装飾（ライトグレー） */
.hero::before {
  content: "";
  position: absolute;
  top: 81px;
  left: 0;
  width: 260px;
  height: 241px;
  background: linear-gradient(to bottom right, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

/* 右の斜め装飾（ライトグレー） */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 260px;
  height: 241px;
  background: linear-gradient(to top left, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}


.hero-inner {
  max-width: 1920px;
  margin: 0 auto;
  /* padding: 40px; */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-image: url('img/hero-image.webp'); */
  background-image: url('../img/houjin-chukai-lp/hero-image.webp');
  background-repeat: no-repeat;
  /* 中央に配置する */
  background-position: center;
  /* 写真を少しだけ拡大 */
  background-size: 1000px auto;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  min-height: 580px;
  padding: 20px 40px;
}

.hero-content-left {
  z-index: 2;
  text-align: center;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hero-content-right {
  width: 50%;
  height: 100%;
}

.hero-label {
  background-color: #425b76;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  padding: 8px 24px;
  display: inline-block;
  letter-spacing: 3.5px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 88px;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 2.6px;
  margin-bottom: 8px;
  text-align: center;
}

.hero-title-orange {
  color: #e57331;
}

.hero-title-small {
  font-size: 67px;
  color: #000;
}

.hero-subtitle {
  font-size: 49px;
  font-weight: 900;
  letter-spacing: -4.4px;
  text-align: center;
}

.hero-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.badge {
  width: 141px;
  height: 141px;
  background-color: #073763;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.badge-text {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
}

.badge-text-small {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.badge-text-large {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.0;
}

.badge-zero {
  font-size: 40px;
}

.hero-campaign {
  font-size: 33px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-top: 24px;
}

.hero-campaign-text {
  font-weight: 500;
}

.hero-campaign-highlight {
  color: #b50404;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  border-radius: 95px;
  font-size: 31px;
  font-weight: 700;
  transition: opacity 0.3s;
  min-width: 419px;
  height: 62px;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: #e57331;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #e57331;
  border: 1px solid #e57331;
}

.btn-yellow {
  background-color: #fcdc4e;
  color: #000;
  border: none;
}

.btn-label {
  background-color: #fff;
  color: #e57331;
  font-size: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid currentColor;
}

.btn-green {
  background-color: #1dc007;
  color: #fff;
}

/* ============================================
   Recommend Section
   ============================================ */
.recommend {
  background-color: #073763;
  padding: 80px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.recommend::before {
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  width: 260px;
  height: 241px;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.3;
  z-index: 3;
}

/* 右の斜め装飾（ライトグレー） */
.recommend::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 260px;
  height: 241px;
  /* 右上が直角になる二等辺三角形 */
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.3;
  z-index: 3;
}

.recommend-inner {
  max-width: 1014px;
  margin: 0 auto;
}

.recommend-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.recommend-deco-left,
.recommend-deco-right {
  width: 79px;
  height: 75px;
}

.recommend-deco-right {
  transform: scaleX(-1);
}

.recommend-title {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
}

.recommend-title-line {
  width: 769px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto 32px;
}

.recommend-description {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  line-height: 1.56;
  margin-bottom: 48px;
}

.recommend-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.recommend-card {
  background-color: #fff;
  width: 340px;
  padding: 16px 2px;
  text-align: center;
}

.recommend-card-title {
  color: #073763;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 16px;
}

.recommend-card-arrow {
  width: 0;
  height: 0;
  border-left: 73px solid transparent;
  border-right: 73px solid transparent;
  border-top: 25px solid #073763;
  margin: 0 auto 16px;
}

.recommend-card-solution {
  color: #073763;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.48;
}

/* ============================================
   Problems Section
   ============================================ */
.problems {
  background-color: #fff;
  padding: 40px 0 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.problems::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to bottom right, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

/* 右の斜め装飾（ライトグレー） */
.problems::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top left, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.problems-question {
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 0 20px;
}

/* 第1行: テキスト | バッジ | テキスト */
.problems-question-row-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.badge-text-left,
.badge-text-right {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.badge-text-left {
  text-align: right;
}

.badge-text-right {
  text-align: left;
}

.recommend-badge {
  background-color: #073763;
  color: #fff;
  font-size: 36.167px;
  font-weight: 700;
  padding: 0 35px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 83px;
  width: 498px;
  line-height: 32.667px;
}

/* 第2行: 人物画像 | タイトル | 人物画像 */
.problems-question-row-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: -40px auto 0;
}

.problems-question-row-2 .problems-title {
  margin: 40px -30px 0;
}

.badge-person-left {
  width: 242px;
  height: auto;
}

.badge-person-right {
  width: 234px;
  height: auto;
}

.problems-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 36px;
  margin-bottom: 60px;
}

.problems-title .text-orange-large {
  font-size: 60px;
}

/* モバイル用吹き出し - デスクトップでは非表示 */
.mobile-fukidashi {
  display: none;
}

/* モバイル用人物+吹き出し - デスクトップでは非表示 */
.mobile-person-fukidashi {
  display: none;
}

.problems-container {
  display: flex;
  justify-content: center;
  gap: 22px;
  max-width: 1014px;
  margin: 0 auto;
}

.problems-column {
  width: 481.742px;
}

.problems-header {
  background: #83b6fe;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 0 15px;
  border-radius: 5.887px;
  margin-bottom: 25px;
  height: 58.869px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-header.blue {
  background-color: #83b6fe;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  background-image: url('../img/houjin-chukai-lp/down-arrow.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  padding-bottom: 50px;
}

.problem-item {
  background: #efefef;
  padding: 15px 20px;
  border-radius: 5.887px;
  text-align: center;
  font-weight: 700;
  height: 86.341px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-item p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.problems-arrow {
  display: none;
}

/* ============================================
   Solution Section
   ============================================ */
.solution {
  padding: 0;
  background: #fff;
}

.solution-box {
  max-width: 960px;
  margin: 0 auto;
  border: 8px solid #ff9500;
  padding: 40px 50px;
  position: relative;
  text-align: center;
  min-height: 410px;
}

.solution-subtitle {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 32px;
  color: #ff9500;
}

.solution-subtitle .text-orange-large {
  font-size: 56px;
  font-weight: 700;
}

.solution-subtitle .text-orange-large::before {
  display: none;
}

.solution-title {
  font-size: 41px;
  font-weight: 900;
  color: #073763;
  margin-bottom: 30px;
  line-height: 67.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.solution-highlight {
  font-size: 46px;
  background: linear-gradient(transparent 50%, #fcdc4e 50%);
  padding: 0 5px;
  display: inline-block;
  line-height: 67.2px;
  font-weight: 900;
}

.solution-description {
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  text-align: left;
  letter-spacing: -0.46px;
  max-width: 790px;
}

.solution-image {
  position: absolute;
  right: 40px;
  top: 182px;
  width: 225px;
  height: 220px;
}

/* ============================================
   Merit Section
   ============================================ */
.merit {
  padding: 0 0 40px;
  background: #fff;
}

.merit-header-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 0;
  margin-bottom: 60px;
  max-width: 1014px;
  margin-left: auto;
  margin-right: auto;
}

.merit-orange-bar {
  width: 52px;
  height: 230px;
  background: #ff9500;
  position: relative;
  flex-shrink: 0;
}

/* 左オレンジバーの下の三角形 */
.merit-orange-bar.left::after {
  content: '';
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 63.5px solid transparent;
  border-right: 63.5px solid transparent;
  border-top: 45px solid #ff9500;
}

/* 右オレンジバーの下の三角形 */
.merit-orange-bar.right::after {
  content: '';
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 63.5px solid transparent;
  border-right: 63.5px solid transparent;
  border-top: 45px solid #ff9500;
}

.merit-header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 230px;
  gap: 15px;
}

.merit-intro {
  font-size: 31px;
  font-weight: 700;
  color: #073763;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.62px;
}

.merit-title {
  font-size: 29.169px;
  font-weight: 500;
  color: #073763;
  margin: 0;
  line-height: 1;
}

.merit-highlight {
  font-size: 54.973px;
  font-weight: 700;
  letter-spacing: 5.4973px;
  color: #073763;
}

.merit-bold {
  font-weight: 900;
}

.merit-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #073763;
  margin: 0;
  line-height: 1;
}

.merit-subtitle .text-orange-large {
  font-size: 47px;
  color: #ff9500;
  line-height: 1;
  vertical-align: baseline;
}

.merit-subtitle .text-orange-large::before {
  display: none;
}

.merit-columns {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1014px;
  margin: 0 auto;
  position: relative;
}

.merit-card {
  width: 491px;
  background: #efefef;
  min-height: 548px;
}

.merit-card-header {
  padding: 0 15px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 45px;
  position: relative;
}

.merit-card-header.orange {
  background: #ff9500;
}

.merit-card-header::after {
  content: '▼';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 41px;
  color: #ff9500;
}

.merit-card-body {
  padding: 50px 30px 30px;
  text-align: left;
}

.merit-point {
  margin-bottom: 20px;
}

.merit-point:last-child {
  margin-bottom: 0;
}

.merit-point-title {
  color: #b50404;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 34px;
}

.merit-point-description {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
  margin-top: 5px;
}

/* ============================================
   Features Header (in Problems Section)
   ============================================ */
.features-header {
  background: #fff;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.features-header-title {
  color: #073763;
  font-size: 53px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 36px;
}

.features-header-arrows {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 41px solid #ff9500;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background-color: #073763;
  padding: 40px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.features::before {
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.5;
  z-index: 3;
}

/* 右の斜め装飾（ライトグレー） */
.features::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  /* 右上が直角になる二等辺三角形 */
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.5;
  z-index: 3;
}

.feature-point {
  background: #fff;
  max-width: 1014px;
  margin: 0 auto;
  padding: 0 0 8px 0;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fcdc4e;
  padding: 25px 20px 25px 0;
  margin-bottom: 30px;
  height: 205px;
  position: relative;
}

.feature-number {
  background: #ff9500;
  width: 126px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  margin-left: 35px;
}

.feature-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 1px;
  background: #fff;
}

.feature-label {
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  font-size: 37px;
  line-height: 1;
  color: #fff;
}

.feature-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  position: relative;
  top: 14px;
}

.feature-title {
  font-size: 46px;
  font-weight: bold;
  color: #073763;
  line-height: 60px;
}

.feature-image {
  margin-bottom: 30px;
}

.feature-image img {
  width: 100%;
}

.feature-description {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: -0.34px;
  font-weight: 500;
  padding: 0 60px 30px;
}

.feature-comparison {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 30px;
}

.feature-comparison-3 {
  align-items: stretch;
}

.comparison-column {
  flex: 1;
  max-width: 459px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}

.comparison-header {
  padding: 0 15px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  height: 59.663px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 32px;
}

.comparison-header.gray {
  background: #666666;
}

.comparison-header.orange {
  background: #e57331;
}

/* Point3の比較ヘッダー */
.comparison-header-3 {
  height: 65.461px;
}

.feature-comparison-3 .comparison-header.orange {
  background: #ff9500;
}

.comparison-content {
  border: 1px solid #000;
  border-radius: 25px;
  overflow: hidden;
}

.comparison-content img {
  width: 100%;
}

.comparison-content-right {
  display: flex;
  flex-direction: column;
}

.comparison-content-right .comparison-img-top {
  width: 100%;
}

.comparison-divider {
  border-top: 1px solid #ccc;
  margin: 0;
}

.comparison-content-right .comparison-img-bottom {
  width: 100%;
}

.comparison-text {
  padding: 20px;
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}

.feature-box {
  background: #fcf1ea;
  border: 3px solid #ff9500;
  border-radius: 25px;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  margin: 30px;
}

.feature-box p {
  font-size: 20px;
  line-height: 38px;
}

.features-bottom {
  display: flex;
  flex-direction: column;
  background: #fff;
  max-width: 1014px;
  margin: 0 auto;
  padding: 0 0 48px 0;
}

.fukidashi {
  text-align: center;
  margin: 32px 0;
}

.fukidashi p {
  display: inline-block;
  background-color: #ff9500;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  padding: 10px 64px;
  border-radius: 230px;
  position: relative;
  margin-bottom: 0;
  text-align: center;
}

.fukidashi p::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 25px solid #ff9500;
}

.feature-summary {
  color: #073763;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  max-width: 1014px;
  margin: 0 auto 30px;
  padding: 40px 60px;
  line-height: 60px;
}

.feature-images {
  display: flex;
  justify-content: center;
  gap: 23px;
  max-width: 1014px;
  margin: 0 auto 30px;
}

.feature-images img {
  max-width: 455px;
}

.feature-note {
  color: #073763;
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  max-width: 1014px;
  padding: 36px;
  line-height: 60px;
}

.feature-highlight {
  color: #B50404;
  font-size: 29px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}

.feature-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1014px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-btn {
  font-size: 28px;
  min-width: 380px;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.reviews::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to bottom right, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

/* 右の斜め装飾（ライトグレー） */
.reviews::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top left, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.reviews-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.reviews-megaphone {
  width: 120px;
  height: auto;
}

.reviews-megaphone-left {
  /* 左側のメガホン */
}

.reviews-megaphone-right {
  transform: scaleX(-1);
}

.reviews-title {
  display: inline-block;
  background-color: #ff9500;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  padding: 0px 100px;
  border-radius: 230px;
}

.reviews-google {
  font-size: 56px;
  font-weight: 700;
  color: #ff9500;
  text-align: center;
  margin-bottom: 32px;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.review-stat-wrapper {
  position: relative;
  width: 352.562px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.reviews-ribbon {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.review-stat-label {
  position: relative;
  top: -8px;
  z-index: 2;
  color: #fff;
}

.review-avalage-label {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.review-amount-label {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.review-stat-number {
  font-size: 35px;
}

.reviews-list {
  max-width: 894px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  gap: 12px;
  border: 3px solid #ff9500;
  padding: 12px;
  margin-bottom: 24px;
  background-color: #fff;
}

.review-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.review-spacer {
  height: 20px;
}

.review-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.review-meta {
  text-align: center;
}

/* モバイル用title-box - デスクトップでは非表示 */
.review-title-box-sp {
  display: none;
}

review-header-right-sp {
  display: none;
}


.review-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-stars {
  color: #fcdc4e;
  font-size: 24px;
}

.review-right {
  flex: 1;
}

.review-title-box {
  background-color: #ff9500;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 4px 24px;
  border-radius: 230px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.review-title-box::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #ff9500;
}

.review-arrow {
  font-size: 24px;
}

.review-text {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.cta-buttons {
  text-align: center;
  margin-top: 48px;
}

.cta-btn-large {
  font-size: 26px;
  min-width: 657px;
  height: 76px;
  background-color: #1dc007;
  color: #fff;
}

/* ============================================
   Flow Section
   ============================================ */
.flow {
  background-color: #073763;
  padding: 80px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.flow::before {
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.3;
  z-index: 3;
}

/* 右の斜め装飾（ライトグレー） */
.flow::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.3;
  z-index: 3;
}

.flow-title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  background-color: #073763;
  display: block;
  width: fit-content;
  padding: 0px 60px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #fff;
}

.flow-steps {
  max-width: 1014px;
  margin: 0 auto;
  background-color: #fff;
  padding: 48px 60px;
}

.flow-step {
  margin-bottom: 0;
}

.flow-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.flow-step-number {
  width: 50px;
  height: 50px;
  background-color: #ff9500;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-title {
  font-size: 36px;
  font-weight: 700;
  color: #ff9500;
  margin: 0;
}

.flow-step-description {
  font-size: 20px;
  font-weight: 500;
  color: #073763;
  line-height: 34px;
  margin-left: 66px;
}

.flow-step-note {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
  margin-left: 66px;
}

.flow-arrow {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 35px solid #ff9500;
  margin: 24px auto;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  background-color: #fff;
  padding: 60px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.faq::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to bottom right, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

/* 右の斜め装飾（ライトグレー） */
.faq::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top left, #DBDBDB 50%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.faq-icon {
  width: 80px;
  height: auto;
}

.faq-icon-left {
  position: relative;
  top: -20px;
  right: -10px;
  z-index: 1;
}

.faq-icon-right {
  position: relative;
  top: 20px;
  left: -10px;
  z-index: 1;
}

.faq-title {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  background-color: #ff9500;
  display: inline-block;
  padding: 0px 48px;
  border-radius: 230px;
  color: #fff;
  margin: 0;
}

.faq-list {
  max-width: 894px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
}

.faq-q {
  width: 63px;
  height: 63px;
  background-color: #ff9500;
  color: #fff;
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-question p {
  flex: 1;
  font-size: 26px;
  font-weight: 700;
}

.faq-toggle {
  width: 42px;
  height: 42px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #ff9500;
}

.faq-toggle::before {
  width: 4.67px;
  height: 42px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s;
}

.faq-toggle::after {
  width: 42px;
  height: 4.67px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-toggle::before {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #e8e8e8;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 24px;
}

.faq-answer p {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 16px;
}

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

/* ============================================
   Company Section
   ============================================ */
.company {
  background-color: #073763;
  padding: 80px 0;
  position: relative;
}

/* 左の斜め装飾（ライトグレー） */
.company::before {
  content: "";
  position: absolute;
  bottom:0;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.5;
  z-index: 3;
}

/* 右の斜め装飾（ライトグレー） */
.company::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 260px;
  height: 100%;
  /* 右上が直角になる二等辺三角形 */
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.10) 50%, transparent 50%);
  opacity: 0.5;
  z-index: 3;
}

.company-title {
  width: 490px;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
  background-color: #073763;
  display: block;
  padding: 0 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
}

.company-content {
  max-width: 1014px;
  margin: 0 auto;
  background-color: #fff;
  padding: 32px;
}

.company-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.company-table {
  flex: 1;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 2px solid #073763;
}

.company-table th,
.company-table td {
  padding: 16px 0;
  text-align: left;
  font-size: 20px;
}

.company-table th {
  font-weight: 700;
  width: 120px;
  color: #000;
  padding-right: 12px;
}

.company-table td {
  color: #000;
}

.company-map {
  width: 380px;
  height: 380px;
  background-color: #e0e0e0;
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: #e0f0ff;
  padding: 32px 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 16px;
  color: #000;
}

.footer-divider {
  margin: 0 16px;
  color: #000;
}

.footer-address {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 12px;
  color: #666;
}

/* ============================================
   Tablet (max-width: 1023px)
   ============================================ */
@media (max-width: 1023px) {
  /* スマホのみ表示 */
  .sp-only {
    display: inline;
  }

  /* PCのみ表示 */
  .pc-only {
    display: none;
  }

  .header-inner {
    padding: 0 16px;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    max-width: 1920px;
    margin: 0 auto;
    /* padding: 40px; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../img/houjin-chukai-lp/hero-image.webp');
    background-repeat: no-repeat;
    /* 中央に配置する */
    background-position: -200px center;
    /* 写真を少しだけ拡大 */
    background-size: 1100px auto;
  }

  .hero-content-left {
    justify-content: space-between;
    padding: 30px 0;
    width: 500px;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-title-small {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 36px;
  }

  .hero-label {
    font-size: 28px;
    padding: 6px 20px;
  }

  .badge {
    width: 120px;
    height: 120px;
  }


  .badge-text {
    font-size: 24px;
  }

  .badge-text-small {
    font-size: 18px;
  }

  .badge-text-large {
    font-size: 18px;
  }

  .badge-zero {
    font-size: 30px;
  }

  .hero-campaign {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    min-width: 90%;
    gap: 16px;
  }

  .btn {
    min-width: 90%;
    max-width: 420px;
    font-size: 24px;
  }

  /* Recommend Section */
  .recommend-inner {
    padding: 0 20px;
  }

  .recommend-title-wrapper {
    gap: 4px;
  }

  .recommend-title {
    font-size: 36px;
  }

  .recommend-title-line {
    width: 100%;
    max-width: 500px;
  }

  .recommend-description {
    font-size: 20px;
  }

  .recommend-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .recommend-card {
    width: 100%;
    max-width: 420px;
  }

  .problems {
    padding: 30px 0 0;
  }

  .problems-question {
    margin-bottom: 20px;
  }

  .problems-question-row-1 {
    gap: 10px;
  }

  .badge-text-left,
  .badge-text-right {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #333;
  }

  .problems-question-row-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .problems-question-row-1 .recommend-badge {
    order: -1;
    margin-bottom: 10px;
  }

  .problems-question-row-1 .badge-text-left,
  .problems-question-row-1 .badge-text-right {
    display: none;
  }

  .recommend-badge {
    font-size: 28.4px;
    height: 50px;
    width: 391px;
    max-width: 100%;
    padding: 0 28px;
    line-height: 50px;
    white-space: nowrap;
    border-radius: 78px;
  }

  .problems-question-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: end;
    margin-top: 10px;
    gap: 0;
  }

  .problems-question-row-2 .problems-title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 0 10px 0;
    width: 100%;
  }

  .badge-person-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .badge-person-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .badge-person-left,
  .badge-person-right {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;
  }

  .problems-title {
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .problems-title .text-orange-large {
    font-size: 42.5px;
  }

  /* モバイル用: 人物と吹き出しの組み合わせ */
  .mobile-person-fukidashi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .problems-question-row-2 .badge-person-left,
  .problems-question-row-2 .badge-person-right {
    display: none;
  }

  .person-fukidashi-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 160px;
  }

  .mobile-person-left{
    width: 210px;
    height: auto;
    object-fit: contain;
    position:absolute;
    left: 140px;
  }

  .mobile-person-right {
    width: 210px;
    height: auto;
    object-fit: contain;
    position:absolute;
    right: 140px;
  }

  .fukidashi-bubble {
    background-image: url('../img/houjin-chukai-lp/fukidashi-left.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 190px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px 15px 18px;
    position:absolute
  }

  .fukidashi-bubble span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.35;
  }

  .fukidashi-bubble-left {
    right: 200px;
  }

  .fukidashi-bubble-right {
    transform: scaleX(-1);
    left: 200px;
  }

  .fukidashi-bubble-right span {
    transform: scaleX(-1);
    right: 0;
  }

  .text-orange-large {
    font-size: 47px;
  }

  .text-orange-large::before {
    font-size: 0.35em;
    letter-spacing: 1.8rem;
    top: -0.8rem;
    left: 1rem;
  }


  .problems-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .problems-column {
    width: 100%;
    max-width: 480px;
  }

  /* Solution Section */
  .solution-box {
    max-width: 100%;
    margin: 0 20px;
    padding: 30px;
  }

  .solution-subtitle {
    font-size: 32px;
  }

  .solution-subtitle .text-orange-large {
    font-size: 40px;
  }

  .solution-title {
    font-size: 28px;
  }

  .solution-highlight {
    font-size: 32px;
  }

  .solution-description {
    font-size: 18px;
    line-height: 36px;
  }

  .solution-image {
    position: static;
    margin: 20px auto 0;
    width: 180px;
    height: auto;
  }

  /* Merit Section */
  .merit-header-area {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }

  .merit-orange-bar {
    display: none;
  }

  .merit-columns {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .merit-card {
    width: 100%;
    max-width: 480px;
  }

  .merit-point-description {
    font-size: 18px;
    line-height: 32px;
  }


  .features-header-title {
    color: #073763;
    font-size: 53px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 60px;
  }

  /* Features Section */
  .feature-point {
    max-width: 100%;
    margin: 0 20px 20px;
  }

  .feature-header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .feature-number {
    margin-left: 0;
    width: 274px;
    height: 40px;
    border-radius: 100px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .feature-label {
    font-size: 31px;
    position: static;
    transform: none;
  }

  .feature-num {
    font-size: 31px;
    transform: none;
    top: 2px;
  }

  .feature-number::after {
    display: none;
  }

  .feature-title {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
  }

  .feature-description {
    font-size: 18px;
    line-height: 32px;
    padding: 0 30px 40px;
  }

  .feature-comparison {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .comparison-column {
    max-width: 100%;
  }

  .feature-box {
    margin: 20px;
  }

  .features-bottom {
    max-width: 100%;
    margin: 0 20px;
  }

  .feature-summary {
    font-size: 24px;
    line-height: 42px;
    padding: 20px;
  }

  .feature-images {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .feature-images img {
    max-width: 100%;
  }

  .feature-note {
    font-size: 20px;
    line-height: 36px;
    padding: 20px;
  }

  .feature-highlight {
    font-size: 22px;
  }

  .feature-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .cta-btn {
    min-width: 90%;
    max-width: 420px;
    font-size: 22px;
  }

  /* Features Section background colors (from mobile) */
  .feature-point {
    background-color: #073763;
    color: #fff;
  }

  .features-bottom {
    background-color: #073763;
  }

  .feature-summary {
    background-color: #073763;
    color: #fff;
  }

  .feature-note {
    background-color: #073763;
    color: #fff;
  }

  .feature-highlight {
    color: #F6FF00;
  }

  .feature-box p {
    color: #000;
    font-size: 18px;
    line-height: 32px;
  }

  .comparison-content {
    background-color: #fff;
    color: #000;
  }

  .comparison-text {
    font-size: 18px;
    line-height: 32px;
    padding: 24px;
  }

  /* Reviews Section */
  .reviews {
    padding: 50px 0;
  }

  .reviews-header {
    gap: 8px;
    margin-bottom: 28px;
    padding: 0;
  }

  .reviews-megaphone {
    width: 70px;
  }

  .reviews-title {
    font-size: 36px;
    padding: 0 50px;
  }

  .reviews-google {
    font-size: 44px;
    margin-bottom: 28px;
  }

  .reviews-stats {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
  }

  .review-stat-wrapper {
    width: 300px;
    height: 60px;
  }

  .review-avalage-label {
    font-size: 28px;
  }

  .review-amount-label {
    font-size: 20px;
  }

  .review-stat-number {
    font-size: 30px;
  }

  .reviews-list {
    padding: 0 20px;
  }

  .review-card {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }

  .review-user {
    flex-direction: row;
    align-items: center;
    min-width: auto;
    gap: 12px;
    margin-bottom: 12px;
  }

  .review-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 0;
  }

  .review-header-right-sp {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .review-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 14px;
    gap: 14px;
  }

  .review-name {
    font-size: 22px;
    margin: 0;
  }

  .review-stars {
    font-size: 22px;
  }

  /* タブレット時: review-meta内にtitle-boxを表示 */
  .review-title-box-sp {
    display: block;
    width: 100%;
    background-color: #ff9500;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-align: center;
    white-space: nowrap;
    position: relative;
  }

  .review-title-box-sp::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #ff9500;
  }

  /* タブレット時: 元のtitle-boxを非表示 */
  .review-right .review-title-box {
    display: none;
  }

  .review-right {
    width: 100%;
  }

  .review-spacer {
    display: none;
  }

  .review-title-box {
    font-size: 18px;
    padding: 6px 18px;
    margin-bottom: 12px;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 100px;
    white-space: nowrap;
  }

  .review-title-box::before {
    display: none;
  }

  .review-text {
    font-size: 18px;
    line-height: 32px;
  }

  .cta-buttons {
    margin-top: 35px;
  }

  .cta-btn-large {
    min-width: 90%;
    max-width: 500px;
    font-size: 20px;
    height: 60px;
    padding: 0 20px;
  }

  /* Flow Section */
  .flow-steps {
    max-width: 100%;
    margin: 0 20px;
    padding: 30px;
  }

  .flow-title {
    font-size: 40px;
    padding: 0 40px;
  }

  .flow-step-title {
    font-size: 26px;
  }

  .flow-step-description {
    font-size: 18px;
    line-height: 32px;
    margin-left: 50px;
  }

  .flow-step-note {
    margin-left: 50px;
  }

  /* FAQ Section */
  .faq-title {
    font-size: 40px;
    padding: 0 30px;
  }

  .faq-icon {
    width: 60px;
  }

  .faq-question p {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 18px;
    line-height: 32px;
  }

  /* Company Section */
  .company-content {
    max-width: 100%;
    margin: 0 20px;
    padding: 20px;
  }

  .company-title {
    font-size: 40px;
    width: auto;
    padding: 0 40px;
  }

  .company-inner {
    flex-direction: column;
    gap: 30px;
  }

  .company-map {
    width: 100%;
    height: 300px;
  }

  .company-table th,
  .company-table td {
    font-size: 16px;
  }

  /* Hide decorations on tablet */
  .hero::before,
  .hero::after,
  .recommend::before,
  .recommend::after,
  .problems::before,
  .problems::after,
  .features::before,
  .features::after,
  .reviews::before,
  .reviews::after,
  .flow::before,
  .flow::after,
  .faq::before,
  .faq::after,
  .company::before,
  .company::after {
    display: none;
  }
}

/* ============================================
   Mobile (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  /* スマホのみ表示 */
  .sp-only {
    display: inline;
  }

  /* Header */
  .header {
    height: 60px;
  }

  .logo img {
    height: 35px;
  }

  /* Hero Section */
  .hero {
    padding-top: 60px;
    min-height: auto;
  }

  .hero-inner {
    background-size: 110% auto;
    background-position: 40% top;
  }

  .hero-content {
    max-width: 100%;
    min-height: 325px;
    padding: 0px;
    position: relative;
  }
  
  .hero-content-left {
    width: fit-content;
    padding: 0;
    scale: 0.8;
    gap: 8px;
    height: fit-content;
    position: absolute;
    left: -18px;
    top: 8px;
  }

  .hero-content-right {
    display: none;
  }

  .hero-label {
    font-size: 22px;
    padding: 4px 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 55px;
    margin-bottom: 4px;
  }

  .hero-title-small {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 31px;
    letter-spacing: -2.8px;
  }

  .hero-badges {
    gap: 6px;
    margin-top: 8px;
  }

  .badge {
    width: 89px;
    height: 89px;
    padding: 5px;
  }

  .badge-text {
    font-size: 19px;
    line-height: 1.2;
  }

  .badge-text-small {
    font-size: 15px;
  }

  .badge-text-large {
    font-size: 15px;
  }

  .badge-zero {
    font-size: 25px;
  }

  .hero-campaign {
    font-size: 19px;
    margin-top: 16px;
  }

  .hero-buttons {
    gap: 12px;
    padding-bottom: 20px;
    margin-top: 20px;
  }

  .btn {
    min-width: 100%;
    max-width: 419px;
    height: 62px;
    font-size: 31px;
    padding: 0 20px;
  }

  .btn-label {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  /* Recommend Section */
  .recommend {
    padding: 20px 0;
  }

  /* Recommend Section */
  .recommend-inner {
    padding: 0 4px;
  }

  .recommend-deco-left,
  .recommend-deco-right {
    width: 25px;
    height: 30px;
  }

  .recommend-title-wrapper {
    margin-bottom: 2px;
  }

  .recommend-title {
    font-size: 24px;
  }

  .recommend-title-line {
    width: 90%;
    margin-bottom: 24px;
  }

  .recommend-description {
    font-size: 16px;
    line-height: 1.56;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .recommend-description br {
    display: none;
  }

  .recommend-cards {
    gap: 15px;
    padding: 0 15px;
  }

  .recommend-card {
    width: 100%;
    max-width: 423px;
    padding: 10px 10px;
  }

  .recommend-card-title {
    font-size: 26px;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .recommend-card-arrow {
    border-left: 66px solid transparent;
    border-right: 66px solid transparent;
    border-top: 24px solid #073763;
    margin-bottom: 10px;
  }

  .recommend-card-solution {
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
  }

  .recommend-card-solution-big {
    font-size: 34px;
  }

  /* Problems Section */
  .problems {
    padding: 30px 0 0;
  }

  .problems-question {
    margin-bottom: 20px;
  }

  .problems-question-row-1 {
    gap: 10px;
  }

  .badge-text-left,
  .badge-text-right {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #333;
  }

  .problems-question-row-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .problems-question-row-1 .recommend-badge {
    order: -1;
    margin-bottom: 10px;
  }

  .problems-question-row-1 .badge-text-left,
  .problems-question-row-1 .badge-text-right {
    display: none;
  }

  .recommend-badge {
    font-size: 28.4px;
    height: 50px;
    width: 391px;
    max-width: 100%;
    padding: 0 28px;
    line-height: 50px;
    white-space: nowrap;
    border-radius: 78px;
  }

  .problems-question-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: end;
    margin-top: 10px;
    gap: 0;
  }

  .problems-question-row-2 .problems-title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 0 10px 0;
    width: 100%;
  }

  .badge-person-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .badge-person-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .badge-person-left,
  .badge-person-right {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;
  }

  .problems-title {
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .problems-title .text-orange-large {
    font-size: 42.5px;
  }

  /* モバイル用: 人物と吹き出しの組み合わせ */
  .mobile-person-fukidashi {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 10px;
  }

  .problems-question-row-2 .badge-person-left,
  .problems-question-row-2 .badge-person-right {
    display: none;
  }

  .person-fukidashi-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 160px;
  }

  .mobile-person-left{
    width: 210px;
    height: auto;
    object-fit: contain;
    position:absolute;
    left: -18px;
  }

  .mobile-person-right {
    width: 210px;
    height: auto;
    object-fit: contain;
    position:absolute;
    right: -18px;
  }

  .fukidashi-bubble {
    background-image: url('../img/houjin-chukai-lp/fukidashi-left.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 190px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px 15px 18px;
    position:absolute
  }

  .fukidashi-bubble span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.35;
  }

  .fukidashi-bubble-left {
    right: 0;
  }

  .fukidashi-bubble-right {
    transform: scaleX(-1);
    left: 0;
  }

  .fukidashi-bubble-right span {
    transform: scaleX(-1);
    right: 0;
  }

  .text-orange-large {
    font-size: 47px;
  }

  .text-orange-large::before {
    font-size: 0.35em;
    letter-spacing: 1.8rem;
    top: -0.8rem;
    left: 1rem;
  }

  .problems-container {
    gap: 15px;
  }

  .problems-column {
    max-width: 100%;
    padding: 0 15px;
  }

  .problems-header {
    font-size: 20px;
    height: 50px;
    margin-bottom: 20px;
  }

  .problems-list {
    gap: 25px;
    padding-bottom: 40px;
  }

  .problem-item {
    height: auto;
    min-height: 70px;
    padding: 12px 15px;
  }

  .problem-item p {
    font-size: 16px;
  }

  /* Solution Section */
  .solution-box {
    margin: 0 15px;
    padding: 25px 20px;
    min-height: auto;
  }

  .solution-subtitle {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .solution-subtitle .text-orange-large {
    font-size: 32px;
  }

  .solution-title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .solution-highlight {
    font-size: 26px;
    line-height: 1.5;
  }

  .solution-description {
    font-size: 16px;
    line-height: 32px;
    text-align: center;
  }

  .solution-image {
    width: 150px;
    margin-top: 15px;
  }

  /* Merit Section */
  .merit {
    padding: 0 0 30px;
  }

  .merit-header-area {
    margin-bottom: 10px;
  }

  .merit-header-content {
    height: auto;
    padding: 20px 0;
  }

  .merit-intro {
    font-size: 22px;
  }

  .merit-title {
    font-size: 20px;
  }

  .merit-highlight {
    font-size: 38px;
    letter-spacing: 3px;
  }

  .merit-subtitle {
    font-size: 20px;
  }

  .merit-subtitle .text-orange-large {
    font-size: 35px;
  }

  .merit-columns {
    gap: 20px;
  }

  .merit-card {
    min-height: auto;
  }

  .merit-card-header {
    font-size: 24px;
    height: 60px;
  }

  .merit-card-header::after {
    font-size: 30px;
    bottom: -24px;
  }

  .merit-card-body {
    padding: 40px 20px 20px;
  }

  .merit-point-title {
    font-size: 22px;
    line-height: 36px;
  }

  .merit-point-description {
    font-size: 16px;
    line-height: 32px;
  }

  /* Features Header */
  .features-header {
    padding: 40px 15px 30px;
  }

  .features-header-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .features-header-arrows {
    gap: 16px;
  }

  .arrow-down {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 28px solid #ff9500;
  }

  /* Features Section */
  .features {
    padding: 30px 0;
  }

  .feature-point {
    margin: 0;
    background-color: #073763;
    color: #fff;
  }

  .feature-header {
    height: auto;
    padding: 8px 4px;
    gap:8px;
  }

  .feature-number {
    width: 274px;
    height: 40px;
    border-radius: 100px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .feature-label {
    font-size: 31px;
    position: static;
    transform: none;
  }

  .feature-num {
    font-size: 31px;
    /* position: static; */
    transform: none;
    top: 2px;
  }

  .feature-number::after {
    display: none;
  }

  .feature-title {
    font-size: 22px;
    line-height: 32px;
  }

  .feature-description {
    font-size: 16px;
    line-height: 34px;
    padding: 0 15px 30px;
  }

  .feature-comparison {
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .comparison-content {
    background-color: #fff;
    color: #000;
    padding: 12px 0;
  }

  .comparison-header {
    font-size: 20px;
    height: 50px;
  }

  .comparison-header-3 {
    height: 55px;
  }

  .comparison-text {
    font-size: 16px;
    line-height: 32px;
    padding: 15px;
  }

  .feature-box {
    margin: 15px;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 30px;
  }

  .feature-box p {
    font-size: 16px;
    line-height: 30px;
    color:#000;
  }

  .features-bottom {
    margin: 0 15px;
    padding: 0 0 30px;
    background-color: #073763;
    margin-top: -24px;
  }

  .fukidashi {
    margin: 20px 0;
  }

  .fukidashi p {
    font-size: 24px;
    padding: 5px 40px;
  }

  .fukidashi p::after {
    bottom: -18px;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 18px solid #ff9500;
  }

  .feature-summary {
    background-color: #073763;
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    padding: 0;
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .feature-summary br:not(.sp-only) {
    display: none;
  }

  .feature-images {
    gap: 15px;
    margin-bottom: 20px;
  }

  .feature-note {
    background-color: #073763;
    color: #fff;
    font-size: 18px;
    line-height: 34px;
    padding: 0;
  }

  .feature-note br {
    display: none;
  }

  .feature-highlight {
    margin-bottom: 12px;
    color: #F6FF00;
    font-size: 26px;
    padding: 20px 0;
  }

  .feature-cta-buttons {
    padding: 0;
    margin: 0;
    gap: 28px;
  }

  .cta-btn {
    min-width: 100%;
    font-size: 20px;
    height: 56px;
  }

  /* Reviews Section */
  .reviews {
    padding: 30px 0;
  }

  .reviews-header {
    gap: 4px;
    margin-bottom: 24px;
    padding: 0;
  }

  .reviews-megaphone {
    width: 60px;
  }

  .reviews-title {
    font-size: 32px;
    padding: 0 40px;
  }

  .reviews-google {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .reviews-stats {
    gap: 15px;
    margin-bottom: 30px;
  }

  .review-stat-wrapper {
    width: 280px;
    height: 55px;
  }

  .review-avalage-label {
    font-size: 26px;
  }

  .review-amount-label {
    font-size: 18px;
  }

  .review-stat-number {
    font-size: 28px;
  }

  .reviews-list {
    padding: 0 15px;
  }

  .review-card {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }

  .review-user {
    flex-direction: row;
    align-items: center;
    min-width: auto;
    gap: 8px;
    margin-bottom: 10px;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }

  .review-header-right-sp {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .review-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 14px;
    gap: 14px;
  }

  .review-name {
    margin: 0;
  }

  /* モバイル時: review-meta内にtitle-boxを表示 */
  .review-title-box-sp {
    display: block;
    width: 100%;
    background-color: #ff9500;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 100px;
    text-align: center;
    white-space: nowrap;
    position: relative;
  }

  .review-title-box-sp::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #ff9500;
  }

  /* モバイル時: 元のtitle-boxを非表示 */
  .review-right .review-title-box {
    display: none;
  }

  .review-name {
    font-size: 20px;
  }

  .review-stars {
    font-size: 20px;
  }

  .review-right {
    width: 100%;
  }

  .review-spacer {
    display: none;
  }

  .review-title-box {
    font-size: 15px;
    padding: 6px 16px;
    margin-bottom: 12px;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 100px;
    white-space: nowrap;
  }

  .review-title-box::before {
    display: none;
  }

  .review-text {
    font-size: 16px;
    line-height: 32px;
  }

  .cta-buttons {
    margin-top: 30px;
  }

  .cta-btn-large {
    min-width: 95%;
    font-size: 16px;
    height: 50px;
    padding: 0 8px;
  }

  /* Flow Section */
  .flow {
    padding: 50px 0;
  }

  .flow-title {
    width: 240px;
    font-size: 22px;
    padding: 0 30px;
    margin-bottom: 30px;
  }

  .flow-steps {
    margin: 0 15px;
    padding: 30px 20px;
  }

  .flow-step-header {
    gap: 12px;
    margin: 0;
    margin-bottom: 4px;
  }

  .flow-step-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .flow-step-title {
    font-size: 22px;
  }

  .flow-step-description {
    font-size: 16px;
    line-height: 28px;
    margin-left: 0;
  }

  .flow-step-note {
    font-size: 8px;
    margin: 0;
    margin-top: 4px;
  }

  .flow-arrow {
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-top: 26px solid #ff9500;
    margin: 18px auto;
  }

  /* FAQ Section */
  .faq {
    padding: 40px 0;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-icon {
    width: 50px;
  }

  .faq-icon-left {
    top: -15px;
    right: -5px;
  }

  .faq-icon-right {
    top: 15px;
    left: -5px;
  }

  .faq-title {
    font-size: 32px;
    padding: 0 25px;
  }

  .faq-list {
    padding: 0 15px;
  }

  .faq-question {
    padding: 18px 0;
    gap: 12px;
  }

  .faq-q {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .faq-question p {
    font-size: 14px;
  }

  .faq-toggle {
    width: 35px;
    height: 35px;
  }

  .faq-toggle::before {
    height: 35px;
    width: 4px;
  }

  .faq-toggle::after {
    width: 35px;
    height: 4px;
  }

  .faq-item.active .faq-answer {
    padding: 18px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 28px;
  }

  /* Company Section */
  .company {
    padding: 50px 0;
  }

  .company-title {
    font-size: 32px;
    padding: 0 30px;
    margin-bottom: 30px;
    border-radius: 35px;
  }

  .company-content {
    margin: 0 15px;
    padding: 15px;
  }

  .company-inner {
    gap: 20px;
  }

  .company-table th {
    width: 100px;
    font-size: 14px;
    text-align: center;
  }

  .company-table td {
    font-size: 14px;
  }

  .company-table th,
  .company-table td {
    padding: 12px 0;
  }

  .company-map {
    height: 250px;
  }

  /* Footer */
  .footer {
    padding: 24px 15px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-divider {
    margin: 0 10px;
  }

  .footer-address {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-copyright {
    font-size: 11px;
  }
}
