@charset "UTF-8";

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */
:root {
  /* Colors */
  --color-text: #111111;
  --color-bg-light: #F5F7FC;

  /* e.g. Contact, Plan background */
  --color-bg-white: #FFFFFF;
  --color-border: #E5E5E5;
  --color-primary: #8da0b6;
  --color-lb: #E4EBFE;

  /* Buttons, badges, borders depending on comp */
  --color-primary-dark: #6D8294;
  --color-gray: #555;

  /* Text sub colors */
  --color-light-gray: #F0F0F0;
  --color-section-bg: #F7F9FC;
  --color-card-bg: #FFFFFF;
  --color-soft-blue: #E7edf3;
  --color-border-soft: #DCE5EF;

  /* Typography */
  --font-gothic: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Jost', sans-serif;
  --font-en-serif: 'Cormorant Garamond', serif;

  /* Layout */
  --width-container: 1100px;
  /* Guessing from comp, likely 1000-1100px */
}

/* ==========================================================================
   2. Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  height: auto;
}

.lenis.lenis-smooth {
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-gothic);
  font-size: 1.6rem;
  /* 15px */
  font-weight: 500;
  line-height: 2;
  /* comp uses loose line height */
  letter-spacing: 0.1em;
  /* 8% tracking */
  color: var(--color-text);
  background-color: transparent;
  /* changed from var(--color-bg-white) to show aura */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
  font-kerning: normal;
  min-height: 100vh;
  overflow-x: hidden;
}

.pcbr {
  display: block;
}

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

/* ==========================================================================
   2.5 Background Aura Effect (Premium Clouds)
   ========================================================================== */
.bg-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #FFFFFF;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  /* Create dedicated rendering context */
}

.bg-aura__circle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  /* Fading to white + multiply completely bypasses alpha-channel banding */
  animation: auraFloat 12s ease-in-out infinite alternate;
  will-change: transform;
  /* Force hardware acceleration to stop CPU tile slicing */
  transform: translateZ(0);
}

.bg-aura__circle--1 {
  width: 80vw;
  height: 80vw;
  /* Darker core color increases interpolation steps, physically shrinking the visible bands */
  background: radial-gradient(circle, #EEF4FA 0%, #FFFFFF 60%);
  top: -25vw;
  left: -25vw;
  animation-delay: 0s;
}

.bg-aura__circle--2 {
  width: 90vw;
  height: 90vw;
  background: radial-gradient(circle, #F4F8FC 0%, #FFFFFF 60%);
  bottom: -30vw;
  right: -30vw;
  animation-duration: 16s;
  animation-direction: alternate-reverse;
}

@media screen and (max-width: 1024px) {
  .bg-aura__circle--1 {
    width: 120vw;
    height: 120vw;
    top: -30vw;
    left: -40vw;
  }

  .bg-aura__circle--2 {
    width: 130vw;
    height: 130vw;
    bottom: -40vw;
    right: -40vw;
  }
}

@media screen and (max-width: 767px) {
  .bg-aura__circle--1 {
    width: 180vw;
    height: 180vw;
    top: -60vw;
    left: -70vw;
  }

  .bg-aura__circle--2 {
    width: 200vw;
    height: 200vw;
    bottom: -60vw;
    right: -80vw;
  }
}

@keyframes auraFloat {

  /* Using ONLY translate and rotate, NO scale(). 
     Stopping scale prevents the banding rings from expanding/contracting (the "flickering" cause) */
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(8vw, 10vh) rotate(5deg);
  }

  66% {
    transform: translate(-6vw, -8vh) rotate(-3deg);
  }

  100% {
    transform: translate(-10vw, 8vh) rotate(6deg);
  }
}



/* ==========================================================================
   2.6 Background Lines Effect (Wave)
   ========================================================================== */
.bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: var(--color-bg-white);
  pointer-events: none;
  overflow: hidden;
}

.bg-lines__svg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  opacity: 0.6;
}

.bg-lines__path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.bg-lines__path--1 {
  stroke-width: 0.5;
  opacity: 0.4;
  animation: waveMove 18s ease-in-out infinite alternate;
}

.bg-lines__path--2 {
  stroke-width: 1.5;
  opacity: 0.2;
  animation: waveMove 24s ease-in-out infinite alternate-reverse;
}

.bg-lines__path--3 {
  stroke-width: 1;
  opacity: 0.3;
  animation: waveMove 20s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) scaleY(1);
  }

  100% {
    transform: translateX(10%) scaleY(1.1);
  }
}



h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

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

input,
button,
textarea,
select {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* ==========================================================================
   3. Layout & Common
   ========================================================================== */
.l-container {
  max-width: var(--width-container);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--color-gray);
  margin-bottom: 5px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-gothic);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  text-align: center;
  font-family: var(--font-gothic);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--solid {
  background-color: #444;
  color: var(--color-bg-white);
}

