/* ============
 top-mv
=============== */

.top-mv {
}

.top-mv__inner {
  background: #e45d40;
  /* padding-top: 30px; */
  padding-bottom: 26px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 1000px) {
  .top-mv__inner {
    padding-top: 30px;
  }
}

.top-mv__title {
  padding-left: 10px;
}

/* 初期状態：透明だけ */
.popup {
  opacity: 0;
}

/* アニメーションする時だけ transform 適用 */
.popup.is-animated {
  animation: popup 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.top-mv__tile {
  position: relative;
  height: 554px;
}

.top-mv__tile-item-001 {
  position: absolute;
  /* width: 226px; */
  width: clamp(13.188rem, -10.25rem + 100vw, 14.125rem);
  /* height: 220.91px; */
  left: 0;
  top: 33px;
}

.top-mv__tile-item-002 {
  position: absolute;
  width: 135.25px;
  /* width:clamp(7.5rem, -15.938rem + 100vw, 8.438rem); */
  /* height: 140.38px; */
  right: 0;
  top: 177px;
}

.top-mv__tile-item-003 {
  position: absolute;
  /* width: 134.19px; */
  width: clamp(7.5rem, -15.938rem + 100vw, 8.438rem);
  /* height: 135.2px; */
  top: 263px;
  left: 92px;
}

.top-mv__tile-item-004 {
  position: absolute;
  /* width: 124.03px; */
  width: clamp(7.438rem, -0.375rem + 33.33vw, 7.75rem);
  /* height: 106.26px; */
  top: 406px;
  left: 0;
}

.top-mv__tile-item-005 {
  position: absolute;
  /* width: 82.54px; */
  width: clamp(4.813rem, -3rem + 33.33vw, 5.125rem);
  /* height: 131.78px; */
  bottom: 15px;
  right: 0;
}

.top-mv__tile-swiper--001 {
  position: absolute;
  width: 136px;
  top: 9px;
  right: 0;
  border-radius: 6px;
  overflow: hidden;
}

.top-mv__tile-swiper--001 img {
  object-fit: cover;
  width: 136px;
  height: 158px;
}

.top-mv__tile-swiper--002 {
  position: absolute;
  width: 83px;
  top: 264px;
  left: 0;
  border-radius: 6px;
  overflow: hidden;
}

.top-mv__tile-swiper--002 img {
  object-fit: cover;
  width: 83px;
  height: 133px;
}

.top-mv__tile-swiper--003 {
  position: absolute;
  width: 135.25px;
  top: 327px;
  right: 0;
  border-radius: 6px;
  overflow: hidden;
}

.top-mv__tile-swiper--003 img {
  object-fit: cover;
  width: 135.25px;
  height: 71.21px;
}

.top-mv__tile-swiper--004 {
  position: absolute;
  width: 146.1px;
  bottom: -10px;
  right: 91px;
  border-radius: 6px;
  overflow: hidden;
}

.top-mv__tile-swiper--004 img {
  object-fit: cover;
  width: 146.1px;
  height: 157.49px;
}

@media screen and (max-width: 389px) {
  .top-mv__tile-item-001 {
    top: 47px;
  }
  .top-mv__tile-item-005 {
    bottom: 24px;
  }

  .top-mv__tile-swiper--004 {
    right: 83px;
  }
}

.top-mv__date {
  margin-top: 28px;
}

.top-mv__anker {
  margin-top: 24px;
  padding: 0 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 8px;
  position: relative;
}
.top-mv__anker a {
  position: relative;
  display: block;
  z-index: 1;
}

.top-mv__anker a img {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.top-mv__anker a:hover img {
  transform: translateY(5px);
}

.top-mv__anker a.top-mv__anker-001:after {
  content: '';
  position: absolute;
  background-image: url(../../img/top/mv-anker-bg-001.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -5px;
}

.top-mv__anker a.top-mv__anker-002:after {
  content: '';
  position: absolute;
  background-image: url(../../img/top/mv-anker-bg-002.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -5px;
}

.top-bg-navy {
  background-image: url(../../img/top/top-bg-navy.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* ============
top-pick-up
=============== */

/* 共通キーフレーム（順方向） */
@keyframes swing-steps-forward {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25deg);
  }
}

/* swing-001用（順方向） */
.swing-001 {
  transform-origin: center center; /* ここは調整可能 */
  animation: swing-steps-forward 2400ms steps(2, end) infinite;
}

/* 共通キーフレーム（逆方向） */
@keyframes swing-steps-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-25deg);
  }
}

/* swing-002用（逆方向） */
.swing-002 {
  transform-origin: center center;
  animation: swing-steps-reverse 2400ms steps(2, end) infinite;
}

.top-pick-up {
  position: relative;
}

.top-pick-up__deco-001 {
  position: absolute;
  right: -15px;
  top: 0;
  width: 123.32px;
}
.top-pick-up__deco-002 {
  position: absolute;
  left: -10px;
  top: 60px;
  width: 99px;
}

.top-pick-up__inner {
  padding-top: 70px;
  padding: 42px 20px 20px;
}

.top-pick-up__title {
  margin-bottom: 37px;
}

.top-pick-up__item {
  margin-bottom: 48px;
}

.top-pick-up__img {
  position: relative;
}

.top-pick-up__img::after {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 97%;
  height: 100%;
  border-radius: 6px;
  right: 0;
  top: 8px;
}

.top-pick-up__img img {
  padding-right: 8px;
  position: relative;
  z-index: 1;
  border-radius: 7px 14px 14px 7px;
}

.top-pick-up__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}

