@charset "UTF-8";
/* =========================================
   variables
   - 色 / フォントサイズ / スペーシング / ブレイクポイント
   ========================================= */
/* ----- Color ----- */
/* ----- Typography ----- */
/* ----- Layout ----- */
/* ----- Breakpoints (max-width) ----- */
/* =========================================
   mixins
   - メディアクエリ / 共通パターン
   ========================================= */
/* ----- Media Query（max-width）----- */
/* PCサイズを明示したい時用（任意） */
/* ----- 共通：中央揃えコンテナ ----- */
/* ----- 共通：グラデーションテキスト ----- */
/* ----- 共通：ボタンスタイル（BEMのElementにも使用可）----- */
/* グラデーションボタン */
/* =========================================
   reset
   - ざっくり目のCSSリセット
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

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

button,
input,
textarea,
select {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(section) {
  /* sectionの上下余白は style.scss で上書き制御 */
  margin: 0;
}

/* =========================================
   Global Base
   ========================================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", sans-serif;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.7;
  color: #000000;
  background-color: #FFFFFF;
  font-family: "Pretendard JP", "Noto Sans JP", sans-serif;
}

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

/* 共通コンテナ（通常） */
.l-container {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/* お問い合わせ用コンテナ */
.l-container--contact {
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/* section 共通余白 */
.section {
  padding-block: 80px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .section {
    padding-block: 60px;
    overflow: hidden;
  }
}
@media (max-width: 468px) {
  .section {
    padding-block: 40px;
  }
}

.half-section {
  padding-block: 40px;
}
@media (max-width: 768px) {
  .half-section {
    padding-block: 30px;
  }
}
@media (max-width: 468px) {
  .half-section {
    padding-block: 20px;
  }
}

br.sp_br {
  display: none !important;
}
@media (max-width: 468px) {
  br.sp_br {
    display: block !important;
  }
}
br.pc_br {
  display: block !important;
}
@media (max-width: 468px) {
  br.pc_br {
    display: none !important;
  }
}

/* タイトル（h2） */
h2,
.c-section__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  line-height: 1.3;
}

/* CTAボタン例（BEM） */
.c-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-image: linear-gradient(to right, #F9532D, #C5242E);
  color: #fff;
}
.c-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-header {
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  /* --------------------------
      ロゴ ＋ タグライン
  -------------------------- */
  /* PCロゴ / SPロゴの切り替え */
  /* CTA */
  /* --------------------------
      Tablet（〜1024px）
  -------------------------- */
  /* --------------------------
      SP（〜768px）
  -------------------------- */
}
.site-header__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 13px;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* PCは横並び用に一旦戻す */
}
@media (min-width: calc(768px + 1px)) {
  .site-header__brand {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.site-header__logoImg {
  display: block;
  width: auto;
}
.site-header__logoImg--pc {
  display: block;
  max-width: 338px;
}
.site-header__logoImg--sp {
  display: none;
}
.site-header__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-image: linear-gradient(to right, #F9532D, #C5242E);
  color: #fff;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 9px;
}
.site-header__ctaBtn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 1440px) {
  .site-header {
    /* --- PCロゴ → 非表示  --- */
    /* --- SPロゴ → 表示 --- */
    /* タグラインはロゴの下に */
    /* CTAボタンは右側のまま */
  }
  .site-header__inner {
    gap: 20px;
  }
  .site-header__logoImg--pc {
    display: none;
  }
  .site-header__logoImg--sp {
    display: block;
    width: clamp(8.125rem, 4.204rem + 13.38vw, 10.625rem);
  }
  .site-header__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .site-header__tagline {
    font-size: 13px;
  }
  .site-header__ctaBtn {
    font-size: 15px;
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  .site-header {
    /* ロゴ → 中央揃え */
  }
  .site-header__inner {
    align-items: center;
    gap: 16px;
  }
  .site-header__brand {
    align-items: center;
  }
  .site-header__tagline {
    white-space: normal;
    text-align: center;
  }
  .site-header__ctaBtn {
    width: 100%;
    text-align: center;
    padding: 12px clamp(0.375rem, -2.174rem + 8.7vw, 2rem);
    font-size: clamp(0.813rem, 0.518rem + 1vw, 1rem);
  }
}

/* =========================================
   Clients (logo slider 2 rows)
   ========================================= */
.clients {
  background-color: #fff;
  /* 1段分のコンテナ（横スクロール用） */
  /* ロゴのレーン（ul） */
  /* ロゴ1つぶん */
}
.clients__row {
  display: flex;
  overflow: hidden;
}
.clients__row--top {
  height: 80px;
  margin-block: 15px;
}
@media (max-width: 768px) {
  .clients__row--top {
    height: 55px;
    margin-block: 10px;
  }
}
.clients__row--top .clients__track:first-child {
  animation: clients-loop-top-1 70s linear -35s infinite;
}
.clients__row--top .clients__track:last-child {
  animation: clients-loop-top-2 70s linear 0s infinite;
}
.clients__row--bottom {
  height: 110px;
}
@media screen and (max-width: 768px) {
  .clients__row--bottom {
    height: 55px;
  }
}
.clients__row--bottom .clients__track:first-child {
  animation: clients-loop-bottom-1 70s linear -35s infinite;
}
.clients__row--bottom .clients__track:last-child {
  animation: clients-loop-bottom-2 70s linear 0s infinite;
}
.clients__track {
  display: flex;
  will-change: transform;
}
.clients__item {
  min-width: 150px;
  height: auto;
  margin: auto 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .clients__item {
    min-width: 75px;
    margin: auto 0 auto 28px;
  }
}
.clients__logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 80px;
}
@media (max-width: 468px) {
  .clients__logo {
    width: 75px;
    -o-object-fit: contain;
       object-fit: contain;
    height: 45px;
  }
}

/* =========================================
   Keyframes (元CSSと同じ動き)
   ========================================= */
/* 上段：左方向 */
@keyframes clients-loop-top-1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes clients-loop-top-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* 下段：右方向（逆向き） */
@keyframes clients-loop-bottom-1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes clients-loop-bottom-2 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================================
   ABOUT Section
   ========================================= */
.about {
  padding-block: 80px;
  /* ---------- ロゴ行共通 ---------- */
  /* 「公式パートナー」ラベル */
  /* SPでは下段を縦寄せに近いバランスに */
}
@media (max-width: 768px) {
  .about {
    padding-block: 60px;
  }
}
@media (max-width: 468px) {
  .about {
    padding-block: 40px;
  }
}
.about__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  text-align: center;
}
.about__header {
  margin-bottom: 40px;
}
@media (max-width: 468px) {
  .about__header {
    margin-bottom: 28px;
  }
}
.about__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 16px;
}
.about__lead {
  line-height: 1.9;
}
.about__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
}
.about__logos--top {
  margin-bottom: 50px;
}
.about__logos--bottom {
  gap: 32px;
}
@media (max-width: 768px) {
  .about__logos {
    gap: 28px;
  }
}
@media (max-width: 468px) {
  .about__logos {
    gap: clamp(0.625rem, -0.35rem + 3.33vw, 1.25rem);
  }
}
.about__logoItem {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 142px;
}
@media (max-width: 468px) {
  .about__logoItem {
    max-width: 100px;
  }
}
@media (max-width: 468px) {
  .about__logoItem:nth-child(1) {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about__logoItem:nth-child(1) .about__logoImg {
    width: clamp(4.563rem, -0.02rem + 15.67vw, 7.5rem);
  }
}
.about__logoItem--partner {
  max-width: 170px;
}
@media (max-width: 468px) {
  .about__logoItem--partner {
    max-width: 150px;
  }
}
.about__logoImg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 468px) {
  .about__partner {
    width: 100%;
  }
}
.about__partnerLabel {
  border: 1px solid #000;
  padding: 8px 18px;
  font-size: 13px;
  white-space: nowrap;
  margin-right: 12px;
}
@media (max-width: 468px) {
  .about__partnerLabel {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
  }
}
@media (max-width: 468px) {
  .about__logos--bottom {
    flex-direction: row;
    justify-content: center;
  }
}