.btn--solid:hover {
  background-color: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-bg-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn--ghost:hover {
  background-color: var(--color-bg-light);
}

.u-upper {
  text-transform: uppercase;
}

@media screen and (max-width: 1300px) {
  .l-container {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1200px) {
  .l-container {
    padding: 0 8%;
  }

  .lower-section .l-container {
    padding: 0 8%;
  }
}

@media screen and (max-width: 1000px) {
  .lower-section .l-container {
    padding: 0 8%;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }

  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .section-subtitle {

    font-size: 1.2rem;
  }
}

/* ==========================================================================
   3.5. Page Top
   ========================================================================== */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  background-color: #444;
  color: var(--color-bg-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-top__icon {
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: 4px;
  margin-bottom: 2px;
}

.page-top__text {
  font-size: 1rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}

input[type="checkbox"]:checked {
  background: #666;
  border-color: #666;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 5px;
  left: 4px;
}

@media screen and (min-width: 768px) {
  .page-top {
    right: 40px;
    bottom: 40px;
    width: 80px;
    height: 80px;
  }

  .page-top__icon {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
    margin-bottom: 4px;
  }

  .page-top__text {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   4. Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 100%;
  margin: 0;
  height: 80px;
  align-items: stretch;
  transition: height 0.4s ease;
}

.header__left {
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.header__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 100px;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-text);
  position: relative;
  transition: transform 0.3s ease;
}

.header__contact-btn::after {
  content: '';
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-text);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header__contact-btn:hover {
  transform: translateY(0);
}

.header__contact-btn:hover::after {
  opacity: 1;
}

.header__logo {
  font-size: 1.6rem;
  letter-spacing: 0.3em;
}

/* Logo switcher */
.header__logo a {
  position: relative;
  display: flex;
  align-items: center;
}

.header__logo a:hover {
  transform: translateY(0);
}

.header__logo-short,
.header__logo-long {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.header__logo-short {
  display: block;
}

.header__logo-long {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
}

.header.is-scrolled .header__logo-short {
  opacity: 0;
  transform: translateY(-10px);
}

.header.is-scrolled .header__logo-long {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  font-weight: 500;
}

.header__logo-short {
  display: block;
}

.header__logo-short img {
  width: 40px;
  height: auto;
  display: block;
}

.header__logo-long {
  z-index: 1;
}

.header__logo-short {
  z-index: 2;
}

.header__nav {
  display: block;
}

.header__nav-list {
  display: flex;
  gap: 40px;
}

.header__nav-item a {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  position: relative;
  padding: 10px 0;
}

.header__nav-item a::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-text);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header__nav-item a:hover {
  transform: translateY(0);
}

.header__nav-item a:hover::after,
.header__nav-item.is-current a::after {
  opacity: 1;
}

.header__hamburger {
  display: none;
}

.header__nav-item--contact {
  display: none;
}

.header__nav-ja,
.header__nav-item--contact {
  display: none;
}

@media screen and (max-width: 1360px) {
  html {
    font-size: 62.5%;
  }

  /* Header */
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 6.9%;
  }

  .header.is-scrolled .header__inner {
    height: 60px;
  }

  .header__left {
    position: absolute;
  }

  .header__center {
    justify-content: flex-start;
  }

  .header__logo {
    position: relative;
    z-index: 102;
    font-size: 2.2rem;
  }

  .header__logo-long {
    left: 0;
    transform: translate(0, 10px);
  }

  .header.is-scrolled .header__logo-long {
    transform: translate(0, 0);
  }

  .header__contact-btn {
    display: none;
  }

  /* Mobile Nav */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
    padding: 96px 6.9% 48px;
    background-color: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 38px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .header__nav-item {
    position: relative;
    text-align: center;
  }

  .header__nav-item--contact {
    display: block;
  }

  .header__nav-item a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    text-decoration: none;
    font-size: inherit;
  }

  /* SP：現在地以外の黒丸は完全に出さない */
  .header__nav-item:not(.is-current) a::after,
  .header__nav-item:not(.is-current) a:hover::after,
  .header__nav-item:not(.is-current) a:active::after,
  .header__nav-item:not(.is-current) a:focus::after {
    display: none;
    opacity: 0;
  }

  /* SP：現在地の黒丸だけ表示 */
  .header__nav-item.is-current a::after {
    display: block;
    top: -10px;
    opacity: 1;
  }

  .header__nav-en {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.2em;
  }

  .header__nav-ja {
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: var(--color-gray);
  }

  /* SP：PC用の黒丸を、メニュー用の位置に変更 */
  .header__nav-item.is-current a::after {
    top: -10px;
    opacity: 1;
  }

  /* Hamburger */
  .header__hamburger {
    position: relative;
    z-index: 999;
    display: flex;
    width: 30px;
    height: 20px;
  }

  .header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
  }

  .header__hamburger span:nth-child(1) {
    top: 5px;
  }

  .header__hamburger span:nth-child(2) {
    top: 14px;
  }

  .header__hamburger.is-active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .header__hamburger.is-active span:nth-child(2) {
    top: 10px;
    transform: rotate(-45deg);
  }

  /* SP：タップ時のhover黒丸は出さない */
  .header__nav-item a:hover::after {
    opacity: 0;
  }

  /* SP：現在地だけ黒丸を表示 */
  .header__nav-item.is-current a::after {
    top: -10px;
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .header__inner {
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-item a {
    font-size: 1.5rem;
  }

  .header__inner {
    height: 60px;
  }

  section {
    padding: 0 0 80px;
  }
}

/* ==========================================================================
   5. FV (First View)
   ========================================================================== */
.fv {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding-top: 140px;
}

.fv__inner {
  position: relative;
  width: 100%;
  max-width: var(--width-container);
  margin: 0 auto;
}

.fv__title {
  font-family: var(--font-en-serif);
  font-size: clamp(5rem, 20vw, 17.5rem);
  line-height: 0.85;
  letter-spacing: 0.05em;
  font-weight: 400;
  z-index: 2;
  position: absolute;
  top: 0;
  left: -130px;
  ;
}

.fv__title-left {
  align-self: flex-start;
}

.fv__title-right {
  align-self: flex-end;
  margin-top: -8%;
}

.fv__image-wrapper {
  position: absolute;
  top: 130px;
  max-width: 1100px;
  aspect-ratio: 1100 / 680;
  z-index: 1;
}

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

.fv__message {
  position: absolute;
  right: -140px;
  bottom: 60px;
  z-index: 3;
}

.fv__message p {
  display: block;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
  margin-bottom: 14px;
  padding: 10px 20px;
  font-weight: 600;
}

.fv__scroll {
  display: none;
}

@media (max-width: 1500px) {
  .fv__title {
    left: -75px;
  }
}

@media (max-width: 1360px) {

  /* header */
  .header__nav,
  .header__contact-btn {
    display: none;
  }

  .header__nav.is-open {
    display: block;
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow: hidden;
    width: 100%;
    background: #fff;
    z-index: 101;
    padding: 100px 20px;
    box-sizing: border-box;
  }

  body.is-menu-open {
    overflow: hidden;
    height: 100dvh;
  }

  /* fv */
  .fv {
    height: auto;
    padding: 60px 8%;
  }

  .fv__inner {
    text-align: center;
  }

  .fv__title {
    position: relative;
    margin-bottom: 30px;
    left: 0;
    top: 69px;
    font-size: 11rem;
  }

  .fv__image-wrapper {
    position: static;
    margin: 0 auto;
  }

  .fv__message {
    position: static;
    margin-top: 80px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .header__hamburger {
    display: flex;
    margin-right: 24px;
  }

  /* FV */
  .fv {
    padding: 150px 8%;
  }

  .fv__inner {
    position: relative;
    text-align: center;
  }

  /* 薄い固定線 */
  .fv__scroll::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 44px);
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: rgba(34, 34, 34, 0.18);
  }

  /* 流れる線 */
  .fv__scroll::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 44px);
    width: 1px;
    height: 18px;
    background: var(--color-text);
    animation: fvScrollLine 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    z-index: 1;
  }

  .fv__title {
    font-size: 10rem;
  }

  @keyframes fvScrollLine {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 0;
    }

    20% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateX(-50%) translateY(38px);
      opacity: 0;
    }
  }
}

