/* 共通設定 */

:root {  	
  --color-bg: #F7F8F7;
  --color-ink: #1E2428;
  --color-main: #73808A;
  --color-gray: #656565;
  --color-sub: #AAB7C2;
  --color-wh: #FFF;
  --color-gold: #C0AB7F;
  
  font-size: 100%; /* 16pxベース */
  --text-xxs: 0.625rem; /* 10px */
  --text-xs:  0.75rem;  /* 12px */
  --text-sm:  0.875rem; /* 14px */
  --text-md:  1rem;     /* 16px */
  --text-sl:  1.125rem;  /* 18px */
  --text-lg:  1.25rem;  /* 20px */
  --text-xl:  1.75rem;  /* 28px */
  --text-2xl: 2.5rem;   /* 40px */
  --text-3xl: 2.875rem;   /* 46px */
  --text-subtitle: 3rem;    /* 48px */
  --text-price: 3.25rem;  /* 52px */
  --text-number: 6.875rem;    /* 約72px */
  
  --tracking-wide: 0.2em; /* accent文字間隔 */
  
  --font-bold: 600;
    
  --padding: 24px;
  --radius: 5px;
}


/* 画面幅1440pxの時にブラウザ標準の 16px になるよう計算。 */
html {
  font-size: calc(16px + (100vw - 1440px) * 0.0111);
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  font-family: neue-haas-grotesk-display, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html,
body,
a,
button,
input,
textarea,


/* ---------------
	LAYOUT
--------------- */
.wrapper {
  width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 5.375rem 24px;
}
.container-bg {
  width: auto;
  margin: 10px;
  padding: 5.375rem 24px;  
}
.container-full {
  width: 100%;
  margin: 0 auto;
  padding: 5.375rem 0;
}
.inner {
  width: 1240px;
  margin: 0 auto;
}
/*.inner-full {
  width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}*/
@media (max-width: 1260px) {
  .inner,
  .inner-full {
	width: 100%;
  }	
}



/* 改行設定 */
.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}
@media (max-width: 1024px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}


/* ---------------
	common
--------------- */

/* Text */
h2.main-title {
  font-size: var(--text-lg);
  color: var(--color-ink);
  font-weight: 600;
}
/*h2.main-title-ja {
  font-family: var(--font-jp);	
  font-size: var(--text-sm);
  color: var(--color-main);
  font-weight: 400;
}*/
p.sub-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1;
}
p.sub-title .highlight {
  font-weight: 600;	
  color: var(--color-main);
}
/*p.sub-title-jp {
  font-family: var(--font-jp);	
  font-size: var(--text-sm); 
  color: var(--color-ink);
  font-weight: 400;
  margin-top: 0.75rem;
}*/
@media (max-width: 768px) {
	p.sub-title {
		font-size: var(--text-xl);
	}
	p.sub-title-jp {
		display: none;
	}
}


/* Section Title（左右） */
.header-group-01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4.5rem;
}
.header-group-01 .header-left {
  flex: 0 0 auto;
  text-align: left;
}
.header-group-01 .header-right {
  flex: 0 0 auto;
  text-align: right;
}
@media (max-width: 1024px) {
  .header-group-01 {
    flex-direction: column;
    gap: 2rem;
  }  
  .header-group-01 .header-right {
    text-align: left;
    width: 100%;
  }
}
/* Section Title（上下） */
.header-group-02 {
  display: block;
  margin-bottom: 3.75rem;
}
.header-group-02 .header-top {
  margin-bottom: 1.75rem;
}
.header-group-02 .header-bottom {}





/* ---------------
	HEADER
--------------- */

/* ロゴ＋ナビ：スクロールしない（ページ上部に存在） */
#header {
  position: relative;
  width: 100%;
  padding: 28px 0;
  z-index: 100;
}
.header-wrapper {
  width: 1240px;
  margin: 0 auto;
  padding-right: 80px; /* menu-toggle分のスペース */
  display: flex;
  flex-direction: row;
  align-items: self-start;
  gap: 70px;
}
@media (max-width: 1260px) {
  #header {
	padding: 15px 0 20px 0;  
  }
  .header-wrapper {
    width: 100%;
    padding: 10px 80px 0 24px; /* 右はmenu-toggle分 */
  }
}
.header-logo {
  display: block;
  width: 240px;
  height: auto;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}
.header-logo:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 8px 3px rgba(0, 0, 0, 0.25));
}
.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header-nav {
    display: flex;
    font-size: var(--text-sl);
    font-weight: 600;
    align-items: center;
}
.header-nav a {
    display: inline-block;
    position: relative;
    margin-right: 28px;
    white-space: nowrap;
    vertical-align: bottom;
    color: transparent;
    clip-path: inset(0 -4px); /* 縦だけクリップ、横は4px余裕 */
}
.header-nav a:last-child {
    margin-right: 0;
}
.header-nav a::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--color-ink); 
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.header-nav a::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--color-ink);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 1);
    transform: translateY(100%);
}
.header-nav a:hover::before {
    transform: translateY(-100%);
}
.header-nav a:hover::after {
    transform: translateY(0);
}

@media (max-width: 768px) {
  .header-logo {
	width: 11.5rem;
  }	
  .header-nav {
    display: none;
  }
}

/* toggle */
.menu-toggle {
  position: fixed;
  top: 15px;
  right: max(30px, calc((100vw - 1240px) / 2));
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2000;
  transition:
    transform .85s cubic-bezier(.16,1,.3,1),
    opacity .35s ease;
}
.menu-toggle.header-hidden {
  transform: translateY(-200%);
  opacity: 0;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--color-ink);
  transition: .4s;
}
.menu-toggle span:first-child {
  transform: translate(-50%, -8px);
}
.menu-toggle span:last-child {
  transform: translate(-50%, 8px);
}
.menu-toggle.active span:first-child {
  background: var(--color-wh);
  transform: translate(-50%, 0) rotate(30deg);
}
.menu-toggle.active span:last-child {
  background: var(--color-wh);
  transform: translate(-50%, 0) rotate(-30deg);
}@media(max-width:768px){
  .menu-toggle {
    /*top: 12px;
    right: 30px;*/
    width: 46px;
    height: 46px;
  }
  .menu-toggle span {
    width: 46px;
  }
}


