@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  word-wrap: break-word;
}

/* リキッドレイアウト対応 */

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1c1c1c;
  background-color: #fff;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media (min-width: 768px) {
  html {
    font-size: 1.1851851852vw;
  }
}
@media (min-width: 1350px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

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

img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner {
  width: 100%;
  max-width: 1362px;
  max-width: 85.125rem;
  padding: 0 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 31.25rem;
    padding: 0 24px;
  }
}

/* Figma 共通ボタン（160×40, radius 24, NSJ 400 13 1em 5%） */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  width: 160px;
  width: 10rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 8px;
  padding: 0 0.5rem;
  border-radius: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button__icon {
  width: 24px;
  width: 1.5rem;
  aspect-ratio: 1;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.button--filled {
  background-color: #38acb5;
  color: #fff;
  border: 1px solid #38acb5;
  border: 0.0625rem solid #38acb5;
}

.button--outlined {
  background-color: transparent;
  color: #38acb5;
  border: 1px solid #38acb5;
  border: 0.0625rem solid #38acb5;
}

.button--outlined-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}

@media (any-hover: hover) {
  .button--filled:hover {
    background-color: #171c61;
    border-color: #171c61;
  }
  .button--outlined:hover {
    background-color: #38acb5;
    color: #fff;
  }
  .button--outlined-white:hover {
    background-color: rgba(255, 255, 255, .14);
  }
  .button:hover .button__icon {
    -webkit-transform: translateX(0.125rem);
            transform: translateX(0.125rem);
  }
}
.section-title {
  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: 8px;
  gap: 0.5rem;
  text-align: center;
}

.section-title__en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: #171c61;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 2rem;
  }
}

/* Figma: PC 28/700/1.5/0.05em → SP 24/700/1.5/0em */
.section-title__ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

/* Figma: PC/SP 共に 15/400/1.75/0.05em */
.section-title__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
}

/* header — FV内に重ねて配置・透過・白文字（Figma node 2565:994 / padding 24 40） */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  padding: 24px 40px;
  padding: 1.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5rem 0.875rem;
    gap: 0.5rem;
  }
}

.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__logo-img {
  display: block;
  width: 192px;
  width: 12rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    width: 8.75rem;
    height: auto;
  }
}

.header__menu {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  height: 40px;
  height: 2.5rem;
}

.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.header__cta .button {
  width: 144px;
  width: 9rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 12px;
  padding: 0 0.75rem;
  gap: 4px;
  gap: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.header__cta .button__icon {
  width: 24px;
  width: 1.5rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__cta .button--outlined {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}

.header__contact {
  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: 2px;
  gap: 0.125rem;
}

.header__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.header__tel-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.header__time {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  color: #fff;
}

.header__nav-list {
  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: 24px;
  gap: 1.5rem;
}

.header__nav-item {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}

.header__nav-item a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.header__nav-item--guide a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
}

.header__nav-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.header__nav-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__sp-cta {
  display: none;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header__sp-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.header__sp-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 4px;
  gap: 0.25rem;
  text-decoration: none;
  color: #fff;
}

.header__sp-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  border-radius: 50%;
}

.header__sp-icon--filled {
  background-color: #38acb5;
}

.header__sp-icon--outlined {
  background-color: transparent;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}

.header__sp-icon img {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.header__sp-cta-wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  .header__sp-cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
}

.header__sp-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 9px;
  font-size: 0.5625rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}

.header__hamburger {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.header__hamburger-icon {
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .header__nav-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .header__tel:hover .header__tel-icon {
    -webkit-animation: tel-wiggle 0.5s ease;
            animation: tel-wiggle 0.5s ease;
  }
}
@-webkit-keyframes tel-wiggle {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-14deg);
            transform: rotate(-14deg);
  }
  45% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  70% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  90% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
@keyframes tel-wiggle {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-14deg);
            transform: rotate(-14deg);
  }
  45% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  70% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  90% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
/* drawer-menu (Figma node 2777:114 menu_open_PC) */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 767px) {
  .drawer-menu {
    overflow: auto;
  }
}

.drawer-menu.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.drawer-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 40px;
  padding: 1.5rem 2.5rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .drawer-menu__header {
    position: fixed;
    padding: 1rem 0.875rem;
  }
}

.drawer-menu__close {
  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;
  gap: 5px;
  gap: 0.3125rem;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border: 1px solid #a0a0a0;
  border: 0.0625rem solid #a0a0a0;
  border-radius: 1.5rem;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

.drawer-menu__close span {
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #1c1c1c;
}

.drawer-menu__close span:nth-child(1) {
  -webkit-transform: translateY(0.375rem) rotate(45deg);
          transform: translateY(0.375rem) rotate(45deg);
}

.drawer-menu__close span:nth-child(2) {
  opacity: 0;
}

.drawer-menu__close span:nth-child(3) {
  -webkit-transform: translateY(-0.375rem) rotate(-45deg);
          transform: translateY(-0.375rem) rotate(-45deg);
}

.drawer-menu__inner {
  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;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .drawer-menu__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 3rem;
    min-height: calc(100% + 8.75rem);
  }
}

.drawer-menu__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50vw;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .drawer-menu__image {
    -webkit-transform: translateX(-1.25rem);
            transform: translateX(-1.25rem);
    aspect-ratio: 220/200;
    height: auto;
    width: 13.75rem;
  }
}

.drawer-menu__image-pic {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.drawer-menu__menu {
  max-height: 90svh;
  overflow: auto;
  overscroll-behavior: none;
  width: 50vw;
}
@media screen and (max-width: 767px) {
  .drawer-menu__menu {
    width: 100%;
  }
}

/* drawer 内 動画モーダル起動トリガー (FV のものを縮小コピー) */
.drawer-menu__movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 209px;
  width: 13.0625rem;
  height: 64px;
  height: 4rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid #808080;
  border: 0.0625rem solid #808080;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* PC: ロゴ直下 左右中央寄せ */
.drawer-menu__movie--pc {
  margin: 0 auto;
}

/* SP: 画像直下 左右中央寄せ */
.drawer-menu__movie--sp {
  margin: 16px auto 0;
  margin: 1rem auto 0;
}

.drawer-menu__movie-label {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-align: left;
}

.drawer-menu__movie-arrow {
  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;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.drawer-menu__movie-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer-menu__movie-thumb {
  display: block;
  width: 113px;
  width: 7.0625rem;
  height: 64px;
  height: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #808080;
  border: 0.0625rem solid #808080;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (any-hover: hover) {
  .drawer-menu__movie:hover {
    opacity: 0.7;
  }
}
.drawer-menu__menu-wrap {
  min-height: calc(100% + 0.0625rem);
  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;
  gap: 46px;
  gap: 2.875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .drawer-menu__menu-wrap {
    gap: 1.5rem;
    width: 100%;
  }
}

.drawer-menu__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #171c61;
}

/* SP では画像の上に配置するロゴ (中央寄せ) */
.drawer-menu__logo--sp {
  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;
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.drawer-menu__logo--sp img {
  display: block;
  width: 160px;
  width: 10rem;
  height: auto;
}

.drawer-menu__logo em {
  font-style: normal;
  color: #38acb5;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.drawer-menu__sp-wrap {
  display: contents;
}
@media screen and (max-width: 767px) {
  .drawer-menu__sp-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
  }
}

.drawer-menu__sp-wrap-submenu {
  display: contents;
}
@media screen and (max-width: 767px) {
  .drawer-menu__sp-wrap-submenu {
    display: block;
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.drawer-menu__list {
  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: 12px;
  gap: 0.75rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  .drawer-menu__list {
    gap: 0.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 6.25rem;
  }
}

.drawer-menu__list a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  padding: 0.625rem 0;
  color: inherit;
  text-decoration: none;
}

.drawer-menu__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  bottom: 0.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.drawer-menu__guide a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #1c1c1c;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .drawer-menu__guide a {
    gap: 0.125rem;
    margin-bottom: 1.5rem;
  }
}

.drawer-menu__guide a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  bottom: -0.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.drawer-menu__guide-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.drawer-menu__guide-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer-menu__guide-icon:last-of-type img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.drawer-menu__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .drawer-menu__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    gap: 1.5rem;
  }
}

.drawer-menu__cta .button {
  width: 160px;
  width: 10rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 12px;
  padding: 0 0.75rem;
  gap: 8px;
  gap: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .drawer-menu__cta .button {
    width: 100%;
  }
}

