@charset "UTF-8";


/* =========================
layout
========================= */

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
  position: relative;
}


.container-narrow {
  width: min(90%, 900px);
  margin-inline: auto;
}


/* =========================
header
========================= */
.header {
  width: 100%;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
logo
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

.logo-image {
  width: min(21.8vw, 290px);/*/1333*/
}



/* =========================
nav
========================= */
.nav {

}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--size-32);
  line-height: 1;
}

.nav-item a {
  font-weight: 500;
  font-size: var(--font-17);
}

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

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(36px, 3.6vw, 48px);
  padding-inline: var(--space-30);
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}


/* =========================================================
   SP toggle menu (drawer / 920px以下)
   ========================================================= */

/* SPメニューのコンテナはPCでは非表示 */
.sp-nav-box {
  display: none;
}

/* =========================================================
   920px以下：PCナビを隠してトグルメニューを表示
   ========================================================= */
@media screen and (max-width: 920px) {

  /* PCナビを非表示 */
  .nav {
    display: none;
  }

  .header {
    position: relative;
    padding: 16px 0;
  }

  .logo-image {
    width: 220px;
  }

  /* SPメニューのコンテナを表示 */
  .sp-nav-box {
    display: block;
  }

  /* ---------- ハンバーガーボタン ---------- */
  .hamburger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 320;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    padding: 0;

    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
            appearance: none;
  }

  .hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--color-primary);
    transition: transform .4s cubic-bezier(.4,.01,.16,1),
                opacity .3s ease,
                background-color .4s ease,
                width .3s ease;
  }

  .hamburger-line + .hamburger-line {
    margin-top: 6px;
  }

  .hamburger-text {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    color: var(--color-primary);
    transition: color .4s ease, opacity .3s ease;
    user-select: none;
  }

  /* ---------- ドロワー本体（右からスライドイン） ---------- */
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;

    display: flex;
    flex-direction: column;

    width: min(82vw, 340px);
    height: 100dvh;
    padding: 88px 28px 40px;

    background: #fff;
    box-shadow: -16px 0 40px rgba(24, 37, 61, .12);

    overflow-y: auto;
    overscroll-behavior: contain;

    transform: translateX(100%);
    visibility: hidden;
    transition: transform .55s cubic-bezier(.4,.01,.16,1),
                visibility .55s;
  }

  /* 上部のブランドアクセント帯 */
  .sp-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #3f8fff 100%);
  }

  .sp-nav-head {
    position: absolute;
    top: 30px;
    left: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--color-primary-light);
  }

  /* ---------- メニューリンク ---------- */
  .sp-nav-list {
    display: flex;
    flex-direction: column;
  }

  .sp-nav-item {
    border-bottom: 1px solid var(--color-border);
  }

  .sp-nav-item a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 8px 18px 4px;

    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);

    transition: color .3s ease, padding-left .3s ease;
  }

  /* 右端の矢印 */
  .sp-nav-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 2px solid var(--color-primary-light);
    border-right: 2px solid var(--color-primary-light);
    transform: rotate(45deg);
    transition: border-color .3s ease, right .3s ease;
  }

  .sp-nav-item a:hover,
  .sp-nav-item a:active {
    color: var(--color-primary);
    padding-left: 10px;
  }

  .sp-nav-item a:hover::after,
  .sp-nav-item a:active::after {
    border-color: var(--color-primary);
    right: 2px;
  }

  /* 英語ラベル */
  .sp-nav-en {
    min-width: 64px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--color-primary);
    opacity: .65;
  }

  /* ---------- CTAボタン ---------- */
  .sp-nav-cta {
    margin-top: 28px;
  }

  .sp-nav-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(28, 117, 225, .28);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
  }
  

  

  /* ---------- 背景オーバーレイ ---------- */
  .black-bg {
    position: fixed;
    inset: 0;
    z-index: 290;

    background: rgba(15, 26, 45, .55);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);

    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
    cursor: pointer;
  }

  /* =========================================================
     オープン時の状態
     ========================================================= */
  .nav-open {
    overflow: hidden;
  }

  .nav-open .sp-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-open .black-bg {
    opacity: 1;
    visibility: visible;
  }

  /* メニュー項目を順番にフェードイン */
  .nav-open .sp-nav-item,
  .nav-open .sp-nav-cta {
    animation: spNavIn .5s both;
  }
  .nav-open .sp-nav-item:nth-child(1) { animation-delay: .12s; }
  .nav-open .sp-nav-item:nth-child(2) { animation-delay: .18s; }
  .nav-open .sp-nav-item:nth-child(3) { animation-delay: .24s; }
  .nav-open .sp-nav-item:nth-child(4) { animation-delay: .30s; }
  .nav-open .sp-nav-item:nth-child(5) { animation-delay: .36s; }
  .nav-open .sp-nav-cta  { animation-delay: .42s; }

  @keyframes spNavIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* ハンバーガー → × へ変形（位置は固定のまま） */
  .nav-open .hamburger-line1 {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open .hamburger-line2 {
    width: 0;
    opacity: 0;
  }

  .nav-open .hamburger-line3 {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-open .hamburger-text {
    opacity: 0;
  }
}

/* モーション軽減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .sp-nav,
  .black-bg,
  .hamburger-line,
  .nav-open .sp-nav-item,
  .nav-open .sp-nav-cta {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* =========================
note
========================= */

.note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: var(--font-14);
  color: var(--color-text-sub);
}