/* overlay */
.menu-overlay{
  position:fixed;
  inset:0;
  background:var(--color-gray);
  opacity:0;
  visibility:hidden;
  transition:.5s;
  z-index:1500;
}
.menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* content */
.menu-container{
  max-width:900px;
  width:calc(100% - 80px);
  height:100vh;
  margin:0 auto;
  padding:120px 0 120px;
  display:flex;
  flex-direction:column;
}
.menu-brand{
  display:flex;
  gap:24px;
  align-items: baseline;
}
.brand-logo{
  width: 230px;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}
.brand-logo:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}
.brand-logo img {
  width: 100%;
  height: auto;
}
.brand-tagline{
  color: var(--color-wh);
}

/* grid */
.menu-grid{
  width: 620px;
  flex: none;
  margin-top:80px;
  display:grid;
  grid-template-columns:
  1fr
  1fr
  0.7fr;
  gap:10px;
}

/* columns */
.menu-column{
  display:flex;
  flex-direction:column;
  gap:32px;
}
.menu-column a{
  display:block;
  text-decoration:none;
  color: var(--color-wh);
}
.menu-column .menu-en {
  display:block;
  font-family: var(--font-en);
  color: var(--color-wh);
  font-size: var(--text-lg);
  line-height: 1.2;
}
/*.menu-column .menu-jp {
  display:block;
  font-family: var(--font-jp);
  color: var(--color-gold);
  font-size: var(--text-sm);
  font-weight: 300;
}*/
/*.menu-column a:hover{
  transform:translateX(8px);
}*/

/* side */
.side-column{
  gap:35px;
}
.lang-switch{
  display: flex;
  flex-direction: row;
  font-family: var(--font-en);
  font-size: var(--text-lg);
  color: var(--color-gold);
}
.lang-switch a {
}
.social-links{
  display:flex;
  flex-direction:column;
  gap:15px;
}
.social-links a{
  width:24px;
  height:24px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CTA */
.menu-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-wh);
    font-weight: 600;
    color: var(--color-ink);
    text-decoration: none;
    border-radius: 50px;
    height: 54px;
    position: relative;
    transition: background-color 0.3s ease;
    width: 240px;
    padding: 0 24px;
}
.menu-cta .btn-dot { /* 白いドット */
    width: 5px;
    height: 5px;
    background-color: var(--color-ink);
    border-radius: 50%;
    margin-right: 18px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* ドットがホバー時に右にスムーズに動く設定 */
}
.menu-cta .text-mask-wrapper { /* マスクエリア */
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    position: relative;
}
.menu-cta .text-slide-container {
    display: flex;
    flex-direction: column;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
.menu-cta .text-row {
    height: 29px;
    font-size: var(--text-md);
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.menu-cta:hover {
	/*color: var(--color-wh);*/
    background-color: var(--color-gold);
}
.menu-cta:hover .btn-dot {
	/*background-color: var(--color-wh);*/
    transform: translateX(10px);
}
.menu-cta:hover .text-slide-container {
    transform: translateY(-29px);
}



/* mobile */

@media(max-width:900px){
  .menu-container {
	padding: 70px 0 0 0;
  }
  .menu-brand {
	flex-direction: column;
  }
  .menu-grid{
	width: 100%;
    grid-template-columns:1fr;
    gap:0px;
    margin-top: 30px;
    overflow:auto;
    flex: none;
  }
  .brand-logo{
    width: 180px;;
  }
  .brand-tagline {
	display: none;  
  }
  .menu-column {
	gap: 0px;
  }
  .menu-column a {
	/*margin: 5px 0;*/
  }
  .menu-column .menu-en {
	font-size: var(--text-lg);
	line-height: 2.2;
  }
  .menu-column .menu-jp {
	  display: none;
  }
  .social-links {
	flex-direction: row;
  }
  .lang-switch{
    margin: 40px 0;
  }
  .menu-cta{
    width:100%;
  }
  .menu-cta .text-row {
	font-size: var(--text-lg);
  }
}



/* ---------------
	00 FV
--------------- */
#fv {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 24px;
}
#fv .fv-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 5.375rem 0px 0;
  max-width: 1240px;
  margin: 0 auto;
}
#fv .fv-text {
  flex: 1;
}
#fv .fv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
#fv .fv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#fv .fv-eyebrow {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 1rem;
}
#fv .fv-line1,
#fv .fv-line2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-ink);
}
#fv .fv-highlight {
  color: var(--color-main);
}
#fv .fv-desc {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--text-ls);
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.45;
  max-width: 620px;
}
#fv .fv-right {
  display: flex;
  flex-direction: column;
  width: 150px;
  flex-shrink: 0;
  gap: 12px;
}
#fv .fv-image {
  width: 100%;
  flex-shrink: 0;
}
#fv .fv-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
/* PC: fv-top内のimageは非表示（右側の独立したimageを使う） */
#fv .fv-top {
  display: block;
}
#fv .pc-hidden { display: none; }
#fv .sp-hidden { display: block; }
#fv .fv-clock-block {
  margin-top: 1rem;
  width: 150px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
#fv .fv-clock-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#fv .fv-clock-block .clock-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: var(--text-sm);
  color: var(--color-ink);
  width: 100%;
}
#fv .fv-clock-block .divider {
  color: var(--color-sub);
}
#fv .fv-weather {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--color-ink);
}
#fv .fv-weather-icon {
  font-size: 1.1rem;
  line-height: 1;
}


