@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: 500;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  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;
}
@media (max-width: 767px) {
  .c-section-head__desc {
    font-size:1.3rem;
    line-height:2rem;
  }
}

/* 汎用ボタン */
.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;
}

.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;
  }
  .header__inner {
  padding: 20px;
  }
  .header__logo {
    margin-right: 80px;
  }
}

button {
  text-align:center;
}

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

/* --------------------------------------------------------------------------
   FV
   -------------------------------------------------------------------------- */
.hero {
  /* セクション全体に背景を適用 */
  background-color: var(--color-bg-light);
  background-image: url("bpo_hero_pc.jpg");
  background-size: cover;      /* 画面全体を覆う */
  background-position: center; /* 中央基準 */
  background-repeat: no-repeat;
  padding: 80px 0 140px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero .l-container {
  display: flex;
  flex-direction: column; /* 要素を縦一列に並べる */
  align-items: center;    /* 横方向の中央揃え */
  text-align: center;
}

.hero__title {
  letter-spacing: 0.05em;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 60px;
}

.hero__text {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 30px 0;
}

.hero__logo {
  display: flex; 
  justify-content: center;
  align-items: center; 
  width: 100%;
  margin: 20px 0 60px;
}

.hero__logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.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("bpo_hero_sp.jpg"); /* スマホ用画像 */
    padding: 60px 0 40px;
  }

  .hero .l-container {
    padding: 0 20px;
  }

  .logos-inner-box {
    width: 100%;
    margin-top: 40px;     /* スマホでは余白を少し詰める */
    padding: 30px 0 10px;
  }

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

  .hero__title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .hero__text {
    margin: 10px 0 30px;
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .hero__logo img {
  max-width: 170px;
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  }

  .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.6rem;
  }

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

/* --------------------------------------------------------------------------
   導入企業ロゴ
   -------------------------------------------------------------------------- */
.logos-inner-box {
  width: 85%;
  max-width: 1100px;
  margin: 80px auto 0;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  padding: 50px 0 20px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
}

.hero .c-section-head__tit {
  margin-bottom: -20px ;
  line-height: 1.3;
}


.logo-slider {
  width: 100%;
  cursor: default;
}

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

.logo-slider__img {
  height: 150px;
  width: auto;
  display: block;
}

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

@media (max-width: 767px) {
  .logos-inner-box {
    width: 100%;
    margin: 40px 0;
    padding: 25px 0 20px;
  }
  .hero .c-section-head__tit {
    font-size: 2rem;
    margin-bottom: -20px;
  }
  .logo-slider__img {
    height: 120px;
  }
}

/* --------------------------------------------------------------------------
   S+BPOでできること
   -------------------------------------------------------------------------- */
.benefits {
  padding: 0;
  background-color: var(--color-bg-red);
  position: relative;
  z-index: 1;
}

/* 上の円弧 */
.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 10 / 1;
  background-color: var(--color-bg-red);
  border-radius: 50% 50% 0 0; /* 上側だけ丸める */
  border-radius: 100% 100% 0 0 / 100% 100% 0 0; /* 楕円の指定 */
  z-index: -2;
  box-shadow: 0 -5px 8px rgba(0,0,0,0.04);
}

/* 下の円弧 */
.benefits::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  aspect-ratio: 10 / 1;
  background-color: var(--color-bg-red);
  border-radius: 0 0 100% 100% / 0 0 100% 100%;
  z-index: -2;
  box-shadow: 0 5px 8px rgba(0,0,0,0.04);
}

.benefits .l-container {
  max-width: 1100px;
}

.benefits__list {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.benefits__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.benefits__row:nth-child(even) {
  flex-direction: row-reverse;
}

.benefits__img {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits__img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.benefits__content {
  flex: 1;
}

.benefits__header {
  position: relative;
  margin-bottom: 1.5rem;
}

.benefits__num {
  font-family: 'Montserrat';
  font-size: 12rem;
  font-weight: 700;
  color: #F36A40;
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: -7rem;
  left: -1rem;
  z-index: 0;
}

.benefits__item-title {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  padding-left: 1em;
}

.benefits__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color:var(--color-text);
  padding-left: 1.8em;
}

@media (max-width: 767px) {
  .benefits {
    padding: 5rem 0;
  }
  .benefits__list {
    gap: 6rem;
  }
  .benefits__row, 
  .benefits__row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .benefits__img {
    width: 100%;
  }
  .benefits__img img {
    max-width: 280px;
  }
  .benefits__num {
    font-size: 6rem;
    top: 0.5;
    left: 15%;
    transform: translateX(-50%);
  }
  .benefits__item-title {
    text-align: left;
    font-size: 1.8rem;
    padding:0 20px 0 25px;
  }
  .benefits__text {
    font-size: 1.4rem;
    text-align: left;
    padding:0 20px 0 25px;
  }
}

/* --------------------------------------------------------------------------
   BPOメニュー
   -------------------------------------------------------------------------- */
.menu { 
  padding: 80px 0 40px 0;
  background: #fff;
  overflow: hidden;
}

#menu .c-section-head__sub {
  margin-top: 100px;
}

