@charset "UTF-8";
/* ============================================================
   00. 変数・設定値
============================================================ */
html.is-resizing .advantage-section,
html.is-resizing .advantage-section * {
  transition: none !important;
  animation: none !important;
}

@property --adv-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #eb6ea5;
}
@property --adv-p1 {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 35%;
}
@property --adv-p2 {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 70%;
}
/* ======================
各ブラウザ対策
====================== */
.service-track.nobar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-track.nobar::-webkit-scrollbar {
  display: none;
}

/* ===============================
   共通
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: #ffffff;
  color: #fff;
  overflow-x: hidden;
}

body.loading {
  overflow-y: scroll;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  width: 100%;
}

/* ============================================================
   02. ローディング画面
============================================================ */
#loader {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #05060a;
  animation: bgShift 8s linear infinite alternate;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#logo-block {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#logo-block img {
  width: clamp(150px, 100vw, 250px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.75));
}
#logo-block .logo-copy,
#logo-block .logo-sub {
  position: relative;
  display: inline-block;
  color: #eaeaea;
  background: linear-gradient(90deg, #ffffff 0%, #d4d4d4 10%, #c0c0c0 20%, #fdfdfd 35%, #9a9a9a 50%, #fefefe 65%, #bcbcbc 80%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* ★ギラギラ光沢 */
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.9), 0 0 28px rgba(255, 255, 255, 0.6), 0 0 40px rgba(190, 190, 190, 0.7);
}
#logo-block .logo-copy {
  margin-top: clamp(12px, 2vw, 18px);
  font-size: clamp(10px, 2.4vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
#logo-block .logo-sub {
  margin-top: clamp(4px, 1.2vw, 6px);
  font-size: clamp(8px, 2.1vw, 13px);
  letter-spacing: 0.1em;
  text-align: center;
}

@keyframes bgShift {
  0% {
    background-image: radial-gradient(circle at 50% 30%, rgba(80, 150, 255, 0.4) 0%, #05060a 40%, #000 100%);
  }
  50% {
    background-image: radial-gradient(circle at 50% 30%, rgba(255, 80, 120, 0.42) 0%, #05060a 40%, #000 100%);
  }
  100% {
    background-image: radial-gradient(circle at 50% 30%, rgba(255, 240, 120, 0.55) 0%, #05060a 40%, #000 100%);
  }
}
/* ============================================================
   02-1. ローディング：カウント数字
============================================================ */
#count-number {
  font-size: clamp(72px, 16vw, 110px);
  font-weight: 800;
  background: conic-gradient(#00aeef, #ec008c, #fff200, #00aeef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   02-2. ローディング：惑星(dot)・軌道
============================================================ */
.orbits {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
  box-shadow: 0 0 12px currentColor, 0 0 25px currentColor;
}
.dot.c {
  background: #00aeef;
  color: #00aeef;
}
.dot.c::after {
  background: rgba(0, 174, 239, 0.85);
}
.dot.m {
  background: #ec008c;
  color: #ec008c;
}
.dot.m::after {
  background: rgba(236, 0, 140, 0.85);
}
.dot.y {
  background: #fff200;
  color: #fff200;
}
.dot.y::after {
  background: rgba(255, 242, 0, 0.85);
}
.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(2);
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1;
}

@keyframes orbitSmall {
  0% {
    transform: rotate(0deg) translate(200px);
  }
  100% {
    transform: rotate(360deg) translate(200px);
  }
}
@keyframes orbitMedium {
  0% {
    transform: rotate(0deg) translate(250px);
  }
  100% {
    transform: rotate(360deg) translate(250px);
  }
}
@keyframes orbitLarge {
  0% {
    transform: rotate(0deg) translate(300px);
  }
  100% {
    transform: rotate(360deg) translate(300px);
  }
}
@keyframes orbitSmall-sp {
  from {
    transform: rotate(0deg) translate(150px);
  }
  to {
    transform: rotate(360deg) translate(150px);
  }
}
@keyframes orbitMedium-sp {
  from {
    transform: rotate(0deg) translate(200px);
  }
  to {
    transform: rotate(360deg) translate(200px);
  }
}
@keyframes orbitLarge-sp {
  from {
    transform: rotate(0deg) translate(250px);
  }
  to {
    transform: rotate(360deg) translate(250px);
  }
}
/* ============================================================
   02-3. ローディング：レーザー残像
============================================================ */
.trail-line {
  position: absolute;
  height: 4px;
  border-radius: 4px;
  opacity: 0.9;
  pointer-events: none;
  filter: blur(4px);
  transform-origin: left center;
  animation: laserFade 0.5s linear forwards;
}

@keyframes laserFade {
  0% {
    opacity: 0.9;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.2);
  }
}
@media (max-width: 600px) {
  .dot {
    box-shadow: 0 0 8px currentColor, 0 0 14px currentColor;
  }
  .dot::after {
    filter: blur(10px);
    opacity: 0.55;
  }
  .trail-line {
    filter: blur(2px);
    opacity: 0.75;
  }
}
/* ============================================================
   02-4. ローディング：ロゴ切替
============================================================ */
#logo-block {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.8s;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show-logo #count-number {
  opacity: 0;
}
.show-logo #logo-block {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1080px) {
  #loader #count-number {
    font-size: clamp(64px, 14vw, 96px);
  }
}
@media (max-width: 834px) {
  #loader #count-number {
    font-size: clamp(56px, 18vw, 88px);
  }
}
@media (max-width: 600px) {
  #loader #count-number {
    font-size: clamp(48px, 22vw, 72px);
  }
  #loader #logo-block img {
    width: 150px;
  }
  #loader .dot.c {
    animation: orbitSmall-sp 3s linear infinite !important;
  }
  #loader .dot.m {
    animation: orbitMedium-sp 4.5s linear infinite reverse !important;
  }
  #loader .dot.y {
    animation: orbitLarge-sp 7s linear infinite !important;
  }
}

/* ============================================================
   03. セクション共通（タイトル・テキスト）
============================================================ */
.sec-title {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #111;
}