.note.--small {}

.note.--red {}

.note.--center {}



.note-list {
  font-size: var(--font-14);
  color: var(--color-text-sub);
}

.note-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.note-list li:not(:first-child) {
  margin-top: 5px;
}


/* =========================
content
========================= */
.content-text {

}

.content-text a{
  color: var(--color-primary);
  text-decoration: underline;
}

.content-text a:hover{
  text-decoration: none;
}






/* =========================
hero
========================= */
.hero-inner {
  display: flex;
  justify-content: space-between;
}

.hero-content {
  flex-shrink: 0;
  margin-top: var(--space-30);
}

.hero-title {
  font-size: var(--font-42);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.hero-text {
  margin-top: 20px;
  font-size: var(--font-17);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  margin-top: var(--space-40);
  justify-content: center;
}


/* =========================
button
========================= */
button {
 cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 16.5vw, 220px);
  height: clamp(40px, 3.8vw, 50px);
  padding-inline: var(--space-32);
  border-radius: 999px;
  font-size: var(--font-16);
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s;
}

.btn-primary {
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);  
}

.btn-outline {
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary)
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}





/* =========================
icon text
========================= */

.icon-text {
  display:flex;
  align-items:center;
  justify-content: center;
  gap:8px;
  margin-top: 10px;
}

.icon-text-icon {
  width:18px;
  height:18px;
  flex-shrink:0;
}


/* =========================
link
========================= */


.text-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 下線の太さ */
  text-underline-offset: 0.2em;    /* 文字と下線の距離 */
}

.text-link:hover {
  text-decoration: none;
}






.arrow-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.arrow-link::before {
  content: "→";
  display: inline-block;
  flex: 0 0 auto;
  width: 1.2em;
  line-height: 1;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  transition: transform 0.2s ease; 
}

.arrow-link:hover {
  opacity: 0.7;
}

.arrow-link:hover::before {
  transform: translate3d(4px, 0, 0);
}




/* =========================
hero image
========================= */

.hero-image {
  width: 700px;
}

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



@media (max-width: 768px) {

  .hero-inner {
    flex-direction: column-reverse;
    gap: var(--space-30);
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }


  .hero-title {
    font-size: var(--font-44);
    text-align: center;
    line-height: 1.6;
  }

  .hero-text {
    margin-top: min(5vw, 24px);
    font-size: min(2.6vw, 20px);
    text-align: center;
  }


  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin: var(--space-40) auto 0;
    width: 90%;
  }
  
  
  
  
  
  
  
  
  

  .btn {
    padding-inline: var(--space-32);
    width: 100%;
    min-width: auto;
    height: min(11.25vw, 54px);
    font-size: var(--font-20);  
  }


}








/* =========================
customer worries
========================= */

.customer-worries {
  margin-top: clamp(28px, 4vw, 58px);
  padding-bottom: 15px;
  overflow: hidden;
}

.customer-worries-inner {
  isolation: isolate;
  width: 100%;
  max-width: none;
}

.customer-worries-panel {
  position: relative;
  z-index: 0;
  width: 100%;
  padding: min(9vw, 120px) 5% min(10.7vw, 142px);
}

.customer-worries-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 140vw;
  border-radius: 50% 50% 0 0 / clamp(150px, 15vw, 230px) clamp(150px, 15vw, 230px) 0 0;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    #f3f8ff 0%,
    #edf5ff 58%,
    #f8fbff 100%
  );
  box-shadow: inset 0 30px 70px rgba(255,255,255,.5);
}


.customer-worries-heading {
  display: flex;
  justify-content: center;
  width: min(60%, 600px);
  margin: 0 auto var(--space-80);
}

.customer-worries-list {
  display: flex;
  flex-direction: column;
  width: min(90%, 900px);
  margin-inline: auto;
  gap: clamp(38px, 4vw, 56px);
}

