@charset "utf-8";
.pc-only{
  display: none !important;
}

.sp-only{
  display: block;
}

/* ========================================
   Retigo LP2 - Main Stylesheet
   Based on Figma wireframes
   ======================================== */

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #030102;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul, ol {
  list-style: none;
}

/* ----------------------------------------
   Container
   ---------------------------------------- */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------------------------
   Common Styles
   ---------------------------------------- */
.section-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-title-#fff {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

.section-subtitle-bracket {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 15px;
}

.brand {
  color: #2f5dd6;
  font-weight: 700;
}

.highlight-orange {
  color: #eb821f;
  font-weight: 700;
}

.highlight-red {
  color: #d9161c;
  font-weight: 700;
}

.highlight {
  color: #F4EA2F;
}

.number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e2b50;
  z-index: 1000;
}
.header-inner {
    height: 70px; /* スマホ用に少し低く設定 */
    position: relative; /* absoluteの基準点 */
  }

  /* ボタンを左上に固定 */
  .header-buttons {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
  }

  .btn-header-outline, .btn-header-orange {
    width: 110px; /* スマホサイズに調整 */
    height: 70px;
    font-size: 14px;
  }
  .btn-header-orange em { font-size: 11px; }
  .btn-header-orange span { font-size: 9px; }

  /* ハンバーガーを右側に配置 */
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 11px; }
  .hamburger span:nth-child(3) { bottom: 0; }

  /* 開いた時の三本線アニメーション */
  .hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

  /* メニューを隠しておく */
  .header-nav-main {
    position: fixed;
    top: 0;
    left: 100%; /* 右側に隠す */
    width: 100%;
    height: 100vh;
    background: #1e2b50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-right: 0;
    transition: 0.4s;
    z-index: 5;
  }

  /* メニュー展開時 */
  .header-nav-main.is-active {
    left: 0;
    height: 100vh;
    background: #1e2b50;
    z-index: 3;
    width: 100%;
    display: block;
    padding: 90px 5% 0;
    flex-wrap: wrap;
  }

.header-nav-main a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  width: 100%;
  display: block;
  padding: 5px 0;
  margin-bottom: 5px;
  border-bottom: 1px dashed #fff;
}

.header-nav-main a:hover {
  opacity: 0.7;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0;
  width: 60%;
}

.btn-header-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: #fff;
  border: 2px solid #eb821f;
  color: #eb821f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.btn-header-outline:hover {
  background: #fff8f0;
}

.btn-header-orange {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: linear-gradient(90deg, #d9161c, #eb821f);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  border: 1px solid #eb821f;
}

.btn-header-orange em {
  display: block;
  font-style: normal;
  color: #f4ea2f;
  font-size: 14px;
}

.btn-header-orange span {
  display: block;
  color: #fff;
  font-size: 14px;
}

.btn-header-orange:hover {
  opacity: 0.9;
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.sp-hero-wrapper{
  background: url(../images/sp-fv-bk.png);
  background-size: cover;
  padding: 20px 10% 10px;
}

.hero-cta{
  display: flex;
  gap: 5%;
  padding: 0 1%;
  background: #1e2b50;
}

.btn-cta-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background-color: #eb821f;
  box-shadow: 1px 2px 1px rgba(255, 255, 255, 0.25) inset, -2px -2px 1px rgba(0, 0, 0, 0.25) inset;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.03em;
  gap: 2px;
  transition: all 0.3s ease;
  width: 45%;
  text-align: center;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background-color: #fff;
  color: #eb821f;
  box-shadow: 1px 2px 1px rgba(255, 255, 255, 0.25) inset, -2px -2px 1px rgba(0, 0, 0, 0.25) inset;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.03em;
  gap: 10px;
  transition: all 0.3s ease;
  width: 45%;
}

.btn-cta-orange:hover {
  opacity: 0.9;
}

.btn-cta-#fff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background: #fff;
  border: 1px solid #eb821f;
  border-radius: 5px;
  color: #eb821f;
  font-size: clamp(0.88vw, 0.88vw, 20px);
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.03em;
  gap: 10px;
  transition: all 0.3s ease;
  width: 35%;
}

.btn-cta-#fff:hover {
  background: #fff8f0;
}

.icon-doc {
  width: 20px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  width: auto;
  border-radius: 1px;
  font-size: 1.5em;
  line-height: 1;
  display: inline-flex;
  height: 100%;
  margin-left: 5px;
  width: 10px;
  height: auto;
  position: relative;
  top: -1px;
}

