@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =======================================
_buttons.scss
-----------------------------------------*/
.btn {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #029fc8;
  border-radius: 10px;
  --min-size: 15;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: inherit !important;
  line-height: 1;
  text-decoration: none;
  margin: 0.5em auto;
  padding: 15px 40px 15px 50px;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn::after {
  display: block;
  content: "";
  position: relative;
  width: 12px;
  height: 15px;
  background-color: #029fc8;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  position: absolute;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.btn:hover {
  background-color: rgb(202.5247524752, 243.7178217822, 254.4752475248);
  border-color: #029fc8;
}
@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}
.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.btn:disabled::after {
  border-color: #989898;
}
.btn:disabled:hover {
  background-color: #fff;
  border: 1px solid #989898 !important;
}
.btn:disabled:hover::after {
  right: 25px;
}

/* =======================================
_animation.scss
-----------------------------------------*/
.inview,
.inview-x {
  opacity: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-timing-function: opacity var(--ease-out-cubic);
          animation-timing-function: opacity var(--ease-out-cubic);
}

.fadeInUp {
  -webkit-animation-name: fadeInUpAnime;
          animation-name: fadeInUpAnime;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-animation-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
          animation-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
}

.wipeIn {
  opacity: 1;
  position: relative;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.wipeIn img {
  opacity: 0;
}
.wipeIn::after {
  display: block;
  content: "";
  height: 100%;
  background-color: #029fc8;
  position: absolute;
  top: 0;
  left: 0;
}
.wipeIn::after {
  -webkit-animation: wipebar 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
          animation: wipebar 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
}
.wipeIn img {
  -webkit-animation: wipeimg 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
          animation: wipeimg 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes wipebar {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@keyframes wipebar {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@-webkit-keyframes wipecolor {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #000;
  }
  100% {
    color: #000;
  }
}
@keyframes wipecolor {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #000;
  }
  100% {
    color: #000;
  }
}
@-webkit-keyframes wipeimg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes wipeimg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
body {
  background: #fff url(../images/body_background.png);
  background-size: 210px 210px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

*, *::before, *::after {
  --min-size: 15;
  --max-size: 16;
  --min-viewport: 375;
  --max-viewport: 1280;
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}

.Header {
  background-color: #fff;
  padding: 15px;
  text-align: center;
}
.Header img {
  width: 235px;
  margin: 0 auto;
}

.Hero {
  position: relative;
  width: 100%;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .Hero {
    padding: 0;
    height: 780px;
  }
}
.Hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../images/hero_background.jpg) no-repeat;
  background-size: cover;
  background-position: 100% 0%;
}
@media (min-width: 768px) {
  .Hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-position: 50% 100%;
  }
}
.Hero::after {
  display: block;
  content: url(../images/wave_divider.svg);
  width: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
}
.Hero h1 {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  -webkit-filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.25));
  -webkit-transform: translateY(max(-3vw, -40px));
          transform: translateY(max(-3vw, -40px));
}
@media (min-width: 768px) {
  .Hero h1 {
    width: 47%;
    max-width: 640px;
    margin-left: 3vw;
  }
}
.Hero__tagline {
  --min-size: 24;
  --max-size: 38;
  font-size: var(--clamp-size);
  font-weight: 600;
  color: #029fc8;
  line-height: 1;
  letter-spacing: 1px;
  margin: 80px 5vw 0 0;
}
.Hero__tagline span {
  display: inline-block;
  background-color: #fff;
  margin: 5px 0;
  padding: 10px;
}
@media (min-width: 768px) {
  .Hero__tagline span {
    margin: 0 5px;
    padding: 5px 12px 0 5px;
  }
}
@media (min-width: 768px) {
  .Hero__tagline {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    margin-top: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.Intro,
.Schedule,
.Overview,
.Sightseeing {
  padding: 80px 15px;
}
.Intro h2,
.Schedule h2,
.Overview h2,
.Sightseeing h2 {
  position: relative;
  --min-size: 30;
  --max-size: 34;
  font-size: var(--clamp-size);
  margin: 0 auto 60px auto;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Intro h2 img,
.Schedule h2 img,
.Overview h2 img,
.Sightseeing h2 img {
  width: 180px;
}
@media (min-width: 768px) {
  .Intro h2 img,
  .Schedule h2 img,
  .Overview h2 img,
  .Sightseeing h2 img {
    width: 240px;
  }
}
.Intro h2 img,
.Schedule h2 img,
.Overview h2 img,
.Sightseeing h2 img {
  display: block;
  margin: 0 auto 5px auto;
}
.Intro h2::before, .Intro h2::after,
.Schedule h2::before,
.Schedule h2::after,
.Overview h2::before,
.Overview h2::after,
.Sightseeing h2::before,
.Sightseeing h2::after {
  display: block;
  content: "";
  width: 3px;
  height: 1em;
  background-color: #222;
}
.Intro h2::before,
.Schedule h2::before,
.Overview h2::before,
.Sightseeing h2::before {
  margin-right: 20px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.Intro h2::after,
.Schedule h2::after,
.Overview h2::after,
.Sightseeing h2::after {
  margin-left: 20px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media (min-width: 768px) {
  .Intro h2 br,
  .Schedule h2 br,
  .Overview h2 br,
  .Sightseeing h2 br {
    display: none;
  }
}

.Intro {
  background-color: #029fc8;
  padding: 20px 20px 40px 20px;
  color: #fff;
  line-height: 1.8;
  text-align: justify;
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
}
@media (min-width: 768px) {
  .Intro {
    padding: 20px 15px 60px 15px;
    text-align: center;
  }
}
.Intro h2 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .Intro h2 {
    margin-top: 80px;
  }
}
.Intro h2 {
  color: #fff;
}
.Intro h2::before, .Intro h2::after {
  background-color: #fff;
}
.Intro .IntroInner {
  max-width: 1240px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .Intro .IntroInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.Intro .IntroInner section {
  width: 100%;
  padding: 30px;
}
.Intro .IntroInner section:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .Intro .IntroInner section {
    width: 31.612903%;
    margin: 0 !important;
    padding: 30px;
  }
}
.Intro .IntroInner section {
  background-color: #fff;
  border-radius: 20px;
}
.Intro .IntroInner section h3 {
  --min-size: 20;
  --max-size: 23;
  font-size: var(--clamp-size);
  color: #029fc8;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .Intro .IntroInner section h3 br {
    display: none;
  }
}
.Intro .IntroInner section p {
  --min-size: 15;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: #222;
  text-align: justify;
  letter-spacing: 1px;
}
.Intro .IntroInner section p strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fbff00));
  background: linear-gradient(transparent 60%, #fbff00 0%);
  background-blend-mode: multiply;
}

.Schedule {
  background: rgba(162, 255, 255, 0.3) url(../images/body_background.png);
  background-blend-mode: multiply;
}
.Schedule .ScheduleInner {
  max-width: 1240px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .Schedule .ScheduleInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 120px;
  }
}
.Schedule ol {
  padding: 0;
  list-style: none;
  --min-size: 24;
  --max-size: 28;
  font-size: var(--clamp-size);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.Schedule ol li {
  position: relative;
  text-align: center;
  line-height: 1;
}
.Schedule ol li:not(:last-child) {
  margin-bottom: 45px;
}
.Schedule ol li:not(:last-child)::after {
  display: block;
  content: "";
  width: 28px;
  height: 20px;
  background-color: #00a2a2;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.Schedule figure {
  width: 100%;
}
@media (min-width: 768px) {
  .Schedule figure {
    width: 37.096774%;
  }
}

.Overview {
  text-align: center;
}
.Overview .OverviewInner {
  max-width: 1028px;
  margin: 0 auto;
}
.Overview p {
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
}
.Overview .period {
  --min-size: 28;
  --max-size: 32;
  font-size: var(--clamp-size);
  color: #029fc8;
  font-weight: 800;
  line-height: 1;
}
.Overview .period span {
  font-size: 150%;
}
.Overview .period + .note {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .Overview .period br {
    display: none;
  }
}
.Overview dl {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dotted #222;
}
.Overview dl dt, .Overview dl dd {
  padding: 10px 0;
  border-top: 1px dotted #222;
  text-align: left;
}
.Overview dl dt {
  width: 25%;
}
@media (min-width: 768px) {
  .Overview dl dt {
    width: 15%;
  }
}
.Overview dl dt {
  font-weight: 600;
}
.Overview dl dd {
  width: 75%;
  text-align: justify;
}
@media (min-width: 768px) {
  .Overview dl dd {
    width: 85%;
  }
}
.Overview dl dd .note {
  display: block;
}

.Sightseeing {
  padding-bottom: 40px;
  background: rgba(162, 255, 255, 0.3) url(../images/body_background.png);
  background-blend-mode: multiply;
}
.Sightseeing .SightseeingInner {
  max-width: 1028px;
  margin: 0 auto;
}
.Sightseeing .Spot {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .Sightseeing .Spot {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
  .Sightseeing .Spot figure {
    width: 32.101167%;
  }
}
.Sightseeing .Spot h3 {
  --min-size: 24;
  --max-size: 26;
  font-size: var(--clamp-size);
  font-weight: 600;
  border-left: 10px solid #029fc8;
  text-box-trim: trim-both;
  margin-bottom: 20px;
  padding: 3px 0 3px 10px;
}
.Sightseeing .Spot p {
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
  text-align: justify;
}
.Sightseeing .Spot .btn {
  margin-top: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .Sightseeing .Spot .btn {
    width: auto;
  }
}

.Conclusion {
  position: relative;
}
.Conclusion figure {
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .Conclusion figure {
    aspect-ratio: 137/64;
  }
}
.Conclusion figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Conclusion .ConclusionBody {
  display: inline-block;
  background-color: #029fc8;
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
  color: #fff;
  font-weight: 200;
  line-height: 2;
  width: 100%;
  padding: 30px;
}
@media (min-width: 768px) {
  .Conclusion .ConclusionBody {
    width: unset;
    padding: 50px 65px 50px 60px;
    position: absolute;
    top: max(-7vw, -80px);
    right: 5vw;
    z-index: 10;
  }
}

.note {
  line-height: 1.5;
  font-size: 90%;
  margin-top: 0.5em;
  text-indent: -1em;
  padding-left: 1em;
}
.note::before {
  content: "※";
}

.btn + .note {
  margin: -5px 0 15px 0;
}

.Footer {
  background-color: #029fc8;
  padding: 40px 15px;
  text-align: center;
}
.Footer__copyright {
  color: #fff;
  opacity: 0.75;
}
/*# sourceMappingURL=style.min.css.map */