.drawer-menu__cta .button__icon {
  width: 24px;
  width: 1.5rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer-menu__cta .button--outlined {
  background-color: transparent;
  color: #38acb5;
  border: 1px solid #38acb5;
  border: 0.0625rem solid #38acb5;
}

.drawer-menu__cta .button--outlined .button__icon {
  -webkit-filter: none;
          filter: none;
}

.drawer-menu__contact {
  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: 4px;
  gap: 0.25rem;
}

.drawer-menu__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: #1c1c1c;
  text-decoration: none;
}

.drawer-menu__tel-icon {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.drawer-menu__time {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  color: #1c1c1c;
}

@media (any-hover: hover) {
  .drawer-menu__list a:hover::after,
  .drawer-menu__guide a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .drawer-menu__tel:hover .drawer-menu__tel-icon {
    -webkit-animation: tel-wiggle 0.5s ease;
            animation: tel-wiggle 0.5s ease;
  }
}
/* float-menu / float-cta — FV通過後に右上・右下に出現して追従するフローティング要素 */
.float-menu {
  position: fixed;
  top: 24px;
  top: 1.5rem;
  right: 40px;
  right: 2.5rem;
  z-index: 60;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s, -webkit-transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0.4s, -webkit-transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0.4s, transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0.4s, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767px) {
  .float-menu {
    top: 1rem;
    right: 1rem;
  }
}

.float-menu__icon {
  display: block;
  width: 100%;
  height: 100%;
}

body.is-past-fv .float-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0s, -webkit-transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0s, -webkit-transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0s, transform 0.25s ease;
  transition: opacity 0.4s ease, visibility 0s 0s, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.float-cta {
  position: fixed;
  right: 0;
  bottom: 48px;
  bottom: 3rem;
  z-index: 60;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}
@media screen and (max-width: 767px) {
  .float-cta {
    bottom: 1.5rem;
    display: none;
  }
}

body.is-past-fv .float-cta {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0s;
  transition: opacity 0.4s ease, visibility 0s 0s;
}

.float-cta__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;
  gap: 4px;
  gap: 0.25rem;
  width: 170px;
  width: 10.625rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 12px;
  padding: 0 0.75rem;
  border-radius: 1.5rem 0 0 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: width 0.25s ease, background-color 0.25s ease;
  transition: width 0.25s ease, background-color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .float-cta__btn {
    width: 9.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
}

.float-cta__btn--sub {
  background-color: #38acb5;
}

.float-cta__btn--dark {
  background-color: #1c1c1c;
}

.float-cta__icon {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ハンバーガークリックで .open になる時の X アニメーション (ドロワー開閉と連動) */
.float-menu.open {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media (any-hover: hover) {
  .float-cta__btn:hover {
    width: 11.625rem;
  }
  .float-menu:hover {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
/* Figma nodes 4901:377 / 4901:412 / 4901:465 — CTA共通コンポーネント */
/* フィードバック[11][15]: 左半分は余白、コンテンツ全体を右半分に寄せる */
.cta {
  position: relative;
  isolation: isolate;
  padding: 64px 0;
  padding: 4rem 0;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 4rem 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .cta .button--filled,
  .cta .button--outlined-white {
    width: 12.5rem;
  }
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/cta/cta_bg-48ef6e.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(23, 28, 97, .6);
}

.cta__inner {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding-inline: 1.4375rem;
  }
}

.cta__main {
  margin-right: 44px;
  margin-right: 2.75rem;
  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: 24px;
  gap: 1.5rem;
  width: 50%;
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .cta__main {
    margin-right: unset;
    width: 100%;
    max-width: none;
  }
}

.cta__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 0.875rem;
    text-align: left;
    width: 100%;
  }
}

.cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .cta__list {
    -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: 1.5rem;
  }
}

.cta__item {
  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;
  gap: 1rem;
}

.cta__lead {
  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: 4px;
  gap: 0.25rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cta__lead {
    display: block;
  }
}

.cta__contact {
  margin-right: 54px;
  margin-right: 3.375rem;
  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: 2px;
  gap: 0.125rem;
  width: 50%;
  max-width: 640px;
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .cta__contact {
    width: 100%;
    max-width: none;
    margin-right: unset;
  }
}

.cta__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}

.cta__tel-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.cta__time {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}

@media (any-hover: hover) {
  .cta__tel:hover .cta__tel-icon {
    -webkit-animation: tel-wiggle 0.5s ease;
            animation: tel-wiggle 0.5s ease;
  }
}
/* footer (Figma node 2565:1776) — bg --main / column gap 96 / padding 64 */
.footer {
  background-color: #171c61;
  color: #fff;
  padding: 64px 0;
  padding: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 4rem 0rem;
    gap: 3rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 48px;
  gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 3rem;
  }
}

/* left block — column gap 16 */
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.footer__logo {
  display: block;
  width: 192px;
  width: 12rem;
  height: 40px;
  height: 2.5rem;
  margin: 0;
}

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

/* row align-end gap 32 — text + sns icons */
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__info {
    -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;
    gap: 1.5rem;
  }
}

.footer__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.footer__company-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.footer__address {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.footer__sns {
  list-style: none;
  margin: 0;
  padding: 0;
  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;
  gap: 16px;
  gap: 1rem;
}

.footer__sns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.footer__sns img {
  display: block;
}

/* right block — row align-end gap 48 */
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 48px;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.5rem;
  }
}

.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.footer__link-block {
  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;
  gap: 8px;
  gap: 0.5rem;
}

.footer__link-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  margin: 0;
}

.footer__btn {
  width: 240px;
  width: 15rem;
  height: 40px;
  height: 2.5rem;
}

.footer__btn-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

/* page top — row align-center gap 8: en label + 32x32 white circle icon */
.footer__pagetop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .footer__pagetop {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__pagetop {
    margin-left: auto;
    opacity: 1;
    pointer-events: all;
  }
}

.footer__pagetop-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.footer__pagetop-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.footer__pagetop-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .footer__pagetop:hover .footer__pagetop-arrow {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
  }
}
body {
  opacity: 0;
}

.loader {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  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;
  pointer-events: all;
  background: #0b0f3a;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.loader__wrap {
  height: 100%;
  width: 100%;
  display: grid;
  place-content: center;
  position: relative;
  overflow: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.loader__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(56, 172, 181, .22) 0%, rgba(11, 15, 58, .95) 65%), linear-gradient(135deg, #0b0f3a 0%, #171c61 100%);
}

.loader__bg::before,
.loader__bg::after {
  content: "";
  position: absolute;
  width: 520px;
  width: 32.5rem;
  height: 520px;
  height: 32.5rem;
  max-height: 100%;
  border-radius: 50%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="120" /></filter></svg>#filter');
  -webkit-filter: blur(120px);
          filter: blur(120px);
  -webkit-filter: blur(7.5rem);
          filter: blur(7.5rem);
  opacity: 0.5;
  pointer-events: none;
}

.loader__bg::before {
  top: -10%;
  left: -10%;
  background: #38acb5;
}

.loader__bg::after {
  bottom: -15%;
  right: -10%;
  background: #2a3399;
}

.loader__inner {
  position: relative;
  z-index: 1;
  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;
  min-height: calc(100% + 1px);
  gap: 28px;
  gap: 1.75rem;
  padding: 0 24px;
  padding: 0 1.5rem;
  scrollbar-width: none;
}

.loader__logo {
  width: 280px;
  width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .loader__logo {
    width: 70vw;
    max-width: 17.5rem;
  }
}

.loader__logo svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.loader__path {
  stroke-width: 1;
  fill: currentColor;
  fill-opacity: 0;
  stroke-opacity: 1;
  vector-effect: non-scaling-stroke;
}

.loader__path--white {
  color: #fff;
  stroke: #fff;
}

.loader__path--accent {
  color: #38acb5;
  stroke: #38acb5;
}

.loader__bar {
  position: relative;
  width: 180px;
  width: 11.25rem;
  height: 2px;
  height: 0.125rem;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
  border-radius: 0.125rem;
}

.loader__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#38acb5), to(#97b8df));
  background: linear-gradient(90deg, #38acb5, #97b8df);
  -webkit-box-shadow: 0 0 0.75rem rgba(56, 172, 181, .7);
          box-shadow: 0 0 0.75rem rgba(56, 172, 181, .7);
}

.v2-char {
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  opacity: 0;
  will-change: transform, opacity;
}

.fv__copy {
  opacity: 0;
}

.strongpoint__heading {
  -webkit-perspective: 75rem;
          perspective: 75rem;
}