@media (max-width: 768) {
  .fv {
    padding: 120px 8%;
  }
}

@media (max-width: 767px) {
  .header {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .header__left {
    left: 24px;
    padding-left: 0;
  }

  .header__right {
    margin-left: auto;
  }

  .header__logo-short img {
    width: 40px;
  }

  .header__logo-long {
    display: none;
  }

  /* スクロール時もUDロゴ（short）を消さないように上書き */
  .header.is-scrolled .header__logo-short {
    opacity: 1;
    transform: none;
  }

  .header__hamburger {
    width: 20px;
    height: 20px;
  }

  .header__hamburger span {
    height: 2px;
  }

  .header__hamburger span:nth-child(1) {
    top: 4px;
  }

  .header__hamburger span:nth-child(2) {
    top: 13px;
  }

  .fv {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
  }

  .fv__inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 24px;
  }

  .fv__title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 2;
    margin: 0 0 -8px 0;
    /* ここで画像に少し重ねる */
    font-family: var(--font-en-serif);
    font-size: clamp(4.2rem, 13vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    font-weight: 400;
    text-align: center;
  }

  .fv__image-wrapper {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 350px);
    max-width: none;
    aspect-ratio: auto;
    margin: 0 auto 36px;
    z-index: 1;
  }

  .fv__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .fv__message {
    position: static;
    text-align: center;
    margin-top: 30px;
  }

  .fv__message p {
    display: block;
    width: fit-content;
    margin: 0 auto 8px;
    padding: 0;
    background: transparent;
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.07em;
    font-weight: 500;
  }

  .fv__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 46px;
    transform: translateX(-50%);
    color: var(--color-text);
    z-index: 3;
    text-decoration: none;
    cursor: pointer;
  }

  .fv__scroll span {
    display: block;
    position: relative;
    margin-bottom: 54px;
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.18em;
    line-height: 1;
    opacity: 0.45;
  }

  .fv__scroll::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 44px);
    transform: translateX(-50%);
    width: 1px;
    height: 90px;
    background: rgba(34, 34, 34, 0.22);
  }

  .fv__scroll::before {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% - 44px);
    width: 1px;
    height: 20px;
    background: var(--color-text);
    animation: fvScrollLineMobile 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    z-index: 1;
  }
}

@keyframes fvScrollLineMobile {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }

  20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(38px);
    opacity: 0;
  }
}

@media (max-width: 539px) {
  .fv {
    padding-top: 200px;
  }
}

@media screen and (min-width: 391px) and (max-width: 430px) {
  .fv {
    padding-top: 150px;
  }

  .fv__scroll {
    bottom: 150px;
  }
}

@media (max-width: 389px) {
  .fv {
    padding-top: 100px;
  }
}

@media screen and (max-width: 360px) and (min-height: 850px) {
  .fv {
    min-height: 720px;
    height: 720px;
  }
}

/* ==========================================================================
   6. ABOUT
   ========================================================================== */
.about {
  padding: 200px 0;
}

.about .l-container {
  display: flex;
  /* side by side header and text */
  justify-content: space-between;
  gap: 60px;
}

.about .section-header {
  flex: 0 0 40%;
}

.about__text-box {
  flex: 0 0 55%;
  padding-top: 50px;
  /* offset to align text baseline with title if needed */
}

.about__text {
  margin-bottom: 30px;
}

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

@media (max-width: 1024px) and (min-height: 900px) {
  .about {
    margin: 0 0 150px;
    padding: 0;
  }
}

@media (max-width: 1024px) and (max-height: 700px) {}

@media (max-width: 900px) {
  .about .l-container {
    flex-direction: column;
    gap: 30px;
  }

  .about .section-header,
  .about__text-box {
    flex: 1 1 auto;
    width: 100%;
  }

  .about__text-box {
    padding-top: 0;
  }
}