@media (max-width: 768px) {
  #fv .fv-inner {
    flex-direction: column;
    /*padding: 3rem 24px 0;*/
    gap: 0;
  }
  #fv .fv-text {
    width: 100%;
  }
  #fv .fv-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
  }
  #fv .fv-top-row {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #fv .fv-clock-block {
    width: auto;
  }
  #fv .pc-hidden { display: block; }
  #fv .sp-hidden { display: none; }
  #fv .fv-image {
    width: 4.625rem;
    flex-shrink: 0;
  }
  #fv .fv-eyebrow {
	line-height: 1.3;
    margin-bottom: 0;
  }
  #fv .fv-line1,
  #fv .fv-line2 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }
}


/* ---------------
	00 FV Zoom
--------------- */
#fv-zoom {
  height: 300vh;
}
#fv-zoom .fv-zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
#fv-zoom .fv-zoom-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 36, 40, var(--fv-overlay, 0.75));
  z-index: 0;
  pointer-events: none;
}
#fv-zoom .fv-zoom-text {
  position: absolute;
  z-index: 1;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}
#fv-zoom .fv-zoom-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 0;
  will-change: opacity;
}

/* ---------------
	01 Features
--------------- */
#features {}
#features .content-wrapper {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  margin-bottom: 4.375rem;
}
#features .image-area {
  flex: 0 0 14rem;
  max-width: 14rem;
}
#features .mockup-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

/*挿入 */
#features .text-area {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
#features .text-column {
  width: 100%;	
  flex: 1;
  
}
#features .text-column h3 {
  font-size: var(--text-xl);
  line-height: 1.2;
  margin-bottom: 15px;
}
#features .text-column p {
  font-size: var(--text-sl);
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (max-width: 1300px) {
  #features .text-area {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  #features .text-column.spacing-top {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  #features .content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  #features .image-area {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  #features .text-area {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #features .text-area {
    flex-direction: column;
    gap: 0;
  }
  #features .text-column.spacing-top {
    margin-top: 0;
  }
  #features .pc-only {
    display: none;
  }
}

/*ここまで*/

/*#features .text-area h1 {
  font-size: var(--text-xl);
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 20px;
}
#features .text-area p {
  font-size: var(--text-lg);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}*/

@media (max-width: 768px) {
  #features .content-wrapper {
	flex-direction: column;
	gap: 2.5rem;
  }
  #features .image-area {
	flex: none;
	max-width: 100%;
  }
}

.counter-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*gap: 1.5rem;*/
  gap: 5.5rem;
}
.counter-item {
  flex: 1;
  text-align: left;
}
.counter-item.fv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.counter-item.fv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.crown-icon {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
}
.crown-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--color-gold);
}
.number {
  font-family: var(--font-en);
  font-size: var(--text-number);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ink);
  margin-bottom: 1.25rem;
}
.counter {
  font-variant-numeric: tabular-nums; /* 数字の幅を一定にしてガタつきを防ぐ */
}
.label-en {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--color-main);
}
/*.label-ja {
  font-size: var(--text-sm);
  color: var(--color-main);
}*/

@media (max-width: 1024px) {
  .counter-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .counter-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
  }
  .counter-item {
	width: 100%;
	padding-top: 40px; 
    text-align: center;
    border-top: 1px solid var(--color-sub);
  }
  .counter-item:last-child {
	padding-bottom: 40px;   
	border-bottom: 1px solid var(--color-sub);
  } 
  .crown-icon {
    width: 100%;
    justify-content: center;
  }
  .number {
    font-size: var(--text-number);
  }
}

/* ---------------
	02 Works
--------------- */
#works {}

.works-slider-wrapper {
  position: relative;
}

.works-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /*border: 1px solid rgba(255,255,255,0.3);*/
  background: rgba(0,0,0,0.15);
  color: var(--color-wh);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.works-nav:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(30,36,40,0.6);
}
.works-prev { left: 20px; }
.works-next { right: 20px; }

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

@media (max-width: 768px) {
	#works .inner {
		padding: 0 24px;
	}
}

.work-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.work-card:hover > img {
  transform: scale(1.08);
}


.works-track-outer {
  overflow: hidden;
  width: 100%;
}

.works-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

@media (max-width: 768px) {
  .works-track {
    gap: 16px;
  }
}

.work-card {
	flex-shrink: 0;
	width: 600px;
	height: 400px;
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 768px) {
  .work-card {
    width: 80vw;
    height: calc(80vw * 2 / 3);
    padding: 14px;
  }
}
 
  
  
.work-card:hover {
	opacity: 1;
}
.work-card-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}
/* テキストを動画の上に重ねるためのグラデーション */
.work-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(30,36,40,0.9) 0%, transparent 25%);
	border-radius: var(--radius);
	pointer-events: none;
}
.work-card-content {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 2;
}
.work-card-tag {
	font-size: var(--text-xxs);
	color: rgba(255,255,255,0.7);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	margin-bottom: 5px;
	position: relative;
	font-weight: 600;
	z-index: 1;
}
.work-card-title {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-wh);
	position: relative;
	line-height: 1.4;
	z-index: 1;
}

/* 逆 */
.work-card-scroll.is-reverse {
  animation-direction: alternate-reverse;
}


/* ---------------
	03 Service
--------------- */
#service {}
#service .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--padding); 
  width: 100%;
  margin: 60px 0;
}

#service .service-section {
  display: grid;
  grid-template-columns: 220px 1fr 350px; /* 左：310px、中央：伸び縮み、右：350px */
  align-items: center;
  padding: var(--padding);
  width: 100%;
  gap: 40px;

  margin: 0 auto;
  border-radius: var(--radius);
  background-color: var(--color-wh);
  box-shadow: 0 0 5px rgba(0,0,0,0.03);
} 

