@charset "UTF-8";
/* ---------------------------------------
   Base
--------------------------------------- */
:root{
  /* Brand / Accent (from 26SS PDF mood) */
  --c-mint:     #7BC3C4;
  --c-lavender: #958BD2;
  --c-magenta:  #D1446F;

  /* Neutrals */
  --c-ink:      #1C1B1F;
  --c-ink-2:    #3E363C;
  --c-paper:    #FFFFFF;
  --c-off:      #F6F7F8;
  --c-muted:    #D4DADC;
  --c-line:     rgba(28, 27, 31, .14);

  /* Typography */
  --font-sans:"futura-pt", sans-serif;

  /* Radius / Shadow */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-pill: 999px;
  --shadow-soft: 0 12px 40px rgba(0,0,0,.18);

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 48px;
  --s-10: 64px;

  /* Layout */
  --content-w: 1120px;
  --pad: 24px;

  /* Project mappings */
  --bg: #ffffff;
  --text: var(--c-ink);
  --text-on-hero: #fff;

  --btn-bg: #ffffff;
  --btn-text: var(--c-ink);
  --btn-border: rgba(255,255,255,.65);

  --shadow: 0 12px 40px rgba(0,0,0,.25);
}

body{
    font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-on-hero);
  background: var(--c-mint);
  font-weight: 300;
  font-style: italic;
}

.jp,.jp *{
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
}

.container{
  width: min(var(--content-w), 100% - (var(--pad) * 2));
  margin-inline: auto;
}

.site{
  min-height: 100svh;
}

/* ---------------------------------------
   FV Left Block (mint + pink border)
--------------------------------------- */
:root{
  --fv-left: #CFDFDB;   /* 左ブロック */
  --fv-pink: #E6C7D0;   /* 右のピンク帯 */
}

.hero__leftblock{
  position: absolute; /* hero__bg が fixed なので揃えて fixed */
  top: 0;
  left: 0;
  height: 100svh;
  width: clamp(220px, 26vw, 420px);
  background: var(--fv-left);
  z-index: 1; /* bg(0) < block(1) < content(2) */
  pointer-events: none;
  z-index: 0
}

.hero__leftblock::after{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;          /* ピンク帯の太さ */
  height: 100%;
  background: var(--fv-pink);
}

/* SPで少し細く（好みで調整OK） */
@media (max-width: 767px){
  .hero__leftblock{
    width: clamp(140px, 30vw, 220px);
  }
  .hero__leftblock::after{
    width: 12px;
  }
}


/* ---------------------------------------
   Hero
--------------------------------------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__content{
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 4;
}

.hero__bg{
  position:fixed;
  inset:0;
  z-index:0;
}

.hero__bg img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* subtle dark veil for readability */
.hero__veil{
  position:fixed;
  inset:0;
  z-index:1;
}

.hero__kicker{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
  position: absolute;
  text-align: center;
  bottom:50px;
  left: 0;
  width: clamp(220px, 26vw, 420px);
}

.hero__kicker img{
  display: inline;
}

main{
  background: var(--c-mint);
}

/* ---------------------------------------
   Hero KenBurns (big -> settle)
   使い方：.hero__bg に hero-kenburns を付けるだけ
--------------------------------------- */
@media (prefers-reduced-motion: no-preference){
  .hero__bg.hero-kenburns img{
    /* 初期状態（大きめ + 少し上） */
    transform: scale(1.18) translateY(-2%);
    transform-origin: 50% 30%;

    /* 表示時にじわっと収まる */
    animation: hero-kenburns 9.5s cubic-bezier(.16,1,.3,1) both;
    will-change: transform, filter;
    filter: saturate(1.02) contrast(1.02);
  }

  /* js-reveal の .is-visible と連動させたい場合（任意）
     → 今 .hero__bg に js-reveal が付いてるのでこれが効きます */
  .hero__bg.hero-kenburns:not(.is-visible) img{
    animation: none;
  }
  .hero__bg.hero-kenburns.is-visible img{
    animation: hero-kenburns 9.5s cubic-bezier(.16,1,.3,1) both;
  }

  @keyframes hero-kenburns{
    0%{
      transform: scale(1.18) translateY(-2%);
      filter: saturate(1.02) contrast(1.02);
    }
    100%{
      /* 収まり（最終はほんの少しだけ大きいくらいが上品） */
      transform: scale(1.03) translateY(0);
      filter: saturate(1) contrast(1);
    }
  }
}

/* 低モーション環境では固定 */
@media (prefers-reduced-motion: reduce){
  .hero__bg.hero-kenburns img{
    transform: scale(1.02);
    animation: none;
  }
}