.top-pick-up__textbox {
}

.top-pick-up__textbox p {
  height: 24px;
  padding: 0 20px;
  border-radius: 12px;
  background: #e866bc;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}

.top-pick-up__textbox--purple {
  background: #7d40c2 !important;
}
.top-pick-up__textbox--skyblue {
  background: #27bfed !important;
}
.top-pick-up__textbox--red {
  background: #d4302f !important;
}

.top-pick-up__textbox h3 {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #fff;
}

.top-pick-up__arrow img {
  max-width: 40px;
}

/* ============
 top-guest
=============== */

.top-guest {
  padding-bottom: 85px;
  position: relative;
}

.top-guest__deco-001 {
  position: absolute;
  right: 23px;
  top: -15px;
  width: 74px;
}

.top-guest__deco-002 {
  position: absolute;
  left: 20px;
  top: 5px;
  width: 85.63px;
}

.top-guest__title {
  margin-bottom: 34px;
}

/* 共通 */
.top-guest__slider {
  width: 390px; /* PCでもSPでも中央固定 */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.top-guest__slide-inner {
  display: flex;
  width: max-content;
}

.top-guest__slider--001 {
  margin-bottom: 14px;
}

.top-guest__slide-img {
  height: 140px;
  object-fit: cover;
  margin-right: var(--gap, 0px);
}

/* ▼001：459px幅、左へスライド */
.top-guest__slider--001 .top-guest__slide-inner {
  --img-w: 610px;
  --gap: 13px;
  --speed: 11s;
  animation: marquee-left var(--speed) linear infinite;
}

.top-guest__slider--001 .top-guest__slide-img {
  flex: 0 0 var(--img-w);
  width: var(--img-w);
}

/* ▼002：612px幅、右へスライド */
.top-guest__slider--002 .top-guest__slide-inner {
  --img-w: 755px;
  --gap: 13px;
  --speed: 14s;
  animation: marquee-right var(--speed) linear infinite;
}

.top-guest__slider--002 .top-guest__slide-img {
  flex: 0 0 var(--img-w);
  width: var(--img-w);
}

/* アニメーション定義 */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * (var(--img-w) + var(--gap))));
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(calc(-1 * (var(--img-w) + var(--gap))));
  }
  to {
    transform: translateX(0);
  }
}

.top-guest__btn {
  position: relative;
  display: block;
  z-index: 1;
  max-width: 176px;
  margin: 0 auto;
  margin-top: 45px;
}

