@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 初期状態：PC表示 */
.pc_area {
  display: block;
}

.sp_area {
  display: none;
}

/* SP表示（例：768px以下） */
@media screen and (max-width: 768px) {
  .pc_area {
    display: none;
  }

  .sp_area {
    display: block;
  }
}

  /* ▼降らせたい領域 */
  .confetti{
    position: relative;
    background: #fff;
    height: 76.866svw;    
    max-height: 1153px;
    font-size: 11.71875px;
  }
  @media (max-width: 1500px){
     .confetti{
        font-size: 0.78125svw;
      }
  }


/* base */
*{ box-sizing:border-box; }
html,body{ 
  font-size: 10px;
  height:100%; scroll-behavior: smooth; 
}
body{
  margin:0;
  letter-spacing:.02em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  margin: 0 auto;
}

/* ▼外側：落下担当（left/top をアニメ。transformは使わない） */
.confetti__piece{
  position: absolute;
  left: var(--start-x, 0rem); /* 0px */
  top: -12%;
  width: var(--w, 1rem); /* 10px */
  height: var(--h, 1rem); /* 10px */
  will-change: left, top;
  animation: drop var(--fall, 9s) linear var(--delay, 0s) forwards;
}

/* ▼内側：回転担当（transform専用に分離） */
.confetti__inner{
  width: var(--w);
  height: var(--h);
  background: hsl(var(--hue) var(--sat) var(--lit));
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,.18); /* 0 1px 2px */
  will-change: transform;
  animation: spin var(--spin, 1200ms) linear var(--delay, 0s) infinite;
}

/* ひらひら落下（左右スウェイは left を動かす） */
@keyframes drop{
  0%   { top:-12%; left: calc(var(--start-x) + 0rem); } /* 0px */
  25%  { top: 20%; left: calc(var(--start-x) + var(--sway)); }
  50%  { top: 55%; left: calc(var(--start-x) - var(--sway)); }
  75%  { top: 85%; left: calc(var(--start-x) + var(--sway)); }
  100% { top:112%; left: calc(var(--start-x) + 0rem); } /* 0px */
}

/* くるくる（内側だけで回すので衝突しない） */
@keyframes spin{
  from{ transform: rotateX(0turn) rotateY(0turn) rotateZ(0turn); }
  to  { transform: rotateX(1turn) rotateY(1turn) rotateZ(1turn); }
}

:root{
  --green:#2f8f43;
  --green2:#46b24a;
  --dark:#4b4c4c;
  --gray:#666;
  --line:#e7e7e7;
  --bg:#ffffff;
  --shadow: 0 1rem 3rem rgba(0,0,0,.08); /* 0 10px 30px */
  --max: 104rem; /* 1040px */
}

/* base */
*{ box-sizing:border-box; }


img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }

