@charset "UTF-8";
/* 全要素のマージン・パディングをリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5の新要素をブロック表示に */
article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

/* ボディの基本設定 */
body {
  /* line-height: 1.6;
  color: #333;
  background: #fff;
  font-size: 16px; */
}

/* リスト・リンク */
ul,
ol {
  list-style: none;
}

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

/* 画像・動画 */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム関連 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

/* 見出しサイズ調整 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* スクロールの滑らかさ */
html {
  scroll-behavior: smooth;
}

.page-about {
  position: relative;
  height: 80vh;
  z-index: 1;
}

.page-about__header {
  position: fixed !important;
}

.page-about__logo img {
  margin-top: 10px;
}

.page-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 55%, rgba(111, 177, 201, 0.5) 0%, rgba(111, 177, 201, 0.32) 22%, rgba(111, 177, 201, 0.18) 38%, rgba(111, 177, 201, 0.08) 52%, rgba(111, 177, 201, 0.03) 65%, rgba(111, 177, 201, 0) 78%);
  filter: blur(20px);
}

.page-about__nav {
  position: fixed !important;
  margin-top: 10px;
}

.page-about__nav a {
  color: #3a3a3a !important;
  font-family: "League Spartan";
}

.page-about__top {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 90px;
}
@media (max-width: 500px) {
  .page-about__top {
    padding-left: 40px;
  }
}

.page-about__label {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.55);
  font-family: "League Spartan";
  margin-bottom: 10px;
  letter-spacing: 0.42em;
}

.page-about__title {
  font-family: "League Spartan";
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.28em;
}

.page-about__sub {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.65);
}

.page-about__concept {
  position: absolute;
  right: 20%;
  bottom: 18%;
  z-index: 2;
  pointer-events: none;
}

.typing-effect {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: #5c6bb0;
  mix-blend-mode: multiply;
  border-right: 1px solid rgba(92, 107, 176, 0.55);
  animation: typing 2.6s steps(18, end) 0.5s forwards, caret 1s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 26ch;
  }
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}
.about-lead {
  position: relative;
  padding: 100px 40px 100px;
  background-image: url("../img/page-about_bg.webp");
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: center top;
}
@media (max-width: 1000px) {
  .about-lead {
    background-size: cover;
    background-position: center top;
  }
}
@media (max-width: 500px) {
  .about-lead {
    padding: 90px 28px;
  }
}

.about-lead__inner {
  max-width: 950px;
  margin: 0 auto;
  padding-left: 30px;
}
@media (max-width: 1150px) {
  .about-lead__inner {
    padding-left: 0;
  }
}

.about-lead__inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.035em;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
  hanging-punctuation: first last;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
@media (max-width: 500px) {
  .about-lead__inner p {
    font-size: 13px;
    line-height: 1.8;
  }
}

.about-lead__inner p + p {
  margin-top: 20px;
}

.strength {
  padding-block: 180px;
}

.strength__inner {
  width: min(1000px, 100% - 48px);
  margin-inline: auto;
}
@media (max-width: 600px) {
  .strength__inner {
    padding-left: 28px;
    padding-right: 0px;
    margin: 0;
  }
}

.strength__head {
  text-align: left;
  margin-bottom: 90px;
}

.strength__eyebrow {
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
  font-family: "League Spartan", sans-serif;
}

.strength__rule {
  width: 80px;
  height: 1px;
  background: #e6e6e6;
  margin-top: 15px;
}

.strength__list {
  display: grid;
  gap: 140px;
}

.strength__item {
  position: relative;
  margin-left: 50px;
}

.strength__no {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 120px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  font-family: "League Spartan", sans-serif;
}

.strength__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 22px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.65);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 500px) {
  .strength__title {
    font-size: 15px;
    font-weight: 600;
  }
}

.strength__text {
  font-size: 15px;
  line-height: 2;
  color: #555;
  max-width: 820px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 500px) {
  .strength__text {
    font-size: 14px;
  }
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 834px) {
  .strength {
    padding-block: 120px;
  }
  .strength__head {
    margin-bottom: 64px;
  }
  .strength__list {
    gap: 88px;
  }
  .strength__item {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .strength__no {
    font-size: 40px;
    transform: none;
  }
}
@media (max-width: 430px) {
  .strength {
    padding-block: 96px;
  }
  .strength__eyebrow {
    font-size: 13px;
    letter-spacing: 0.36em;
  }
}
.page-about__profile {
  background: #fff;
  padding: 50px 40px 180px;
}
@media (max-width: 600px) {
  .page-about__profile {
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 100px;
  }
}

.profile__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) {
  .profile__inner {
    padding: 0;
  }
}