.customer-worry {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: var(--space-36) var(--space-48);
  column-gap: var(--space-30);
  border: 1px solid rgba(28, 117, 225, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 28px rgba(33, 91, 158, .12);
}

.customer-worry::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 36px;
  height: 27px;
  background: #fff;
  filter: drop-shadow(5px 7px 3px rgba(33, 91, 158, .05));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.customer-worry--left {
  align-self: flex-start;
  margin-left: 2%;
  --reveal-x: -36px;
}

.customer-worry--left::after {
  left: 18%;
}

.customer-worry--right {
  align-self: flex-end;
  margin-right: 1%;
  --reveal-x: 36px;
}

.customer-worry--right::after {
  right: 9%;
  transform: scaleX(-1);
}

.customer-worry-number {
  position: absolute;
  top: 20px;
  left: -23px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #3c91f4, #0968d9);
  box-shadow: 0 6px 14px rgba(20, 105, 210, .28);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.customer-worry-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(60px, 6vw, 80px);
}

.customer-worry-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-worry p {
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.7;
  white-space: nowrap;
}




.customer-give-up,
.customer-wish-list,
.customer-solution {
  width: min(88%, 980px);
  margin-inline: auto;
}



.customer-give-up {
  justify-content: center;
  margin-top: min(6vw, 80px);
  font-size: clamp(25px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  text-align: center;
}


.emphasis {
  color: #ff7100;
  font-weight: bold;
}

.emphasis rt {
  color: #ff7100;
  font-size: clamp(3px, .8vw, 8px); /* ●のサイズ */
  position: relative;
  top: -4px; /* マイナスを大きくすると余白が広がる */
}

/* 「と、諦めていませんか？」専用のスクロールアニメーション */
.js .customer-give-up.js-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.js .customer-give-up.js-reveal.is-visible {
  animation: customer-give-up-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

.js .customer-give-up .emphasis-dot {
  display: inline-block;
  opacity: 0;
  transform: translateY(9px) scale(.25);
}

.js .customer-give-up.is-visible .emphasis-dot {
  animation: emphasis-dot-pop .48s calc(360ms + var(--dot-delay)) cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes customer-give-up-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes emphasis-dot-pop {
  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.18);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}






.customer-wish-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1.8vw, 24px);
  margin-top: var(--space-60);
}

.customer-wish-card {
  display: block;
  width: 100%;
}

.customer-wish-image {
  display: block;
  width: 100%;
  height: auto;
}




@property --solution-border-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}



.customer-solution {
  position: relative;
  margin-top: var(--space-100);
  padding: var(--space-60) var(--space-60) var(--space-70);

  /* 通常のborderは疑似要素に置き換える */
  border: 0;
  border-radius: 32px;
  box-shadow: 0 var(--size-12) 0 rgba(28, 117, 225, .08);
  text-align: center;
}

.customer-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;

  --solution-border-progress: 360deg;

  background:
    conic-gradient(
      from -45deg,
      rgba(28, 117, 225, .35)
        0deg var(--solution-border-progress),
      transparent
        var(--solution-border-progress) 360deg
    );

  /* 中央をくり抜いて枠線だけにする */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

/* JavaScriptが有効なときは枠線を隠しておく */
.js .customer-solution::before {
  --solution-border-progress: 0deg;
}

/* 左上から時計回りに描画 */
.js .customer-solution.is-visible::before {
  animation:
    customer-solution-border-draw
    .8s
    linear
    forwards;
}

@keyframes customer-solution-border-draw {
  from {
    --solution-border-progress: 0deg;
  }

  to {
    --solution-border-progress: 360deg;
  }
}

.customer-solution-lead {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: .08em;
}

.customer-solution-lead-char {
  display: inline-block;
}

.customer-solution h2 {
  margin-top: 6px;
  color: var(--color-primary);
  font-size: var(--font-40);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
}

.customer-solution h2 br {
  display: none;
}

.customer-solution-text {
  margin-top: 20px;
  font-size: var(--font-19);
  font-weight: 600;
  line-height: 1.7;
}

.customer-solution-note {
  width: min(100%, 560px);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 2px dotted var(--color-primary-light);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 700;
}

.customer-solution-button {
  margin-top: var(--space-48);
  box-shadow: 0 var(--size-8) var(--size-20) rgba(28, 117, 225, .24);
  width: min(40vw, 400px);/*/1000*/
  height: min(6vw, 60px);
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Hide only elements that will be animated when JavaScript is available. */
.js .js-reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), 30px, 0) scale(.88);
  transform-origin: center;
}

.js .js-reveal.is-visible {
  animation: customer-pop-in .72s var(--reveal-delay, 0ms) cubic-bezier(.2, 1.35, .45, 1) both;
}

@keyframes customer-pop-in {
  0% {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), 30px, 0) scale(.82);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1.035);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* customer-solution内の要素を順番に表示する */
.js .customer-solution.js-reveal {
  opacity: 1;
  transform: none;
  box-shadow: 0 2px 0 rgba(28, 117, 225, 0);
}

.js .customer-solution.js-reveal.is-visible {
  animation:
    customer-solution-shadow-in
    .45s
    .82s
    cubic-bezier(.22, 1, .36, 1)
    forwards;
}