/* ==========================================================================
   7. SERVICE
   ========================================================================== */
.service {
  padding: 200px 0;
}

.service-intro {
  text-align: center;
  margin-bottom: 80px;
}

.service-intro p {
  line-height: 2;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}

.service-intro p:last-child {
  margin-bottom: 0;
}

.service__list {
  display: flex;
  gap: 48px;
  margin-bottom: 80px;
}

.service-card {
  display: flex;
  flex-direction: column;
  /* background-color: #fff;
  padding: 24px; */
}

.service-card__image-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.service-card__image {
  width: 100%;
  object-fit: cover;
}

.service-card__title {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.service-card__text {
  font-size: 1.5rem;
  line-height: 1.8;
}

.service-support {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 37px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.service-support__image-wrapper {
  flex: 0 0 40%;
}

.service-support__image {
  width: 100%;
  object-fit: cover;
}

.service-support__content {
  flex: 1;
}

.service-support__title {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.service-support__text {
  line-height: 2.2;
  color: var(--color-gray);
}

.service__price-link {
  width: 120px;
  margin: 0 auto;
  display: block;
  text-align: center;
  position: relative;
  margin-top: 80px;
  padding-bottom: 12px;
  text-decoration: none;
}

.service__price-link-text {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
}

.price-link {
  display: block;
  width: 200px;
  margin: 90px auto 0;
}

.price-svg {
  width: 200px;
  overflow: visible !important;
}

/* テキスト */
.price-svg text {
  font-size: 2rem;
  letter-spacing: 0.2em;
  fill: #111;
}

/* 線（矢印含む） */
.price-svg path {
  fill: none;
  stroke: #111;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* ホバー */
.price-link:hover .line {
  transform: scaleX(1.03);
  transform-origin: left center;
}

@media (max-width: 1024px) {
  .service {
    padding: 140px 0;
  }

  .service__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .service {
    padding: 50px 0 120px;
  }

  .service-intro {
    text-align: left;
    margin-bottom: 50px;
  }

  .service__list {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 56px;
    flex-direction: column;
  }

  .service-support {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
    width: 320px;
    margin: 0 auto;
  }

  .service-support__image-wrapper,
  .service-support__content {
    flex: 1 1 auto;
    width: 100%;
  }

  .service-card__title {
    font-size: 1.8rem;
  }

  .service-card__text {
    font-size: 1.3rem;
  }

  .price-link {
    width: 160px;
    margin: 52px auto 0;
  }

  .price-svg {
    width: 160px;
    height: auto;
  }
}

/* ==========================================================================
   8. PLAN
   ========================================================================== */
.plan {
  padding: 0;
}

.plan__intro {
  text-align: center;
  margin-bottom: 60px;
}

.plan__intro p {
  line-height: 1.8;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}

.plan__intro p:last-child {
  margin-bottom: 0;
}

.plan__intro .bold {
  font-weight: 600;
  font-size: 1.6rem;
}

.plan__link {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.plan__cards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 72px;
  display: flex;
  gap: 48px;
  border-radius: 18px;
  background-color: var(--color-bg-light);
}

.plan-card {
  width: 320px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 18px;
  padding: 28px 24px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card2 {
  border: 1px solid var(--color-primary);
  background-color: rgba(255, 255, 255, 0.85);
  /* Slightly less transparent */
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 75px;
  height: 75px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}

.plan-card__header {
  margin-bottom: 24px;
}

.plan-card__subtitle {
  background: var(--color-lb);
  display: inline-block;
  padding: 0 15px;
  border-radius: 50px;
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 0.2em;
}

.plan-card__title {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  line-height: 1.8;
  font-weight: 500;
}

.plan-card__title span {
  font-size: 13px;
  letter-spacing: 0.1em;
  display: block;
  color: var(--color-text);
}

.plan-card__price-old {
  font-size: 1.4rem;
  color: #555;
  text-decoration: line-through;
  text-align: center;
  margin-left: -20px;
}

.plan-card__price-old span {
  color: #dc143c;
  margin: 0 25px 0 10px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
}

.plan-card__price-main {
  font-size: 3.8rem;
  margin: 5px 0 24px;
  line-height: 1;
  text-align: center;
}

.plan-card__price-main span {
  font-size: 1.2rem;
  color: #888;
  display: inline-block;
  margin-left: 2px;
}

.plan-card__price-main .yen {
  font-size: 1.8rem;
}

.plan-card__list {
  margin-bottom: 30px;
}

.plan-card__list li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.plan-card__list img {
  width: 16px;
}

.plan-card__btn {
  margin-top: auto;
  width: 100%;
  background: #444;
  color: #fff;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.plan-card__btn:hover {
  background-color: var(--color-lb);
  color: #000;
}

.info {
  padding: 120px 0;
  text-align: center;
}

.info__title {
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  margin-bottom: 40px;
  color: #777;
  font-weight: 400;
}

.info__list {
  margin-bottom: 30px;
}

.info__list li {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.info__text {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 1.5rem;
}

.first5 {
  border-bottom: 1px solid #111;
}

.info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 70px;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.5s ease !important;
}

.info__btn:hover {
  background-color: var(--color-lb);
  color: #000;
}

@media screen and (max-width: 1350px) {
  .plan__cards {
    flex-direction: column;
    background-color: unset;
  }
}


@media screen and (max-width: 1200px) {
  .plan {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1100px) {
  .plan__intro {
    padding: 0 8%;
  }
}

@media screen and (max-width: 767px) {

  .plan,
  .price-plan {
    padding: 0;
  }

  .plan .section-header,
  .price-plan .section-header {
    padding: 0;
  }

  .plan__intro {
    text-align: left;
    margin-bottom: 36px;
    padding: 0 8%;
  }

  .plan__intro p {
    text-align: left;
  }

  .plan__cards {
    padding: 28px 0;
    gap: 50px;
  }

  .plan-card__title {
    font-size: 2rem;
  }

  .plan-card__subtitle {
    font-size: 1rem;
  }

  .plan-card__title span {
    font-size: 13px;
  }

  .plan-card__badge {
    top: -10px;
    right: -8px;
    width: 64px;
    height: 64px;
  }

  .plan-card__price-main {
    font-size: 3.2rem;
  }

  .info__btn {
    width: 230px;
    height: 48px;
  }

  .plan__intro .bold {
    font-size: 1.4rem;
  }

  .info__list li {
    font-size: 1.2rem;
  }

  .info__text {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   9. PROFILE
   ========================================================================== */
.profile {
  padding: 100px 0 150px;
}

.profile__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 200px;
}

.profile__image-col {
  flex: 0 0 27%;
}

.profile__image-arch {
  width: 300px;
  aspect-ratio: 300 / 400;
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.profile__name-box {
  text-align: center;
}

.profile__role {
  font-size: 1.3rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  color: var(--color-gray);
  margin-bottom: 5px;
}

.profile__en-name {
  font-size: 2.2rem;
  font-family: var(--font-en-serif);
  margin-bottom: 5px;
}

.profile__ja-name {
  font-size: 1.2rem;
}

.profile__text-box {
  margin-top: 10px;
}

.profile__text-box p {
  margin-bottom: 25px;
}

.profile__text-box p:last-child {
  margin-bottom: 0;
}

.career {
  margin-top: 50px;
  padding-bottom: 0;
}

.career__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.career__title {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: #777;
  font-weight: 500;
}

.career__toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.career__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  font-size: 1.4rem;
}

.career__content.is-open {
  max-height: 1000px;
}

.career__item {
  display: flex;
  gap: 40px;
  padding: 30px 0;
}

.career__year {
  font-weight: bold;
  color: #555;
}

.career__desc {
  line-height: 1.8;
  color: #333;
}

.career__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  text-align: left;
}

.career__header:hover {
  opacity: 0.7;
}

.fontsmall {
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .profile__inner {
    gap: 100px;
  }
}


@media screen and (max-width: 1024px) {
  .profile__inner {
    gap: 60px;
  }
}

@media screen and (max-width: 1000px) {
  .profile__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {

  .profile {
    padding: 0 0 50px;
  }

  .profile__image-arch {
    width: min(100%, 300px);
    margin: 0 auto 24px;
  }

  .career__item {
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .career__year {
    min-width: 48px;
  }

  .career__desc {
    flex: 1 1 100%;
  }

  .profile__image {
    width: 250px;
  }

  .profile__role {
    font-size: 12px;
  }
}

@media screen and (max-width: 389px) {
  .profile__image {
    width: 200px;
  }
}

/* ==========================================================================
   10. CONTACT
   ========================================================================== */
.contact {
  padding: 100px 0 150px;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.contact__header-col {
  flex: 0 0 36%;
  width: 100%;
}

.contact__desc {
  margin-bottom: 40px;
}

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

.contact__form-col {
  flex: 0 0 54%;
}

.form__group {
  margin-bottom: 50px;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.form__badge {
  font-size: 1rem;
  padding: 1px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.form__badge--required {
  background-color: #E4EBFE;
  /* Pale primary matching comp */
  color: var(--color-text);
}

.form__badge--optional {
  background-color: var(--color-light-gray);
  color: var(--color-gray);
}

.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 15px;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 1.6rem;
}

.form__radio {
  width: 20px;
  height: 20px;
  accent-color: var(--color-text);
  margin: 0;
  cursor: pointer;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-white);
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
  accent-color: var(--color-text);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary-dark);
}

/* ==========================================================================
   11. New Animations & Interactions
   ========================================================================== */
/* Split Text */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-fadein.is-visible .split-char {
  opacity: 1;
  transform: translateY(0);
}

/* Magnetic Button */
.js-magnet {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}


.form__textarea {
  resize: vertical;
}

.form__select-wrapper {
  position: relative;
}

.form__select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  pointer-events: none;
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
}

.form__privacy {
  text-align: center;
  margin: 50px 0 40px;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  flex-wrap: wrap;
}

.form__checkbox {
  width: 20px;
  height: 20px;
}

.form__checkbox-text a {
  text-decoration: underline;
}

.btn--submit {
  width: 320px;
  height: 70px;
  font-size: 1.6rem;
  font-weight: 600;
}

.btn--submit:hover {
  background-color: var(--color-lb);
  color: #000;
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .contact__container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .contact__header-col {
    flex: 0 0 100%;
  }

  .contact__form-col {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 100px 0;
  }

  .form__group {
    margin-bottom: 30px;
  }

  .form__label {
    font-size: 1.5rem;
  }

  .form__input,
  .form__select,
  .form__textarea {
    padding: 12px;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .btn--submit {
    width: 230px;
    height: 48px;
    padding: 0;
    font-size: 1.4rem;
  }

  .form__radio-label {
    font-size: 1.3rem;
  }

  .form__submit {
    text-align: center;
  }
}



/* ==========================================================================
   11. Footer
   ========================================================================== */
.footer {
  padding: 120px 0;
  border-top: 1px solid #ccc;
  margin: 0 6.9%;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__left {
  flex: 1;
  display: grid;
  justify-content: start;
  justify-items: center;
  align-content: center;
  gap: 24px;
}

.footer__left a {
  transition: opacity 0.3s ease;
}

.footer__left a:hover {
  opacity: 0.6;
}

.footer__logo {
  width: 95px;
}

.footer__address {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.footer__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__nav {
  display: flex;
  gap: 60px;
  line-height: 1;
}

.footer__nav a {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 0.5;
}

.footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 1.2rem;
  line-height: 1;
}

.footer__sns a {
  transition: opacity 0.3s;
}

.footer__sns a:hover {
  opacity: 0.5;
}

.footer__privacy {
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 1px solid #111;
}

.footer__copy {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .footer__container {
    display: block;
    text-align: center;
  }

  /* 左 */
  .footer__left {
    margin-bottom: 40px;
    justify-content: center;
  }

  .footer__logo {
    margin: 0 auto 15px;
  }

  .footer__address {
    justify-content: center;
  }

  /* ナビ */
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer__nav a {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }

  .footer__right {
    justify-content: center;
    align-items: center;
  }

  /* SNS */
  .footer__sns {
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1.2em;
  }

  /* プライバシー */
  .footer__privacy {
    display: block;
    margin: 30px 0;
    letter-spacing: 2px;
  }

  /* コピー */
  .footer__copy {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    margin: 0;
    border-top: 0;
    padding: 72px 8%;
  }

  .footer__container {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }

  .footer__left {
    justify-items: center;
    gap: 18px;
    margin-bottom: 55px;
    display: flex;
    flex-direction: column;
  }

  .footer__logo {
    width: 92px;
    margin: 0 auto;
  }

  .footer__address {
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    letter-spacing: 0.08em;
    font-size: 12px;
  }

  .footer__icon img {
    width: 9px;
    height: auto;
  }

  .footer__nav {
    margin-bottom: 60px;
  }

  .footer__nav a {
    letter-spacing: 0.2em;
    line-height: 1;
  }

  .footer__right {
    align-items: center;
    gap: 44px;
  }

  .footer__sns a img {
    width: 16px;
    height: auto;
  }

  .footer__privacy {
    grid-column: 1 / -1;
    margin-bottom: 0;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .footer__copy {
    font-size: 1rem;
    letter-spacing: 0.22em;
    line-height: 1;
  }
}

/* ==========================================================================
   13. Animations
   ========================================================================== */
.js-fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein.js-fadein--wipe {
  transform: none;
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 3.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: clip-path;
}

.js-fadein.js-fadein--wipe.is-visible {
  transform: none;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  /* Revealed entirely */
}

/**/
.about {
  position: relative;
  overflow: hidden;
}

/* コンテンツは前に出す */
.about .l-container {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 100px 0;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   thanks
   ========================================================================== */
.lower-page {
  padding: 100px 0 0;
}

@media screen and (max-width: 1024px) {
  .lower-page {
    padding: 90px 0 0;
  }
}

.breadcrumb {
  padding: 20px 0;
}

.breadcrumb__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
}

.breadcrumb__link {
  color: #aaa;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb__link:hover {
  opacity: 0.6;
}

.breadcrumb__separator {
  color: #ccc;
}

.breadcrumb__current {
  color: #000;
}

.lower-section {
  padding: 160px 0 160px;
}

.lower-title {
  font-size: 4.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 160px;
  font-weight: 500;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thanks-heading {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.thanks-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}

.thanks-note {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 80px;
}

.thanks-mb30 {
  margin-bottom: 30px;
}

.thanks-note a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.thanks-note a:hover {
  opacity: 0.6;
}

.thanks-btn {
  display: flex;
  justify-content: center;
}

.thanks_btn {
  width: 320px;
  height: 70px;
  padding: 18px 70px;
}

@media screen and (max-width: 767px) {
  .lower-section {
    padding: 70px 0 0;
  }

  .lower-title {
    font-size: 2.6rem;
    margin-bottom: 70px;
  }

  .thanks-heading {
    font-size: 1.6rem;
  }

  .thanks-note {
    margin-bottom: 50px;
    font-size: 1.4rem;
  }

  .breadcrumb__nav {
    font-size: 12px;
  }

  .thanks_btn {
    width: min(100%, 320px);
    height: 60px;
    padding: 16px 32px;
  }

  .thanks-text {
    font-size: 1.4rem;
  }

  .thanks_btn:hover {
    background-color: var(--color-primary);
    opacity: 1;
  }
}


/* ==========================================================================
   下層ページ　price
   ========================================================================== */
.price-detail {
  padding: 120px 0;
}

.price-section+.price-section {
  margin-top: 120px;
}

.price-section__title {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-primary-dark);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #1f1f1f;
  letter-spacing: 0.1em;
}

.price-section__lead {
  margin: 28px 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.price-section__footnote {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-gray);
}

.price-section__footnote a {
  border-bottom: 1px solid #111;
}

.price-group-box {
  padding: 30px;
  background: var(--color-section-bg);
  border-radius: 18px;
}

.price-group-box+.price-group-box {
  margin-top: 40px;
}

.price-group-box__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.price-group-box__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.price-group-box__title h3 {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}

.price-group-box__title p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-gray);
}

.price-group-box__line {
  flex: 1;
  min-width: 80px;
  height: 1px;
  background: var(--color-border-soft);
}

.price-cards {
  display: grid;
  gap: 22px;
}

.price-cards--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(45, 55, 70, 0.04);
}

.service-card--recommend {
  border-color: var(--color-primary);
}

.service-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--color-border-soft);
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.service-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f1f3f5;
}

.service-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card__heading {
  flex: 1;
}

.service-card__heading h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #1f1f1f;
}

.service-card__sub {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #2f2b29;
}

.service-card__desc {
  margin: 8px 0 0;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 1px;
}

.service-card__list {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-border-soft);
  list-style: none;
}

.service-card__list li {
  position: relative;
  margin-top: 13px;
  padding-left: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.service-card__list li:first-child {
  margin-top: 0;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.8;
  background-image: url(../images/check.svg);
  display: block;
  background-size: cover;
  width: 15px;
  height: 15px;
}

.service-card__price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
}

.service-card__price--multi {
  justify-content: flex-end;
}

.service-card__price--multi p {
  margin: 6px 0 0;
  text-align: right;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

.service-card__price--multi p:first-child {
  margin-top: 0;
}

.service-card__price--multi strong {
  margin-left: 6px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #1f1f1f;
}

.service-card__price--multi span {
  margin-left: 4px;
  font-size: 13px;
  color: var(--color-gray);
}

.service-card__price-main {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #1f1f1f;
}

.service-card__price-tax {
  margin: 0 0 2px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-gray);
}

.service-card__tag {
  display: inline-flex;
  align-self: flex-end;
  margin: 10px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-soft-blue);
  font-size: 12px;
  line-height: 1.4;
}

.price-note-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px 40px;
  border-radius: 24px;
  background-color: #fff;
}

.price-note {
  color: var(--color-primary-dark);
}

.price-note-banner p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.support-col__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: 18px;
}