/* ---------------------------------------
   Objects (obj01/obj02 demo)
   - Place multiple by overriding CSS vars on each element:
     style="--obj-x:10vw; --obj-y:12vh; --obj-w:200px;"
--------------------------------------- */
.obj{
  position:absolute;
  z-index: 2;
  width: var(--obj-w, clamp(120px, 16vw, 220px));
  left: var(--obj-x, 0);
  top: var(--obj-y, 0);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .9s ease, transform .9s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events:none;
  z-index: 0;
}

.obj.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------------------------------------
   Responsive
--------------------------------------- */
@media (max-width: 767px){
  :root{ --pad: 18px; }
  .hero__content{ justify-items: center; text-align:center; }
  .btns{ justify-content:center; }
}

/* ---------------------------------------
   Utility Classes (small + reusable)
--------------------------------------- */
.u-container{
  width: min(var(--content-w), 100% - (var(--pad) * 2));
  margin-inline: auto;
}
.u-stack{ display:flex; flex-direction:column; gap: var(--gap, var(--s-4)); }
.u-row{ display:flex; align-items:center; gap: var(--gap, var(--s-4)); flex-wrap:wrap; }
.u-grid{ display:grid; gap: var(--gap, var(--s-4)); }
.u-center{ display:grid; place-items:center; }
.u-center-x{ display:flex; justify-content:center; }
.u-center-y{ display:flex; align-items:center; }

.u-text-center{ text-align:center; }
.u-text-right{ text-align:right; }

