@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
/********************************
* モバイルファースト
********************************/
html {
  font-size: 62.5%;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  background-color: #f8f8e8;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  cursor: pointer;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.zen-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-title {
  font-size: clamp(24px, 3vw, 46px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
}

.c__link-btn {
  font-size: 1.4rem;
  padding: 1.5em 0;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .c__link-btn {
    font-size: 2rem;
    padding: 1.4em 0;
  }
}

.header {
  padding: 3.2rem 0 2.6rem;
}
@media (min-width: 768px) {
  .header {
    padding: 2.7rem 0 2.2rem;
  }
}
.header__text {
  font-size: clamp(11px, 3vw, 18px);
  font-weight: 500;
  text-align: center;
  color: #01523f;
}

.footer {
  background-color: #fff;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer__container {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 10rem 4rem 8rem;
  }
}
.footer__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/footer-img.png") center/cover;
  z-index: 1;
}
.footer__contact {
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer__contact-title {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__contact-title {
    margin-bottom: 8.5rem;
  }
}
.footer__contact-title-en {
  display: block;
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .footer__contact-title-en {
    margin-bottom: 1rem;
  }
}
.footer__contact-title-ja {
  display: block;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
}
.footer__contact-name {
  font-size: clamp(15px, 3vw, 36px);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer__contact-name {
    margin-bottom: 2.8rem;
  }
}
.footer__contact-name-sub {
  font-size: clamp(10px, 3vw, 16px);
  display: block;
}
@media (min-width: 768px) {
  .footer__contact-name-sub {
    display: inline;
  }
}
.footer__contact-tel {
  display: inline-block;
  background-color: #fff;
  color: #01523f;
  padding: 0.8rem 3rem;
  border-radius: 50px;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .footer__contact-tel {
    max-width: 40rem;
    width: 100%;
    padding: 0.5em 0;
    margin-bottom: 2.7rem;
  }
}
.footer__contact-tel:hover {
  opacity: 0.9;
}
.footer__contact-hours {
  font-size: clamp(10px, 3vw, 16px);
}
.footer__info {
  color: #231815;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: clamp(12px, 2vw, 14px);
  max-width: 130rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__info {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 0;
  }
}
.footer__info-text {
  margin: 0;
}
.footer__info-copyright {
  margin: 0;
}

/********************************
* hero
********************************/
.hero {
  position: relative;
  z-index: 1;
  padding-bottom: 6.4rem;
}
@media (min-width: 768px) {
  .hero {
    padding-bottom: 6rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding-bottom: 2rem;
  }
}
.hero__container {
  position: relative;
  padding: 0 1.7rem;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .hero__container {
    padding: 0 7rem;
  }
}
.hero__title {
  position: relative;
  margin-bottom: min(14.1vw, 53px);
}
.hero__title::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/svg/icon-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4.6rem;
  height: 5.4rem;
  bottom: -9%;
  left: 10%;
}
@media (min-width: 500px) {
  .hero__title::before {
    width: 7.6rem;
    height: 8.4rem;
    bottom: -5%;
  }
}
@media (min-width: 768px) {
  .hero__title::before {
    width: 11.3rem;
    height: 11.3rem;
    bottom: 2%;
    left: 6%;
  }
}
@media (min-width: 1200px) {
  .hero__title::before {
    bottom: 2%;
  }
}
.hero__title-bg {
  width: 100%;
}
.hero__title-text {
  max-width: 54%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .hero__title-text {
    max-width: 58%;
    top: 51%;
  }
}
.hero__title-text--sp {
  display: block;
}
@media (min-width: 768px) {
  .hero__title-text--sp {
    display: none;
  }
}
.hero__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .hero__title img {
    margin-bottom: 6.2rem;
  }
}
@media (min-width: 768px) {
  .hero__text-img {
    display: block;
    max-width: 59%;
    width: 100%;
    margin: 0 auto;
  }
}
.hero__title-schedule {
  text-align: center;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
}
.hero__title-schedule--pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__title-schedule--pc {
    display: block;
  }
}
.hero__title-schedule--sp {
  display: block;
}
@media (min-width: 768px) {
  .hero__title-schedule--sp {
    display: none;
  }
}
.hero__title-schedule-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.hero__title-schedule-text span {
  font-size: clamp(14px, 3vw, 32px);
}
.hero__title-schedule-text--sub {
  font-size: clamp(20px, 3vw, 40px);
  letter-spacing: 1px;
}
.hero__btn {
  position: absolute;
  bottom: -11%;
  right: 8%;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 500px) {
  .hero__btn {
    bottom: -5%;
  }
}
@media (min-width: 768px) {
  .hero__btn {
    bottom: 3%;
    right: 1%;
  }
}
@media (min-width: 1200px) {
  .hero__btn {
    bottom: 12%;
    right: 9%;
  }
}
.hero__btn-subtext {
  display: block;
  font-size: clamp(10px, 2vw, 16px);
}
.hero__btn-link {
  font-size: clamp(12px, 2vw, 20px);
  background-color: #e46384;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 8rem;
  height: 8rem;
}
@media (min-width: 500px) {
  .hero__btn-link {
    width: 10.5rem;
    height: 10.5rem;
  }
}
@media (min-width: 768px) {
  .hero__btn-link {
    width: 15rem;
    height: 15rem;
  }
}