/* =========================================
   Charm of Korean Visitors
   ========================================= */
.charm {
  overflow: hidden;
  /* 見出しブロック */
  /* 行レイアウト */
  /* =========================
      グレー背景パネル
      - コンテナ外まで背景を伸ばす
      ========================= */
  /* グラフ画像側 */
  /* SPでは全体を縦並びに */
}
.charm__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.charm__header {
  text-align: left;
  margin-bottom: 72px;
}
@media (max-width: 468px) {
  .charm__header {
    margin-bottom: 24px;
  }
}
.charm__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-size: 44px;
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 12px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.charm__title::before {
  position: absolute;
  content: "";
  background-color: #F9532D;
  height: 1px;
  width: 60vw;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(110%);
  right: 0;
}
.charm__intro {
  line-height: 27px;
}
.charm__row {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.charm__row--top {
  margin-bottom: 40px;
}
.charm__row--bottom {
  margin-top: 20px;
}
@media (max-width: 468px) {
  .charm__row--bottom.charm__row--bottom {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .charm__row {
    gap: 28px;
  }
}
@media (max-width: 468px) {
  .charm__row {
    flex-direction: column;
    gap: 20px;
  }
}
.charm__panel {
  flex: 1 1 0;
  position: relative;
  z-index: 0; /* ::before を背面に */
  display: flex;
  align-items: center;
  /* 背景を100vwに広げる */
  /* 2段目で右側に置く用（必要なら） */
}
.charm__panel::before {
  content: "";
  position: absolute;
  left: 40%;
  transform: translateX(-60%);
  width: clamp(56.25rem, 31.688rem + 37.36vw, 64.375rem);
  background-color: #F7F7F7;
  z-index: -1;
  border-radius: 0 15px 15px 0;
  height: 328px;
}
@media (max-width: 768px) {
  .charm__panel::before {
    height: clamp(16.125rem, 9.3rem + 23.33vw, 20.5rem);
  }
}
.charm__panel--right {
  justify-content: flex-start;
  /* 背景を100vwに広げる */
}
.charm__panel--right::before {
  content: "";
  position: absolute;
  right: 40%;
  left: inherit;
  transform: translateX(60%);
  width: clamp(56.25rem, 31.688rem + 37.36vw, 64.375rem);
  background-color: #F7F7F7;
  z-index: -1;
  border-radius: 15px 0 0 15px;
  height: 285px;
}
@media (max-width: 768px) {
  .charm__panel--right::before {
    height: clamp(15.938rem, 13.012rem + 10vw, 17.813rem);
  }
}
.charm__panel--right .charm__panelInner {
  padding: 32px 0 32px clamp(0.625rem, -6.932rem + 11.49vw, 3.125rem);
}
@media (max-width: 468px) {
  .charm__panel--right .charm__panelInner {
    padding: 32px 0;
  }
}
.charm__panelInner {
  padding: 32px 0 32px 0;
}
@media (max-width: 768px) {
  .charm__panelInner {
    padding: 24px 28px;
  }
}
@media (max-width: 468px) {
  .charm__panelInner {
    padding: 20px 0;
    letter-spacing: -1px;
  }
}
.charm__heading {
  font-size: clamp(1.375rem, 0.929rem + 0.93vw, 1.625rem);
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 16px;
}
.charm__heading-em {
  color: #F9532D;
  font-weight: 700;
}
.charm__text {
  line-height: 27px;
  margin-bottom: 12px;
}
@media (max-width: 468px) {
  .charm__text {
    line-height: 23px;
    font-size: 17px;
  }
}
.charm__source {
  font-size: 12px;
}
.charm__source a {
  text-decoration: underline;
}
.charm__figure {
  flex: 0 0 clamp(25rem, 18.309rem + 13.92vw, 28.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .charm__figure {
    flex-basis: 300px;
  }
}
@media (max-width: 468px) {
  .charm__figure {
    flex-basis: auto;
  }
}
.charm__image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 468px) {
  .charm__header {
    text-align: left;
  }
  .charm__figure {
    justify-content: center;
  }
}

/* =========================================
   Problem Section
   ========================================= */
.problem {
  /* ---- カード群 ---- */
  /* ---- 下部のオレンジ帯 ---- */
}
.problem__wrap {
  overflow: hidden;
}
.problem__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  text-align: center;
}
.problem__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: clamp(2.625rem, 0.34rem + 4.75vw, 4.5rem);
  color: #000000;
  text-align: left;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.problem__title::before {
  position: absolute;
  content: "";
  background-color: #000000;
  height: 1px;
  width: 60vw;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(110%);
  right: 0;
}
.problem__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .problem__cards {
    grid-template-columns: auto;
  }
}
.problem__cards::before {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/problem/icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 30px;
}
@media (max-width: 468px) {
  .problem__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.problem__card {
  background: #525252;
  color: #fff;
  border-radius: 10px;
  padding: clamp(1.25rem, 0.641rem + 1.27vw, 1.75rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.641rem + 1.27vw, 1.75rem);
}
@media (max-width: 468px) {
  .problem__card {
    padding: 20px;
    gap: 12px;
  }
}
.problem__icon {
  width: 36px;
  height: auto;
}
@media (max-width: 468px) {
  .problem__icon {
    width: 28px;
  }
}
.problem__texts {
  text-align: left;
}
.problem__cardTitle {
  font-size: clamp(1.125rem, 0.668rem + 0.95vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 468px) {
  .problem__cardTitle {
    font-size: 16px;
  }
}
.problem__cardText {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  opacity: 0.9;
  line-height: 1.7;
}
.problem__bottom {
  background-color: #F9532D;
  color: #fff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: clamp(1.125rem, 0.937rem + 0.64vw, 1.5rem);
  font-weight: 700;
  margin-top: 24px;
  line-height: 1.6;
}
.problem__bottom br {
  display: none;
}
@media (max-width: 768px) {
  .problem__bottom br {
    display: block;
  }
}
@media (max-width: 468px) {
  .problem__bottom {
    font-size: 17px;
    padding: 8px 14px;
    width: 100%;
  }
}

/* =========================================
   CREATIP 5つのポイント
   ========================================= */
.points {
  background-color: #F7F7F7;
  margin-top: 80px;
  /* ----------------------------
     上段（2カラム） / 下段（3カラム）
     ---------------------------- */
  /* ---- 共通ボックス ---- */
  /* ---- 文章関連 ---- */
  /* ---- 上段の画像 ---- */
}
@media (max-width: 468px) {
  .points {
    background-color: #FFFFFF;
    margin-top: 0;
  }
}
.points__spTitle {
  display: none;
}
@media (max-width: 468px) {
  .points__spTitle {
    display: flex;
    margin-bottom: 10px;
    background-color: #F9532D;
    color: #FFFFFF;
    padding: 5px 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
    font-size: 15px;
  }
}
.points__wrap {
  margin-top: -135px;
  overflow: hidden;
}
@media (max-width: 468px) {
  .points__wrap {
    margin-top: 0;
  }
}
.points__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.points__header {
  margin-bottom: 48px;
  text-align: left;
}
.points__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: #F9532D;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.points__title::before {
  position: absolute;
  content: "";
  background-color: #F9532D;
  height: 1px;
  width: 70vw;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(110%);
  right: 0;
}
.points__subtitle {
  font-size: 16px;
  margin-top: 12px;
}
.points__row {
  display: grid;
  gap: 20px;
}
.points__row--top {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .points__row--top {
    grid-template-columns: 1fr;
  }
}
.points__row--bottom {
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .points__row--bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.625rem, -1.325rem + 6.67vw, 1.875rem);
  }
}
@media (max-width: 468px) {
  .points__row--bottom {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
}
.points__item {
  background: #fff;
  padding: 26px 12px 12px;
  position: relative;
}
.points__item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: #F9532D;
  top: 0;
  right: 0;
}
.points__item::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 4px;
  background-color: #F9532D;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .points__item {
    padding: 28px 22px;
  }
}
@media (max-width: 468px) {
  .points__item {
    padding: 24px 16px;
  }
}
.points__item--top {
  /* 上段は画像あり → 下余白広め */
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 468px) {
  .points__item--top {
    padding: 22px 18px 0;
  }
}
.points__item--bottom {
  /* 下段は画像なし → paddingそのまま */
}
.points__item--bottom .points__itemTitle {
  font-size: clamp(1.125rem, 0.82rem + 0.63vw, 1.375rem);
}
@media (max-width: 468px) {
  .points__item--bottom .points__itemTitle {
    font-size: 22px;
  }
}
.points__itemTitle {
  font-size: clamp(1.125rem, 0.668rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #F9532D;
}
@media (max-width: 468px) {
  .points__itemTitle {
    font-size: 24px;
    line-height: 29px;
  }
}
.points__text {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 20px;
}
.points__image {
  margin-top: 8px;
  margin-top: auto;
}
.points__img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-banner {
  width: 100%;
  position: relative;
  background: #000;
  /* 左60%に画像 */
  background-image: url("../images/main/kv-panel.jpg");
  background-repeat: no-repeat;
  background-size: 60% auto;
  background-position: left center;
  padding-block: 60px;
  /* ★ 画像右端を黒背景へフェードさせるオーバーレイ */
  /* TAB/SP */
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 90%);
}
@media (max-width: 768px) {
  .cta-banner {
    background-size: cover;
    background-position: center;
    padding-block: 48px;
  }
  .cta-banner::after {
    background: rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 468px) {
  .cta-banner {
    padding-block: 40px;
  }
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.cta-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cta-banner__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
.cta-banner__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-banner__text {
    font-size: 20px;
  }
}
@media (max-width: 468px) {
  .cta-banner__text {
    font-size: 17px;
  }
}
.cta-banner__btn {
  background: linear-gradient(to right, #F9532D, #C5242E);
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-size: 120%;
  background-position: left center;
}
.cta-banner__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  background-position: right center;
}

/* =========================================
   Services
   ========================================= */
.services {
  background-color: #F7F7F7;
  margin-top: 80px;
  /* --------- リスト全体 --------- */
  /* --------- 各行 --------- */
  /* --------- 左のタイムライン＋円 --------- */
  /* 縦のライン（各アイテム内） */
  /* グラデーション円 */
  /* --------- 右側の白カード --------- */
}
@media (max-width: 468px) {
  .services {
    margin-top: 0;
  }
}
.services__wrap {
  margin-top: -107px;
  overflow: hidden;
}
@media (max-width: 468px) {
  .services__wrap {
    margin-top: 0;
  }
}
.services__inner {
  position: relative;
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.services__inner::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  background-color: #F9532D;
  bottom: -80px;
  left: clamp(8.125rem, 4.85rem + 6.81vw, 10.813rem);
  z-index: 1;
}
@media (max-width: 468px) {
  .services__inner::before {
    left: 50px;
  }
}
@media (max-width: 468px) {
  .services__inner {
    padding-inline: 0;
  }
}
.services__header {
  margin-bottom: 40px;
}
@media (max-width: 468px) {
  .services__header {
    padding-inline: 20px;
  }
}
.services__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 8px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.services__title::before {
  position: absolute;
  content: "";
  background-color: #F9532D;
  height: 1px;
  width: 70vw;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(110%);
  right: 0;
}
.services__lead {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.8;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 468px) {
  .services__list {
    gap: 24px;
  }
}
.services__item {
  display: flex;
  align-items: stretch;
  gap: clamp(2rem, -1.504rem + 7.29vw, 4.875rem);
  background-color: #fff;
  border-radius: 32px;
  padding: 28px clamp(2rem, -1.504rem + 7.29vw, 4.875rem);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .services__item {
    gap: 24px;
    padding: 28px clamp(0.625rem, -1.52rem + 7.33vw, 2rem);
  }
}
@media (max-width: 468px) {
  .services__item {
    gap: 10px;
  }
}
.services__timeline {
  position: relative;
  width: 200px;
  display: flex;
  justify-content: center;
}
@media (max-width: 468px) {
  .services__timeline {
    width: 100%;
    justify-content: flex-start;
  }
}
.services__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 468px) {
  .services__line {
    display: none;
  }
}
.services__circle {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-image: linear-gradient(to right, #F9532D, #C5242E);
  display: flex;
  flex-direction: column; /* 上：テキスト、下：アイコン */
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .services__circle {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 468px) {
  .services__circle {
    width: 75px;
    height: 75px;
    margin-left: 0;
    padding: 0;
  }
}
.services__circleLabel {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (max-width: 468px) {
  .services__circleLabel {
    font-size: 8px;
    margin-bottom: 3px;
  }
}
.services__circleIcon {
  width: 40px;
  height: auto;
}
@media (max-width: 768px) {
  .services__circleIcon {
    width: 36px;
  }
}
@media (max-width: 468px) {
  .services__circleIcon {
    width: 19px;
  }
}
.services__body {
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .services__body {
    padding: 24px 26px;
  }
}
@media (max-width: 468px) {
  .services__body {
    padding: 0;
  }
}
.services__heading {
  font-size: 18px;
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 7px;
  padding-bottom: 7px;
  line-height: 1.7;
  border-bottom: 1px solid #F9532D;
}
@media (max-width: 468px) {
  .services__heading {
    font-size: 19px;
    line-height: 29px;
  }
}
.services__text {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.9;
}

/* =========================================
   フルワイド グラデーションバナー
   ========================================= */
.fullbanner {
  width: 100%;
  background: linear-gradient(to right, #F9532D, #C5242E);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  /* 左のshape */
  /* 右のshape */
}
@media (max-width: 468px) {
  .fullbanner {
    padding: 26px 0;
  }
}
.fullbanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: url("../images/services/shape.png") no-repeat left center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}
.fullbanner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: url("../images/services/shape.png") no-repeat right center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}
.fullbanner__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
}
.fullbanner__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #FFFFFF;
}
@media (max-width: 468px) {
  .fullbanner__title {
    font-size: 28px;
    line-height: 1.5;
  }
}
.fullbanner__text {
  font-size: clamp(1rem, 0.695rem + 0.63vw, 1.25rem);
  line-height: 1.9;
}
@media (max-width: 468px) {
  .fullbanner__text {
    font-size: 17px;
    line-height: 24px;
  }
}