#service .service-title .number {
  display: block;
  font-size: var(--text-md);
  color: var(--color-main);
  font-weight: 500;
  margin-bottom: 8px;
}
#service .service-title h2 {
  font-size: var(--text-xl);
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.2;
}
#service .service-desc p {
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-ink);
  letter-spacing: 0.03em;
}
#service .service-image {
  overflow: hidden;	
}
#service .service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

@media screen and (max-width: 1200px) {
  #service .service-section {
    grid-template-columns: 1fr 300px; 
    gap: 32px;
  }
  #service .service-title {
    grid-column: 1;
  }
  #service .service-desc {
    grid-column: 1;
    max-width: 100%;
  }
  #service .service-image {
    grid-column: 2;
    grid-row: 1 / span 2; /* 縦方向、2行分（タイトルと説明文の隣）にまたがって表示 */
  }
}

@media screen and (max-width: 768px) {
  #service .service-section {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  #service .service-title,
  #service .service-desc,
  #service .service-image {
    grid-column: auto;
    grid-row: auto;
  }
}

/* CTA */
#service .cta-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 32px;
  background-color: var(--color-ink);
  color: var(--color-wh);
  text-decoration: none;
  border-radius: var(--radius);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.4s ease-out;
}
#service .cta-text-left {
  font-size: var(--text-2xl);
  font-weight: 600;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#service .cta-text-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-2xl);
  font-weight: 600;
  position: absolute;
  right: 32px;
  transform: translateX(0);
  transition: transform 0.4s ease-out, right 0.4s ease-out;
}	
#service .cta-text-right::before { /* dot */
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-wh);
  border-radius: 50%;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
	#service .cta-button:hover {
	  color: var(--color-ink);
	  background-color: var(--color-gold); 
	}
	#service .cta-button:hover .cta-text-left {
	  opacity: 0;
	  transform: translateX(-320px);
	}
	#service .cta-button:hover .cta-text-right::before {
	  background-color: var(--color-ink);
	}
	#service .cta-button:hover .cta-text-right {
	  right: 50%;
	  transform: translateX(50%);
	}
}
@media screen and (max-width: 768px) {
  #service .cta-button {
    padding: 38px;
    border-radius: 50px;
  }	
  #service .cta-text-left {
	display: none;
  }
  #service .cta-text-right {
	font-size: var(--text-lg);
	position: absolute;
	font-weight: 600;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}   



/* ---------------
	04 About
--------------- */
#about {
  background-color: var(--color-main);
  border-radius: var(--radius);
}

/* Title Text */
#about h2.main-title {
  color: var(--color-wh);
}
#about p.sub-title {
  color: var(--color-wh);
}
#about p.sub-title .highlight {
  color: var(--color-sub);
}

/* profile */
#about .profile-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto 90px auto;
  color: var(--color-wh);
  gap: 4.375rem;
}
#about .profile-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4.375rem;
  flex: 1;
  min-width: 0;
}
#about .video-section {
  position: relative;
  flex: 0 0 240px;
  height: 427px;
  border-radius: var(--radius);
  overflow: hidden;
}
#about .content-description {
  flex: 1;
  min-width: 0;
  margin: 0;
}
/* Header */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-md);
}

/* Tokyo Time */
#about .clock-container {	
  display: flex;
  flex-direction: row;
}
#about .clock-container #tokyo-clock {}
#about .clock-container .label {}      
#about .clock-container .divider {
  margin: 0 15px;
  color: var(--color-sub);
}

#about .sns-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.6s ease;
}
#about .sns-icons img:hover {
  opacity: 1;
}
#about .section-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 22px 0 20px 0;
}
#about .profile-main h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.4;
}
#about .profile-sub {
  line-height: 1.55;
}
#about .profile-sub .title {
	font-size: var(--text-sl);
}
#about .profile-details .description p {
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}
#about .profile-details .description p:last-child {
  margin-bottom: 0;
}
#about .profile-details .description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about .profile-details .description li {
  position: relative;
  padding-left: 20px;
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}
#about .profile-details .description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-wh);
  font-size: var(--text-md);
}


/* Text Slider */
#about .headline-wrap {
  position: relative;
  overflow: hidden;
  height: calc(130px * 1.1);
  flex: 1;
  min-width: 0;
  margin: 0;
  align-self: flex-end;
}
#about .headline-wrap .headline {
  position: absolute;
  inset: 0;
  opacity: 1;
  white-space: nowrap;
  font-size: 130px;
  line-height: 1;
  font-weight: 600;
  color: var(--color-wh);
}
#about .headline-wrap .headline.is-active {}
#about .headline-wrap .headline span {
  display: inline-block;
  opacity: 1;
  transform: translateY(100%);
}
#about .headline-wrap .headline.enter span { animation: charIn .5s forwards; }
#about .headline-wrap .headline.leave span { animation: charOut .5s forwards; }
@keyframes charIn {
  from {
    opacity: 1;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes charOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-110%);
  }
}

/* 1200px以下: profile-toprow横並び・headline下段 */
@media (max-width: 1200px) {
  #about .profile-container {
    flex-direction: column;
    gap: 32px;
  }
  #about .profile-top-row {
    width: 100%;
    flex: none;
  }
  #about .headline-wrap {
    flex: none;
    width: 100%;
    height: calc(130px * 1.1);
    align-self: auto;
    margin: 0;
  }
}

/* 768px以下: 全部縦1列 */
@media (max-width: 768px) {
  #about .profile-top-row {
    flex-direction: column;
    gap: 32px;
  }
  #about .video-section {
    flex: none;
    width: 60vw;
    height: calc(60vw * 1.778);
    margin: 0 auto;
  }
  #about .content-description {
    flex: none;
    width: 100%;
  }
  #about .headline-wrap {
    flex: none;
    width: 100%;
    height: calc(var(--text-3xl) * 1.1);
    align-self: auto;
    margin: 0;
  }
  #about .headline-wrap .headline {
    font-size: var(--text-3xl);
  }
  #about .profile-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}