.top-guest__btn img {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.top-guest__btn:hover img {
  transform: translateY(5px);
}

.top-guest__btn:after {
  content: '';
  position: absolute;
  background-image: url(../../img/top/top-guest-btn-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -5px;
}

/* ============
 top-bg-ylw 
=============== */

.top-bg-ylw {
  background: #f3c026;
}

/* ============
top-map
=============== */
.top-map {
  padding-top: 103px;
  position: relative;
}

.top-map__deco-001 {
  position: absolute;
  right: 12px;
  top: 32px;
  width: 63.55px;
  pointer-events: none;
}

.top-map__deco-002 {
  position: absolute;
  left: 19px;
  top: -32px;
  width: 137px;
  pointer-events: none;
}

.top-map__deco-003 {
  position: absolute;
  left: -600px;
  top: 130px; /* ← 少し下から */
  width: 498.25px;
  opacity: 0;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1), top 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
  pointer-events: none;
}

/* スクロールでクラスが付与された時 */
.top-map__deco-003.is-active {
  left: -101px;
  top: -101px; /* 最終位置 */
  opacity: 1;
}

.top-map__copy {
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  color: #fff;
  /*padding-left: 27px;*/
  margin-top: 40px;
  text-align: center;
}

.top-map__map {
  margin-left: 10px;
  padding-right: 10px;
  padding-top: 16px;
  padding-bottom: 24px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #e95a3e #ffffff;
}

.js-scrollable {
  cursor: grab;
  user-select: none;
}
.js-scrollable.is-grabbing {
  cursor: grabbing;
}
img[usemap] {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Chrome/Edge/Safari */
.top-map__map::-webkit-scrollbar {
  height: 8px;
  background: #fff;
}
.top-map__map::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 8px;
}
.top-map__map::-webkit-scrollbar-thumb {
  background: #e95a3e;
  border-radius: 8px;
}

.top-map__map-wrap {
  width: 952.89px;
}

.top-map__map-wrap-se {
  display: none;
}

@media screen and (max-width: 400px) {
  .top-map__map-wrap {
    width: 600px;
  }

  .top-map__map-wrap-main {
    display: none;
  }

  .top-map__map-wrap-se {
    display: block;
  }
}
/* ============
top-stage
=============== */

.top-stage {
  padding-top: 68px;
  padding-bottom: 65px;
  position: relative;
}

.top-stage__deco-001 {
  position: absolute;
  right: -25px;
  top: 128px;
  width: 138.32px;
}

.top-stage__deco-002 {
  position: absolute;
  left: 8px;
  top: -5px;
  width: 95.07px;
}

.top-stage__deco-003 {
  position: absolute;
  right: -25px;
  top: 453px;
  width: 99.6px;
}

.top-stage__deco-004 {
  position: absolute;
  left: -54px;
  bottom: 36px;
  width: 200.18px;
}

.top-stage__deco-005 {
  position: absolute;
  left: -42px;
  top: 820px;
  width: 138.32px;
}

.top-stage__deco-006 {
  position: absolute;
  right: -25px;
  top: 550px;
  width: 95.07px;
}

.top-stage__deco-007 {
  position: absolute;
  right: -84px;
  bottom: 310px;
  width: 200.18px;
}

.top-stage__inner {
  padding: 0 19px;
}

.top-stage__img {
  position: relative;
  z-index: 1;
}

.top-stage__img--001 {
  margin-top: 37px;
}

.top-stage__img--002 {
  margin-top: 53px;
}

.top-stage__btn {
  position: relative;
  display: block;
  z-index: 1;
  max-width: 238px;
  margin: 0 auto;
  margin-top: 89px;
}

.top-stage__btn img {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.top-stage__btn:hover img {
  transform: translateY(5px);
}

.top-stage__btn:after {
  content: '';
  position: absolute;
  background-image: url(../../img/top/top-stage-btn-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -5px;
}

/* ============
top-bg-pink
=============== */
.top-bg-pink {
  background: #fce2da;
  overflow: hidden;
  position: relative;
}

.top-bg-pink__deco-001 {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 481.88px;
}

.top-bg-pink__deco-002 {
  position: absolute;
  bottom: -30px;
  left: -53px;
  width: 220.79px;
}
/* ============
top-tv
=============== */
.top-tv {
  padding-top: 68px;
  padding-bottom: 82px;
  position: relative;
}

.top-tv__deco-001 {
  position: absolute;
  right: -26px;
  top: 106px;
  width: 124.44px;
}

.top-tv__deco-002 {
  position: absolute;
  left: -16px;
  top: 329px;
  width: 117.21px;
}

.top-tv__inner {
  padding: 0 19px;
}

.top-tv__item {
  margin-top: 45px;
}

.top-tv__item-title--001 {
  max-width: 71px;
  margin: 0 auto;
}

.top-tv__item-title--002 {
  max-width: 118px;
  margin: 0 auto;
}

.top-tv__item-title {
  margin-bottom: 14px;
}

.top-tv__item-grid {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
}

.top-tv__item-grid-title {
  background: #f8c7c3;
  padding-top: 32px;
  padding-bottom: 24px;
}

.top-tv__item-grid-title img {
  max-width: 110px;
  margin: 0 auto;
}

.top-tv__item-grid-text {
  padding-left: 11px;
  border: 1px solid #f8c7c3;
  height: 100%;
  display: flex;
  align-items: center;
}

.top-tv__item-grid-text p {
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #463e42;
}

.top-tv__item-grid--bottom {
  border-top: 1px solid #fad9ce;
}

/* ============
top-ambassador
=============== */

.top-ambassador {
  padding-bottom: 57px;
  position: relative;
}

.top-ambassador__deco {
  position: absolute;
  top: 23px;
  right: -26px;
  width: 176.76px;
}

.top-ambassador__item {
  position: relative;
  z-index: 1;
}

.top-ambassador__circle {
  position: absolute;
}

.top-ambassador__circle-round {
  width: 93.37px;
  position: relative;
  z-index: 2;
}

.top-ambassador__circle-round img:nth-child(2) {
  width: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-ambassador__circle--001 {
  bottom: -39px;
  left: 45px;
}
.top-ambassador__circle--002 {
  bottom: 34px;
  right: 34px;
}

/* 回転アニメーション定義 */
@keyframes rotate-loop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 丸い画像だけに適用 */
.top-ambassador__circle-round img:first-child {
  animation: rotate-loop 10s linear infinite;
  display: block; /* transformの基準を安定させるため */
}

.top-ambassador__item--001 {
  margin-top: 25px;
  margin-bottom: 50px;
}

.top-ambassador__img--001 img {
  max-width: 291px;
  margin-right: 30px;
  margin-left: auto;
}

.top-ambassador__img--002 img {
  max-width: 344.69px;
  margin-right: 24px;
  margin-left: auto;
}

.top-bg-green {
  background-color: #65af37;
}

/* ============
.top-outline
=============== */

.top-outline {
  padding-top: 48px;
}

.top-outline-bg {
  position: relative;
  z-index: 1;
}
.top-outline-bg-02 {
  position: relative;
  z-index: 1;
  /* top: 17px; */
}

.top-outline__inner {
  padding: 0 19px;
}

.top-outline__copy p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  color: #fff;
  margin: 18px 0 30px;
}

.top-outline__table {
  border-top: 1px solid #e6e6e6;
}

.top-outline__table-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid #e6e6e6;
}

.top-outline__table-title {
  background-color: #4e9224;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-outline__table-title h3 {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.top-outline__table-text p {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 15px 0 15px;
  padding-left: 31px;
}

.top-outline__notice {
  margin-top: 26px;
}

.top-outline__notice p {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  margin-top: 18px;
}
/* ============
top-access
=============== */

.top-access {
  padding-top: 56px;
  padding-bottom: 46px;
}

.top-access__inner {
  padding: 0 19px;
}

.top-access__map {
  margin-top: 28px;
}

.top-access__map-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4e9224;
  gap: 5px;
  padding: 10px 0;
}

.top-access__map-title img {
  max-width: 13px;
}

.top-access__map-title h3 {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.top-access__map-iframe iframe {
  width: 100%;
  height: 176px;
}

.top-access__info {
  margin-top: 20px;
}

.top-access__info--bottom {
  margin-top: 28px;
}

.top-access__info-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 11px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 7px;
}

.top-access__info-title img {
  max-width: 20px;
}
.top-access__info-title p {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.top-access__info-text {
  padding: 10px 31px 14px;
}
.top-access__info-text p {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.top-access__notice {
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-top: 21px;
}

/* ============
top-partners
=============== */
.top-partners {
  background-image: url(../../img/top/top-partners-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  position: relative;
  /* top: -18px; */
}

.top-partners__inner {
  padding: 60px 19px 0;
}

.top-partners__grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 15px;
}

.top-partners__grid-medium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 8px;
  margin: 30px 0;
}

.top-partners__grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 5px;
}

.top-partners__slider {
  width: 390px; /* PCでもSPでも中央固定 */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 47px;
}

.top-partners__slide-inner {
  display: flex;
  width: max-content;
}

.top-partners__slide-img {
  height: 62px;
  object-fit: cover;
  margin-right: var(--gap, 0px);
}

/* ▼001：459px幅、左へスライド */
.top-partners__slider--001 .top-partners__slide-inner {
  --img-w: 961px;
  --gap: 0px;
  --speed: 20s;
  animation: slide-left var(--speed) linear infinite;
}

.top-partners__slider--001 .top-partners__slide-img {
  flex: 0 0 var(--img-w);
  width: var(--img-w);
}

/* アニメーション定義 */
@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * (var(--img-w) + var(--gap))));
  }
}