.strength__head-profile {
  margin-bottom: 70px;
}

.profile__head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .profile__head {
    margin-bottom: 40px;
  }
}

.profile__content {
  margin-left: 20px;
}

.profile__image {
  width: 96px;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .profile__image {
    width: 82px;
  }
}

.profile__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.95);
}

.profile__label {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .profile__label {
    line-height: 1.4;
  }
}

.profile__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 10px;
}

.profile__sub {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.15em;
}

.profile__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 18px;
  margin-left: 40px;
}
@media (max-width: 600px) {
  .profile__text {
    margin-left: 0;
    line-height: 1.8;
  }
}

/* 右の固定レール */
.scroll-rail {
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 1500; /* drawerより下/上は調整 */
  pointer-events: none; /* 全体はクリック透過（segだけ有効にするなら後述） */
}

.scroll-rail__track {
  display: flex;
  flex-direction: column;
  gap: 14px; /* セクション間の“途切れ” */
}

/* 1セクション分の棒 */
.scroll-rail__seg {
  width: 2px;
  height: 46px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.18); /* グレー */
  opacity: 0.9;
  transition: background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

/* 現在地だけ黒 */
.scroll-rail__seg.is-active {
  background: rgba(0, 0, 0, 0.75);
  transform: scaleY(1.06);
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-rail {
    right: 12px; /* ← 40px → 12px */
    opacity: 0.75;
  }
}
@media (max-width: 768px) {
  .scroll-rail__seg {
    height: 28px; /* PC: 46px */
    width: 2px;
  }
}
@media (max-width: 768px) {
  .scroll-rail__track {
    gap: 10px; /* PC: 14px */
  }
}
.page-service__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 55%, rgba(143, 124, 246, 0.45) 0%, rgba(143, 124, 246, 0.28) 22%, rgba(143, 124, 246, 0.15) 40%, rgba(143, 124, 246, 0.06) 55%, rgba(143, 124, 246, 0.02) 65%, rgba(143, 124, 246, 0) 75%);
  filter: blur(20px);
}

.page-service-list {
  padding: 100px 6vw;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .page-service-list {
    padding: 70px 24px;
  }
}

.page-service-list__inner {
  max-width: 1000px;
  margin: 40px auto;
}

.page-service-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  -moz-column-gap: 48px;
       column-gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 900px) {
  .page-service-item {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 44px 0;
  }
}

.page-service-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.page-service-item__head {
  padding: 16px 32px 16px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.14);
}
@media screen and (max-width: 900px) {
  .page-service-item__head {
    padding: 0;
    border-right: none;
  }
}

.page-service-item__num {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 72px;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 900px) {
  .page-service-item__num {
    margin-bottom: 28px;
  }
}

.page-service-item__title {
  font-family: "League Spartan", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 900px) {
  .page-service-item__title {
    font-size: 26px;
  }
}

.page-service-item__jp {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #555;
}

.page-service-item__body {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 32px;
  align-items: start;
  max-width: none;
  padding-top: 16px;
}
@media screen and (max-width: 900px) {
  .page-service-item__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
  }
}

.page-service-item__lead {
  grid-column: 1/3;
  grid-row: 1;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
  grid-template-columns: 1.1fr 1.4fr auto;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 900px) {
  .page-service-item__lead {
    grid-column: auto;
    font-size: 14px;
  }
}

.page-service-item__list {
  grid-column: 1/3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .page-service-item__list {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.page-service-item__price {
  grid-column: 3/4;
  grid-row: 1;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  white-space: nowrap;
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 900px) {
  .page-service-item__price {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }
}

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

.page-service-item__text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .page-service-item__text {
    grid-column: auto;
    grid-row: auto;
    font-size: 14px;
  }
}

.page-service-item__list li {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}

.page-service-item__list li::before {
  content: "✓";
  margin-right: 10px;
  font-size: 11px;
  font-family: "League Spartan", sans-serif;
}

.page-service-item__link {
  grid-column: 1/-1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 22px;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-family: "League Spartan", sans-serif;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: transparent;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  .page-service-item__link {
    grid-column: auto;
  }
}
@media screen and (max-width: 600px) {
  .page-service-item__link {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-color: #333;
  }
}

.page-service-item__link::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.page-service-item__link:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border-color: #333;
  transform: translateY(-2px);
}