.strongpoint__heading-en {
  display: inline-block;
}

.product__movie-title {
  overflow: visible;
  -webkit-perspective: 87.5rem;
          perspective: 87.5rem;
}

.product__en {
  opacity: 0;
  letter-spacing: 0.5em;
}

.point-item__highlight {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (prefers-reduced-motion: reduce) {
  .v2-char {
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .product__en {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .loader {
    display: none;
  }
}
/* ============== point-item (3つのstrongpoint item共通コンポーネント Figma 2565:1071 / 1105 / 1147) ============== */
.point-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .point-item {
    gap: 3rem;
    padding: 0;
  }
}

.point-item--dark {
  padding: 0px 0px 51px;
  padding: 0rem 0rem 3.1875rem;
  color: #fff;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .point-item--dark {
    padding: 0 0 3rem;
  }
}
.point-item--dark .point-item__row {
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .point-item--dark .point-item__row {
    gap: 4.25rem;
  }
}
@media screen and (max-width: 767px) {
  .point-item--dark .point-item__detail-title {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

.point-item--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #171c61;
  z-index: -1;
}

/* li 03: gap 64 (Figma layout_QRYJP8) */
.point-item--narrow {
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .point-item--narrow {
    gap: 3rem;
  }
}

/* ============== row (copy + photos) Figma layout_5521HI ============== */
.point-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 120px;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .point-item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 4.5rem;
  }
}

/* ============== copy (left side) Figma layout_UREWHG ============== */
.point-item__copy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 185px;
  padding-top: 11.5625rem;
}
@media screen and (max-width: 767px) {
  .point-item__copy {
    gap: 1rem;
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

/* num (カード番号 01/02/03) : Figma PC 144/500/1.0/0.05em/white
 * SPはFigmaも144pxだが、SP実装では絶対配置をやめて静的フローに変えているため
 * 縦積み時の収まり優先で72px/sub-2に抑制 */
.point-item__num {
  position: absolute;
  top: 112px;
  top: 7rem;
  left: 16px;
  left: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 144px;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  margin: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point-item__num {
    top: -4.5rem;
    left: 1rem;
    font-size: 9rem;
    color: #fff;
  }
}

.point-item--narrow .point-item__num {
  top: 86px;
  top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .point-item--narrow .point-item__num {
    top: -4.25rem;
    color: #fff;
  }
}

.point-item--narrow .point-item__copy {
  padding-top: 159px;
  padding-top: 9.9375rem;
}
@media screen and (max-width: 767px) {
  .point-item--narrow .point-item__copy {
    padding-top: 0;
  }
}

.point-item--dark .point-item__num {
  opacity: 0.08;
}

/* Figma: PC 56/400/1.0/0.05em/sub-1 → SP 40/400/1.0/0em/sub-1 */
.point-item__title {
  position: relative;
  z-index: 2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 3.632px + 3.636vi, 56px);
  font-size: clamp(2.5rem, 0.227rem + 3.636vi, 3.5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #38acb5;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__title {
    font-size: 2.5rem;
    letter-spacing: 0;
    white-space: normal;
    margin-bottom: 0.625rem;
  }
}

/* highlight box: bg white, border-top/bottom 2px sub-1, 縦並び (Figma layout_X0ONAP) */
.point-item__highlight {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 24px;
  padding: 1.5rem;
  background-color: #fff;
  border-top: 2px solid #38acb5;
  border-top: 0.125rem solid #38acb5;
  border-bottom: 2px solid #38acb5;
  border-bottom: 0.125rem solid #38acb5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__highlight {
    padding: 1.3125rem;
  }
}

/* Figma: PC/SP 共に 18/700/1.4/0em/base-color (highlight 前置きテキスト) */
.point-item__highlight-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: center;
  margin: 0;
}

/* Figma: PC/SP 共に 104/400/1.0/0.05em/sub-1 (数字強調 1/3, 20, 1,000)
 * 縦積みSP表示でも数字強調は同サイズで維持 */
.point-item__highlight-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 104px;
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #38acb5;
  text-align: center;
  margin: 0;
}

/* lead text */
.point-item__lead {
  max-width: 440px;
  max-width: 27.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__lead {
    max-width: none;
  }
}

.point-item--dark .point-item__lead {
  max-width: 468px;
  max-width: 29.25rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .point-item--dark .point-item__lead {
    max-width: none;
  }
}

/* ============== photos (right side) Figma layout_ZG4EHP ============== */
.point-item__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .point-item__photos {
    gap: 0.75rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/* 写真のステッガー: コピーに近い側の写真 (= copy寄り) を 80px 下げる
 * - li 01 (.point-item): copy左 / photos右 → 1枚目（左端＝copy寄り）を下げる
 * - li 02 (--dark): photos左 / copy右 → 2枚目（右端＝copy寄り）を下げる
 * - li 03 (--narrow): copy左 / photos右 → 1枚目（左端＝copy寄り）を下げる */
.point-item__photos > li:nth-child(1) {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .point-item__photos > li:nth-child(1) {
    margin-top: 2.5rem;
  }
}

.point-item--dark .point-item__photos > li:nth-child(1) {
  margin-top: 0;
}

.point-item--dark .point-item__photos > li:nth-child(2) {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .point-item--dark .point-item__photos > li:nth-child(2) {
    margin-top: 2.5rem;
  }
}

.point-item__photo {
  width: 360px;
  width: 22.5rem;
  height: 480px;
  height: 30rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .point-item__photo {
    width: auto;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    aspect-ratio: 360/480;
  }
}

.point-item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============== detail blocks (Figma layout_ZR85VY) 2列 grid ============== */
.point-item__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .point-item__details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.point-item__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  height: 100%;
}

.point-item__detail-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #38acb5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__detail-title {
    font-size: 1.25rem;
  }
}

/* 8px stroke svg (16x0 frame -> visible 16x8) */
.point-item__detail-line {
  display: block;
  width: 16px;
  width: 1rem;
  height: 8px;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

/* detail-text : li 01,03 = white bg / li 02 (--dark) = transparent + 1px sub-2 border */
.point-item__detail-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 32px 48px;
  padding: 2rem 3rem;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__detail-text {
    padding: 2rem 2rem;
  }
}

.point-item--dark .point-item__detail-text {
  background-color: transparent;
  border: 1px solid #97b8df;
  border: 0.0625rem solid #97b8df;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .point-item--dark .point-item__detail-text {
    padding-inline: 1.5rem;
  }
}

/* ============== card (背景画像 + テキストブロック左半分) Figma layout_1URF03 ============== */
.point-item__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
  min-height: 320px;
  min-height: 20rem;
}
@media screen and (max-width: 767px) {
  .point-item__card {
    min-height: 25rem;
  }
}

.point-item__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .3);
  z-index: -1;
}

/* 内側テキストブロック : column 縦並び・左半分のみ (Figma layout_FE67DR) */
.point-item__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 76px 48px 54px;
  padding: 4.75rem 3rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .point-item__card-body {
    width: 100%;
    padding: 4.6875rem 1.5rem 2rem;
  }
}

.point-item__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__card-title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.point-item__card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  max-width: 520px;
  max-width: 32.5rem;
}

/* card variants : bg image + overlay color */
.point-item__card--01 {
  background-image: url("../images/strongpoint/strongpoint_card_01_bg-5c8bb5.png");
}
@media screen and (max-width: 767px) {
  .point-item__card--01 {
    background-image: url("../images/strongpoint/strongpoint_card_01_bg_sp.png");
  }
}

.point-item__card--02 {
  background-image: url("../images/strongpoint/strongpoint_card_02_bg-496e2a.png");
}
@media screen and (max-width: 767px) {
  .point-item__card--02 {
    background-image: url("../images/strongpoint/strongpoint_card_02_bg_sp.png");
  }
}

.point-item__card--03 {
  background-image: url("../images/strongpoint/strongpoint_card_03_bg-10c50d.png");
}

.point-item__card--03::before {
  background-color: rgba(0, 0, 0, .5);
}

/* ============== banner (li 02 only) Figma 2565:1140 layout_DT9241 ============== */
.point-item__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -70px;
  margin-top: -4.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  padding: 24px 0;
  padding: 1.5rem 0;
  border: 1px solid #38acb5;
  border: 0.0625rem solid #38acb5;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .point-item__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    margin-top: -1.875rem;
  }
}

.point-item__banner-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
  width: 10rem;
  height: 160px;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.point-item__banner-body {
  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;
  gap: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point-item__banner-body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}

