@charset "UTF-8";

/* ==========================================================================
   1. デザイン変数（色の管理）
   ========================================================================== */
:root {
  --color-primary: #F36A40;
  --color-secondary: #ffa726;
  --color-text: #323232;
  --color-bg-light: #f3f4f6;
  --color-bg-red: #fff0ea;
  --color-white: #ffffff;
  --width-content: 1200px;
}

/* ==========================================================================
   2. 基本設定
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "yakuhanjp", "Noto Sans JP", sans-serif;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: var(--color-white);
  background-image: none;
  padding-top: 0;
}

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

li { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* ==========================================================================
   3. 共通パーツ
   ========================================================================== */
.l-container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 20px;
}

.c-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.c-section-head__sub {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 10px;
}

.c-section-head__tit {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-section-head__tit {
    font-size:2.4rem;
    line-height:1.3em;
  }
}

.c-section-head__desc {
  margin-top: 15px;
}

/* 汎用ボタン */
.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 40px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.c-btn:hover {
  background-color: #CC411C;
  transition: 0.3s;
}

.u-pc-only {
  display: block;
}
.u-sp-only {
  display: none;
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
  }
}

/* ==========================================================================
   4. ヘッダー
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin: auto 0;
  padding: 20px 30px;
  background: #fff;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.header__logo img {
  height: 25px;
  width: auto;
  display: block;
}

.header__nav {
  margin-right: 30px;
}

.header__nav ul {
  display: flex;
  gap: 30px;
}

.header__nav a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.5rem;
}

.header__nav a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .header__nav { display: none; }
}

button {
  text-align:center;
}

/* ==========================================================================
   5. 各セクション
   ========================================================================== */

.hero {
  background-color: #f2f2f2;
  background-image: url("hero.jpg");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 80px;
  text-align: left;
}