/* ---------------
	05 Workflow
--------------- */
#workflow .container {}
#workflow .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
}
#workflow .header-group-02 {
  position: relative;
  position: sticky;
  top: 40px;
}
@media (max-width: 768px) {
  #workflow .inner {
	flex-direction: column;
  }
  #workflow .header-group-02 {	
    width: 100%;
    position: static;
  }
}

#workflow .card-container {
	max-width: 800px;
	padding-bottom: 200px; /* 最後のカードが留まる余白 */
}
@media (max-width: 1050px) {
	#workflow .card-container { width: 76%; }
}
@media (max-width: 768px) {
	#workflow .card-container { width: 100%; padding-bottom: 100px; }
}

#workflow .workflow-card {
 position: sticky;
  background-color: var(--color-wh);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  border: 1px solid var(--color-bg);
  box-shadow: 0 0 5px rgba(0,0,0,0.03);
  /*box-shadow: 0 0 5px rgba(204,204,204,0.1);*/
}
.workflow-card:nth-child(1) { z-index: 1; top: 50px; }
.workflow-card:nth-child(2) { z-index: 2; top: 130px; }
.workflow-card:nth-child(3) { z-index: 3; top: 210px; }
.workflow-card:nth-child(4) { z-index: 4; top: 290px; }
.workflow-card:nth-child(5) { z-index: 5; top: 370px; }

/*@media (max-width: 1140px) {
	#workflow .card-container {
		max-width: 65vw;
	}
}*/
@media (max-width: 768px) {
	#workflow .workflow-card {
		min-height: 280px;
	}
	.workflow-card:nth-child(1) { z-index: 1; top: 64px; }
	.workflow-card:nth-child(2) { z-index: 2; top: 128px; }
	.workflow-card:nth-child(3) { z-index: 3; top: 192px; }
	.workflow-card:nth-child(4) { z-index: 4; top: 256px; }
	.workflow-card:nth-child(5) { z-index: 5; top: 320px; }
}

/* ヘッダー部分 */
#workflow .workflow-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
#workflow .header-left {
  display: flex;
  align-items: center;
}
#workflow .step-number {
  font-family: var(--font-en);
  font-size: var(--text-lg);
  color: var(--color-main);
  font-weight: 300;
  margin-right: 40px;
}
#workflow .step-title {
  font-family: var(--font-en);	
  font-size: var(--text-3xl);
  color: var(--color-ink);
  font-weight: 600;
  margin: 0;
  line-height: 1;
}
#workflow .duration {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
#workflow .workflow-content {
  padding: 0 24px 0 61px;
}
#workflow .workflow-image {
  width: 170px;
  height: 118px;  
  flex-shrink: 0;
}
#workflow .workflow-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
#workflow .workflow-description {
  flex-grow: 1;
}
#workflow .workflow-description p {
  font-size: var(--text-md);
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  #workflow .workflow-box {
    padding: 24px;
  }
  #workflow .workflow-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 3px;
  }
  #workflow .step-title {
    font-size: var(--text-xl);
  }
  #workflow .step-number {
    margin-right: 20px;
  }
  #workflow .duration {
	padding-left: 40px;
  }
  #workflow .workflow-content {
    flex-direction: column;
    padding-left: 0;
    gap: 20px;
  }
  #workflow .workflow-image {
    width: 100%;
    height: auto;
  }
}
/* 動画の最後にある黒いコンタクトセクションの再現 */
#workflow .workflow-card.dark {
    background-color: var(--color-ink);
    color: var(--color-wh);
    transition: background-color 0.3s ease;
}
#workflow .workflow-card.dark:hover {
    background-color: var(--color-gold);
}
#workflow .workflow-card.dark:hover .step-title,
#workflow .workflow-card.dark:hover .workflow-description p {
    color: var(--color-ink);
}
#workflow .workflow-card.dark .step-title {
    color: var(--color-wh);
}
#workflow .workflow-card.dark .workflow-description p {
    color: var(--color-wh);
}






/* ---------------
	06 Feedback
--------------- */


/* ── Marquee ── */
#feedbacks {
  overflow: hidden;
  position: relative;
  padding: 20px 0 20px; /* カードのhover浮き上がり分 */
  cursor: grab;
}
#feedbacks:active { cursor: grabbing; }

@media (max-width: 768px) {
	#testimonials .inner {
		padding: 0 24px;
	}
	#feedbacks:active { cursor: none; }
}

.marquee-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  /* transform is set by JS */
}

/* ── Card ── */
.voice-card {
  flex-shrink: 0;
  width: 27vw;
  margin-right: 24px;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--color-wh);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.03);
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 1180px) { .voice-card { width: 55vw; } }
@media (max-width: 768px)  { .voice-card { width: 75vw; } }

.voice-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 0 10px rgba(0,0,0,0.09);
  border-radius: var(--radius);
}
.voice-card::after {
  content: 'READ MORE';
  position: absolute;
  inset: 0;
  background: rgba(170, 183, 194, 0.85);
  color: var(--color-wh);
  font-size: var(--text-md);
  font-weight: 600;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.voice-card:hover::after { opacity: 1; }
.voice-card:hover .voice-stars,
.voice-card:hover .voice-text,
.voice-card:hover .voice-footer { filter: blur(2px); }


.voice-stars {
  font-size: var(--text-sm);
  color: var(--color-gold);
  letter-spacing: 2.5px;
  margin-bottom: 35px;
}
.voice-text-wrap { flex: 1; }
.voice-text {
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--color-ink);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 50px;
}
.voice-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.voice-name-wrap { display: flex; flex-direction: column; }
.voice-name {
  display: block;
  font-weight: 600;
  font-size: var(--text-sl);
  color: var(--color-ink);
}
.voice-company {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-gray);
}
@media (max-width: 768px) {
	.voice-name { font-size: var(--text-sm); }
	/*.voice-company { display: none; }*/
}