.point-item__banner-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__banner-title {
    font-size: 1.1875rem;
    text-align: left;
  }
}

.point-item__banner-row {
  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: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .point-item__banner-row {
    -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;
    gap: 0.5rem;
  }
}

.point-item__banner-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #38acb5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__banner-tag {
    text-align: left;
  }
}

.point-item__banner-text {
  max-width: 460px;
  max-width: 28.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .point-item__banner-text {
    max-width: none;
    font-size: 0.9375rem;
    text-align: left;
  }
}

/* 背景固定追従動画 — ビューポート全体に常時表示し、各セクションが上に重なる */
.movie {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.movie__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.movie__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.movie__poster.is-hidden {
  opacity: 0;
}

/* FV フルムービー モーダル — J-Security モーダル仕様踏襲 (PCデザインのみ採用) */
.movie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99999;
  opacity: 0;
  overflow: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
  will-change: top, left, width, height, border-radius;
}

.movie-modal.is-open {
  background-color: #000;
  opacity: 1;
}

.movie-modal__content {
  position: relative;
  width: 100%;
  height: calc(100% + 0.0625rem);
  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;
}

.movie-modal__video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.movie-modal__close {
  position: absolute;
  top: 28px;
  top: 1.75rem;
  right: 28px;
  right: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) opacity;
  transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) opacity;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .movie-modal__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}

.movie-modal__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scaleX(0);
          transform: translate(-50%, -50%) scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background-color: #fff;
  -webkit-transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) -webkit-transform;
  transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) -webkit-transform;
  transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) transform;
  transition: 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) transform, 0.4s cubic-bezier(0.58, 0.01, 0.05, 1) -webkit-transform;
}

@media (any-hover: hover) {
  .movie-modal__close:hover::after {
    -webkit-transform: translate(-50%, -50%) scaleX(1);
            transform: translate(-50%, -50%) scaleX(1);
  }
}
/* 動画コントロール */
.movie-controls {
  position: absolute;
  bottom: 36px;
  bottom: 2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(1000px, 100% - 48px);
  width: min(62.5rem, 100% - 3rem);
  z-index: 2;
}

.movie-controls__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .movie-controls__inner {
    gap: 0.75rem;
  }
}

.movie-controls__play-pause {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  width: 1.5rem;
  aspect-ratio: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

.movie-controls__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.movie-controls__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.movie-controls__icon--pause {
  display: none;
}

.movie-controls__play-pause.is-playing .movie-controls__icon--play {
  display: none;
}

.movie-controls__play-pause.is-playing .movie-controls__icon--pause {
  display: block;
}

.movie-controls__progress {
  -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;
  gap: 12px;
  gap: 0.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
}

.movie-controls__progress-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 5px;
  height: 0.3125rem;
  background-color: rgba(255, 255, 255, .2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out background-color;
  transition: 0.3s ease-in-out background-color;
}

@media (any-hover: hover) {
  .movie-controls__progress-bar:hover {
    background-color: rgba(255, 255, 255, .3);
  }
}
.movie-controls__progress-fill {
  height: 100%;
  width: 0%;
  background-color: #fff;
  -webkit-transition: width 0.1s ease;
  transition: width 0.1s ease;
}

.movie-controls__mute {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  width: 1.5rem;
  aspect-ratio: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .movie-controls__mute {
    width: 1.875rem;
  }
}

.movie-controls__mute .movie-controls__icon--volume {
  display: block;
  width: 100%;
  height: 100%;
}

.movie-controls__mute::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 20px;
  width: 1.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #fff;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0, 1) -webkit-transform;
  transition: 0.4s cubic-bezier(0.4, 0, 0, 1) -webkit-transform;
  transition: 0.4s cubic-bezier(0.4, 0, 0, 1) transform;
  transition: 0.4s cubic-bezier(0.4, 0, 0, 1) transform, 0.4s cubic-bezier(0.4, 0, 0, 1) -webkit-transform;
}
@media screen and (max-width: 767px) {
  .movie-controls__mute::after {
    width: 1.5625rem;
  }
}

.movie-controls__mute.is-muted::after {
  -webkit-transform: translateX(-50%) scaleX(1);
          transform: translateX(-50%) scaleX(1);
}

/* FV (Figma node 2565:994) — height 840 / overlay rgba(0,0,0,0.4) */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100vh;
    min-height: 47rem;
    padding-bottom: 0;
  }
}

.fv__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1;
}

.fv__inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    place-content: center;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
  }
}

.fv__copy {
  margin-top: 50px;
  margin-top: 3.125rem;
  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: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .fv__copy {
    margin-top: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.fv__title {
  display: block;
  width: 483px;
  width: 30.1875rem;
  max-width: 100%;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .fv__title {
    width: 12.875rem;
  }
}

.fv__title img {
  display: block;
  width: 100%;
  height: auto;
}

.fv__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    text-align: left;
  }
}

.fv__scroll {
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .fv__scroll {
    display: none;
  }
}

.fv__scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #808080;
}

.fv__scroll-line {
  display: block;
  width: 1px;
  width: 0.0625rem;
  height: 96px;
  height: 6rem;
  background-color: #808080;
  position: relative;
}

.fv__scroll-circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  aspect-ratio: 1;
  width: 5px;
  width: 0.3125rem;
  border-radius: 50%;
  background-color: #808080;
  -webkit-animation: circle 3s cubic-bezier(0.61, 0, 0.31, 1) infinite;
          animation: circle 3s cubic-bezier(0.61, 0, 0.31, 1) infinite;
}

@-webkit-keyframes circle {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 1;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    top: 100%;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    top: 100%;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes circle {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 1;
    top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    top: 100%;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    top: 100%;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.fv__movie {
  position: absolute;
  right: 27px;
  right: 1.6875rem;
  bottom: 40px;
  bottom: 2.5rem;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 209px;
  width: 13.0625rem;
  height: 64px;
  height: 4rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid #808080;
  border: 0.0625rem solid #808080;
  background-color: rgba(0, 0, 0, .2);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .fv__movie {
    right: 0.875rem;
    bottom: 5.5rem;
    width: 13.0625rem;
    height: 4rem;
  }
}

.fv__movie-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .fv__movie-label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0.75rem;
  }
}

.fv__movie-arrow {
  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;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .fv__movie-arrow {
    margin-right: 1.5rem;
  }
}

.fv__movie-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__movie-thumb {
  display: block;
  width: 113px;
  width: 7.0625rem;
  height: 64px;
  height: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #808080;
  border: 0.0625rem solid #808080;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .fv__movie-thumb {
    width: 7.0625rem;
    height: 4rem;
  }
}

@media (any-hover: hover) {
  .fv__movie:hover {
    background-color: rgba(255, 255, 255, .18);
  }
}
/* intro (Figma node 2565:1037) — height 936 / overlay rgba(0,0,0,0.4) / 本文 line-height 2.5em */
/* フィードバック[1]: ブロック全体は中央配置、各テキストの左端は揃える（text-align: left） */
.intro {
  position: relative;
  width: 100%;
  min-height: 936px;
  min-height: 58.5rem;
  padding-bottom: 110vh;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .intro {
    min-height: 58.5rem;
    padding: 3rem 0 70vh;
  }
}

.intro__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1;
}

.intro__inner {
  position: relative;
  z-index: 2;
  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;
  height: 100%;
  max-width: 480px;
  max-width: 30rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.5;
  gap: 1lh;
}
@media screen and (max-width: 767px) {
  .intro__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    font-size: 0.9375rem;
    line-height: 2.5;
    gap: 1lh;
  }
}

/* Figma PC: 15/400/2.5/0.05em / white */
.intro__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(13.008px, 8.448px + 0.455vi, 15.008px);
  font-size: clamp(0.813rem, 0.528rem + 0.455vi, 0.938rem);
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 0.9375rem;
    line-height: 2.5;
  }
}

.intro__emph {
  display: block;
  margin-top: -10px;
  margin-top: -0.625rem;
  margin-bottom: -44px;
  margin-bottom: -2.75rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .intro__emph {
    margin-top: -0.625rem;
    margin-bottom: -2.5rem;
  }
}

.craft-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -100vh;
  overflow: clip;
  padding-bottom: 30vh;
}