.hero .l-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__sub {
  font-size: 2rem; color: var(--color-text);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero__title {
  letter-spacing: 0.05em;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero__text {
  font-size: 1.8rem;
  margin: 20px 0 30px;
}

.hero__bubble {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero__bubble p {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
}

.hero__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
}

.c-btn--hero {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  background: linear-gradient(0deg, #f36a40 0%, #f6845c 100%);
  border-radius: 50px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.c-btn--hero:hover {
  background: linear-gradient(0deg, #F15025 0%, #F36A40 100%);
  opacity: 1 !important; 
}

.c-btn--hero:active {
  transform: translateY(2px);
  transition: all 0.1s;
}

.c-btn__icon {
  width: auto;
  height: 45px;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transform: rotate(-3deg);
}

.c-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.c-btn__text small {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.c-btn__text strong {
  font-size: 2.0rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero {
    background-image: url("hero_sp.jpg");
    background-size: 100% auto;
    background-position: center top;
    padding: 20px 0 0 0;
    display: flex;
    align-items: flex-start;
  }

  .hero .l-container {
    padding: 0 20px 30px 20px;
    align-items: center;
    text-align: center;
  }

  .hero__sub {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero__bubble {
    margin-bottom: 20px;
  }

  .hero__bubble::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__title {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .hero__title br{
    display:none;
  }

  .hero__text {
    margin: 10px 0 270px;
    font-size: 1.4rem !important;
    line-height: 1.4;
  }

  .c-btn--hero {
    padding: 12px 25px;
    width: 90%;
    max-width: 350px;
    justify-content: center;
  }

  .c-btn__icon {
    height: 55px;
  }

  .c-btn__text strong {
    font-size: 1.8rem;
  }

  .c-btn__icon {
  width: auto;
  height: 40px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transform: rotate(-3deg);
  }
}

/* 導入企業ロゴ */
.logos { 
  padding: 60px 0 40px 0;
  background: var(--color-white); 
  overflow: hidden;
}
@media (max-width: 767px) {
  .logos {
    padding: 30px 0 10px 0;
  }
}

.logos .c-section-head {
  margin-bottom: 0;
}

.logos .c-section-head__tit {
  margin-bottom: 30px;
  font-size:27px;
}
@media (max-width: 767px) {
  .logos .c-section-head__tit {
    font-size:2.2rem;
  }
}

/* スライダーの窓枠 */
.logo-slider {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  cursor: default;
}

.logo-slider__track {
  display: flex;
  width: max-content; 
  animation: logo-loop 40s linear infinite;
}

.logo-slider__img {
  height: 100px;
  width: auto;
  display: block;
  /* padding-right: 50px; */ 
}

@keyframes logo-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .logo-slider__img {
    height: 100px !important;
  }
}

/* 無限ループのアニメーション */
@keyframes logo-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* スマホ用の余白調整 */
@media (max-width: 767px) {
  .logo-slider {
    margin-top: 40px;
  }
  .logo-slider__img {
    height: 45px;
  }
}

/* S+でできること */
.benefits { padding: 80px 0; background: var(--color-bg-red); }
@media (max-width: 767px) {
  .benefits {
     padding: 40px 0;
  }
}

.benefits__grid { display: grid; gap: 20px; }
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 11000px;
    margin: 0 auto;
  }
}

.benefits-card {
  background: #fff;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  box-shadow:rgba(241, 80, 37, 0.7);
}

.benefit-card__head {
   font-size: 1.9rem;
   font-weight: 700;
   line-height: 2.5rem;
   color:var(--color-primary)
}

.benefit-card__img {
  margin: 5px 0 0 0; 
  display: flex;
  justify-content: center;
}

.benefit-card__img img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.benefit__img {
  margin: 40px 0 0 0; 
  display: flex;
  justify-content: center;
}

.benefit__img img {
  height: 300px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
    margin: 0 auto;
  }

  .benefit-card {
    padding:40px 0;
  }

  .benefit-card__img {
    width:100%;
    max-width: 400px;
    margin: 20px auto;
  }

  .benefit__img {
    width:100%;
    max-width: 400px;
    margin: 20px auto;
  }

  .benefit-card__head {
    padding-top: 20px;
  }
}

/* 3つのポイント */
.points {
   padding: 80px 0; background: var(--color-white);
}
@media (max-width: 767px) {
  .points {
     padding: 40px 0;
  }
}

.points__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .points__grid {
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
  }
}

.point-card { 
  background: #fff; 
  padding: 40px 0px; 
  border-radius: 10px; 
  text-align: center;
}
@media (max-width: 767px) {
  .point-card {
     padding: 0px 0px 30px 0;
  }
}


.point-card__label {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3.5rem;
  font-family: 'Roboto', sans-serif;
}
.point-card__head {
  font-size: 2.5rem; font-weight: 700; margin-bottom: 15px;
}
@media (max-width: 767px) {
  .point-card__head {
     font-size: 2.4rem;
  }
}

.point-card__img {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.point-card__img img {
  width:100%;
  max-width: 240px;
  height: auto;
}
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
    margin: 0 auto;
  }

  .point-card__img {
    width:100%;
    max-width: 400px;
    margin: 20px auto;
  }    
}

.points__btn-area {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   CTAセクション（幅700px版）
   ========================================================================== */
.cta-section {
  padding: 50px 0 70px 0;
  background: linear-gradient(0deg, #f36a40 0%, #f6845c 100%);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-box__title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.cta-box__inner {
  background: #FFF9F6;
  border-radius: 10px;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .cta-box__inner {
    flex-direction: row; 
    text-align: left;
    gap: 40px;
  }
  .cta-box__img {
    flex: 0 0 240px;
  }
}

.cta-box__img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.15));
}

.cta-box__content {
  flex: 1;
}

.cta-box__head {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  line-height: 3rem;
}

.cta-box__list {
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}

.cta-box__list li {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
  position: relative;
  padding-left: 1.2em;
  line-height: 2rem;
}

.cta-box__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.c-btn--cta {
  padding: 8px 32px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
 @media (max-width: 767px) {
  .c-btn--cta {
    padding: 8px 24px;
  }
 }

/* --- サポートセクション --- */
.support {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}
@media (max-width: 767px) {
  .support {
  padding:40px 0;
}
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.support-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.support-card__img {
  flex: 0 0 200px;
  align-self: center;
  display: block;
}

.support-card__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.support-card__body {
  flex: 1;
}

.support-card__head {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

/* 箇条書き（オレンジの点） */
.support-card__list {
  padding: 0;
  margin: 0;
}

.support-card__list li {
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  list-style: none;
}

.support-card__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.8rem;
  line-height: 2.3rem;
}

@media (max-width: 767px) {
  .support__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .support-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 20px 20px;
  }

  .support-card__img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 240px;
  }

  .support-card__list li {
    text-align: left;
    display: inline-block;
  }

  .support-card__head {
    font-size: 1.8rem;
  }
}

/* --- 3. 共通パーツ（PC/SP切り替え） */
@media (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

/* 事例 */
.case { 
  padding: 80px 0;
  background: var(--color-bg-red);
}
@media (max-width: 767px) {
  .case {
    padding:30px 0 0;
  }
}

.case-box {
  flex: 0 0 85%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .case-box {
    flex: 0 0 80%;
    flex-direction: row;
    height: 480px;
  }
}

.case-box__img {
  flex: 1;
  background: #f5f5f5;
  overflow: hidden;
  display: block;
}

.case-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-box__content {
  flex: 1.2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left; /* 基本左揃え */
}

.case-box__tag {
  background: #f2f2f2;
  color: #666;
  padding: 4px 12px 6px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-right: 8px;
  font-weight: 600;
}

.case-box__name {
  font-size: 1.6rem;
  margin: 15px 0 10px;
  font-weight: 700;
  color: #333;
}

.case-box__catch {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.case-box__effect-box {
  background-color: #fff0ea;
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.case-box__effect-label {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.6rem;
  white-space: nowrap;
}

.case-box__effect-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-box__effect-list li {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  color: #333;
}

.case-box__effect-list li::before {
  content: "●";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  line-height: 2rem;
}

.case-box__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333;
}

.u-text-orange {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 767px) {
  .case-box__content {
    padding: 24px;
  }
  .case-box__catch {
    font-size: 2rem;
  }
  .case-box__effect-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .case-box__name {
    font-size: 1.5rem;
  }
  .case-box__img {
    height: 150px;
  }
  .case-box__text {
  font-size: 1.35rem;
  line-height: 1.5;
  }
  .case-box__effect-list li {
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  color: #333;
  }
}
/* --- 導入事例：カルーセル --- */
.case {
  overflow: hidden; 
}

.case-carousel-area {
  width: 100%;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.case-viewport {
  overflow: visible;
  width: 100%;
  padding-left: 10%; 
}

.case-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.case-box {
  flex: 0 0 85%; /* 1枚の幅 */
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .case-box {
    flex: 0 0 80%;
    flex-direction: row;
    height: 400px;
  }
}

.case-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color:  #fff;
  opacity: 0.8;
  cursor: pointer;
  border: none;
  outline: none;
}
@media (max-width: 767px) {
  .case-nav-btn {
    width: 40px;
    height: 40px;
  }
  .case-nav-btn.prev { left: 10px; }
  .case-nav-btn.next { right: 10px; }
}

.case-nav-btn:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.case-nav-btn:active {
  opacity: 0.3;
}

.case-nav-btn.prev { left: 20px; }
.case-nav-btn.next { right: 20px; }

.logo-display {
  background-color: var(--color-bg-red);
  padding: 80px 0 0 0;
}

.logo-display__box {
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px;
  border-radius: 10px;
  text-align: center;
}

.logo-display .c-section-head {
  margin-bottom: 40px;
}

.logo-display .c-section-head__tit {
  font-size: 2.4rem;
  color: #333;
}
@media (max-width: 767px) {
  .logo-display .c-section-head__tit {
    font-size:2.0rem;
    line-height:1.3em;
  }
}

.logo-display__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo-display__img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- レスポンシブ（SP） --- */
@media (max-width: 767px) {
  .logo-display {
    padding: 60px 0;
  }
  .logo-display__box {
    padding: 20px 20px;
    width: 92%; 
  }
}

/* ==========================================================================
   よくある質問（FAQ）アコーディオン
   ========================================================================== */
.faq {
  padding: 80px 0;
  background-color: var(--color-bg-light); 
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.2em 50px 1.2em 3.5em; /* 右側に矢印、左側にQの余白 */
  font-weight: 700;
  font-size: 1.8rem;
  cursor: pointer;
  list-style: none; 
  line-height: 2rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  position: absolute;
  left: 1.2em;
  content: "Q";
  color: #6b6b6b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 1000;
  font-size: 1.3em;
}

.faq-answer::before {
  position: absolute;
  left: 1.5em;
  top: 0.6em;
  content: "A";
  color:var(--color-primary); 
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 1000;
  font-size: 1.4em;
}

.faq-question::after {
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 3px solid #333; 
  border-right: 3px solid #333;
  position: absolute;
  right: 25px;
  top: 50%;
  /* 最初は下向きのV字 */
  transform: translateY(-70%) rotate(45deg); 
  transition: transform 0.5s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
  position: relative;
  padding: 1em 2em 1em 4.2em; 
  margin: 0;
  color: var(--color-text); 
  line-height: 1.7;
  font-size: 1.5rem;
  border-top: 1px solid #f0f0f0; 
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s; 
}

.faq-answer .u-text-accent {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.15em;
  display: inline-block;
  line-height: 2rem;
}

.faq-item[open] .faq-answer {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .faq-question {
    font-size: 1.6rem;
    padding-left: 3em; 
  }
  .faq-answer {
    padding-left: 3.2em;
  }
  .faq-answer .u-text-accent {
    font-size: 1.6rem;
  }

  .faq-question::before, 
  .faq-answer::before {
    left: 0.8em; 
  }
}

/* --- お気軽にお問い合わせください：下揃え＆高さ指定版 --- */
.consultation {
  padding: 40px 0 0;
  background: linear-gradient(0deg, #f36a40 0%, #f6845c 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.consultation__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.consultation__content {
  text-align: center;
  z-index: 2;
  flex: 0 0 375px;
  max-width: 600px;
  padding-bottom: 20px;
}

.c-btn--consultation {
  color:var(--color-primary);
  background: #fff !important;
  margin:20px;
}

.c-btn--consultation:hover {
  opacity: 0.9;
}

.consultation__img {
  z-index: 1;
  flex: 0 0 auto;
}

.consultation__img img {
  height: 120px;
  width: auto;
  display: block;
}

.consultation__img--left {
  margin-right: 10px;
  margin-left: auto;
}

.consultation__img--right {
  margin-left: 10px;
  margin-right: auto;
}

/* --- レスポンシブ（SP） --- */
@media (max-width: 767px) {
  .consultation {
    padding: 30px 0 10px 0;
  }

  .consultation__img--left,
  .consultation__img--right {
    display: none;
  }

  .consultation__content {
    padding-bottom: 0;
    max-width: 100%;
    padding: 0 20px;
  }

  .consultation__title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   資料請求セクション（分離・画像バナー版）
   ========================================================================== */
.contact { 
  padding: 80px 0; 
  background: var(--color-bg-light); 
}

.contact-info {
  max-width: 1100px;
  margin: 0 auto 40px;
  background-image: url("contact-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 50px 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.contact-info__text {
  flex: 1;
}

.contact-info__title {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-info__desc {
  font-size: 1.6rem;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.contact-info__img {
  flex: 0 0 225px;
  margin-left: 30px;
}

.contact-info__img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}

.contact-content__form {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.cf7 {
  padding: 50px 60px;
}

.cf7__list dt { 
  font-weight: bold; 
  margin-top: 25px; 
  margin-bottom: 8px; 
  font-size: 1.5rem; 
}

.cf7__list dt:first-child {
  margin-top: 0;
}

.cf7__required {
  background: var(--color-primary);
  color: #fff; 
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 1.1rem;
  margin-right: 8px;
  vertical-align: middle;
}

.cf7__optional {
  background: #999;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 1.1rem;
  margin-right: 8px;
  vertical-align: middle;
}

input, select, textarea { 
  width: 100%; 
  padding: 14px; 
  border: 1px solid #ddd; 
  border-radius: 6px; 
  background: #fafafa; 
  font-size: 1.6rem; 
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  background: #fff;
}

input::placeholder, textarea::placeholder {
  color: #ccc;
}

.from_name { display: flex; gap: 10px; }
.from_name .item-box { flex: 1; }

@media (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }

  .contact-info {
    width: 95%;
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    margin-bottom: 30px;
  }

  .cf7 {
    padding: 0;
  }

  input, textarea {
    box-sizing: border-box; 
    width: 100%;
  }

  .contact-content__form {
    max-width: 100%;
    width: 100%;
  }
  
  .contact-info__text {
    width: 100%;
  }

  .contact-info__title {
    font-size: 2.2rem;
  }

  .contact-info__desc {
    font-size: 1.4rem;
  }

  .contact-info__img {
    margin: 30px 0 0 0;
    flex: 0 0 auto;
    width: 200px;
  }
}

/* ==========================================================================
   6. フッター
   ========================================================================== */
.footer { 
  background: #2b2b2c; 
  color: #fff; 
  padding: 40px 0; 
}

.footer .l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a { 
  font-size: 1.3rem; 
  opacity: 0.6; 
}

.footer__links a:hover {
  opacity: 1;
}

.footer__copyright { 
  font-size: 1.2rem; 
  opacity: 0.4; 
}

@media (max-width: 767px) {
  .footer .l-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.benefits__grid,
.benefit__img,
.points__grid,
.support__grid {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.benefits__grid.is-active,
.benefit__img.is-active,
.points__grid.is-active,
.support__grid.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .cf7__list dd input[type="text"],
  .cf7__list dd input[type="tel"],
  .cf7__list dd input[type="email"],
  .cf7__list dd input[type="url"],
  .cf7__list dd textarea {
    max-width: 100% !important;
  }
}

#pi_tracking_opt_in_div {
display:none
}