@charset "UTF-8";
/* style.scss内に記載 */
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #000;
  background: transparent;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #4d4136;
  font-weight: 400;
  width: 100%;
}

/* ドロワー表示時：スクロール禁止＋スクロールバー非表示（全ブラウザ対応） */
html.is-fixed,
body.is-fixed {
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / 旧 Edge */
}

html.is-fixed::-webkit-scrollbar,
body.is-fixed::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge (Chromium) */
  width: 0;
  height: 0;
}

.section__head-main,
.header__logo,
.fv__heading-main {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 英字だけど主張を抑えたい箇所 */
.header__logo-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* 日本語見出し・補足 */
.section__head-sub,
.fv__catch,
.fv__lead {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}

/* 本文系（安心感重視） */
.problem__text,
.about__text,
.service__item-text,
.flow__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* 小さな注釈・補足 */
small,
.problem__ctaNote {
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 1001px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}
.wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.section {
  padding: 48px 0;
}

.section__inner {
  padding: 0 32px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section__inner {
    max-width: min(514px, 100%);
  }
}
@media screen and (min-width: 1024px) {
  .section__inner {
    max-width: min(768px, 100%);
  }
}
@media screen and (min-width: 1440px) {
  .section__inner {
    max-width: min(944px, 100%);
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section__head {
    margin-bottom: 24px;
  }
}

.animated__slideUp {
  overflow: hidden;
  /* SplitTypeが終わるまで不可視（レイアウトは維持） */
  opacity: 0;
}
.animated__slideUp .char {
  display: inline-block; /* クリップされやすくする */
  -webkit-transform: translateY(110%);
          transform: translateY(110%); /* 下に隠す。translateではなくtransformに */
  will-change: transform;
  font-weight: bold;
}

.section__head--center {
  text-align: center;
}

.section__head-main {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .section__head-main {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .section__head-main {
    font-size: 40px;
  }
}

.section__head-sub {
  font-size: 16px;
}

.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 24px;
}

.wave {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: white;
}

.waves {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
/*  to-top */
.to-top {
  display: none;
}
@media screen and (min-width: 768px) {
  .to-top {
    position: fixed;
    bottom: 36px;
    right: 40px;
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
    /* グラデーションを背景に設定 */
    background: linear-gradient(138deg, #4a4a4a 6.38%, #4d4136 89.13%);
    /* 内側の白い円で中抜き効果を作る */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.7s ease;
    transition: opacity 0.7s ease;
    cursor: pointer;
    z-index: 1000; /* wave より前面に表示 */
  }
}

.to-top__text {
  color: #4d4136; /* 文字色を枠に合わせて濃く */
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  z-index: 1;
}

/* 内側の白い円を疑似要素で作る */
.to-top::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}

/* 表示・非表示制御 */
.to-top.js-show {
  opacity: 1;
  visibility: visible;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .button {
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__icon-path {
    fill: #00acc1;
  }
  .button:hover .button__text {
    color: #00acc1;
  }
}

.button--bg {
  background-color: #543ab7;
}
@media screen and (min-width: 768px) {
  .button--bg:hover {
    opacity: 0.7;
  }
}

.button--border {
  border: 1px solid #fff;
}

.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__icon-path {
  fill: #fff;
}

.button__icon-path--contact {
  fill: #fff;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    min-width: 220px;
    max-width: 340px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20.8%;
            flex: 0 0 20.8%;
    padding: 20px 20px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.header__inner {
  position: sticky;
  padding: 15px 40px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    display: inline-block;
    margin: 0 auto;
    padding-bottom: 50px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0.04em;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 30px;
  }
}

.header__nav .btn-primary {
  font-size: 14px;
  padding: 10px 16px;
  width: 100%;
  max-width: 200px;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.header__list li a {
  color: #fff;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .header__list li a:hover {
    opacity: 0.7;
  }
}

.header__btn {
  width: 100%;
  max-width: 200px;
  padding: 8px 26px;
  background: #fff;
  border: 1px solid #fff;
  color: #001a75;
  font-size: 14px;
  border-radius: 100vmax;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: transparent;
    color: #fff;
    opacity: 0.85;
  }
}
@media screen and (min-width: 768px) {
  .header__btn--pc {
    color: #1f2937;
    border-radius: 8px;
    padding: 10px 15px;
  }
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 22px;
  right: 40px;
  width: 24px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  overflow-y: scroll;
  translate: 0 -101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.drawer__img {
  width: 37.6%;
  height: auto;
}
.drawer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .drawer__img img {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

.drawer__nav {
  padding-block: 60px 73px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.drawer__list li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

/* ドロワーメニュー内のリンクにフォーカス時のスタイルを軽く残す例 */
.drawer__list a {
  outline: none; /* デフォルトの輪郭を消す */
}

.drawer__list a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.drawer__btn {
  display: inline-block;
  padding: 14px 10px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  max-width: 200px;
}

.drawer.js-show .drawer__img {
  clip-path: inset(0 100% 0 0);
  -webkit-animation: 0.5s 0.3s ease forwards drawerImgAnimation;
          animation: 0.5s 0.3s ease forwards drawerImgAnimation;
}
@-webkit-keyframes drawerImgAnimation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes drawerImgAnimation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.drawer.js-show .drawer__nav {
  -webkit-animation: 0.5s 0.3s ease forwards drawerNavAnimation;
          animation: 0.5s 0.3s ease forwards drawerNavAnimation;
  opacity: 0;
  translate: 0 30px;
}
@-webkit-keyframes drawerNavAnimation {
  0% {
    opacity: 0;
    translate: 0 30px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
@keyframes drawerNavAnimation {
  0% {
    opacity: 0;
    translate: 0 30px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

section:nth-child(odd) {
  background-color: #fff;
}

section:nth-child(even) {
  background-color: #fafafa;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.section-cta--double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .section-cta--double {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.btn-email {
  display: inline-block;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.btn-email:hover {
  opacity: 0.8;
}

.fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 50vh;
  min-height: 420px;
  max-height: 720px;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 60vh;
  }
}

/* 白オーバーレイ */
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.fv__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__img {
  position: absolute;
  inset: 0;
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* テキスト位置 */
.fv__contents {
  position: absolute;
  z-index: 2;
  bottom: clamp(20px, 6vh, 48px);
  top: 5%;
  left: 0;
  padding: 32px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    top: 0;
    padding-left: 96px;
    padding-right: 96px;
    padding-bottom: 96px;
    padding-top: 96px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* コンテンツ内のCTAボタン */
.fv__cta {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .fv__cta {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-block;
  background: #20b486;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.8;
}

.cta-note {
  font-size: 12px;
  margin-top: 8px;
  color: #666;
}

.fv__line {
  /* blurだけ変数で操作する */
  --fvBlur: 0px;
  --glow-1: rgba(255, 255, 255, 2.3);
  --glow-2: rgba(255, 255, 255, 1.9);
  --glow-3: rgba(255, 255, 255, 2.15);
  display: inline-block;
  color: #222;
  line-height: 1.35;
  /* テキストを縁取る白いぼかし */
  -webkit-filter: blur(var(--fvBlur)) drop-shadow(0 0 6px var(--glow-1)) drop-shadow(0 0 14px var(--glow-2)) drop-shadow(0 0 28px var(--glow-3));
          filter: blur(var(--fvBlur)) drop-shadow(0 0 6px var(--glow-1)) drop-shadow(0 0 14px var(--glow-2)) drop-shadow(0 0 28px var(--glow-3));
}

.fv__heading {
  margin: 0;
}

/* 会社名 */
.fv__company {
  display: block;
  margin-bottom: 35px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-size: clamp(21px, 4vw, 40px);
  /* 強めの光 */
  --glow-1: rgba(255, 255, 255, 1);
  --glow-2: rgba(255, 255, 255, 0.7);
  --glow-3: rgba(255, 255, 255, 0.45);
}

.fv__message {
  display: block;
  margin-top: 20px;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 問い（lead） */
.fv__message--lead {
  font-size: clamp(18px, 3.8vw, 25px);
  font-weight: 700;
  letter-spacing: 0.04em;
  --glow-1: rgba(255, 255, 255, 0.9);
  --glow-2: rgba(255, 255, 255, 0.6);
  --glow-3: rgba(255, 255, 255, 0.3);
}

/* メインメッセージ */
.fv__message--main {
  margin-top: 6px;
  font-size: clamp(16px, 3.8vw, 25px);
  font-weight: 700;
  line-height: 1.4;
  --glow-1: rgba(255, 255, 255, 0.85);
  --glow-2: rgba(255, 255, 255, 0.5);
  --glow-3: rgba(255, 255, 255, 0.25);
}

/* かぎカッコの調整 */
.fv__message--main .fv__line--indent {
  padding-left: 0.1em; /* 本文の開始位置 */
  text-indent: -0.6em; /* かぎカッコだけ左に逃がす */
}

.fv__message--main span {
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
}

/* 補足 */
.fv__message--sub {
  margin-top: 16px;
  font-size: clamp(13px, 2vw, 16px);
  opacity: 0.9;
  --glow-1: rgba(255, 255, 255, 0.8);
  --glow-2: rgba(255, 255, 255, 0.45);
  --glow-3: rgba(255, 255, 255, 0.2);
}

.fv__note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

.fv__line:last-child {
  margin-bottom: 0;
}

.fv__img,
.fv__line {
  will-change: opacity, transform;
}

.wrapper {
  position: relative;
}

.main {
  position: relative; /* 灯台の基準を main に固定 */
}
@media (max-width: 902px) {
  .main {
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0; /* flex子要素のはみ出し防止（超重要） */
    padding-top: 0; /* 768px以上はサイドバーなので余白不要 */
  }
}

.price .section__lead-text,
.qa .section__lead-text {
  max-width: 62rem;
}

.price .section__lead-text:has(+ .section__lead-text) {
  padding-block: 10px;
}

.section.service .section__contents {
  display: block;
}

.service-icon {
  font-size: 2.5rem;
  color: #00acc1;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-card h3 {
  width: 100%;
  margin-bottom: 15px;
  font-size: 17px;
  border-bottom: 2px solid #00acc1;
  display: inline-block;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .service-card h3 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .service-card .service-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 0;
  }
  .service-card h3 {
    margin-bottom: 0;
    width: auto;
  }
  .service-card h3 br {
    display: none;
  }
}
/* =========================================================
  Price
========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  }
}

.price-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 1px solid #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.price-card.recommended {
  border: 2px solid #D35400;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: #4d4136;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00acc1;
  line-height: 1.4;
}

.price-card.recommended h3 {
  color: #D35400;
  border-bottom-color: #D35400;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #D35400;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.price-amount {
  font-size: 1.1rem;
  margin: 20px 0;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price-amount span {
  font-size: 2.5rem;
  color: #D35400;
  margin: 0 5px;
}

.price-amount .tax-included {
  font-size: 0.9rem;
  color: #666;
  margin-left: 5px;
  white-space: nowrap;
}

.price-features {
  text-align: left;
  margin: 20px 0;
  font-size: 0.95rem;
}

.price-features li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.price-features li::before {
  content: "✔";
  color: #D35400;
  position: absolute;
  left: 0;
}

.running-cost {
  background: #f9f9f9;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Option */
.option-area {
  margin-top: 50px;
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

/* Price zone:  */
.price__desc {
  margin-top: 12px;
  line-height: 1.7;
}

.price__desc small {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.85;
}

/* =========================================================
  Q&A (dl)
========================================================= */
.faq-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #D35400;
}

.faq-question::before {
  content: "Q.";
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2rem;
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  padding-left: 28px;
  position: relative;
}

.faq-answer::before {
  content: "A.";
  font-weight: 700;
  color: var(--text-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================================================
  追加CTAの整え（既存problem__ctaを流用している箇所）
========================================================= */
.price .problem__cta,
.qa .problem__cta {
  text-align: left;
}

.price .problem__ctaNote,
.qa .problem__ctaNote {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.85;
}

.works__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .works__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
}

.works__item + .works__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
          box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
  margin-bottom: 12px;
}

.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.worksGrid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.worksCard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.worksCard__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.worksCard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  display: block;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 240ms ease;
  transition: -webkit-transform 240ms ease;
  transition: transform 240ms ease;
  transition: transform 240ms ease, -webkit-transform 240ms ease;
}

.worksCard:hover .worksCard__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* 上部を見せたいカード */
.worksCard.is-focus-top .worksCard__thumb img {
  -o-object-position: 16% 0%;
     object-position: 16% 0%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.worksCard__body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.worksCard__title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

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

.worksCard__title a:hover {
  text-decoration: underline;
}

.worksCard__url {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.worksCard__url a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

.worksCard__meta {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.worksCard__metaRow {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
}

.worksCard__meta dt {
  opacity: 0.7;
}

.worksCard__meta dd {
  font-size: 13px;
  line-height: 1.5;
}

.worksCard__metaRow dd {
  white-space: nowrap;
}

.worksCard__metaRow dd:first-child {
  opacity: 0.95;
}

/* Tags */
.worksCard__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.worksTag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #f3f4f6;
}

.worksTag--tech {
  background: #eef2ff;
}

/* Buttons */
.worksCard__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.worksCard__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #4d4136;
  color: #fff;
  font-size: 13px;
  -webkit-transition: opacity 160ms ease;
  transition: opacity 160ms ease;
}

.worksCard__btn:hover {
  opacity: 0.85;
}

/* Optional: ghost button */
.worksCard__btn--ghost {
  background: transparent;
  color: #4d4136;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

/* Responsive spacing tweak */
@media (max-width: 767px) {
  .worksGrid {
    gap: 18px;
  }
  .worksCard__body {
    padding: 14px 14px 16px;
  }
}
.about {
  overflow-x: clip;
}

@media screen and (min-width: 1024px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__container .about__img {
    margin-left: 40px;
  }
}

.about__text-contents {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .about__text-contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
  }
}

.about__text-contents h2,
.about__text-contents p {
  margin: 0;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}

.about__text + .about__text {
  margin-top: 1em;
}

.about__img {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .about__img {
    margin-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
    -webkit-margin-end: calc(-1 * var(--about-spill));
            margin-inline-end: calc(-1 * var(--about-spill));
  }
}
.about__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
          box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
  border-radius: 8px;
}

.flow__list {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}
@media screen and (min-width: 1024px) {
  .flow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 16px;
  }
}

.animated__clipView {
  padding-top: 40px;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.flow__item {
  position: relative;
  border: 1px solid #543ab7;
  padding: 46px 16px 24px;
}

.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: #fff;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}

.flow__item-img img {
  width: 100px; /* 既存に合わせてOK */
  height: 100px;
  display: block;
  margin: 0 auto;
}

.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.22);
}
@media screen and (min-width: 375px) {
  .problem-card {
    padding: 20px 15px;
  }
}

.problem-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.problem-card__img {
  text-align: center;
  margin-bottom: 20px;
}

.problem-card__content {
  text-align: left;
}

.problem-card__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.problem-card__text {
  font-size: 14px;
  line-height: 1.6;
}

.problem__img {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .problem__img {
    margin-bottom: 0;
  }
}
.problem__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
          box-shadow: 0 4px 15px 0 rgba(49, 33, 20, 0.15);
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 35%;
     object-position: 35%;
}

.problem__text {
  font-size: 16px;
  line-height: 1.6;
}

.problem__text + .problem__text {
  margin-top: 1em;
}

.problem__text-note {
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d35400;
}
@media screen and (min-width: 768px) {
  .problem__text-note {
    font-size: 1.4rem;
  }
}

ul.problem__text-item {
  padding-left: 20px;
}

li.problem__text-list {
  position: relative;
  left: 7px;
}

li.problem__text-list::before {
  content: "✔";
  position: absolute;
  left: -17px;
  color: #333;
}

.page-bottom {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-bottom__item {
  padding: 40px;
}
@media screen and (min-width: 768px) {
  .page-bottom__item {
    padding: 54px 10px;
  }
}

.page-bottom__item--contact {
  background-color: #00acc1;
}

.page-bottom__item--twitter {
  background-color: #543ab7;
}
.page-bottom__item--twitter .button:hover .button__icon-path {
  fill: #543ab7;
}
.page-bottom__item--twitter .button:hover .button__text {
  color: #543ab7;
}

/* コンテナを相対位置にしておく */
.capelight-container {
  overflow: hidden;
  position: absolute;
  bottom: 0; /* メインの一番下にくっつく */
  right: 0; /* 左端にくっつける場合。必要に応じて center にもOK */
  width: 25%; /* 画面幅に対して 25% の幅で表示 (例) */
  max-width: 160px; /* 任意：大きくなりすぎないよう上限をつける */
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .capelight-container {
    width: 30%;
    max-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .capelight-container {
    width: 25%; /* 画面幅に対して 25% の幅で表示 (例) */
    max-width: 160px; /* 任意：大きくなりすぎないよう上限をつける */
  }
}
@media screen and (min-width: 1440px) {
  .capelight-container {
    width: 20%;
    max-width: 180px;
  }
}

/* 灯台本体は通常表示 */
.capelight-img {
  display: block;
  width: 100%; /* コンテナ幅＝画像幅に合わせる */
  height: auto;
}

/* 黄色い円部分だけを灯台本体の該当位置に重ねる */
.capelight-circle {
  overflow: hidden;
  position: absolute;
  /* 以下の値は「元画像 capelight.png の中で、
     黄色い円が占める位置を％で指定」しています。 */
  top: 7%; /* 全体画像の上端から 22% の位置 ※実際のPNGに合わせて調整してください */
  left: 20%; /* 全体画像の左端から 40% の位置 ※実際のPNGに合わせて調整してください */
  width: 75%; /* 元画像の幅に対して 20% の横幅で表示 ※調整可 */
  height: auto; /* 自動追従 */
  z-index: 2; /* 灯台本体よりも前面に */
  opacity: 1; /* 初期は不透明。GSAP でアニメーションするときにのみ変化。 */
  pointer-events: none; /* クリック対象外にして、下のコンテンツを邪魔しない */
}

/* =========================================================
  見出しが増えたので、ナビのクリック時に見切れない調整（任意）
  → 既存で scroll-margin-top を使ってない場合のみ効く
========================================================= */
#problem,
#works,
#service,
#price,
#qa,
#flow,
#about {
  scroll-margin-top: 90px;
}

@media (min-width: 768px) {
  #problem,
  #works,
  #service,
  #price,
  #qa,
  #flow,
  #about {
    scroll-margin-top: 110px;
  }
}
/* =========================================================
  スマホ用固定フッター
========================================================= */
.mobile-footer {
  display: none;
}
@media (max-width: 767px) {
  .mobile-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .mobile-footer.js-show {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.mobile-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  max-width: 100%;
}

.mobile-footer__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease;
  transition: opacity 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.mobile-footer__btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.mobile-footer__btn--email {
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: #fff;
}
.mobile-footer__btn--email:hover {
  opacity: 0.9;
}

.mobile-footer__btn--line {
  background: #20b486;
  color: #fff;
}
.mobile-footer__btn--line:hover {
  opacity: 0.9;
}

.mobile-footer__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mobile-footer__btn-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-footer__btn-text {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .footer {
    margin-bottom: 80px;
  }
}
.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
}

/* =========================
   アンカーのズレ対策 + ふわっと移動
========================= */
/* ヘッダー高さをCSS変数で持つ（JSで実測して入れる） */
:root {
  --anchor-offset: 0px;
}

/* アンカー到達位置をヘッダー分だけ下げる */
section[id] {
  scroll-margin-top: var(--anchor-offset);
}