@charset "UTF-8";
/* ---------------------------------------
   Base
--------------------------------------- */
:root{
  /* Brand / Accent (from 26SS PDF mood) */
  --c-mint:     #7cc3c4;
  --c-lavender: #f8d3e0;
  --c-magenta:  #d2446f;
  --c-pink:  #e6b4d0;

  /* 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-pink);
  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: #f8d3e0;   /* 左ブロック */
  --fv-pink: #7cc3c4;   /* 右のピンク帯 */
}

.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-pink);
}

/* ---------------------------------------
   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;
  }

.sec-intro{
    background: var(--c-pink);
    padding-top: 200px;
  }

  .sec-intro-cont{
    margin-top: -280px;
    display: flex;
    flex-flow: row-reverse;
  }
  
  .sec-intro-title span{
    font-size: 65px;
    font-style: italic;
    color:#577626;
  }

  .sec-intro-img-wrap{
    display: flex;
    gap:30px;;
  }   
  
  .sec-intro-img{
    padding-top: 80px;
  }
  
  .sec-intro-img02{
    padding-bottom:80px;
  }

.sec-intro-title .color-main{
  color:#7cc3c4;
}

.sec-intro-text .color-main{
 color:#577626; 
}

  .sec-intro-text{
    margin-top: 40px;
  }
  

  .sec01{
    background: var(--c-lavender);
    padding-top: 0;
    padding-right: 0;
  }
  
  .content{
    position: relative;
    z-index: 4;
    max-width: 1450px;
    margin: auto;
  }
  
  .sec01 .content{
    display: flex;
    gap:30px;
    flex-flow: row-reverse;
    max-width: 100%;
    justify-content: space-between;
  }
  
  .sec01-title span{
    font-size: 65px;
    font-style: italic;
    color:#d2446f;
    padding-right: 100px;
  }

.sec01-cont-text{
  padding-left: 100px;
}

.sec01-cont{
  padding-top: 100px;
}

.sec01-a-btn{
  margin-left: 40px;
}

.sec01-img-b{
  position: absolute !important;
}

.sec01-head-wrap{
  position: relative;
  right: -30vw;
}

.sec01-img-wrap{
  text-align: right;
  width: 45%;
}
  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;
  }
  
  .number{
    font-size: 113px;
    font-style: italic;
    color:#d2446f;
    
  }
  
  a{
    transform: 0.5s;
  }
  
  a:hover{
    filter: brightness(1.2);
  }
  
  
  .item-title{
    font-size: 60px;
    color:#D1446F;
    font-weight: 300;
    font-style: italic;
  }

.sec02{
  padding-left: 0;
  background: var(--c-lavender);
}
  
  .sec02-cont{
    display: grid;
    gap:80px;
    grid-template-columns: 55% 1fr;
  }
  
  .cv-btn{
    font-size:40px;
    margin-top: 40px;
  }
  
  .cv-btn.pt01{
    color: #17257d;
  }

.sec02-box{
  position: relative;
  left: -130px;
}

.sec02-box .number{
  padding-left: 200px;
}

.sec02-box .sec01-text{
  margin-left: 100px;
}

.sec02-btn{
  margin-left: 150px;
}

.sec03{
  padding-right: 0;
  background: var(--c-lavender);
  overflow: visible;
}

.hid-wrap{
  overflow: hidden;
}
  
.sec03-cont{
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  gap:80px;
}


.sec03-box .number{
  text-align: right;
}

.sec03-box .item-title{
  text-align: right;
  position: relative;
  right: -120px;
}

.sec03-box .wipe-line{
  text-align: left;
  padding-right: 40px !important;
}


.sec03-box .sec01-text{
  margin-left: 80px;
}

.sec03-box .sec03-btn{
  padding-left: 160px;
}


  .img04-wrap{
    position: relative;
  }    
  
  .img04-wrap .number{
    position: absolute;
    z-index: 4;
    top:60px;
    right: 60px;
  }
  
  .sec04 .content{
    display: grid;
    grid-template-columns: 1fr 500px;
  }
  
  .sec04{
    background: #7cc3c4;
    overflow: visible;
  }
  
  .sec04-box{
    position: relative;
    top: -125px;
    z-index: 99;
  }
  
  .img04-wrap-wrap{
    overflow: hidden;
  }

.sec05-box .number{
  line-height: 0.9em;
  margin-top: 40px;
}

.sec05{
  background: var(--c-lavender);
}

  .sec05{
    padding-left: 0;
  }
  
  .sec05 .content{
    display: grid;
    grid-template-columns:50vw 500px;
    gap:80px;
  }
  
  .sec04-btn{
    margin-left: 70px;
  }
  
  .sec05-box{
    padding-top: 185px;
  }
  
  .img08{
    margin-left: 30%;
  }
  
  .sec05-btn{
    margin-left: 80px;
  }



  .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;
}

  .headLink{
    display: flex;
    justify-content: space-between;
    width: 125px;
    position: fixed;
    top:20px;
    right: 20px;
    z-index: 9999;
  }
  
  .headLink .select{
    display: flex;
    align-items: center;
    justify-content: center;
    color:#000000;
    height:55px;
    width:55px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: bold;
    background:#7cc3c4;
    text-align: center;
  }
  
  .headLink a{
    display: flex;
    align-items: center;
    justify-content: center;
    color:#000000;
    height:55px;
    width:55px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
  
  .headLink a:hover{
    background:#7cc3c4;
  }
  
  .headLink span{
    font-size: 16px;
  }
	

@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;
  }
  
.sec-intro-title span {
    font-size: 50px;
    font-style: italic;
    color: #577626;
}
  
.sec-intro-cont {
    margin-top: 25px;
    display: block;
}
  
.sec-intro {
    padding-top: 50px;
}
  
.sec-intro-img-wrap {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
}  
  
.sec-intro-img,
.sec-intro-img02{
    width: 100% !important;
  }
  
.sec-intro-img{
    position: relative;
  left: -5vw;
  }
  
.sec-intro-img02{
   position: relative;
  right: -5vw;
  }  
  
.sec-intro-obj{
    --obj-x: 33vw !important;
    --obj-y: 140px !important;
}  
/*<br class="sp">まとって<br class="pc">*/
  .sec01-img{
    width: 100% !important;
  }

  .sec01-title span {
    font-size: 40px;
  }
  
    .sec01 {
        padding-top:0;
      padding-left: 5%;
      padding-right: 5%;
      position: relative;
      padding-bottom: 100px;
    }
  