.page-service-item__link:hover::after {
  width: 56px;
}

.top_link {
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .top_link {
    margin-top: 0px;
  }
}

.page-service-item__note {
  grid-column: 1/3;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.65);
  margin-top: -12px;
}
@media screen and (max-width: 900px) {
  .page-service-item__note {
    grid-column: auto;
    margin-top: -4px;
  }
}

@media screen and (max-width: 900px) {
  .page-service-item__lead {
    order: 1;
  }
  .page-service-item__list {
    order: 2;
  }
  .page-service-item__price {
    order: 3;
  }
  .page-service-item__note {
    order: 4;
  }
  .page-service-item__link {
    order: 5;
  }
}
.page-service-plan {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  -moz-column-gap: 32px;
       column-gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .page-service-plan {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.page-service-plan:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.page-service-plan__name span {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.65);
}

.page-service-plan__name em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #555;
}

.page-service-plan__content p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.65);
}

.page-service-plan__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .page-service-plan__content ul {
    grid-template-columns: 1fr;
  }
}

.page-service-plan__content li {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

.page-service-plan__content li::before {
  content: "✓";
  margin-right: 10px;
  font-size: 11px;
  font-family: "League Spartan", sans-serif;
}

.page-service-plan__price {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.65);
}

@media screen and (max-width: 900px) {
  .page-service-item__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, padding-top 0.5s ease;
    padding-top: 0;
  }
  .page-service-item.is-open .page-service-item__body {
    max-height: 2000px;
    opacity: 1;
    padding-top: 32px;
  }
  .page-service-item__head {
    cursor: pointer;
    position: relative;
  }
}
.page-service-item__icon {
  display: none;
}
@media screen and (max-width: 900px) {
  .page-service-item__icon {
    display: block;
    position: absolute;
    top: 10px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.65);
    border-bottom: 1px solid rgba(0, 0, 0, 0.65);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
}

.page-service-item.is-open .page-service-item__icon {
  transform: rotate(-135deg);
}

.page-flow {
  padding: 120px 6vw;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .page-flow {
    padding: 80px 24px;
  }
}

.page-flow__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-flow__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .page-flow__head {
    margin-bottom: 56px;
  }
}

.page-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 96px;
  color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 600px) {
  .page-flow__title {
    margin-bottom: 64px;
  }
}

.page-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}
@media screen and (max-width: 900px) {
  .page-flow__list {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
  }
}

.page-flow__item {
  position: relative;
}
@media screen and (max-width: 900px) {
  .page-flow__item {
    min-width: 240px;
    scroll-snap-align: start;
  }
}

.page-flow__item::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 90px;
  width: calc(100% - 60px);
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}
@media screen and (max-width: 900px) {
  .page-flow__item::before {
    width: 120px;
  }
}

.page-flow__item:last-child::before {
  display: none;
}

.page-flow__num {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(48px, 5vw, 60px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 42px;
  color: rgba(0, 0, 0, 0.65);
}

.page-flow__item-title {
  font-family: "League Spartan", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.page-flow__item-jp {
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  font-family: "Noto Sans JP", sans-serif;
}

.page-flow__text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.65);
  font-family: "Noto Sans JP", sans-serif;
}

.page-faq {
  padding: 120px 6vw;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .page-faq {
    padding: 80px 24px;
  }
}

.page-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-faq__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .page-faq__head {
    margin-bottom: 56px;
  }
}

.page-faq__eyebrow {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
}

.page-faq__jp {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.65);
}

.page-faq__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 96px;
}
@media screen and (max-width: 600px) {
  .page-faq__title {
    margin-bottom: 64px;
  }
}

.page-faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.page-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.page-faq__question {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 20px;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .page-faq__question {
    grid-template-columns: 14px 1fr 28px;
  }
}

.page-faq__q {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.45);
}

.page-faq__question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.65);
}
.page-faq__icon {
  position: relative;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(0, 0, 0, 0.65);
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.page-faq__item.is-open .page-faq__icon {
  transform: rotate(-135deg);
}

.page-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, padding-bottom 0.4s ease;
  padding-left: 84px;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .page-faq__answer {
    padding-left: 0;
  }
}

.page-faq__item.is-open .page-faq__answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 36px;
}

.page-faq__answer p {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.65);
}