@keyframes customer-solution-shadow-in {
  from {
    box-shadow: 0 2px 0 rgba(28, 117, 225, 0);
  }

  to {
    box-shadow: 0 var(--size-12) 0 rgba(28, 117, 225, .08);
  }
}

.js .customer-solution .customer-solution-lead-char {
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
}

.js .customer-solution.is-visible .customer-solution-lead-char {
  animation:
    customer-solution-char-in
    .28s
    var(--char-delay)
    cubic-bezier(.22, 1, .36, 1)
    both;
}

.customer-solution-lead-char:nth-child(1) { --char-delay: 0ms; }
.customer-solution-lead-char:nth-child(2) { --char-delay: 55ms; }
.customer-solution-lead-char:nth-child(3) { --char-delay: 110ms; }
.customer-solution-lead-char:nth-child(4) { --char-delay: 165ms; }
.customer-solution-lead-char:nth-child(5) { --char-delay: 220ms; }
.customer-solution-lead-char:nth-child(6) { --char-delay: 275ms; }

.js .customer-solution h2 {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(.9);
  transform-origin: center;
}

.js .customer-solution.is-visible h2 {
  animation:
    customer-solution-heading-smooth
    .5s
    540ms
    cubic-bezier(.16, 1, .3, 1)
    both;
}


.js .customer-solution .customer-solution-text,
.js .customer-solution .customer-solution-note {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

/* 本文 */
.js .customer-solution.is-visible .customer-solution-text {
  animation:
    customer-solution-slide-up
    .42s
    920ms
    cubic-bezier(.22, 1, .36, 1)
    both;
}


/* 注記 */
.js .customer-solution.is-visible .customer-solution-note {
  animation:
    customer-solution-slide-up
    .42s
    1100ms
    cubic-bezier(.22, 1, .36, 1)
    both;
}


.js .customer-solution .customer-solution-button {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.82);
  transform-origin: center;
}

/* ボタン */
.js .customer-solution.is-visible .customer-solution-button {
  animation:
    customer-solution-button-smooth
    .62s
    1450ms
    cubic-bezier(.16, 1, .3, 1)
    both;
}


@keyframes customer-solution-heading-smooth {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(.9);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes customer-solution-button-smooth {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(.82);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}


@keyframes customer-solution-char-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes customer-solution-heading-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(.78);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, -3px, 0) scale(1.055);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes customer-solution-slide-up {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes customer-solution-button-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.65);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}



/* 3枚の画像を左から順にポンポンポンと表示する */
.js .customer-wish-list.js-reveal,
.js .customer-wish-list.js-reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}

.js .customer-wish-list .customer-wish {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.82);
  transform-origin: center;
}

.js .customer-wish-list.is-visible .customer-wish {
  animation: customer-wish-pop-in .5s var(--reveal-delay) cubic-bezier(.2, 1.5, .45, 1) both;
}

@keyframes customer-wish-pop-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(.82);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.055);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* The three concern bubbles fade in from left, right, then left. */
.js .customer-worry.animate-on-scroll {
  --worry-from-x: 0;
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(var(--worry-from-x), 0, 0);
}

.js .customer-worry.animate-on-scroll.from-left {
  --worry-from-x: -72px;
}

.js .customer-worry.animate-on-scroll.from-right {
  --worry-from-x: 72px;
}

.js .customer-worry.animate-on-scroll.is-visible {
  animation: customer-worry-slide-in .9s cubic-bezier(.22, .75, .28, 1) both;
    animation-delay: var(--worry-delay, 0ms);
}

/* 表示される間隔 */
.customer-worry:nth-child(1) {
  --worry-delay: 0ms;
}

.customer-worry:nth-child(2) {
  --worry-delay: 300ms;
}

.customer-worry:nth-child(3) {
  --worry-delay: 450ms;
}