.craft-strip__overlay {
  position: fixed;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6eb), color-stop(90%, #f6f6f8));
  background: linear-gradient(180deg, #e6e6eb 0%, #f6f6f8 90%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  will-change: opacity;
}

.craft-strip__lead {
  position: sticky;
  height: 100vh;
  top: 0;
  margin-bottom: 70vh;
  margin-top: -100vh;
  width: 100%;
  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;
  z-index: 1;
}

.craft-strip__stage {
  position: relative;
  z-index: 3;
}

.craft-strip__icons {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  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;
  z-index: 1;
  pointer-events: none;
}

.craft-strip__items {
  position: relative;
  z-index: 2;
  margin: -100vh 0 0;
  padding: 0;
  list-style: none;
}

.craft-strip__item {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 240px;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .craft-strip__item {
    margin-bottom: 7.5rem;
  }
}

.craft-strip__item:last-of-type {
  margin-bottom: unset;
}

.craft-strip__bg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

.craft-strip__main {
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .craft-strip__main {
    max-width: unset;
  }
}

.craft-strip__icons .craft-strip__main {
  position: absolute;
}

.craft-strip__main--01 {
  width: 618px;
  width: 38.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .craft-strip__main--01 {
    width: auto;
    height: 100vh;
  }
}

.craft-strip__main--02 {
  width: 784px;
  width: 49rem;
  height: 480px;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .craft-strip__main--02 {
    width: 39.0625rem;
    height: auto;
  }
}

.craft-strip__main--03 {
  width: 736px;
  width: 46rem;
  height: 480px;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .craft-strip__main--03 {
    width: 36.5625rem;
    height: auto;
  }
}

.craft-strip__main--04 {
  width: 544px;
  width: 34rem;
  height: 480px;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .craft-strip__main--04 {
    width: 27rem;
    height: auto;
  }
}

.craft-strip__main--05 {
  width: 528px;
  width: 33rem;
  height: 480px;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .craft-strip__main--05 {
    width: 26.25rem;
    height: auto;
  }
}

/* ============== section root (Figma 2565:1066 layout_O9BA92) ============== */
.strongpoint {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 200px 0;
  padding: 12.5rem 0;
  background-color: #f6f6f8;
}
@media screen and (max-width: 767px) {
  .strongpoint {
    padding: 6rem 0 7.5rem;
  }
}

.strongpoint__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* ============== heading block (Figma 2565:1067 layout_OI4S7X) ============== */
.strongpoint__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .strongpoint__heading {
    gap: 0.625rem;
    padding: 0;
    margin-bottom: 3.125rem;
  }
}

/* en (装飾span) : Figma — PC 144/500/1.0/0.05em → SP 63/500/1.0/0em / uppercase */
.strongpoint__heading-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 144px;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .strongpoint__heading-en {
    white-space: unset;
    font-size: 3.9375rem;
    letter-spacing: 0;
    margin-left: -1.5625rem;
    width: calc(100% + 3.125rem);
  }
}

.strongpoint__heading-en br {
  display: block;
}

/* ja (h2) : Figma 2565:1069 — NSJ 700 / 18px (PC) → 16px (SP) / 1.75 / 0.05em */
.strongpoint__heading-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .strongpoint__heading-ja {
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* ============== list (Figma layout_S53WMB column gap 120) ============== */
.strongpoint__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
  gap: 7.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .strongpoint__list {
    gap: 4.5rem;
  }
}

.strongpoint__list > li {
  list-style: none;
}

/* ============== section root (sticky reveal) ============== */
.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: clip;
}

/* ============== movie (sticky 100vh / slide が上に被さってくる) ============== */
.product__movie {
  position: sticky;
  top: 0;
  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;
  height: 100vh;
  background-color: rgba(0, 0, 0, .4);
}

/* Figma: PC 22/700/1.5/0.05em → SP 20/700/1.5/0em */
.product__movie-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product__movie-title {
    font-size: 1.25rem;
    letter-spacing: 0;
    padding: 0 24px;
    margin-top: 1.875rem;
  }
}

/* ============== slide (white card / sticky movie に上から被さる) ============== */
.product__slide {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  margin-top: -5rem;
  padding: 120px 0 200px;
  padding: 7.5rem 0 12.5rem;
  background-color: #fff;
  border-radius: 5rem 5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .product__slide {
    margin-top: -2.5rem;
    padding: 5rem 0 7.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
    gap: 3rem;
  }
}

.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ============== head ============== */
.product__head {
  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: 56px;
  gap: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product__head {
    gap: 2rem;
  }
}

/* Figma: PC 144/500/1.0/0.05em → SP 63/500/1.0/0em */
.product__en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 144px;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
}
@media screen and (max-width: 767px) {
  .product__en {
    font-size: 3.9375rem;
    letter-spacing: 0;
  }
}

/* Figma: PC 18 / SP 18, 400/1.75/0.05em */
.product__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .product__lead {
    font-size: 1.125rem;
    text-align: left;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .product__lead br {
    display: none;
  }
}

.product__btn {
  width: auto;
  height: 40px;
  height: 2.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  min-width: 320px;
  min-width: 20rem;
  background-color: #1c1c1c;
  color: #fff;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .product__btn {
    width: 100%;
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.8125rem;
    min-width: unset;
  }
}

.product__btn-icon {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

@media (any-hover: hover) {
  .product__btn:hover {
    background-color: #171c61;
  }
  .product__btn:hover .product__btn-icon {
    -webkit-transform: translate(0.125rem, -0.125rem);
            transform: translate(0.125rem, -0.125rem);
  }
}
/* ============== list (infinite loop slider via CSS) ============== */
/* .product 側の overflow:hidden を外したため、横スクロール track のクリップはここで行う */
.product__list {
  width: 100%;
  overflow: hidden;
}

.product__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 64px;
  gap: 4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: product-scroll-left 40s linear infinite;
          animation: product-scroll-left 40s linear infinite;
}
@media screen and (max-width: 767px) {
  .product__track {
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation-duration: 30s;
            animation-duration: 30s;
  }
}

.product__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product__item {
    max-height: 8.75rem;
  }
}

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

/* fixed dimensions per Figma — 番号付きクラスで固定 (位置依存 nth-child から脱却) */
.product__item--01 {
  width: 208px;
  width: 13rem;
  height: 61px;
  height: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .product__item--01 {
    width: 8.75rem;
    height: auto;
  }
}