.contact {
  background: #fff;
  padding: clamp(96px, 12vw, 160px) 24px;
  color: #333;
}
@media (max-width: 900px) {
  .contact {
    padding: 96px 24px;
  }
}
@media (max-width: 600px) {
  .contact {
    padding: 110px 10px;
  }
}

.contact__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contact__head {
  margin-bottom: 72px;
}

.contact__label {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 24px;
}

.contact__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.65);
}

.contact__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #666;
}

/* ===== form ===== */
.contact-form__section {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 0 48px;
  margin-bottom: 30px;
}

.contact-form__heading {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #999;
  font-weight: 600;
  margin-bottom: 36px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}

.contact-form__field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 600;
}

.contact-form__field label span {
  margin-left: 2px;
}

.contact-form__field:has(textarea) {
  margin-top: 32px;
}

.contact-form__field {
  position: relative;
}

/* select本体 */
.contact-form__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px; /* 矢印分の余白 */
}

/* 矢印 */
.contact-form__field:has(select)::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 70%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #999;
  border-bottom: 1.5px solid #999;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 16px 18px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder {
  color: #c5c5c5;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #c5c5c5;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: #999;
}

.contact-form__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #777;
}

.contact-form__field textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

.contact-form__submit input[type=submit] {
  min-width: 180px;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 18px 40px;
  font-size: 13px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: 0.3s;
  font-family: "League Spartan", sans-serif;
}

.contact-form__submit input[type=submit]:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact-form__submit p {
  display: flex;
  justify-content: flex-end;
}

/* ===== CF7 ===== */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
  color: #b66;
}

.contact-form .wpcf7-response-output {
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid #ddd;
  font-size: 13px;
  color: #666;
}

/* ===== responsive ===== */
@media (max-width: 768px) {
  .contact__head {
    margin-bottom: 56px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form__submit,
  .contact-form__submit p {
    width: 100%;
    margin: 0;
  }
  .contact-form__submit input[type=submit] {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  .contact-form__submit p {
    width: 100%;
    margin: 0;
    display: block;
  }
  .contact-form__submit input[type=submit] {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .contact-form__submit .wpcf7-spinner {
    display: none;
  }
}
.works-detail {
  background: #f8f6f2;
  color: #222;
}

.works-detail__inner {
  width: min(1100px, 88%);
  margin: 0 auto;
}

.works-detail__fv {
  padding: 200px 0 80px;
}

.works-detail__label {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.55);
  font-family: "League Spartan";
  margin-bottom: 24px;
  letter-spacing: 0.42em;
}

.works-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 56px;
  font-size: clamp(32px, 5vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.works-detail__visual {
  overflow: hidden;
  border-radius: 28px;
}

.works-detail__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.works-detail__content {
  padding: 80px 0 140px;
}
@media (max-width: 600px) {
  .works-detail__content {
    padding: 20px 0 100px;
  }
}

.works-detail__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 96px;
}

.works-detail__info dl {
  margin: 0;
}

.works-detail__info dt {
  font-family: "League Spartan";
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.45);
}

.works-detail__info dd {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.works-detail__block {
  max-width: 1000px;
  margin-bottom: 96px;
}

.works-detail__block p {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.45);
  font-family: "League Spartan", sans-serif;
}
@media (max-width: 600px) {
  .works-detail__block p {
    letter-spacing: 0.1em;
  }
}

.works-detail__small-title {
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
}

.works-detail__body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 64px 0;
  border-radius: 24px;
}

.works-detail__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #222222;
}
@media (max-width: 600px) {
  .works-detail__body p {
    line-height: 1.8;
  }
}

.works-detail__back {
  margin-top: 100px;
}

.works-detail__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 180px;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 18px 40px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: "League Spartan", sans-serif;
  transition: 0.3s;
}

.works-detail__back a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.works-detail__back i {
  width: 42px;
  height: 1px;
  background: currentColor;
}

/* SP */
@media screen and (max-width: 768px) {
  .works-detail__fv {
    padding: 120px 0 56px;
  }
  .works-detail__title {
    margin-bottom: 40px;
  }
  .works-detail__visual {
    border-radius: 18px;
  }
  .works-detail__info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 64px;
  }
  .works-detail__block {
    margin-bottom: 64px;
  }
  .works-detail__block h2 {
    line-height: 1.7;
  }
  .works-detail__body img {
    margin: 40px 0;
    border-radius: 16px;
  }
}
.works__strength {
  margin-bottom: 40px;
}

.page-works {
  padding: 120px 6vw;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .page-works {
    padding: 150px 24px;
  }
}

