@charset "UTF-8";
/* =====================
   base
===================== */
*{
  box-sizing: border-box;
}

html, body{
  min-height: 100vh;
}

body{
  margin: 0;
  background: linear-gradient(
    to bottom,
    #EDEBEA 0%,
    #E8D4D0 79%,
    #CFA7A7 100%
  );
overflow-y: hidden;
}

html {
  scroll-behavior: smooth;
}

/* =====================
   stage
===================== */
.stage{
  display: grid;
  grid-template-columns: 300px minmax(375px, 1fr) 300px; 
  padding: 0px 25px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.bubbles{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble{
  position: absolute;
  border-radius: 50%;
  background: #ead6cf;
  transform: scale(.95);
  opacity: 0.34;
  filter: blur(1px);
  animation: circleFade 7s ease-in-out infinite;
}

.b1{
  top: 110px;
  left: 130px;
  width: 160px;
  height: 160px;
}

.b2{
  top: 20px;
  right: 200px;
  width: 110px;
  height: 110px;
  animation-delay: 1.5s;
  opacity: 0.26;
}

.b3{
  top: 490px;
  right: 80px;
  width: 170px;
  height: 170px;
  animation-delay: 3s;
  opacity: 0.6;
}

@keyframes circleFade{

  0%{
    opacity:0;
    transform:scale(.9);
  }

  30%{
    opacity:.38;
    transform:scale(1);
  }

  60%{
    opacity:.24;
    transform:scale(1.05);
  }

  100%{
    opacity:0;
    transform:scale(.95);
  }

}

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

/* =====================
   左固定
===================== */
.fv-left{
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-logo {
  z-index: 1;
  width: 200px;
  height: auto;
  margin: 0;
  position: fixed;
  top: 10px;
  left: 16px;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-logo a {
  display: block;
}

.site-logo img{
  width: 100%;   
  height: auto;
  display: block;
}

.site-logo.is-scrolled {
  transform: translateY(2px);
}

.cta-wrap--pc{
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  transform: translate(85px);
}

.cta-label--pc{
  position: absolute;
  top: -42px;
  left: -40px;
  font-family: "Caveat", cursive;
  font-size: 3.4rem;
  color: #777777;
  transform: rotate(-20deg);
}

.cta-btn--pc{
  max-width: 340px;
  height: 86px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--primary-white);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    to bottom,
    #D58A8F 0%,
    #B46F77 100%
  );
  box-shadow:
    0 12px 25px rgba(0,0,0,0.15),
    inset 0 2px 4px rgba(255,255,255,0.3);
  transition: all .3s ease;
  z-index: 2;
}

.cta-btn--pc:hover{
  transform: translateY(-3px);
  box-shadow:
    0 18px 35px rgba(0,0,0,0.18),
    inset 0 2px 4px rgba(255,255,255,0.4);
}


.cta-label--pc{
  position: absolute; 
}

.cta-label--pc::before,
.cta-label--pc::after{
  content:"";
  position:absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #777777;
  right: -28px;  
  top: 58%;
  transform: rotate(-40deg);
  opacity: .9;
}

.cta-label--pc::after{
  top: 82%;
  right: 80px;
  width: 18px;
  height: 2px;
  transform: rotate(40deg);
  opacity: .9;
}

.cta-label--pc{
  position: absolute;
  top: -46px;
  left: -40px;
  font-family: "Caveat", cursive;
  font-size: 3.4rem;
  color: #777777;
  transform: rotate(-20deg);

  animation: joinJump 3s ease-out infinite;
}

@keyframes joinJump {
  /* 最初 */
  0%{
    transform: rotate(-10deg) translateY(0);
  }

  /* 1回目（大ジャンプ） */
  15%{
    transform: rotate(-10deg) translateY(-16px);
  }

  25%{
    transform: rotate(-10deg) translateY(0);
  }

  /* 2回目（中ジャンプ） */
  35%{
    transform: rotate(-10deg) translateY(-10px);
  }

  45%{
    transform: rotate(-10deg) translateY(0);
  }

  /* 3回目（小ジャンプ） */
  55%{
    transform: rotate(-10deg) translateY(-4px);
  }

  65%{
    transform: rotate(-10deg) translateY(0);
  }

  /* ここから休憩 */
  100%{
    transform: rotate(-10deg) translateY(0);
  }
}


.fv-preshine-logo{
  position: absolute;
  left: -25px;
  bottom: -15px;
  z-index: 0;
}

.fv-preshine-logo img{
  width: 250px;   
  height: auto;
  overflow: hidden;
}

.stage::before{
  content:"";
  position:absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .35;
  pointer-events: none;
}

.stage::before{
  width: 260px;
  height: 260px;
  left: -40px;
  top: -40px;
  background: #EECFCB;
}


/* =====================
   右固定
===================== */
.fv-right{
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100vh;
  padding: 30px 24px;
  z-index: 10;
}

.stage::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
   background: linear-gradient(
    to bottom,
    #CFA7A7 0%,
    #E9CFCB 100%
    );
    top: -5px;
    right: -270px;
    z-index: 0;
    pointer-events: none;
}

.fv-right ul{
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  font-weight: 300;
  margin-left: 60px;
}

.fv-right li{
  width: 100px;  
}

.fv-right a{
  display: block;
  padding: 25px 0 0px;  
  font-size: 1.6rem;
  font-family: "Noto serif JP";
  color: #6a6a6a;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.fv-right a:hover{
 opacity: 0.7;
}

.fv-fants-logo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.fv-fants-logo-content {
  border-bottom: none !important;
  padding: 0;
}

/* =====================
   nav
===================== */
.menu-btn {
  display: none;
}

.sp-menu {
  display: none;
}


@media screen and (max-width: 1080px){
.fv-right{
  display:none; 
}

.fv-fants-logo {
  display: none;
}

.sp-mock{
  position: relative; 
}

/* ===== menuボタン ===== */
.menu-btn{
  position: fixed;
  top: 10px;
  right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0.5px solid rgba(156, 139, 110, 0.6);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  z-index: 50;
  cursor: pointer;
  background: rgba(246, 238, 233, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.menu-btn__label{
  font-family: "Noto serif JP";
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #7a7a7a;
  position: relative;
  padding: 2px 0 5px;
}

.menu-btn__label::before,
.menu-btn__label::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 1px;
  background: rgba(156, 139, 110, 0.6);
  transform: scaleY(0.5);
  opacity: 0.8;
}

.menu-btn__label::before{ top: 0; }
.menu-btn__label::after{ bottom: 0; }

/* ===== SPメニュー本体（overlay） ===== */
.sp-menu{
  position: fixed;
  inset: 0;                
  z-index: 99;
  display: none;
  pointer-events: none;     
  opacity: 0;
  transform: translateY(-6px);
  background: rgba(246, 238, 233, 0.96);
  transition: opacity .25s ease, transform .25s ease;
}

.sp-menu.is-open{
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.sp-menu::before{
  content:"";
  position: absolute;
  width:560px;
  height: 560px;
  border-radius: 50%;
  top: 60px;
  right: -230px;
  background: linear-gradient(to bottom, #CFA7A7 0%, #E9CFCB 100%);
  opacity: 0.85;
}

.sp-menu__inner{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 90px 35px;
}

.sp-menu__list{
  list-style: none;
  margin: 0 30px;
  padding: 0;
  width: 110px;
}

.sp-menu__list a{
  display: block;
  padding: 18px 0 4px;
  font-family: "Noto serif JP";
  font-size: 1.8rem;
  color: #6a6a6a;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-weight: 300;
}

.sp-menu__list a:hover{
  opacity: 0.75;
}

.sp-menu {
  display: none;
}

.sp-menu.is-open {
  display: block;
}

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

.sp-menu__close{
  position:absolute;
  top:20px;
  right:20px;
  width:24px;
  height:24px;
  background:none;
  border:none;
  cursor:pointer;
  z-index: 20
}

.sp-menu__close::before,
.sp-menu__close::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:1px;   
  background:#7a7a7a;
}

.sp-menu__close::before{
  transform:rotate(45deg);
}

.sp-menu__close::after{
  transform:rotate(-45deg);
}
}

/* =====================
   中央
===================== */
.fv-center{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}


/* =====================
   スマホモック
===================== */
.sp-mock{
  background: var(--primary-pinkbeige);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  min-width: 375px;
  max-width: 440px;
  height: 100vh;
}

.sp-scroll{
  position: relative;
  height: 100vh;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16.4;
  overflow: hidden;
  background: var(--primary-pinkbeige);
  object-fit: cover;
}

.sp-slider-images{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sp-slide-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: spFade 18s infinite;
}

/* 遅延 */
.sp-slide-img:nth-child(1){ animation-delay: 0s; }
.sp-slide-img:nth-child(2){ animation-delay: 6s; }
.sp-slide-img:nth-child(3){ animation-delay: 12s; }

/* フェード */
@keyframes spFade{
  0%   { opacity: 0;}
  8%   { opacity: 1;}
  30%  { opacity: 1;}
  38%  { opacity: 0;}
  100% { opacity: 0;}
}

.sp-content{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  pointer-events: none;
}

.sp-catch{
  position: relative;
  margin: 80px 0 16px;
  z-index: 20;
  width: 440px;
}

.sp-catch img{
  display: block;
  width: 100%;
  height: auto;
}

.sp-bottom{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.sp-circle{
  position: relative;
  width: 185px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(239, 230, 227, 0.8); 
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-left: 2%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sp-circle::before{
  content: "";
  position: absolute;
  inset: -2px;                 
  border-radius: 50%;
  border: 0.2px solid rgba(201,124,130, 0.2);  
  transform: translate(2px, 1px) rotate(-1.2deg);
  pointer-events: none;
}

.sp-circle::after{
  content: "";
  position: absolute;
  inset: -3px;                
  border-radius: 50%;
  border: 0.2px solid rgba(210,124,130,0.4);  
  transform: translate(-1px, 3px) rotate(0.8deg);
  pointer-events: none;
}

.sp-lead {
  margin: 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  line-height: 2;       
  text-align: center;  
  color: #5a5a5a;
  margin-left: 10%;
}

.cta-btn {
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: 1.8rem;
  pointer-events: auto;
}

.cta-label--sp::before{
  content:"";
  position:absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #666666;
  right: -28px;  
  top: 58%;
  transform: rotate(-40deg);
  opacity: .9;
}

.cta-label--sp::after {
  content:"";
  position:absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #666666;
  right: 75px;  
  top: 55%;
  transform: rotate(55deg);
  opacity: .9;
}

.sp-accent{
  position: relative;
  font-weight: 500;
  color: #B46F77;
  font-weight: 500;
}

.sp-accent::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;  
  width: 100%;
  height: 8px;   
  background: rgba(201,124,130,0.85); 
  border-radius: 3px;
  z-index: -1;   
}

.cta-btn:hover{
  text-decoration: none;
  opacity: .95;
}

.cta-wrap--sp{
  position: relative;
}

.cta-label--sp{
  position: absolute;
  right: -10px;   
  top: -44px;    
  font-family: "Caveat"; 
  font-size: 2.6rem;
  color: #666666;
  transform: rotate(20deg);  
  letter-spacing: 0.05em;
  z-index: 10;
}

@media screen and (max-width: 1300px) {
.cta-wrap.cta-wrap--pc {
  display: none;
}

.sp-catch-line--bottom {
  margin-left: 25px;
}

.cta-label--sp{
  animation: joinJumpSp 3s ease-out infinite;
}

@keyframes joinJumpSp {
  /* 最初 */
  0%{
    transform: rotate(20deg) translateY(0);
  }

  /* 1回目（大ジャンプ） */
  15%{
    transform: rotate(20deg) translateY(-16px);
  }

  25%{
    transform: rotate(20deg) translateY(0);
  }

  /* 2回目（中ジャンプ） */
  35%{
    transform: rotate(20deg) translateY(-10px);
  }

  45%{
    transform: rotate(20deg) translateY(0);
  }

  /* 3回目（小ジャンプ） */
  55%{
    transform: rotate(20deg) translateY(-3px);
  }

  65%{
    transform: rotate(20deg) translateY(0);
  }

  100%{
    transform: rotate(20deg) translateY(0);
  }
}
}

@media screen and (max-width: 1080px) {
  .stage {
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    grid-template-columns: none;
    overflow: visible;
  }

  .fv-right {
    display: none;
  }

  .fv-left {
    display: block;
  }

  .fv-left .cta-wrap--pc,
  .fv-left .fv-preshine-logo {
    display: none;
  }

  .fv-right {
    display: none;
  }


  .fv-center {
    width: 100%;
    position: relative; 
    height: auto;
    margin: 0 auto;
  }

.stage::after {
  display: none;
}

.sp-mock {
  border-radius: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}


.site-logo {
  width: 140px;
  z-index: 100;
}


.bubbles {
  display: none;
}

.sp-scroll {
  min-height: 100svh;
  overflow-y: auto;
}
}

@media screen and (max-width: 710px) {
  .site-logo.is-scrolled {
    background: rgba(246, 238, 233, 0.85);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }
}

@media screen and (max-width: 440px) {
.sp-catch{
  margin: 78px 0 16px;
  width: 380px;
}
}


@media screen and (min-width: 1920px) {
.stage {
  max-width: 1920px;
  margin: 0 auto;
}

.fv-right {
  position: absolute;
}

.stage::after {
  right: -230px;
}

.cta-wrap--pc {
  transform: translate(235px);
}
}

/* =====================
  intro
===================== */

.container {
  margin-top: 90px;
  padding: 0 25px;
}

.intro-message p + p {
margin-top: 50px;
}

.intro-message {
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.01em;
  color: var(--primary-black);
  padding: 40px 10px;
  background: radial-gradient(

    circle at 75% 68%, 
    rgba(235, 225, 223, 0.6) 0px, 
    rgba(235, 225, 223, 0.9) 30px,
    rgba(235, 225, 223, 0.5) 60px, 
    transparent 70px), 

    radial-gradient(circle at 60% 40%,
    rgba(239, 230, 227, 0.8) 30px,
    rgba(239, 230, 227, 0.9) 60px, 
    rgba(239, 230, 227, 0.7) 90px, 
    transparent 100px);

  background-repeat: no-repeat;
}

.services-group {
  display: flex;
  flex-direction: column;
  gap: 30px; /* 1と2と3の間隔 */
  margin-top: 100px;
}

.service {
  position: relative;
  text-align: center;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 54px 0px;
  box-sizing: border-box;
}

.service:nth-child(1)  {
  background-color: #F1EBEA; /* 1番 */
}

.service:nth-child(2)  {
  background-color: #EFE6E4; /* 2番 */
}

.service:nth-child(3)  {
  background-color: #EDE2E1; /* 3番 */
  padding-top: 60px;
}

.service-number {
  position: absolute;
  top: -67px;
  left: 8px;
  font-size: 48px;
  font-family: 'Noto Serif JP', serif;
  color: #6f6f6f;
  z-index: 2;
}

.service-circle {
  width: 110px;
  height: 110px;
  background-color: #C97C82; 
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-en {
  font-size: 1.6rem;
  color: #EDE1E1;
  font-family: "Caveat", cursive; 
  letter-spacing: 2px;
  z-index: 1;
}

.service-ja {
  font-size: 2.2rem;
  color: var(--primary-white);
}

.service-circle {
  position: relative;
  margin-top: -80px; 
  z-index: 1;
}

.service-title, .service-text {
  text-align: left;
}

.service-title {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  line-height: 1.9;
  margin-left: 10px;
  margin-top: 8px;
  margin-bottom: 0;
  color: #B07078;
}

.service:nth-child(3) .service-title {
  margin-left: -10px;
}

.service-text {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  line-height: 1.8;
  color: var(--primary-black);
  max-width: 250px;
  margin-left: 65px;
}

.reveal-step {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-step.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service .reveal-in {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.service.is-show .reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service.is-show .reveal-in:nth-of-type(1) {
  transition-delay: 0.08s;
}

.service.is-show .reveal-in:nth-of-type(2) {
  transition-delay: 0.18s;
}

.service.is-show .reveal-in:nth-of-type(3) {
  transition-delay: 0.28s;
}

.service .reveal-in {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.service.is-show .reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service:nth-of-type(1) .title-second {
  margin-left: 15rem;
}

.service:nth-of-type(2) .title-second {
  margin-left: 6.5rem;
}

.service-title {
  border-bottom: 0.03px solid #C97C82;
  padding-bottom: 3px;
  display: inline-block;
}

.intro-closing{
  position: relative;
  padding: 60px 0 80px; 
  text-align: center;
  overflow: visible;
}

.intro-decoration-leaf {
  width: fit-content;
  position: absolute;
  left: 35px;
}

.intro-summary{
  margin: 0 auto;
  z-index: 2;
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
  font-family: "Zen Maru Gothic";
}

.intro-lead-top{
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  line-height: 1.9;
}

.intro-lead-center{
  margin: 26px 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

.intro-brand{
  margin: 34px 0 0;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

.brand-name-ja{
  display: block;
  font-size: 1rem;
  letter-spacing: 0.14em;
  margin-bottom: -12px;
  margin-left: -60px;
  color: var(--primary-darkpink);
}

.brand-name-en{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--primary-darkpink);
  margin-right: 4px; 
}


.cta-wrap--intro{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.intro-circle-logo{
  position: absolute;
  left: 50%;
  bottom: -45px; 
  transform: translateX(-50%);
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

.intro-circle-logo img{
  width: 100%;
  height: auto;
  display: block;
}

.intro-closing{
  position: relative;
  overflow: visible; 
}

.intro-closing {
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
}

.intro-closing::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 520px; 

  background: linear-gradient(
    to top,
    #EDE4E3 0%,    
    #F1E8E6 30%,    
    #f7f2ee 100%    
  );

  z-index: 0;
  pointer-events: none;
}

.cta-wrap--intro .cta-label--sp {
  right: 35px;
  top: -44px;
  color: #777777;

}

/* =====================
  future
===================== */

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

.section-en {
  font-family: "Caveat", cursive; 
  font-size: 3rem;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
  margin-bottom: -20px;
  margin-top: 0;
}

.section-title {
  font-family: "Noto serif jp";
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.5;
}

.section-lead {
  margin-top: 70px;
  font-size: 1.6rem;
}

.future-speech {
  margin-top: -40px;
}

.future-items{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 60px;
  overflow: visible;
}

.future-balloon{
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #EBD6D4; 
  border: 1px solid var(--primary-gold);
  display: grid;
  place-items: center;
  z-index: 1;
}

.future-text{
  margin: 0;
  font-family: "Zen Maru Gothic";
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #4f4f4f;
}

.future-illust{
  position: absolute;
  margin: 0;
  width: 170px;   
  height: auto;
  z-index: 3;
}

.future-illust img{
  display: block;
  width: 100%;
  height: auto;
}

.future-item:nth-child(1) .future-illust{
  top: -110px;
  right: -68px;
}

.future-item:nth-child(2) .future-illust{
  top: -42px;
  left: -70px;
  width: 160px;
}

.future-item:nth-child(3) .future-illust{
  top: 97%;
  right: -58px;
  transform: translateY(-50%);
  width: 136px;
}

.future-item:nth-child(5) .future-illust{
  top: 160px;
  left: 120px;
  width: 200px;
}

.future-item + .future-item{
  margin-top: -10px; 
}

.future-item:nth-child(1) .future-text{
  transform: translateX(8px);
}

.future-item:nth-child(3) .future-text{
  transform: translate(6px, -8px);
}

.future-item:nth-child(1){ z-index: 5; }
.future-item:nth-child(2){ z-index: 4; }
.future-item:nth-child(3){ z-index: 3; }
.future-item:nth-child(4){ z-index: 2; }
.future-item:nth-child(5){ z-index: 1; }

.future-message{
  position: relative;
  margin-top: 100px;
  padding: 44px 22px 40px;    
  border: 1px solid var(--primary-gold); 
  border-radius: 10px;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.future-message-top{
  margin: 0 0 18px;
  color: var(--primary-black);
}

.future-message-brand{
  margin: 0 0 14px;
}


.brand-name-en{
  display: inline-block;
  font-weight: 500;
  color: var(--primary-darkpink); 
  font-family: "Zen Maru Gothic";
}

.future-message-main{
  color: var(--primary-black);
  margin-top: -10px;
}

.future-message-main .accent{
  color: var(--primary-darkpink); 
  font-weight: 500;
}

.future-circle-logo {
  width: 100px;
  margin: 0 auto;
}

.future-message-brand .brand-name-ja {
  margin-left: -32px;
}

.future-circle-logo{
  position: absolute;
  left: 50%;
  bottom: -44px;  
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  pointer-events: none;
}

.future-item{
  opacity: 0;
  transform: scale(0.85) !important;
  filter: blur(2px);
  transition: opacity .65s ease, transform .65s ease, filter .65s ease;
  will-change: opacity, transform, filter;
}

.future-item.is-show{
  opacity: 1;
  transform: scale(1) !important;
  filter: blur(0);
}

.future-item:nth-child(1) { transform: scale(1) translateX(-14px) !important; }
.future-item:nth-child(2) { transform: scale(1) translateX(16px) !important; }
.future-item:nth-child(3) { transform: scale(1) translateX(-12px) !important; }
.future-item:nth-child(4) { transform: scale(1) translateX(14px) !important; }
.future-item:nth-child(5) { transform: scale(1) translateX(-10px) !important; }

/* =========
  about 
========= */
.about{
  position: relative;
  z-index: 0;
}

.about::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 350px;          
  bottom: -60px;
  background: #EFE6E1;  
  z-index: -1;
}

.about-profile{
  padding: 24px 0 28px;
  font-family: "Zen Maru Gothic";
}

.about-photo{
  width: 72%;
  height: auto;
  margin: 0 auto 22px;
  border-radius: 10px;
  overflow: hidden;
}

.about-photo img{
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  margin-top: 30px;
}

.about-name-wrap{
  margin-bottom: 18px;
}

.about-name-jp{
  margin: 0;
  font-size: 2rem;
  letter-spacing: .12em;
  color: var(--primary-black);
  font-weight: 500;
}

.about-name-en{
  margin-left: 20px;
  font-size: 1.2rem;
  letter-spacing: .12em;
}

.about-position{
  margin: 6px 0 0;
  font-size: 1.2rem;
  letter-spacing: .08em;
}

.about-bio {
  margin-top: 45px;
}

.about-bio p{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .08em;
  color: var(--primary-black);
}

.about-subphoto{
  margin: 60px auto 0;
  overflow: hidden;
}

.about-subphoto img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-bio{
  position: relative;
}

.about-bio::before{
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.3px;
  background: var(--primary-pink);
}

.about-message{
  margin: 60px 0 0;
  font-family: "Noto serif jp";
}

.about-message-lead{
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 3;
  letter-spacing: .09em;
  color: #444444;
}

.about-message-text{
  margin: 0 0 18px;
  font-size: 1.6rem;
  line-height: 2.6;
  letter-spacing: .09em;
  color: #444444;
}

.about-message p {
  margin-bottom: 24px;
}

.about-message p{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.about-message p.is-show{
  opacity: 1;
  transform: translateY(0);
}

.about-message p:nth-child(1){ transition-delay: 0ms; }
.about-message p:nth-child(2){ transition-delay: 200ms; }
.about-message p:nth-child(3){ transition-delay: 400ms; }
.about-message p:nth-child(4){ transition-delay: 600ms; }

.about-sign{
  margin: 40px 0 60px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-sign-line{
  width: 72px;
  height: 0.3px;
  background: #444444;
  opacity: 0.8;
}

.about-sign-name{
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: #444444;
  font-family: "Parisienne";
  font-style: italic;
  opacity: 0.8;
}

.about-message{
  margin: 60px 0 0;
  font-family: "Noto Serif JP";
  background-image:
    radial-gradient(
      circle at 50% 50%,
      rgba(222, 196, 185, 0.5) 0px,
      rgba(222, 196, 185, 0.3) 70px,
      rgba(222, 196, 185, 0.15) 120px,
      rgba(222, 196, 185, 0.06) 170px,
      transparent 210px
    );
  background-repeat: no-repeat;
}

.about-sign span{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.about-sign.is-show span{
  opacity: 1;
  transform: translateY(0);
}

.about-sign span:nth-child(1){
  transition-delay: 0ms;
}

.about-sign span:nth-child(2){
  transition-delay: 250ms;
}

.about-sign span:nth-child(3){
  transition-delay: 500ms;
}

.about-book{
  margin: 0 -25px;
  padding: 0 10px;
}

.about-book-card{
  border: 1px solid var(--primary-pink);
  padding: 20px 4%;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 7px;
  align-items: start;
  border-radius: 3px;
  font-family: "Zen Maru Gothic";
}

.about-book-info {
  width: 260px;
  margin-top: 3px;   
}

.about-book-img{
  border-radius: 12px;
  overflow: hidden;
  width: 110%;
  margin-left: -8px;
}

.about-book-img img{
  display: block;
  margin-top: 8px;
}

.about-book-label{
  margin: 0 3px;
  font-size: 1.6rem;
  letter-spacing: .1em;
  font-weight: 400;
  color: var(--primary-darkpink);
}

.about-book-title{
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  font-weight: 500;
}

.about-book-pub{
  font-size: 1.4rem;
  margin-left: 130px;
}

.about-book-desc{
  margin: 0 3px 3px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  padding-top: 10px;
  position: relative;
}

.about-book-note{
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2px;
  font-size: 1.5rem;
  color: var(--primary-darkpink);
  font-weight: 500;
}

.about-book-desc::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 1%;
  height: 0.3px;
  background: rgba(0,0,0,0.2);
}

.about-book-btn-wrap{
  grid-column: 1 / -1;
  text-align: center;
  margin: -10px 0 10px;
}

.about-book-btn{
  display: inline-block;
  min-width: 240px;
  padding: 10px 24px;
  border: 1px solid #d8b5b8;
  border-radius: 20px;
  background: rgba(255,255,255,0.45);
  color: var(--primary-darkpink);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  transition: .25s ease;
}

.about-book-btn:hover{
  background: #e2bfc3;
  color: var(--primary-darkpink);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

}

.about-book-btn-arrow{
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 5px;
  margin-right: -14px;
}

.about-links{
  margin: 35px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

.about-links a:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: 48%;
}

.about-banner{
  display: block;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.05);
  transition: .2s ease;
}

.about-banner img{
  display: block;
  width: 100%;
  height: auto;
}

.about-banner:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 8px rgba(0,0,0,0.08);
}

@media screen and (max-width:1080px){
.about-book-card {
  padding: 10px 0.6%;
  grid-template-columns: 25% 1fr;
}

.about-book-note {
  margin-top: 8px;
}

.about-book-img img {
  margin-left: 7px;
}

.about-book-desc {
  font-size: 1.4rem;
  margin-top: 10px;
}
}


/* =========================
  Concept
========================= */
.concept {
  margin-top: 150px;
  position: relative;
}

.concept-main-image{
  margin: 50px 0 0;
  border-radius: 10px;
  overflow: hidden;
}
.concept-main-image img{
  width: 100%;
  height: auto;
  display: block;
}

.concept-lead{
  text-align: left;
  margin: 18px 10px 18px;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--primary-black);
}

.concept-lead p{
  margin: 40px 0 0;
}

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

.concept-lead .accent{
  color: var(--primary-darkpink);
  margin-top: 40px;
  text-align: left;
  font-weight: 500;
  width: 350px;
}

.concept-name{
  margin: 22px 0 10px;
  text-align: left;
}

.concept-name .concept-small{
  display: block;
  font-size: 1rem;
  letter-spacing: .16em;
  margin-bottom: -38px;
   margin-left: 20px;
}

.concept-name br{
  line-height: 1;
}

.concept-pill{
  margin: 4px 0;
  text-align: left;
}

.pill{
  display: inline-block;
  padding: 2px 3px 2px 10px;
  border-radius: 3px;
  background: #F1E6E2; 
  font-size: 1.6rem;
  letter-spacing: .08em;
  line-height: 1.8;
}

.concept-lead .concept-pill {
  margin: 0 0 4px;
}

.concept-sub-image{
  margin: 60px 0 18px;
  border-radius: 18px;
  overflow: hidden;
}
.concept-sub-image img{
  width: 100%;
  height: auto;
  display: block;
}

.concept-message{
  text-align: left;
}

.concept-message p{
  margin: 50px 0 0 10px;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .08em;
}

.concept-message p:last-child{
  margin-bottom: 0;
  margin-left: 100px;
}

.concept-circle{
  margin: 80px auto 0;
  width: min(332px, 86vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  position: relative;
}

.concept-circle-text .circle-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}

.concept-circle.is-show .circle-line {
  opacity: 1;
  transform: translateY(0);
}

.concept-circle .circle-line:nth-child(1) { transition-delay: 0ms; }
.concept-circle .circle-line:nth-child(2) { transition-delay: 150ms; }
.concept-circle .circle-line:nth-child(3) { transition-delay: 300ms; }
.concept-circle .circle-line:nth-child(4) { transition-delay: 450ms; }
.concept-circle .circle-line:nth-child(5) { transition-delay: 600ms; }
.concept-circle .circle-line:nth-child(6) { transition-delay: 750ms; }

.concept-circle p{
  margin: 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  letter-spacing: .08em;
  line-height: 1.9;
  margin-left: 20px;
}

.concept-circle .brand-name-ja{
  display: block;
  font-size: 1rem;
  letter-spacing: .16em;
  margin-bottom: -10px;
  margin-left: -36px;
}

.concept-circle .brand-name-en{
  font-weight: 500;
  letter-spacing: .06em;
}

.concept-circle-wrap{
  position: relative;
  z-index: 0;
}


.concept-circle-wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: -100px;
  right: -100px;
  top: 120px;
  height: 280px;
  background: linear-gradient(to top,
   #EDE4E3 0%, 
   #F1E8E6 40%,
   #f7f2ee 100%);
  border-radius: 0 0 50% 50%;
  z-index: -1;
}


.concept-decoration-tsubomi {
  position: absolute;
  right: 30px;
  top: 300px;
  pointer-events: none;
}


.concept-recommend{
  position: relative;
  width: min(325px, 92vw);   
  margin: 170px auto 0;
  padding-bottom: 60px;      
}

.concept-recommend-title{
  display: inline-block;
  position: absolute;
  top: -45px;              
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 18px;
  border: 1px solid var(--primary-pink);
  border-radius: 12px;
  background: #F1E6E2;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.concept-recommend-box{
  position: relative;
  border: 1px solid var(--primary-pink);
  border-radius: 10px;
  background: #F8F4F4;
  padding: 60px 18px 70px; 
  font-family: "Zen Maru Gothic"; 
}

.concept-recommend-box ul{
  margin: 0;
  padding-left: 1.2em;      
  list-style: disc;
}

.concept-recommend-box li{
  margin: 0 0 25px;
  line-height: 2;
  color: var(--primary-black);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.concept-recommend-illust{
  position: absolute;
  right: -10px;
  bottom: -72px;            
  width: 210px;            
  margin: 0;
  z-index: 3;
  pointer-events: none;
}

.concept-recommend-illust img{
  width: 100%;
  height: auto;
  display: block;
}

.concept-not-fit{
  position: relative;
  width: min(325px, 92vw);
  margin: 90px auto 0;     
  padding-bottom: 10px;     
}

.concept-not-fit-title{
  display: inline-block;
  position: absolute;
  top: -58px;             
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  padding: 12px 18px;
  border: 1px solid #999999;
  border-radius: 12px;
  background: #EDEBEA;

  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.concept-not-fit-box{
  position: relative;
  border: 1px solid #999999;
  border-radius: 12px;
  background: #F8F4F4;
  padding: 50px 18px 40px;
  font-family: "Zen Maru Gothic";
  color: var(--primary-black);
}

.concept-not-fit-box ul{
  margin: 40px auto;
  padding-left: 1.2em;
  list-style: disc;
}

.concept-not-fit-box li{
  margin: 0 0 22px;
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.concept-not-fit-note{
  margin: 12px 0 0;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #444444;         
}

.concept-not-fit-box li:last-child{
  margin-bottom: 10px;
}

/* =========================
  Voice slider (Swiper)
========================= */
.voice .container {
  padding: 0 12px;
}

.voice-slider-wrap{
  position: relative;
  width: 100%;
  padding: 10px 0 0;
}

.voice-arrow{
  position: absolute;
  top: 250px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 30; 
  opacity: 0.9;
}
.voice-prev{ left: 40px; }
.voice-next{ right: 40px; }

.voice-arrow::before{
  content:"";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.voice-prev::before{ border-right: 14px solid #CFA7A7; }
.voice-next::before{ border-left: 14px solid #CFA7A7; }

.voice-swiper{
  width: 100%;
  position: relative;
  z-index: 20;
  touch-action: pan-y;
}

.voice-swiper .swiper-slide{
  display: flex;
  justify-content: center;
}

.voice-slide{
  width: 100%;
  max-width: 390px;
  min-height: 760px;          
  background: var(--primary-beige);
  margin: 0 8px;           
  border-radius: 5px;
  padding: 25px 20px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.voice-slide img{
  pointer-events: none;
  -webkit-user-drag: none;
}

#voice, .voice { position: relative; z-index: 10; }

.voice-catch{
  margin-bottom: 10px;
}

.voice-pill{
  background: #E9CFCB;
  color: var(--primary-black);
  font-family: "Zen Maru Gothic";
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  width: fit-content;
  margin: 0 0 3px 0;
}

.voice-photo{
  margin: 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
}

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

.voice-name-container {
  display: flex;
  justify-content: center;
  align-items: center; 
  line-height: 1; 
}

.voice-name{
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: 500;
  margin: 20px 0;
  color: var(--primary-black);
  letter-spacing: 0.01em;
}

.voice-work {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 500;
  margin: 20px 0;
  color: var(--primary-black);
  letter-spacing: 0.01em;
}
.voice-body p{
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--primary-black);
  margin: 0 0 5px;
}

.voice-body p:last-child{ margin-bottom: 0; }
.voice-body .accent{ color: var(--primary-darkpink); font-weight: 500; }

.voice-dots{
  text-align: center;
  margin-top: 18px;
}

.voice-dots .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: #E6DAD6; 
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all .3s ease;
}

.voice-dots .swiper-pagination-bullet-active{
  background: var(--primary-darkpink); 
  width: 8px;
  height: 8px;
}

.voice-bottom{
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(to top,
   #EDE4E3 0%, 
   #F1E8E6 40%,
   #f7f2ee 100%);
  position: relative;
}


.voice-bottom-lead{
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 1.9;
  margin: 0 0 18px;
}

.voice-bottom-sub{
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 2.0;
  margin: 0 0 22px;
}

.voice-bottom .brand-name-ja {
  margin-left: -140px;
} 

.voice-bottom-illust{
  width: 224px;
  height: auto;
  margin: 0 auto;
}

.voice-bottom-illust img{
  width: 100%;
  height: auto;
  display: block;
}

.voice-circle-logo{
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
}
.voice-circle-logo img{
  width: 100%;
  height: 100%;
  display: block;
}

.voice .container {
  padding: 0 0;
}

.voice-body {
  margin-top: -6px;
}

@media screen and (max-width:980px){
.voice-dots{
  text-align: center;
  margin-top: 15px;
}

.voice-prev{ left: 30px; }
.voice-next{ right: 30px; }

.voice-arrow{
  top: 240px;
}
}

/* =========================
  Contents 
========================= */
.contents .section-title {
  margin-bottom: 50px;
}

.contents-accent {
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.content-item{
  position: relative;
  width: 100%;
  margin: 0 0 60px;
}

.content-number{
  position: absolute;
  top: -40px;
  left: -8px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-pink);
  color: var(--primary-white);
  font-family: "Noto Serif JP";
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  overflow: hidden;
  z-index: 10;
}

.content-number.content-number--alpha {
  letter-spacing: -0.05em;
}

.content-item:nth-of-type(7) .content-number{
  transform: translateY(20px);
}

.content-image{
  margin-top: 8px;
}

.content-image img{
  width: 100%;
  height: auto;
  display: block;
}

.content-image--alpha {
  width: 250px;
  margin: 0 auto;
  height: auto;
}

.content-en{
  text-align: center;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
  font-family: caveat;
  color: var(--primary-darkpink);
  letter-spacing: 0.1em;
  font-size: 2rem;
}

.content-title{
  margin-top: 3px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #444444;
  font-weight: 500;
}

.content-title::after{
  content: "";
  display: block;
  width: 98%;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(140, 62, 68, 0.25);
}

.content-text{
  margin-top: 16px;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--primary-black);
  text-align: left;
}

.content-text .accent{
  color: var(--primary-darkpink);
  font-weight: 500;
}

.seminar-schedule{
padding: 20px 3.3%;
border: 1px solid #e9dada;
border-radius:5px;
background:#faf8f6;
margin: 30px 0;
}

.schedule-title{
font-weight:500;
margin-bottom: 10px;
color: var(--primary-darkpink);
font-size: 1.6rem;
font-family: "Zen Maru Gothic";
margin: 0 auto;
}

.schedule-list{
list-style:none;
padding:0;
font-size: 1.4rem;
color: var(--primary-black);
font-family: "Zen Maru Gothic";
margin-top: 10px;
}

.schedule-list li{
padding:6px 0;
}

.schedule-list li:last-child{
border-bottom:none;
}

.schedule-note{
font-size: 1.3rem;
margin-top: 10px;
color: var(--primary-black);
font-family: "Zen Maru Gothic";
}

.schedule-list span{
  font-weight:500;
}

.contents-bridge{
  width: 100%;
  margin-inline: auto;
}

.contents-bridge__card{
  position: relative;
  padding: 52px 28px 28px;
  border: 1px solid var(--primary-gold);
  border-radius: 10px;
  background: var(--primary-pinkbeige); 
}

.contents-bridge__lead{
  margin: 0 0 22px;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--primary-black);
}

.contents-bridge__text{
  margin: 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--primary-black);
}

.contents-bridge__text .brand-name-ja {
  font-size: 1.1rem;
  color: var(--primary-black);
  margin-bottom: -40px;
  margin-left: 12px;
}

.contents-bridge__text .brand-name-en {
  font-size: 1.8rem;
  color: var(--primary-black);
}

.contents-bridge__ashirai img{
  width: 54px;
  height: auto;
  display: block;
  opacity: 0.9;
}

.contents-bridge__ashirai {
  position: absolute;
  top: 185px; 
  left: 260px;
  margin: 0;
  animation: pop 2.5s ease-in-out infinite;
}

@keyframes pop {
  0%, 40%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  45% {
    transform: scale(1.25);
    opacity: 1;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
}

.contents-bridge__cta{
  margin: 34px 0 0;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--primary-pink);
}

.contents-bridge__illust{
  margin: 10px auto 0;
  width: 213px;
  height: auto;
}

.contents-bridge__illust img{
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 35px;
}

.contents-circle-logo{
  position: absolute;
  left: 50%;
  bottom: -45px;         
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
}

.contents-circle-logo img{
  width: 100%;
  height: auto;
  display: block;
}

/* =================================
   Open Salon
================================= */
.opensalon {
    text-align: center;
    line-height: 1.6;
    background-color: var(--primary-pinkbeige); 
    margin-top: 180px;
}

.opensalon-bg {
    background-color: #f3e1e2; 
    padding: 10px 20px 80px;
    border-bottom-left-radius: 50% 60px; 
    border-bottom-right-radius: 50% 60px;
    border-top-left-radius: 50% 40px;
    border-top-right-radius: 50% 40px;
    position: relative;
}

.opensalon-inner {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.opensalon-bubble {
    margin-bottom: 20px;
    margin-top: -95px;
}
.opensalon-bubble img {
    max-width: 350px;
    height: auto;
}

.opensalon-heading {
    margin-bottom: 30px;
}
.opensalon-heading-en img {
    max-width: 200px;
    margin-left: -150px;
}

.opensalon-heading-ja img {
    max-width: 310px;
    margin-top: -45px;
    transform: rotate(1.6deg);
}

.opensalon-tea-illustration {
    margin-bottom: 30px;
    margin-top: -40px;
}

.opensalon-tea-illustration img {
    max-width: 180px;
}

.opensalon-note {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Zen maru gothic";
    color: var(--primary-darkpink);
    letter-spacing: 0.1em;
}

.opensalon-info-card {
    background-color: #F8F4F4;
    border: 1px solid #B9A57A;
    border-radius: 15px;
    padding: 20px;
    display: inline-block;
    min-width: 240px;
    margin-bottom: 20px;
    font-family: "Zen maru gothic";
    font-size: 1.6rem;
}
.opensalon-info-line {
    font-weight: 500;
    margin: 5px 0;
    font-size: 1.6rem;
    color: var(--primary-black);
    letter-spacing: 0.1em;
}

.opensalon-info-time {
    font-size: 1.8rem;
    margin: 0 auto;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--primary-black);
    letter-spacing: 0.1em;
}

.opensalon-info-free {
    color: var(--primary-darkpink);
    font-weight: 500;
    margin: 0 auto;
    letter-spacing: 0.1em;
}

.opensalon-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-family: "Zen maru gothic";
    color: var(--primary-black);
}
.opensalon-text p {
    margin: 8px 0;
}

.opensalon-message-image img {
    max-width: 240px;
    margin-left: -90px;
    margin-top: 12px;
    transform: rotate(-5deg);
}

.opensalon-woman img {
    max-width: 260px;
    margin: -65px 20px 10px 120px;
}

.opensalon-cta {
    margin-top: 30px;
}
.opensalon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    height: auto;
    padding: 20px 24px;
    border-radius: 10px;
    color: var(--primary-white);
    text-decoration: none;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 500;
    background: linear-gradient(
        to bottom,
        #BFAE86 0%,
        #BCA980 50%,    
        #B9A57A 97%
    );
    transition: all .3s ease;
    position: relative;
}

.opensalon-btn:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.opensalon-btn::after {
    content: '>';
    position: absolute;
    right: 20px;
    margin-bottom: 4px;
}

.opensalon-next {
    margin-top: 50px;
    padding: 0 20px;
}
.opensalon-next-card {
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 40px 20px;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
}
.opensalon-next-label {
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: -23px;
    margin-left: -85px;
    font-family: 'Zen Maru Gothic';
    letter-spacing: 0.1em;
}

.opensalon-next-lead {
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: "Zen Maru Gothic";
    letter-spacing: 0.1em;
    line-height: 2;
}

.opensalon-next-text {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: "Zen Maru Gothic";
    letter-spacing: 0.1em;
    line-height: 2;
}

.opensalon-next-illust img {
    max-width: 210px;
}

.opensalon-next-circle-logo {
    margin-top: -40px;
}

.opensalon-next-circle-logo img {
    max-width: 80px;
    opacity: 0.9;
}

/* =========================
  Price
========================= */
.price {
  margin-top: 60px;
}

.price-card{
  position: relative;
  margin: 0 auto;
  padding: 60px 35px;
  text-align: center;
  background-color: #E7D2CF;
}

.price-card::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(560px, 100%);
  height: 170px;
  background: var(--price-bg);
  border-radius: 14px;
  z-index: -1;
}

.price-label{
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.price-label span{
  display: inline-block;
  background: #B96A70;
  color: var(--primary-white);
  padding: 3px 16px;
  border-radius: 5px;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  letter-spacing: .1em;
  margin-top: 25px;
}

.price-box{
  margin: 2px auto 0;
  background: var(--primary-white);
  border: 1px solid var(--primary-pink);
  border-radius: 10px;
  padding: 22px 18px 18px;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.price-number{
  font-family: "Zen Maru Gothic";
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.price-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.price-tax{
  font-family: "Zen Maru Gothic";
  font-size: 1rem;
  color: var(--primary-black);
  white-space: nowrap;
  margin: 0;
}

.price-unit{
  font-family: "Zen Maru Gothic";
  margin: 6px 0 0;
  font-size: 1.2rem;
  color: var(--primary-black);
  margin: 0;
}


.cta-wrap--price {
  margin-top: 70px;
  position: relative;
  overflow: visible;
}

.price-join{
  position: absolute;
  right: 36px;
  top: -44px;
  margin: 0;
  transform: rotate(20deg);
  display: inline-block;
  pointer-events: none;
  z-index: 2;
}

.cta-wrap--price .cta-btn {
  margin-bottom: 3px;
}

.price-note{
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-black);
  line-height: 1.7;
  text-align: center;
  justify-content: center;
  font-family: "Zen Maru Gothic";
}

.price-note span {
  font-family: "Zen Maru Gothic";
  font-size: 1rem;
}

.note-links {
  display: inline-block;
  transform: translateX(-95px);
}

.note-links span {
  margin-right: 10px;
}

.line-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--primary-darkpink);
}

.price-message{
  margin: 42px auto 0;
  padding: 70px 16px 20px;
  text-align: center;
  position: relative;
  overflow: visible;           
  isolation: isolate;   
}        

.price-message-text{
  margin: 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--primary-black);
  position: relative;
  z-index: 2; 
  text-align: left;
  margin-left: 80px;   
  margin-top: 20px;              
}

.price-message-text .accent{
  display: inline-block;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--primary-darkpink);
}

.price-illust{
  margin: 22px 0 0 190px;
  width: 176px;
  height: auto;
  position: relative;
  z-index: 2;                   
}

.price-illust img{
  display: block;
  width: 100%;
  height: auto;
}

.price-message::before{
  content: "";
  position: absolute;
  width: 360px;              
  height: 240px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: rgba(239, 230, 225, 0.95); 
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.price-message::after{
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  left: 18px;
  top: 6px;
  background: rgba(201, 124, 130, 0.18);
  border-radius: 50%;
  filter: blur(10px);
  box-shadow: 290px 190px 0 rgba(241, 218, 214, 0.85); 
  z-index: 0;
  pointer-events: none;
}

.price-message {
  margin-top: 40px;
}

.price-confirm{
  max-width: 520px;
  margin: 20px auto 0;
  padding: 0 16px;
}

.price-confirm-head{
  position: relative;
  text-align: center;
}

.price-confirm-head::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #C97C82;
  transform: translateY(-50%);
  z-index: 0;
}

.price-confirm-title{
  display: inline-block;
  padding: 6px 18px;
  background: #B96A70; 
  color: var(--primary-white);
  border-radius: 5px;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;  
}

.price-confirm-list {
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-left: -10px;
}

.price-confirm-list li {
  margin-bottom: 15px;
}

.price-footnote {
  font-size: 1.2rem;
  margin-top: 30px;
  font-family: "Zen Maru Gothic";
  font-weight: 300;
  margin-left: 15px;
}

.note-item {
  margin-right: 5px;
}

.price-contact{
  margin: 70px auto 0;
  padding: 60px 50px;
  background: #E9E2DE; 
  text-align: center;
}

.price-contact a {
 font-size: 1.8rem;
 letter-spacing: 0.08em;
 font-weight: 500;
}

.price-contact-text{
  margin: 0 0 18px;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  line-height: 2.1;
  color: var(--primary-black);
  text-align: left;
}

.price-contact-text small{
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.8;
  opacity: 0.8;
}

.price-line-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 300px;
  height: auto;
  padding: 20px 22px;
  border-radius: 10px;
  background: #CFA7A7;
  color: var(--primary-white);
  text-decoration: none;
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 600;
  transition: all .3s ease;
}

.price-line-btn:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.price-line-btn img{
  width: 30px;
  height: 30px;
  display: block;
}

.contact-underline {
  background: linear-gradient(
    transparent 65%, 
    rgba(201,124,130,0.3) 65%
  );
  padding: 0 6px;
}

@media screen and (max-width:400px){
.price-message-text {
  margin-left: 50px;
}
}

/* =========================
  Frow
========================= */
.flow {
  margin-top: 70px;
  padding: 0 25px;
}

.flow-timeline{
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0px 16px 28px;
}

.flow-timeline::before{
  content: "";
  position: absolute;
  top: 42px;
  bottom: 135px;
  width: 1px;
  background: rgba(0,0,0,0.18);
}

.flow-step{
  display: grid;
  grid-template-columns: 96px 1fr; 
  column-gap: 18px;
  align-items: start;
  position: relative;
  padding: 12px 0 28px;
}

.flow-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--primary-pink);
  color: var(--primary-white);
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: -25px;
  display: flex;
  gap: 4px;
}

.flow-timeline::before{
  left: 50px;
}

.step-label{
  display: block;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-left: 22px;
}

.step-number{
  display: block;
  font-family: "Zen Maru Gothic";
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.flow-content{
  padding-top: 28px;
}

.flow-step-title{
  margin: 0 0 10px;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--primary-black);
}

.flow-step-title{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(0,0,0,0.25);
}

.flow-text{
  margin: 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--primary-black);
  margin-top: 20px;
}

.flow-text strong{
  font-weight: 500;
  color: var(--primary-darkpink);
}

.flow-note{
  margin: 20px 0 0;
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--primary-black);
}

.flow-step:last-child{
  padding-bottom: 8px;
}

.flow-illust{
  width: 159pxpx;
  margin: 22px auto 0;
  padding: 0 16px;
  text-align: right;
}

.flow-illust img{
  width: 170px;
  height: auto;
  display: inline-block;
  margin-top: -55px;
  margin-bottom: 20px;
}

.flow-step-title-sub {
  margin: 0;
  padding-left: 42px;
}

.note-highlight{
  background: linear-gradient(
    transparent 70%,
    rgba(201,124,130,0.25) 70%
  );
}

.flow-message{
  position: relative;
  margin: 0 auto;
  padding: 60px 5%;
  text-align: center;
  z-index: 1;
  isolation: isolate;
}

.flow-message::before{
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #F4E0DF;
  border-radius: 50%;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(6px);
  z-index: -1;
}

.flow-message p {
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: center;
}

.flow-decoration-flower {
  margin-left: 160px;
  z-index: 2;
}


.flow-message .flow-message-cta {
  font-weight: 500;
  color: var(--primary-darkpink);
  text-align: center;
  font-size: 2rem;
  margin-top: 30px;
}

.flow-brand-ja {
  font-size: 1rem;
  margin-left: -95px;
  display: block;
  margin-bottom: -46px;
}

.fade-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* =========================
   FAQ Section
========================= */

.faq {
  padding: 0 25px 80px;
  position: relative;
  z-index: 1;
}

.faq-items {
  width: min(720px, 92%);
  margin: 0 auto;
}

.faq-item {
  padding: 25px 0 35px;
}

.faq-summary {
  cursor: pointer;
  position: relative;
}

summary {
  list-style: none;
  display: block; 
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

.faq-q {
  display: flex;
  gap: 15px;
  margin: 0 0 16px;
  font-family: "Zen Maru Gothic";
}

.faq-q-label {
  font-weight: 400;
  color: var(--primary-black);
  font-size: 2.2em;
  margin-top: -5px;
}

.faq-q-text {
  flex: 1;
  line-height: 1.9;
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-a-lead {
  position: relative;
  padding-top: 5px;
  margin: 0;
}

.faq-a-lead::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(201, 124, 130, 0.25);
}

.faq-a-lead {
  display: flex;
  gap: 15px;
  align-items: baseline;
  font-family: "Zen Maru Gothic";
}

.faq-a-label {
  color: var(--primary-darkpink);
  font-weight: 400;
  font-size: 2.2em;
  transform: translateY(1.2px);
}

.faq-a-strong {
  font-weight: 500;
  line-height: 1.9;
  color: var(--primary-darkpink);
  font-size: 1.6rem;
}

.faq-toggle{
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin: 10px auto 0;
  border: 1px solid rgba(149, 92, 99, 0.35);
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  transition: transform 0.45s ease;
}

.faq-toggle::before,
.faq-toggle::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.2px;
  background: rgba(149, 92, 99, 0.75);
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 本文 */
.faq-body {
  padding-top: 18px;
  line-height: 1.9;
  font-size: 1.5rem;
  color: var(--primary-black);
  font-family: "Zen Maru Gothic";
}

.faq-body p {
  margin: 0 0 14px;
}

.faq-list {
  padding-left: 1.2em;
  margin: 10px 0 14px;
}

.faq-list li {
  margin-bottom: 6px;
}

/* =========================
   Final Message (CTA)
========================= */
.cta{
  position: relative;
  text-align: center;
  padding: 72px 18px 64px;
  background-image: url("../images/final-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(240,230,230,0.52);
  z-index: -1;
}

.cta > *{
  position: relative;
  z-index:1;
}

.final-circle-logo{
  position:absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events:none;
  z-index:3;
}

.final-circle-logo img{
  width: 96px;    
  height: auto;
  display:block;
}

.cta-lead{
  margin: 40px auto;
  max-width: 320px;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: .1em;
  color: var(--primary-black);
  font-family: "Zen Maru Gothic";
  font-weight: 500;
}

.cta-text{
  margin: 0 auto 40px;
  max-width: 320px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .1em;
  color: var(--primary-black);
  font-family: "Zen Maru Gothic";
}

.cta-question{
  margin: 0 auto 80px;
  max-width: 320px;
  font-size: 1.8rem;
  letter-spacing: .1em;
  color: var(--primary-darkpink); 
  font-weight: 500;
  font-family: "Zen Maru Gothic";
  background: linear-gradient(transparent 60%, rgba(207, 167, 167, 0.35) 60%);
}

.cta-label--sp.final-join {
  right: 20px;
}

/* =========================
  Footer
========================= */
.footer{
  background-color: #E9E2DE; 
  color: #777777;
  padding: 60px 25px 30px;
  text-align: center;
}

.footer-inner{
  max-width: 480px;
  margin: 0 auto;
}

.footer-nav{
  margin-bottom: 32px;
}

.footer-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 10px;
  text-align: left;
}

.footer-nav li{
  margin: 0;
}

.footer-nav a{
  font-family: "Zen Maru Gothic";
  color: #777777;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  transition: opacity .2s ease;
}

.footer-nav a:hover{
  opacity: .7;
}

.footer-brand{
  margin-top: 24px;
}

.footer-fants{
  margin-bottom: 20px;
}

.footer-fants img{
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-preshine-logo {
  width: 160px;
  margin: 0 auto;
}

.footer-preshine-logo img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.copyright{
  font-family: "Zen Maru Gothic";
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}


/* =========================
  アニメーション
========================= */

/* スクロール出現アニメーション */
.section-header .section-en,
.section-header .section-title,
.section-header .section-lead {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.section-header.is-show .section-en { opacity: 1; transform: translateY(0); transition-delay: 0.06s; }
.section-header.is-show .section-title { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.section-header.is-show .section-lead { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }

.fade-up {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s ease, transform 1s ease;
  transform-origin: center;
}

.fade-up.is-show {
  opacity: 1;
  transform: scale(1);
}