.sec-text {
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.9;
  color: #333;
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   04. ヘッダー（サイトバッジ）
============================================================ */
.site-badge {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: color 0.4s ease;
}
.site-badge span:first-child {
  font-size: 24px;
}

.site-badge.is-dark {
  color: #000;
}

#siteBadge {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#siteBadge.is-hide {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

@media screen and (max-width: 1366px) and (max-height: 768px) {
  .site-badge {
    left: 100px;
  }
}
@media (max-width: 1365px) {
  .site-badge {
    left: 24px;
  }
}
@media (max-width: 600px) {
  .site-badge {
    font-size: 10px;
  }
  .site-badge span:first-child {
    font-size: 12px;
  }
}
/* ============================================================
   05. HERO（動画メインビジュアル）
============================================================ */
.video-hero {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.video-hero .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.video-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* SCROLLバー */
.video-hero {
  position: relative;
}
.video-hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 20;
  pointer-events: none;
}
.video-hero .scroll-indicator .scroll-line {
  width: 3px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.video-hero .scroll-indicator .scroll-line .scroll-color-line {
  position: absolute;
  width: 100%;
  height: 30px;
  top: -30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  animation: scrollMove 2s linear infinite;
}
.video-hero .scroll-indicator .scroll-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4), 0 0 12px rgba(0, 0, 0, 0.3);
}

/* スクロール演出アニメーション */
@keyframes scrollMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}
@media (max-width: 600px) {
  .video-hero {
    height: 100vh;
    min-height: 520px;
    max-height: 720px;
  }
}
/* ============================================================
06. Greeting（挨拶セクション）
- インクSVG
- 文字分解
- レスポンシブ
============================================================ */
.greeting-section {
  position: relative;
  padding: 150px 20px;
  height: 150vh;
  overflow: hidden;
  color: #111;
  text-align: center;
  --ink-shift: clamp(180px, 30vw, 500px);
  /* ===============================
  インクライン（複数レイヤー）
  =============================== */
}
.greeting-section .ink-group {
  position: absolute;
  top: -10vh;
  height: 150vh;
  pointer-events: none;
  z-index: -1;
  width: 650px;
  transform: translateX(calc(-50% + var(--ink-x, 0px)));
}
.greeting-section .ink-group .ink-line {
  position: absolute;
  width: 100%;
  height: 100%;
}
.greeting-section .ink-group .ink-path {
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  opacity: 0.8;
  mix-blend-mode: multiply;
}
.greeting-section .ink-path[data-color=cyan] {
  stroke: #00aeef;
}
.greeting-section .ink-path[data-color=magenta] {
  stroke: #ec008c;
}
.greeting-section .ink-path[data-color=yellow] {
  stroke: #fff200;
}
.greeting-section .ink-left {
  --ink-x: calc(-1 * var(--ink-shift));
}
.greeting-section .ink-right {
  --ink-x: calc(var(--ink-shift) * 1);
}
.greeting-section .inner {
  max-width: 1920px;
  margin: 0 auto;
}
.greeting-section .blockPC {
  display: block;
}
.greeting-section .blockLP,
.greeting-section .blockSP {
  display: none;
}
.greeting-section .split {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  display: block;
  color: #444444;
}
.greeting-section .split .char {
  opacity: 0;
  display: inline-block;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
}
.greeting-section .split.no-anim {
  font-size: clamp(26px, 4vw, 60px) !important;
  margin-bottom: 120px !important;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
.greeting-section .split.no-anim.fade-soft {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
  will-change: opacity, transform, filter;
}
.greeting-section .split.no-anim.fade-soft.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1366px) {
  .greeting-section {
    padding: 110px 10px;
    height: auto;
  }
  .greeting-section .blockPC {
    display: none;
  }
  .greeting-section .blockLP {
    display: block;
  }
  .greeting-section .blockLP .split.no-anim.fade-soft {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
  }
  .greeting-section .blockLP .split.no-anim.fade-soft.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .greeting-section .ink-group {
    max-width: 610px;
    margin: 0 auto;
  }
  .greeting-section .split {
    font-size: 26px;
  }
  .greeting-section .split.no-anim {
    font-size: 40px;
    margin-bottom: 80px !important;
  }
}
@media (max-width: 1250px) {
  .greeting-section .ink-group {
    width: 580px;
  }
}
/* =========================================
   MQ以下：インクの可動域を狭くする
========================================= */
@media (max-width: 1080px) {
  .greeting-section {
    --ink-shift: clamp(90px, 14vw, 220px);
  }
  .greeting-section .ink-group {
    width: min(560px, 78vw);
  }
}
@media screen and (min-width: 1019px) and (max-width: 1029px) and (min-height: 1361px) and (max-height: 1371px) {
  .greeting-section .ink-group {
    top: -35vh;
  }
}
@media (max-width: 834px) {
  .greeting-section .split {
    font-size: 24px;
  }
  .greeting-section .ink-group {
    top: -40vh;
  }
}
@media (max-width: 600px) {
  .greeting-section {
    padding: 110px 10px;
    height: auto;
  }
  .greeting-section .ink-group {
    left: 50%;
    width: 140vw;
    opacity: 0.75;
    height: 175vh;
  }
  .greeting-section .ink-group {
    max-width: 580px;
    top: -25vh;
  }
  .greeting-section .ink-left,
  .greeting-section .ink-right {
    --ink-x: 0px !important;
  }
  .greeting-section .ink-group {
    opacity: 0.3;
  }
  .greeting-section .blockLP {
    display: none;
  }
  .greeting-section .blockSP {
    display: block;
  }
  .greeting-section .anniv-line {
    width: 140px;
    opacity: 0.4;
  }
  .greeting-section .split {
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 25px;
  }
  .greeting-section .split.no-anim {
    font-size: 28px !important;
    margin-bottom: 60px !important;
  }
}
/* ===== Keyframes ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  60% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0px);
  }
}
.typewriter,
.typewriter-lead {
  visibility: hidden;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  border-right: 2px solid rgba(0, 0, 0, 0.8);
  animation: cursorBlink 0.7s steps(1) infinite;
}

.no-cursor {
  border-right: none !important;
  animation: none !important;
}

@keyframes cursorBlink {
  0% {
    border-color: rgba(0, 0, 0, 0.8);
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: rgba(0, 0, 0, 0.8);
  }
}
/* ================================
   Horizontal Service Section
================================ */
.service-section {
  --sticky-container-height: 100vh;
  height: var(--sticky-container-height);
  position: relative;
  width: 100%;
}