/* ── Controls area ── */
.marquee-footer {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  padding: 0 24px;
}

/* ── Pagination ── */
.marquee-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  flex-shrink: 0;
}
.pagination-dot.active {
  background: var(--color-main);
  width: 24px;
  border-radius: 4px;
}

/* ── Voice Modal ── */
#vmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(10,10,8,.8);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
}
#vmodal.open { display: flex; }
#vmodal-box {
  background: var(--color-wh);
  border-radius: var(--radius);
  width: min(680px, 100%);
  padding: 32px;
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
  animation: fadeUp .22s ease;
}
#vmodal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-sub);
  transition: border-color .15s;
}
#vmodal-close:hover { border-color: var(--color-main); }
#vmodal-stars {
  font-size: var(--text-sm);
  color: var(--color-gold);
  letter-spacing: 2.5px;
}
#vmodal .vm-quote {
  margin: 30px 0 60px;
}
/*#vmodal-quote { margin-bottom: 18px; }*/
#vmodal .vm-quote p {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.15;
  margin-bottom: 11px;
}
/*#vmodal .vm-detail {
  font-size: var(--text-xs);
  color: var(--color-ink);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  margin: 8px 0;
}*/
#vmodal .vm-meta { display: flex; flex-direction: column; gap: 3px; }
#vmodal .vm-name {
	font-size: var(--text-md);
	color: var(--color-ink);
	line-height: 1.2;
	font-weight: 600;
}
#vmodal .vm-sub  {
	font-size: var(--text-sm);
	color: var(--color-main);
	line-height: 1.2;
}

@media (max-width: 768px) {
	#vmodal .vm-meta { column; gap: 0px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* ---------------
	Feedback CTA
--------------- */

/* ---------------
	Consultation CTA
--------------- */
#consultation-cta .consultation-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  padding: 3rem 0;
  gap: 40px;
}
#consultation-cta .consultation-cta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-main);
  /*opacity: 0.5;*/
  flex-shrink: 0;
  /*align-self: flex-start;*/
}
#consultation-cta .consultation-cta-heading {
  font-size: var(--text-number);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-ink);
  flex: 1;
}
#consultation-cta .consultation-cta-heading em {
  font-style: normal;
  color: var(--color-gold);
}
#consultation-cta .consultation-cta-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-ink);
  color: var(--color-wh);
  text-decoration: none;
  border-radius: 50px;
  height: 62px;
  padding: 0 40px;
  flex-shrink: 0;
  width: fit-content;
  transition: background-color 0.3s ease;
}
#consultation-cta .btn-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-wh);
  border-radius: 50%;
  margin-right: 18px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#consultation-cta .text-mask-wrapper {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
}
#consultation-cta .text-slide-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
#consultation-cta .text-row {
  font-size: var(--text-md);
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
#consultation-cta .consultation-cta-link:hover .btn-dot {
  transform: translateX(10px);
}
#consultation-cta .consultation-cta-link:hover .text-slide-container {
  transform: translateY(-29px);
}
@media (max-width: 768px) {
  #consultation-cta .consultation-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  #consultation-cta .consultation-cta-heading {
    font-size: var(--text-subtitle);
  }
}

/* ---------------
	Feedback CTA
--------------- */
#feedback-cta {
  background-color: var(--color-ink);
  padding: 5.375rem 24px;
  text-align: center;
  border-radius: var(--radius);
}

#feedback-cta h3 {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-wh);
  margin-bottom: 16px;
  line-height: 1.2;
}

#feedback-cta p {
  font-size: var(--text-sl);
  color: var(--color-sub);
  margin-bottom: 48px;
}

#feedback-cta .cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-gold);
	color: var(--color-ink);
	text-decoration: none;
	border-radius: 50px;
	height: 62px;
	width: 240px;
	position: relative;
	transition: background-color 0.3s ease;
	padding: 0 40px;
}
@media (max-width: 768px) {
  #feedback-cta .cta-button {
    width: 100%;
  }
}
/* CTA */
#feedback-cta .btn-dot {
	width: 5px;
	height: 5px;
	background-color: var(--color-ink);
	border-radius: 50%;
	margin-right: 18px;
	flex-shrink: 0;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#feedback-cta .text-mask-wrapper {
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	position: relative;
}
#feedback-cta .text-slide-container {
	display: flex;
	flex-direction: column;
	transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
#feedback-cta .text-row {
	font-size: var(--text-md);
	font-weight: 600;
	/*letter-spacing: var(--tracking-wide);
	text-transform: uppercase;*/
	white-space: nowrap;
	display: flex;
	align-items: center;
}
#feedback-cta .cta-button:hover .btn-dot {
	transform: translateX(10px);
}
#feedback-cta .cta-button:hover .text-slide-container {
	transform: translateY(-29px);
}

@media (max-width: 768px) {
  #feedback-cta h3 {
    font-size: var(--text-xl);
  }
  #feedback-cta p {
    font-size: var(--text-md);
    margin-bottom: 36px;
  }
}

/* ---------------
	07 Pricing
--------------- */
#pricing {}

#pricing .pricing-container {
	width: 100%;
	margin: 0 auto 20px;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 24px;
	justify-content: center;
	padding-top: 40px;
}

/* card */
#pricing .pricing-card {
	display: flex;
	flex-direction: column;
	flex: 1;
	/*height: auto;*/
	
	padding: 40px 24px 30px 24px;
    position: relative; /* リボン配置の基準 */
    background-color: var(--color-wh);
    border-radius: var(--radius);
    box-shadow: 0 0 5px rgba(0,0,0,0.03);
}


#pricing .card-header {
	display: flex;
	flex-direction: column;	
    flex: 0 0 205px; /* カード間で高さを揃える */
}