.sec01 .content {
    display: grid;
}
  
.sec01-img-wrap {
    text-align: right;
    width: 112%;
    position: relative;
    left: -6%;
}
  
  
  
  .sec01-cont {
    display: block;
    padding-top: 0;
    position: relative;
    top:-140px;
  }
  
.sec01-img-b {
  position: absolute !important;
  width: 150px !important;
  top: 290px;
  right: 25px;
}  
  
  .sec-intro-text{
    font-size: 12px;
  }  
  
.sec01-head-wrap {
    position: relative;
    right: 0;
}
  
  .sec01-title span{
    padding-right: 0;
  }
  
  .sec01-cont-text{
    padding-left: 0;
  }  
  
  .sec01-a-btn{
    margin-left: 0;
    text-align: center;
    position: absolute;
    bottom: -250px;
    left: 0;
    width: 100%;
  }  
  
  .sec01-obj{
    --obj-w: clamp(270px, 35vw, 450px) !important;
    --obj-x: 63vw !important;
    --obj-y: 660px !important;
}
  
.sec02-cont {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}  

  .sec02-img{
    width: 80%;
  }  
  
.sec02-box {
    left: 0;
    top: -75px;
}
  
.sec02-box .number,
.sec02-box .item-title{
    padding-left: 40px;
}
  
.sec02-box .sec01-text {
    margin-left: 40px;
}
  
.sec02-box .number {
    padding-left: 40px;
}
  