.service-horizontal {
  position: sticky;
  top: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: flex;
  overflow: hidden;
}

.service-track {
  display: flex;
  height: 100%;
  width: max-content;
  overflow-y: hidden;
  overflow-x: auto;
}

.service-track.nobar::-webkit-scrollbar {
  display: none;
}

.service-track.nobar {
  scrollbar-width: none;
}

/* ================================
   横スク用カード（余白つき安定版）
================================ */
.service-track {
  display: flex;
  gap: 4vw;
  padding: 0 4vw;
  padding-top: 100px;
}

.service-card {
  width: 80vw;
  height: 70vh;
  flex-shrink: 0;
  padding: 80px 60px;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-card h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 22px;
  line-height: 1.85;
}

.service-card .service-card-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
}

.service-wrapper {
  margin-bottom: 180vh;
}

/* 色（そのまま） */
.card-yellow {
  background: #fff200;
}

.card-magenta {
  background: #ec008c;
}

.card-cyan {
  background: #00aeef;
}

@media screen and (max-width: 768px) {
  .glass-play-btn {
    width: 72px;
    height: 72px;
  }
  .glass-play-btn .glass-content .triangle {
    border-left-width: 14px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
  .movie-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .movie-iframe-wrap {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .movie-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }
}
/* =========================================
   共通スクロールアニメ
========================================= */
.scroll-section {
  background: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}
.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   マウス追従キャンバス
========================================= */
#ink-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* インクの染み（CMY系 or 青のみ） */
.ink-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.9;
  transform: scale(0.4);
  filter: blur(2px);
  pointer-events: none;
  animation: ink-expand 0.8s ease-out forwards;
}

/* インクがじわ〜っと広がるアニメ */
@keyframes ink-expand {
  0% {
    transform: scale(0.4);
    opacity: 0.9;
    filter: blur(2px);
  }
  50% {
    transform: scale(1.6);
    opacity: 0.55;
    filter: blur(6px);
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
    filter: blur(10px);
  }
}
.fade-body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-body.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   画面四方から淡いCMYインクが滲み出る背景（SCSSのみ）
============================================================ */
.ink-soft-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* ===== Cyan：左上から淡く滲む ===== */
  /* ===== Magenta：右上から淡く滲む ===== */
  /* ===== Yellow：下から淡く滲む ===== */
}
.ink-soft-bg .ink {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  filter: blur(80px);
  opacity: 0.35;
  mix-blend-mode: screen;
  border-radius: 50%;
}
.ink-soft-bg .c {
  background: rgba(0, 174, 239, 0.35);
  top: -30%;
  left: -20%;
}
.ink-soft-bg .m {
  background: rgba(236, 0, 140, 0.28);
  top: -35%;
  right: -25%;
}
.ink-soft-bg .y {
  background: rgba(255, 242, 0, 0.48);
  /* ← 0.32 → 0.48 に強化 */
  bottom: -38%;
  /* ← 少し持ち上げる */
  left: 50%;
  transform: translateX(-50%);
  width: 95vmax;
  /* ← 少し大きく */
  height: 95vmax;
  filter: blur(95px);
  /* ← C/M より強くぼかす */
  opacity: 0.45;
}

.break-ribbon {
  position: relative;
  height: 60vh;
  background: #fff;
  overflow: hidden;
  margin: 100px 0;
  /* 左リボン */
  /* 右リボン */
}
.break-ribbon .ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  pointer-events: none;
  --x: 0vw;
  transform: translate(calc(-50% + var(--x)), -50%) rotate(var(--r));
  transition: transform 0.2s linear;
  will-change: transform;
}
.break-ribbon .ribbon img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}
.break-ribbon .ribbon-left {
  --x: -120vw;
  --r: -6deg;
}
.break-ribbon .ribbon-right {
  --x: 120vw;
  --r: 6deg;
}