.product__item--02 {
  width: 120px;
  width: 7.5rem;
  height: 206px;
  height: 12.875rem;
}
@media screen and (max-width: 767px) {
  .product__item--02 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--03 {
  width: 120px;
  width: 7.5rem;
  height: 146px;
  height: 9.125rem;
}
@media screen and (max-width: 767px) {
  .product__item--03 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--04 {
  width: 87px;
  width: 5.4375rem;
  height: 205px;
  height: 12.8125rem;
}
@media screen and (max-width: 767px) {
  .product__item--04 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--05 {
  width: 120px;
  width: 7.5rem;
  height: 180px;
  height: 11.25rem;
}
@media screen and (max-width: 767px) {
  .product__item--05 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--06 {
  width: 255px;
  width: 15.9375rem;
  height: 220px;
  height: 13.75rem;
}
@media screen and (max-width: 767px) {
  .product__item--06 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--07 {
  width: 160px;
  width: 10rem;
  height: 226px;
  height: 14.125rem;
}
@media screen and (max-width: 767px) {
  .product__item--07 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--08 {
  width: 176px;
  width: 11rem;
  height: 231px;
  height: 14.4375rem;
}
@media screen and (max-width: 767px) {
  .product__item--08 {
    width: 6.25rem;
    height: auto;
  }
}

.product__item--09 {
  width: 120px;
  width: 7.5rem;
  height: 221px;
  height: 13.8125rem;
}
@media screen and (max-width: 767px) {
  .product__item--09 {
    width: 6.25rem;
    height: auto;
  }
}

@-webkit-keyframes product-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes product-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* Figma node 2565:1227 — case (制作事例) Swiper スライダー */
.case {
  background-color: #fff;
  margin-top: -1px;
  overflow: hidden;
}

.case__wrap {
  background-color: #f6f6f8;
  border-radius: 5rem 5rem 0 0;
  padding: 120px 0 200px;
  padding: 7.5rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .case__wrap {
    border-radius: 2.5rem 2.5rem 0 0;
    padding: 4rem 0 6rem;
  }
}

.case__inner {
  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: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .case__inner {
    gap: 1.5rem;
  }
}

.case__head {
  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: 24px;
  gap: 1.5rem;
  text-align: center;
}

.case__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .case__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.case__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}

/* ============== slider container ============== */
.case__slider {
  width: 100%;
  position: relative;
  overflow: visible !important;
}

.case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ============== each slide ============== */
.case__group {
  display: grid;
  grid-template-columns: 47.875rem 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 936px;
  width: 58.5rem;
  list-style: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .case__group {
    grid-template-columns: 1fr;
    width: 20.25rem;
  }
}

.case__group.swiper-slide-active {
  opacity: 1;
}

/* メイン画像: 640x600 ≒ 16:15 (Figma 比) */
.case__main {
  width: 100%;
  aspect-ratio: 766/600;
  overflow: hidden;
}

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

/* サブ縦積み 3 枚: メインの高さに揃えて均等分割 */
.case__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .case__sub {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.case__sub li {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .case__sub li {
    aspect-ratio: 1;
  }
}

.case .swiper-slide {
  width: 960px;
  width: 60rem;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .case .swiper-slide {
    width: 19.5rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.case .swiper-slide.swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

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

/* ============== controls (Figma 2565:1236 = 480x64 / prev・track・next を 1 段) ============== */
.case__controls {
  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: 36px;
  gap: 2.25rem;
  margin-top: 80px;
  margin-top: 5rem;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  .case__controls {
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

/* prev / next: 64x64 円形ボーダー (Figma 2565:1238 stroke #a0a0a0 = --m-gray-1) */
.case__nav {
  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;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  background: transparent;
  border: 1px solid #a0a0a0;
  border: 0.0625rem solid #a0a0a0;
  border-radius: 50%;
  cursor: pointer;
  color: #1c1c1c;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .case__nav {
    width: 3rem;
    height: 3rem;
  }
}

/* 矢印: Figma frame 14x14 (node 2565:1239), fill #1c1c1c */
.case__nav-icon {
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.case__nav--prev .case__nav-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.case__nav:disabled {
  opacity: 0.3;
  cursor: default;
}

/* progress: Figma node 2565:1245/1246 — track 280 wide rem(1) (#a0a0a0) + fill rem(2) (#1c1c1c)。
   トラックを ::before、Swiper が制御する .swiper-pagination-progressbar-fill を太い rem(2) のフィルに上書き。*/
.case__progress {
  position: relative;
  width: 280px !important;
  width: 17.5rem !important;
  height: 2px;
  height: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .case__progress {
    width: 12rem !important;
  }
}

.case__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  height: 0.0625rem;
  background-color: #a0a0a0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.case__progress.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background-color: #1c1c1c;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

@media (any-hover: hover) {
  .case__nav:hover {
    background-color: #fff;
  }
}
/* Figma node 2565:1249 — review (お客様の声) */
.review {
  background-color: #fff;
  padding: 160px 0;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .review {
    padding: 6rem 0 5rem;
  }
}

.review__inner {
  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: 80px;
  gap: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .review__inner {
    gap: 2.6875rem;
  }
}

.review__head {
  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: 24px;
  gap: 1.5rem;
  text-align: center;
}

.review__head-inner {
  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;
  gap: 1rem;
}

.review__title-icon {
  width: 86px;
  width: 5.375rem;
  height: 80px;
  height: 5rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.review__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  .review__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.review__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
}

.review__slider {
  overflow: visible !important;
  width: 100%;
  max-width: 1100px;
  max-width: 68.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .review__slider {
    max-width: none;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 2.5rem 0;
    overflow: hidden !important;
  }
}

/* PC: flex-wrap で3列折り返し（Swiperはbreakpointsでdisabled）。SPはSwiperのtransformに任せる */
.review__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px 48px;
  gap: 4rem 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .review__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}

.review__item {
  position: relative;
  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-flex: 0;
      -ms-flex: 0 0 322px;
          flex: 0 0 322px;
  -ms-flex: 0 0 20.125rem;
      flex: 0 0 20.125rem;
  gap: 32px;
  gap: 2rem;
  width: 322px;
  width: 20.125rem;
  height: 360px;
  height: 22.5rem;
  padding: 56px 24px 24px;
  padding: 3.5rem 1.5rem 1.5rem;
  border: 1px solid #1c1c1c;
  border: 0.0625rem solid #1c1c1c;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .review__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19.5rem;
            flex: 0 0 19.5rem;
    width: 19.5rem;
    height: auto;
    min-height: 22.5rem;
  }
}

.review__avatar {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #1c1c1c;
  border: 0.0625rem solid #1c1c1c;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.review__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  place-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
  color: #1c1c1c;
}

.review__tags {
  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: 8px;
  gap: 0.5rem;
  padding: 24px 0;
  padding: 1.5rem 0;
  background-color: #f6f6f8;
  border-radius: 0.5rem;
}

.review__tag {
  display: inline-block;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  background-color: #1c1c1c;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.review__product {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
}

/* Figma node 2565:1328 — price (料金体系・納期目安) */
.price {
  background-color: #f6f6f8;
  padding: 160px 0 0;
  padding: 10rem 0 0;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 5rem 0 0;
  }
}

.price__inner {
  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: 48px;
  gap: 3rem;
  width: 100%;
  max-width: 1130px;
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .price__inner {
    gap: 2rem;
  }
}

/* ============== heading ============== */
.price__head {
  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;
  gap: 1rem;
  text-align: center;
}

.price__title-icon {
  width: 86px;
  width: 5.375rem;
  height: 80px;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.price__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.price__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}

/* ============== card list ============== */
.price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .price__list {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
}

.price__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding-top: 56px;
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .price__item {
    padding-top: 1.375rem;
  }
}

/* Figma: カード見出し（青/紺背景）13/400/1.4/0em */
.price__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 56px;
  height: 3.5rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  background-color: #1c1c1c;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .price__item-label {
    padding: 0.75rem 1rem;
  }
}

.price__item-img {
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .price__item-img {
    display: none;
  }
}

.price__item-img--wolf {
  top: -7.8px;
  top: -0.4875rem;
  right: 24px;
  right: 1.5rem;
  width: 146px;
  width: 9.125rem;
  height: 112px;
  height: 7rem;
}

.price__item-img--susanoo {
  top: -7.8px;
  top: -0.4875rem;
  right: 24px;
  right: 1.5rem;
  width: 128px;
  width: 8rem;
  height: 112px;
  height: 7rem;
}

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

.price__item-body {
  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: 24px;
  gap: 1.5rem;
  padding: 24px;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .price__item-body {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

/* ============== tags ============== */
.price__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .price__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.3125rem;
  }
}

.price__tag {
  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;
  padding: 8px 32px;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .price__tag {
    padding: 0.5rem 1.25rem;
  }
}

.price__tag--main {
  background-color: #171c61;
}
@media screen and (max-width: 767px) {
  .price__tag--main {
    width: 10rem;
  }
}

.price__tag--sub {
  background-color: #38acb5;
}
@media screen and (max-width: 767px) {
  .price__tag--sub {
    width: 10rem;
  }
}

.price__tag-plus {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ============== meta (delivery + free shipping) ============== */
.price__meta {
  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;
  gap: 0.5rem;
  padding: 12px 48px;
  padding: 0.75rem 3rem;
  background-color: #ebf1f5;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .price__meta {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
}

.price__meta-icon {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Figma: 18/700/1.4/0em (PC/SP共通) */
.price__meta-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
}

/* Figma: 16/700/1.4/0em (PC/SP共通) */
.price__meta-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  background-color: #171c61;
  border-radius: 50%;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__meta-badge {
    width: 4rem;
    height: 4rem;
  }
}

/* Figma: 13/400/1.4/0em */
.price__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  width: 100%;
  text-align: left;
}

/* ============== calc block ============== */
.price__calc {
  margin-top: -20px;
  margin-top: -1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .price__calc {
    margin-top: unset;
  }
}

/* Figma: 料金計算方法バー 13/400/1.4/0em */
.price__calc-label {
  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;
  height: 45px;
  height: 2.8125rem;
  padding: 8px 126px;
  padding: 0.5rem 7.875rem;
  background-color: #1c1c1c;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  border-radius: 0.5rem 0.5rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__calc-label {
    padding: 1rem 1.5rem;
  }
}

.price__calc-body {
  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: 24px;
  gap: 1.5rem;
  padding: 24px;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .price__calc-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem;
  }
}

.price__calc-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  width: 360px;
  width: 22.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .price__calc-left {
    width: 100%;
    gap: 1rem;
  }
}

.price__calc-title {
  min-width: 160px;
  min-width: 10rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 32px;
  padding: 0.5rem 2rem;
  background-color: #38acb5;
  color: #fff;
  border-radius: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .price__calc-title {
    -ms-flex-item-align: center;
        align-self: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.8125rem;
  }
}

.price__calc-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: left;
}

