/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

/* 新しいヒーローセクションのスタイル */
.hero-section-new {
  position: relative;
  overflow: hidden;
}

/* 斜めの背景デザイン */
.hero-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80%;
  width: 60%;
  height: 100%;
  background: #C4E6ED;
  transform: skewX(-30deg);
  transform-origin: top left;
  z-index: 0;
}

/* 2つ目の斜めデザイン */
.hero-section-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 30%;
  height: 100%;
  background: #F3FAFB;
  transform: skewX(-30deg);
  transform-origin: top left;
  z-index: 0;
}

.hero-container-new {
  position: relative;
  z-index: 1;
}

/* ロゴエリア */
.hero-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-logo {
  width: 50px;
  height: auto;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-small {
  font-size: 12px;
  color: #0066cc;
  font-weight: 500;
}

.logo-large {
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

/* メインコンテンツエリア */
.hero-main-content {
  display: grid;
  align-items: center;
}

/* 左側：キャッチコピーエリア */
.hero-left {
  position: relative;
}

/* 24時間365日受付中バッジ */
.hero-24-7-badge {
  display: inline-block;
  background-color: #FBD89D;
  color: #D73333;
  border: 3px solid #CD0000;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 40px;
}

.title-large {
  font-size: 48px;
  display: inline-block;
}

.highlight-yellow-underline {
  position: relative;
  display: inline-block;
}

.highlight-yellow-underline::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 16px;
  background: #faea39;
  z-index: -1;
}

/* 画像エリア */
.hero-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  margin-top: 40px;
  min-height: 500px;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  flex-shrink: 0;
  z-index: 2;
}

.phone-image {
  width: 500px;
  height: 100%;
  z-index: 1;
}

/* スマートフォン内のフォーム - 非表示 */
.phone-form-container {
  display: none;
}

/* ヒーロー画像横並び */
.hero-images-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 150px;
}

/* ========================================
   ヒーローセクション コンタクトフォーム
   ======================================== */
.hero-contact-form {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 90%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.hero-form-group {
  flex: 1;
}

.hero-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.hero-woman-img {
  width: 550px;
  height: 550px;
  margin-bottom: -100px;
}

.hero-phone-img {
  width: 450px;
  height: 550px;
  margin-bottom: -50px;
  margin-left: 100px;
}

.hero-required {
  color: #6abed0;
  background: white;
  border: 1px solid #6abed0;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-select-group {
  display: flex;
  gap: 12px;
}

.hero-select-box {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 14px 24px;
  border: 3px solid #6abed0;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  flex: 1;
}

.hero-select-box:hover {
  background: #f0f9fb;
}

.hero-select-box input[type="radio"] {
  display: none;
}

.hero-select-box input[type="radio"]:checked+.hero-select-text {
  color: white;
}

.hero-select-box:has(input[type="radio"]:checked) {
  background: #6abed0;
  border-color: #6abed0;
}

.hero-select-text {
  font-weight: 600;
  font-size: 16px;
}

.hero-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-form-input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  border: 3px solid #6abed0;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.hero-form-input:focus {
  border-color: #4aa8c0;
  box-shadow: 0 0 0 3px rgba(106, 190, 208, 0.2);
}

.hero-input-unit {
  position: absolute;
  right: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

.hero-form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAA639;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 3px #9C625A;
  flex-shrink: 0;
  min-width: 350px;
}

.hero-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 166, 57, 0.5);
}

.hero-button-badge {
  background: #6abed0;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 15.1px;
  margin-bottom: 5px;
}

.hero-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero-button-sub {
  font-size: 14px;
  font-weight: 500;
  color: black;
}