.page-works__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-works__head {
  margin-bottom: 64px;
}

.page-works__eyebrow {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.page-works__rule {
  width: 72px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}

.page-works__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .page-works__title {
    margin-bottom: 72px;
  }
}

.page-works__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
@media screen and (max-width: 900px) {
  .page-works__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-works__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.page-works__categories button,
.page-works__sort button {
  border: none;
  background: transparent;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  padding: 0;
}

.page-works__categories button.is-active {
  color: #000;
  position: relative;
}

.page-works__categories button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: #000;
}

.page-works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 60px;
}
@media screen and (max-width: 900px) {
  .page-works__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.page-work-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-work-card__img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f5f5f5;
}

.page-work-card__img img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.page-work-card:hover img {
  transform: scale(1.03);
}

.page-work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.45);
}

.page-work-card__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
@media screen and (max-width: 900px) {
  .page-work-card__title {
    font-size: 26px;
  }
}

.page-work-card__link {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  position: relative;
}

.page-work-card__link::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
  transition: width 0.35s ease;
}

.page-work-card:hover .page-work-card__link::after {
  width: 58px;
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.sp-only {
  display: none;
}

@media (max-width: 400px) {
  .sp-only {
    display: block;
  }
}
.hero {
  position: relative;
  height: 100vh;
  color: #f5f5f5;
  font-family: "League Spartan", sans-serif;
  z-index: 1;
}

.hero__header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 15px 0px;
}

.hero__logo img {
  height: 90px;
  width: auto;
  display: block;
}
@media (max-width: 500px) {
  .hero__logo img {
    display: none;
  }
}

/* =========================
  GRADATION BACKGROUND
========================= */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 55% 55%, rgba(200, 255, 235, 0.35) 0%, rgba(200, 255, 235, 0) 45%), linear-gradient(135deg, #4fb7a5 0%, #6e6faf 42%, #d98ca7 100%);
  background-size: 200% 200%;
  opacity: 0;
  transform: scale(1.015);
  filter: blur(16px);
  transition: opacity 2.4s ease, transform 2.4s ease, filter 2.4s ease;
}