/* Figma: 18/700/1.4/0em (幅×高さ×奥行き) PC/SP共通 */
.price__calc-emph {
  display: block;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  width: 240px;
  width: 15rem;
  text-align: center;
  margin: 17px 4px 7px;
  margin: 1.0625rem 0.25rem 0.4375rem;
  background-color: #ebf1f5;
  border-radius: 0.25rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  .price__calc-emph {
    display: block;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    margin: 0.75rem 0 -0.4375rem;
    text-align: center;
  }
}

/* Figma: 注釈 13/400/1.4/0em */
.price__calc-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .price__calc-note {
    margin-top: 0.375rem;
  }
}

.price__calc-img {
  width: 437px;
  width: 27.3125rem;
  height: 328px;
  height: 20.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .price__calc-img {
    width: 100%;
    height: auto;
  }
}

/* Figma node 2565:1425 — flow (ご注文までの流れ) */
.flow {
  margin-top: -1px;
  position: relative;
  background-color: #f6f6f8;
  padding: 160px 0 0;
  padding: 10rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 5rem 0 0;
  }
}

.flow__bg {
  position: absolute;
  top: 80px;
  top: 5rem;
  width: 548px;
  width: 34.25rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
  .flow__bg {
    top: 10rem;
    width: 11.25rem;
  }
}

.flow__bg.is-active {
  opacity: 0.4;
}

.flow__bg--tab1 {
  left: 32px;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .flow__bg--tab1 {
    top: 14.1875rem;
    left: 0;
  }
}

.flow__bg--tab2 {
  right: 176px;
  right: 11rem;
  top: 112px;
  top: 7rem;
  width: 363px;
  width: 22.6875rem;
  aspect-ratio: 363/320;
}
@media screen and (max-width: 767px) {
  .flow__bg--tab2 {
    right: 0;
    width: 7.8125rem;
    top: 14.0625rem;
  }
}

.flow__inner {
  position: relative;
  z-index: 1;
  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: 48px;
  gap: 3rem;
  width: 100%;
  max-width: 1130px;
  max-width: 70.625rem;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    gap: 3.75rem;
  }
}

/* ============== heading ============== */
.flow__head {
  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;
  gap: 1rem;
  text-align: center;
}

.flow__title-icon {
  width: 86px;
  width: 5.375rem;
  height: 80px;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.flow__lead-head {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}

/* ============== body container (tabs + lead + steps) ============== */
.flow__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  width: 100%;
}

.flow__group {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  row-gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow__group {
    row-gap: 1.375rem;
  }
}

/* ============== tabs ============== */
.flow__tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  border-bottom: 1px solid #1c1c1c;
  border-bottom: 0.0625rem solid #1c1c1c;
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .flow__tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 0;
  }
}

/* Figma: タブ 13/400/1.4/0em (PC/SP共通)
 * 高さは active/inactive 共通。active は背景色のみ変化（切替時のレイアウトシフト防止） */
.flow__tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  gap: 0.5rem;
  height: 56px;
  height: 3.5rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .flow__tab {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    min-height: 2.75rem;
    padding: 0.625rem 0.5rem;
    font-size: 0.8125rem;
    text-align: center;
  }
}

.flow__tab.is-active {
  background-color: #38acb5;
  color: #fff;
}

.flow__tab-img {
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .flow__tab-img {
    display: none;
  }
}

.flow__tab-img--wolf {
  width: 146px;
  width: 9.125rem;
  height: 112px;
  height: 7rem;
  right: 8px;
  right: 0.5rem;
  bottom: 0;
}

.flow__tab-img--susanoo {
  width: 128px;
  width: 8rem;
  height: 112px;
  height: 7rem;
  right: 108px;
  right: 6.75rem;
  bottom: 8px;
  bottom: 0.5rem;
}

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

/* ============== panel (tab 切り替えで lead+steps を表示)
 * パネルを同じグリッドセルにスタックして、コンテナ高さを最大パネルに合わせる
 * (タブ切替時のレイアウトシフト防止) */
.flow__panel {
  grid-column: 1;
  grid-row: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}
@media screen and (max-width: 767px) {
  .flow__panel {
    gap: 1.25rem;
  }
}

.flow__panel.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0s;
  transition: opacity 0.4s ease, visibility 0s 0s;
}

/* ============== sub lead ============== */
.flow__lead {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: left;
}

/* ============== steps (3x2 grid) ============== */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 48px;
  row-gap: 3rem;
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .flow__steps {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}

.flow__step {
  position: relative;
  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;
  gap: 1rem;
  width: 100%;
  height: 100%;
  min-height: 360px;
  min-height: 22.5rem;
  padding: 24px 30px;
  padding: 1.5rem 1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .flow__step {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: auto;
    min-height: unset;
    padding: 1rem 1rem 0.6875rem;
  }
}

@media screen and (max-width: 767px) {
  .flow__step > * {
    grid-column: 2;
  }
}

/* arrows between steps (列の途中で挿入)
 * - tab1 (6 steps): 1→2, 2→3, 4→5, 5→6
 * - tab2 (5 steps): 1→2, 2→3, 4→5
 * - 列の最後 (3) / panel の最後 (:last-child) には出さない */
.flow__step:nth-child(1):not(:last-child)::after,
.flow__step:nth-child(2):not(:last-child)::after,
.flow__step:nth-child(4):not(:last-child)::after,
.flow__step:nth-child(5):not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45px;
  right: -2.8125rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow__step:nth-child(1):not(:last-child)::after,
  .flow__step:nth-child(2):not(:last-child)::after,
  .flow__step:nth-child(4):not(:last-child)::after,
  .flow__step:nth-child(5):not(:last-child)::after {
    display: none;
  }
}

.flow__step:nth-child(1)::after {
  background-image: url("../images/flow/flow_arrow_01.svg");
}

.flow__step:nth-child(2)::after {
  background-image: url("../images/flow/flow_arrow_02.svg");
}

.flow__step:nth-child(4)::after {
  background-image: url("../images/flow/flow_arrow_04.svg");
}

.flow__step:nth-child(5)::after {
  background-image: url("../images/flow/flow_arrow_05.svg");
}

/* SP: 下方向矢印を全ステップ間に挿入 */
.flow__step:not(:last-child)::before {
  content: "";
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__step:not(:last-child)::before {
    display: block;
    position: absolute;
    left: 50%;
    bottom: -2.375rem;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    width: 2rem;
    height: 2rem;
    background-image: url("../images/flow/flow_arrow_01.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 2;
  }
}

.flow__step-head {
  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: 8px;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .flow__step-head {
    grid-column: 1;
    grid-row: 1/span 10;
    width: 4.5rem;
  }
}

.flow__step-num {
  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;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background-color: #1c1c1c;
  color: #fff;
  border-radius: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flow__step-icon {
  width: 72px;
  width: 4.5rem;
  height: 72px;
  height: 4.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Figma: ステップ見出し 18/700/1.4/0em (PC/SP共通) */
.flow__step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: -10px;
  margin-bottom: -0.625rem;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow__step-title {
    text-align: left;
    margin-bottom: 0.625rem;
  }
}

.flow__step-title-sub {
  font-size: 15px;
  font-size: 0.9375rem;
}
.flow__step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flow__step-text {
    margin-bottom: 0.4375rem;
  }
}

/* Figma: 補足注釈 13/400/1.4/0em */
.flow__step-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: left;
  width: 100%;
}

.flow__step-button {
  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;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 8px;
  gap: 0.5rem;
  width: 168px;
  width: 10.5rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 16px;
  padding: 0 1rem;
  border: 1px solid #1c1c1c;
  border: 0.0625rem solid #1c1c1c;
  border-radius: 1.5rem;
  background-color: transparent;
  color: #1c1c1c;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .flow__step-button {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 0;
  }
}

.flow__step-button-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-filter 0.25s ease, -webkit-transform 0.25s ease;
  transition: -webkit-filter 0.25s ease, -webkit-transform 0.25s ease;
  transition: filter 0.25s ease, transform 0.25s ease;
  transition: filter 0.25s ease, transform 0.25s ease, -webkit-filter 0.25s ease, -webkit-transform 0.25s ease;
}

@media (any-hover: hover) {
  .flow__step-button:hover {
    background-color: #1c1c1c;
    color: #fff;
  }
  .flow__step-button:hover .flow__step-button-icon {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
    -webkit-transform: translateX(0.125rem);
            transform: translateX(0.125rem);
  }
}
/* ============== arrows (hidden, replaced by grid layout) ============== */
.flow__arrow {
  display: none;
}