/* =========================================
   FLOW（ご利用のながれ）
   ========================================= */
.flow {
  background-color: #F7F7F7;
  border-top: 1px solid #F9532D;
  /* --- ステップリスト --- */
  /* --- 各ステップカード --- */
}
.flow__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.flow__header {
  margin-bottom: 32px;
}
.flow__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 8px;
}
.flow__subtitle {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
}
.flow__list {
  display: flex;
  gap: 32px 32px;
  flex-wrap: wrap;
}
@media (max-width: 468px) {
  .flow__list {
    flex-direction: column;
    gap: 20px;
  }
}
.flow__step {
  position: relative;
  background-color: #fff;
  border: 1px solid #F9532D;
  padding: 20px 22px;
  box-sizing: border-box;
  min-height: 160px;
  width: 30.4%;
  /* カード間の「…」 */
}
.flow__step:nth-child(4) {
  margin-left: 25px;
}
.flow__step:nth-child(4)::before {
  content: "…";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: #F9532D;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 468px) {
  .flow__step:nth-child(4)::before {
    content: none;
  }
}
@media (max-width: 468px) {
  .flow__step:nth-child(4) {
    margin-left: 0;
  }
}
.flow__step:nth-child(6)::after {
  content: none;
}
.flow__step::after {
  content: "…";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: #F9532D;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 768px) {
  .flow__step {
    /* 2列時は 2 の倍数で右端リセット */
  }
  .flow__step:nth-child(3n)::after {
    content: "…";
  }
  .flow__step:nth-child(2n)::after {
    content: none;
  }
}
@media (max-width: 468px) {
  .flow__step {
    width: 100%;
    padding: 12px;
  }
  .flow__step::after {
    content: none;
  }
  .flow__step:nth-child(3n)::after {
    content: none;
  }
  .flow__step:nth-child(2n)::after {
    content: none;
  }
}
.flow__stepHead {
  margin-bottom: 10px;
}
.flow__stepLabel {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F9532D;
  color: #fff;
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
}
.flow__stepText {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.8;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  /* 左カラム */
  /* 右カラム */
  /* --------- 各質問ボックス --------- */
  /* 質問部分（クリックエリア） */
  /* ＋／－アイコン */
  /* 答え部分 */
}
.faq__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .faq__inner {
    gap: 32px;
  }
}
@media (max-width: 468px) {
  .faq__inner {
    flex-direction: column;
    gap: 24px;
  }
}
.faq__side {
  flex: 0 0 180px;
  padding-top: 16px;
}
@media (max-width: 468px) {
  .faq__side {
    flex-basis: auto;
    padding-top: 0;
  }
}
.faq__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 8px;
}
.faq__subtitle {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
}
.faq__content {
  position: relative;
  flex: 1 1 auto;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background-color: #fff;
  position: relative;
  padding: 20px 24px;
  border: 1px solid #CACACA;
}
@media (max-width: 468px) {
  .faq__item {
    padding: 10px;
    border: 1px solid #CACACA;
  }
}
.faq__item--open {
  border-color: #CACACA;
}
.faq__item--open .faq__answer {
  display: block;
}
.faq__item--open .faq__toggle::after {
  opacity: 0;
}
.faq__item--open .faq__qText {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.faq__item--open .faq__qLabel {
  padding-bottom: 10px;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.faq__qLabel {
  font-weight: 700;
  font-size: 18px;
}
.faq__qText {
  flex: 1 1 auto;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  font-weight: 700;
}
.faq__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: -10px;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  display: none;
}
.faq__answerInner {
  padding: 10px 0 0 0;
  display: flex;
  gap: 16px;
}
.faq__aLabel {
  font-weight: 700;
  font-size: 18px;
  color: #F9532D;
}
.faq__aText {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.9;
}
@media (max-width: 468px) {
  .faq__aText {
    line-height: 24px;
  }
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background-color: #f7f7f7;
  /* 青い丸バッジ */
}
.contact__inner {
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  position: relative;
}
.contact__header {
  margin-bottom: 32px;
}
.contact__title {
  font-size: clamp(1.875rem, 0.314rem + 3.25vw, 2.75rem);
  font-weight: 700;
  color: #F9532D;
  margin-bottom: 8px;
}
.contact__lead {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.7;
}
.contact__badge {
  position: absolute;
  right: 40px;
  top: 190px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #2864f0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media (max-width: 468px) {
  .contact__badge {
    right: 16px;
    top: auto;
    bottom: 220px;
  }
}

/* =========================================
   Contact Form
   ========================================= */
.contact-form {
  margin-top: 24px;
  /* input / textarea / select 共通 */
  /* セレクトラッパー＋▼アイコン */
  /* プライバシー部分 */
  /* 送信ボタン */
}
.contact-form__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.contact-form__row--textarea {
  align-items: flex-start;
}
@media (max-width: 468px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact-form__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 468px) {
  .contact-form__label {
    margin-bottom: 4px;
  }
}
.contact-form__labelText {
  display: inline-block;
}
@media (max-width: 468px) {
  .contact-form__labelText {
    font-weight: 400;
  }
}
.contact-form__required {
  color: #F9532D;
  margin-left: 2px;
}
.contact-form__field {
  width: 100%;
}
.contact-form__control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.5;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form__control::-moz-placeholder {
  color: #c0c0c0;
}
.contact-form__control::placeholder {
  color: #c0c0c0;
}
.contact-form__control:focus {
  outline: none;
  border-color: #F9532D;
}
.contact-form__control--textarea {
  resize: vertical;
  min-height: 180px;
}
.contact-form__control--select {
  padding-right: 32px;
  cursor: pointer;
}
.contact-form__selectWrap {
  position: relative;
}
.contact-form__selectArrow {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form__privacy {
  margin-top: 24px;
  margin-bottom: 24px;
}
.contact-form__privacyText {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 468px) {
  .contact-form__privacyText {
    line-height: 16px;
  }
}
.contact-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.contact-form__checkbox {
  width: 16px;
  height: 16px;
}
.contact-form__agreeLabel {
  font-size: 13px;
}
.contact-form__submit {
  text-align: center;
  margin-top: 12px;
}
.contact-form__submitBtn {
  min-width: 260px;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  background-image: linear-gradient(to right, #F9532D, #C5242E);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}
.contact-form__submitBtn:hover {
  opacity: 0.92;
}

.footer {
  background-color: #4f4f4f;
  padding-block: 40px;
  color: #fff;
  font-size: 13px;
}
.footer__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  text-align: center;
}
.footer__cols {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 28px;
}
@media (max-width: 468px) {
  .footer__cols {
    flex-direction: column;
    gap: 32px;
    text-align: left;
  }
}
.footer__col {
  text-align: left;
}
.footer__col-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.footer__col-text {
  line-height: 1.6;
  margin-bottom: 4px;
}
.footer__copy {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 12px;
}

/* =========================================
   Main Visual
   ========================================= */
.mv {
  display: flex;
  width: 100%;
  min-height: 464px;
  overflow: hidden;
  background-color: #000;
  margin-top: 80px;
  /* ---------- 左側：黒＋背景画像 ---------- */
  /* ---------- 右側：白背景＋ポイント風ボックス ---------- */
  /* 外枠パネル（points に近いデザイン） */
  /* 各ポイント */
}
@media (max-width: 768px) {
  .mv {
    flex-direction: column;
    max-height: none;
    margin-top: 72px;
  }
}
.mv__left {
  flex: 0 0 60%;
  position: relative;
  background-color: #000;
  background-image: url("../images/main/kv-panel.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .mv__left {
    flex-basis: auto;
    min-height: 260px;
  }
}
.mv__leftInner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  padding-block: 48px;
}
@media (max-width: 768px) {
  .mv__leftInner {
    padding-block: 40px;
  }
}
@media (max-width: 468px) {
  .mv__leftInner {
    padding-block: 32px;
    margin: 0;
  }
}
.mv__eyebrow {
  font-size: clamp(0.875rem, 0.119rem + 1.15vw, 1.125rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.mv__title {
  font-size: clamp(1.625rem, -0.453rem + 3.16vw, 2.313rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.mv__title span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 140%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
}
.mv__title span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}
.mv__title span.row {
  overflow: hidden;
  line-height: 1;
  display: block;
  transform: none;
  margin-bottom: 10px;
}
.mv__title span.row:before {
  display: none;
}
.mv__title .animate {
  transform: translate(0, 0);
}
.mv__title .animate:before {
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .mv__title {
    font-size: 28px;
  }
}
@media (max-width: 468px) {
  .mv__title {
    font-size: 24px;
  }
}
.mv__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mv__btn {
  display: inline-block;
  background: linear-gradient(to right, #F9532D, #C5242E);
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-size: 120%;
  background-position: left center;
}
.mv__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  background-position: right center;
}
.mv__right {
  flex: 0 0 40%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0 40px;
  margin-left: -100px;
}
@media (max-width: 768px) {
  .mv__right {
    flex-basis: auto;
    padding: 32px 20px 40px;
    justify-content: flex-start;
  }
}
@media (max-width: 468px) {
  .mv__right {
    padding-inline: 16px;
    margin-left: 0;
    padding: 0;
  }
}
.mv__panel {
  width: 100%;
  max-width: 562px;
  background-color: #fff;
  padding: 28px 24px;
  box-sizing: border-box;
  position: relative;
  width: clamp(28.875rem, 9.981rem + 28.74vw, 35.125rem);
}
.mv__panel::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background-color: #F9532D;
  top: 0;
  right: 0;
}
.mv__panel::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 4px;
  background-color: #F9532D;
  top: -4px;
  right: 0;
}
@media (max-width: 468px) {
  .mv__panel {
    padding: 24px 18px;
  }
}
.mv__panelInner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mv__feature {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mv__featureLogo {
  flex: 0 0 clamp(5rem, 1.953rem + 6.34vw, 7.5rem);
}
@media (max-width: 768px) {
  .mv__featureLogo {
    flex: 0 0 clamp(3.75rem, 1.8rem + 6.67vw, 5rem);
  }
}
.mv__featureLogo img {
  display: block;
  width: 100%;
  height: auto;
}
.mv__featureBody {
  flex: 1 1 auto;
}
.mv__featureTitle {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .mv__featureTitle {
    font-size: clamp(0.688rem, 0.492rem + 0.67vw, 0.813rem);
  }
}
.mv__featureLabel {
  display: inline-block;
  padding: 4px 10px;
  font-size: clamp(1rem, 0.695rem + 0.63vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  background-color: #F9532D;
  line-height: 1.4;
  margin-right: 10px;
}

.fade-up-target {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}
.fade-up-target.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left-target {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}
.fade-left-target.is-show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right-target {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease-out;
}
.fade-right-target.is-show {
  opacity: 1;
  transform: translateX(0);
}/*# sourceMappingURL=style.css.map */