/* ローディング後に表示 */
.hero.is-show .hero__bg {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.hero.is-show .hero__bg {
  animation: gradientMove 10s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================
  NAV
========================= */
.hero-nav {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
}
@media (max-width: 500px) {
  .hero-nav {
    left: 24px;
  }
}

.hero-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-nav a {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.hero-nav a:hover {
  opacity: 1;
}

/* =========================
  LINES
========================= */
.hero-line {
  position: absolute;
  width: 1px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: lineReveal 4.8s ease forwards;
  animation-delay: 0.6s;
}
@media (max-width: 1150px) {
  .hero-line {
    display: none;
  }
}

.hero-line--left {
  top: 80px;
  left: 40px;
  height: 250px;
}

.hero-line--right {
  top: 120px;
  right: 40px;
  height: 300px;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
/* =========================
  CONTENT
========================= */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 40px;
}
@media (max-width: 1100px) {
  .hero__content {
    padding-left: 60px;
  }
}
@media (max-width: 500px) {
  .hero__content {
    padding-left: 40px;
    padding-top: 180px;
  }
}

.word {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.word__inner {
  display: inline-block;
  transform: translateY(120%);
  animation: textWaveIn 3s cubic-bezier(0.25, 0, 0.15, 1) forwards;
  animation-delay: 0.1s; /* ←ここで全体を遅らせる */
}

.word.delay .word__inner {
  animation-delay: 0.6s;
}

@keyframes textWaveIn {
  0% {
    transform: translateY(120%);
    filter: blur(6px);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: "Zen Old Mincho", serif;
}

.clip {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.6s ease forwards;
}

.clip.delay {
  animation-delay: 0.4s;
}

@keyframes clipReveal {
  to {
    clip-path: inset(0);
  }
}
.hero__en {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}
@media (max-width: 500px) {
  .hero__en {
    font-size: 14px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
  SCROLL
========================= */
.hero__scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  padding-bottom: 22px;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  animation: scrollArrow 1.4s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% {
    transform: translateX(-50%) translateY(-6px) rotate(45deg);
    opacity: 0;
  }
  40% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
    opacity: 0;
  }
}
/* =========================
  RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero__frame {
    inset: 16px;
  }
}
.section {
  position: relative;
  height: auto;
}

.section.hero,
.section.white-cover {
  position: sticky;
  top: 0;
  height: 100svh;
}

.section:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.drawer-toggle {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 28px;
  height: 18px;
  display: block;
  opacity: 0;
  z-index: 3000;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.drawer-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.7);
}

.drawer-toggle span:nth-child(1) {
  top: 0;
}

.drawer-toggle span:nth-child(2) {
  bottom: 0;
}

body.is-scrolled .drawer-toggle {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s; /* ← ここがポイント */
}

body.is-scrolled .hero__header,
body.is-scrolled .hero-nav {
  opacity: 0;
  pointer-events: none;
}

.switch-point {
  height: 1px;
}

.hero__header,
.hero-nav {
  transition: opacity 0.5s ease, transform 0.3s ease;
}

/* ABOUT セクション全体 */
.about {
  max-width: 1100px;
  margin: 0 auto;
  color: #586166;
  height: auto;
}

.white-cover__inner {
  padding: 180px 40px 200px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .white-cover__inner {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
}
@media (max-width: 600px) {
  .white-cover__inner {
    padding-top: 60px;
    padding-bottom: 0px;
    padding-left: 28px;
    padding-right: 28px;
  }
}

.about__heading {
  margin-bottom: 40px;
}

.about__title {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  letter-spacing: 0.42em;
  font-weight: 400;
  margin: 0 0 10px;
}

.about__subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  margin-bottom: 56px;
}
@media (max-width: 500px) {
  .about__subtitle {
    margin-bottom: 30px;
  }
}

.about__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #3a3a3a;
}
@media (max-width: 500px) {
  .about__lead {
    line-height: 1.5;
  }
}

.about__right {
  max-width: 650px;
}

.about__right {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.52);
  margin: 0 0 10px;
  line-break: strict;
}
@media (max-width: 500px) {
  .about__right {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.8;
  }
}

.about__text-top {
  margin-bottom: 10px !important;
}
@media (max-width: 900px) {
  .about__text-top {
    margin-top: 40px;
  }
}

.about__more {
  margin-top: 30px;
  line-height: 1;
}

/* =========================
  SERVICE（Magazine style）
========================= */
.service {
  position: relative;
  height: auto;
  z-index: 2;
  background: #fafafa;
}

.service__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .service__inner {
    grid-template-columns: 1fr;
    row-gap: 70px;
    padding: 140px 32px 160px;
  }
}
@media (max-width: 600px) {
  .service__inner {
    padding: 80px 28px 50px;
  }
}

/* ---------- Left ---------- */
.service__heading {
  margin-bottom: 56px;
}
@media (max-width: 500px) {
  .service__heading {
    margin-bottom: 30px;
  }
}

.service__title {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.42em;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.75);
}

.service__subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 500px) {
  .service__subtitle {
    margin-bottom: 30px;
  }
}

.service__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #3a3a3a;
  margin-bottom: 28px;
}
@media (max-width: 500px) {
  .service__lead {
    line-height: 1.5;
  }
}

/* ---------- Right list ---------- */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  -moz-column-gap: 22px;
       column-gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .service-item {
    grid-template-columns: 40px 1fr;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

.service-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.service-item__no {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.55);
  padding-top: 6px;
  font-weight: 500;
}

.service-item__name {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 2;
  color: rgba(0, 0, 0, 0.55);
  font-family: "Noto Sans JP", sans-serif;
}

.service-item__name-ja {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.service-item__desc {
  font-family: "Noto Sans JP";
  margin: 0;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.62);
}

/* View more（ABOUTと同じ導線） */
.service-item__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item__more i {
  width: 70px;
  height: 1px;
  background: rgba(0, 0, 0, 0.38);
  transition: width 0.35s ease;
}

.service-item__more:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.service-item__more:hover i {
  width: 84px;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 600px) {
  .service-item__desc {
    font-size: 14px;
    line-height: 1.95;
  }
}
/* =========================
  WORKS（Magazine Gallery）
========================= */
.works {
  position: relative;
  z-index: 2;
  background: #fafafa;
  height: auto;
}

.works__inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 100px 40px 200px;
  display: flex;
  gap: 90px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .works__inner {
    display: block;
    padding: 140px 32px 160px;
  }
}
@media (max-width: 600px) {
  .works__inner {
    padding: 80px 28px 140px;
  }
}

/* ---------- Left ---------- */
.works__left {
  width: 280px;
  flex-shrink: 0;
}