.hero__inner{
  width:min(var(--max), calc(100% - 4.8em)); /* 48px */
  margin-inline:auto;
  height: 100%;
}
.section01__inner,
.message__inner,
.initiatives__inner,
.sec-make__inner{
  width:min(var(--max), calc(100% - 4.8em)); /* 48px */
  margin-inline:auto;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background:#fff;
}
.hero__confetti{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(0.6rem 0.6rem at 10% 18%, #ff2ea6 98%, transparent 102%), /* 6px */
    radial-gradient(0.7rem 0.7rem at 22% 10%, #b7d000 98%, transparent 102%), /* 7px */
    radial-gradient(0.7rem 0.7rem at 35% 22%, #1ca15c 98%, transparent 102%),
    radial-gradient(0.8rem 0.8rem at 80% 16%, #2f7fd1 98%, transparent 102%), /* 8px */
    radial-gradient(0.7rem 0.7rem at 88% 10%, #ff2ea6 98%, transparent 102%),
    radial-gradient(0.6rem 0.6rem at 12% 55%, #1ca15c 98%, transparent 102%),
    radial-gradient(0.8rem 0.8rem at 92% 60%, #2f7fd1 98%, transparent 102%),
    radial-gradient(0.7rem 0.7rem at 40% 68%, #b7d000 98%, transparent 102%);
  opacity:.9;
  filter: saturate(1.15);
}
.hero__confetti::before,
.hero__confetti::after{
  content:"";
  position:absolute;
  inset:-4rem; /* -40px */
  background:
    linear-gradient(135deg, transparent 0 47%, #ff2ea6 48% 52%, transparent 53% 100%),
    linear-gradient(45deg,  transparent 0 47%, #1ca15c 48% 52%, transparent 53% 100%),
    linear-gradient(135deg, transparent 0 47%, #2f7fd1 48% 52%, transparent 53% 100%),
    linear-gradient(45deg,  transparent 0 47%, #b7d000 48% 52%, transparent 53% 100%);
  background-size: 18rem 18rem; /* 180px */
  opacity:.12;
  transform: rotate(-8deg);
}
.hero__confetti::after{
  transform: rotate(8deg);
  opacity:.09;
}

.hero__topline{
  margin: 0 auto;
  width: 65em;
  max-width: 30em;
  text-align: center;
  background: #998452;
  color: #fff;
  padding: 0.2em 1.5em;
  font-size: 2.1em;
  position: absolute;
  right: 50%;
  transform: translate(50%, 0);
  z-index: 2;
  font-weight: 500;
  top: 7.5em;
}

.hero__main{
  display:block;
  position: absolute;
  top: 22.3em; /* 223px */
  right: 50%;
  transform: translate(50%, 0);
  z-index: 2;
}
.hero__main img{
  display:block;
  margin: 0 auto;
  width: 56.3em;
  max-width: 56.3em;
}

.hero__coming{
  position:relative;
  text-align:center;
  position: absolute;
  bottom: 13.5em; /* 135px */
  right: 50%;
  width: 100%;
  transform: translate(50%, 0);
  z-index: 2;
}
.hero__coming-txt{
  font-size: 2.4em;
  font-weight: 500;
  padding-bottom: .6em;
}
.hero__coming-txt span{
  display: inline-block;
}
.scroll-infinity{
  margin-top: -2.5em; /* -25px */
  position: relative;
  z-index: -1;
}
.hero__coming-img img{
  margin: 0 auto;
  width: 55svw;
  max-width: 71.5em;
  margin-bottom: -3.5em;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin:0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item--text{
  width: 170em; /* 1600px */
  line-height: 1;
  padding: 0 2.5em; /* 25px */
}
.scroll-infinity__item--text img{
  width: 163.9em;
}
.scroll-down{
  display: grid;
  place-items: center;
  gap: 0.6em; /* 6px */
  margin-top: 0.2em; /* 2px */
  position: absolute;
  bottom: 3em; /* 30px */
  right: 50%;
  transform: translate(50%, 0);
  z-index: 2;
}
.scroll-down__label{
  font-size: 1.2em;
  letter-spacing:.18em;
  color:#333;
}
.scroll-down__arrow{
  width:0;height:0;
  border-left:0.8em solid transparent;  /* 8px */
  border-right:0.8em solid transparent; /* 8px */
  border-top:1.2em solid #333;          /* 12px */
  transform: translateY(0.2em);          /* 2px */
}

/* BANNER */
.section01{
  position:relative;
  background-image: url(../img/sec01_bg.png);
  background-size: cover;
  background-position: center;
  padding: 14rem 0 9.5rem; /* 140px 0 95px */
  overflow: hidden;
}
.section01__inner{
  display:grid;
  grid-template-columns: 1fr minmax(26rem, 54rem) 1fr; /* 260px, 540px */
  gap: 1.8rem; /* 18px */
  align-items:center;
}
.section01__center{
  text-align:center;
  color:#fff;
}
.section01__title{
  margin:0;
  font-size: 4.2rem;
  font-weight:500;
  text-shadow:
    0 0 0.4rem  #43743F, /* 4px */
    0 0 0.8rem  #43743F, /* 8px */
    0 0 1.2rem #43743F,  /* 12px */
    0 0 1.6rem #43743F,  /* 16px */
    0 0 2rem   #43743F;  /* 20px */
}
.section01__lead{
  margin:0;
  font-size: 2.6rem;
  position: relative;
  text-shadow:
    0 0 0.4rem  #43743F,
    0 0 0.8rem  #43743F,
    0 0 1.2rem #43743F,
    0 0 1.6rem #43743F,
    0 0 2rem   #43743F;
}
.section01__lead::after{
  width: 4.5rem;  /* 45px */
  height: 0.1rem; /* 1px */
  background: #fff;
  content:"";
  right: 2.5rem; /* 25px */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.section01__lead::before{
  width: 4.5rem;  /* 45px */
  height: 0.1rem; /* 1px */
  background: #fff;
  content:"";
  left: 2.5rem; /* 25px */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.section01__text{
  margin:4.7rem 0 0 0; /* 47px */
  font-size: 1.6rem;
  line-height:2;
  text-shadow:
    0 0 0.4rem  #43743F,
    0 0 0.8rem  #43743F,
    0 0 1.2rem #43743F,
    0 0 1.6rem #43743F,
    0 0 2rem   #43743F;
}

.section01__photos .photo01{
  position: absolute;
  top: -2.4rem; /* -24px */
  right: calc(50% + 33rem); /* 330px */
  z-index: 3;
}
.section01__photos .photo02{
  position: absolute;
  top: 13.5rem; /* 135px */
  right: calc(50% + 26.2rem); /* 262px */
  z-index: 2;
}
.section01__photos .photo03{
  position: absolute;
  top: 31.1rem; /* 311px */
  right: calc(50% + 39.8rem); /* 398px */
  z-index: 3;
}
.section01__photos .photo04{
  position: absolute;
  top: -2.7rem; /* -27px */
  left: calc(50% + 38.5rem); /* 385px */
  z-index: 3;
}
.section01__photos .photo05{
  position: absolute;
  top: 12.6rem; /* 126px */
  left: calc(50% + 27rem); /* 270px */
  z-index: 2;
}
.section01__photos .photo06{
  position: absolute;
  top: 28.7rem; /* 287px */
  left: calc(50% + 36.1rem); /* 361px */
  z-index: 3;
}

/* MESSAGE */
.message{
  padding: 11.5rem 0; /* 115px */
  background:#fff;
}
.message__inner{
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.message__box{
  width: calc(57% - 1.5rem); /* 15px */
}
.message__title{
  margin: 0 0 3rem; /* 30px */
  font-size: 2.3rem;
  line-height:1.4;
  color:#005143;
  font-weight: 500;
}
.message__txt{
  margin: 0 0 1.5rem; /* 15px */
  color: #333;
  line-height: 2.5;
  font-size: 1.6rem;
  font-weight: 500;
}
.message__sig{
  color: #333;
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
.portrait{
  width: calc(43% - 1.5rem); /* 15px */
}

/* INITIATIVES */
.initiatives{
  padding: 9rem 0 5rem; /* 90px 0 50px */
  border-top:0.1rem solid var(--line); /* 1px */
  overflow: hidden;
}
.initiatives__head{
  text-align:center;
  margin-bottom: 2.4rem; /* 24px */
}
.initiatives__title{
  margin:0 auto 1.2rem; /* 12px */
  font-size: 3.9rem;
  font-weight:500;
  letter-spacing:.08em;
  color:#005143;
  position: relative;
  padding: 0 17rem; /* 170px */
  width: fit-content;
}
.initiatives__title:after{
  position: absolute;
  content:"";
  width: 12rem;   /* 120px */
  height: 0.1rem; /* 1px */
  top:50%;
  right: 1rem; /* 10px */
  transform: translate(0,-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #005143 40%, #005143 60%, rgba(255,255,255,0) 100%);
}
.initiatives__title:before{
  position: absolute;
  content:"";
  width: 12rem;   /* 120px */
  height: 0.1rem; /* 1px */
  top:50%;
  left: 1rem; /* 10px */
  transform: translate(0,-50%);
  background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, #005143 40%, #005143 60%, rgba(255,255,255,0) 100%);
}
.initiatives__sub{
  margin: 3.5rem auto 3rem; /* 35px auto 30px */
  width: 100%;
  color: #000;
  line-height: 1.9;
  font-size: 1.6rem;
}
.splide__track--draggable {
  overflow: visible;
}
.card{
  position:relative;
  background:#f2f2f2;
  border:0.1rem solid #ededed; /* 1px */
  box-shadow: var(--shadow);
  padding: 2.6rem 2rem 2.5rem; /* 26px 20px 25px */
  overflow:hidden;
  /* スクショ再現上、カード角丸は意図的に付けています */
  border-radius: 2rem; /* 20px */
  margin: 0 auto 0;
  box-shadow: 0.3rem 0.3rem 1.5rem rgba(0,0,0,.3); /* 3px 3px 15px */
}
.card__badge{
  position:absolute;
  left: 1.4rem; /* 14px */
  top: 1.4rem;  /* 14px */
  width: 4.2rem; /* 42px */
  height: 4.2rem; /* 42px */
  border-radius: 99.9rem; /* 999px */
  color:#fff;
  font-weight:900;
  display:grid;
  place-items:center;
  z-index: 2;
  font-size: 2.4rem;
}
.card__badge span{
  position: absolute;
  right: -0.6rem; /* -6px */
  bottom: 0;      /* 0px */
  font-size: 2.4rem;
}
.card__badge::after{
  content:"";
  background: #005143;
  width: 18rem;  /* 180px */
  height: 18rem; /* 180px */
  border-radius: 10rem; /* 100% (keep, but harmless if left as %) */
  right: -3.4rem; /* -34px */
  bottom: -3rem;  /* -30px */
  z-index: -2;
  position: absolute;
}
.card__badge::before{
  content:"";
  background: #e8ecef;
  width: 9rem;  /* 90px */
  height: 9rem; /* 90px */
  border-radius: 10rem; /* 100% */
  right: 0.7rem; /* 7px */
  bottom: 1rem;  /* 10px */
  z-index: -1;
  position: absolute;
}
.card__title{
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin: 0.5rem auto; /* 5px */
}
.card__illust01{
  position:absolute;
  left: 0;
  bottom: 3rem; /* 30px */
}
.card__circle{
  position: absolute;
  right: 1.4rem;  /* 14px */
  bottom: 1.4rem; /* 14px */
  width: 4.2rem;  /* 42px */
  height: 4.2rem; /* 42px */
  z-index: 2;
}
.card__circle::after{
  content:"";
  background: #005143;
  width: 18rem;  /* 180px */
  height: 18rem; /* 180px */
  border-radius: 10rem; /* 100% */
  left: -3.4rem; /* -34px */
  top: -3rem;    /* -30px */
  z-index: -2;
  position: absolute;
}
.card__circle::before{
  content:"";
  background: #e8ecef;
  width: 9rem;  /* 90px */
  height: 9rem; /* 90px */
  border-radius: 10rem; /* 100% */
  left: 0.7rem; /* 7px */
  top: 1rem;    /* 10px */
  z-index: -1;
  position: absolute;
}
.card01__flex{
  display: flex;
  margin: 3.5rem 0 0; /* 35px */
  justify-content: space-between;
}
.card01__flex-box{
  background: #fff;
  width: calc(50% - 0.5rem); /* 5px */
  border-radius: 1rem; /* 10px */
  overflow: hidden;
  padding: 3.5rem 1rem; /* 35px 10px */
  position: relative;
}
.card01__flex-box::after{
  width: 100%;
  height: 1.1rem; /* 11px */
  top:-0.1rem;    /* -1px */
  background: #998452;
  content:"";
  position: absolute;
  right: 0;
}
.card01__flex-box-ttl{
  font-size: 1.6rem;
  line-height: 1.5;
}
.card01__flex-box-ttl span{
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8;
}
.card01__flex-box-img{
  display: flex;
  align-items: center;
  height: 14.8rem; /* 148px */
}
.card01__flex ul{
  list-style-type: disc;
  padding: 0 0 0 2.5rem; /* 25px */
  font-size: 1.4rem;
}
.card01__flex ul li::marker {
  font-size: 1rem; /* 10px */
}
.card02__subtitle{
  font-size: 1.7rem;
  margin: 4rem 0 2rem 4rem; /* 40px 0 20px 40px */
}
.card02__flex{
  display: flex;
  margin: 0 0 0 4rem; /* 40px */
  justify-content: space-between;
}
.card02__flex-txt{
  width: calc(60% - 0.5rem); /* 5px */
  padding: 0.8rem 0 0 0; /* 8px */
  font-size: 1.4rem;
}
.card02__flex-box-img{
  width: calc(40% - 1.5rem); /* 15px */
}
.card02__flex-box-text{
  font-size: 1.2rem;
  padding: 0.5rem 0 0 0;
  text-align: center;
}
.card03__subtitle{
  font-size: 1.7rem;
  margin: 4rem 2rem 3.5rem 2rem; /* 40px 20px 35px 20px */
}
.card03__flex{
  display: flex;
  justify-content: space-between;
}
.card03__flex-box-img{
  width: 16rem; /* 160px */
  position: relative;
}
.card03__flex-box-img img{
  max-width: 18.9rem; /* 189px */
  position: absolute;
  top:0;
  right: -0.1rem; /* -1px */
  width: 18.9rem; /* 189px */
}
.card03__flex-box{
  width: calc(100% - 16rem); /* 160px */
  padding: 2.5rem 2rem 1.5rem; /* 25px 20px 15px */
  background-color: #fff;
  display: flex;
  border-radius: 1rem; /* 10px */
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.7rem 0; /* 17px 0px */
}
.card03__flex-box-ttl{
  width: 7rem; /* 70px */
  background-color: #998452;
  border-radius: 3rem; /* 30px */
  padding: 0.2rem; /* 2px */
  color: #fff;
  font-size: 1.4rem;
  height: 2rem; /* 20px */
  text-align: center;
  line-height: 1;
}
.card03__flex-box-content{
  width: calc(100% - 8rem); /* 80px */
  font-size: 1.4rem;
}
.card03__come_text{
  padding: 0.5rem 0 0 150px;
  font-size: 1.4rem;
}
.cards-splide{
  width: 64rem; /* 640px */
  margin: 5.4rem auto 0; /* 54px */
}
.cards-splide .splide__list{
  align-items: stretch;
}
.cards-splide .splide__slide{
  height: auto;
}
.cards-splide .splide__slide > .card{
  height: 100%;
}

.cards-splide .splide__pagination{
  position: static;
  margin-top: 6.8rem; /* 68px */
  gap: 2rem; /* 20px */
}
.cards-splide .splide__pagination__page{
  width: 18rem; /* 180px */
  height: 0.8rem; /* 8px */
  margin: 0;
  opacity: 1;
  background: #cfcfcf;
  border-radius: 1rem; /* 10px */
  transform: none;
}
.cards-splide .splide__pagination__page.is-active{
  background: #005143;
  transform: none;
}

/* Splideのデフォルトfocusリングが気になる場合だけ */
.cards-splide .splide__pagination__page:focus-visible{
  outline: 0.2rem solid rgba(47,143,67,.45); /* 2px */
  outline-offset: 0.3rem; /* 3px */
}

/* 1枚表示時に“中央カード強調”っぽく（任意） */
@media (max-width: 980px){
  .cards-splide .splide__slide{
    transition: opacity .25s ease;
  }
  .cards-splide .splide__slide:not(.is-active){
    opacity: .55;
  }
}

/* FOOTER */
.sec-make{
  position:relative;
  overflow:hidden;
  background-image: url(../img/sec-make-bg.png);
  background-position: center;
  background-size: cover;
  border-top:0.1rem solid var(--line); /* 1px */
  padding: 12.8rem 0 13rem; /* 128px 0 130px */
}
.sec-make__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 2.6rem; /* 26px */
  align-items:end;
  width: 81rem; /* 810px */
  z-index: 2;
}
.sec-make__copyblock{
  width:min(52rem, 100%); /* 520px */
}
.sec-make__title{
  margin:0 0 1.5rem; /* 15px */
  font-weight:500;
  letter-spacing:.06em;
  font-size: 2.6rem;
  position: relative;
  width: fit-content;
  padding-right: 9rem; /* 90px */
}
.sec-make__title::after {
  width: 5rem;   /* 50px */
  position: absolute;
  height: 0.1rem; /* 1px */
  background: #000;
  content: "";
  right: 3.7rem; /* 37px */
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.sec-make__text{
  margin:0;
  color:#000;
  line-height:2;
  font-size: 1.6rem;
}
.sec-make-logo{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 1;
}

.footer__brand{
  text-align:center;
  margin: 3rem auto; /* 30px */
  padding-bottom: 3rem; /* 30px */
}
.kabanet img{
  margin: 0 auto;
  text-align:center;
}
.kabanet a {
  transition: opacity 0.3s ease;
}
.kabanet a:hover{
  opacity: 0.7;
}
.footer__cr{
  display: block;
  margin: 2rem; /* 20px */
  font-size: 1.2rem;
  color: #333;
  opacity: .8;
}

/* responsive */



@media (max-width: 980px){
  .confetti{
    height: 120svw;
  }
  .sp_area{
    display: block;
  }
  .hero__topline{
    max-width: calc(100% - 2rem); /* 20px */
    text-align:center;
    padding: 0.2rem 0; /* 2px */
    font-size: 4.1em;
    top: 3em;
  }
  .hero__coming-txt{
    font-size: 4.6em;
    padding-bottom: 1.4rem;
  }
  .hero__main{
    top: 19em; 
    width: 100%;
  }
  .hero__main img{
    max-width: calc(100% - 2rem);
    width: 108em;
    margin: 6em auto;
  }
  .hero__coming{
    bottom: 18.5em; 
  }
  .hero__coming-img{
    max-width: calc(100% - 2rem); 
    width: 200em; 
    margin: 0 auto;
  }
  .hero__coming-img img{
    margin: 0 auto;
    width: 90svw;
    max-width: 152.5em;
    margin-bottom: -3.5em;
  }
  .scroll-infinity__item--text {
    width: 325em;
  }
  .scroll-infinity__item--text img{
    width: 325em;
  }
  .scroll-infinity{
    margin-top: -4.8em;
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }
  @keyframes infinity-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }
  .scroll-down{
    bottom: 4em; /* 30px */
  }
  .scroll-down__label{
    font-size: 2.1em; /* 10px */
  }
.scroll-down__arrow {
    width: 0;
    height: 0;
    border-left: 1.8em solid transparent;
    border-right: 1.8em solid transparent;
    border-top: 3em solid #333;
    transform: translateY(0.2em);
}
  /* BANNER */
  .section01{
    padding: 3rem 0 40svw; /* 30px */
  }
  .section01__inner{
    display: block;
  }
  .section01__title{
    margin:0 0 0.6rem; /* 6px */
    font-size: 2.3rem;
  }
  .section01__lead{
    margin:0 auto;
    font-size: 1.6rem;
    position: relative;
    width: fit-content;
  }
  .section01__lead::after{
    width: 1.5rem; /* 15px */
    right: -2rem;  /* -20px */
  }
  .section01__lead::before{
    width: 1.5rem; /* 15px */
    left: -2rem;   /* -20px */
  }
  .section01__text{
    margin:1.5rem 0 0 0; /* 15px */
    font-size: 1.4rem;
  }
  .section01__photos .photo02,
  .section01__photos .photo03,
  .section01__photos .photo05{
    display: none;
  }

  .section01__photos .photo01{
    right: calc(58%);
    top: auto;
    z-index: 2;
    width: 50SVW;
    bottom: -7SVW;
  }
  .section01__photos .photo04{
    right: calc(24%);
    top: auto;
    left: auto;
    width: 42SVW;
    z-index: 3;
    bottom: -7SVW;
  }
  .section01__photos .photo06{
    right: calc(-16%);
    top: auto;
    left: auto;
    z-index: 2;
    width: 50SVW;
    bottom: -7SVW;
    transform: rotate(-17deg);
  }

  /* MESSAGE */
  .message{
    padding: 5rem 0; /* 50px */
    background:#fff;
  }
  .message__inner{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem; /* 30px */
  }
  .message__box{
    width: 100%;
  }
  .message__title{
    margin: 0 0 2rem; /* 20px */
    font-size: 2.2rem;
  }
  .message__txt{
    margin: 0 0 1.5rem; /* 15px */
    font-size: 1.4rem;
  }
  .message__sig{
    margin: 0;
    font-size: 1.4rem;
  }

  .portrait{
    width: 100%;
  }
  .portrait img{
    margin: 0 auto;
  }

  /* INITIATIVES */
  .initiatives{
    padding: 5rem 0 5rem; /* 50px 0 50px */
    border-top:0.1rem solid var(--line); /* 1px */
    overflow: hidden;
  }
  .initiatives__head{
    margin-bottom: 2rem; /* 20px */
  }
  .initiatives__title{
    font-size: 2rem;
    padding: 0 4rem; /* 40px */
  }
  .initiatives__title:after{
    width: 5rem;  /* 50px */
    right: -1.5rem; /* -15px */
  }
  .initiatives__title:before{
    width: 5rem;  /* 50px */
    left: -1.5rem; /* -15px */
  }
  .initiatives__sub{
    margin: 2rem auto 2rem; /* 20px */
    font-size: 1.4rem;
  }
  .card{
    padding: 2.6rem 1.5rem 2.5rem; /* 26px 15px 25px */
  }
  .card__badge {
    left: 0;
    top: 0;
  }
  .card__badge span{
    position: absolute;
    right: -0.2rem; /* -2px */
    bottom: 0.5rem; /* 5px */
    font-size: 1.8rem;
  }
  .card__badge::after{
    width: 10rem;  /* 100px */
    height: 10rem; /* 100px */
    right: -1.5rem; /* -15px */
    bottom: -1rem;  /* -10px */
  }
  .card__badge::before{
    width: 5rem;  /* 50px */
    height: 5rem; /* 50px */
    right: 1.2rem; /* 12px */
    bottom: 1.5rem; /* 15px */
  }
  .card__title{
    font-size: 1.6rem;
    margin: 0.5rem auto; /* 5px */
  }
  .card__illust01{
    position:relative;
    right: 0;
    bottom: 0;
  }
  .card__circle{
    right: 0;
    bottom: 0;
  }
  .card__circle::after{
    width: 10rem; /* 100px */
    height: 10rem; /* 100px */
    left: -1.5rem; /* -15px */
    top: -1rem;    /* -10px */
  }
  .card__circle::before{
    width: 5rem; /* 50px */
    height: 5rem; /* 50px */
    left: 1.2rem; /* 12px */
    top: 1.5rem;  /* 15px */
  }
  .cards-splide{
    max-width: calc(100% - 2rem); /* 20px */
    margin: 6.5rem auto 0; /* 65px */
  }
  .cards-splide .splide__pagination{
    position: static;
    margin-top: 2.8rem; /* 28px */
    gap: 1.5rem; /* 15px */
  }
  .cards-splide .splide__pagination__page{
    width: 4rem; /* 40px */
    height: 0.8rem; /* 8px */
  }
  .card01__flex{
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 0; /* 20px */
    gap: 1rem; /* 10px */
  }
  .card01__flex-box{
    width: 100%;
    padding: 2rem 1rem; /* 20px 10px */
    position: relative;
  }
  .card01__flex-box-img{
    justify-content: center;
  }
  .card02__subtitle{
    font-size: 1.7rem;
    margin: 2rem 0 2rem 0; /* 20px */
  }
  .card02__subtitle br{
    display: none;
  }
  .card02__flex{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 1rem; /* 10px */
  }
  .card02__flex-txt{
    width: 100%;
    padding: 0.8rem 0 0 0; /* 8px */
    font-size: 1.4rem;
  }
  .card02__flex-box-img{
    width: auto;
    margin-bottom: 2rem; /* 20px */
  }
  .card03__subtitle{
    font-size: 1.7rem;
    margin: 2rem 2rem 2rem 2rem; /* 20px */
  }
  .card03__subtitle br{
    display: none;
  }
  .card03__flex{
    display: flex;
    justify-content: space-between;
  }

  /* FOOTER */
  .sec-make{
    border-top:0.1rem solid var(--line); /* 1px */
    padding: 5rem 0 5rem; /* 50px */
  }
  .sec-make__inner{
    width: calc(100% - 2rem); /* 20px */
  }
  .sec-make__title{
    margin:0 0 1.5rem; /* 15px */
    font-size: 2rem;
    padding-right: 6rem; /* 60px */
  }
  .sec-make__title::after {
    width: 4rem; /* 40px */
    right: 1rem; /* 10px */
  }
  .sec-make__text{
    font-size: 1.6rem;
  }
}

@media (max-width: 660px){
  .card03__flex-box-img{
    width: 10rem; /* 100px */
    position: relative;
  }
  .card03__flex-box-img img{
    max-width: 12rem; /* 120px */
  }
  .card03__flex-box{
    width: calc(100% - 10rem); /* 100px */
    padding: 1.5rem 1rem 1.5rem; /* 15px 10px 15px */
    gap: 0.5rem 0; /* 5px 0px */
  }
  .card03__flex-box-ttl{
    width: 7rem; /* 70px */
  }
  .card03__flex-box-content{
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1rem; /* 10px */
  }
  .card03__come_text{
    padding: 0.5rem 0 0 0;
    font-size: 1.4rem;
  }
  .sec-make {
    padding: 2.5rem 0 2.5rem; /* 25px */
  }
  .sec-make__title {
    margin: 0 0 0.8rem; /* 8px */
    font-size: 1.8rem;
    padding-right: 6rem; /* 60px */
  }
  .sec-make__copyblock{
    padding-right: 15rem; /* 150px */
  }
}

@media (max-width: 520px){
  .sec-make {
    padding: 2rem 0 2rem; /* 20px */
  }
  .sec-make__title {
    margin: 0 0 0.4rem; /* 4px */
    font-size: 1.6rem;
    padding-right: 6rem; /* 60px */
  }
  .sec-make__copyblock{
    width: 100%;
    padding-right: 0;
  }
  .sec-make__copyblock br{
    display: none;
  }
}

@media (max-width: 700px){
 
  .sec-make__title {
    text-shadow:
      0.1rem  0.1rem  0 #fff, /* 1px */
     -0.1rem  0.1rem  0 #fff,
      0.1rem -0.1rem  0 #fff,
     -0.1rem -0.1rem  0 #fff,
      0.1rem  0       0 #fff,
     -0.1rem  0       0 #fff,
      0       0.1rem  0 #fff,
      0      -0.1rem  0 #fff;
  }
  .sec-make__title::after {
    /* 白い縁取り（影） */
    box-shadow:
      0.1rem  0    0 #fff,
     -0.1rem  0    0 #fff,
      0    0.1rem  0 #fff,
      0   -0.1rem  0 #fff,
      0.1rem  0.1rem 0 #fff,
     -0.1rem  0.1rem 0 #fff,
      0.1rem -0.1rem 0 #fff,
     -0.1rem -0.1rem 0 #fff;
  }
  .sec-make__text{
    font-size: 1.2rem;
    text-shadow:
      0.1rem  0.1rem  0 #fff,
     -0.1rem  0.1rem  0 #fff,
      0.1rem -0.1rem  0 #fff,
     -0.1rem -0.1rem  0 #fff,
      0.1rem  0       0 #fff,
     -0.1rem  0       0 #fff,
      0       0.1rem  0 #fff,
      0      -0.1rem  0 #fff;
  }
}

/* アニメーション */

/* 共通アニメーション */
.fade-item {
  opacity: 0;
  transform: translateY(2rem); /* 20px */
  animation: fadeUp 0.8s ease-out forwards;
}

/* 時間差 */
.delay-1 { animation-delay: 0.3s; height: 100%; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.3s; }

/* アニメーション定義 */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 写真部分 */
.float-photo {
  opacity: 0;
  transform-origin: center;
}
.float-photo:not(.from-right) {
  transform: translate(4rem, 4rem) rotate(2deg); /* 40px,40px */
}
.float-photo.from-right {
  transform: translate(-4rem, 4rem) rotate(-2deg); /* -40px,40px */
}

.float-photo.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-base 8s ease-in-out 1.2s infinite;
}

@keyframes fadeDiagonal {
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

/* A */
.type-a.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-a 8s ease-in-out 1.2s infinite;
}

@keyframes floating-a {
  0%   { transform: translate(0, 0) rotate(0); }
  50%  { transform: translate(-1rem, -1.2rem) rotate(-2deg); } /* -10px -12px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* B */
.type-b.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-b 9s ease-in-out 1.5s infinite;
}

@keyframes floating-b {
  0%   { transform: translate(0, 0) rotate(0); }
  40%  { transform: translate(1.2rem, -0.8rem) rotate(2.5deg); } /* 12px -8px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* C */
.type-c.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-c 7.5s ease-in-out 1.3s infinite;
}

@keyframes floating-c {
  0%   { transform: translate(0, 0) rotate(0); }
  60%  { transform: translate(-0.6rem, -1.6rem) rotate(-1.5deg); } /* -6px -16px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* D */
.type-d.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-d 10s ease-in-out 1.8s infinite;
}

@keyframes floating-d {
  0%   { transform: translate(0, 0) rotate(0); }
  50%  { transform: translate(1.4rem, -1.4rem) rotate(3deg); } /* 14px -14px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* E */
.type-e.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-e 8.5s ease-in-out 1.4s infinite;
}

@keyframes floating-e {
  0%   { transform: translate(0, 0) rotate(0); }
  50%  { transform: translate(-1.2rem, -0.6rem) rotate(-2.5deg); } /* -12px -6px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* F */
.type-f.is-show {
  animation:
    fadeDiagonal 1.2s ease-out forwards,
    floating-f 9.5s ease-in-out 1.6s infinite;
}

@keyframes floating-f {
  0%   { transform: translate(0, 0) rotate(0); }
  40%  { transform: translate(0.6rem, -1.8rem) rotate(1.8deg); } /* 6px -18px */
  100% { transform: translate(0, 0) rotate(0); }
}

/* メッセージ */
.anim-box {
  opacity: 0;
}

.anim-box.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* テキスト */
.type span {
  opacity: 0;
}

.type.is-show span {
  animation: typeIn 0.04s forwards;
}

@keyframes typeIn {
  to {
    opacity: 1;
  }
}

.js-type {
  opacity: 0;
}

.js-type.is-active {
  opacity: 1;
}

.js-type span {
  opacity: 0;
  display: inline;
  margin: 0;
  padding: 0;
}

.js-type.is-active span {
  animation: typeIn 0.05s forwards;
}

@keyframes typeIn {
  to {
    opacity: 1;
  }
}