#pricing .content-box {
	flex: 1;
    margin: 30px 0;
}
#pricing .content-title {
    font-size: var(--text-sm);
    color: var(--color-ink);
    margin-bottom: 12px;
    display: block;
}
#pricing .popular-badge {
    position: absolute;
    top: -14px;
    right: 12px;
    /*transform: translateX(-50%);*/
    background-color: var(--color-gold);
    color: var(--color-wh);
    font-family: var(--font-en);
    font-size: var(--text-xs);
    padding: 4px 16px;
    border-radius: var(--radius);
    white-space: nowrap;
    letter-spacing: 0.05em;
}
#pricing .popular-badge::before {
    content: "✦ ";
}
#pricing .service-title {
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    line-height: 1;
    color: var(--color-main);
    margin-bottom: 16px;
}
#pricing .description {
    font-size: var(--text-md);
    color: var(--color-ink);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 14px;  
    margin-top: 0;/* ←これ重要 */
}
#pricing .price-box {
	margin-top: auto;
    font-size: var(--text-price);
    font-weight: 600;
    color: var(--color-ink);
    border-bottom: 1px dashed var(--color-sub);
}
#pricing .price-box span {
    font-size: var(--text-md);
    color: var(--color-ink);
    font-weight: 600;
    margin: 0 3px;
}
#pricing .feature-list {
    list-style: none;
}
#pricing .feature-list li {
    font-size: var(--text-md);
    color: var(--color-ink);
    font-weight: 500;
    margin-bottom: 1px;
    position: relative;
    padding-left: 18px;
}
#pricing .feature-list li::before { /* チェックマーク */
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-ink);
    font-size: var(--text-md);
}
#pricing .feature-list li.sub {
    font-size: var(--text-md);
    color: var(--color-sub);
    margin-bottom: 1px;
    position: relative;
    padding-left: 18px;1
}
#pricing .feature-list li.sub::before { /* チェックマーク */
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-sub);
    font-size: var(--text-md);
}     


#pricing p.note {
	font-size: var(--text-sm);
	color: var(--color-ink);
}


/* CTAを最下部へ */
#pricing .price-cta {
	margin-top: auto;

	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-ink);
	color: var(--color-wh);
	text-decoration: none;
	border-radius: 50px;
	height: 62px;
	position: relative;
	transition: background-color 0.3s ease;
	width: 100%;
	padding: 0 24px;
}

/* CTA  */
#pricing .btn-dot {
	width: 5px;
	height: 5px;
	background-color: var(--color-wh);
	border-radius: 50%;
	margin-right: 18px;
	flex-shrink: 0;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#pricing .text-mask-wrapper {
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	position: relative;
}
#pricing .text-slide-container {
	display: flex;
	flex-direction: column;
	transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
#pricing .text-row {
	font-size: var(--text-md);
	font-weight: 600;
	/*letter-spacing: var(--tracking-wide);*/
	/*text-transform: uppercase;*/
	white-space: nowrap;
	display: flex;
	align-items: center;
}
/*#pricing .price-cta:hover {
	background-color: var(--color-gray);
}*/
#pricing .price-cta:hover .btn-dot {
	transform: translateX(10px);
}
#pricing .price-cta:hover .text-slide-container {
	transform: translateY(-29px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px) {
	#pricing .pricing-container {
		flex-wrap: wrap;
	}
	#pricing .pricing-card {
		flex: 0 0 calc(50% - 12px);
	}
}

@media (max-width: 767px) {
	#pricing .pricing-card {
		flex: 0 0 100%;
	}
}

/* ---------------
	08 FAQ
--------------- */
#faq {}
#faq .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#faq .faq-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  gap: 24px;
}
#faq .faq-item {
  border-radius: var(--radius);
  background-color: var(--color-wh);
  box-shadow: 0 0 5px rgba(0,0,0,0.03);
}
#faq .faq-summary {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  list-style: none; /* デフォルトの矢印を消す */
  position: relative;
  user-select: none;
}
#faq .faq-summary::-webkit-details-marker { /* Safari用のデフォルト矢印削除 */
  display: none;
}
#faq .faq-number {
  font-size: var(--text-sm);
  color: var(--color-main);
  font-weight: 400;
  margin-right: 24px;
}
#faq .faq-question {
  font-size: var(--text-xl);
  color: var(--color-ink);
  font-weight: 600;
  flex-grow: 1;
  line-height: 1.2;
}
#faq .faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  flex-shrink: 0; /* ← これを追加！ */
}
#faq .faq-icon::before,
#faq .faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-main);
  transition: transform 0.3s ease;
}
#faq .faq-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}
#faq .faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

#faq details[open] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0; /* 縦線を消してマイナス（横線だけ）にする */
}
#faq details[open] .faq-icon::before {
  transform: rotate(180deg);
}
#faq .faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
#faq details[open] + .faq-content-wrapper {
  grid-template-rows: 1fr;
}
#faq .faq-content {
  overflow: hidden;
}

#faq .faq-answer {
  padding: 0 65px 24px 64px;
  font-size: var(--text-md);
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
	#faq .inner {
	  flex-direction: column;
	}
	#faq .faq-question {
	  font-size: var(--text-lg);
	}
	#faq .faq-answer {
      padding: 0 33px 24px 24px;
    }
    #faq .faq-container {
	  gap: 12px;
    }
}



    
    

/* ---------------
	FOOTER
--------------- */
#footer {
	background-color: var(--color-ink);
	padding: 60px 40px 80px 40px;
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
    border-radius: var(--radius);
}
#footer .footer-container {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#footer .site-footer a {
    color: var(--color-wh);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Navigation */