.sec03-obj{
    --obj-x: 48vw !important;
    --obj-y: -180px !important;  
    --obj-w: clamp(90px, 66vw, 450px) !important;
}  
  

  .number {
    font-size: 55px;
}

  .item-title {
    font-size: 23px;
}

  
  .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;
}
  

  .sec03{
    padding-top: 0;
    padding-right: 5%;
    padding-left: 5%;
  }  
  
.sec03-cont {
    display: block;
}
  
.sec03-img{
    width: 100vw !important;
    padding-left: 25%;
}  
  
.sec03-box .number {
    text-align: left;
  order:1;
}
  
  .sec03-box .sec03-img02{
    order:4;
    margin-top: 30px;
  }
  
  .sec03-box .item-title{
    order:2;
  }
  
.sec03-box .sec01-text {
  order:3;
  }
  
  .sec03-box .sec03-btn {
    order:5;
    padding-left: 100px;
}
  
  .sec03-box .sec01-text {
    margin-left: 0;
}
  
  
  .img04-wrap-img{
    height: auto !important;
  }  
  
  .img04-wrap{
    overflow: visible !important;
  }  
  
.img04-wrap-wrap {
    overflow: visible !important;
}  
  
  .sec03-box{
    position: relative;
    top: -70px;
    display: grid;
  }
  
  .sec03-box .item-title {
    text-align:left;
    right: 0;
}
  

.img04-wrap .number {
    top: -40px;
    right: 20px;
}
  
  .sec04{
    padding: 40px 5%;
  }
  
.sec04 .content {
    grid-template-columns: 1fr;
}
  
.sec04-box {
    position: relative;
    top: 0;
    z-index: 99;
}
  
  .sec04-img{
    margin-left: 60%;
  }
  
.sec02_c-obj{
    --obj-x: 68vw !important;
    --obj-y: 120px !important;
    --obj-w: clamp(90px, 65vw, 450px) !important;
} 
  
.sec05 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
  
  .sec05-img{
    width: 75vw !important;
  }
  
.sec05-box {
    padding-top: 0;
}
  
  .sec05-box{
    position: relative;
    padding-left: 5%;
  }
  
  .img08 {
    margin-left: 60%;
    width: 135px !important;
}
  
.sec05-box .number {
    margin-top: 0;
    position: absolute;
    top: -60px;
    right: 20px;
}
  
.sec04-obj{
    --obj-x: 75vw !important;
    --obj-y: 450px !important;
    --obj-w: clamp(90px, 55vw, 450px) !important;
}  
  
  .sec05-box span.line-h-i{
    padding-right: 10px;
  }

  
.main-footer {
    margin-top: 0;
    padding-top: 40px;
}  
  
  .foot-img{
    width: 250px !important;
  }
  
  .insta img{
    width: 20px;
  }
  
  .item-title span {
        font-size: 40px;
    }
  
  
}

.sec04-title .wipe-text .wipe-inn,
.sec02 .wipe-text .wipe-inn{
line-height: 1.25em;
}

.sec04-img{
  height: auto;
  aspect-ratio:1 / 1;
}

/* tab */
@media (min-width: 768px) and (max-width: 1000px){
  .hero__bg{
    padding-left: 200px;
  }
  
  .sec01-a-btn {
    margin-left: 0;
}
  
.sec01-cont-text {
    padding-left: 0;
}
  
.sec02-cont {
    display: grid;
    gap: 0px;
    grid-template-columns: 40% 1fr;
}
  
.sec02-box {
    position: relative;
    left: -60px;
}
  
.sec02-btn {
    margin-left: 100px;
}
  
.sec03-box .sec03-btn {
    padding-left: 0;
}
  
.sec03-box .sec01-text {
    margin-left: 0;
}
  
.sec04 .content {
    display: grid;
    grid-template-columns: 1fr 260px;
}
  
.sec05 .content {
    display: grid;
    grid-template-columns: 35vw 1fr;
    gap: 80px;
}
  

  
  
}



