main {
  overflow: hidden;
}

/* 上部ルート（線）用：黄色円より下に置く */
.slide-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  min-width: 1440px;
  pointer-events: none;
  z-index: 0;   /* ★ ルートは一番奥側 */
}

.slide-wrapper svg {
  width: 1440px;
  height: auto;
  display: block;
}

/* 下側の線は slide-wrapper-bottom 側で描画するので stroke を殺す */
#slideSvg #pathBottom {
  stroke: none;
}

/* ボール & d の棒用：黄色円より前面に置く */
.slide-wrapper-ball {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  min-width: 1440px;
  pointer-events: none;
  z-index: 2;   /* ★ 黄色円(z:1) より前、他コンテンツよりは後ろ */
}

/* ボール & 縦棒は JS で位置が決まるまで一旦非表示にしておく */
.slide-wrapper-ball #ball,
.slide-wrapper-ball #ballStem {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}


.slide-wrapper-ball svg {
  width: 1440px;
  height: auto;
  display: block;
}

/* 目のスタイルとまばたき */
.eye {
  fill: #fff;
}

.eyes {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: blink 3s infinite;
}

@keyframes blink {
  0%, 88%, 100% {
    transform: scaleY(1);
  }
  90%, 92% {
    transform: scaleY(0.1); /* つぶした状態（まばたき） */
  }
}







#fvContainer {
  height: 900px;
  position: relative;
}

#fvContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
  position: relative;
  z-index: 30;
}

#fvContainer video.ended {
  opacity: 0;
}







.scroll-indicator{
  position: absolute;
  bottom: 3px;
  right: 35px;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap: 0px;
}

.scroll-text{
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 900;
  margin-bottom: -7px;
}

/* 三角形の見た目（輪郭は常に表示） */
.scroll-arrows{
  width:34px;
  height:auto;
}

.tri{
  stroke: #0b2a66;      /* 枠線の色 */
  stroke-width: 2.2;
  fill: #0b2a66;        /* 塗りの色（透明度でON/OFF） */
  fill-opacity: .15;    /* 通常時は薄く（または 0 にしてもOK） */
  stroke-linejoin: round;
  animation: triFill 1.2s infinite;
}

/* 1 → 2 → 3 の順に点灯 */
.t1{ animation-delay: 0s; }
.t2{ animation-delay: .4s; }
.t3{ animation-delay: .8s; }

/* 点灯して→消える */
@keyframes triFill{
  0%   { fill-opacity: 1; }
  35%  { fill-opacity: 1; }
  60%  { fill-opacity: .15; }
  100% { fill-opacity: .15; }
}

/* 動きを減らしたい人向け */
@media (prefers-reduced-motion: reduce){
  .tri{ animation: none; fill-opacity: 1; }
}