.u-ink{ color: var(--c-ink); }
.u-ink2{ color: var(--c-ink-2); }
.u-white{ color: #fff; }

.u-bg-mint{ background: var(--c-mint); }
.u-bg-lavender{ background: var(--c-lavender); }
.u-bg-magenta{ background: var(--c-magenta); }
.u-bg-paper{ background: var(--c-paper); }
.u-bg-off{ background: var(--c-off); }

.u-card{
  background: rgba(255,255,255,.92);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: var(--s-6);
}

/* main-content */
.main-text{
  position: absolute;
  font-style: italic;
  top:50px;
  left: 50px;
}

.main-text span{
  font-weight: 300;
  font-size: 45px;
  display: block;
  color:var(--c-magenta);
}

  h1,h2,h3{
    font-weight: 300;
  }
  
  .color-main{
    color:var(--c-magenta);
  }
  
  .u-section{
    position: relative;
    padding: 80px 5%;
    overflow: hidden;
  }

  .sec01{
    background: var(--c-mint);
  }
  
  .content{
    position: relative;
    z-index: 4;
    max-width: 1450px;
    margin: auto;
  }
  
  .sec01-cont{
    margin-top: -100px;
    display: flex;
    flex-flow: row-reverse;
  }
  
  .sec01-title span{
    font-size: 65px;
    font-style: italic;
    color:#e3c6cd;
  }
  
  span.line-h-i{
    line-height: 1.75em;
    display: inline-block;
    padding-right: 40px;
  }
  
  span.i-box{
    display: inline-block;
    padding-right: 40px;    
  }
  
  .sec01-text{
    margin-top: 40px;
  }
  
  .img02-wrap{
    position: relative;
  }
  
  .img02-wrap .number{
    position: absolute;
    top:20px;
    right: 40px;
  }
  
  .number{
    font-size: 113px;
    font-style: italic;
  }
  
  .number.pt01{
    color:var(--c-lavender);
  }

  a{
    transform: 0.5s;
  }
  
  a:hover{
    filter: brightness(1.2);
  }
  
  .sec02-a-box{
    margin-top: -115px;
  }
  
  .sec02-wrap{
    background: var(--c-lavender);
    overflow: visible;
  }
  
  .sec02-a{
    overflow: visible;
  }
  
  .item-title{
    font-size: 45px;
    color:#D1446F;
    font-weight: 300;
    font-style: italic;
  }
  
  .sec02-a-img{
    overflow: visible;
  }
  
  .sec02-a-cont{
    display: grid;
    gap:80px;
    grid-template-columns: 1fr 280px;
  }
  
  .sec02-obj-wrap{
    position: absolute;
    overflow: hidden;
    right: 0;
    top:0;
    height: 100%;
    width: 100%;
    z-index: 0;
  }

  .sec02-a .sec01-text{
    position: relative;
    left: 120px;
  }
  
  .sec02-a .cv-btn{
    position: relative;
    left: 180px;
  }
  
  .cv-btn{
    font-size:40px;
    margin-top: 40px;
  }
  
  .cv-btn.pt01{
    color:#693b93;
  }
  
  .sec02-b-cont{
    display: flex;
  }
  
  .sec02-b-img{
    left: -6%;
  }
  
  .sec02-b{
    overflow: visible !important;
  }
  
  .sec02-b-box{
    padding-top: 80px;
    position: relative;
    left: -150px;
    z-index: 4;
  }
  
  .sec02-b-box *{
    color:#17257d;
  }
  
  .number.pt02{
    color:#ffffff !important;
  }
  
  .sec02-b .number{
    margin-left: 320px;
  }
  
  .sec02-b .sec01-text{
    position: relative;
    left: 150px;
  }
  
  .sec02-b .sec02-b-btn{
    position: relative;
    left: 120px;
    margin-top: 80px;
  }
  
  .sec02-c-cont{
    display: flex;
    flex-flow: row-reverse;
  }
  
  .sec02-c-cont *{
    color:var(--c-magenta);
  }
  
  .sec02-c{
    margin-top: 80px;
    overflow: visible;
  }
  
  .img05{
    overflow: visible;
  }
  
  .sec02-c-img{
    right: -5vw;
  }
  
  .sec02-c-box{
    position: relative;
    padding-top: 60px;
  }
  
  .sec02-c-n{
    position: absolute;
    right: 0;
    top:180px;;
  }
  
  .sec02-c-title{
    position: relative;
    z-index: 8;
    right: -80%;
  }
  
  .sec02-c-title{
    position: relative;
    z-index: 8;
    right: -80%;
  }
  
  .line-h-i2{
    display: inline-block;
    line-height: 1.1em;
  }
  
  .sec02-c .sec01-text{
    position: relative;
    left: 40px;
  }
  
  .sec02-c-btn{
    position: relative;
    left: 80px;
  }

  .sec03{
    background: var(--c-magenta);
  }
  
  .sec03-n{
    text-align: right;
    padding-right: 200px;
  }
  
  .sec03-title{
    text-align: right;
    position: relative;
    z-index:3;
  }

  .sec03-img{
    margin: auto;
    margin-top: -50px;
  }
  
  .sec03-inner{
    position: relative;
  }
  
  .sec03-text{
    position: absolute;
    bottom:40px;
    right: 100px;
  }
  
  .sec03-img{
    min-width: 600px;
    max-width: 800px;
  }
  
  .sec3-btn{
    text-align: center;
  }

  .sec04-cont{
    display: flex;
  }
  
  .sec04-img{
    left: -5vw;
  }
  
  .sec04 *{
    color:#17257d;
  }
  
  .sec04-box{
    padding-top: 100px;
  }
  
  .img08{
    margin-left: 80px;
  }
  
  .sec04-n{
    text-align: right;
    padding-right: 40px;
  }
  
  .sec04-btn{
    text-align: right;
  }

  .main-footer{
    margin-top: 100px;
    text-align: center;
  }
  
  .foot-img{
    text-align: center;
    margin: auto;
  }
  
  .foot-cont{
    display: grid;
    gap:10px;
    margin-top: 40px;
    justify-content: center;
  }
  
  .insta img{
    display: inline-block;
  }
  
  .copy{
    font-family: "times-new-roman", sans-serif;
font-weight: 400;
font-style: normal;
    text-align: center;
    font-size: 12px;
    color:#ffffff;
  }
  
  .cv-btn .wipe-text .wipe-line{
    line-height:0.75;
  }

/* ---------------------------------------
   PageTop (appear near bottom)
--------------------------------------- */
.pagetop{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 60;

  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: initial;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  pointer-events: none;

  transition: opacity .45s ease, transform .55s cubic-bezier(.19,1,.22,1);
}

.pagetop img{
  width: 42px;
  height: 42px;
}

.pagetop.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 767px){
  .pagetop{ right: 18px; bottom: 18px; }
}

/* 低モーション環境 */
@media (prefers-reduced-motion: reduce){
  .pagetop{ transition: none; transform: none; }
}

.sp{
  display: none;
}

/* sp */
@media (max-width: 767px){
  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }  
  
/* ====== 横スクロール封じ（全幅共通） ====== */
html, body{
  overflow-x: clip; /* hiddenでもOK。clipの方が副作用少なめ */
}

.wrapper{
  width: 100%;      /* 100vwは避ける */
  overflow-x: clip; /* hiddenでもOK */
}
  
.hero__content{
  position: relative;
  width: 100%; /* 100vwやめる */
  height: 100vh;
  z-index: 4;
}  

  .hero__kicker {
    bottom: initial;
    left: 30px;
    top: 30px;
    width: auto;
  }
  
  .main-text span {
    font-size: 26px;
    text-align: left;
}
  
  .main-text {
    top: calc(50% - 70px);
    left: calc(50% - 150px);
  }
  
  .hero__leftblock {
      width: 100%;
      height: 80px;
      top: calc(50% - 63px);
  }

  .hero__leftblock::after {
      width: 100%;
      height: 7px;
      bottom: 0;
      top: initial;
  }

  .sec01-img{
    width: 100% !important;
  }

  .sec01-title span {
    font-size: 40px;
  }
  
  .sec01{
    padding-top: 150px;
  }
  
  .sec01-cont {
    display: block;
    margin-top: 30px;
  }
  
  .sec01-obj{
    --obj-w: clamp(270px, 35vw, 450px) !important;
    --obj-y: -20px !important;
}
  
  .img02{
    height: 450px !important;
  }
  
