@charset "UTF-8";

:root {
  --color-blue: #4A84B4;
  --color-green: #046435;
  --color-navy: #2A4F98;
  --color-orange: #DF7524;
  --color-pink: #F2CABD;
  --color-yellow: #E5F257;
  --color-white: #F9F8F3;
  --color-dark: #2D3A4D;
  --max-width: 1920px;
  --z-index-header: 100;
  --z-index-ticket: 50;
  --z-index-modal: 1000;
  --z-index-ticket-top: 9999;
  --font-en: "nimbus-sans",sans-serif;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 0;
}


/* スクロールアニメーションの速度調整 */
* {
  scroll-margin-top: 0;
}

/* より滑らかなスクロール */
html, body {
  scroll-margin: 0;
  scroll-padding: 0;
}

body {
  font-family:"游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  background: var(--color-white);
}
.js-fade-in {
  opacity: 0;
  transform: translateY(15px) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  perspective: 1000px;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-fade-in.is-animated {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}
video {
  max-width: 100%;
  vertical-align: top;
}
img {
  height: auto;
  vertical-align: top;
}
iframe {
  vertical-align: top;
  border: none;
}
.main__inner {
  overflow: hidden;
}

/*-----------------------------------------------
* Header
*-----------------------------------------------*/
.header {
  height: 46px;
}
.header__inner {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 410px 1fr;
  align-items: center;
  width: 100%;
  z-index: var(--z-index-header);
  background-color: var(--color-dark);
  padding: 15px 20px;
}
.header__nav {
  position: fixed;
  top: 46px;
  right: -100%;
  height: calc(100vh - 46px);
  height: calc(100dvh - 46px);
  padding: 125px 90px;
  background-color: var(--color-white);
  z-index: var(--z-index-header);
  transition: .5s;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 99;
}
.header__nav.is-active {
  right: -1%;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.header__nav-item {
  line-height: 1;
}
.header__nav-link {
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  cursor: pointer;
}
span.header__nav-link {
  color: #92BBD6;
}
.nav-footer {
  margin-top: 35px;
}
.nav-footer__sns-list {
  display: flex;
  gap: 12px;
}
.nav-footer__sns img {
  width: 25px;
}
.header__nav-list--mid {
  margin-top: 20px;
}
.header__nav-list--bottom {
  margin-top: 44px;
}
.header__nav-list--mid .header__nav-link {
  font-size: 1.6rem;
  line-height: 1.4;
}
.header__nav-list--bottom {
  gap: 14px;
}
.header__nav-list--bottom .header__nav-link {
  font-size: 2.4rem;
}
.nav-footer__list {
  display: none;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__left-item {
  list-style: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-white);
}
.header__left-link {
  padding: 5px 25px;
  border: 1px solid var(--color-white);
  line-height: 1.1;
  border-radius: 13px;
  transition: all 0.3s ease;
}
.header__left-link:hover,
.header__left-link.is-active {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: transparent;
}
.header__left-item:first-child .header__left-link {
  font-family: var(--font-en);
}
.header__logo {
  place-content: center;
}
.header__logo-link {
  display: grid;
  place-content: center;
}
.header__logo-img {
  display: grid;
  place-content: center;
}
/* Hamburger Button */
.header__hamburger {
  display: grid;
  place-content: center;
  margin-left: auto;
}
.header__hamburger-btn {
  background: none;
  border: none;
  width: 23px;
  height: 16px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.header__hamburger-line {
  display: block;
  width: 23px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header__hamburger-line:nth-child(1) {
  top: 2.34px;
}
.header__hamburger-line:nth-child(2) {
  top: 7.956px;
}
.header__hamburger-line:nth-child(3) {
  top: 13.573px;
}
/* Active state (X) */
.header__hamburger-btn[aria-expanded="true"] .header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger-btn[aria-expanded="true"] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger-btn[aria-expanded="true"] .header__hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 1035px) {
  .header__inner {
    grid-template-columns: auto min-content;
  }
  .header__left {
    display: none;
  }
  .header__logo {
    max-width: 265px;
  }
  .header__logo-link {
    place-content: flex-start;
  }
  .header__nav {
    width: 100%;
    padding: 106px 0 106px 70px;
  }
  .header__nav.is-active {
    right: 0;
  }
  .header__nav .nav-footer__list {
    position: fixed;
    display: flex;
    gap: 12px;
    align-items: center;
    right: -100%;
    bottom: 0;
    transition: .5s;
    width: 100%;
    padding: 15px;
    background-color: var(--color-dark);
  }
  .header__nav.is-active .nav-footer__list {
    right: 0%;
  }
  .nav-footer__link {
    padding: 6px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--font-en);
    color: var(--color-white);
    letter-spacing: 0.1em;
    border: 1px solid var(--color-white);
    border-radius: 13px;
    line-height: 1;
  }
  .nav-footer__item:first-child .nav-footer__link {
    font-family: var(--font-en);
  }
  .nav-footer__item.is-active .nav-footer__link,
  .nav-footer__item:hover .nav-footer__link {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: transparent;

  }
}
/*-----------------------------------------------
* KV
*-----------------------------------------------*/
.kv {
  position: relative;
  background-color: var(--color-blue);
  padding: 48px;
  overflow: hidden;
}
.kv__inner {
  display: flex;
  align-items: center;
  gap: 3.66vw;
  max-width: var(--max-width);
}
.kv__video {
  width: 57.54vw;
  aspect-ratio: 16 / 9;
  opacity: 0;
  transform: translateY(30px);
}
.kv__video.is-animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.kv__title-text {
  width: 24.305vw
}
.kv__text {
  width: 53.148vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.kv__text.is-animated {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.kv__text img {
  width: 100%;
}
.kv__title {
  position: relative;
  width: 24.305vw;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}
.kv__title.is-animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.kv__title:before {
  content: "";
  position: absolute;
  top: -5.124vw;
  left: -5.857vw;
  width: 10.615vw;
  height: 10.615vw;
  background-image: url(../../../img/special/feelearth2025/bg_kv_fes.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: tiltAnimation 6s steps(2, end) infinite;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
@keyframes tiltAnimation {
  0%, 25% {
    transform: rotate(0deg);
  }
  25.1%, 50% {
    transform: rotate(25deg);
  }
  50.1%, 75% {
    transform: rotate(25deg);
  }
  75.1%, 100% {
    transform: rotate(0deg);
  }
}
.kv__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10.249vw;
  width: 11.054vw;
  height: 11.054vw;
  background-image: url(../../../img/special/feelearth2025/bg_kv_joinus.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  animation: tiltAnimation 6s steps(2, end) infinite 1s;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: all 0.8s ease-out;
}
.kv__title.is-icon-animated-1:before {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.kv__title.is-icon-animated-2:after {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.kv__title-text {
  width: 24.305vw;
}
.kv__title-text:after {
  content: "";
  position: absolute;
  bottom: -5.857vw;
  right: -5.857vw;
  width: 12.738vw;
  height: 7.833vw;
  background-image: url(../../../img/special/feelearth2025/bg_kv_cate.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  animation: tiltAnimation 6s steps(2, end) infinite 2s;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: all 0.8s ease-out;
}
.kv__title-text.is-icon-animated-3:after {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.kv__title img {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .kv__text {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    padding: 57px 30px 44px;
  }
  .kv__inner {
    flex-direction: column;
    align-items: normal;
    gap: 7.209vw;
    padding: 0 10px;
  }
  .kv__title {
    width: 61.163vw;
    order: -1;
  }
  .kv__video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .kv__title:before {
    width: 28.605vw;
    height: 28.605vw;
    top: 0px;
    right: -20.93vw;
    left: auto;
    transform: rotate(80deg);
  }
  .kv__title:after {
    width: 29.535vw;
    height: 29.535vw;
    bottom: -11.628vw;
    right: -26.744vw;
  }
  .kv__title-text {
    width: auto;
  }
  .kv__title-text:after {
    width: 34.186vw;
    height: 20.93vw;
    right: -8.14vw;
    bottom: -23.256vw;
  }
}
/*-----------------------------------------------
* Navigation
*-----------------------------------------------*/
.main__nav {
  padding: 26px 0;
}
.main__nav-list {
  display: flex;
  justify-content: center;
  gap: 29px;
}
.main__nav-item {
  flex-shrink: 0;
}
.main__nav-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  white-space: nowrap;
  cursor: pointer;
}
span.main__nav-link {
  color: #92BBD6;
}
.main__nav-text {
  margin-top: 13px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;

  letter-spacing: 0.1em;
  font-family: var(--font-en);
}
.main__nav-link {
  perspective: 800px;
  cursor: pointer;
}
.main__nav-link img {
  transition: transform 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .main__nav-link:hover img {
    transform: rotateY(360deg);
  }
  span.main__nav-link:hover img {
    transform: none;
  }
}
.main__nav-link img.is-flipping {
  animation: flipAnimation 0.6s ease-in-out;
}
@keyframes flipAnimation {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 1023px) {
  .main__nav {
    position: relative;
    margin-top: -20px;
    padding: 0 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main__nav::-webkit-scrollbar {
    display: none;
  }
  .main__nav-list {
    min-width: fit-content;
    justify-content: flex-start;
    padding: 0 30px;
  }
  .main__nav-item:last-child {
    padding-right: 30px;
  }
}
/*-----------------------------------------------
* About
*-----------------------------------------------*/
.about {
  padding: 77px 0;
  text-align: center;
}
.about__title {
  position: relative;
}
.about__title:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.about__subtitle {
  margin-top: 41px;
  font-size: 2rem;
  font-weight: bold;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 43px;
}
.about__content-text {
  font-size: 1.4rem;
  line-height: 2.14;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 58px 0 0;
  }
  .about__title:after {
    width: 30px;
  }
  .about__title img {
    max-width: 179px;
  }
  .about__subtitle {
    margin-top: 70px;
    font-size: 1.8rem; 
  }
  .about__content {
    margin-top: 40px;
  }
}
/*-----------------------------------------------
* Infinite Scroll
*-----------------------------------------------*/
.infinity-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.infinity-scroll__list {
  display: flex;
  align-items: center;
  gap: 46px;
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.infinity-scroll__item {
  flex-shrink: 0;
  white-space: nowrap;
}
.infinity-scroll__item-img {
  display: block;
  height: auto;
  max-height: 100px;
}
@media screen and (max-width: 768px) {
  .infinity-scroll {
    padding: 60px 0;
  }
}
/*-----------------------------------------------
* Special Experiences
*-----------------------------------------------*/
.special {
  padding: 117px 30px 122px;
}
.special__note {
  margin-top: 67px;
  font-size: 1.2rem;
  text-align: center;
}
.special__header {
  text-align: center;
}
.special__title {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
}
.special__title:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.experience-header {
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
}
.experience-header {
  display: grid;
  place-content: center;
  height: 70px;
}
.experience-header__text {
  font-family: var(--font-en);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.1875;
}
.special__subtitle {
  margin-top: 46px;
  font-weight: bold;
  line-height: 1.12;
}
.special__list {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 67px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 50px;
}
.special__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  flex-shrink: 0;
}
.special__item:first-child:after {
  content: "";
  position: absolute;
  top: -40px;
  left: -50px;
  width: 135px;
  height: 88px;
  background-image: url(../../../img/special/feelearth2025/bg_beat.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.special__list.is-animated .special__item:first-child:after {
  animation: fade-in-out 8s ease-in-out infinite;
}
.special__item:nth-child(2):after {
  content: "";
  position: absolute;
  top: 180px;
  right: -40px;
  width: 135px;
  height: 135px;
  background-image: url(../../../img/special/feelearth2025/bg_discover.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.special__list.is-animated .special__item:nth-child(2):after {
  animation: fade-in-out 8s ease-in-out infinite 1.5s;
}
.special__item:nth-child(3):after {
  content: "";
  position: absolute;
  top: -52px;
  right: -40px;
  width: 129px;
  height: 81px;
  background-image: url(../../../img/special/feelearth2025/bg_gowild.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.special__list.is-animated .special__item:nth-child(3):after {
  animation: fade-in-out 8s ease-in-out infinite 3s;
}
.special__item:nth-child(4):after {
  content: "";
  position: absolute;
  top: 198px;
  right: -80px;
  width: 138px;
  height: 76px;
  background-image: url(../../../img/special/feelearth2025/bg_tasteit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.special__list.is-animated .special__item:nth-child(4):after {
  animation: fade-in-out 8s ease-in-out infinite 4.5s;
}
@keyframes fade-in-out {
  0%, 10% {
    opacity: 0;
  }
  20%, 40% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.special__item-text {
  margin: 12px 0 0;
  font-size: 1.2rem;
  text-align: justify;
  word-break: break-all;
}
.special__item-img {
  margin-top: 25px;
}
.special__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  gap: 13px;
  width: 100%;
  border: 1px solid var(--color-navy);
  border-radius: 120px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 15px 0;
  line-height: 1;
  font-family: var(--font-en);
  transition: all 0.3s;
}
.special__item-link:hover {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}
.special__item-link:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_white.svg);
}
.special__item-link:before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background-image: url(../../../img/special/feelearth2025/arrow_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media screen and (max-width: 768px) {
  .special {
    padding: 0 0 80px;
  }
  .special__title {
    font-size: 2.4rem;
  }
  .special__subtitle {
    font-size: 1.4rem;
  }
  .special__title:after {
    width: 30px;
  }
  .special__list {
    margin-top: 53px;
  }
}
@media screen and (max-width: 1023px) {
  .special {
    padding: 50px 0 100px;
  }
  .special__list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 30px;
    padding-right: 30px;
    max-width: none;
    margin: 0;
    justify-content: flex-start;
  }
  .special__list::-webkit-scrollbar {
    display: none;
  }
  .special__item {
    min-width: 230px;
    width: 230px;
  }
  .special__item:first-child:after {
    top: -50px;
    left: -40px;   
  }
  .special__item:nth-child(4):after {
    right: -20px;
  }
}
/*-----------------------------------------------
* Schedule
*-----------------------------------------------*/
.schedule {
  padding: 111px 30px 0;
  background-color: #fff;
}
.schedule__title {
  position: relative;
  text-align: center;
}
.schedule__title:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.schedule__subtitle {
  margin-top: 88px;
  padding: 24px 0;
  font-size: 2rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  line-height: 1;
  text-align: center;
}
.schedule__subtitle:last-of-type {
  margin-top: 98px;
}
.schedule__inner {
  max-width: 936px;
  margin: 0 auto;
}
.schedule__content img {
  margin-top: 55px;
}

.schedule__content--jeep {
  position: relative;
}
.schedule__content--jeep:before {
  content: "";
  position: absolute;
  top: 72%;
  right: 20%;
  width: 168px;
  height: 113px;
  background-image: url(../../../img/special/feelearth2025/bg_jeep.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}
.schedule__content--jeep.is-jeep-animated:before {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .schedule {
    padding: 100px 30px 0;

  }
  .schedule__title {
    max-width: 282px;
    margin: 0 auto;
  }
  .schedule__content {
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
  }
  .schedule__content::-webkit-scrollbar {
    display: none;
  }
  .schedule__content img {
    margin-top: 40px;
    max-width: 140%;
    height: auto;
  }
  .schedule__content--jeep:before {
    width: 63px;
    height: 34px;
    top: 75%;
    right: 2%;
    transform: translateX(50px);
  }
  .schedule__subtitle:last-of-type {
    margin-top: 70px;
  }
}

/*-----------------------------------------------
* Recommend
*-----------------------------------------------*/
.recommend {
  padding: 100px 30px 0;
  background-color: #fff;
}
.recommend__inner {
  max-width: 936px;
  margin: 0 auto;
}
.recommend__title {
  position: relative;
  font-size: 3.2rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.recommend__title:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.recommend__subtitle {
  margin-top: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15em;
}
.recommend__text {
  margin-top: 32px;
  text-align: center;
  font-size: 1.4rem;
}
.recommend__text a {
  text-decoration: underline;
}
.recommend__content {
  position: relative;
}
.recommend__content:before {
  content: "";
  display: block;
  position: absolute;
  top: -150px;
  left: -90px;
  width: 160px;
  height: 205px;
  background-image: url(../../../img/special/feelearth2025/bg_osusume.png);
  background-size: cover;
  z-index: 1;
  opacity: 0;
  transform: translate(-30px, 30px);
  transition: all 0.6s ease-out;
}
.recommend__content.is-animated:before {
  opacity: 1;
  transform: translate(0, 0);
}
.recommend__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 67px;
}
.recommend__item {
  height: 546px;
  padding: 47px 32px 31px;
  background-image: url(../../../img/special/feelearth2025/bg_phone.svg);
  background-size: cover;
  text-align: center;
}
.recommend__item-inner {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
}
.recommend__item-logo {
  margin: 0 auto;
}
.recommend__plan {
  margin-top: 22px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  line-height: 1;
}
.recommend__plan-title {
  margin-top: 11px;
  padding: 19px 0;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.recommend__plan-image {
  margin-top: 22px;
}
.recommend__plan-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: auto;
  padding: 15px 0;
  font-size: 1.2rem;
  border: 1px solid var(--color-navy);
  border-radius: 120px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 1;
  transition: all 0.3s;
}
.recommend__plan-link:before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background-image: url(../../../img/special/feelearth2025/arrow_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.recommend__plan-link:hover {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}
.recommend__plan-link:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_white.svg);
}
.recommend__note {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 700px;
  width: 48vw;
  margin: 48px auto 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-navy);
  text-align: justify;
  word-break: break-all;
  line-height: normal;
}
.recommend__note-item {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  letter-spacing: 0;
}
.recommend__note-item:before {
  content: "\25CF";
}
@media screen and (max-width: 1023px) {
  .recommend {
    padding-top: 70px;
    padding-bottom: 300px;
  }
  .recommend__title {
    font-size: 2.4rem;
  }
  .recommend__title:before {
    bottom: -18px;
  }

  .recommend__subtitle {
    margin-top: 42px;
    font-size: 1.4rem;
  }
  .recommend__text {
    margin-top: 37px;
    font-size: 1.3rem;
  }
  .recommend__content:before {
    display: none;
  }
  .recommend__list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 53px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: none;
    margin-left: -30px;
    margin-right: -30px;
    justify-content: flex-start;
  }
  .recommend__list::-webkit-scrollbar {
    display: none;
  }
  .recommend__item {
    min-width: 236px;
    width: 236px;
    height: 461px;
    padding: 47px 26px 31px;
    flex-shrink: 0;
  }
  .recommend__item:last-child {
    padding-right: 30px;
  }
  .recommend__item-logo {
    max-width: 124px;
  }
  .recommend__plan {
    margin-top: 19px;
    font-size: 1.2rem;
  }
  .recommend__plan-title {
    margin-top: 9px;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .recommend__plan-link {
    margin-top: 18px;
    padding: 13px 0;
    font-size: 1.1rem;
  }
  .recommend__note {
    margin-top: 40px;
    width: 100%;
  }
}
@media screen and (min-width: 820px) {
  .recommend__list {
    justify-content: center;
  }
}

/*-----------------------------------------------
* Buy
*-----------------------------------------------*/
.buy {
  padding: 103px 0 98px;
}
.buy__title {
  text-align: center;
  font-size: 4.4rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
.buy__content {
  position: relative;
  max-width: 918px;
  margin: 0 auto;
}
.buy__content:before {
  content: "";
  position: absolute;
  top: -112px;
  left: -75px;
  width: 151px;
  height: 151px;
  background-image: url(../../../img/special/feelearth2025/bg_buy_sale.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
}
.buy__content--jeep:after {
  content: "";
  position: absolute;
  top: -82px;
  right: -75px;
  width: 168px;
  height: 113px;
  background-image: url(../../../img/special/feelearth2025/bg_jeep.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(200px);
  transition: all 1s ease-out;
}
.buy__content--hammock:after {
  content: "";
  position: absolute;
  top: -82px;
  right: -75px;
  width: 158px;
  height: 123px;
  background-image: url(../../../img/special/feelearth2025/bg_hammock_01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out;
}
@keyframes hammockSwitch {
  0%, 49% {
    background-image: url(../../../img/special/feelearth2025/bg_hammock_01.png);
  }
  50%, 100% {
    background-image: url(../../../img/special/feelearth2025/bg_hammock_02.png);
  }
}
.buy__content--hammock.is-animated:after {
  animation: hammockSwitch 4s infinite;
  animation-delay: 1s;
}
.buy__content.is-animated:after {
  opacity: 1;
  transform: translateX(0);
}
.buy__note {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 700px;
  width: 48vw;
  margin: 32px auto 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: justify;
  word-break: break-all;
}
.buy__note-item {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  letter-spacing: 0;
  line-height: normal;
}
.buy__note-item:before {
  content: "\25CF";
}
.buy__note-link {
  text-decoration: underline;
  cursor: pointer;
}
.buy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 41px;
}
.buy__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 278px;
  min-width: 278px;
  padding: 30px;
  background-color: #fff;
  font-weight: bold;
  flex-shrink: 0;
}
.buy__item--soldout:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: pink;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(45, 58, 77, 0.85);
}
.buy__item--soldout:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  content: "SOLD OUT！";
  padding: 15px 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
}
.buy__subtitle {
  font-weight: bold;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
}
.buy__list {
  margin-top: 58px;
}
.buy__text {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #fff;
}
.ticket-header__text {
  margin-top: 10px;
  font-family: var(--font-en);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.ticket-header__title {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}
.ticket-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ticket-body {
  height: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-navy);
}
.ticket-body__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 13px 0;
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 120px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--color-dark);
  gap: 15px;
  transition: all 0.3s;
}
.ticket-body__button:hover {
  background: #D5F276;
  color: var(--color-dark);
}
.ticket-body__button:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_dark.svg);
}
.ticket-body__button:before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background-image: url(../../../img/special/feelearth2025/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ticket-body__1day {
  height: 100%;
  display: grid;
  place-content: center;
}
.ticket-body__1day-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.ticket-body__1day-item {
  text-align: center;
}
.ticket-body__1day-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.ticket-body__1day-price {
  margin-top: 10px;
  font-size: 2.8rem;
  font-family: var(--font-en);
  line-height: 1.2;
}
.ticket-body__title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid var(--color-navy);
  border-radius: 20px;
  padding: 8px 0;
  line-height: 1;
}
.ticket-body__title:not(:first-child) {
  margin-top: 16px;
}

.ticket-body__area {
  display: flex;
  gap: 4px;
}
.ticket-body__area--orange .ticket-body__area-button {
  background: var(--color-orange);
}
.ticket-body__area--blue .ticket-body__area-button {
    background: var(--color-navy);
}
.ticket-body__area--green .ticket-body__area-button {
    background: var(--color-green);
}
.ticket-body__area-text {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.ticket-body__area-text:after {
  content: ":";
  margin-top: -2px;
  padding: 0 4px;
}
.ticket-body__area-button {
  cursor: pointer;
  display: grid;
  place-content: center;
  width: 21px;
  height: 21px;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: var(--font-en);
  border-radius: 50%;
  color: #fff;
  background: gray;
  line-height: 1;
}
.ticket-body__area-wrapper {
  display: flex;
  margin-top: 10px;
}
.ticket-body__price {
  display: flex; 
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;

}
.ticket-body__price-item {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: center;
  line-height: 1;
}
.ticket-body__price-text {
  font-size: 1.2rem;
  font-weight: bold;
}
.ticket-body__price-text:first-child {
  letter-spacing: 0.08em;
}
.ticket-body__price-text:last-child {
  font-size: 1.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
}
.price-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}
.price-list__text {
  font-size: 1.2rem;
}
.price-list__text:first-child {
  width: 80px;
}
.price-list {
  margin-top: 7px;
}
.price-list__text:last-child {
  font-size: 1.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1023px) {
  .buy--jeep {
    padding: 87px 0 158px;
  }
  .buy--hammock {
    padding: 87px 0 280px;

  }
  .buy__content--jeep:after {
    top: auto;
    right: 95px;
  }
  .buy__content--hammock:after {
    top: auto;
    right: 50%;
    transform: translateX(150px);
    margin-top: 80px;
  }
  .buy__content--hammock.is-animated:after {
    transform: translateX(50%);
  }
  .buy__note {
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0 0;
    padding: 0 40px;
  }
  .buy__content {
    max-width:none;
  }
  .buy__content:before {
    left: -25px;
  }
  .buy__title {
    font-size: 3.8rem;
  }
  .buy__list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 40px 0 0;
    gap: 30px;
  }
  .buy__item:first-child {
    margin-left: 40px;
  }
  .buy__list::-webkit-scrollbar {
    display: none;
  }
  .buy__text {
    padding: 0 30px 0 40px;
  }
  .buy__link-wrapper {
    margin-top: 147px;
  }
  .ticket-body__button {
    background: #D5F276;
    color: var(--color-dark);
  }
  .ticket-body__button:before {
    background-image: url(../../../img/special/feelearth2025/arrow_dark.svg);
  }
}
/*-----------------------------------------------
* Guest
*-----------------------------------------------*/
.guest {
  position: relative;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .guest:before {
    content: "";
    position: absolute;
    top: -260px;
    left: 50%;
    width: 160px;
    height: 205px;
    background-image: url(../../../img/special/feelearth2025/bg_osusume.png);
    background-size: cover;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 0) translate(-30px, 30px);
    transition: all 0.6s ease-out;
  }
  .guest.is-before-animated:before {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.guest__title {
  position: relative;
  text-align: center;
}
.guest__title:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.guest__inner {
  position: relative;
  padding: 112px 0 105px;
}
.guest__inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 11.127vw;
  width: 179px;
  height: 109px;
  background-image: url(../../../img/special/feelearth2025/bg_more.svg);
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.guest__list {
  margin-top: 74px;
  display: flex;
  justify-content: center;
  gap: 36px;
}
.guest__item {
  min-width: 140px;
  width: 140px;
  flex-shrink: 0;
}
.guest__item-image {
  display: block;
  width: 84px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid var(--color-navy);
}
.guest__item-job {
  margin-top: 15px;
  font-size: 1rem;
}
.guest__item-name {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
.guest__item-description {
  margin-top: 16px;
  font-size: 1rem;
  word-break: break-all;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 1900px) {
  .guest__inner {
    padding: 112px 0 100px;
  }
  .guest__title:after {
    bottom: -27px;
  }
  .guest__list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    padding: 0 30px 20px;
    justify-content: flex-start;
  }
  .guest__list::-webkit-scrollbar {
    display: none;
  }
  .guest__inner:after {
    bottom: -30px;
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .guest__inner {
    padding-top: 0;
  }
  .guest__list {
    margin-top: 57px;
  }
}
/*-----------------------------------------------
* Contents
*-----------------------------------------------*/
.contents__inner {
  max-width: 936px;
  margin: 0 auto;
  padding: 124px 0 110px;
}
.contents__title {
  position: relative;
  text-align: center;
}
.contents__title:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.contents__header {
  position: relative;
  padding: 100px 0 0;
}
.contents__header:before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.contents__header--live:before {
  top: 50px;
  left: -80px;
  width: 179px;
  height: 116px;
  background-image: url(../../../img/special/feelearth2025/bg_beat.svg);
}
.contents__header--market:before {
  top: 40px;
  right: -50px;
  width: 169px;
  height: 80px;
  background-image: url(../../../img/special/feelearth2025/bg_discover.svg);
}
.contents__header--food:before {
  top: 40px;
  right: -50px;
  width: 183px;
  height: 93px;
  background-image: url(../../../img/special/feelearth2025/bg_tasteit.svg);
  transform: rotate(400deg);
}
.contents__header-text {
  padding: 24px 0;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  text-align: center;
}
.contents__text {
  max-width: 116px;
  margin: 32px auto 0;
  text-align: center;
  padding: 15px 0;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-navy);
  border-radius: 80%;
  letter-spacing: 0.1em;
  line-height: 1;
}
.contents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12.5px 30px;
  margin-top: 30px;
  padding-bottom: 33px;
  border-bottom: 1px solid var(--color-navy);
}
.contents__item-button {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #92BBD6;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.contents__item-button:hover {
  color: var(--color-navy);
}
.contents__item-button:before {
  content: "";
  display: block;
  width: 36px;
  min-width: 36px;
  height: 36px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle_off.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: opacity 0.3s;
}
.contents__item-button:not(:disabled) {
  color: var(--color-navy);
}
.contents__item-button:not(:disabled):before {
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
}
@media (hover: hover) {
  .contents__item-button:not(:disabled):hover {
    color: #92BBD6;
  }
  .contents__item-button:not(:disabled):hover:before {
    background-image: url(../../../img/special/feelearth2025/arrow_circle_off.svg);
  }
}
.contents__item-button:disabled:hover {
  color: #92BBD6;
}
.contents__item-button:disabled:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_circle_off.svg);
}
.contents__content {
  position: relative;
  margin-top: 40px;
}

.contents__content--market {
  margin-top: 95px;
}
.contents__content--market:before {
  content: "";
  position: absolute;
  top: -110px;
  left: -60px;
  width: 171px;
  height: 108px;
  background-image: url(../../../img/special/feelearth2025/bg_gowild.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.contents__content-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}
.content-item {
  flex-shrink: 0;
}
.content-wrapper {
  display: block;
  margin-top: 40px;
}
.content-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-item img {
  width: 100%;
}
.content-item__title {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
}
.content-item__text {
  margin-top: 10px;
  font-size: 1rem;
  text-align: justify;
  word-break: break-all;
}
.content-item__text b {
  font-weight: bold;
}
.content-item__list-text li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 1.5em;
}
.content-item__list-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
}
.content-item__list-text {
  margin-top: 5px;
  font-size: 1rem;
  letter-spacing: normal;
}
.content-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 20px;
  padding: 12px 0;
  text-align: center;
  border: 1px solid var(--color-navy);
  font-size: 1.1rem;
  font-weight: bold;
  font-family: var(--font-en);
  border-radius: 120px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.content-item__link:hover {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}
.content-item__link:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_white.svg);
}
.content-item__link:before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background-image: url(../../../img/special/feelearth2025/arrow_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.contents__content-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.contents__content-title:before {
  content: "";
  display: block;
  width: 36px;
  min-width: 36px;
  height: 36px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.contents__content-title .small {
  font-size: 1.3rem;
}
@media screen and (max-width: 1023px) {
  .contents__inner {
    padding: 90px 0;
  }
  .contents__header {
    padding: 80px 30px 0;
  }
  .contents__header--live:before {
    top: 30px;
    left: -12px;
    width: 137px;
    height: 80px;
  }
  .contents__header--market:before {
    width: 129px;
    height: 61px;
    right: -9px;
  }
  .contents__header--food:before {
    height: 80px;
  }
  .contents__header-text {
    font-size: 1.8rem;
  }
  .contents__list {
    margin: 0 30px 0;
    padding: 20px 0;
    gap: 12.5px 0;
    align-items: center;
  }
  .contents__item {
    width: calc(90% / 3);
  }
  .contents__title img {
    max-width: 283px;
  }
  .contents__text {
    margin-top: 27px;
  }
  .contents__content {
    margin-top: 45px;
  }
  .contents__content-title .small {
    display: block;
  }
  .contents__content--market {
    margin-top: 100px;
  }
  .contents__content--market:before {
    top: -112px;
    left: -27px;
    height: 85px;
  }
  .contents__content-title {
    padding: 0 30px;
  }
  .contents__content-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
  }
  .contents__content-list::-webkit-scrollbar {
    display: none;
  }
  .content-item {
    min-width: 200px;
    width: 200px;
    padding-bottom: 5px;
  }
  .content-item:first-child {
    margin-left: 30px;
  }
  .content-item:last-child {
    margin-right: 30px;
  }
  @media screen and (max-width: 768px) {
    .contents__item {
      width: calc(90% / 2);
    }
  }
}
/*-----------------------------------------------
* Movie
*-----------------------------------------------*/
.movie {
  padding-top: 109px;
  background: #fff;
}
.movie__header {
  text-align: center;
}
.movie__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 3.2rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.movie__title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.movie__content {
  margin-top: 36px;
  text-align: center;
}
.movie__content iframe {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 746px;
  aspect-ratio: 16 / 9;
}
.movie__content iframe:after {
  content: "";
  position: absolute;
  width: 62px;
  height: 167px;
  background-image: url(../../../img/special/feelearth2025/bg_flag.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 72px 30px 0;
  }
  .movie__title {
    font-size: 2.4rem;
    gap: 16px;
  }
  .movie__title:before {
    width: 38px;
    height: 38px;
  }
}

/*-----------------------------------------------
* Access
*-----------------------------------------------*/
.access {
  position: relative;
  padding-top: 97px;
  background: #fff;
}
.access__inner {
  position: relative;
  max-width: 936px;
  margin: 0 auto;
}
.access__inner:before {
  content: "";
  position: absolute;
  left: -80px;
  top: -100px;
  width: 95px;
  height: 167px;
  background-image: url(../../../img/special/feelearth2025/bg_flag.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}
.access__inner.is-animated:before {
  opacity: 1;
  transform: translateX(0);
}
.access__header {
  text-align: center;
}
.access__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 3.2rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.access__title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.access__content {
  max-width: 746px;
  margin: 0 auto;
}
.access__content iframe {
  margin-top: 38px;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
}
.access__address {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
}
.access__address span {
  margin-bottom: 19px;
  font-size: 1.8rem;
  font-weight: bold;
}
.access__content-title {
  margin-top: 38px;
  font-weight: bold;
  line-height: 1;
}
.access__content-text {
  margin-top: 16px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .access {
    padding: 0 30px;
  }
  .access__inner {
    padding-top: 30px;
  }
  .access__inner:before {
    position: initial;
    display: block;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 2.8rem;
    gap: 16px;
  }
  .access__title:before {
    width: 38px;
    height: 38px;
  }
  .access__address span {
    margin-bottom: 16px;
    font-size: 1.6rem;
    word-break: auto-phrase;
  }
  .access__content-title {
    margin-top: 29px;

  }
}

/*-----------------------------------------------
* FAQ
*-----------------------------------------------*/
.faq {
  position: relative;
  padding: 97px 0 122px;
  background: #fff;
}
.faq:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 172px;
  width: 122px;
  height: 122px;
  background-image: url(../../../img/special/feelearth2025/bg_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  opacity: 0;
  display: none;
}
@media (min-width: 1024px) {
  .faq:after {
    display: block;
  }
}
.faq.is-animated:after {
  opacity: 1;
  animation: faqRotation 3s alternate-reverse infinite;
  -webkit-animation: faqRotation 3s alternate-reverse infinite;
}
@keyframes faqRotation {
  0%, 5% {
    transform: translate(0%) rotate(0deg);
  }
  50% {
    transform: translate(100%) rotate(180deg);
  }
  95%, 100% {
    transform: translate(200%) rotate(360deg);
  }
}
@-webkit-keyframes faqRotation {
  0%, 5% {
    transform: translate(0%) rotate(0deg);
  }
  45%, 50% {
    transform: translate(100%) rotate(180deg);
  }
  95%, 100% {
    transform: translate(200%) rotate(360deg);
  }
}
.faq__header {
  text-align: center;
}
.faq__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 3.2rem;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.faq__title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.faq__content {
  max-width: 746px;
  margin: 42px auto 0;
}
.faq__list {
  border-top: 1px solid var(--color-navy);
}
.faq__item {
  padding: 20px 0;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-navy);
}
.faq__question {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 1.6rem;
  font-weight: bold;
  padding-right: 40px;
}
.faq__question:before {
  content: "Q";
  padding-right: 15px;
  font-size: 2.4rem;
  font-family: var(--font-en);
  font-weight: bold;
  line-height: 1;
}
.faq__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faq__toggle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: 
    linear-gradient(var(--color-navy), var(--color-navy)) no-repeat center/20px 1.5px,
    linear-gradient(var(--color-navy), var(--color-navy)) no-repeat center/1.5px 20px;
  transition: transform 0.3s ease;
}
.faq__item.is-active .faq__toggle:before {
  background: 
    linear-gradient(var(--color-navy), var(--color-navy)) no-repeat center/20px 1.5px;
}
.faq__toggle:hover {
  opacity: 0.7;
}
.faq__toggle:focus {
  outline: none;
}
.faq__toggle:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}
.faq__answer {
  margin-left: 32px;
  font-size: 1.4rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.faq__item.is-active .faq__answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.faq__link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 281px;
  margin: 56px auto 0;
  padding: 18px 0;
  border: 1px solid var(--color-navy);
  border-radius: 120px;
  font-weight: bold;
  gap: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: all 0.3s;
}
.faq__link:hover {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}
.faq__link:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_white.svg);
}
.faq__link:before {
  content: "";
  display: block;
  width: 20px;
  height: 19px;
  background-image: url(../../../img/special/feelearth2025/arrow_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 80px 30px 93px;
  }
  .faq__title {
    gap: 16px;
  }
  .faq__title:before {
    width: 38px;
    height: 38px;
  }
  .faq__content {
    margin-top: 30px;
  }
  .faq__link {
    margin-top: 38px;
  }
}
/*-----------------------------------------------
* Funq
*-----------------------------------------------*/
.funq {
  padding: 134px 0 96px;
  background: #fff;
}
.funq__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 654px;
  margin: 0 auto;
  gap: 43px;
}
.funq__header-content {
  max-width: 402px;
}
.funq__header:after {
  content: "";
  position: absolute;
  top: -80px;
  left: -90px;
  width: 159px;
  height: 128px;
  background-image: url(../../../img/special/feelearth2025/bg_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.funq__title {
  font-weight: bold;
}
.funq__text {
  margin-top: 20px;
  text-align: justify;
  word-break: break-all;
  font-size: 1.4rem;
  line-height: 1.7;
}
.funq__partner-list-wrapper {
  display: flex;
}
.partner-list__item img {
  vertical-align: middle;
}
.funq__content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 62px;
}
.funq__partner {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-navy);
  border-radius: 20px;
}
.funq__partner:first-child {
  flex: 1;
  max-width: 678px;
}
.funq__partner:last-child {
  flex: 1;
  max-width: 256px;
}
.funq__partner-title {
  position: absolute;
  white-space: nowrap;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: bold;
  background-color: #fff;
  padding: 0 25px;
  letter-spacing: 0.1em;
}
.funq__partner-list-wrapper {
  display: flex;
  gap: 20px;
}
.funq__partner-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.funq__partner-list {
  flex: 1;
}
.partner-item__list {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
}
.partner-item__title {
  padding: 8px 0;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid var(--color-navy);
  border-radius: 120px;
  text-align: center;
  line-height: 1;
}
/*-----------------------------------------------
* Sponsors
*-----------------------------------------------*/
.funq__cooperation--mainsponsor {
  margin-top: 110px;
}
.funq__cooperation {
  text-align: center;
}
.funq__cooperation-title {
  margin-top: 40px;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.funq__cooperation--mainsponsor .funq__cooperation-title {
  margin-top: 0;
}
.funq__cooperation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 23px;
}
.funq__cooperation--sponsor .funq__cooperation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.funq__cooperation--sponsor .funq__cooperation-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 80px;
  padding: 15px;
  width: 100%;

}
.funq__cooperation-list--sns {
  margin-top: 10px;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .funq {
    padding: 155px 30px 66px;
  }
  .funq__content {
    flex-direction: column;
    align-items: center;
  }
  .funq__header:after {
    display: none;
  }
  .funq__partner-list-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .funq__partner {
    width: 290px;
    padding: 25px 50px;
  }
  .funq__partner:first-child,
  .funq__partner:last-child {
    max-width: none;
  }
  .funq__header {
    flex-direction: column;
  }
  .funq__header-content {
    max-width: 290px;
  }
  .funq__logo {
    position: relative;
    order: -1;
  }
  .funq__logo:after {
    content: "";
    position: absolute;
    top: -100px;
    left: -70px;
    width: 159px;
    height: 128px;
    background-image: url(../../../img/special/feelearth2025/bg_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .funq__cooperation--mainsponsor {
    margin-top: 66px;
  }
  .funq__cooperation--organizer .funq__cooperation-list {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 33px 0px;
  }
  .funq__cooperation--organizer .funq__cooperation-item {
    width: 50%;
  }
  .funq__cooperation--sponsor .funq__cooperation-list {
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
/*-----------------------------------------------
* Fixed Ticket
*-----------------------------------------------*/
.fixed-ticket__content {
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 35px 25px;
  background-color: var(--color-dark);
  border-radius: 110px;
  color: var(--color-white);
  text-align: center;
  font-weight: bold;
  transition: all 0.8s ease-out;
  opacity: 0;
  transform: translateY(20px);
  z-index: var(--z-index-ticket);
}
.fixed-ticket__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fixed-ticket__content.is-buy-active {
  background-color: #6B7684;
  color: #F9F8F3;
}
.fixed-ticket__content.is-buy-active .fixed-ticket__title {
  border-color: #F9F8F3;
}
.fixed-ticket__content.is-buy-active .fixed-ticket__map {
  background-color: #F9F8F3;
  color: var(--color-dark);
}
.fixed-ticket__button {
  position: fixed;
  display: grid;
  place-items: center;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
  z-index: var(--z-index-ticket);
}
.fixed-ticket__button.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fixed-ticket__button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  color: var(--color-dark);
  background: #D5F276;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}
.fixed-ticket__button-link:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  border-radius: 50%;
  transition: top 0.4s ease;
  z-index: 0;
}
.fixed-ticket__button-link:hover:before {
  top: 0;
}
.fixed-ticket__button-link:hover {
  color: var(--color-dark);
}
.fixed-ticket__button-link > * {
  position: relative;
  z-index: 1;
}
.fixed-ticket__button-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  line-height: 1;
}
.fixed-ticket__button-text {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
}
.fixed-ticket__countdown-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-ticket__countdown-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-ticket__title {
  display: inline-flex;
  padding: 2px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  border: 1px solid var(--color-white);
  border-radius: 13px;
}
.fixed-ticket__title--countdown {
  margin-top: 15px;
}
.fixed-ticket__date {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
}
.fixed-ticket__date--first {
  margin: 15px 0 0;
}
.fixed-ticket__date span {
  font-size: 1.8rem;
}
.fixed-ticket__date span:before {
  content: "\002E";
  font-size: 1.8rem;
  padding: 0 2px;
}
.fixed-ticket__address {
  margin-top: 10px;
  font-size: 1.1rem;
}
.fixed-ticket__countdown-text {
  margin-top: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.fixed-ticket__countdown-item span {
  font-size: 2.6rem;
}
.fixed-ticket__countdown-item:nth-child(2) span:before,
.fixed-ticket__countdown-item:nth-child(2) span:after {
  margin-top: 6px;
  content: ":";
  padding: 0 5px;
  font-size: 1.4rem;
}
.fixed-ticket__countdown-item #hours {
  display: flex;
}
.fixed-ticket__countdown-item:first-child span:after {
  content: "";
}
.fixed-ticket__countdown-item {
  font-size: .9rem;
  font-family: var(--font-en);
}
.fixed-ticket__map {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 1.3rem;
  font-family: var(--font-en);
  color: var(--color-dark);
  background: var(--color-white);
  border-radius: 20px;
  line-height: 1;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.fixed-ticket__map:hover {
  background-color: #D5F276 !important;
  color: var(--color-dark) !important;
}
@media screen and (max-width: 1023px) {
  .fixed-ticket {
    display: none;
  }
}

.fixed-ticket-mobile {
  display: none;
}
@media screen and (max-width: 1023px) {
  .fixed-ticket-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--color-white);
    background-color: var(--color-dark);
    transition: all 0.8s ease-out;
    opacity: 0;
    transform: translateY(100%);
    z-index: var(--z-index-ticket);
  }
  .fixed-ticket-mobile.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fixed-ticket-mobile.is-buy-active {
    background-color: #6B7684;
    color: #F9F8F3;
  }
  .fixed-ticket-mobile.is-buy-active .fixed-ticket-mobile__title {
    border-color: #F9F8F3;
  }
  .fixed-ticket-mobile.is-buy-active .fixed-ticket-mobile__map {
    background-color: #F9F8F3;
    color: var(--color-dark);
  }
  .fixed-ticket-mobile.modal-active {
    z-index: var(--z-index-ticket-top) !important;
  }
}
.fixed-ticket__content.modal-active {
  z-index: var(--z-index-ticket-top) !important;
}
.fixed-ticket__button.modal-active {
  z-index: var(--z-index-ticket-top) !important;
}
@media screen and (max-width: 1023px) {
  .fixed-ticket-mobile__inner {
    display: grid;
    place-content: center;
    padding: 12px 0;
  }
  .fixed-ticket-mobile__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .fixed-ticket-mobile__date {
    font-size: 2.4rem;
    font-weight: bold;
    font-family: var(--font-en);
    line-height: 1;
  }
  .fixed-ticket-mobile__date span {
    font-size: 1.6rem;
  }
  .fixed-ticket-mobile__date span:before {
    content: "\002E";
    padding: 0 2px;
  }
  .fixed-ticket-mobile__address {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .fixed-ticket-mobile__map {
    padding: 5px 20px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: var(--font-en);
    border-radius: 20px;
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1;
    cursor: pointer;
    border: none;
  }
  .fixed-ticket-mobile__countdown-item {
    font-size: 1rem;
    font-family: var(--font-en);
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .fixed-ticket-mobile__countdown-item span {
    padding-right: 5px;
    font-size: 2.4rem;
  }
  .fixed-ticket-mobile__button {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
  }
  .fixed-ticket-mobile__button-text {
    padding: 5px 8px;
    border: 1px solid var(--color-white);
    font-size: .9rem;
    font-weight: bold;
    border-radius: 13px;
  }
  .fixed-ticket-mobile__button-link {
    padding: 9px 18px;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--font-en);
    color: var(--color-dark);
    background-color: #D5F276;
    letter-spacing: 0.1em;
    border-radius: 25px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .buy__list {
    grid-template-columns: repeat(3, calc(100% / 3));
    gap: 20px;
  }
  .buy__item {
    width: auto;
    min-width: auto;
  }
  .buy__content {
    max-width: 63%;
  }
}
/*-----------------------------------------------
* Modal
*-----------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(45, 58, 77, 0.9);
  cursor: pointer;
}
.modal__content img {
  cursor: default;
  pointer-events: none;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.modal__content-inner {
  pointer-events: auto;
  border: 1px solid #fff;
}
.modal__content > * {
  max-height: calc(100vh - 120px);
  max-width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal__close:before,
.modal__close:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: white;
}
.modal__close:before {
  transform: rotate(45deg);
}
.modal__close:after {
  transform: rotate(-45deg);
}
.modal__image {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  overflow: auto;
}
.modal__image-container {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .modal__content {
    width: 63%;
    margin: auto;
  }
}

/*-----------------------------------------------
* Footer
*-----------------------------------------------*/
.footer {
  padding: 18px 0;
  background-color: var(--color-dark);
  font-size: 1rem;
  font-family: var(--font-en);
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .is-pc {
    display: block;
  }
} 

/*-----------------------------------------------
* Information
*-----------------------------------------------*/
body.info {
  background: #fff;
}
.info-update {
  padding: 20px 30px 0 0;
  text-align: right;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--font-en);
}
.info-title {
  position: relative;
  text-align: center;
}
.info-title:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 1.5px;
  background-color: var(--color-navy);
}
.info-container {
  max-width: calc(750px + 60px);
  padding: 0 30px;
  margin: 0 auto;
  padding: 88px 30px 115px;
}
.info-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 93px;
  padding: 30px 0;
  gap: 40px;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  line-height: 1;
}
.info-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.info-list__link:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.info-list__link:hover {
  color: #92BBD6;
}
.info-list__link:hover:before {
  background-image: url(../../../img/special/feelearth2025/arrow_circle_off.svg);
}
.info-content {
  margin-top: 65px;
  overflow-wrap: break-word;
}
.info-content.info-content--terms {
  margin-top: 0;
}
.info-content--terms .info-content__list {
  margin-top: 40px;
}
.info-sub-title:first-of-type {
  margin-top: 82px;
}
.info-sub-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.info-sub-title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-image: url(../../../img/special/feelearth2025/arrow_circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.info-sub-title-wrapper {
  text-align: center;
}
.info-sub-title--event {
  margin-top: 98px;
}
.info-content__title {
  font-size: 1.8rem;
  font-weight: bold;
}
.info-content__text {
  font-size: 1.4rem;
  line-height: 1.7;
}
.info-content__title + .info-content__text {
  margin-top: 15px;
}
.info-content__text.is-bold {
  margin-top: 30px;
  font-weight: bold;
}
.is-highlight {
  background: linear-gradient(transparent 60%, #D5F276 40%);
}
.info-content__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}
.info-content__list + .info-content__text {
  margin-top: 40px;
}
.info-content__item {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.6rem;
  font-weight: bold;
}
.info-content__item:before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: -0.15em;
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .info-container {
    padding-top: 53px;
  }
  .info-title {
    max-width: 300px;
    margin: 0 auto;
  }
  .info-list {
    margin-top: 72px;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 13px;
    line-height: 1.5;
  }
  .info-list__item {
    width: 320px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
  }
  .info-list__link {
    font-size: 1.7rem;
  }
  .info-list__link:before {
    width: 30px;
    height: 30px;
  }
  .info-sub-title {
    gap: 15px;
    font-size: 1.8rem;
  }
  .info-sub-title:before {
    width: 34px;
    height: 34px;
  }
  .info-sub-title:first-of-type {
    margin-top: 84px;
  }
  .info-content {
    margin-top: 55px;
  }
  .info-content__title {
    font-size: 1.7rem;
  }
  .info-content__item {
    font-size: 1.5rem;
  }
  .info-sub-title--event {
    justify-content: center;
  }
}