.menu__sub-label {
  max-width: 1100px;
  margin: 0 auto 40px;
  background:var(--color-bg-red);
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  padding: 4px;
  border-radius: 99px;
}

.menu__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  flex: 0 1 calc(25% - 30px);
  background: var(--color-bg-light);
  border-radius: 15px;
  padding: 20px 15px 15px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card__head {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color:var(--color-text);
  line-height: 1.4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-card__img {
  width: 100%;
  height: 110px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.menu-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 767px) {
  .menu {
    padding: 40px 0;
  }
  #menu .c-section-head__sub {
    margin-top: 20px;
  }
  .menu__grid {
    gap:15px;
  }
  .menu__sub-label {
    width: 90%;
    font-size: 16px;
    margin-bottom:20px;
  }
  .menu-card {
    flex: 0 1 calc(50% - 15px); /* 2カラム */
    min-width: auto;
    padding: 15px 10px 10px;
    border-radius: 10px;
  }
  .menu-card__head {
    font-size: 1.4rem;
    margin:0;
  }
  .menu-card__text {
    font-size: 1.1rem;
  }
  .menu-card__img {
    height: 80px;
    margin:0;
  }
}

/* S+のご利用サポート */
.support-area {
  margin-top: 60px;
  text-align: center;
}

.support-area__desc {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--color-text);
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.support-grid .menu-card {
  flex: 0 1 calc(33.333% - 30px); 
  max-width: 270px;
}

.u-color-primary {
  color: #f36a40;
}

@media (max-width: 767px) {
  .support-grid .menu-card {
    flex: 0 1 calc(50% - 15px);
    max-width: none;
  }
  .support-grid {
    gap: 15px;
  }
  .support-area__desc {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding: 0 20px;
  }
}

/* --------------------------------------------------------------------------
   選ばれる理由
   -------------------------------------------------------------------------- */
.reasons {
  padding: 80px 0;
  background: var(--color-bg-red);
}
@media (max-width: 767px) {
  .reasons {
     padding: 40px 0;
  }
}

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

.reason-card__circle {
  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);
}

.reason-card__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: 0.03em;
  color:var(--color-primary)
}

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

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

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

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

.reason-card__list {
  text-align: left;
  list-style: none;
  padding: 0 35px;
  margin: 20px 0 0 0;
  color:var(--color-text);
}

.reason-card__list li {
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
}

.reason-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) {
  .reason-card {
    width: 100%;
    margin-bottom: 25px;
  }
  .reason-card__circle {
    margin: 0 auto 10px;
    width: 85%;
    height: auto;
    border-radius: 10px;
    padding:15px 20px 0;
  }
  .reason-card__head {
    font-size: 1.6rem;
  }
  .reason-card__list {
    margin: 0 auto;
  }
  .reason-card__list li {
    font-size: 1.3rem;
  }
  .reason-card__img {
    max-width: 200px;
    margin-bottom: 20px;
  }
  .reason-card__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   お客様の声
   -------------------------------------------------------------------------- */
.voices {
   padding: 80px 0; background: var(--color-white);
}
@media (max-width: 767px) {
  .voices {
     padding: 40px 0;
  }
}

.voice-wrapper {
  padding: 0 0 60px 0;
  background: #fff;
}

.voice__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voice__list {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

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

.voice__balloon {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-red);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  margin-bottom: 30px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.voice__balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: #fff0eb transparent transparent transparent;
}

.voice__title {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.voice__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
}

.voice__img {
  margin-top:20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.voice__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 767px) {
  .voice__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .voice__balloon {
  width: 100%;
  min-height: auto;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
  }

  .voice__title {
  font-size: 1.8rem;
  font-weight: 700;
  }

  .voice__text {
  font-size: 1.4rem;
  }
  
  .voice__item {
    width: 75%;
    max-width: 400px;
  }

  .voice__img {
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .voice__img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
}

/* --------------------------------------------------------------------------
   ご利用の流れ
   -------------------------------------------------------------------------- */
.flow {
  padding: 80px 0;
  background: var(--color-bg-red);
}

.flow__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.flow__list::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 5%;
  right: 5%;
  height: 4px;
  background: #f36a40;
  z-index: -1;
}

.flow__item {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: -40px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow__icon img {
  width: 100%;
  height: auto;
}

/* 白いボックス */
.flow__box {
  background: #fff;
  width: 100%;
  padding: 50px 10px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.flow__step {
  display: block;
  color: #f36a40;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: 'Montserrat';
  margin: 6px;
}

.flow__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

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

  .flow__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
  }

  .flow__list::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; /* 線の太さ */
    background: var(--color-primary);
    z-index: 0;
  }

  .flow__item {
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 1;
    margin: 0;
  }

  .flow__icon {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    z-index: 3;
    border-radius: 50%;
  }

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

  .flow__box {
    padding: 5px 20px 10px 110px;
    text-align: left;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.1);
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flow__step {
    font-size: 1.4rem;
    margin: 0;
  }

  .flow__text {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

/* --------------------------------------------------------------------------
   資料CTA
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 0 0 70px 0;
  background-color: var(--color-white);
}

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

.cta-box__title {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 60px 0 20px;
  line-height: 1.4;
}

.cta-box__inner {
  background: linear-gradient(0deg, #f6845c 0%, #F89D78 100%);
  border-radius: 10px;
  padding: 25px 60px;
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 767px) {
  .cta-box__inner {
    flex-direction: column; 
    align-items:center;
    text-align: left;
    gap: 30px;
    padding: 30px 30px;
  }
  .cta-box__title {
  font-size: 1.6rem;
  margin-top:0;
}
}

.cta-box__img {
  justify-content:center;
  width: 300px;
  height: auto;
}


.cta-box__img img {
  display: block;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.15));
}

.cta-box__content {
  flex: 0 1 auto;
  text-align: left;
}

.cta-box__head {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  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;
  background-color:var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.c-btn--cta:hover {
  opacity:0.8;
}

.c-btn--cta:active {
  opacity: 0.8;
  transform: translateY(2px);
}

 @media (max-width: 767px) {
  .c-btn--cta {
    width:100%;
    padding: 6px 10px;
    font-size: 1.4rem;
    text-align: center;
  }
  .cta-box__head {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  .cta-box__list li {
    font-size: 1.4rem;
    margin:2px 0;
  }
  .cta-box__img {
    width: 100%;       /* 幅をいっぱいにする */
    max-width: 250px;  /* そのうえで最大サイズを制限 */
    margin: 0 auto;    /* 外側の余白を自動にして中央へ */
    display: flex;
    justify-content: center;
  }
  .cta-box__img img {
    margin: 0 auto;
  }
 }

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

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