.works__heading {
  margin-bottom: 56px;
}
@media (max-width: 500px) {
  .works__heading {
    margin-bottom: 30px;
  }
}

.works__title {
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.42em;
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.75);
}

.works__subtitle {
  font-family: "League Spartan", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
}

.works__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  color: #3a3a3a;
  margin-bottom: 28px;
}
@media (max-width: 500px) {
  .works__lead {
    line-height: 1.5;
  }
}

/* View more */
.works__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.works__more i {
  width: 76px;
  height: 1px;
  background: rgba(0, 0, 0, 0.38);
  transition: width 0.35s ease;
}

.works__more:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.works__more:hover i {
  width: 92px;
}

/* ---------- Right scroll ---------- */
.works__right {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.works__right::-webkit-scrollbar {
  display: none;
}

.works-grid {
  display: flex;
  gap: 28px;
  width: -moz-max-content;
  width: max-content;
}

/* ---------- Card ---------- */
.work-card {
  width: 310px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  scroll-snap-align: start;
}

.work-card__thumb {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  aspect-ratio: 4/3;
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.work-card:hover .work-card__thumb img {
  transform: scale(1.03);
}

.work-card__meta {
  padding-top: 14px;
}

.work-card__tag {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.55);
  font-family: "League Spartan", sans-serif;
}

.work-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.78);
  font-family: "Noto Sans JP", sans-serif;
}

.works__scrollbar {
  margin-top: 32px;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
}

.works__scrollbar-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(0);
  transition: transform 0.1s linear;
}

.works__right-wrap {
  flex: 1;
  min-width: 0;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 900px) {
  .works__left {
    width: 100%;
    margin-bottom: 56px;
  }
  .works__right {
    overflow-x: auto;
  }
  .works-grid {
    display: flex;
    gap: 20px;
  }
  .work-card {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .work-card {
    width: 260px;
  }
  .work-card__name {
    font-size: 15px;
  }
}
/* =========================
  CONTACT（Glass / Minimal）
========================= */
/* メインボタン（主張しすぎない） */
.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 400px) {
  .contact__btn {
    padding: 10px 10px;
  }
}

.contact__btn:hover {
  background: #333;
  color: #fff;
}

/* View more（統一導線） */
.contact__more {
  font-family: "League Spartan", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: transparent;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 600px) {
  .contact__more {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-color: #333;
  }
}

.contact__more i {
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

.contact__more:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  border-color: #333;
  transform: translateY(-2px);
}