/* Figma node 2565:1624 — banner (3Dをもっと知る) */
.banner {
  margin-top: -1px;
  background-color: #f6f6f8;
  padding: 96px 0 160px;
  padding: 6rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 6rem 0 4rem;
  }
}

.banner__inner {
  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: 48px;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .banner__inner {
    gap: 3rem;
  }
}

/* ============== heading ============== */
.banner__heading {
  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: 24px;
  gap: 1.5rem;
  text-align: center;
}

.banner__head {
  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;
  gap: 16px;
  gap: 1rem;
}

.banner__title-icon {
  width: 90px;
  width: 5.625rem;
  height: 84px;
  height: 5.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.banner__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
}

/* ============== card list ============== */
.banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .banner__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.banner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 520px;
  width: 32.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .banner__item {
    width: 100%;
  }
}

.banner__item-link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.banner__item-head {
  position: relative;
  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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  aspect-ratio: 520/240;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .banner__item-head {
    aspect-ratio: 327/200;
  }
}

.banner__item--blog .banner__item-head {
  background-color: #38acb5;
}

.banner__item--youtube .banner__item-head {
  background-color: #171c61;
}

.banner__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.3s ease;
  transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
}

@media (any-hover: hover) {
  .banner__item-link-area:hover .banner__item-img {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
    opacity: 0.85;
  }
}
.banner__item-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  margin: 0;
}

.banner__item-en--blog {
  color: #38acb5;
}

.banner__item-en--youtube {
  color: #171c61;
}

.banner__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 8px;
  gap: 0.5rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
}

.banner__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: left;
  margin: 0;
}

.banner__item-link {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  gap: 8px;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c1c1c;
}

.banner__item-link-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

@media (any-hover: hover) {
  .banner__item-link-area:hover .banner__item-link-icon {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
}
/* Figma node 2565:1673 — faq (よくある質問) */
.faq {
  margin-top: -1px;
  background-color: #fff;
  padding: 160px 0;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 5rem 0;
  }
}

.faq__inner {
  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: 48px;
  gap: 3rem;
}

.faq__group {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
  max-width: 840px;
  max-width: 52.5rem;
}

.faq__group.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: faq-group-fade 0.4s ease forwards;
          animation: faq-group-fade 0.4s ease forwards;
}

@-webkit-keyframes faq-group-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes faq-group-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq__group-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #171c61;
  text-align: left;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #38acb5;
  border-bottom: 0.125rem solid #38acb5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .faq__group-title {
    font-size: 1.0625rem;
  }
}

/* ============== heading ============== */
.faq__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

/* ============== tabs (4 tabs) ============== */
.faq__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  gap: 0.5rem;
  width: 100%;
  max-width: 840px;
  max-width: 52.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #1c1c1c;
  border-bottom: 0.0625rem solid #1c1c1c;
}
@media screen and (max-width: 767px) {
  .faq__tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.25rem;
  }
}

/* Figma: タブラベル 13/400/1.0/0.05em PC/SP共通 */
.faq__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  height: 2.5rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
  background-color: transparent;
  color: #1c1c1c;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__tab {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: auto;
    min-height: 2.5rem;
    padding: 0.5rem 0.25rem;
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.faq__tab.is-active {
  background-color: #38acb5;
  color: #fff;
}

/* ============== list ============== */
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
  max-width: 840px;
  max-width: 52.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  padding: 0 14px 24px;
  padding: 0 0.875rem 1.5rem;
  border-bottom: 1px solid #c8c8c8;
  border-bottom: 0.0625rem solid #c8c8c8;
}

.faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__q {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  text-align: left;
}

.faq__badge {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  width: 2rem;
  border-radius: 50%;
  height: 32px;
  height: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
}

.faq__badge--q {
  background-color: #1c1c1c;
  color: #fff;
}

.faq__badge--a {
  background-color: #fff;
  color: #1c1c1c;
}

/* Figma: 質問文 16/700/1.4/0em PC/SP共通 */
.faq__q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1c1c1c;
  text-align: left;
  margin: 0;
}

/* Figma: 回答本文 15/400/1.75/0.05em PC/SP共通 */
.faq__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1c1c;
  text-align: left;
  margin: 0;
}

/* 回答内のリンク (例: 入稿ガイドへの誘導) */
.faq__a-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-underline-offset: 0.125rem;
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.faq__a-link:hover {
  color: #38acb5;
  opacity: 0.85;
}

/* option (Figma node 2565:1731) — bg #FFF / padding 160 0 40 / max-width 1080 / 4 cards (530x360) 2x2 grid gap 20 */
.option {
  background-color: #fff;
  padding: 160px 0 40px;
  padding: 10rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .option {
    padding: 5rem 0 2.5rem;
  }
}

.option__inner {
  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;
  width: 100%;
  max-width: 1130px;
  max-width: 70.625rem;
  margin: 0 auto;
}
.option__inner .section-title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .option__inner .section-title {
    margin-bottom: 1.5rem;
  }
}

.option__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .option__lead {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .option__lead br:not(.sp) {
    display: none;
  }
}

.option__lead + .option__lead {
  margin-top: -24px;
  margin-top: -1.5rem;
}

.option__list {
  list-style: none;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .option__list {
    grid-template-columns: 1fr;
    gap: 1.1875rem;
    justify-items: center;
  }
}

.option__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
  height: 360px;
  height: 22.5rem;
  background-color: #171c61;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .option__item {
    max-width: 33.125rem;
    height: auto;
    padding-bottom: 1rem;
  }
}

.option__img {
  display: block;
  width: 100%;
  height: 200px;
  height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .option__img {
    height: 10rem;
  }
}

.option__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  gap: 0.5rem;
  padding: 0 72px 24px;
  padding: 0 4.5rem 1.5rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .option__body {
    padding: 0 0.75rem;
  }
}

/* Figma: カード見出し 18/700/1.4/0em PC/SP共通 */
.option__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin: 0;
}

.option__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  margin: 0;
  width: 100%;
}

.option__bottom-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .option__bottom-lead {
    margin-top: 0.4375rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}

.option__btn {
  width: 328px;
  width: 20.5rem;
  height: 40px;
  height: 2.5rem;
  padding: 0 16px;
  padding: 0 1rem;
  gap: 8px;
  gap: 0.5rem;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
  border: 0.0625rem solid #1c1c1c;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .option__btn {
    width: 100%;
    max-width: 20.5rem;
  }
}

.option__btn-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* sns (Figma node 2565:1759) — bg #FFF / padding 40 0 80 / inner gap 64 / 3 cards (324x104) gap 48 / icon 80x80 absolute top -40 */
.sns {
  margin-top: -1px;
  background-color: #fff;
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .sns {
    padding: 2.5rem 0 4rem;
  }
}

.sns__inner {
  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: 28px;
  gap: 1.75rem;
  width: 100%;
  max-width: 1130px;
  max-width: 70.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sns__inner {
    padding-inline: 0.625rem;
  }
}

.sns__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1c1c1c;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sns__title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}

.sns__list {
  list-style: none;
  margin: 0;
  padding: 40px 0 0;
  padding: 2.5rem 0 0;
  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;
  gap: 48px;
  gap: 3rem;
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .sns__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
  }
}

.sns__item {
  position: relative;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 4px;
  gap: 0.25rem;
  width: 324px;
  width: 20.25rem;
  height: 104px;
  height: 6.5rem;
  padding: 40px 24px 8px;
  padding: 2.5rem 1.5rem 0.5rem;
  border-top: 1px solid #1c1c1c;
  border-top: 0.0625rem solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  border-bottom: 0.0625rem solid #1c1c1c;
}
@media screen and (max-width: 767px) {
  .sns__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: auto;
    min-height: 6.5rem;
    padding: 2.5rem 0 0.5rem;
  }
}

.sns__link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.sns__icon {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  background-color: #fff;
  border: 1px solid #1c1c1c;
  border: 0.0625rem solid #1c1c1c;
  border-radius: 50%;
  margin: 0;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.sns__icon img {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sns__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
  color: #1c1c1c;
  margin: 0;
  width: 100%;
}

@media (any-hover: hover) {
  .sns__link:hover .sns__icon {
    -webkit-transform: translateX(-50%) translateY(-0.25rem);
            transform: translateX(-50%) translateY(-0.25rem);
    background-color: #ebf1f5;
  }
  .sns__link:hover .sns__icon img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
/*# sourceMappingURL=styles.css.map */