/********************************
* about
********************************/
.about {
  color: #fff;
  min-height: 100vh;
  padding: 0 4rem;
  margin-bottom: 14.7rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .about {
    margin-bottom: 25.6rem;
  }
}
.about::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #01523f;
  inset: -23.6% 0 9.8% 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .about::before {
    inset: -33.4% 0 18.4% 0;
  }
}
.about__container {
  position: relative;
  z-index: 1;
}
.about__concept {
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
}
@media (min-width: 768px) {
  .about__concept {
    max-width: 76rem;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 15rem;
  }
}
.about__concept::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/svg/icon-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 19%;
  height: 20%;
  bottom: 6.5%;
  right: 2%;
}
@media (min-width: 768px) {
  .about__concept::after {
    width: 11.6rem;
    height: 11.6rem;
    bottom: 84.5%;
    right: 3%;
  }
}
@media (min-width: 1200px) {
  .about__concept::after {
    bottom: 55.5%;
    right: -26%;
  }
}
.about__title {
  text-align: center;
  margin-bottom: 2.2rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .about__title {
    margin-bottom: 6.6rem;
  }
}
.about__concept-text {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2.2;
}
.about__introduction {
  max-width: 100rem;
  margin: 0 auto;
  padding-bottom: 6.4rem;
}
@media (min-width: 768px) {
  .about__introduction {
    padding-bottom: 11.7rem;
  }
}
.about__introduction-text {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2.15;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .about__introduction-text {
    line-height: 2.2;
  }
}
@media (min-width: 768px) {
  .about__introduction-text-wrapper {
    max-width: 44rem;
    margin-top: 4.6rem;
  }
}
.about__introduction-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.9rem;
}
@media (min-width: 768px) {
  .about__introduction-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.about__introduction-img {
  max-width: min(74.6vw, 280px);
  height: min(88vw, 330px);
}
@media (min-width: 768px) {
  .about__introduction-img {
    max-width: 46rem;
    height: 100%;
  }
}
.about__introduction-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about__introduction-title {
  margin-bottom: 2.8rem;
}
@media (min-width: 768px) {
  .about__introduction-title {
    margin-bottom: 5rem;
  }
}
.about__introduction-title-text {
  text-align: left;
}
.about__gallery-img-wrapper {
  display: flex;
  align-items: center;
  padding-left: 0.8rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about__gallery-img-wrapper {
    max-width: 67rem;
    margin: 0 auto;
    padding-left: 0;
    gap: 2rem;
  }
}
.about__gallery-img {
  max-width: min(23.2vw, 87px);
  height: min(51.2vw, 192px);
}
@media (min-width: 376px) {
  .about__gallery-img {
    max-width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .about__gallery-img {
    max-width: 21rem;
    height: 46rem;
  }
}
.about__gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__gallery-img--shika {
  position: relative;
  margin-top: 6.6rem;
}
@media (min-width: 768px) {
  .about__gallery-img--shika {
    margin-top: 25rem;
  }
}
.about__gallery-img--shika::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../img/svg/icon-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 55%;
  height: 41%;
  top: -31.3%;
  left: 22%;
}
@media (min-width: 1100px) {
  .about__gallery-img--shika::before {
    width: 11rem;
    height: 11rem;
    top: 6.3%;
    left: -102%;
  }
}
.about__gallery-img--sun {
  margin-top: -6.6rem;
}
@media (min-width: 768px) {
  .about__gallery-img--tree {
    margin-top: 9rem;
  }
}

/********************************
* michinoku
********************************/
.michinoku {
  padding: 0 4rem 4.3rem;
  color: #01523f;
  position: relative;
}
@media (min-width: 768px) {
  .michinoku {
    padding: 0 4rem 11rem;
  }
}
.michinoku::before {
  content: "";
  position: absolute;
  background-image: url("../img/svg/icon-4.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -19.5%;
  right: 14%;
  width: 7.2rem;
  height: 7.2rem;
  display: block;
}
@media (min-width: 768px) {
  .michinoku::before {
    top: -41%;
    right: 14.5%;
    width: 14.2rem;
    height: 8.2rem;
  }
}
.michinoku__container {
  max-width: 86rem;
  width: 100%;
  margin: 0 auto;
}
.michinoku__title {
  max-width: clamp(27rem, 80vw, 60rem);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.michinoku__title::before, .michinoku__title::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 9%;
  height: 130%;
  top: -20%;
}
@media (min-width: 768px) {
  .michinoku__title::before, .michinoku__title::after {
    width: 10%;
    height: 138%;
    top: -15%;
  }
}
.michinoku__title::before {
  background-image: url("../img/svg/title-sub1.svg");
  left: -5%;
}
@media (min-width: 768px) {
  .michinoku__title::before {
    left: -14%;
  }
}
.michinoku__title::after {
  background-image: url("../img/svg/title-sub2.svg");
  right: -5%;
}
@media (min-width: 768px) {
  .michinoku__title::after {
    right: -14%;
  }
}
.michinoku__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.michinoku__title-text {
  font-size: clamp(20px, 4vw, 46px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.9rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .michinoku__title-text {
    margin-bottom: 7rem;
  }
}
.michinoku__logo {
  max-width: 10rem;
  width: 100%;
  margin: 0 auto 1.1rem;
}
.michinoku__text {
  font-size: clamp(14px, 3vw, 18px);
  color: #231815;
  line-height: 2.15;
}
@media (min-width: 768px) {
  .michinoku__text {
    line-height: 2.22;
  }
}
.michinoku__sec-img {
  margin-bottom: 19rem;
}
@media (min-width: 768px) {
  .michinoku__sec-img {
    margin-bottom: 25.5rem;
  }
}
.michinoku__sec-img-container {
  height: clamp(125px, 33.3vw, 200px);
}
@media (min-width: 500px) {
  .michinoku__sec-img-container {
    height: 100%;
  }
}
.michinoku__sec-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* trail observation
********************************/
.michinoku__trail-observation {
  padding: 0 3.6rem 9rem;
  position: relative;
}
@media (min-width: 768px) {
  .michinoku__trail-observation {
    padding: 0 3.6rem 24.4rem;
  }
}
.michinoku__trail-observation__container {
  max-width: 106rem;
  width: 100%;
  margin: 0 auto;
}
.michinoku__trail-observation::before {
  content: "";
  position: absolute;
  background-image: url("../img/svg/icon-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 21%;
  height: 1.3%;
  display: block;
  top: -3.7%;
  left: 14.5%;
}
@media (min-width: 600px) {
  .michinoku__trail-observation::before {
    top: -2.5%;
  }
}
@media (min-width: 768px) {
  .michinoku__trail-observation::before {
    width: 13.4rem;
    height: 6rem;
    top: -4%;
  }
}
@media (min-width: 1200px) {
  .michinoku__trail-observation::before {
    left: 17%;
  }
}
.michinoku__trail-observation__content {
  margin-bottom: 7.5rem;
}
.michinoku__trail-observation__content:nth-of-type(2) {
  margin-bottom: 9.5rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__content:nth-of-type(2) {
    margin-bottom: 13.5rem;
  }
}
@media (min-width: 768px) {
  .michinoku__trail-observation__content {
    margin-bottom: 12.9rem;
  }
}
.michinoku__trail-observation__header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.8rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__header {
    margin-bottom: 5.6rem;
  }
}
.michinoku__trail-observation__header--bottom {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__header--bottom {
    margin-bottom: 5.4rem;
  }
}
.michinoku__trail-observation__title {
  font-size: clamp(24px, 4vw, 49px);
  color: #01523f;
}
.michinoku__trail-observation__description {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2.15;
  max-width: 86rem;
  width: 100%;
  margin: 0 auto;
}
.michinoku__trail-observation__img--ba {
  margin-bottom: 3rem;
}
.michinoku__trail-observation__img-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__img-wrap {
    flex-direction: row;
    gap: 4rem;
    margin-bottom: 0.8rem;
  }
}
.michinoku__trail-observation__img-caption {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
}
.michinoku__trail-observation__img-caption--before, .michinoku__trail-observation__img-caption--after {
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
}
.michinoku__trail-observation__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.michinoku__trail-observation__img figure {
  display: flex;
  flex-direction: column;
  max-width: min(80vw, 300px);
}
@media (min-width: 376px) {
  .michinoku__trail-observation__img figure {
    max-width: 100%;
  }
}
.michinoku__trail-observation__figure-trail {
  gap: 1.7rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__figure-trail {
    gap: 1rem;
  }
}
.michinoku__trail-observation__figure-ba {
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .michinoku__trail-observation__figure-ba {
    gap: 3.4rem;
  }
}
.michinoku__trail-observation__text-bottom-description {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2;
}

.trail-info-box {
  box-shadow: inset 0 0 0 2px #01523f;
  border-radius: 25px;
  padding: 2rem 3rem;
}
@media (min-width: 768px) {
  .trail-info-box {
    padding: 5rem;
  }
}
.trail-info-box__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .trail-info-box__header {
    flex-direction: row-reverse;
    margin-bottom: 2.8rem;
    gap: 4.6rem;
  }
}
.trail-info-box__title {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  text-align: left;
  color: #01523f;
  font-weight: bold;
}
@media (min-width: 768px) {
  .trail-info-box__title {
    max-width: 48.4rem;
  }
}
.trail-info-box__logo {
  max-width: 18.3rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .trail-info-box__logo {
    max-width: 100%;
    margin: 0;
    margin-right: auto;
    padding-top: 0.3rem;
  }
}
.trail-info-box__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.trail-info-box__text {
  font-size: clamp(13px, 3vw, 16px);
  color: #01523f;
  line-height: 1.8;
}

/********************************
* prize
********************************/
.michinoku__prize {
  background-color: #01523f;
  margin-bottom: 8.7rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .michinoku__prize {
    margin-bottom: 10.7rem;
  }
}
.michinoku__prize::before {
  content: "";
  position: absolute;
  background-image: url("../img/prize-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -3.2%;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .michinoku__prize::before {
    top: -15.2%;
  }
}
.michinoku__prize-container {
  padding-bottom: 8.5rem;
}
@media (min-width: 768px) {
  .michinoku__prize-container {
    padding-bottom: 13rem;
  }
}
.michinoku__prize__content {
  padding: 0 3rem;
}
.michinoku__prize-title {
  font-size: clamp(26px, 3vw, 46px);
  color: #fff;
  letter-spacing: 1px;
  padding-top: 5rem;
  padding-bottom: 2.6rem;
}
@media (min-width: 768px) {
  .michinoku__prize-title {
    padding-bottom: 5rem;
  }
}
.michinoku__prize__item {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .michinoku__prize__item {
    max-width: 88rem;
    gap: 3rem;
  }
}
.michinoku__prize picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* map
********************************/
.map {
  margin-bottom: 10rem;
}
@media (min-width: 768px) {
  .map {
    margin-bottom: 15rem;
  }
}
.map__container {
  padding: 0;
}
.map__title {
  font-size: clamp(22px, 3vw, 46px);
  font-weight: bold;
  color: #01523f;
  line-height: 1.6;
  letter-spacing: 2px;
  max-width: 71rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .map__title {
    line-height: 1.5;
  }
}
.map__header {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .map__header {
    margin-bottom: 7rem;
  }
}
.map__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.3rem;
}
@media (min-width: 1000px) {
  .map__inner {
    max-width: 107.7rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    grid-template-columns: 1fr 51.5rem;
    grid-template-areas: "detail img" "description img";
    gap: 0;
  }
}
@media (min-width: 768px) {
  .map__inner-img {
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (min-width: 1000px) {
  .map__inner-img {
    grid-area: img;
    height: 100%;
    margin-top: 1.1rem;
  }
}
.map__inner-img img {
  width: 100%;
  height: 100%;
}
.map__inner-detail {
  max-width: clamp(280px, 80vw, 700px);
  padding: 0 2rem;
  margin-left: 2rem;
}
@media (min-width: 1000px) {
  .map__inner-detail {
    max-width: 35rem;
    grid-area: detail;
    padding: 0 0 5.3rem;
    margin-left: 0;
    margin-top: 9.4rem;
  }
}
.map__inner-detail-title {
  font-size: clamp(20px, 3vw, 42px);
  color: #01523f;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 0.8rem;
}
@media (min-width: 1000px) {
  .map__inner-detail-title {
    margin-bottom: 1.6rem;
  }
}
.map__inner-detail-description {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 2;
}
.map__inner-description {
  max-width: 46rem;
  max-width: clamp(460px, 100vw, 1000px);
  width: 100%;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media (min-width: 1000px) {
  .map__inner-description {
    max-width: 46rem;
    margin: 0;
    padding: 0;
  }
}
.map__inner-description-wrap {
  padding: 1.3rem 1.6rem;
  box-shadow: inset 0 0 0 1px #01523f;
  border-radius: 10px;
}
@media (min-width: 1000px) {
  .map__inner-description-wrap {
    padding: 2.3rem;
  }
}
@media (min-width: 1000px) {
  .map__inner-description {
    grid-area: description;
  }
}
.map__inner-description-title {
  font-size: clamp(15px, 3vw, 23px);
  font-weight: bold;
  color: #01523f;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 0.4rem;
}
.map__inner-description-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
}
.map__inner-description-item {
  position: relative;
}
.map__inner-description-item-text {
  font-size: clamp(11px, 3vw, 16px);
  padding-left: 1.1em;
}
@media (min-width: 1000px) {
  .map__inner-description-item-text {
    padding-left: 1.4em;
  }
}
.map__inner-description-item-text::before {
  content: "◆";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  color: #01523f;
}

/********************************
* detail schedule
********************************/
.detail__schedule {
  background-color: #f2f1e7;
  padding-bottom: 9.6rem;
}
@media (min-width: 768px) {
  .detail__schedule {
    padding: 19rem 0 28.6rem;
  }
}
.detail__schedule-container {
  max-width: 107rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media (min-width: 550px) {
  .detail__schedule-container {
    padding: 0 3.6rem;
  }
}
.detail__schedule-header {
  padding-top: 8rem;
  margin-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .detail__schedule-header {
    padding-top: 0;
    margin-bottom: 5.8rem;
  }
}
.detail__schedule-title {
  line-height: 1.5;
  color: #01523f;
}
.detail__schedule-table {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .detail__schedule-table {
    padding: 0;
    margin-bottom: 4.2rem;
  }
}

.schedule-table {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 1.6rem;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .schedule-table {
    max-width: 100%;
    margin: 0 auto 3rem;
  }
}
.schedule-table__row {
  display: grid;
  grid-template-columns: 8.4rem 1fr;
  border-bottom: 1px solid #dcdddd;
}
.schedule-table__row:last-child {
  border-bottom: none;
}
@media (min-width: 500px) {
  .schedule-table__row {
    grid-template-columns: 30% 70%;
  }
}
@media (min-width: 1200px) {
  .schedule-table__row {
    grid-template-columns: 22% 78%;
  }
}
.schedule-table__label, .schedule-table__value {
  padding: 2.6rem 0;
  font-size: clamp(11px, 2.5vw, 20px);
}
.schedule-table__label {
  background-color: #01523f;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.schedule-table__label:last-of-type {
  border-bottom: none;
}
.schedule-table__value {
  background-color: #fff;
  color: #231815;
  padding: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 600px) {
  .schedule-table__value {
    padding: 1rem 2rem;
  }
}
@media (min-width: 768px) {
  .schedule-table__value {
    padding: 2.6rem 6rem;
  }
}
.schedule-table__value--schedule {
  flex-direction: column;
  align-items: flex-start;
}
.schedule-table__note, .schedule-table__time, .schedule-table__timeline, .schedule-table__activity {
  font-size: clamp(12px, 2vw, 20px);
}
.schedule-table__note {
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 1rem;
}
.schedule-table__timeline {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.8rem;
}
@media (min-width: 768px) {
  .schedule-table__timeline {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
}
.schedule-table__time {
  font-weight: 700;
  color: #231815;
  width: 8rem;
}
.schedule-table__activity {
  line-height: 1.4;
}
.schedule-table__caption {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 2;
  text-align: center;
}

.detail__schedule-announce {
  text-align: center;
}
.detail__schedule-announce-title {
  font-size: clamp(16px, 3vw, 28px);
  border-bottom: 1px solid #d32f2f;
  width: 10rem;
  margin: 0 auto 1.7rem;
  padding-bottom: 0.3rem;
}
@media (min-width: 500px) {
  .detail__schedule-announce-title {
    width: 16rem;
  }
}
@media (min-width: 768px) {
  .detail__schedule-announce-title {
    width: 19rem;
    padding-bottom: 1.3rem;
    margin: 0 auto 2rem;
  }
}
.detail__schedule-announce-title-content {
  color: #d32f2f;
  margin-bottom: 4.8rem;
}
.detail__schedule-announce-description {
  font-size: clamp(16px, 3vw, 28px);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .detail__schedule-announce-description {
    margin-bottom: 1.5rem;
  }
}
.detail__schedule-announce__btn-content {
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: #fff;
}
@media (min-width: 768px) {
  .detail__schedule-announce__btn-content {
    max-width: 86rem;
    flex-direction: row;
  }
}
.detail__schedule-announce-link--orange {
  background-color: #ff8500;
}
.detail__schedule-announce-link--red {
  background-color: #d32f2f;
}

/********************************
* refresh
********************************/
.refresh {
  background-color: #f2f1e7;
  padding-bottom: 14rem;
}
@media (min-width: 768px) {
  .refresh {
    padding-bottom: 15.2rem;
  }
}
.refresh__container {
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .refresh__container {
    max-width: 120rem;
    margin: 0 auto;
  }
}
.refresh__header {
  text-align: center;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .refresh__header {
    margin-bottom: 4.4rem;
  }
}
.refresh__title {
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1.5;
  letter-spacing: 1px;
  color: #01523f;
}
.refresh__content {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
  margin-bottom: 4.2rem;
}
@media (min-width: 768px) {
  .refresh__content {
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 11rem;
  }
}
.refresh__card {
  border-radius: 8px;
}
@media (min-width: 768px) {
  .refresh__card {
    width: 50%;
  }
}
.refresh__card-img {
  max-width: 30rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}
@media (min-width: 376px) {
  .refresh__card-img {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .refresh__card-img {
    max-width: 51rem;
    padding-bottom: 4rem;
  }
}
.refresh__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.refresh__card-body {
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .refresh__card-body {
    padding: 0 3rem;
  }
}
.refresh__card-title {
  font-size: clamp(18px, 3vw, 28px);
  color: #01523f;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .refresh__card-title {
    margin-bottom: 3rem;
  }
}
.refresh__card-text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.85;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .refresh__card-text {
    padding: 0 2rem;
  }
}
.refresh__card-data {
  background-color: #f5f5f5;
  padding: 1.3rem;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .refresh__card-data {
    padding: 4rem 5rem;
  }
}
.refresh__card-data-title {
  font-size: clamp(12px, 3vw, 18px);
  color: #01523f;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.refresh__card-data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.refresh__card-data-item {
  font-size: clamp(12px, 3vw, 15px);
  margin-bottom: 0.4rem;
}
.refresh__card-data-item:last-child {
  margin-bottom: 0;
}
.refresh__card-data-item p {
  line-height: 1.2;
  margin: 0;
  padding-left: 1em;
  position: relative;
}
.refresh__card-data-item p::before {
  content: "⚫︎";
  position: absolute;
  left: -5px;
  top: -3px;
  color: #01523f;
  font-size: 1.7rem;
}
.refresh__btn-content {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  color: #fff;
  max-width: 26.5rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .refresh__btn-content {
    flex-direction: row;
    max-width: 55rem;
  }
}
.refresh__btn-link {
  font-size: clamp(14px, 3vw, 16px);
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .refresh__btn-link {
    padding: 1.3em 0;
  }
}
.refresh__btn-link::before {
  content: "";
  background-image: url("../img/svg/icon-6.svg");
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.6rem;
  height: 1.6rem;
  right: 6%;
  display: flex;
  align-items: center;
}
.refresh__btn-link--green {
  background-color: #00aa8c;
}
.refresh__btn-link--blue {
  background-color: #008dbd;
}