/* ----------------------------------------
   CTA Banner Section
   ---------------------------------------- */
.section-cta-banner {
  background: #1e2b50;
  padding: 25px 0;
}

.cta-banner-inner {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
  flex-direction: row;
}

.btn-banner-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 48%;
  padding: 12px 40px;
  background: linear-gradient(90deg, #d9161c 0%, #eb821f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-banner-white{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 48%;
  padding: 13px 40px;
  background: #fff;
  color: #eb821f;
  border: 1px solid #eb821f;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-banner-orange em {
  color: #f4ea2f;
  font-style: normal;
}

.btn-banner-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(235, 130, 31, 0.4);
}

.btn-banner-#fff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 100%;
  padding: 16px 40px;
  background: #fff;
  color: #eb821f;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-banner-#fff:hover {
  background: #fff0e2;
}

/* ----------------------------------------
   Simulator Section
   ---------------------------------------- */
.section-simulator {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(235, 130, 31, 0.1) 100%);
}

.simulator-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.simulator-header {
  text-align: center;
  margin-bottom: 10px;
}

.simulator-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 25px;
  color: #1e2b50;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.simulator-label::before{
  content: '';
  display: inline-block;
  width: 16px;
  height: 36px;
  background:url(../images/h2_left.png) left center no-repeat;
}

.simulator-label::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 36px;
  background:url(../images/h2_left.png) left center no-repeat;
}

.simulator-label::after {
  transform: scaleX(-1);
}

.simulator-title {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #D9161C 0%, #EB821F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.simulator-desc {
  text-align: center;
  font-size: 14px;
  color: #030102;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.simulator-desc .highlight-red {
  color: #d9161c;
  -webkit-text-fill-color: #d9161c;
}

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

.simulator-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  padding: 20px 3%;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: none;
}

.simulator-card.active {
  display: block;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}

.card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

.simulator-card .badge {
  background-color: #eb821f;
  color: #fff;
  padding: 11px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.step-indicator {
  position: relative;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
}

.step-indicator span.large{
  font-size: 25px;
  color: #EB821F;
  display: block;
  position: absolute;
  top: -4px;
  left: -5px;
}

.step-indicator span.count{
  display: block;
  width: 27px;
}

.step-indicator span.small{
  font-size: 20px;
  color: #999;
  display: block;
  position: absolute;
  bottom: -7px;
  right: 2px;
}

.card-subtitle {
  font-size: 16px;
  color: #030102;
  margin-bottom: 30px;
  letter-spacing: 0.8px;
}

/* Simulator Form Elements */
.sim-form-group {
  margin-bottom: 15px;
}

.sim-form-label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.sim-form-input {
  width: 100%;
  padding: 10px 20px;
  border: 0.5px solid #a6a6a6;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 1px;
}

.sim-form-input:focus {
  outline: none;
  border-color: #eb821f;
}

/* Judgment Badge */
.judgment {
  display: flex;
  gap: 5px;
  margin-top: 15px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: left;
}

.judgment-badge {
  background-color: #e6e7ec;
  color: #6d6267;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.judgment-note {
  letter-spacing: 1.6px;
  width: 100%;
}

/* Radio & Checkbox Options */
.options-section {
  margin-bottom: 20px;
}

.options-title {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.option-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border: 0.5px solid #a6a6a6;
  border-radius: 5px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  gap: 10px;
}

.option-item:hover {
  border-color: #000;
}

.option-item.selected {
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  display: none;
}

.radio-custom,
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #a6a6a6;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-custom {
  border-radius: 50%;
}

.checkbox-custom {
  border-radius: 3px;
}

.option-item.selected .radio-custom {
  border-color: #000;
}

.option-item.selected .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #2F5DD6;
  border-radius: 50%;
}

.option-item {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	position: relative;
}

/* inputは隠す */
.option-item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* ボックス */
.option-item .checkbox-custom {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 2px solid #666;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition: all .2s ease;
}

/* チェック時：青背景 */
.option-item input[type="checkbox"]:checked + .checkbox-custom {
	background-color: #2F5DD6;
	border-color: #2F5DD6;
}

/* 白チェック */
.option-item .checkbox-custom::after {
	content: "";
	width: 5px;
	height: 9px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	opacity: 0;
	margin-top: -1px;
}