.img02-wrap .number {
    top: 10px;
    right: 10px;
}
  
  .number {
    font-size: 55px;
}
  
  .sec02-a-cont {
    display: block;
  }
  
  .item-title {
    font-size: 23px;
}
  
  .sec02-a-box {
    margin-top: -95px;
}
  
  .sec01-text {
    margin-top: 10px;
}
  .sec02-a .sec01-text {
    position: relative;
    left: 0;
}
  
.sec01-text {
    margin-top: 10px;
    font-size: 12px;
}
  
.cv-btn {
    font-size: 22px;
}
  
  .sec02-a-btn{
    margin-top: 200px;
  }
  
  .sec02-a-img{
    width: 160px !important;
    position: absolute !important;
    bottom: 60px !important;
    right: 10px !important;
    overflow: visible !important;
}
  
  .sec02-a .cv-btn {
    position: relative;
    left: 0;
    text-align: right;
}
  
  .sec02-obj{
    --obj-y: 60px !important;
    --obj-w: clamp(220px, 35vw, 450px) !important;
}
  
.sec02-b-cont {
    display: block;
}

  .sec02-b-obj{
    --obj-x: 38vw !important;
    --obj-y: 70px !important;
    --obj-w: clamp(220px, 35vw, 450px) !important;
  }
  
  .sec02-b-img{
    width: 80vw !important;
  }
  
.sec02-b .number {
    margin-left: 0;
}
  
  
  .sec02-b-box {
    padding-top: 5px;
    position: relative;
    left: 0;
    z-index: 4;
    text-align: left;
    padding-right: 10vw;
    padding-left: 12vw;
}
  
  
.sec02-b .sec01-text {
    position: relative;
    left: 0;
    width: calc(100% + 20vw);
} 
  
    .sec02-b .number {
        margin-right: 5vw;
        text-align: right;
    }
  
.sec02-b .sec02-b-btn {
    position: relative;
    left: 50px;
    margin-top: 50px;
}
  
  
.sec02-c-cont {
    display: block;
}
  
  .sec02_c-obj{
        --obj-w: clamp(220px, 35vw, 450px) !important;
  }
  
.sec02-c-box {
    position: initial;
    padding-top: 60px;
}
  
  .img05{
    width: 159px !important;
    overflow: visible !important;
    position: absolute !important;
    top: -70px;
    left: 0;
}
  
.sec02-c-img{
    width: 80vw !important;
    padding-top: 120px;
    right: -15vw;
}  
  
  .sec02-c-n {
    position: initial;
}
  
  
.sec02-c-box {
    position: initial;
    padding-top: 30px;
    padding-left: 15vw;
}
  
.sec02-c-title{
    position: relative;
    z-index: 8;
    right: initial;
}
  
.sec02-c .sec01-text {
    position: relative;
    left: 0;
    width: calc(100% + 5vw);
}
  
.sec02-c-btn {
    left: 0;
}
  
.sec03-img {
    min-width: auto;
    max-width: max-content;
  width: 100vw !important;
  left: -5vw;
  margin-bottom: 130px;
}
  
.sec03-n {
    text-align: right;
    padding-right: 100px;
}
  
.sec03-text {
    position: absolute;
    bottom: -100px;
    right: 0;
}
  
.sec3-btn {
    padding-right: 70px;
}
  
.sec04-cont {
    display: block;
}
  
  .sec04-img{
    width: 80vw !important;
  }
  

.sec04-obj{
    --obj-x: 35vw !important;
    --obj-y: 350px !important;
    --obj-w: clamp(400px, 35vw, 450px) !important;
}

  
.sec04-box {
    padding-top: 60px;
}
  
.img08 {
    width: 175px !important;
    margin-left: 20px;
}  
  
  .sec04-title{
    text-align: right;
    margin-right: 10vw;
  } 
  
  .sec04 .sec01-text{
   right: -15vw;
    position: relative;
  } 
  
  .sec04-btn{
    padding-right: 10vw;
  }  
  
.main-footer {
    margin-top: 0;
    padding-top: 40px;
}  
  
  .foot-img{
    width: 250px !important;
  }
  
  .insta img{
    width: 20px;
  }
  
  
}

/* tab */
@media (min-width: 768px) and (max-width: 1000px){
  
}