.logo-display {
  padding: 80px 0 0 0;
}

.logo-display__box {
  border: 3.5px solid #dfdfdf;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px;
  border-radius: 15px;
  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:1.8rem;
    line-height:2.4rem;
  }
}

.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-top: 60px;
  }
  .logo-display__box {
    padding: 20px 20px;
    width: 92%; 
  }
}

/* --------------------------------------------------------------------------
   よくある質問
   -------------------------------------------------------------------------- */
.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 {
    padding-bottom: 20px; 
  }
  .faq-question {
    font-size: 1.4rem;
    padding-left: 3em; 
  }
  .faq-answer {
    padding-left: 3.2em;
    font-size: 1.2rem;
  }
  .u-text-accent {
    font-size: 1.4rem;
  }
  .faq-question::before, 
  .faq-answer::before {
    left: 0.8em; 
  }
}

/* --------------------------------------------------------------------------
   お気軽にお問い合わせください
   -------------------------------------------------------------------------- */
.consultation {
  padding: 0 0 60px 0;
  background-color:var(--color-bg-light);
  overflow: hidden;
}

.consultation__inner {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(0deg, #f6845c 0%, #F89D78 100%);
  border-radius: 999px;
  
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 0 40px;
  color: #fff;
}

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

.consultation__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.consultation__text {
  font-size: 15px;
  line-height: 1.6;
}

.c-btn--consultation {
  color: var(--color-primary);
  background: #fff !important;
  margin-top: 20px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.c-btn--consultation:hover {
  opacity: 0.9;
  transition: all 0.3s;
}

.c-btn--consultation:active {
  opacity: 0.9;
  transform: translateY(2px);
}

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

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

.consultation__img--left {
  margin-right: 20px;
}

.consultation__img--right {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .consultation__inner {
    width: 90%;
    border-radius: 20px;
    padding: 20px 20px;
    flex-direction: column;
    align-items: center;
  }

  .consultation__img--left,
  .consultation__img--right {
    display: none; /* イラストを消す場合 */
  }

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

  .consultation__title {
    font-size: 1.8rem;
  }
  
  .consultation__text {
    font-size: 1.4rem;
  }

  .c-btn--consultation {
    padding: 4px 12px;
    font-size: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   資料請求バナー
   -------------------------------------------------------------------------- */
.contact { 
  padding: 80px 0; 
  background: var(--color-bg-light); 
}

.contact-info {
  max-width: 1100px;
  margin: 0 auto 40px;
  background-image: url("bpo-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 2px 2px 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: 1.8rem;
  }

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

  .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__row,
.reasons__grid,
.voice__list,
.flow__list {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.benefits__row.is-active,
.reasons__grid.is-active,
.voice__list.is-active,
.flow__list.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
}

body:not(.has-nobg) {
  background: none;
}