/* 表示 */
.option-item input[type="checkbox"]:checked + .checkbox-custom::after {
	opacity: 1;
}


.option-label {
  font-size: 15px;
  letter-spacing: 1px;
}

.option-note {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.simulator-card .btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 1px;
  justify-content: center;
}

.simulator-card .btn:hover {
  opacity: 0.8;
}

.btn-prev {
  background: #fff;
  border: 1px solid #a6a6a6;
  color: #030102;
}

.btn-next {
  background: #030102;
  border: none;
  color: #fff;
}

.btn-submit {
  background: #eb821f;
  border: none;
  color: #fff;
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
}

.btn-arrow {
  font-size: 12px;
}

/* Result Card Styles */
.result-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.result-grid-2 {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.result-box {
  background: #f5f5f5;
  padding: 7px 15px;
  border-radius: 5px;
  width: 100%;
  line-height: 1.5;
}

.result-label {
  font-size: 14px;
  color: #666;
}

.result-value {
  font-size: 18px;
  font-weight: 500;
}

.result-value.highlight {
  color: #eb821f;
}

/* Contact Form in Result */
.simulator-card .contact-section {
  margin-top: 20px;
}

.contact-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-form-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.contact-input {
  width: 100%;
  padding: 10px 20px;
  border: 0.5px solid #a6a6a6;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}

.contact-textarea {
  width: 100%;
  padding: 10px 20px;
  border: 0.5px solid #a6a6a6;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 68px;
  resize: vertical;
  margin-bottom: 10px;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.summary-tag {
  background: #e6e7ec;
  color: #6d6267;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.simulator-note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 16px;
  color: #030102;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ----------------------------------------
   Problems Section (Concerns)
   ---------------------------------------- */
.section-problems {
  position: relative;
  width: 100%;
  min-height: auto;
  background: linear-gradient(180deg, rgba(30, 43, 80, 0.85) 0%, rgba(45, 74, 124, 0.8) 100%),
              url('../images/24822958_m.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 5% 100px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(50% + 60px) calc(100% - 30px),
    50% 100%,
    calc(50% - 60px) calc(100% - 30px),
    0 calc(100% - 30px)
  );
}

.concerns-container {
  max-width: 100%;
  width: 100%;
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  display: flex;
  gap: 3%;
  flex-direction: row;
  align-items: end;
}

/* Left Content */
.concerns-content {
  flex: 1;
  max-width: 67%;
}

/* Section Title */
.concerns-title {
  margin-bottom: 20px;
}

.concerns-title-text {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.9px;
  display: inline;
}

.concerns-title-text.highlight {
  font-size: 25px;
}

/* Title Decoration - Dots */
.title-dots {
  display: flex;
  gap: 1em;
  margin-bottom: 0;
  padding-left: 25%;
}

.title-dot {
  width: 5px;
  height: 5px;
  background-color: #eb821f;
  border-radius: 50%;
}

/* Title Underline */
.title-underline {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.underline-thick {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #eb821f 0%, #f5a623 100%);
}

.underline-thin {
  flex: 1;
  max-width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Problems Card */
.problems-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-top: 30px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-item {
  display: flex;
  gap: 10px;
}

/* Check Icon */
.section-problems .check-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: transparent;
  display: block;
  margin-top: 4px;
}

.section-problems .check-icon svg {
  width: 100%;
  height: 100%;
}

/* Problem Text */
.problem-text {
  font-size: 18px;
  font-weight: 700;
  color: #030102;
  letter-spacing: 1.4px;
}

.problem-text .emphasis {
  font-size: 18px;
  font-weight: 900;
  color: #d9161c;
  letter-spacing: 1.68px;
}

/* Divider Line */
.problem-divider {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

/* Character Image */
.character-image {display: block;width: 30%;}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ----------------------------------------
   Solution Section
   ---------------------------------------- */
.section-solution {
  padding: 60px 0;
  background: #fff;
}

.solution-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 930px;
  margin: 0 auto;
}

.solution-image {
  flex-shrink: 0;
  width: 40%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-text {
  flex: 1;
  text-align: left;
}

.solution-lead {
  font-size: 25px;
  color: #030102;
  margin-bottom: 0;
  font-weight: 700;
}

.solution-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}

.solution-title .brand {
  color: #eb821f;
  font-style: normal;
  font-size: inherit;
  -webkit-text-fill-color: #eb821f;
}

.solution-title .highlight-red {
  color: #d9161c;
  -webkit-text-fill-color: #d9161c;
}

.solution-exclaim {
  display: inline-block;
  position: relative;
  background: linear-gradient(transparent 60%, #F4EA2F 60%);
}

.solution-exclaim::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(235, 130, 31, 0.3);
  z-index: -1;
}

/* ----------------------------------------
   Reasons Section
   ---------------------------------------- */
.section-reasons {
  padding: 0;
  background: url(../images/reason_bg.png) center top no-repeat;
  background-size: cover;
}

.reasons-header {
  text-align: center;
  margin-bottom: 30px;
}

.reasons-header .section-title {
  margin-bottom: 30px;
  position: relative;
}

.reasons-header .section-title span.border{

}

.reasons-header .section-title::before,
.reasons-header .section-title::after {
  content: "";
  flex: 1;
  height: 7px;
  background-image: url(../images/h2_bg.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.reasons-header .section-title::after{

}


.reasons-header .section-title .highlight-red {
  color: #d9161c;
}

.reasons-header .section-subtitle {
  margin-bottom: 0;
}

.reasons-header .section-subtitle .keyword {
  color: #d9161c;
  font-weight: 700;
}

.reasons-list {
  margin-top: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.reason-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

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

.reason-item.reverse {
  flex-direction: row-reverse;
}

.reason-image {
  flex: 1;
  max-width: 480px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-image img {
  width: auto;
  height: 285px;
  display: block;
}

.reason-content {
  flex: 1;
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 49%;
  height: 285px;
}

.reasons-list .reason-item:nth-child(odd){
  position: relative;
}

.reasons-list .reason-item:nth-child(odd) .reason-number {
  position: absolute;
  top: -10px;
  left: -15px;
  width: 70px;
}

.reasons-list .reason-item:nth-child(odd) .reason-content{
  position: relative;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  width: 49%;
  height: 285px;
}

.reasons-list .reason-item:nth-child(even){
  position: relative;
  flex-direction: row-reverse;
}

.reasons-list .reason-item:nth-child(even) .reason-number {
  position: absolute;
  top: -10px;
  left: -15px;
  width: 70px;
}



.reason-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #030102;
}

.reason-title .highlight-orange {
  color: #eb821f;
}

.reason-title .highlight-red {
  color: #d9161c;
}

.reason-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* ----------------------------------------
   Efficiency Section
   ---------------------------------------- */
.section-efficiency {
  padding: 60px 0;
}

.efficiency-header {
  text-align: center;
  margin-bottom: 30px;
}

.efficiency-title {
  font-size: 25px;
  font-weight: 700;
  color: #030102;
}

.efficiency-title .underline {
  position: relative;
  background: linear-gradient(transparent 60%, #F4EA2F 60%);
}

.efficiency-title .underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(235, 130, 31, 0.3);
  z-index: -1;
}

.efficiency-list {
  display: flex;
  gap: 20px 4%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.efficiency-item {
  text-align: center;
  padding: 20px 3%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 48%;
}

.efficiency-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.efficiency-icon {
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.efficiency-icon img {
  object-fit: contain;
}

.efficiency-label {
  font-size: 16px;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.5;
  height: 3.5em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.efficiency-value {
  font-size: 18px;
  font-weight: 900;
  color: #eb821f;
}

.efficiency-value span{
  font-size: 16px;
  color: #000;
}

.efficiency-value .number {
  font-size: 24px;
  color: #eb821f;
}

.efficiency-value .unit {
  color: #eb821f;
}

/* ----------------------------------------
   Strong Point Section (Timeline Design)
   ---------------------------------------- */
.section-strong-point {
  padding: 60px 20px;
  background: url(../images/strong_bg.png) center top;
  background-size: cover;
}

.strongpoint-container {
  max-width: 870px;
  margin: 0 auto;
}

.section-title-sp {
  text-align: center;
  margin-bottom: 20px;
}

.section-title-sp .subtitle {
  font-size: 24px;
  color: #030102;
}

.section-title-sp h2 {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #D9161C 0%, #EB821F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-description-sp {
  text-align: center;
  font-size: 16px;
  color: #030102;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-description-sp.sub {
  font-size: 14px;
  color: #030102;
  margin-bottom: 40px;
}

.section-description-sp .keyword {
  color: #d9161c;
  font-weight: 700;
}

/* Comparison Flow Timeline */
.comparison-flow-timeline {
  display: flex;
  gap: 2%;
  margin-top: 40px;
  flex-direction: row;
}

.hikaku{
  width: 100%;
  overflow-x: scroll;
}

.hikaku-table{
  width: 100%;
  overflow-x: scroll;
}

.hikaku-table img{
  width: 75%;
  max-width: 75%;
  margin: auto;
  display: block;
}

.hikaku .comparison-table{
  width: 600px;
  max-width: 600px;
}

.table-wrap{
  overflow: visible;
}

/* ===== 共通 ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead{
  overflow: visible;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  overflow: visible;
}

/* ===============================
   1列目（評価指標）
================================ */
.comparison-table th:first-child {
  font-size: 16px;
  font-weight: 500;
  background: #edeff5;
  text-align: left;
}

/* ===============================
   2列目（Retigo）
================================ */
/* th */
.comparison-table th:nth-child(2) {
  background: #eb821f;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}

.comparison-table th:nth-child(2):before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #eb821f;
  position: absolute;
  top: 2px;
  left: 0;
}

/* td */
.comparison-table td:nth-child(2) {
  color: #eb821f;
  border-bottom: 1px solid #eb821f;
  min-height: 79px;
  font-weight: 700;
}

/* ===============================
   3・4列目（競合A・B）
================================ */
/* th */
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  background: #edeff5;
}

/* td */
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  border-bottom: 1px solid #eee;
}


.hikaku img{
  width: 600px;
  max-width: 600px;
}

.flow-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-header {
  background: #1E2B50;
  padding: 8px 30px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.flow-column.retigo .flow-header {
  background: #eb821f;
  color: #fff;
}

.timeline {
  position: relative;
  width: 100%;
  padding: 20px 0 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 0;
  width: 2px;
  background: url(../images/strong-line.png);
  transform: translateX(-50%);
  height: 80%;
}

.flow-column.retigo .timeline::before {
}

.timeline-item {
  width: 100%;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1;
  position: relative;
}

.timeline-icon {
  width: 100px;
  height: auto;
  margin-right: 5px;
}

.timeline-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.timeline-text {
  width: 180px;
  text-align: center;
  font-size: 16px;
  color: #030102;
  line-height: 1.5;
}

.timeline-text.highlight-red {
  color: #d9161c;
  font-weight: 700;
}

.timeline-text.highlight-orange {
  color: #eb821f;
  font-weight: 700;
}

.timeline-item-arrow{
  text-align: center;
}

.flow-arrow-down {
  width: 40px;
  height: 20px;
  margin: 10px auto;
  position: relative;
  z-index: 1;
}

.flow-arrow-down svg {
  width: 100%;
  height: 100%;
}

.alert-box {
  padding: 19px 20px;
  margin: 0 0 40px;
  font-size: 17px;
  text-align: center;
  width: 100%;
  position: relative;
}

.alert-box.loss {
  background: #1E2B50;
  color: #fff;
  z-index: 1;
  height: 110px;
}

.alert-box.loss .main-text {
  font-size: 20px;
}

.alert-box.loss .sub-text {
  font-size: 20px;
  font-weight: 700;
  color: #F4EA2F;
}

.alert-box.success {
  background: #EB821F;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  line-height: 1.5;
  height: 110px;
}

.result-box-sp {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.flow-column.retigo .result-box-sp {
  border-color: #eb821f;
}

.result-row {
  display: flex;
  margin-bottom: 10px;
  font-size: 14px;
  align-items: center;
}

.result-label-sp {
  padding: 0px 10px;
  border-radius: 5px;
  min-width: 70px;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
  border: 1px solid #030102;
}

.result-value-sp {
  font-weight: 500;
  font-size: 20px;
}

.result-value-sp small{
  font-size: 14px;
}

.result-total {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #eee;
}

.result-total.loss {
  color: #d9161c;
}

.result-total-underline{
  font-size: 25px;
  position: relative;
  background: linear-gradient(transparent 60%, #F4EA2F 60%);
  display: inline-block;
  font-weight: 700;
}

.total-wrap{
  text-align: center;
  position: relative;
}

.total-wrap::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../images/total-line.png) left center repeat-x;
}

.result-total-underline small{
  font-size: 20px;
}

.result-total.success {
  color: #eb821f;
}

/* Difference Section */
.difference-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
}

.difference-arrow {
  width: 166px;
  height: 78px;
  margin: 0 auto 20px;
}

.difference-arrow svg {
  width: 100%;
  height: 100%;
}

.difference-box-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.difference-images {
  display: flex;
  gap: 15px;
}

.difference-images img {
  width: 130px;
  height: 160px;
  object-fit: contain;
  background: #e8e8e8;
  border-radius: 10px;
}

.difference-text .label {
  font-size: 20px;
  color: #030102;
}

.difference-text .value {
  font-size: 72px;
  font-weight: 900;
  color: #eb821f;
  line-height: 1;
}

.difference-text .value .unit {
  font-size: 48px;
}

/* ----------------------------------------
   Comparison Table Section (Flexbox Layout)
   ---------------------------------------- */
.section-comparison {
  padding: 60px 5%;
  background: url(../images/comparison_bg.png) center bottom no-repeat;
  background-size: cover;
}

.comparison-container {
  max-width: 100%;
  margin: 0 auto;
}

.comparison-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.comparison-title .highlight-red {

}

.comparison-table-flex {
  display: flex;
  border-radius: 5px;
  margin-bottom: 20px;
  gap: 5px;
}

.table-column {
  flex: 1;
  min-width: 0;
}

.table-column.label-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.table-column.retigo-column {
  background: #fff0e3;
  border: 3px solid #eb821f;
  display: flex;
  flex-direction: column;
  position: relative;
  top: -7px;
  gap: 5px;
}

.table-column.competitor-column {display: flex;flex-direction: column;gap: 5px;}

.table-cell {
  padding: 5px 15px;
  text-align: center;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.table-header {
  min-height: 76px;
  font-size: 18px;
  font-weight: 500;
  background: #edeff5;
}

.retigo-column .table-cell {
  color: #eb821f;
  border-bottom: 1px solid #eb821f;
  min-height: 79px;
}

.table-column .table-cell.bgw{
  background: #fff;
}

.retigo-column .table-header {
  background: #eb821f;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.label-column .table-cell {
  font-size: 16px;
  font-weight: 500;
  background: #edeff5;
  height: 78px;
}

.cell-content {
  text-align: center;
  line-height: 1.4;
}

.cell-content small {
  display: block;
  font-size: 14px;
  color: #666;
}

.retigo-column .cell-content .main-value {
  font-size: 20px;
  font-weight: 700;
}

.retigo-column .cell-content .sub-value {
  font-size: 14px;
  font-weight: 500;
}

.competitor-column .table-cell {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  background: #edeff5;
}

.competitor-column .cell-content .sub-value {
  font-size: 14px;
}

.comparison-footer {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

.comparison-footer .brand {
  color: #eb821f;
  font-style: italic;
}

.cta-button {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #eb821f;
  color: #fff;
  padding: 14px 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 1px 2px 1px rgba(255,255,255,0.25), inset -2px -2px 1px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  width: fit-content;
  margin: 0 auto;
  width: 75%;
  align-items: center;
}

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

.cta-button .arrow{
  font-size: 24px;
  line-height: 1;
  position: relative;
  top: -2px;
}

/* ----------------------------------------
   Cases Section (New Design)
   ---------------------------------------- */
.section-cases {
  padding: 80px 20px;
  background: #fff;
}

.case-container {
  width: 100%;
  margin: 0 auto;
}

.case-header-section {
  text-align: center;
  margin-bottom: 40px;
}

.case-header-section h2 img{
  width: auto;
  height: 32px;
}

.case-subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cases-lead {
  text-align: center;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.case-slider-new {
  position: relative;
  background: #fff;
  padding: 20px 5%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  border-top: 7px solid #EB821F;
  flex-direction: column;
  display: flex;
}

.case-card-new {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.case-image-new {
  width: 315px;
  height: 200px;
  background: #ddd;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.case-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content-new {
  flex: 1;
  width: 100%;
}

.case-title-new {
  font-size: 20px;
  font-weight: 700;
  color: #eb821f;
  margin-bottom: 15px;
}

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

.case-content-text{
  display: flex;
  gap: 25px;
  flex-direction: row;
}

.case-content-text .case-description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.case-content-text .case-img{
  width: 40%;
}

.case-product-new {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.case-product-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  font-weight: 700;
}

.case-product-title::before,
.case-product-title::after {
  content: "";
  flex: 1;
  height: 7px;
  background-image: url(../images/h2_bg.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.case-product-title span.border {position: relative;}


.case-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.case-product-image img {
  width: 100%;
  object-fit: contain;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: #eb821f;
}

.parent .case-swiper {
	padding: 10px 10px 40px 10px;
}

.swiper-slide {
	height: auto;
}

/* Swiperのドットを既存デザインに寄せる */
.swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: #ddd;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #eb821f;
}

.swiper-wrapper{

}

/* デフォルト矢印を消す */
.case-swiper-wrap .swiper-button-prev::after,
.case-swiper-wrap .swiper-button-next::after {
	display: none;
}

/* 共通 */
.case-swiper-wrap .swiper-button-prev,
.case-swiper-wrap .swiper-button-next {
	width: 25px;
	height: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 325px;
}

/* 前へ */
.case-swiper-wrap .swiper-button-prev {
	background-image: url("../images/prev.png");
	left: -2%; /* 外に出したい場合 */
}

/* 次へ */
.case-swiper-wrap .swiper-button-next {
	background-image: url("../images/next.png");
	right: -2%;
}

.case-swiper-wrap.swiper-button-prev:hover,
.case-swiper-wrap.swiper-button-next:hover {
	opacity: 0.7;
}

.case-swiper-wrap {
	position: relative;
}

.case-swiper {
	overflow: hidden; /* これは残す */
}

.case-swiper .swiper-button-prev {
	left: -70px;
}

.case-swiper .swiper-button-next {
	right: -70px;
}

.case-swiper-wrap .swiper-pagination {
  position: relative;
}

.case-swiper-wrap .swiper-pagination-bullet-active{
  background: #EB821F;
  width: 14px;
  height: 14px;
}

.case-swiper-wrap .swiper-pagination-bullet{
  width: 14px;
  height: 14px;  
}

.case-swiper-wrap .case-swiper{
  padding: 0 10px 30px;
}

/* ----------------------------------------
   About Section (New Design)
   ---------------------------------------- */
.section-about {
  padding: 0;
  background:#1E2B50;
}

.about-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.about-image-new {
  width: 585px;
  border-radius: 15px;
  flex-shrink: 0;
  overflow: hidden;
}

.about-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-new {
  flex: 1;
  padding: 30px 0;
}

.about-title-new {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding: 0 5%;
}

.about-title-new span{
  font-size: 30px;
}

.about-lead-new {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
  padding: 0 5%;
}

.about-desc-new {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.stats-grid {
  display: flex;
  gap: 10px;
  flex-direction: row;
  padding: 0 3%;
}

.stat-item-new {
  flex: 1;
  text-align: center;
}

.stat-label-new {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.stat-value-new {
  font-size: 14px;
  color: #030102;
}

.stat-value-new strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #eb821f;
}

/* ----------------------------------------
   Flow Section (New Design)
   ---------------------------------------- */
.section-flow {
  padding: 80px 20px 0;
  background: #fff;
}

.flow-container {
  max-width: 100%;
  margin: 0 auto;
}



.flow-title-new {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  font-weight: 700;
}

.flow-title-new ::before,
.flow-title-new ::after {
  content: "";
  flex: 1;
  height: 7px;
  background-image: url(../images/h2_bg.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.flow-title-new  span.border {

}


.flow-title-new {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  font-weight: 700;
}

.flow-title-new::before,
.flow-title-new::after {
  content: "";
  flex: 1;
  height: 7px;
  background-image: url(../images/h2_bg.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

.flow-title-new  span.border {

}


.flow-description {
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

.steps-grid {
  display: flex;
  gap: 15px;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.step-item {
  text-align: center;
  position: relative;
  width: 35%;
  margin: auto;
}

.step-number-new {
  font-size: 20px;
  color: #eb821f;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-image {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

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

.step-label-new {
  background: #eb821f;
  color: #fff;
  padding: 2px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.step-arrow {
  color: #eb821f;
  font-size: 20px;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
  display: none;
}

.step-item:last-child .step-arrow {
  display: none;
}

/* ----------------------------------------
   FAQ Section (New Design)
   ---------------------------------------- */
.section-faq {
  padding: 60px 5%;
}

.faq-container {
  max-width: 815px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1e2b50;
  margin-bottom: 15px;
}

.faq-description {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 40px;
}

.faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-new {
  background: #fff;
  overflow: hidden;
}

.faq-list-new .faq-inner{
  width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.faq-question-new {
  background: #EB821F;
  color: #fff;
  padding: 5px 3%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-list-new .faq-item-new:nth-child(even) .faq-question-new{
  background: #EFA200;
}

.faq-question-new .q-mark {
  margin-right: 10px;
  width: 25px;
}

.faq-question-new .text{
  flex: 1;
}

.faq-answer-new {
  padding: 20px 3%;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-answer-new .a-mark {
  margin-right: 10px;
  width: 25px;
}

.faq-answer-new .text{
  flex: 1;
}

/* ----------------------------------------
   Partner Section (New Design)
   ---------------------------------------- */
.section-partner {
  padding: 60px 5%;
  background: url(../images/partner_bg.png) center no-repeat;
  background-size: cover;
  color: #fff;
}

.partner-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.partner-description {
  font-size: 14px;
  margin-bottom: 30px;
}

.partner-list {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  text-align: left;
}

.partner-list-item {
  display: flex;
  gap: 10px;
  font-size: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.7);
  padding: 0 0 5px 0;
}

.partner-check-icon {
  color: #eb821f;
  width: 25px;
  flex-shrink: 0;
}

.partner-note-new {
  font-size: 16px;
  margin-bottom: 30px;
}

.partner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid #eb821f;
  color: #eb821f;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.partner-button:hover {
  background: #eb821f;
  color: #fff;
}

/* ----------------------------------------
   Contact Section (New Design)
   ---------------------------------------- */
.section-contact {
  padding: 60px 5%;
  background: #f8f9fc;
}

.contact-container-new {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 30px 3%;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  border-top: 7px solid #eb821f;
}

.contact-title-new {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #1e2b50;
  margin-bottom: 15px;
}

.contact-description {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.contact-form-new {
  max-width: 700px;
  margin: 0 auto;
}

.form-group-new {
  display: flex;
  margin-bottom: 30px;
}

.form-group-new p{
  display: flex;
  margin-bottom: 30px;
}

.form-label-new {
  width: 150px;
  font-size: 16px;
  font-weight: 500;
  padding-top: 0;
  flex-shrink: 0;
}

.wpcf7-form-control-wrap{
  flex: 1;
}

.form-input-new {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

.form-input-new:focus {
  outline: none;
  border-color: #eb821f;
}

.checkbox-group-new {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-item-new {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	position: relative;
	flex-wrap: wrap;
}

/* グループ */
.checkbox-group-new .wpcf7-list-item {
	margin-bottom: 8px;
	width: 100%;
}

/* label全体 */
.checkbox-group-new .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	position: relative;
}

/* checkbox本体は非表示 */
.checkbox-group-new input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* カスタムボックス（before） */
.checkbox-group-new .wpcf7-list-item-label{
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
}

.checkbox-group-new .wpcf7-list-item-label::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 1px solid #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	transition: all 0.2s ease;
	position: relative;
	margin-right: 8px;
}

/* チェックマーク（after） */
.checkbox-group-new .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 7px;
	height: 11px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}

/* チェック時 背景 */
.checkbox-group-new
input[type="checkbox"]:checked
+ .wpcf7-list-item-label::before {
	background: #eb821f;
	border-color: #eb821f;
}

/* チェック表示 */
.checkbox-group-new
input[type="checkbox"]:checked
+ .wpcf7-list-item-label::after {
	opacity: 1;
}

.checkbox-group-new-2 .checkbox-item-new{
  flex-wrap: wrap;
}

.checkbox-group-new-2 .wpcf7-list-item{
}

.checkbox-group-new-2 .wpcf7-list-item:nth-child(1){
  width: 100%;
}

.checkbox-group-new-2 .wpcf7-list-item:nth-child(2){
  width: 100%;
}

.checkbox-group-new-2 .wpcf7-list-item:nth-child(3){
  
}

.checkbox-group-new-2 .wpcf7-list-item:nth-child(4){
  
}

.submit-button-new {
  display: block;
  width: 75%;
  margin: 30px auto 0;
  padding: 15px 30px;
  background: #eb821f;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.submit-button-new:hover {
  opacity: 0.9;
}

.form-note-new {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}

/* ----------------------------------------
   Footer (New Design)
   ---------------------------------------- */
.footer {
  background: #1e2b50;
  color: #fff;
  padding: 50px 5% 30px;
  border-radius: 25px 25px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  font-size: 12px;
  line-height: 2;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

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

.footer-copyright {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
}

.page-thanks{
  padding-bottom: 80px;
}