.contact__more:hover i {
  width: 56px;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact__box {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact__actions {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .contact__inner {
    padding: 0 24px;
  }
  .contact__lead {
    font-size: 18px;
    line-height: 1.8;
  }
  .contact__box {
    padding: 26px 22px;
  }
}
/* WORKSは重ねない（sticky解除） */
.section.works {
  position: relative;
  top: auto;
  height: auto;
  z-index: 2;
}

/* =========================
  FOOTER（Magazine / Quiet）
========================= */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 90px 0 50px;
  background: #d6d6d6;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer__logo img {
  height: 80px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer-nav__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list a {
  font-size: 13px;
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
  transition: opacity 0.25s ease;
}

.footer-nav__list a:hover {
  opacity: 0.75;
}

.footer__about {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
}
@media (max-width: 400px) {
  .footer__about {
    font-size: 12px;
  }
}

.footer__divider {
  margin: 40px 0 32px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.3490196078);
  width: 100%;
}

/* 下段 */
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footer__text {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
}

.footer__text-sub {
  font-family: "League Spartan", sans-serif;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 10px;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.35);
  font-family: "League Spartan", sans-serif;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 800px) {
  .footer {
    padding: 70px 0 40px;
  }
  .footer__inner {
    padding: 0 24px;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav__list {
    flex-wrap: wrap;
    gap: 16px 14px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
  DRAWER MENU
========================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* 背景（FVグラデ流用） */
.drawer__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 55%, rgba(200, 255, 235, 0.35) 0%, rgba(200, 255, 235, 0) 45%), linear-gradient(135deg, #4fb7a5 0%, #6e6faf 42%, #d98ca7 100%);
  background-size: 200% 200%;
  animation: gradientMove 10s linear infinite;
  opacity: 0.65;
}

/* 右から出るガラスパネル */
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 86vw);
  padding: 120px 36px 40px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(18px);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

/* ナビ */
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.drawer__link {
  font-family: "League Spartan", sans-serif;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: rgba(0, 0, 0, 0.55);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.drawer__link:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.drawer__footer {
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.28);
}

.drawer__note {
  font-family: "League Spartan", sans-serif;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
}
@media (max-width: 600px) {
  .drawer__note {
    line-height: 2;
    font-size: 13px;
  }
}

/* OPEN状態 */
body.is-drawer-open .drawer {
  opacity: 1;
  pointer-events: auto;
}

body.is-drawer-open .drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

.drawer-logo {
  position: absolute;
  top: 34px;
  left: 10px;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .drawer-logo {
    top: 28px;
    left: 10px;
  }
}
.drawer-logo img {
  width: 100px;
}

/* =========================
  ☰ → × 変形
========================= */
.drawer-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.drawer-toggle span {
  transition: transform 0.45s ease, top 0.45s ease, bottom 0.45s ease, opacity 0.25s ease;
}

body.is-drawer-open .drawer-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.is-drawer-open .drawer-toggle span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ドロワー開いてる時は線を白に（背景が明るいなら黒でもOK） */
body.is-drawer-open .drawer-toggle span {
  background: rgba(0, 0, 0, 0.7);
}

/* =========================
  Loading (ALo - seed ripple)
========================= */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  /* 背景：やわらかい白＋ほんのり色 */
  background: radial-gradient(circle at 30% 25%, rgba(135, 166, 192, 0.18), transparent 42%), radial-gradient(circle at 75% 70%, rgba(197, 165, 171, 0.18), transparent 46%), #fff;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading__inner {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}

/* seed（中心の点） */
.loading__seed {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0.55;
  /* ①脈打つ ②ロゴが出たら消える */
  animation: seedPulse 1.2s ease-in-out infinite, seedHide 0.4s ease forwards;
  animation-delay: 0s, 0.6s; /* ←ロゴと同じタイミング */
}

@keyframes seedHide {
  to {
    opacity: 0;
    transform: scale(0.7);
  }
}
/* 波紋（擬似要素で2重） */
.loading__seed::before,
.loading__seed::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  transform: scale(1);
  opacity: 0;
  animation: ripple 1.8s ease-out infinite;
}

.loading__seed::after {
  animation-delay: 0.8s;
}

/* ロゴ：最初の登場 */
.loading__logo {
  text-align: center;
  transform: translateY(6px);
  opacity: 0;
  animation: logoIn 1.6s ease forwards;
  animation-delay: 0.6s;
}

.loading__logo-main {
  display: block;
  font-size: 28px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.78);
}

.loading__logo-sub {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
}

/* Animations */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  100% {
    transform: scale(4.2);
    opacity: 0;
  }
}
@keyframes seedPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.8;
  }
}
@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ユーザーが動きを減らす設定の場合 */
@media (prefers-reduced-motion: reduce) {
  .loading__seed,
  .loading__seed::before,
  .loading__seed::after,
  .loading__logo {
    animation: none !important;
  }
  .loading__logo {
    opacity: 1;
    transform: none;
  }
}
/* ローディングが消える時：点と波紋を強制的に消す */
.loading.is-hidden .loading__seed {
  opacity: 0 !important;
  transform: scale(0.7) !important;
  animation: none !important;
}

.loading.is-hidden .loading__seed::before,
.loading.is-hidden .loading__seed::after,
.loading.is-hidden .loading__ripple3 {
  opacity: 0 !important;
  animation: none !important;
}

/* reveal-up 用（既存） */
.reveal-up {
  opacity: 0;
  transform: translateY(32px) translateY(var(--parallax-y, 0px));
  filter: blur(6px);
  transition: opacity 3.2s cubic-bezier(0.16, 1, 0.3, 1), transform 3.2s cubic-bezier(0.16, 1, 0.3, 1), filter 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-show {
  opacity: 1;
  transform: translateY(0) translateY(var(--parallax-y, 0px));
  filter: blur(0);
}

:root {
  --footer-h: 260px; /* JSで実寸に更新されます（仮の初期値） */
}

/* bodyの背景をフッター色にして、白いスキマを消す */
body {
  background: #d6d6d6; /* footerと同色 */
}

/* メイン（上にかぶさる面） */
.wrapper {
  position: relative;
  z-index: 2;
  background: #fff; /* メイン面の背景 */
}

/* ABOUT を完全に消す */
.white-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* 消す用クラス（ABOUT / HERO 共通） */
.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.wrapper {
  margin-bottom: var(--footer-h);
  background: #fff;
}