/*===== トップページ共通 =================*/
.hr-white-top {
  position: absolute;
  width: 100%;
  height: 37px;
  background-color: #fff;
  top: -2px;
  left: 0;
}
.hr-white-btm {
  position: absolute;
  width: 100%;
  height: 38px;
  background-color: #fff;
  bottom: -2px;
  left: 0;
}




/*===== ファーストビューセクション =================*/
.fv {
  background-color: #14468B;
  padding-top: 60px;
  padding-bottom: 90px;
  text-align: center;
  color: #fff;
  position: relative;
}
.txt-box__fv h1 {
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.txt-box__fv span {
  letter-spacing: 0.08em;
}
.fv-splide h3 {
  font-size: clamp(14px, calc(1.4vw + 6px), 18px);
}
.fv-splide p {
  font-size: clamp(10px, calc(1.17vw + 4px), 12px);
  margin-bottom: 36px;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 12px;
  padding-top: 6px;
  padding-bottom: 8px;
  display: inline-block;
}
.fv-splide .splide__slide a {
  display: block;
  position: relative;
  transition: transform 0.3s ease;
}

.fv-splide .splide__slide a:hover {
  opacity: 0.8;
}

.fv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.splide__slide img {
  height: auto;
  width: 100%;
}
.fv-splide {
  margin-bottom: 24px;
}
.fv-splide .splide__arrow {
	background: #fff;
	opacity: 1;
}
/*スクロールダウン*/
.scroll-down {
  position: absolute; /* fixedでもOK */
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 15px;     /* 画像サイズ調整 */
  height: auto;
  animation: scrollAnim 1.5s ease-in-out infinite;
  opacity: 0.9;
}

/* ▼ 上下にふわっとするアニメーション */
@keyframes scrollAnim {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .scroll-arrow {
    width: 10px;
  }
  .scroll-down {
    bottom: -50px;
  }
  .fv {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 500px) {
    .scroll-arrow {
        width: 8px;
    }
    .scroll-down {
        bottom: -40px;
    }
}
@media screen and (max-width: 430px) {
  .hr-white-btm  {
    height: 34px;
  }
}

/*===== コンセプトセクション =================*/
.concept {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.logo-box__concept {
  max-width: 400px;
  margin: 0 auto 64px auto;
}
.concept-h {
  font-size: clamp(28px, calc(1.4vw + 6px), 42px);
  font-weight: 600;
  margin-bottom: 72px;
  letter-spacing: 0.05em;
  line-height: 1.22;
}
.t-box__concept {
  font-size:clamp(18px, calc(1.4vw + 6px), 22px);
  max-width: 650px;
  margin: 0 auto 250px auto;
  line-height: 2.5;
  text-align: center;
  position: relative;
}
.t-box__concept p {
  display: inline-block;
  font-weight: 500;
}
.deco {
  position: absolute;
  height: auto;
}
.deco01 {
  width: 200px;
  top: -120px;
  left: -140px;
}
.deco02 {
  top: 20px;
  width: 250px;
  right: -160px;
}
.deco03 {
  width: 150px;
  top: 260px;
  right: -190px;
}
.deco04 {
    left: -130px;
    bottom: 160px;
    width: 220px;
}
.deco05 {
    width: 120px;
    right: -50px;
    bottom: -50px;
}
.deco06 {
    width: 270px;
    left: 60px;
    bottom: -180px;
}

/*マーカーアニメーション*/
.marker-anim {
    position: relative;
    display: inline-block;
    z-index: 1;
	white-space: nowrap;
}
.marker-anim::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0%;
    height: 50%;
    background: #FEFFAF;
    z-index: -1;
    transition: width 1.3s ease-out;
}
.marker-anim.is-show::before {
    width: 100%;
}
@media screen and (max-width: 1024px) {
  .deco01 {
    display: none;
  }
  .deco02 {
    top: -370px;
    width: 180px;
    right: 0px;
  }
  .deco03 {
    display: none;
  }
  .deco05 {
    width: 110px;
    top: -140px;
    left: 30px;
  }
  .deco04 {
    bottom: 240px;
    width: 180px;
    right: -60px;
    left: auto;
  }
  .deco06 {
    width: 230px;
    left: -90px;
    bottom: 40px;
  }
  .concept-h {
    margin-bottom: 32px;
  }
  .logo-box__concept {
    margin-bottom: 24px;
  }
  .t-box__concept {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 960px) {
  .deco04 {
    bottom: 220px;
  }
}
@media screen and (max-width: 768px) {
  .sp-btm__concept {
    margin-bottom: 32px;
  }
  .sp-btm__concept02 {
    margin-bottom: 152px;
  }
  .t-box__concept {
    line-height: 1.6;
  }
  .marker-anim::before {
    bottom: 4px;
  }
  .logo-box__concept {
    max-width: 220px;
  }
  .concept-h {
    line-height: 1;
    margin-bottom: 72px;
  }
  .logo-box__concept {
    margin-bottom: 16px;
  }
  .deco02 {
    top: -310px;
    width: 140px;
    right: 110px;
  }
  .deco05 {
    width: 90px;
    top: -155px;
    left: 115px;
  }
  .deco04 {
    bottom: 266px;
    width: 150px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .deco06 {
    display: none;
  }
  .concept {
    padding-top: 100px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 640px) {
    .deco02 {
      top: -330px;
      width: 140px;
      right: 50px;
  }
    .deco05 {
      left: 55px;
  }
}
@media screen and (max-width: 500px) {
  .deco02 {
    top: -310px;
    width: 120px;
    right: 20px;
  }
  .deco05 {
    width: 80px;
    top: -135px;
    left: 15px;
  }
  .deco04 {
    bottom: 270px;
    width: 130px;
  }
}
@media screen and (max-width: 430px) {
    .concept-h {
      font-size: 24px;
    }
    .deco02 {
      top: -290px;
      width: 110px;
      right: 30px;
    }
    .deco05 {
    left: 25px;
  }
    .logo-box__concept {
      max-width: 200px;
  }
}
@media screen and (max-width: 380px) {
    .concept-h {
      font-size: 22px;
    }
}
@media screen and (max-width: 375px) {
    .deco02 {
      right: 10px;
    }
    .deco05 {
      width: 75px;
      top: -125px;
      left: 15px;
    }
}
@media screen and (max-width: 360px) {
  .t-box__concept p {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 340px) {
    .deco02 {
      top: -275px;
      width: 100px;
      right: 10px;
    }
      .deco05 {
      width: 67px;
      top: -121px;
      left: 10px;
    }
}
/*===== ラインナップセクション =================*/
.lineup {
    text-align: center;
    background-color: #F0BEBF;
    padding: 16px 0;
    position: relative;
    margin-bottom: 150px;
}
.lineup h2 {
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}
.s-h2 {
    font-size: 16px;
    font-weight: 700;
}
.lineup-splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.lineup-splide .splide__slide img {
  width: 100%;
  display: block;
  border: 1px solid #000;
  border-radius: 20px;
}
.slider-wrapper__lu {
  max-width: 1060px;
  margin: 54px auto 72px;
}
.link-all {
  position: relative;
  z-index: 1;
  text-align: center;
}
.link-all a {
  display: inline-block;
  padding: 0.6vw 2vw 0.4vw;
  font-size: clamp(16px, calc(1.17vw + 4px), 18px);
  border: 1px solid #000;
  border-radius: 30px;
  background-color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .slider-wrapper__lu {
    width: 90%;
    margin-top: 36px;
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 768px) {
  .slider-wrapper__lu {
    width: 100%;
  }
	.link-all a {
		padding: 2.8vw 7vw 2vw;
	}
}

/*===== マッチングセクション =================*/
.matching {
    padding-bottom: 24px;
    text-align: center;
    background-image: url(../img/function-num-bgm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    overflow: hidden;
}
.matching .hr-white-top {
  height: 22px;
}
.matching .hr-white-btm {
  height: 44px;
}
.matching h2 {
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}
.matching .s-h2 {
  margin-bottom: 36px;
}
.matching .link-all {
  margin-top: 160px;
}


/*scene slider*/
/* スライダー */
.scene-slider .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* 場所名リンク */
.scene-link {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  padding: 5px 20px 7px;
  background-color: #E5DC4F;
  border-radius: 50px;
  border: 1px solid #000;
}

.scene-slider img {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.ppl-slider ul li a {
    display: block;
    transition: all 0.3s ease;
}

.ppl-slider ul li a:hover {
    opacity: 1;
    transform: translateY(-25px);
}

#splide06 {
  position: absolute;
  top: 190px;
}
@media screen and (min-width: 1700px) {
  #splide06 {
    top: 140px;
  }
	.matching .link-all {
    margin-top: 190px;
  }
}
@media screen and (max-width: 1536px) {
  .matching .link-all {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1380px) {
  #splide06 {
    top: 200px;
  }
}
@media screen and (max-width: 1300px) {
  #splide06 {
    top: 140px;
  }
}
@media screen and (max-width: 1190px) {
  #splide06 {
    top: 190px;
  }
}
@media screen and (max-width: 1024px) {
  .matching .link-all {
    margin-top: 80px;
  }
}
@media screen and (max-width: 980px) {
  #splide06 {
    top: 150px;
  }
  .matching .link-all {
    margin-top: 160px;
  }
}
@media screen and (max-width: 880px) {
  .matching .link-all {
    margin-top: 100px;
  }
}
@media screen and (max-width: 820px) {
  #splide06 {
    top: 190px;
  }
}
@media screen and (max-width: 768px) {
  #splide05 {
    width: 90%;
    margin: 0 auto;
  }
  #splide06 {
    top: 120px;
  }
  .matching .link-all {
    margin-top: 150px;
  }
  .matching {
    background-image: url(../img/function-num-bgm-sp.png);
    background-repeat: repeat;
    background-size: contain;
  }
	.scene-link {
  font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
    .matching .link-all {
      margin-top: 120px;
  }
}
@media screen and (max-width: 500px) {
  #splide06 {
    top: 150px;
  }
}
@media screen and (max-width: 375px) {
  #splide06 {
    top: 170px;
  }
}

/*===== Feature section =================*/
.feature {
    padding-top: 80px;
    text-align: center;
}
.feature .s-h2 {
  font-size: 16px;
  margin-bottom: 40px;
}
.grid-feature {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 20px;
  margin-bottom: 120px;
}

.grid-box {
  position: relative;
  width: 100%;
  padding-top: 90%; /* （高さ可変） */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.grid-box a {
  position: absolute;
  inset: 0;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: clamp(20px, calc(2.5vw + 6px), 22px);
}
.grid-box .s-link {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 6px;
  font-weight: 400;
}
.box1 {
  background-image: url("../img/feature01.png");
}
.box2 {
  background-image: url("../img/feature02.png");
}
.box3 {
  background-image: url("../img/feature03.png");
}
@media screen and (max-width: 1024px) {
  .grid-feature {
    width: 80%;
    padding: 0;
    margin-bottom: 72px;
  }
}
@media (max-width: 768px) {
  .grid-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-box {
    padding-top: 30%;
  }
  .box1 {
  background-image: url("../img/feature01-sp.png");
  }
  .feature {
    padding-top: 40px;
}
}
