/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  fonts
============================================= */
.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}

.barlow {
  font-family: "Barlow", sans-serif;
  font-style: normal;
}

.square-peg {
  font-family: "Square Peg", cursive;
  font-style: normal;
}

/* =============================================
  initial settings
============================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: normal;
}

main {
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
}

.inner {
  max-width: 1100px;
  padding: 0 4rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 8vw;
  }
}

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

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

/* =============================================
  btn
============================================= */
.btn {
  width: 15rem;
  height: 4rem;
  line-height: 4rem;
  padding-left: 2rem;
  border: 0.1px solid #7a6a56;
  border-radius: 2rem;
  color: #7a6a56;
  font-size: 1.6rem;
  position: relative;
  transition: color ease 0.3s, background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 34.6666666667vw;
    height: 10.6666666667vw;
    line-height: 10.6666666667vw;
    border-radius: 5.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #7a6a56;
  border-right: 1px solid #7a6a56;
  transform: rotate(45deg) translateY(-50%);
  transition: background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .btn::after {
    width: 2vw;
    height: 2vw;
    right: 4.6666666667vw;
  }
}
.btn:hover {
  background: #7a6a56;
  color: #fff;
}

/* =============================================
  mv
============================================= */
.stroll-mv {
  margin: 6rem 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .stroll-mv {
    margin: 6vw 0 0;
  }
}
.stroll-mv::after {
  content: "";
  position: absolute;
  width: 1170px;
  height: 600px;
  right: 0;
  bottom: -280px;
  background: no-repeat url(../img/stroll/wave.png) bottom right;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .stroll-mv::after {
    width: 80vw;
    height: 35.3333333333vw;
    bottom: -4vw;
    background: no-repeat url(../img/stroll/wave-sp.png) bottom right/contain;
  }
}
.stroll-mv__ttl {
  position: absolute;
  top: 9.375vw;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  animation: fadeAnim 0.5s linear 1.3s forwards;
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .stroll-mv__ttl {
    top: 21.3333333333vw;
    width: calc(100% - 13.32vw);
    animation: fadeAnim 0.5s linear forwards;
  }
}
.stroll-mv__ttl::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -5%;
  width: 29.5%;
  aspect-ratio: 290/115;
  background: no-repeat url(../img/stroll/mv-subttl.png) center center/contain;
}
@media screen and (max-width: 768px) {
  .stroll-mv__ttl::before {
    display: block;
    aspect-ratio: 230/125;
    top: -15%;
    left: -1%;
    width: 37.3%;
  }
}
.stroll-mv__pc {
  display: grid;
  grid-template-columns: 1fr 1fr 50%;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .stroll-mv__pc {
    display: none;
  }
}
.stroll-mv__pc img {
  width: 100%;
  padding-top: 1.875vw;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  animation: mvAnim 0.8s linear 0.3s forwards;
}
.stroll-mv__pc img:nth-of-type(2) {
  padding-bottom: 3rem;
  padding-top: 0;
  animation: mvReverseAnim 0.8s linear 0.3s forwards;
}
.stroll-mv__pc img:nth-of-type(3) {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation: mvAnim 0.8s linear 0.3s forwards;
}
.stroll-mv__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .stroll-mv__sp {
    display: block;
  }
}
.stroll-mv__notes {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .stroll-mv__notes {
    margin-top: 6vw;
  }
}
.stroll-mv__notes p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .stroll-mv__notes p {
    font-size: 3.7333333333vw;
  }
}