.support-card {
  min-height: 100%;
}

@media (max-width: 1200px) {
  .service-card__top {
    flex-direction: column;
    align-items: center;
  }

  .service-card__heading {
    width: 100%;
  }

  .price-group-box {
    padding: 30px 0;
    background: none;
  }

  .service-card__list li {
    line-height: 1.5;
  }
}

@media (max-width: 1024px) {
  .price-section__title {
    font-size: 24px;
  }

  .price-cards--2col,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .service-card__list li::before {
    margin-top: 3px;
  }
}

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

  .price-section+.price-section {
    margin-top: 0;
    padding-bottom: 0;
  }

  #support {
    margin-top: 30px;
  }

  .price-section__title {
    font-size: 18px;
    padding-bottom: 14px;
  }

  .price-section__lead {
    margin: 22px 0 28px;
    font-size: 14px;
  }

  .price-group-box {
    border-radius: 14px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .price-group-box__head {
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .price-group-box__num {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .price-group-box__title {
    width: calc(100% - 60px);
  }

  .price-group-box__title h3 {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }

  .price-group-box__title p {
    font-size: 13px;
    line-height: 1.5;
  }

  .price-group-box__line {
    display: none;
  }

  .service-card {
    padding: 22px 18px 18px;
    border-radius: 14px;
  }

  .service-card__top {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .service-card__icon {
    width: 64px;
    height: 64px;
  }

  .service-card__icon img {
    width: 30px;
    height: 30px;
  }

  .service-card__heading h4 {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .service-card__desc,
  .service-card__list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .service-card__price-main {
    font-size: 22px;
  }

  .service-card__price--multi strong {
    font-size: 22px;
  }

  .price-note-banner {
    align-items: flex-start;
    padding: 8%;
    flex-direction: column;
    gap: 16px;
  }

  .price-note-banner p {
    font-size: 1.3rem;
  }

  .price-note-banner__arrow {
    display: none;
  }

  .price-note {
    width: 50px;
    margin: 0 auto;
  }

  .price-section__footnote {
    font-size: 1.1rem;
    margin-top: 10px;
    letter-spacing: 1px;
  }

  .price-card {
    padding: 24px;
  }

  .service-card__sub {
    font-size: 13px;
  }

  .service-card__list li::before {
    margin-top: 2px;
  }
}

/* ==========================================================================
   下層ページ privacy
   ========================================================================== */
.privacy-detail {
  padding: 0 0 120px;
}

.privacy-content {
  max-width: px;
  margin: 0 auto;
  padding: 56px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(45, 55, 70, 0.04);
}

.privacy-lead {
  margin: 0 0 48px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.privacy-block+.privacy-block {
  margin-top: 50px;
  padding-bottom: 0;
}

.privacy-block {
  padding-bottom: 0;
}

.privacy-block h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.privacy-block p,
.privacy-block li {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.privacy-block ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.privacy-date {
  margin-top: 56px;
  text-align: right;
  font-size: 1.4rem;
  color: var(--color-gray);
}

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

  .privacy-content {
    padding: 32px 22px;
    border-radius: 18px;
  }

  .privacy-lead {
    margin-bottom: 36px;
    font-size: 1.4rem;
  }

  .privacy-block h2 {
    font-size: 1.6rem;
  }

  .privacy-block p,
  .privacy-block li {
    font-size: 1.3rem;
  }

  .privacy-date {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   下層ページ web-design
   ========================================================================== */

.web-detail {
  overflow: hidden;
}

/* ファーストビュー */
.web-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 110px;
}

.web-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.web-hero__content {
  position: relative;
  z-index: 1;
}

.web-hero__title {
  font-family: var(--font-en);
  font-size: 5.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 36px;
  line-height: 1.2;
}

.web-hero__lead {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.web-hero__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(40, 55, 70, 0.08);
  border-radius: 0;
}

.web-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.15) 32%,
      rgba(255, 255, 255, 0) 62%);
}

.web-hero__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

/* 共通セクション */
.web-section {
  padding: 100px 0;
}

.web-section__title {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 56px;
}

/* こんなお悩みに */
.web-concerns__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.web-concern-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: 18px;
  padding: 32px 28px 36px;
  box-shadow: 0 8px 20px rgba(45, 55, 70, 0.04);
}

.web-concern-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--color-primary);
}