@keyframes customer-worry-slide-in {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(var(--worry-from-x), 0, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}





@media (max-width: 768px) {

  .customer-worries {
    margin-top: clamp(30px, 6.5vw, 50px);
  }

  .customer-worries-panel {
    padding: min(13vw, 100px) 5% min(13vw, 100px);
  }

  .customer-worries-panel::before {
    width: 175vw;
    border-radius: 50% 50% 0 0 / 128px 128px 0 0;
  }

  .customer-worries-heading {
    width: 80%;
    margin-bottom: min(6.5vw, 50px);
  }

  .customer-worry {
    border-radius: 20px;
    padding: var(--space-30) clamp(30px, 6.25vw, 48px);  
  }

  .customer-worries-list {
    width: 94%;
    gap: 40px;
  }

  .customer-worry-number {
    top: min(2.6vw, 20px);
    left: -17px;
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: 13px;
  }

  .customer-worry-icon {
    width: clamp(30px, 9.1vw, 70px);
  }

  .customer-worry p {
    font-size: var(--font-20);
  }

  .customer-give-up {
    flex-wrap: wrap;
    font-size: var(--font-36);
    letter-spacing: .02em;
  }
  
  .emphasis rt {
    font-size: clamp(3px, .8vw, 6px); /* ●のサイズ */
  }
  
  
  

  .customer-solution {
    margin-top: var(--space-60);
    padding: var(--space-60) var(--space-45) var(--space-70);  
    border-radius: 20px;
  }

  .customer-solution-lead {
    font-size: var(--font-24);
  }

  .customer-solution h2 {
    font-size: clamp(18px, 3.8vw, 29px);
  }

  .customer-solution-note {
    margin: min(5vw, 24px) auto 0;
    padding-top: min(4.2vw, 20px);
    font-size: clamp(11px, 2.2vw, 17px);
  }

.customer-solution-button {
  margin-top: var(--space-40);
  box-shadow: 0 var(--size-8) var(--size-20) rgba(28, 117, 225, .24);
  width: min(100%, 280px);
  height: clamp(40px, 7.3vw, 56px);
  font-size: clamp(13px, 2.3vw, 18px);
}


}



@media (max-width: 480px) {
  .customer-wish-list {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 70%;
  }

  .customer-wish-card {
    width: 100%;
  }
  
  .customer-solution h2 {
    font-size: clamp(15px, 5vw, 24px);
  }
  
  .customer-solution h2 br {
    display: block;
  }
  

  .customer-solution-text {
    margin-top: 15px;
    font-size: var(--font-21);
  }  
  
  .customer-solution-text br {
    display: none;
  }
  
}




@media (prefers-reduced-motion: reduce) {
  .js .js-reveal,
  .js .js-reveal.is-visible,
  .js .customer-worry.animate-on-scroll,
  .js .customer-worry.animate-on-scroll.is-visible,
  .js .customer-give-up.js-reveal,
  .js .customer-give-up.js-reveal.is-visible,
  .js .customer-give-up .emphasis-dot,
  .js .customer-give-up.is-visible .emphasis-dot,
  .js .customer-wish-list .customer-wish,
  .js .customer-wish-list.is-visible .customer-wish {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .js .customer-solution .customer-solution-lead-char,
  .js .customer-solution h2,
  .js .customer-solution .customer-solution-text,
  .js .customer-solution .customer-solution-note,
  .js .customer-solution .customer-solution-button {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}


/* =========================
service
========================= */



/* =========================
section
========================= */
.section {
  margin: var(--space-100) 0 0;
}

.section-bg {
  padding: var(--space-100) 0;
  background: var(--color-primary-pale);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-60);
}

.section-title-heading {
  font-size: clamp(20px, 2.7vw, 35px);
  font-weight: 700;
  line-height: 1.4;
}

.section-title-line {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-16);
}

.section-title-line span {
  width: clamp(16px, 2.2vw, 22px);
  height: clamp(2px, .4vw, 4px);
  border-radius: 999px;
}

.section-title-line span{
  background: #9fc4ff;
}

.section-title-line span:nth-child(1) {
  background: #3b82f6;
}

.section-title-text {
  margin-top: 24px;
}



.section-status {
  text-align: center;
  font-size: 32px;
  margin: 100px 0; 
}


@media (max-width: 768px) {
.section {
  margin: var(--space-100) 0 0;
}

.section-bg {
padding: var(--space-100) 0;
background: var(--color-primary-pale);
}  

.section-title-heading {
  font-size: 32px;
}

.section-title-text {
  font-size: 14px;
}
}










/* =========================
service list
========================= */

.service-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* =========================
service card
========================= */

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  justify-content: center;
  min-height: 220px;


  padding: 32px 20px;

  border: 1px solid #dbe7ff;
  border-radius: 20px;

  background: #fff;

  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-icon {
  width: 100%;
  max-width: 80px;
}

.service-card-title {
  margin-top: 28px;
  font-weight: 700;
  line-height: 1.6;
}


/* =========================
responsive
========================= */

@media (max-width: 1000px) {

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {

  .service {
    padding: 80px 0;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin-top: 40px;
  }

  .service-card {
    min-height: 180px;
    padding: 24px 16px;
  }

  .service-card-icon {
    width: 56px;
  }

  .service-card-title {
    margin-top: 20px;
    font-size: 16px;
  }

}

@media (max-width: 480px) {

  .service-list {
    grid-template-columns: 1fr;
  }

}





/* =========================
service card
========================= */
.works-slider-wrap {
  position: relative;
  padding: 0 30px;
  margin: 0 auto 0;
}

.swiper {
  overflow: hidden;
}

.works-slider {
  position: relative;
}

.works-arrow {
  position: absolute;
  top: 30%;
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.works-arrow-prev {
  left: 0;
}

.works-arrow-next {
  right: 0;
}

.works-arrow:hover {
  background: #fff;             
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.works-arrow:hover svg path {
  stroke: var(--color-primary);
}



.swiper {
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}


.swiper-slide a:hover {
  color: inherit;
}

/* pagination */

.works-pagination {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 40px;
}

.works-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;

  margin: 0 4px !important;

  border-radius: 999px;

  background: #dbe7ff;

  opacity: 1;
}

.works-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--color-primary);
}



/* =========================
pagination
========================= */

.works-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.works-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 999px;
  background: #9fc4ff;

  opacity: 1;

  transition: 0.3s;
}