.hero-button-main {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .hero-contact-form {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .hero-form-group {
    flex: 1 1 45%;
    min-width: 200px;
  }

  .hero-form-button {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .hero-contact-form {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .hero-form-group {
    width: 100%;
  }

  .hero-form-label {
    font-size: 14px;
  }

  .hero-radio {
    font-size: 14px;
  }

  .hero-form-input {
    padding: 12px 45px 12px 14px;
    font-size: 14px;
  }

  .hero-button-main {
    font-size: 16px;
  }

  .hero-form-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-contact-form {
    padding: 20px;
  }

  .hero-radio-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* フォームグループ */
.form-group-hero-phone {
  margin-bottom: 8px;
}

.form-label-hero-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #333;
  font-weight: 600;
}

.required-badge-phone {
  background: #6abed0;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
  border: 2px solid #6abed0;
}

.label-text-phone {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.form-input-hero-phone {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid #6abed0;
  border-radius: 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
  color: #333;
}

.form-input-hero-phone:focus {
  border-color: #4aa8c0;
  box-shadow: 0 0 0 3px rgba(106, 190, 208, 0.2);
}

.form-input-hero-phone::placeholder {
  color: #333;
  font-weight: 500;
}

/* 送信ボタン（スマホ用） */
.hero-submit-button-phone {
  width: 100%;
  background: linear-gradient(135deg, #faa639 0%, #f89820 100%);
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(250, 166, 57, 0.4);
  position: relative;
  overflow: visible;
  margin-top: 8px;
  text-decoration: none;
}

.hero-submit-button-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 166, 57, 0.5);
}

.button-badge-phone {
  background: #6abed0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text-container-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  gap: 2px;
}

.button-text-main-phone {
  font-size: 10px;
  font-weight: 500;
  color: white;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.button-text-sub-phone {
  font-size: 16px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.button-arrow-phone {
  position: relative;
  right: 0;
  top: 0;
  transform: none;
  z-index: 1;
  flex-shrink: 0;
}

.business-woman {
  position: relative;
  width: 400px;
  height: 500px;
  flex-shrink: 0;
  z-index: 3;
  overflow: hidden;
  align-self: flex-end;
}

.woman-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* 右側：フォームエリア */
.hero-right {
  position: relative;
  z-index: 4;
}

.hero-form-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-group-hero {
  margin-bottom: 24px;
}

.form-label-hero {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #4b4a4a;
  font-weight: 600;
}


.label-text {
  font-size: 16px;
}

.form-input-hero {
  width: 100%;
  padding: 16px 20px;
  border: 3px solid #6abed0;
  border-radius: 16px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
}

.form-input-hero:focus {
  border-color: #0097a7;
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-input-hero::placeholder {
  color: #999;
}

/* 送信ボタン */
.hero-submit-button {
  width: 100%;
  background: #faa639;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(250, 166, 57, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  text-decoration: none;
}

.hero-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fcb962;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-submit-button:hover::before {
  opacity: 1;
}

.hero-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(250, 166, 57, 0.5);
}

.button-badge {
  background: #6abed0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.button-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.button-text-main {
  font-size: 12px;
  font-weight: 400;
  color: white;
  position: relative;
  z-index: 1;
}

.button-text-sub {
  font-size: 18px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.button-arrow {
  position: relative;
  right: 0;
  top: 0;
  transform: none;
  z-index: 1;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hero-main-content {
    grid-template-columns: 1fr;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-main-title {
    font-size: 40px;
  }

  .hero-images {
    height: 350px;
  }

  .phone-mockup {
    width: 160px;
    height: 300px;
  }

  .phone-form-container {
    top: 50px;
    left: 16px;
    right: 16px;
    bottom: 24px;
    padding: 12px;
    gap: 8px;
  }

  .form-group-hero-phone {
    margin-bottom: 6px;
  }

  .form-label-hero-phone {
    font-size: 9px;
    gap: 4px;
    margin-bottom: 6px;
  }

  .required-badge-phone {
    font-size: 7px;
    padding: 3px 7px;
  }

  .label-text-phone {
    font-size: 10px;
  }

  .form-input-hero-phone {
    padding: 10px 12px;
    font-size: 10px;
    border: 2px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 7px;
  }

  .button-text-sub-phone {
    font-size: 12px;
  }

  .button-badge-phone {
    font-size: 12px;
    width: 38px;
    height: 38px;
    padding: 8px 10px;
  }

  .hero-submit-button-phone {
    padding: 8px 12px;
  }

  .button-arrow-phone {
    width: 16px;
    height: 16px;
  }

  .business-woman {
    width: 300px;
    height: 350px;
  }
}

/* PC/SP切り替え用 */
.hero-phone-img-sp {
  display: none;
}

.hero-phone-img-pc {
  display: block;
}

/* ボタン内の無料バッジとサブテキスト（PC版は非表示） */
.hero-button-badge-sp,
.hero-button-sub-sp {
  display: none;
}

/* モバイル用ヒーローセクション（1440px以下） */
@media (max-width: 1440px) {
  .hero-section-new {
    background: linear-gradient(180deg, #C4E6ED 0%, #F3FAFB 50%, #C4E6ED 100%);
  }

  .hero-section-new::before,
  .hero-section-new::after {
    display: none;
  }

  .hero-container-new {
    padding: 0;
  }

  /* PC用スマホ画像を非表示、SP用を表示 */
  .hero-phone-img-pc {
    display: none !important;
  }

  .hero-phone-img-sp {
    display: block !important;
  }

  /* 全体のレイアウト */
  .hero-images-row {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  /* キャッチコピーコンテナ */
  .hero-images-row-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* キャッチコピーテキストエリア */
  .hero-title-area {
    text-align: center;
    padding: 10px 16px 10px;
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .top-sentence {
    font-size: 30px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: center;
    padding:0;
  }

  .top-sentence .text-large {
    font-size: 36px;
  }

  /* 画像エリア（スマホと女性を横並び+点線） */
  .hero-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 10px;
    order: 2;
    margin: 0 auto;
  }


  /* SP用スマホ画像 */
  .hero-phone-img-sp {
    width: 40%;
    max-width: 250px;
    height: auto;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .hero-woman-img {
    width: 55%;
    max-width: 300px;
    height: auto;
    margin: 0;
  }

  /* フォームエリア */
  .hero-contact-form {
    flex-direction: column;
    padding: 24px 20px;
    border-radius: 24px;
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 3%;
    box-sizing: border-box;
    gap: 16px;
    box-shadow: 0 4px  rgba(0, 0, 0, 0.3);
  }

  .hero-form-group {
    width: 100%;
  }

  .hero-form-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-required {
    font-size: 11px;
    padding: 3px 10px;
  }

  .hero-select-group {
    gap: 10px;
  }

  .hero-select-box {
    padding: 12px 16px;
    border-width: 2px;
  }

  .hero-select-text {
    font-size: 14px;
  }

  .hero-form-input {
    padding: 12px 14px;
    font-size: 14px;
    border-width: 2px;
  }

  /* ボタンエリア - pre-faq-buttonと同じデザイン */
  .hero-button-top {
    display: none;
  }

  /* SP版のバッジとサブテキストを表示 */
  .hero-button-badge-sp,
  .hero-button-sub-sp {
    display: block;
  }

  .hero-form-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAA639;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 4px #9C625A;
    gap: 16px;
    width: 100%;
    max-width: none;
    margin: 0;
    min-width: auto;
    box-sizing: border-box;
  }

  .hero-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 166, 57, 0.5);
  }

  .hero-button-badge-sp {
    background: #6abed0;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 30px;
  }

  .hero-button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .hero-button-sub-sp {
    font-size: 16px;
    font-weight: 500;
    color: white;
  }

  .hero-button-main {
    font-size: 24px;
    font-weight: 700;
    color: white;
  }

  .hero-form-button img {
    width: 36px;
    height: auto;
  }

  /* その他のヒーロー関連スタイル（768px） */
  .hero-main-content {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    gap: 12px;
  }

  .logo-main {
    font-size: 24px;
  }

  .hero-catchphrase {
    font-size: 18px;
  }

  .hero-main-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .hero-images {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .phone-mockup {
    position: relative;
    left: auto;
    bottom: auto;
    width: 280px;
    height: 520px;
  }

  .phone-form-container {
    top: 80px;
    left: 30px;
    right: 30px;
    bottom: 50px;
    padding: 24px;
    gap: 12px;
  }

  .form-group-hero-phone {
    margin-bottom: 4px;
  }

  .form-label-hero-phone {
    font-size: 11px;
    gap: 5px;
    margin-bottom: 7px;
  }

  .required-badge-phone {
    font-size: 9px;
    padding: 3px 9px;
  }

  .label-text-phone {
    font-size: 13px;
  }

  .form-input-hero-phone {
    padding: 13px 15px;
    font-size: 13px;
    border: 3px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 9px;
  }

  .button-text-sub-phone {
    font-size: 15px;
  }

  .button-badge-phone {
    font-size: 15px;
    width: 48px;
    height: 48px;
    padding: 11px 14px;
  }

  .hero-submit-button-phone {
    padding: 11px 15px;
  }

  .button-arrow-phone {
    width: 18px;
    height: 18px;
  }

  .business-woman {
    position: relative;
    right: auto;
    bottom: auto;
    width: 280px;
    height: 320px;
  }

  .hero-form-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .form-label-hero {
    font-size: 14px;
  }

  .form-input-hero {
    padding: 14px 16px;
    font-size: 14px;
  }

  .button-text-main {
    font-size: 16px;
  }

  .button-text-sub {
    font-size: 18px;
  }

  .hero-submit-button {
    padding: 10px 24px;
    flex-wrap: wrap;
  }

  .button-arrow {
    position: static;
    transform: none;
  }
}

@media (max-width: 480px) {
  .top-sentence {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 20px 0;
  }

  .top-sentence .text-large {
    font-size: 28px;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-images {
    height: auto;
    gap: 20px;
  }

  .phone-mockup {
    width: 260px;
    height: 480px;
  }

  .phone-form-container {
    top: 75px;
    left: 28px;
    right: 28px;
    bottom: 45px;
    padding: 20px;
    gap: 10px;
  }

  .form-group-hero-phone {
    margin-bottom: 3px;
  }

  .form-label-hero-phone {
    font-size: 10px;
    gap: 4px;
    margin-bottom: 6px;
  }

  .required-badge-phone {
    font-size: 8px;
    padding: 3px 8px;
  }

  .label-text-phone {
    font-size: 12px;
  }

  .form-input-hero-phone {
    padding: 12px 14px;
    font-size: 12px;
    border: 3px solid #6abed0;
  }

  .button-text-main-phone {
    font-size: 8px;
  }

  .button-text-sub-phone {
    font-size: 14px;
  }

  .button-badge-phone {
    font-size: 14px;
    width: 44px;
    height: 44px;
    padding: 10px 12px;
  }

  .hero-submit-button-phone {
    padding: 10px 14px;
  }

  .button-arrow-phone {
    width: 16px;
    height: 16px;
  }

  .business-woman {
    width: 260px;
    height: 300px;
  }

  .hero-form-card {
    padding: 24px 20px;
  }

  .button-text-main {
    font-size: 12px;
    text-shadow:
      1px 1px 0 #FF8C42,
      -1px -1px 0 #FF8C42,
      1px -1px 0 #FF8C42,
      -1px 1px 0 #FF8C42;
  }

  .button-text-sub {
    font-size: 18px;
    text-shadow:
      1px 1px 0 #FF8C42,
      -1px -1px 0 #FF8C42,
      1px -1px 0 #FF8C42,
      -1px 1px 0 #FF8C42;
  }
}

/* ========================================
   比較セクション（新デザイン）
   ======================================== */
.comparison-section-new {
  background: white;
  position: relative;
  overflow: hidden;
}

.comparison-container-new {
  margin: 0 auto;
}

/* 吹き出しエリア */
.comparison-bubble {
  background: #AAAAAA;
  border-radius: 0;
  padding: 40px 60px;
  position: relative;
  display: inline-block;
  margin: 0 auto 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.comparison-bubble-text {
  font-size: 40px;
  font-weight: 700;
  color: #474747;
  margin: 0;
  text-shadow: 0 0 4px rgba(71, 71, 71, 0.5);
}

.bubble-arrow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 30px solid #AAAAAA;
}

/* メインコンテンツ */
.comparison-main {
  text-align: center;
  padding: 50px 0 10px;
  background: white;
}

.comparison-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #6abed0;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* ビルの画像コンテナ */
.building-images-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.building-image {
  max-width: 45%;
  height: 150px;
  object-fit: contain;
}

/* ビルのイラスト */
.buildings-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  height: 280px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.building {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 左のビル（水色） */
.building-left {
  z-index: 3;
}

.building-left .building-top {
  width: 40px;
  height: 30px;
  background: #5a7a8c;
  position: relative;
  margin-bottom: -5px;
}

.building-left .building-body {
  width: 140px;
  height: 180px;
  background: #6b96ac;
  position: relative;
}

.building-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 15px;
  height: 100%;
}

.window {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

/* 中央のビル（グレー） */
.building-center {
  z-index: 2;
}

.center-building {
  width: 120px;
  height: 160px;
  background: #7a8a9a;
}

/* 右のビル（ガラス張り） */
.building-right {
  z-index: 3;
}

.right-building {
  width: 160px;
  height: 200px;
  background: #8ab4c8;
}

.glass-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
}

.glass-pane {
  background: rgba(200, 230, 240, 0.8);
  border-radius: 4px;
}

/* 木 */
.tree {
  width: 30px;
  height: 60px;
  background: #4a9d7f;
  border-radius: 50% 50% 0 0;
  position: relative;
  align-self: flex-end;
  margin-bottom: 5px;
}

.tree::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 20px;
  background: #6b4e3d;
}

.tree-left-1 {
  z-index: 1;
  margin-right: -15px;
}

.tree-left-2 {
  z-index: 4;
  margin-right: 10px;
}

.tree-right-1 {
  z-index: 4;
  margin-left: 10px;
}

.tree-right-2 {
  z-index: 1;
  margin-left: -15px;
}

/* メリットセクション（新デザイン） */
.features-section-new {
  padding: 20px 0;
  padding-bottom: 80px;
}

.features-cards-vertical {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  padding-top: 100px;
  justify-content: center;
  align-items: flex-start;
}

.feature-card-new {
  width: 520px;
  flex: 0 0 520px;
}

.feature-card-new {
  position: relative;
  border: 4px solid #6abed0;
  border-radius: 15px;
  background: white;
  overflow: visible;
  display: flex;
}

.feature-card-new:last-child {
  margin-bottom: 50px;
}

/* アイコン円形 */
.feature-icon-circle {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  justify-content: center;
  z-index: 2;
  overflow: visible;
}

.feature-icon-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* カードコンテンツ */
.feature-card-content {
  padding-top: 100px;
}

.feature-title-area {
  background: white;
  height: 100px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 4px solid #54B6CA;
}

.feature-title-new {
  font-size: 25px;
  font-weight: 700;
  color: #4b4a4a;
  margin: 0;
}

.feature-description-area {
  background: #6ABED0;
  padding: 32px;
  font-size: 20px;
  height: 150px;
}

.feature-description-new {
  line-height: 1.8;
  color: white;
  margin: 0;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .features-cards-vertical {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .feature-card-new {
    width: 100%;
    max-width: 520px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .features-container-new {
    max-width: 800px;
  }

  .feature-icon-circle {
    width: 120px;
    height: 120px;
    top: -60px;
    border: 4px solid white;
  }

  .feature-card-content {
    padding-top: 80px;
  }
  .feature-description-area {
    padding: 30px;
  }

}

@media (max-width: 480px) {

  .feature-card-content {
    padding-top: 70px;
  }
}

/* ========================================
   CTAセクション（新デザイン）
   ======================================== */
.cta-section-new {
  background: #6abed0;
  padding: 80px 0;
}

.cta-container-new {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 吹き出し */
.cta-speech-bubble {
  background: white;
  border-radius: 24px;
  padding: 32px 48px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 500px;
  margin: 0 auto;
}

.cta-bubble-text {
  font-size: 28px;
  font-weight: 700;
  color: #6abed0;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.bubble-arrow-down {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}

/* 大きなCTAボタン */
.cta-button-large {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-radius: 50px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button-large:hover::before {
  opacity: 1;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.5);
}

.cta-badge-free {
  background: white;
  color: #ff9800;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-text-small {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}

.cta-text-large {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.cta-arrow-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .cta-section-new {
    padding: 60px 0;
  }

  .cta-speech-bubble {
    padding: 24px 32px;
  }

  .cta-bubble-text {
    font-size: 22px;
  }

  .cta-button-large {
    padding: 20px 32px;
    flex-direction: column;
    gap: 16px;
  }

  .cta-badge-free {
    font-size: 18px;
    padding: 6px 20px;
  }

  .cta-text-small {
    font-size: 14px;
  }

  .cta-text-large {
    font-size: 24px;
  }

  .cta-arrow-icon {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-speech-bubble {
    padding: 20px 24px;
  }

  .cta-bubble-text {
    font-size: 18px;
  }

  .cta-text-large {
    font-size: 20px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .comparison-bubble-text {
    font-size: 24px;
  }

  .comparison-bubble {
    padding: 40px 30px;
  }

  .comparison-main-title {
    font-size: 32px;

  }

  .building-images-container {
    gap: 5px;
  }

  .building-image {
    max-width: 80%;
  }

  .buildings-illustration {
    height: 200px;
    gap: 10px;
  }

  .building-left .building-body {
    width: 100px;
    height: 130px;
  }

  .center-building {
    width: 80px;
    height: 110px;
  }

  .right-building {
    width: 110px;
    height: 140px;
  }

  .tree {
    width: 20px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .comparison-bubble-text {
    font-size: 20px;
  }

  .comparison-main-title {
    font-size: 28px;
  }

  .buildings-illustration {
    height: 150px;
    gap: 8px;
  }

  .building-left .building-body {
    width: 70px;
    height: 100px;
  }

  .center-building {
    width: 60px;
    height: 80px;
  }

  .right-building {
    width: 80px;
    height: 110px;
  }

  .building-windows,
  .glass-windows {
    gap: 5px;
    padding: 8px;
  }
}

/* ========================================
   ご利用者様の声セクション（新デザイン）
   ======================================== */
.testimonials-section-new {
  background: white;
  padding-top: 40px;
}

.testimonials-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.testimonials-title-box {
  background: #54B6CA;
  border-radius: 30px;
  padding: 20px 60px;
  margin-bottom: 60px;
  box-shadow: 0 8px rgba(0, 0, 0, 0.15);
  width: 672px;
}

.testimonials-title-new {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
  color: white;
}

/* カードコンテナ - PC版は横並び */
.testimonials-cards-new {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  justify-content: center;
  margin-bottom: 50px;
}

/* カード全体 */
.testimonial-card-new {
  background: white;
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 4px rgba(0, 0, 0, 0.15);
  padding: 25px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  max-width: 350px;
}

/* アバター - 左側 */
.testimonial-avatar-new {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-image-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 右側のコンテンツコンテナ（金額+情報） */
.testimonial-content-new {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 金額ボックス */
.testimonial-amount-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: space-around;
}

.amount-label-new {
  font-size: 18px;
  font-weight: 700;
  color: #6abed0;
}

.amount-value-new {
  font-size: 24px;
  font-weight: 700;
  color: #6abed0;
}

/* 情報エリア */
.testimonial-info-new {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 20px;
  align-items: center;
}

.info-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.info-row-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #393535;
}

.info-row-new:first-child {
  padding-top: 0;
}


.info-label-new {
  font-size: 14px;
  font-weight: 600;
  color: #4b4a4a;
}

.info-value-new {
  font-size: 14px;
  font-weight: 700;
  color: #6abed0;
}

/* CTAセクション */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.testimonials-cta-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ff9933 0%, #ff7700 100%);
  color: white;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
  transition: all 0.3s ease;
}

.testimonials-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 119, 0, 0.5);
}

.cta-badge-new {
  background: white;
  color: #D73333;
  border: 2px solid #CD0000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}

.cta-text-new {
  flex: 1;
  text-align: left;
}

.cta-arrow-new {
  font-size: 28px;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .testimonials-container-new {
    padding: 0 16px;
  }

  .testimonials-title-box {
    padding: 15px 40px;
    margin-bottom: 40px;
  }

  .testimonials-title-new {
    font-size: 32px;
  }

  .testimonials-cards-new {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
  }

  .testimonial-card-new {
    max-width: 100%;
    padding: 15px;
    gap: 15px;
    flex-direction: row;
  }

  .testimonial-avatar-new {
    width: 80px;
    height: 80px;
  }

  .testimonial-amount-box {
    gap: 8px;
    margin-bottom: 10px;
  }

  .amount-label-new {
    font-size: 16px;
  }

  .amount-value-new {
    font-size: 20px;
  }

  .info-row-new {
    padding: 8px 0;
  }

  .info-label-new {
    font-size: 13px;
  }

  .info-value-new {
    font-size: 13px;
  }

  .testimonials-cta-text {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonials-cta-button {
    padding: 15px 35px;
    font-size: 18px;
    gap: 12px;
  }

  .cta-badge-new {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonials-title-box {
    padding: 12px 30px;
  }

  .testimonials-title-new {
    font-size: 28px;
  }

  .testimonial-card-new {
    padding: 12px;
    gap: 12px;
    flex-direction: row;
  }

  .amount-label-new {
    font-size: 14px;
  }

  .amount-value-new {
    font-size: 18px;
  }

  .testimonial-avatar-new {
    width: 70px;
    height: 70px;
  }

  .info-label-new {
    font-size: 12px;
  }

  .info-value-new {
    font-size: 12px;
  }

  .testimonials-cta-text {
    font-size: 20px;
  }

  .testimonials-cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* ========================================
   ご利用までの流れセクション（新デザイン）
   ======================================== */
.process-section-new {
  background: linear-gradient(135deg, #6abed0 0%, #5aaebd 100%);
  padding: 80px 0;
}

.process-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.process-title-box {
  background: white;
  border-radius: 15px;
  padding: 30px 110px;
  margin-bottom: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  width: auto;
  display: inline-block;
}

.process-title-new {
  font-size: 36px;
  font-weight: 700;
  color: #6abed0;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* サブタイトル */
.process-subtitle-new {
  font-size: 50px;
  font-weight: 500;
  color: white;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 110px;
}

.highlight-large {
  font-size: 80px;
  font-weight: 700;
  color: white;
}

.highlight-largest {
  font-size: 64px;
  font-weight: 700;
  color: white;
}

/* 注意書きボックス */
.process-note-box {
  background: #6ABED0;
  border: 4px solid white;
  border-radius: 20px;
  padding: 20px 100px;
  margin-bottom: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-note-text {
  font-size: 45px;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.highlight-number {
  font-size: 28px;
  font-weight: 700;
}

.highlight-yuryou {
  font-size: 60px;
  font-weight: 700;
}

.highlight-3sha {
  background: linear-gradient(transparent 60%, #faea39 60%);
  padding: 0 4px;
}

/* ステップカード */
.process-steps-new {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.process-step-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-info-header-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* アイコン円形 */
.step-icon-circle-new {
  width: 220px;
  height: 220px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* 黄色バッジ */
.step-badge-yellow {
  background: #faea39;
  color: #4FB7CE;
  font-size: 18px;
  font-weight: 700;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}

/* ステップタイトル */
.step-title-new {
  font-size: 28px;
  font-weight: 700;
  color: white;
  display: inline-block;
  margin-left: 16px;
}

/* ステップ説明 */
.step-description-new {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.6;
  margin: 0;
  margin-top: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .process-steps-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .process-container-new {
    max-width: 600px;
  }

  .process-section-new {
    padding: 60px 0;
  }

  .process-title-box {
    padding: 16px 40px;
  }

  .process-title-new {
    font-size: 22px;
  }

  .process-subtitle-new {
    font-size: 24px;
    line-height: 1.4;
  margin-bottom: 50px;
  }

  .highlight-large {
    font-size: 30px;
  }

  .highlight-largest {
    font-size: 48px;
  }

  .process-note-box {
    padding: 16px 24px;
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
  }

  .process-title-box {
    width: 90%;
    max-width: 90%;
    padding: 20px 30px;
    box-sizing: border-box;
  }

  .highlight-yuryou{
    font-size: 36px;
  }

  .process-note-text {
    font-size: 20px;
  }

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

  .process-steps-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features-cards-vertical {
    width:90%;
    margin-right: 5%;
    margin-left: 5%;
  }

  .feature-description-new{
    font-size: 16px;
  }

  /* ご利用者様の声も縦並び */
  .testimonials-cards-new {
    flex-direction: column;
  }

  .step-icon-circle-new {
    width: 160px;
    height: 160px;
  }

  .step-icon-img {
    width: 100px;
    height: 100px;
  }

  .step-badge-yellow {
    font-size: 16px;
    padding: 6px 24px;
  }

  .step-title-new {
    font-size: 24px;
  }

  .step-description-new {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .process-note-text {
    font-size: 24px;
  }

  .step-icon-circle-new {
    width: 200px !important;
    height: 200px !important;
  }

  .step-icon-img {
    width: 140px !important;
    height: 140px !important;
  }

  .step-info-header-new {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .step-badge-yellow {
    padding: 6px 20px;
  }

  .step-title-new {
    font-size: 26px;
    margin-left: 0;
  }

  .step-description-new {
    font-size: 18px;
  }
}

/* ========================================
   FAQ前のCTAセクション
   ======================================== */
.pre-faq-cta {
  background: white;
  padding-bottom: 60px;
}

.pre-faq-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.pre-faq-speech-bubble {
  background: white;
  border: none;
  border-radius: 30px;
  padding: 10px 60px;
  position: relative;
  box-shadow: 3px 6px 0 rgba(0, 0, 0, 0.15);
  width: 650px;
}

.pre-faq-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

.pre-faq-bubble-text {
  font-size: 24px;
  font-weight: 700;
  color: #6abed0;
  margin: 0;
  text-align: center;
}

.pre-faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAA639;
  border: none;
  border-radius: 20px;
  padding: 20px 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 6px #759FA5;
  gap: 16px;
  width: 500px;
}

.pre-faq-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(250, 166, 57, 0.5);
}

.pre-faq-badge {
  background: #6abed0;
  color: white;
  font-size: 26px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 30px;
}

.pre-faq-button-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.pre-faq-text-sub {
  font-size: 20px;
  font-weight: 500;
  color: white;
}

.pre-faq-text-main {
  font-size: 34px;
  font-weight: 700;
  color: white;
}

.pre-faq-arrow-image-container img {
  width: 50px;
  height: auto;
}

@media (max-width: 768px) {
  .pre-faq-cta {
    padding: 40px 0;
  }

  .pre-faq-speech-bubble {
    padding: 12px 30px;
  }

  .pre-faq-bubble-text {
    font-size: 20px;
  }

  .pre-faq-button {
    min-width: auto;
    width: 100%;
    padding: 16px 24px;
  }

  .pre-faq-text-main {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .pre-faq-bubble-text {
    font-size: 18px;
  }

  .pre-faq-badge {
    font-size: 14px;
    padding: 10px 16px;
  }

  .pre-faq-text-sub {
    font-size: 12px;
  }

  .pre-faq-text-main {
    font-size: 16px;
  }
}

.faq-container-new {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルボックス */
.faq-title-box {
  width: 670px;
  background: linear-gradient(135deg, #6abed0 0%, #5aaebd 100%);
  border-radius: 30px;
  padding: 16px 80px;
  margin-bottom: 32px;
  box-shadow: 0 8px rgba(0, 0, 0, 0.25);
}

.faq-title-new {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
}

/* サブタイトル */
.faq-subtitle-new {
  font-size: 24px;
  font-weight: 700;
  color: #656565;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* FAQ項目 */
.faq-items-new {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-new {
  background: white;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item-new.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 質問ボタン */
.faq-question-new {
  width: 670px;
  background: white;
  border: none;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question-new:hover {
  background: #fafafa;
}

/* Qアイコン */
.faq-q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  color: #6abed0;
}

/* 質問テキスト */
.faq-question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
  font-weight: bold;
  line-height: 1.6;
}

/* 矢印アイコン */
.faq-arrow-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
}

.faq-arrow-icon path {
  stroke: #6abed0;
  stroke-width: 2;
}

.faq-item-new.active .faq-arrow-icon {
  transform: rotate(180deg);
}

/* 回答エリア */
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f8f8;
}

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

.faq-answer-new p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

  .faq-title-box {
    max-width: 90%;
  }

  .faq-question-new {
    width: auto;
    max-width: 100%;
  }

  .faq-title-new {
    font-size: 32px;
  }

  .faq-question-new {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-q-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

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

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

@media (max-width: 480px) {
  .faq-title-box {
    padding: 10px 40px;
  }

  .faq-title-new {
    font-size: 28px;
  }

  .faq-question-new {
    padding: 14px 16px;
  }

  .faq-q-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .faq-answer-new p {
    font-size: 13px;
  }

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

/* ========================================
   フッター（新デザイン）
   ======================================== */
.site-footer-new {
  background: #6ABED0;
  padding: 40px 0 24px;
}

.footer-links-new {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-links-new a {
  color: #656565;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-links-new a:hover {
  text-decoration: underline;
}

.footer-container-new {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
}

/* ロゴエリア */
.footer-logo-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo-img-new {
  width: 350px;
  height: auto;
  object-fit: contain;
}

.footer-logo-icon {
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-sub {
  font-size: 12px;
  color: #6abed0;
  font-weight: 500;
}

.footer-logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #4b4a4a;
}

/* フッターリンク */
.footer-links-new {
  display: flex;
  align-items: center;
  width: 500px;
}

.footer-link {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #6abed0;
}

/* SNSアイコン */
.footer-social-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.social-icon-footer:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.social-icon-footer svg {
  display: block;
  width: 60px;
  height: 60px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.social-icon svg {
  display: block;
}


.footer-copyright-new p {
  font-size: 13px;
  color: #656565;
}

/* フッターSNSアイコンセクション */
.footer-social-section {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-social-icon {
  width: 45px;
  margin-top: 20px;
  height: auto;
}

.footer-social-section .logo-image {
  width: 300px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

/* レスポンシブ対応 */
@media (max-width: 1440px){

  .testimonials-title-box {
    max-width: 90%;
  }

  .testimonials-title-new {
    font-size: 32px;
  }

  .faq-title-box {
    max-width: 90%;
  }

  .faq-title-new {
    font-size: 32px;
  }

  .faq-question-new {
    width: auto;
    max-width: 100%;
  }

  .pre-faq-speech-bubble {
    width: auto;
    max-width: 90%;
  }

  .features-section-new {
   padding: 0;
  }

  .comparison-main {
    padding: 50px 0 0px;
  }

  .process-note-box {
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
  }

  .process-title-box {
    width: 90%;
    max-width: 90%;
    box-sizing: border-box;
  }

  .step-icon-circle-new {
    width: 180px;
    height: 180px;
  }

  .step-icon-img {
    width: 120px;
    height: 120px;
  }

  .step-info-header-new {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .step-title-new {
    margin-left: 0;
  }

  /* お客様の声 - モバイル版デザイン */
  .testimonials-cards-new {
    flex-direction: column;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-card-new {
    max-width: 100%;
    padding: 20px;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }

  .testimonial-content-new {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
  }

  .testimonial-amount-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 10px;
  }

  .amount-label-new {
    font-size: 20px;
    font-weight: 700;
    color: #6abed0;
    min-width: 120px;
    text-align: center;
  }

  .amount-value-new {
    font-size: 26px;
    font-weight: 700;
    color: #6abed0;
  }

  .testimonial-info-new {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonial-avatar-new {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .info-rows-wrapper {
    flex: 1;
  }

  .info-row-new {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #393535;
  }

  .info-label-new {
    font-size: 14px;
    color: #4b4a4a;
  }

  .info-value-new {
    font-size: 16px;
    font-weight: 700;
    color: #6abed0;
  }

  /* pre-faq-button レスポンシブ */
  .pre-faq-button {
    width: 90%;
    max-width: 400px;
    padding: 14px 20px;
    gap: 12px;
  }

  .pre-faq-button img {
    width: 40px;
    height: auto;
  }

  .pre-faq-badge {
    font-size: 14px;
    padding: 8px 12px;
  }

  .pre-faq-button-sub {
    font-size: 12px;
  }

  .pre-faq-button-main {
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .site-footer-new {
    padding: 48px 0 24px;
  }

  .footer-container-new {
    gap: 24px;
  }

  .footer-logo-new {
    gap: 12px;
  }

  .footer-logo-main {
    font-size: 20px;
  }

  .footer-logo-img-new {
    width: 160px;
  }

  .footer-links-new {
    gap: 24px;
    flex-direction: row;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-social-new {
    gap: 12px;
  }

  .social-icon svg {
    width: 28px;
    height: 28px;
  }

  .footer-copyright-new {
    padding-top: 20px;
  }

  .footer-copyright-new p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-container-new {
    align-items: flex-start;
  }

  .footer-logo-new {
    align-self: flex-start;
  }

  .footer-logo-img-new {
    width: 140px;
  }

  .footer-logo-main {
    font-size: 18px;
  }

  .footer-logo-sub {
    font-size: 11px;
  }

  .footer-links-new {
    align-self: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-social-new {
    align-self: flex-start;
  }

  .social-icon svg {
    width: 26px;
    height: 26px;
  }

  .footer-copyright-new {
    text-align: left;
  }

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