.web-concern-card__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.web-concern-card__title {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.web-concern-card__text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-gray);
}

/* できること */
.web-can__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.web-can-card {
  background: var(--color-card-bg);
  border: 1px solid rgba(137, 166, 188, 0.18);
  padding: 36px 10% 64px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(45, 55, 70, 0.04);
  border-radius: 18px;
}

.web-can-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  margin: 0 auto;
}

.web-can-card__icon img {
  width: 100%;
}

.web-can-card__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.web-can-card__text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  text-align: left;
}

/* 制作の流れ */
.web-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  letter-spacing: 1px;
}

.web-flow__steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--color-border-soft);
  z-index: 0;
}

.web-flow__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.web-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg-white);
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.web-flow__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.web-flow__text {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  text-align: left;
}

/* 公開後のサポート */
.web-post-support__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.web-post-support__image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 55, 70, 0.06);
  border-radius: 0;
}

.web-post-support__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.web-post-support__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 36px;
}

.web-post-support__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-post-support__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.web-post-support__item:first-child {
  padding-top: 0;
}

.web-post-support__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.web-post-support__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-soft-blue);
}

.web-post-support__item-icon img {
  width: 22px;
  height: 22px;
}

.web-post-support__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.web-post-support__item-text {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

/* よくあるご質問 */
.web-faq__list {
  max-width: 1000px;
  margin: 0 auto;
}

.web-faq__item {
  border-bottom: 1px solid var(--color-border-soft);
}

.web-faq__item:first-child {
  border-top: 1px solid var(--color-border-soft);
}

.web-faq__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease;
}