.works-pagination .swiper-pagination-bullet-active {
  width: 28px;

  background: var(--color-primary);
}


.works-card-image img {
  border-radius: 15px;
}



.works-card-title {
  text-align: center;
  margin-top: 10px;
}





/* =========================
flow
========================= */

.flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 24px 20px;
}

.flow-card {
  position: relative;
  width: calc((100% - 4 * 20px) / 5);  
  padding: var(--space-20);
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  background: #fff;
}


/* カード間の矢印 */
.flow-card::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--color-primary);
}

/* 5番目と9番目の後ろには矢印を出さない */
.flow-card:nth-of-type(5)::after,
.flow-card:nth-of-type(9)::after {
  display: none;
}



.flow-number {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-36);
  height: var(--size-36);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--color-primary);
}


.flow-card-icon {
  width: 80%;
  margin: var(--space-20) auto 0;
}

.flow-card-icon img {
  width: 100%;
}

.flow-card-title {
  margin-top: 10px;
  font-size: var(--font-17);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}


.flow-card-text {
  margin-top: 10px;
  font-size: var(--font-14);
  text-align: left;
}

.flow-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 18px;
  color: var(--color-primary);
}



/* タブレット：3列 */
@media (max-width: 1000px) {
  .flow-list {
    gap: 20px 20px;
  }

  .flow-card {
    width: calc((100% - 20px * 2) / 3);
    padding: min(2.5vw, 25px);
  }

  /* 一度すべての矢印を表示 */
  .flow-card::after {
    display: block;
    right: -18px;
    font-size: 14px
  }

  /* 3・6・9の後ろは非表示 */
  .flow-card:nth-of-type(3)::after,
  .flow-card:nth-of-type(6)::after,
  .flow-card:nth-of-type(9)::after {
    display: none;
  }
  
  .flow-card:nth-of-type(5)::after {
    display: block;
  }
  
  .flow-number {
    top: min(1.6vw, 16px);
    left: min(1.6vw, 16px);
    width: min(3.6vw, 36px);
    height: min(3.6vw, 36px);
    font-size: min(1.8vw, 18px);
  }


  .flow-card-icon {
    margin: min(2vw, 20px) auto 0;
  }


  .flow-card-title {
    margin-top: 10px;
    font-size: min(2vw, 20px);
  }


  .flow-card-text {
    font-size: var(--font-16);
  }
  
  
  
}


/* スマートフォン：2列 */
@media (max-width: 640px) {
  .flow-list {
    gap: min(2.3vw, 15px) min(2.3vw, 15px);
  }

  .flow-card {
    width: calc((100% - 15px) / 2);
    padding: min(4vw, 25px);
  }

  .flow-card::after ,
  .flow-card:nth-of-type(5)::after {
    display: none;
  }
  
  
  .flow-number {
    top: min(2.5vw, 16px);
    left: min(2.5vw, 16px);
    width: min(5.625vw, 36px);
    height: min(5.625vw, 36px);
    font-size: min(2.8vw, 18px);
  }


  .flow-card-icon {
    margin: min(2vw, 20px) auto 0;
  }


  .flow-card-title {
    margin-top: min(1.6vw, 10px);
    font-size: min(3.125vw, 20px);
  }


  .flow-card-text {
    font-size: min(2.5vw, 16px);
  }



  
}










/* =========================
banner
========================= */



.banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-50);
}


.banner-item {
  display: block;
  transition: transform 0.3s ease all;
  border-radius: 20px;
  border: min(1vw, 8px) solid #fff;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 min(2.1vw, 16px) min(4.7vw, 36px) rgba(28, 117, 225, 0.12);
}


.banner-image {
  width: 100%;
  border-radius: 15px;
}



@media (max-width: 768px) {

  .banner {
    margin: var(--space-70) 0 0;
  }

}
@media (max-width: 640px) {
  .banner {
    margin: var(--space-100) 0 0;
  }

  .banner-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banner-item {
    border-radius: 15px;
  }

}



/* =========================
contact cta
========================= */

.contact-cta-box {
  position: relative;
  padding: min(4.2vw, 56px) min(4.8vw, 64px);
  border-radius: 40px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 var(--size-20) var(--size-40) rgba(28, 117, 225, 0.1);}