@keyframes fadeAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mvAnim {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes mvReverseAnim {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* =============================================
  plan
============================================= */
.plan {
  position: relative;
  z-index: 1;
}
.plan.bg-brown {
  background: #eee7e3;
}
.plan.bg-brown::before, .plan.bg-brown::after {
  content: "";
  width: 100%;
  height: 4rem;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .plan.bg-brown::before, .plan.bg-brown::after {
    height: 2rem;
  }
}
.plan.bg-brown::before {
  background: repeat-x url(../img/stroll/wave-top.png) bottom right;
  top: -3.8rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .plan.bg-brown::before {
    background: repeat-x url(../img/stroll/wave-top-sp.png) bottom right;
    top: -1.8rem;
  }
}
.plan.bg-brown::after {
  background: repeat-x url(../img/stroll/wave-bottom.png) bottom right;
  bottom: -0.2rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .plan.bg-brown::after {
    background: repeat-x url(../img/stroll/wave-bottom-sp.png) bottom right;
    bottom: -0.2rem;
  }
}
.plan00 {
  padding: 25rem 0;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .plan00 {
    padding: 17.3333333333vw 0 24vw;
  }
}
.plan01 {
  padding: 7rem 0 23rem;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .plan01 {
    padding: 13.3333333333vw 0 28vw;
  }
}
.plan02 {
  padding: 10rem 0 21rem;
  z-index: 7;
}
@media screen and (max-width: 768px) {
  .plan02 {
    padding: 22.6666666667vw 0 26.6666666667vw;
  }
}
.plan03 {
  padding: 18rem 0 21rem;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .plan03 {
    padding: 20vw 0 34.6666666667vw;
  }
}
.plan04 {
  padding: 16rem 0 21rem;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .plan04 {
    padding: 29.3333333333vw 0 33.3333333333vw;
  }
}
.plan05 {
  padding: 18rem 0 4rem;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .plan05 {
    padding: 22.6666666667vw 0 5.3333333333vw;
  }
}
.plan06 {
  padding: 0 0 23rem;
  margin-top: -5px;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .plan06 {
    padding: 0 0 24vw;
    margin-top: -0.6666666667vw;
  }
}
.plan07 {
  padding: 13rem 0 18rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .plan07 {
    padding: 29.3333333333vw 0 33.3333333333vw;
  }
}
.plan08 {
  padding: 15rem 0 16rem;
}
@media screen and (max-width: 768px) {
  .plan08 {
    padding: 26.6666666667vw 0;
  }
}
.plan__contents-wrap {
  position: relative;
  z-index: 1;
}
.plan__contents {
  width: -moz-fit-content;
  width: fit-content;
}
.plan__contents--right {
  margin-left: auto;
}
.plan__time {
  width: 19rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .plan__time {
    width: 30vw;
    margin-bottom: 10.6666666667vw;
  }
}
.plan__ttl {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.2rem 1rem;
  font-size: 3.4rem;
  font-weight: normal;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .plan__ttl {
    font-size: 6.1333333333vw;
  }
}
.plan__ttl--brown {
  background: #7a6a56;
  color: #fff;
}
.plan__place {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .plan__place {
    margin-top: 6.6666666667vw;
  }
}
.plan__place img {
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .plan__place img {
    height: 6.6666666667vw;
    width: auto;
  }
}
.plan__sentence {
  text-align: justify;
  font-size: 1.8rem;
  line-height: 180%;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence {
    font-size: 4.2666666667vw;
    margin-top: 9.3333333333vw;
  }
}
.plan__sentence--p01 {
  max-width: 57rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p01 {
    max-width: none;
  }
}
.plan__sentence--p02 {
  max-width: 50rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p02 {
    max-width: none;
  }
}
.plan__sentence--p03 {
  max-width: 44.8rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p03 {
    max-width: none;
  }
}
.plan__sentence--p04 {
  max-width: 56.4rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p04 {
    max-width: none;
  }
}
.plan__sentence--p05 {
  max-width: 43.3rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p05 {
    max-width: none;
  }
}
.plan__sentence--p06 {
  max-width: 37.8rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p06 {
    max-width: none;
  }
}
.plan__sentence--p07 {
  max-width: 43.2rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p07 {
    max-width: none;
  }
}
.plan__sentence--p08 {
  max-width: 43.8rem;
}
@media screen and (max-width: 768px) {
  .plan__sentence--p08 {
    max-width: none;
  }
}
.plan__sentence .notes {
  margin-top: 1rem;
  font-size: 1.4rem;
  display: block;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .plan__sentence .notes {
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
  }
}
.plan__sentence .asterisk {
  font-size: 1rem;
  vertical-align: super;
}
@media screen and (max-width: 768px) {
  .plan__sentence .asterisk {
    font-size: 2.6666666667vw;
  }
}
.plan__img {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .plan__img {
    position: static;
    margin-top: 9.3333333333vw;
    width: 100vw !important;
    margin-left: -8vw !important;
  }
}
@media screen and (max-width: 768px) {
  .plan__img img {
    height: auto !important;
    width: 100%;
  }
}
.plan__img--p00 {
  top: 0;
  right: -2rem;
  z-index: -1;
  width: 58rem;
}
.plan__img--p01 {
  top: -1rem;
  right: -15rem;
  z-index: -1;
  width: 77rem;
}
.plan__img--p02 {
  top: 4rem;
  left: -27rem;
  z-index: -1;
  width: 75.7rem;
}
.plan__img--p03 {
  top: -1rem;
  right: -12.5rem;
  z-index: -1;
  width: 75.7rem;
}
.plan__img--p04 {
  top: 7rem;
  left: -28rem;
  z-index: -1;
  width: 70.6rem;
}
.plan__img--p05 {
  top: 0;
  right: -28rem;
  z-index: -1;
  width: 82rem;
}
.plan__img--p06 {
  top: 6rem;
  left: -20rem;
  z-index: -1;
  width: 79.6rem;
}
.plan__img--p07 {
  top: 1rem;
  right: -28rem;
  z-index: -1;
  width: 80rem;
}
.plan__img--p08 {
  top: -2rem;
  left: -14rem;
  z-index: -1;
  width: 67rem;
}
.plan__data {
  margin-top: 12rem;
  outline-offset: 0.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan__data {
    margin-top: 14.6666666667vw;
  }
}
.plan__data::before, .plan__data::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
}
.plan__data::before {
  left: -0.65rem;
  top: -0.6rem;
}
.plan__data::after {
  top: -0.65rem;
  right: -0.6rem;
  transform: rotate(90deg);
}
.plan__data--p01 {
  border: solid 0.1rem #c38796;
  outline: solid 0.1rem #c38796;
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .plan__data--p01 {
    margin-top: 14.6666666667vw;
  }
}
.plan__data--p01::before {
  background: no-repeat url(../img/stroll/plan01-radius.png) center center/contain;
}
.plan__data--p01::after {
  background: no-repeat url(../img/stroll/plan01-radius.png) center center/contain;
}
.plan__data--p02 {
  border: solid 0.1rem #a58cb4;
  outline: solid 0.1rem #a58cb4;
}
.plan__data--p02::before {
  background: no-repeat url(../img/stroll/plan02-radius.png) center center/contain;
}
.plan__data--p02::after {
  background: no-repeat url(../img/stroll/plan02-radius.png) center center/contain;
}
.plan__data--p03 {
  border: solid 0.1rem #8eb0ba;
  outline: solid 0.1rem #8eb0ba;
}
.plan__data--p03::before {
  background: no-repeat url(../img/stroll/plan03-radius.png) center center/contain;
}
.plan__data--p03::after {
  background: no-repeat url(../img/stroll/plan03-radius.png) center center/contain;
}
.plan__data--p04 {
  border: solid 0.1rem #6e96b4;
  outline: solid 0.1rem #6e96b4;
}
.plan__data--p04::before {
  background: no-repeat url(../img/stroll/plan04-radius.png) center center/contain;
}
.plan__data--p04::after {
  background: no-repeat url(../img/stroll/plan04-radius.png) center center/contain;
}
.plan__data--p05 {
  border: solid 0.1rem #7d8c78;
  outline: solid 0.1rem #7d8c78;
}
.plan__data--p05::before {
  background: no-repeat url(../img/stroll/plan05-radius.png) center center/contain;
}
.plan__data--p05::after {
  background: no-repeat url(../img/stroll/plan05-radius.png) center center/contain;
}
.plan__data--p06 {
  margin-top: 21rem;
  border: solid 0.1rem #9bb478;
  outline: solid 0.1rem #9bb478;
}
@media screen and (max-width: 768px) {
  .plan__data--p06 {
    margin-top: 14.6666666667vw;
  }
}
.plan__data--p06::before {
  background: no-repeat url(../img/stroll/plan06-radius.png) center center/contain;
}
.plan__data--p06::after {
  background: no-repeat url(../img/stroll/plan06-radius.png) center center/contain;
}
.plan__data--p07 {
  border: solid 0.1rem #a8aa46;
  outline: solid 0.1rem #a8aa46;
}
.plan__data--p07::before {
  background: no-repeat url(../img/stroll/plan07-radius.png) center center/contain;
}
.plan__data--p07::after {
  background: no-repeat url(../img/stroll/plan07-radius.png) center center/contain;
}
.plan__data--p08 {
  margin-top: 14rem;
  border: solid 0.1rem #e1a573;
  outline: solid 0.1rem #e1a573;
}
@media screen and (max-width: 768px) {
  .plan__data--p08 {
    margin-top: 13.3333333333vw;
  }
}
.plan__data--p08::before {
  background: no-repeat url(../img/stroll/plan08-radius.png) center center/contain;
}
.plan__data--p08::after {
  background: no-repeat url(../img/stroll/plan08-radius.png) center center/contain;
}
.plan__data-acce {
  padding: 4.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan__data-acce {
    padding: 8vw 4.6666666667vw;
  }
}
.plan__data-acce::before, .plan__data-acce::after {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  bottom: -0.65rem;
}
.plan__data-acce::before {
  left: -0.6rem;
  transform: rotate(-90deg);
  bottom: -0.65rem;
}
.plan__data-acce::after {
  bottom: -0.6rem;
  right: -0.65rem;
  transform: rotate(180deg);
}
.plan__data-acce--p01::before {
  background: no-repeat url(../img/stroll/plan01-radius.png) center center/contain;
}
.plan__data-acce--p01::after {
  background: no-repeat url(../img/stroll/plan01-radius.png) center center/contain;
}
.plan__data-acce--p02::before {
  background: no-repeat url(../img/stroll/plan02-radius.png) center center/contain;
}
.plan__data-acce--p02::after {
  background: no-repeat url(../img/stroll/plan02-radius.png) center center/contain;
}
.plan__data-acce--p03::before {
  background: no-repeat url(../img/stroll/plan03-radius.png) center center/contain;
}
.plan__data-acce--p03::after {
  background: no-repeat url(../img/stroll/plan03-radius.png) center center/contain;
}
.plan__data-acce--p04::before {
  background: no-repeat url(../img/stroll/plan04-radius.png) center center/contain;
}
.plan__data-acce--p04::after {
  background: no-repeat url(../img/stroll/plan04-radius.png) center center/contain;
}
.plan__data-acce--p05::before {
  background: no-repeat url(../img/stroll/plan05-radius.png) center center/contain;
}
.plan__data-acce--p05::after {
  background: no-repeat url(../img/stroll/plan05-radius.png) center center/contain;
}
.plan__data-acce--p06::before {
  background: no-repeat url(../img/stroll/plan06-radius.png) center center/contain;
}
.plan__data-acce--p06::after {
  background: no-repeat url(../img/stroll/plan06-radius.png) center center/contain;
}
.plan__data-acce--p07::before {
  background: no-repeat url(../img/stroll/plan07-radius.png) center center/contain;
}
.plan__data-acce--p07::after {
  background: no-repeat url(../img/stroll/plan07-radius.png) center center/contain;
}
.plan__data-acce--p08::before {
  background: no-repeat url(../img/stroll/plan08-radius.png) center center/contain;
}
.plan__data-acce--p08::after {
  background: no-repeat url(../img/stroll/plan08-radius.png) center center/contain;
}
.plan__data-ttl {
  width: 6.7rem;
  position: absolute;
  top: -1.6rem;
  left: 5.5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan__data-ttl {
    width: 12vw;
    left: 6.6666666667vw;
    top: -1.9rem;
  }
}
.plan__data-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 10rem;
  background: #eee7e3;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .plan__data-ttl::before {
    width: 15.3333333333vw;
  }
}
.plan__data-ttl--white::before {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .plan__data-ttl img {
    height: auto;
    width: 100%;
  }
}
.plan__data-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .plan__data-list div {
    grid-template-columns: 15.3333333333vw 1fr;
    margin-bottom: 4vw;
  }
}
.plan__data-list div:last-child {
  margin-bottom: 0;
}
.plan__data-list div dt {
  background: #7a6a56;
  color: #fff;
  border-radius: 0.3rem;
  text-align: center;
  font-size: 1.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .plan__data-list div dt {
    height: 5.3333333333vw;
    line-height: 5.3333333333vw;
    font-size: 3.4666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.plan__data-list div dd {
  margin-top: -3px;
}
@media screen and (max-width: 768px) {
  .plan__data-list div dd {
    font-size: 3.7333333333vw;
    margin-top: -0.9333333333vw;
  }
}
.plan__data-buttons {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .plan__data-buttons {
    gap: 4vw;
    margin-top: 6.6666666667vw;
  }
}
.plan__next {
  position: absolute;
}
.plan__next--p00 {
  bottom: -28rem;
  left: 28%;
  width: 38.4rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan__next--p00 {
    width: 54.1333333333vw;
    bottom: -34.6666666667vw;
    left: 20%;
  }
}
.plan__next--p01 {
  bottom: -35rem;
  left: 34%;
  width: 29rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan__next--p01 {
    width: 37.3333333333vw;
    bottom: -49.3333333333vw;
    left: 45%;
  }
}
.plan__next--p02 {
  bottom: -36.5rem;
  left: 50%;
  width: 26rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plan__next--p02 {
    width: 34.6666666667vw;
    bottom: -49.3333333333vw;
    left: 47%;
  }
}
.plan__next--p03 {
  bottom: -41rem;
  left: 50%;
  transform: translateX(-50%);
  width: 48rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plan__next--p03 {
    width: 64vw;
    bottom: -60vw;
  }
}
.plan__next--p04 {
  bottom: -36rem;
  left: 36%;
  transform: translateX(-50%);
  width: 30rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plan__next--p04 {
    width: 38.6666666667vw;
    bottom: -50.6666666667vw;
    left: 40%;
  }
}
.plan__next--p05 {
  position: static;
  width: 24rem;
  margin: 4.5rem auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .plan__next--p05 {
    width: 34.6666666667vw;
    margin: 8vw auto 0;
  }
}
.plan__next--p06 {
  bottom: -35.5rem;
  left: 38%;
  transform: translateX(-50%);
  width: 52rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plan__next--p06 {
    width: 69.3333333333vw;
    bottom: -50.6666666667vw;
    left: 50%;
  }
}
.plan__next--p07 {
  bottom: -35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plan__next--p07 {
    width: 37.3333333333vw;
    bottom: -50.6666666667vw;
  }
}
.plan__notes {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .plan__notes {
    margin-top: 6.6666666667vw;
  }
}
.plan__notes p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .plan__notes p {
    font-size: 3.7333333333vw;
  }
}

/* =============================================
  map
============================================= */
.map {
  padding: 20rem 0;
}
@media screen and (max-width: 768px) {
  .map {
    padding: 13.3333333333vw 0;
  }
}
.map__inner {
  max-width: calc(1920px + 8rem);
}