#aboutContainer {
  padding-top: 60px;
  padding-bottom: 490px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.aboutBack {
  width: 100%;
  min-width: var(--bgWidth);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.aboutContentsContainer {
  width: 800px;
  height: 800px;
  padding-top: 50px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50%;
  position: relative;
  left: 50%;
  transform: translateX(-580px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutDeco1 {
  width: 22.25px;
  height: 22.25px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 170px;
  left: 935px;
}

.aboutDeco2 {
  width: 34.76px;
  height: 34.76px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 180px;
  left: 885px;
}

.aboutDeco3 {
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 190px;
  left: 790px;
}

.aboutTitle span {
  letter-spacing: 3px;
  color: var(--primaryColor);
}

.aboutTitle span:first-of-type, .aboutTitle span:last-of-type {
  font-size: 58px;
  line-height: 1.2;
}

.aboutTitle span:nth-of-type(2) {
  font-size: 47px;
}

.aboutContents p {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  text-align: center;
}

.aboutBtn {
  width: 368px;
  height: 167px;
  padding: 0 40px 10px 0;
  box-sizing: border-box;
  position: absolute;
  bottom: -100px;
  right: -370px;
  background: url(../img/aboutBtnBack.png) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  z-index: 11;
}

.aboutBtn a span:first-of-type {
  display: block;
  font-size: 16px;
  color: var(--primaryColor);

}

.aboutBtn a span:last-of-type {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0 8px;
  color: var(--primaryColor);

}

.aboutBtn a span:last-of-type img {
  width: 26px;
}

.aboutDeco4 {
  position: relative;
  z-index: 11;
}







#valueContainer {
  margin-top: -390px;
  position: relative;
}
#valueContainer::after {
  content: "";
  display: block;
  height: calc(100% - 300px);
  background: #fff;
  position: absolute;
  top: 300px;
  left: 0;
}

.valueBack {
  width: 100%;
  min-width: 1564px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.valueText {
  width: 90%;
  max-width: 585px;
  margin: 0 auto;
  padding-top: 290px;
  position: relative;
}

.valueBall {
  width: 151.6px;
  position: absolute;
  top: 390px;
  right: -200px;
  animation: valueBall 3s both;
  transform-origin: 44px 44px;
}

@keyframes valueBall {
  0%{transform: rotate(0deg);}
  8%{transform: rotate(-20deg);}
  24%{transform: rotate(20deg);}
  40%{transform: rotate(-20deg);}
  56%{transform: rotate(20deg);}
  72%{transform: rotate(-20deg);}
  88%{transform: rotate(20deg);}
  96%{transform: rotate(0deg);}
  100%{transform: rotate(0deg);}
}

.valueText dt {
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1.8;
}

.valueText dd {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 2.2;
}

.valueBtn {
  width: 90%;
  max-width: 585px;
  margin: 60px auto 0;
  font-size: 48.5px;
  letter-spacing: 3px;
  overflow: hidden;
}

.valueBtn a {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.valueBtn a img {
  width: 40px;
  margin-top: 10px;
}

.slick01 span {
  margin-left: -7px;
  font-size: 26px;
  letter-spacing: -2px;
  overflow: hidden;
}









#mangaContainer {
  margin-top: 80px;
  padding-bottom: 30px;
}

.mangaContents {
  width: 318px;
  height: 318px;
  margin: 0 auto;
  padding-top: 15px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #dedff0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.mongaDeco1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dedff0;
  position: absolute;
  bottom: 30px;
  left: -70px;
}

.mongaDeco2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dedff0;
  position: absolute;
  bottom: 45px;
  left: -45px;
}

.mangaDeco3 {
  width: 347.5px;
  position: absolute;
  top: 40px;
  right: -275px;
}

.mangaContents h2 {
  font-size: 38.8px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.mangaContents p {
  margin-top: 7px;
  font-size: 18px;
  letter-spacing: 1px;
}

.mangaBtnArrow {
  width: 40px;
  margin-top: 20px;
}








#underContainer {
  min-width: 1170.5px;
  margin: 16px auto 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.underContainerBack {
  width: 100%;
  min-width: 1705px;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.underContentsContainer {
  width: 1170.5px;
  height: 1170.5px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f3ecd0;
  position: relative;
  z-index: 1;
}

.underContents {
  width: 515px;
  height: 515px;
  box-sizing: border-box;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.underContents.recruit {
  margin: 0 auto;
  padding-top: 130px;
}

.underContents.recruit .underContentsImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.underContents h2 span:first-of-type {
  letter-spacing: 1px;
}
.underContents h2 span:nth-of-type(2) {
  font-size: 38px;
  letter-spacing: 3px;
  display: block;
}
.underContents h2 span:last-of-type {
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 1px;
  display: block;
}

.underContents h2 img {
  width: 40px;
  margin-top: 12px;
}

.underContents2ndRow {
  margin-top: -21px;
  display: flex;
  gap: 0 50px;
  justify-content: center;
}

.underContents.sdgs {
  padding-top: 90px;
  background: #d1e5d3;
}

.underContents.sdgs .underContentsImg {
  width: 161px;
  margin: 20px auto;
  position: relative;
}

.underContents.sdgs .underContentsImg img:first-of-type {
  animation: rotate360 16s linear infinite;
}

.underContents.sdgs .underContentsImg img:nth-of-type(2) {
  width: 26.18px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes rotate360 {
  0%{transform: rotate(0deg);}
  100%{transform: rotate(360deg);}
}

.underContents.movie {
  padding-top: 80px;
  background: #c6c6c6;
}

.movieIframe {
  margin-top: 15px;
}
.movieIframe iframe {
  width: 202px!important;
  height: 134px!important;
}

.underContents.movie .underContentsImg {
  width: 88px;
  margin: 0 auto;
}

.bubble-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  transform-origin: 50% 50%;
  opacity: 0.7;
}

.bubble.yellow  { background: #fff4c5; }
.bubble.green   { background: #e0f5c8; }
.bubble.green2  { background: #d0f0c5; }
.bubble.blue    { background: #d6e6f4; }
.bubble.blue2   { background: #d1e6f2; }







#accessContainer {
  width: 90%;
  max-width: 815px;
  margin: 80px auto 0;
  padding-bottom: 80px;
  display: flex;
  gap: 0 35px;
  transform: translateX(100px);
}

.accessTextContainer {
  width: 330px;
}

.accessTitle {
  width: 295px;
  height: 124px;
  padding-left: 15px;
  box-sizing: border-box;
  background: url(../img/accessTitleBack.png) center center / contain no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.accessTitle span:first-of-type {
  margin-top: -11px;
  letter-spacing: 1px;
}

.accessTitle span:nth-of-type(2) {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.accessMap {
  width: 450px;
  height: 297px;
  border-radius: 25px;
  overflow: hidden;
}

.accessMap iframe {
  width: 100%;
  height: 100%;
}

.accessText {
  max-width: 298px;
  margin: 15px 0 0 auto;
}

.accessText p:first-of-type {
  margin-bottom: 15px;
  padding-bottom: 12px;
  position: relative;
}

.accessText p:first-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fontColor);
  position: absolute;
  top: 100%;
  left: 0%;
}









.slide-wrapper-bottom {
  /* width: 100%; */
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.slide-wrapper-bottom svg {
  width: 1440px;
  height: auto;
  display: block;
}