.contact-cta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-cta-subtitle {
  font-size: min(2.1vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: #354566;  
}

.contact-cta-title {
  margin-top: 5px;
  font-size: min(3.4vw, 45px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}

.contact-cta-text {
  margin-top: min(1.8vw, 24px);
  font-size: min(1.4vw, 18px);
  color: #354566;
}


.contact-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(1.2vw, 16px);

  height: min(6.6vw, 88px);
  padding: 0 min(3vw, 40px);
  border-radius: 999px;
  background: linear-gradient(135deg, #1c75e1 0%, #3f8fff 100%);
  box-shadow:0 var(--size-12) var(--size-28) rgba(28, 117, 225, 0.25);
  color: #fff;
  overflow: hidden;
}

.contact-cta-button::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,0.28) 50%,
      rgba(255,255,255,0) 70%
    );

  transform: translateX(-120%);

  transition: transform 0.7s ease;
}
.contact-cta-button:hover::before {
  transform: translateX(120%);
}

.contact-cta-button:hover {
 color: #fff;
}

.contact-cta-button-icon {
  width: min(3vw, 40px);
}

.contact-cta-button-text {
  font-size: min(1.8vw, 24px);
  font-weight: 700;
}








.contact-cta-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.6vw, 34px);
  margin-top: min(3.6vw, 48px);
  padding-top: min(3vw, 40px);
  border-top: 1px solid #dbe7ff;
}


.contact-cta-item {
  display: flex;
  align-items: center;
  gap: min(1.5vw, 20px);
}

.contact-cta-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(7.2vw, 96px);
  height: min(7.2vw, 96px);
  border-radius: 50%;
  background: #f2f7ff;
  flex-shrink: 0;
}

.contact-cta-item-icon img {
  width: 60%;
}

.contact-cta-item-title {
  font-size: min(1.4vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  color: #1f2f56;
}

.contact-cta-item-text {
  margin-top: min(.7vw, 10px);
  font-size: min(1.1vw, 15px);
  color: #354566;
}









@media (max-width: 768px) {
  .contact-cta-box {
    padding: min(4.2vw, 56px) min(4.8vw, 64px);
    border-radius: 24px;
  }


  .contact-cta-top {
    flex-direction: column;
    text-align: center;
  }

  .contact-cta-subtitle {
    font-size: clamp(13px, 3.6vw, 28px);
  }

  .contact-cta-title {
    margin-top: 5px;
    font-size: clamp(18px, 6vw, 45px);
  }

  .contact-cta-text {
    margin-top: min(2.6vw, 20px);
    font-size: clamp(9px, 2.3vw, 18px);
  }


  .contact-cta-button {
    gap: min(2.1vw, 16px);
    height: min(11.5vw, 88px);
    padding: 0 min(10.4vw, 80px);
    margin-top: min(6.5vw, 50px);
  }


  .contact-cta-button-icon {
    width: min(5vw, 40px);
  }

  .contact-cta-button-text {
    font-size: min(3.125vw, 24px);
  }

  .contact-cta-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(4vw, 30px);
    margin-top: min(6.25vw, 48px);
    padding-top: min(5.2vw, 40px);
  }


  .contact-cta-item {
    flex-direction: column;
    gap: 10px;
  }

  .contact-cta-item-icon {
    width: min(10.4vw, 80px);
    height: min(10.4vw, 80px);
  }



  .contact-cta-item-title {
    font-size: min(2vw, 15px);
    text-align: center;
  }

  .contact-cta-item-text {
    margin-top: 5px;
    font-size: min(1.8vw, 14px);
  }

  .contact-cta-item-text br {
    display: none;
  }

}




@media (max-width: 480px) {


  .contact-cta-bottom {
    grid-template-columns: repeat(1, 1fr);
  }


  .contact-cta-item {
    flex-direction: row;
    gap: 10px;
  }

  .contact-cta-item-icon {
    width: min(10.4vw, 80px);
    height: min(10.4vw, 80px);
  }

  .contact-cta-item-title {
    font-size: min(3.125vw, 15px);
    text-align: left;
  }

  .contact-cta-item-text {
    font-size: min(3.125vw, 15px);
    margin-top: 2px;
    line-height: 1.4;
  }

  .contact-cta-item-text br {
    display: none;
  }

}











/* =========================
footer
========================= */
.footer {
  position: relative;
  margin-top: var(--space-120);
  padding: 50px 0 24px;
  background: #f7f8fa;
  color: #354566;  
}


.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}


.footer-info {
  flex: 0 0 clamp(208px, 24vw, 320px);
  width: auto;
}

.footer-logo {
  display: block;
  width: min(18.8vw, 250px);
}

.footer-logo img {
  width: 100%;
}



.footer-contact {
  margin: 20px 0 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: var(--space-15) var(--space-20);
  background: rgba(255,255,255,0.5);
  display: inline-block;
}