/* 縦向き */
@media (max-width: 1024px) {
  .break-ribbon .ribbon {
    width: 150vw;
  }
}
@media (max-width: 950px) {
  .break-ribbon .ribbon img {
    height: 150%;
  }
}
@media (max-width: 850px) {
  .break-ribbon .ribbon {
    width: 250vw;
  }
}
@media (max-width: 600px) {
  .break-ribbon .ribbon {
    width: 350vw;
  }
  .break-ribbon .ribbon-left {
    --x: -250vw;
  }
  .break-ribbon .ribbon-right {
    --x: 250vw;
  }
}
/* ======================
   mixins
====================== */
.top-message {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding-top: 140px;
  background-image: url("../img/top-message-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 120px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  /* =========================
     タイトル（上部固定）
  ========================= */
}
.top-message .tm-title {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  margin-top: -90px;
  color: #000;
}
.top-message .tm-title .title-en {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.1;
}
.top-message .tm-title .title-ja {
  margin-top: 6px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
.top-message .tm-title .wipe-outer {
  display: inline-block;
  overflow: hidden;
}
.top-message .tm-title .wipe-inner {
  display: inline-block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.top-message .tm-title .title-en .wipe-inner {
  transform: translateX(-100%);
}
.top-message .tm-title .title-ja .wipe-inner {
  transform: translateX(100%);
  transition-delay: 0.18s;
}
.top-message .tm-title.is-show .wipe-inner {
  transform: translateX(0);
}
.top-message .tm-inner {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 40px;
  z-index: 2;
  gap: 60px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.top-message .tm-inner .tm-person {
  --y: 0px;
  --opacity: 0;
  transform: translateY(var(--y));
  opacity: var(--opacity);
  transition: none;
  will-change: transform, opacity;
}
.top-message .tm-inner .tm-text {
  --y: initial;
  --opacity: initial;
  color: #111;
  margin-top: 100px;
  opacity: 0 !important;
  transform: translateX(40px) !important;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
  /* キャッチ */
  /* 本文 */
  /* 署名 */
}
.top-message .tm-inner .tm-text.is-show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.top-message .tm-inner .tm-text .tm-message-catch {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
}
.top-message .tm-inner .tm-text .tm-message-body {
  font-size: 20px;
  line-height: 2.1;
  color: #111;
  margin-bottom: 40px;
}
.top-message .tm-inner .tm-text .tm-message-body p + p {
  margin-top: 40px;
}
.top-message .tm-inner .tm-text .tm-message-sign {
  font-size: 20px;
  color: #111;
}
.top-message .tm-inner .tm-text .tm-message-sign span {
  font-size: 24px;
  font-weight: 700;
  margin-left: 12px;
}
.top-message .tm-inner .tm-person {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.top-message .tm-inner .tm-person img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

/* --------- LP（<=1366）: 余白とサイズを少し締める --------- */
@media (max-width: 1366px) {
  .top-message {
    padding-top: 120px;
    background-position: center 90px;
  }
  .top-message .tm-title {
    margin-top: -100px;
    margin-bottom: 40px;
  }
  .top-message .tm-inner {
    max-width: 1100px;
    padding: 0 10px;
    gap: 48px;
  }
  .top-message .tm-inner .tm-text {
    margin-top: 120px;
    transform: translateX(28px) !important;
  }
  .top-message .tm-inner .tm-text.is-show {
    transform: translateX(0) !important;
  }
  .top-message .tm-inner .tm-text .tm-message-catch {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .top-message .tm-inner .tm-text .tm-message-body {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 32px;
  }
  .top-message .tm-inner .tm-text .tm-message-body p + p {
    margin-top: 32px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign {
    font-size: 18px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign span {
    font-size: 22px;
  }
  .top-message .tm-inner .tm-person img {
    max-width: 520px;
  }
}
/* --------- MQ（<=1080）: さらに詰める（2カラム維持） --------- */
@media (max-width: 1080px) {
  .top-message {
    padding-top: 10px;
    background-position: center 70px;
  }
  .top-message .tm-title {
    margin-top: 0px;
    margin-bottom: 52px;
  }
  .top-message .tm-inner {
    max-width: 980px;
    padding: 0 24px;
    gap: 40px;
  }
  .top-message .tm-inner .tm-text {
    margin-top: 50px;
    transform: translateX(22px) !important;
  }
  .top-message .tm-inner .tm-text.is-show {
    transform: translateX(0) !important;
  }
  .top-message .tm-inner .tm-text .tm-message-catch {
    font-size: 32px;
    margin-bottom: 28px;
  }
  .top-message .tm-inner .tm-text .tm-message-body {
    font-size: 13.5px;
    line-height: 2;
  }
  .top-message .tm-inner .tm-text .tm-message-body p + p {
    margin-top: 28px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign {
    font-size: 17px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign span {
    font-size: 20px;
  }
  .top-message .tm-inner .tm-person img {
    max-width: 480px;
  }
}
/* 縦向き */
@media screen and (min-width: 1019px) and (max-width: 1029px) and (min-height: 1361px) and (max-height: 1371px) {
  .top-message {
    min-height: 0;
  }
}
/* --------- TB（<=834）: 1カラムにして並びを安定 --------- */
@media (max-width: 834px) {
  .top-message {
    padding-top: 100px;
    background-position: center 50px;
  }
  .top-message .tm-title {
    margin-top: -100px;
  }
  .top-message .tm-title .title-en {
    font-size: 70px;
  }
  .top-message .tm-title .title-ja {
    font-size: 30px;
  }
  .top-message .tm-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 10px 70px 10px;
  }
  .top-message .tm-inner .tm-person {
    justify-content: center;
    align-items: center;
  }
  .top-message .tm-inner .tm-person img {
    max-width: 400px;
    width: min(400px, 86vw);
  }
  .top-message .tm-inner .tm-text {
    margin-top: 0;
    transform: translateX(18px) !important;
    text-align: center;
  }
  .top-message .tm-inner .tm-text.is-show {
    transform: translateX(0) !important;
  }
  .top-message .tm-inner .tm-text .tm-message-catch {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .top-message .tm-inner .tm-text .tm-message-body {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 26px;
  }
  .top-message .tm-inner .tm-text .tm-message-body p + p {
    margin-top: 24px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign {
    font-size: 20px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign span {
    font-size: 22px;
  }
}
/* --------- SP（<=600）: 読みやすさ最優先 --------- */
@media (max-width: 600px) {
  .top-message {
    min-height: auto;
    padding-top: 92px;
    background-position: center 30px;
    overflow: visible;
  }
  .top-message .tm-title {
    margin-top: -120px;
    margin-bottom: 34px;
  }
  .top-message .tm-title .title-en {
    font-size: 70px;
    line-height: 1;
  }
  .top-message .tm-title .title-ja {
    font-size: 22px;
  }
  .top-message .tm-inner {
    padding: 0px 14px 30px 14px;
    gap: 22px;
  }
  .top-message .tm-inner .tm-person img {
    width: min(360px, 84vw);
    max-width: 360px;
  }
  .top-message .tm-inner .tm-text {
    margin-top: 0;
    transform: translateX(14px) !important;
  }
  .top-message .tm-inner .tm-text.is-show {
    transform: translateX(0) !important;
  }
  .top-message .tm-inner .tm-text .tm-message-catch {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .top-message .tm-inner .tm-text .tm-message-body {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 22px;
  }
  .top-message .tm-inner .tm-text .tm-message-body br {
    display: none;
  }
  .top-message .tm-inner .tm-text .tm-message-body p + p {
    margin-top: 18px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign {
    font-size: 15px;
  }
  .top-message .tm-inner .tm-text .tm-message-sign span {
    font-size: 18px;
  }
}
/* =====================================
   BRAND HISTORY
===================================== */
.brand-history {
  position: relative;
  background: #dcdcdc;
  color: #111;
  z-index: 0;
  /* ===============================
     タイトル
  =============================== */
  /* ===============================
     タイムライン
  =============================== */
}
.brand-history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.3%;
  background: #fff;
  z-index: 0;
}
.brand-history .bh-title {
  text-align: center;
  margin-bottom: 160px;
  /* 英語タイトル */
  /* 日本語タイトル */
}
.brand-history .bh-title .title-en {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.1;
}
@media (max-width: 1080px) {
  .brand-history .bh-title .title-en {
    font-size: 80px;
  }
}
.brand-history .bh-title .title-ja {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
@media (max-width: 1080px) {
  .brand-history .bh-title .title-ja {
    font-size: 30px;
  }
}
.brand-history .bh-title .wipe-outer {
  display: inline-block;
  overflow: hidden;
}
.brand-history .bh-title .wipe-inner {
  display: inline-block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.brand-history .bh-title .title-en .wipe-inner {
  transform: translateX(-120%);
}
.brand-history .bh-title .title-ja .wipe-inner {
  transform: translateX(120%);
  transition-delay: 0.18s;
}
.brand-history .bh-title.is-show .wipe-inner {
  transform: translateX(0);
}
.brand-history .bh-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  /* content全体 */
}
.brand-history .bh-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 39px;
  width: 2px;
  height: 99.8%;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
.brand-history .bh-timeline .bh-line-active {
  position: absolute;
  top: 10px;
  left: 39px;
  width: 2px;
  height: 0;
  background: #fff200;
  box-shadow: 0 0 12px rgba(255, 242, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}
.brand-history .bh-timeline .bh-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 140px 1fr;
  column-gap: 70px;
  padding-bottom: 15%;
}
.brand-history .bh-timeline .bh-dot {
  grid-column: 1;
  position: relative;
  top: 6px;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  background: #9c9c9c;
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.brand-history .bh-timeline .bh-dot.is-passed {
  background: #fff200;
  box-shadow: 0 0 0 6px rgba(255, 242, 0, 0.25), 0 0 18px rgba(255, 242, 0, 0.9);
}
.brand-history .bh-timeline .bh-dot.is-active {
  transform: scale(1.6);
  background: #fff200;
  box-shadow: 0 0 0 10px rgba(255, 242, 0, 0.35), 0 0 28px rgba(255, 242, 0, 0.95);
  z-index: 3;
}
.brand-history .bh-timeline .bh-content {
  grid-column: 2/4;
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 120px;
  margin-top: -25px;
  /* 年代 */
  /* テキスト */
  /* 画像 */
}
.brand-history .bh-timeline .bh-content .bh-year {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
}
.brand-history .bh-timeline .bh-content .bh-year .bh-era {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.55);
}
.brand-history .bh-timeline .bh-content .bh-text {
  grid-column: 2;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.9;
  margin: 25px 0 32px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
.brand-history .bh-timeline .bh-content .bh-image {
  grid-column: 2;
  width: 390px;
}
.brand-history .bh-timeline .bh-content .bh-image img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-history .bh-timeline .bh-content {
  /* 初期状態（非表示） */
  /* 表示状態（フェードイン） */
  /* 非表示に戻るとき（ゆっくり） */
}
.brand-history .bh-timeline .bh-content .bh-year,
.brand-history .bh-timeline .bh-content .bh-text,
.brand-history .bh-timeline .bh-content .bh-image {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.brand-history .bh-timeline .bh-content.is-show .bh-year {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.brand-history .bh-timeline .bh-content.is-show .bh-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.brand-history .bh-timeline .bh-content.is-show .bh-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.brand-history .bh-timeline .bh-content:not(.is-show) .bh-year,
.brand-history .bh-timeline .bh-content:not(.is-show) .bh-text,
.brand-history .bh-timeline .bh-content:not(.is-show) .bh-image {
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0s;
}
.brand-history .bh-ripple-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.6s ease;
}
.brand-history.is-active .bh-ripple-layer {
  opacity: 1;
}
.brand-history .bh-title,
.brand-history .bh-timeline {
  position: relative;
  z-index: 1;
}
.brand-history .bh-ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.brand-history .bh-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.356);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  animation: ripple-ring 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes ripple-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(var(--scale));
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .brand-history .bh-timeline .bh-item {
    column-gap: 15px;
  }
  .brand-history .bh-timeline .bh-item .bh-content {
    column-gap: 90px;
  }
}
/* 縦向き */
@media screen and (min-width: 1019px) and (max-width: 1029px) and (min-height: 1361px) and (max-height: 1371px) {
  .brand-history::before {
    top: -50px;
  }
  .brand-history .bh-title .title-en {
    font-size: 100px;
  }
}
/* =====================================
   BRAND HISTORY - SP（最小360px想定）
   年代 → 説明 → 写真 の順に縦積み
===================================== */
@media (max-width: 600px) {
  .brand-history .bh-title {
    margin-bottom: 90px;
  }
  .brand-history .bh-title .title-en {
    font-size: px;
  }
  .brand-history .bh-title .title-ja {
    font-size: 22px;
    letter-spacing: 0.14em;
  }
  .brand-history .bh-timeline {
    max-width: 100%;
    padding: 0 16px;
    /* content：年代→説明→写真 */
  }
  .brand-history .bh-timeline::before {
    left: 22px;
    top: 8px;
  }
  .brand-history .bh-timeline .bh-line-active {
    left: 22px;
    top: 8px;
  }
  .brand-history .bh-timeline .bh-item {
    grid-template-columns: 14px 1fr;
    column-gap: 30px;
    padding-bottom: 88px;
  }
  .brand-history .bh-timeline .bh-dot {
    width: 14px;
    height: 14px;
    top: 4px;
  }
  .brand-history .bh-timeline .bh-content {
    grid-column: 2/3;
    margin-top: 0;
    /* ここを縦積みにする */
    display: flex;
    flex-direction: column;
    gap: 18px;
    grid-template-columns: none;
    column-gap: 0;
  }
  .brand-history .bh-timeline .bh-content .bh-year {
    font-size: 54px;
    line-height: 1.05;
  }
  .brand-history .bh-timeline .bh-content .bh-year .bh-era {
    font-size: 14px;
    margin-top: 6px;
    letter-spacing: 0.08em;
  }
  .brand-history .bh-timeline .bh-content .bh-text {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
  }
  .brand-history .bh-timeline .bh-content .bh-image {
    width: 100%;
    max-width: 520px;
  }
}
/* 360px付近で文字がきつい時の微調整（最小360想定） */
@media (max-width: 380px) {
  .brand-history .bh-timeline {
    padding: 0 12px;
  }
  .brand-history .bh-timeline .bh-item {
    grid-template-columns: 22px 1fr;
  }
  .brand-history .bh-timeline .bh-content .bh-year {
    font-size: 48px;
  }
  .brand-history .bh-timeline .bh-content .bh-text {
    font-size: 15px;
  }
}
/* =========================================
   OUR ADVANTAGE
========================================= */
.advantage-section {
  color: #111;
  height: 350vh;
  padding: 160px 20px 0 0;
  position: relative;
  background-color: #ffffff;
  --adv-color: #ffffff;
  --adv-p1: 35%;
  --adv-p2: 70%;
  transition: --adv-color 1.2s cubic-bezier(0.16, 1, 0.3, 1), --adv-p1 1.2s cubic-bezier(0.16, 1, 0.3, 1), --adv-p2 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /* 左：円 */
}
.advantage-section.is-wave-active {
  background: linear-gradient(135deg, var(--adv-color) 0%, var(--adv-color) var(--adv-p1), var(--adv-color) var(--adv-p2), var(--adv-color) 100%);
}
.advantage-section.is-wave-active.step-0 {
  --adv-color: #eb6ea5;
  --adv-p1: 35%;
  --adv-p2: 70%;
}
.advantage-section.is-wave-active.step-1 {
  --adv-color: #44c0f0;
  --adv-p1: 35%;
  --adv-p2: 70%;
}
.advantage-section.is-wave-active.step-2 {
  --adv-color: #ffdc00;
  --adv-p1: 30%;
  --adv-p2: 65%;
}
.advantage-section .mission-title {
  text-align: center;
  margin-bottom: 120px;
  /* 英語タイトル */
  /* 日本語タイトル */
  /* マスク外側 */
  /* 中身（動く要素） */
  /* 初期状態（必ずここで定義） */
  /* 表示状態 */
}
.advantage-section .mission-title .title-en {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.1;
}
.advantage-section .mission-title .title-ja {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
.advantage-section .mission-title .wipe-outer {
  display: inline-block;
  overflow: hidden;
}
.advantage-section .mission-title .wipe-inner {
  display: inline-block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.advantage-section .mission-title .title-en .wipe-inner {
  transform: translateX(-120%);
}
.advantage-section .mission-title .title-ja .wipe-inner {
  transform: translateX(120%);
  transition-delay: 0.18s;
}
.advantage-section .mission-title.is-show .wipe-inner {
  transform: translateX(0);
}
.advantage-section .advantage-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.advantage-section .advantage-fixed {
  position: sticky;
  top: 100px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: transparent;
}
.advantage-section .advantage-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.advantage-section .advantage-head {
  text-align: center;
  margin-bottom: 120px;
}
.advantage-section .advantage-head .advantage-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.advantage-section .advantage-head .advantage-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: #111;
}
.advantage-section .advantage-body {
  width: 100%;
  margin: 0 15%;
  display: flex;
  gap: 70px;
}
.advantage-section .advantage-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantage-section .advantage-circle-wrap #advantage-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo {
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo.is-active {
  opacity: 1;
  transform: scale(1);
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
  filter: saturate(0.9) contrast(1.05);
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo[data-index="0"] img {
  object-position: 80% 35%;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo[data-index="1"] img {
  object-position: 50% 50%;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-photo[data-index="2"] img {
  object-position: 50% 60%;
}
.advantage-section .advantage-circle-wrap #advantage-circle .advantage-circle-center {
  font-size: 24px;
  letter-spacing: 0.24em;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  --tx: 0px;
  --ty: 0px;
  transform: translate3d(calc(-50% + var(--tx)), calc(-50% + var(--ty)), 0);
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease, font-size 0.35s ease;
  will-change: transform, font-size;
  backface-visibility: hidden;
  z-index: 2;
  font-size: 40px;
  color: black;
  font-weight: 500;
  white-space: nowrap;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-top {
  --tx: 0px;
  --ty: -200px;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-right {
  --tx: 180px;
  --ty: 70px;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-left {
  --tx: -180px;
  --ty: 70px;
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active {
  opacity: 1;
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0 transparent !important;
  paint-order: normal !important;
  transform: translate3d(calc(-50% + var(--tx)), calc(-50% + var(--ty)), 0);
}
.advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active .num {
  --s: 0px;
  text-shadow: var(--s) 0 0 #000, calc(var(--s) * -1) 0 0 #000, 0 var(--s) 0 #000, 0 calc(var(--s) * -1) 0 #000;
}
.advantage-section .advantage-list {
  flex: 1;
  max-width: 800px;
  position: relative;
  min-height: 240px;
  /* 英字タイトル */
  /* 和文サブ */
  /* 説明文 */
}
.advantage-section .advantage-list .advantage-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) translateY(10px);
  opacity: 0;
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  pointer-events: none;
  margin-top: -20px;
}
.advantage-section .advantage-list .advantage-item.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
}
.advantage-section .advantage-list .advantage-key {
  font-size: 100px;
  font-weight: 800;
  color: #000;
  line-height: 0.9;
}
.advantage-section .advantage-list .advantage-sub {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 30px;
  padding-top: 20px;
  /* 下線 */
}
.advantage-section .advantage-list .advantage-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 450px;
  height: 4px;
  background: #000;
}
.advantage-section .advantage-list .advantage-text {
  font-size: 20px;
  line-height: 1.9;
  color: #111;
  margin-top: 40px;
}
@keyframes advStepSwap {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1440px) {
  .advantage-section .mission-title {
    margin-bottom: 70px;
  }
}
@media (max-width: 1366px) {
  .advantage-section {
    padding: 120px 0 0 0 !important;
  }
  .advantage-section .mission-title {
    margin-bottom: 72px;
  }
  .advantage-section .mission-title .title-en {
    font-size: 84px;
  }
  .advantage-section .mission-title .title-ja {
    font-size: 34px;
  }
  .advantage-section .advantage-fixed {
    top: 35px;
  }
  .advantage-section .advantage-inner {
    width: 930px;
  }
  .advantage-section .advantage-body {
    gap: 56px;
    margin: 0;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle {
    --circle: 360px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item {
    font-size: 36px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active {
    font-size: 72px;
  }
  .advantage-section .advantage-list .advantage-key {
    font-size: 84px;
  }
  .advantage-section .advantage-list .advantage-sub {
    font-size: 26px;
  }
  .advantage-section .advantage-list .advantage-text {
    font-size: 19px;
  }
}
/* 横向き */
@media screen and (min-width: 1361px) and (max-width: 1371px) and (min-height: 1019px) and (max-height: 1029px) {
  .advantage-section .advantage-fixed {
    top: 180px;
  }
}
/* ============================================================
     MQ <= 1080
  ============================================================ */
@media (max-width: 1080px) {
  .advantage-section {
    padding: 110px 20px 0 0;
  }
  .advantage-section .advantage-inner {
    width: 100%;
  }
  .advantage-section .mission-title {
    margin-bottom: 60px;
  }
  .advantage-section .mission-title .title-en {
    font-size: 72px;
  }
  .advantage-section .mission-title .title-ja {
    font-size: 30px;
  }
  .advantage-section .advantage-fixed {
    top: 80px;
  }
  .advantage-section .advantage-body {
    gap: 44px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 64px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item {
    font-size: 32px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active {
    font-size: 64px;
  }
  .advantage-section .advantage-list .advantage-key {
    font-size: 72px;
  }
  .advantage-section .advantage-list .advantage-sub {
    font-size: 24px;
    padding-bottom: 24px;
    padding-top: 16px;
  }
  .advantage-section .advantage-list .advantage-text {
    font-size: 18px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1019px) and (max-width: 1029px) and (min-height: 1361px) and (max-height: 1371px) {
  .advantage-section .advantage-fixed {
    top: 25%;
  }
}
@media (max-width: 950px) {
  .advantage-section .mission-title {
    margin-bottom: 44px;
  }
  .advantage-section .mission-title .title-en {
    font-size: 75px;
  }
  .advantage-section .mission-title .title-ja {
    font-size: 30px;
  }
  .advantage-section .advantage-fixed {
    top: 70px;
  }
  .advantage-section .advantage-body {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle {
    width: 300px;
    height: 300px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item {
    font-size: 30px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-top {
    transform: translate(-50%, -200px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-right {
    transform: translate(100px, 70px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-left {
    transform: translate(-130px, 70px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active {
    font-size: 60px;
  }
  .advantage-section .advantage-list {
    max-width: 720px;
    min-height: 260px;
    text-align: center;
  }
  .advantage-section .advantage-list .advantage-sub {
    /* 下線 */
  }
  .advantage-section .advantage-list .advantage-sub::after {
    width: 100%;
  }
  .advantage-section .advantage-list .advantage-item {
    margin-top: 150px;
  }
  .advantage-section .advantage-list .advantage-key {
    font-size: 56px;
  }
  .advantage-section .advantage-list .advantage-sub {
    font-size: 22px;
  }
  .advantage-section .advantage-list .advantage-text {
    font-size: 17px;
  }
}
@media (min-width: 815px) and (max-width: 825px) and (min-height: 1175px) and (max-height: 1185px) {
  .advantage-section .advantage-fixed {
    top: 170px;
  }
}
@media (min-width: 805px) and (max-width: 815px) and (min-height: 1075px) and (max-height: 1085px) {
  .advantage-section .advantage-fixed {
    top: 100px;
  }
}
@media (min-width: 795px) and (max-width: 805px) and (min-height: 1275px) and (max-height: 1285px) {
  .advantage-section .advantage-fixed {
    top: 220px;
  }
}
@media (min-width: 763px) and (max-width: 773px) and (min-height: 1019px) and (max-height: 1029px) {
  .advantage-section .advantage-fixed {
    top: 80px;
  }
}
/* ============================================================
     SP <= 600 (さらに読みやすく)
  ============================================================ */
@media (max-width: 600px) {
  .advantage-section {
    padding: 96px 14px 0 0;
  }
  .advantage-section .mission-title {
    margin-bottom: 34px;
  }
  .advantage-section .mission-title .title-en {
    font-size: 44px;
  }
  .advantage-section .mission-title .title-ja {
    font-size: 20px;
    letter-spacing: 0.18em;
  }
  .advantage-section .advantage-body {
    padding: 0 6px;
    gap: 0px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle {
    width: 200px;
    height: 200px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item {
    font-size: 24px;
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-top {
    transform: translate(-50%, -135px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-right {
    transform: translate(70px, 20px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.pos-left {
    transform: translate(-100px, 25px);
  }
  .advantage-section .advantage-circle-wrap #advantage-circle .circle-item.active {
    font-size: 52px;
  }
  .advantage-section .advantage-list {
    min-height: 240px;
  }
  .advantage-section .advantage-list .advantage-item {
    margin-top: 120px;
  }
  .advantage-section .advantage-list .advantage-key {
    font-size: 44px;
    line-height: 0.95;
  }
  .advantage-section .advantage-list .advantage-sub {
    font-size: 18px;
    padding-bottom: 18px;
  }
  .advantage-section .advantage-list .advantage-text {
    font-size: 15px;
    line-height: 1.9;
    margin-top: 22px;
  }
}
@media (max-width: 360px) {
  .advantage-section .advantage-fixed {
    top: 5px;
  }
  .advantage-section .mission-title {
    margin-bottom: 5px;
  }
}
/* ============================================================
   Safariだけ: 2度動く対策
   - font-size のtransitionを無効化
============================================================ */
@supports (-webkit-touch-callout: none) {
  .advantage-section #advantage-circle .circle-item {
    transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease !important;
    will-change: transform;
  }
}
/* ================================
   logo
================================ */
.logo-section {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  text-align: center;
  padding-top: 120px;
  /* ロゴ画像まわり */
  /* Concept ブロック */
}
.logo-section .section-title {
  font-size: clamp(24px, 10vw, 60px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  color: #000;
}
.logo-section .section-sub {
  font-size: 24px;
  letter-spacing: 0.3em;
  color: #666;
  margin-bottom: 100px;
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}
.logo-section .logo-inner {
  width: min(900px, 90%);
  margin: 0 auto;
}
.logo-section .logo-img-wrap {
  margin-bottom: 60px;
}
.logo-section .logo-img-wrap .logo-img {
  width: 60%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.logo-section .logo-concept .concept-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  color: #222;
}
.logo-section .logo-concept p {
  font-size: 20px;
  line-height: 2.1;
  color: #333;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.logo-section .logo-concept p br.br-pc {
  display: inline;
}
.logo-section .logo-concept p br.br-sp {
  display: none;
}

/* ============================================================
   logo-section height 調整（advantageとは別定義）
============================================================ */
@media (min-width: 815px) and (max-width: 825px) and (min-height: 1175px) and (max-height: 1185px) {
  .logo-section {
    height: 75vh;
  }
}
@media (min-width: 805px) and (max-width: 815px) and (min-height: 1075px) and (max-height: 1085px) {
  .logo-section {
    height: 75vh;
  }
}
@media (min-width: 795px) and (max-width: 805px) and (min-height: 1275px) and (max-height: 1285px) {
  .logo-section {
    height: 75vh;
  }
}
/* =====================================
   logo - SP対応（最小360px想定）
===================================== */
@media (max-width: 600px) {
  br.br-pc {
    display: none !important;
  }
  br.br-sp {
    display: inline !important;
  }
}
@media (max-width: 600px) {
  .logo-section {
    height: auto;
    padding: 80px 16px 80px;
  }
  .logo-section .section-title {
    font-size: clamp(22px, 8vw, 40px);
    letter-spacing: 0.1em;
  }
  .logo-section .section-sub {
    font-size: 16px;
    letter-spacing: 0.18em;
    margin-bottom: 48px;
  }
  .logo-section .logo-inner {
    width: 100%;
    margin: 0 auto;
  }
  .logo-section .logo-img-wrap {
    margin-bottom: 36px;
  }
  .logo-section .logo-img-wrap .logo-img {
    width: 86%;
    max-width: 320px;
  }
  .logo-section .logo-concept .concept-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .logo-section .logo-concept p {
    font-size: 15px;
    line-height: 2;
  }
}
@media (max-width: 380px) {
  .logo-section {
    padding: 72px 12px 72px;
  }
  .logo-section .section-sub {
    font-size: 15px;
    letter-spacing: 0.14em;
    margin-bottom: 40px;
  }
  .logo-section .logo-img-wrap .logo-img {
    width: 92%;
    max-width: 300px;
  }
  .logo-section .logo-concept .concept-title {
    font-size: 18px;
  }
  .logo-section .logo-concept p {
    font-size: 15px;
  }
}
/* ==========================================
   Full Movie Section
========================================== */
.fullmovie-section {
  position: relative;
  padding: 160px 20px;
  text-align: center;
  margin-top: 200px;
}
.fullmovie-section .fm-title {
  font-size: clamp(24px, 13vw, 80px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #000;
}
.fullmovie-section .fm-sub {
  font-size: 20px;
  letter-spacing: 0.3em;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif !important;
}

@media (max-width: 600px) {
  .fullmovie-section {
    padding: 0 20px;
    margin-top: 0;
  }
}
/* ==========================================
   Mini Movie
========================================== */
.mini-movie {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.mini-movie .mini-video {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   Glass Play Button
========================================== */
.glass-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-backdrop-filter: blur(22px) saturate(210%) brightness(1.15);
  backdrop-filter: blur(22px) saturate(210%) brightness(1.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.68), inset 0 -22px 38px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.glass-play-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 58%), radial-gradient(circle at 70% 75%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 62%);
  /* ===== 変更: 濁り防止で下げる ===== */
  opacity: 0.55;
  transform: translate(-6%, -4%) rotate(0deg);
  animation: glassLiquidFloat 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.glass-play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -26px 44px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.glass-play-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}
.glass-play-btn .glass-filter,
.glass-play-btn .glass-overlay,
.glass-play-btn .glass-specular {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.glass-play-btn .glass-overlay {
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 58%), linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.55;
  z-index: 2;
}
.glass-play-btn .glass-specular {
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.72), inset 0 0 70px rgba(255, 255, 255, 0.1);
  z-index: 3;
}
.glass-play-btn .glass-content {
  position: relative;
  z-index: 4;
}
.glass-play-btn .glass-content .triangle {
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255, 255, 255, 0.92);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
}

@media (max-width: 600px) {
  .glass-play-btn {
    width: 70px;
    height: 70px;
  }
}
/* ==========================================
   YouTube Movie Modal
========================================== */
.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.movie-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.movie-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.movie-iframe-wrap {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
  z-index: 2;
}
.movie-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #000;
}

/* 閉じるボタン */
.movie-close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.movie-close:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.next-site-section {
  padding: 180px 20px 200px;
  background: #fff;
  color: #111;
  text-align: center;
}

.next-site-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.next-site-head {
  margin-bottom: 80px;
}
.next-site-head .next-site-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.next-site-head .next-site-lead {
  font-size: 18px;
  color: #444;
  letter-spacing: 0.06em;
}

/* リンクカード */
.next-site-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.next-site-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding: 40px 24px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.next-site-card .en {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.next-site-card .ja {
  font-size: 16px;
  color: #333;
}
.next-site-card:hover {
  background: #000;
  color: #fff;
  transform: translateY(-4px);
}
.next-site-card:hover .ja {
  color: #ddd;
}

@media (max-width: 840px) {
  .next-site-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .next-site-card {
    min-height: 150px;
  }
}
@media (max-width: 840px) {
  .next-site-section {
    padding: 100px 20px 200px;
  }
  .next-site-head {
    margin-bottom: 80px;
  }
  .next-site-head .next-site-title {
    font-size: 46px;
    letter-spacing: 0em;
  }
}
/* ===============================
   PAGE TOP（文字だけ・白黒ミニマル）
=============================== */
.next-site-pagetop {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 18px;
  padding-right: 24px;
  padding-bottom: 24px;
}
.next-site-pagetop .to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.22);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.next-site-pagetop .to-top:hover {
  transform: translateY(-2px);
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.next-site-pagetop .to-top:active {
  transform: translateY(0) scale(0.99);
}
.next-site-pagetop .to-top:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.5);
  outline-offset: 3px;
}/*# sourceMappingURL=style.css.map */