#footer .footer-nav {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 40px;
}
#footer .footer-nav .nav-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
}
#footer .footer-nav a {
    display: inline-block;
    width: auto;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    vertical-align: bottom;
    color: transparent;
}
#footer .footer-nav .nav-right { color: var(--color-sub); }
#footer .footer-nav .nav-right a:last-child {
    margin-right: 0;
}
#footer .footer-nav a::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--color-wh);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 1);
}
#footer .footer-nav a::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--color-wh);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 1);
    transform: translateY(100%);
}
#footer .footer-nav a:hover::before {
    transform: translateY(-100%);
}
#footer .footer-nav a:hover::after {
    transform: translateY(0);
}


/* 中段 */
.footer-main-title {
    text-align: center;
    margin: 36px 0 64px 0;
}
.fade-in-up-container span {
    font-size: clamp(110px, 16vw, 150px);
    font-weight: 600;
    line-height: 0.8;
    letter-spacing: -0.02em;
    color: var(--color-gold);
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    margin: 0 14px;
}
/* is-visibleが付いたら発火 */
.fade-in-up-container span.is-visible {
    animation: fadeInUpAnim 0.8s cubic-bezier(0.25, 0.46, 0.45, 1) both;
}

@keyframes fadeInUpAnim {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up-container span.is-visible.delay-1 { animation-delay: 0.4s; }
.fade-in-up-container span.is-visible.delay-2 { animation-delay: 0.8s; }
.fade-in-up-container span.is-visible.delay-3 { animation-delay: 1.2s; }



/* 左側 */
#footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}
#footer .bottom-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#footer .bottom-left .logo {
  width: 13vw;
  transition: opacity 0.3s ease;
}
#footer .bottom-left .logo:hover {
  opacity: 0.7;
}
#footer .bottom-left .copyright {
    font-size: var(--text-xs);
    color: var(--color-wh);
}

/* 右側 */
#footer .bottom-right {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}
#footer .contact-info,
#footer .sns-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#footer .sns-info {
	gap: 10px;
}

#footer .label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-wh);
    /*margin-bottom: 8px;*/
}
#footer .email {
    font-size: var(--text-xl);
    font-weight: 300;
    display: inline-block;
    position: relative;
    text-decoration: none; /* デフォルトの下線は非表示にする */
    color: var(--color-wh);
    transition: color 0.3s ease;
}
#footer .email:hover {}
#footer .email::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;    
    width: 100%;
    height: 1px;
    background-color: var(--color-wh);
    transform-origin: left top;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#footer .email:hover::after {
    transform: scaleX(1);
}

/* Social */
#footer .sns-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}
#footer .sns-icons a {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.3s ease;
    opacity: 0.75; 
}
#footer .sns-icons a img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}
#footer .sns-icons a:hover {
    opacity: 1;
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    #footer .site-footer {
        padding: 40px 20px 60px 20px;
    }    
    #footer .footer-nav {
        flex-wrap: wrap;
        gap: 8px 0;
    }
    .footer-main-title {
	    margin: 90px 0 160px 0;
    }
    #footer .fade-in-up-container {
	    text-align: left;
	    margin-bottom: 30px;
    }
    #footer .fade-in-up-container span {
	    display: block;
	    margin: 0 10px 0 0;
    }
    #footer .footer-nav .nav-left {
        font-size: var(--text-lg);
        line-height: 2.5;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 4px 0;
    }
    #footer .footer-bottom {
	    flex-direction: column-reverse;
        align-items: flex-start;
        gap: 100px;
    } 
    #footer .bottom-left {
	    width: 100%;
    }   
    #footer .bottom-right {
	    width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    #footer .bottom-left .logo {
	  width: 38vw;
	}
    #footer .label {
	    font-size: var(--text-lg);
	    color: var(--color-sub);
	    margin: 0;
    }   
    #footer .email {
        font-size: var(--text-xl);
    }
    #footer .sns-info {
	    gap: 5px;
    }
    #footer .sns-icons {
	    gap: 50px;
	}
    #footer .sns-icons a img {
	    width: 48px;
	    height: 48px;
	}
}

/* ---------------
	Swiper
--------------- */

.swiper {
  overflow: hidden;
  width: 100%;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}




/* ---------------
	OPENING
--------------- */
#opening {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-ink);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: slideUp 0.7s cubic-bezier(.77,0,.18,1) forwards;
  animation-delay: 0.98s;
}
#opening .logo {
  width: 40vw;
}
#lottie-logo svg {
  display: block;
  width: 100% !important;
  height: auto !important;
}

@keyframes slideUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

@media (max-width: 768px) {
	#opening .logo {
	  width: 220px;
	}
}



/* ---------------
	BLUH
--------------- */

.blur-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 3; /* コンテンツより前面にレイヤーを持ってくる */
  background-image: linear-gradient(
    to bottom,
    transparent 100%,
    rgba(255, 255, 255, 0.9) 0%, 
  ); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 50%);  
}

.blur-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 3;

  background-image: linear-gradient(
    to top, 
    transparent 100%,
    rgba(255, 255, 255, 0.9) 0%,   
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 50%);
  mask-image: linear-gradient(to top, black 0%, transparent 50%);
}



/* ---------------
	inview的な
--------------- */
/* フェードイン */
.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}

.fade-in.is-visible {
  opacity: 1;
}

/* 下からフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .6s ease,
    transform .6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 下から上 + 拡大 */
.zoom-up {
  opacity: 0;
  transform: translateY(20px) scale(.9);
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.zoom-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }
.delay-4 { transition-delay: .8s; }
.delay-5 { transition-delay: 1s; }


/* ---------------
	MESSAGE
--------------- */
#message {
  background-color: var(--color-main);
  border-radius: var(--radius);
}
#message h1 {
  font-size: var(--text-subtitle);
  font-weight: 200;
  letter-spacing: -0.02rem;
  margin: 0.4em 0;
  color: var(--color-wh);
}
#message h1 span {
  color: var(--color-wh);
}