.web-faq__header:hover {
  opacity: 0.7;
}

.web-faq__label {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
}

.web-faq__question {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #111111;
}

.web-faq__toggle {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gray);
}

.web-faq__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.web-faq__content.is-open {
  max-height: 300px;
}

.web-faq__answer {
  display: flex;
  gap: 12px;
  padding: 0 0 24px;
}

.web-faq__answer p {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-gray);
}

/* CTA */
.web-cta {
  padding-bottom: 0;
}

.web-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  background: var(--color-soft-blue);
  border-radius: 24px;
}

.web-cta__image-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.web-cta__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.web-cta__content {
  text-align: center;
}

.web-cta__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.web-cta__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.web-cta__btn {
  min-width: 200px;
  padding: 18px 48px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1024px) {
  .web-hero__inner {
    gap: 40px;
  }

  .web-hero__title {
    font-size: 4.4rem;
  }

  .web-concerns__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-can__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .web-flow__steps::before {
    display: none;
  }

  .web-cta__inner {
    grid-template-columns: 220px 1fr;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .lower-section--web-design {
    padding: 70px 0 80px;
  }

  .web-hero {
    padding: 0;
  }

  .web-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .web-hero__title {
    font-size: 3rem;
    margin-bottom: 24px;
  }

  .web-can-card__title {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .web-hero__lead {
    font-size: 1.4rem;
  }

  .web-hero__image-wrap {
    box-shadow: 0 16px 40px rgba(40, 55, 70, 0.07);
  }

  .web-hero__image-wrap::before {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0) 58%);
  }

  .web-section {
    padding: 100px 0 0;
  }

  .web-section__title {
    font-size: 2rem;
    margin-bottom: 36px;
  }

  .web-concerns__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .web-concern-card {
    padding: 28px 22px;
  }

  .web-concern-card__title {
    font-size: 1.5rem;
  }

  .web-can__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .web-flow__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .web-flow__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    text-align: left;
    padding: 0;
    min-height: 90px;
  }

  .web-flow__num {
    grid-row: 1 / 3;
    margin: 0;
    position: relative;
  }

  .web-flow__num::after {
    content: "";
    height: 150px;
    width: 1px;
    background-color: var(--color-border-soft);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    z-index: -1;
  }

  .web-flow__step:last-of-type .web-flow__num::after {
    display: none;
  }

  .web-flow__title {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .web-flow__text {
    font-size: 1.4rem;
  }

  .web-post-support__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .web-post-support__item-title {
    margin-bottom: 0;
  }

  .web-post-support__item-text {
    font-size: 1.4rem;
  }
  

  .web-faq__question {
    font-size: 1.3rem;
  }

  .web-faq__answer p {
    font-size: 1.3rem;
  }

  .web-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    border-radius: 18px;
  }

  .web-cta__image-wrap {
    max-width: 240px;
    margin: 0 auto;
  }

  .web-cta__title {
    font-size: 1.6rem;
  }

  .web-cta__text {
    font-size: 1.2rem;
  }

  .web-cta__btn {
    padding: 10px 48px;
    margin-bottom: 20px;
    font-size: 1.3rem;
  }

  .web-can-card__text {
    font-size: 1.4rem;
  }

  .web-post-support__lead {
    font-size: 1.4rem;
  }

  .web-can-card {
    padding: 16px 10% 32px;
  }

  .web-can-card__icon {
    width: 130px;
  }
}

/* ==========================================================================
マウスのカーソルのCSS　検証が終わったらコメントアウト外すか検討
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {

  /* Hide default cursor on interactive elements */
  /* html,
  body,
  a,
  button,
  input,
  textarea,
  select,
  label {
    cursor: none !important;
  } */
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100px, -100px);
  margin: -3px 0 0 -3px;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease;
}

.custom-cursor.is-hover {
  opacity: 0;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-100px, -100px);
  margin: -3px 0 0 -3px;
  opacity: 0.3;
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.custom-cursor-follower.is-hover {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-color: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.2);
  opacity: 1;
}