.footer-contact-tel {
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: var(--space-10);
  font-size: var(--font-18);  
}

.footer-contact-time {
  font-size: var(--font-15);
}



.footer-nav-wrap {
  display: grid;
 /* 内容に合わせた幅にする */
  grid-template-columns: repeat(3, max-content);
  column-gap: min(9vw, 120px);
  /* ナビ全体を必要な幅だけにする */
  width: max-content;

  /* 右寄せ */
  margin-left: auto;
}

.footer-title {
  font-size: var(--font-17);
  font-weight: 700;
  line-height: 1.4;
}



.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-link-list li {

}

.footer-link-list a {
  position: relative;
  display: inline-block;
  font-size: var(--font-16);
  line-height: 1.4;
  transition: 0.3s;
}


.footer-bottom {
  border-top: 1px dashed #cfd9e8;
  margin-top: 80px;
  padding-top: 24px;  
}

.footer-copyright {
  font-size: var(--font-14);
  text-align: center;
  color: #7a86a2;
}








.footer-accordion-button {
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: default;
}

.footer-accordion-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}


@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info {
    flex: none;
    width: auto;
  }


  .footer-logo {
    display: block;
    width: clamp(200px, 78.128%, 600px);
    margin: auto;
  }

  .footer-contact {
    margin: 20px 0 0;
    padding: var(--space-30) var(--space-40);
      width: clamp(200px, 78.128%, 600px);  
  }

  .footer-contact-tel {
    gap: var(--space-15);
    font-size: var(--font-45);  
  }

  .footer-contact-time {
    font-size: var(--font-26);
  }

  .footer-nav-wrap {
    display: block;
    width: 100%;
    margin-top: var(--space-100);    
  }






  .footer-nav {
    border-bottom: 1px solid #cfd9e8;
  }

  .footer-nav:first-child {
    border-top: 1px solid #cfd9e8;
  }

  .footer-title {
    font-size: var(--font-24);
    font-weight: 400;
  }



  .footer-accordion-button {
    position: relative;
    padding: 20px 58px 20px 10px;
    cursor: pointer;
  }


  .footer-accordion-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 2px dashed #1c75e1;
    border-radius: 50%;
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, .8),
      0 2px 5px rgba(28, 117, 225, .15);
    transform: translateY(-50%);
    transition:
      background-color .3s ease,
      border-color .3s ease,
      box-shadow .3s ease,
      transform .3s ease;
  }

  /* 中央の＋を2本の線で描く */
  .footer-accordion-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 14px;
    height: 14px;
    background:
      linear-gradient(
        #1c75e1,
        #1c75e1
      ) center / 14px 2px no-repeat,

      linear-gradient(
        #1c75e1,
        #1c75e1
      ) center / 2px 14px no-repeat;

    filter: drop-shadow(
      0 1px 0 rgba(255, 255, 255, .9)
    );

    transform: translateY(-50%);
    transition:
      background-size .3s cubic-bezier(.22, 1, .36, 1),
      transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  /* 開いたとき：縦線を縮めて−にする */
  .footer-nav.is-open
  .footer-accordion-button::after {
    background-size:
      14px 2px,
      2px 0;

    transform:
      translateY(-50%)
      rotate(180deg);
  }

  .footer-nav.is-open
  .footer-accordion-button::before {
    border-color: #075fbf;
    background-color: #e1efff;

    box-shadow:
      0 0 0 3px rgba(255, 255, 255, .9),
      0 3px 7px rgba(28, 117, 225, .2);
  }

  /* タップ・ホバー時 */
  .footer-accordion-button:hover::before {
    transform:
      translateY(-50%)
      scale(1.06);
  }

  .footer-accordion-button:active::before {
    transform:
      translateY(-50%)
      scale(.94);
  }









/* JavaScriptが有効な場合だけ閉じる */
.js .footer-nav .footer-link-list {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .4s cubic-bezier(.22, 1, .36, 1),
    margin-top .4s cubic-bezier(.22, 1, .36, 1),
    opacity .25s ease;
    text-align: left;
    padding-left: 10px;  
}






.js .footer-nav.is-open .footer-title {
  background: #ecf5ff;
}



.js .footer-nav.is-open .footer-link-list {
  opacity: 1;
}




.footer-link-list li:first-child {
  padding-top: 15px;
}

.footer-link-list li:last-child {
  padding-bottom: 30px;
}

.footer-link-list a {
  font-size: var(--font-20);
  margin-top: 10px;
}





}





/* =========================
sns
========================= */

.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 32px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.footer-sns a:hover {
  transform: translateY(-3px);
}

.footer-sns img {
  width: 100%;
}





































.coming-soon {
  text-align: center;
  font-size: 42px;
  color: var(--color-primary-light);
  font-weight: 700;  
}












































