@charset "UTF-8";
/*
ブレイクポイント
-------------------------------------------------------------------*/
/* -------------- カラー変数 -------------- */
/* -------------- フォント -------------- */
.zen-maru {
  font-family: zen-maru-gothic, sans-serif;
  font-style: normal;
}

.shin-go {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-style: normal;
}

.mamelon {
  font-family: mamelon, sans-serif;
  font-style: normal;
}

body {
  width: 100%;
  margin: 0;
  overflow: hidden;
  font-family: zen-maru-gothic, sans-serif;
}

html {
  font-size: 3.75vw;
  color: #000;
  background-color: #fff;
  overflow: auto;
  scroll-behavior: smooth;
  line-height: 1;
}
@media screen and (min-width: 560px) {
  html {
    font-size: min(1.5vw, 16px);
  }
}

a {
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.sp {
  display: block;
}
@media screen and (min-width: 560px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 560px) {
  .tab {
    display: block;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__inner {
  display: flex;
  gap: 10px;
}
.loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  -webkit-animation: bounce 1.2s infinite ease-in-out;
          animation: bounce 1.2s infinite ease-in-out;
}
.loader__dot:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.loader__dot:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.btn {
  display: flex;
  align-items: center;
}
.btn__inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 4.5vw;
  width: min(80vw, 250px);
  height: min(25vw, 50px);
  padding: 0 15px 0 25px;
  border-radius: 25px;
}
@media screen and (min-width: 560px) {
  .btn__inr {
    font-size: min(1.6vw, 18px);
  }
}
.btn__inr.--w {
  color: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 560px) {
  .btn__inr.--w:hover {
    color: #fff;
    background-color: #000;
  }
  .btn__inr.--w:hover::after {
    background-image: url(../images/btn-w.svg);
  }
}
.btn__inr.--w::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/btn-bk.svg);
  background-size: contain;
}

.sec-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 560px) {
  .sec-ttl {
    align-items: center;
  }
}
.activities .sec-ttl .sec-ttl__img {
  width: 30vw;
  height: 17vw;
  position: relative;
  left: 10vw;
}
@media screen and (min-width: 560px) {
  .activities .sec-ttl .sec-ttl__img {
    width: min(15vw, 150px);
    height: min(9vw, 70px);
    left: -120px;
  }
}
.spending .sec-ttl .sec-ttl__img {
  width: 50vw;
  height: 17vw;
  position: relative;
  left: 50vw;
}
@media screen and (min-width: 560px) {
  .spending .sec-ttl .sec-ttl__img {
    width: min(19vw, 190px);
    height: min(8vw, 80px);
    left: 120px;
  }
}
.plans .sec-ttl .sec-ttl__img {
  width: 60vw;
  height: 17vw;
  position: relative;
  left: 15vw;
}
@media screen and (min-width: 560px) {
  .plans .sec-ttl .sec-ttl__img {
    width: min(21vw, 215px);
    height: min(7vw, 70px);
    left: -15px;
  }
}
.sec-ttl .sec-ttl__inr {
  font-size: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 560px) {
  .sec-ttl .sec-ttl__inr {
    font-size: min(25vw, 30px);
  }
}
.sec-ttl .sec-ttl__inr::before, .sec-ttl .sec-ttl__inr::after {
  width: min(7vw, 40px);
  height: min(7vw, 40px);
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  top: 5px;
}
.activities .sec-ttl .sec-ttl__inr {
  color: #fff;
}
.activities .sec-ttl .sec-ttl__inr::before {
  background-image: url(../images/ttl-deco-w01.svg);
  margin-right: 0.3em;
}
.activities .sec-ttl .sec-ttl__inr::after {
  background-image: url(../images/ttl-deco-w02.svg);
  margin-left: 0.3em;
}
.spending .sec-ttl .sec-ttl__inr {
  color: #209889;
}
.spending .sec-ttl .sec-ttl__inr::before {
  background-image: url(../images/ttl-deco-g01.svg);
  margin-right: 0.3em;
}
.spending .sec-ttl .sec-ttl__inr::after {
  background-image: url(../images/ttl-deco-g02.svg);
  margin-left: 0.3em;
}
.plans .sec-ttl .sec-ttl__inr {
  letter-spacing: 0.2em;
  margin-right: -0.2em;
}
.plans .sec-ttl .sec-ttl__inr::before {
  background-image: url(../images/ttl-deco-bk01.svg);
  margin-right: 0.3em;
}
.plans .sec-ttl .sec-ttl__inr::after {
  background-image: url(../images/ttl-deco-bk02.svg);
  margin-left: 0.1em;
}

/*
ヘッダー
-------------------------------------------------------------------*/
.header {
  width: 100%;
  padding: 3vw 0;
  box-shadow: 0px 0 10px -6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 560px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.logo img {
  width: min(25vw, 100px);
  margin: 0 2.5%;
}
@media screen and (min-width: 560px) {
  .logo img {
    margin: 0 15px;
  }
}

/*
メインビジュアル
-------------------------------------------------------------------*/
.slideshow {
  position: relative;
  width: 100%;
  height: 100vw;
  overflow: hidden;
}
@media screen and (min-width: 560px) {
  .slideshow {
    height: 60vw;
  }
}
@media screen and (min-width: 960px) {
  .slideshow {
    height: 80%;
  }
}
.slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.slideshow > img.is-active {
  opacity: 1;
}

.mv {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .mv {
    height: 100vh;
  }
}

.site-ttl {
  text-align: center;
}
.site-ttl__txt {
  padding: 5vw 0;
}
@media screen and (min-width: 560px) {
  .site-ttl__txt {
    padding-top: min(2vw, 25px);
    padding-bottom: min(2vw, 25px);
  }
}
.site-ttl__main {
  font-size: 6vw;
}
@media screen and (min-width: 560px) {
  .site-ttl__main {
    font-size: min(3vw, 32px);
  }
}
.site-ttl__sub {
  font-size: 4vw;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7em;
}
@media screen and (min-width: 560px) {
  .site-ttl__sub {
    font-size: min(1.5vw, 18px);
  }
}
.site-ttl__sub::before, .site-ttl__sub::after {
  content: "";
  display: block;
  width: 21vw;
  height: 0.5vw;
  background-color: #000;
  border-radius: 5px;
}
@media screen and (min-width: 560px) {
  .site-ttl__sub::before, .site-ttl__sub::after {
    width: 90px;
    height: 2px;
  }
}
.site-ttl__sub::before {
  margin-right: 2vw;
}
@media screen and (min-width: 560px) {
  .site-ttl__sub::before {
    margin-right: 15px;
  }
}
.site-ttl__sub:after {
  margin-left: 2vw;
}
@media screen and (min-width: 560px) {
  .site-ttl__sub:after {
    margin-left: 15px;
  }
}

/*
施設一覧
-------------------------------------------------------------------*/
.hotels {
  margin: 15vw auto 0;
}
@media screen and (min-width: 560px) {
  .hotels {
    margin-top: min(10vw, 120px);
  }
}
.hotels__list {
  width: min(90vw, 1119px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 560px) {
  .hotels__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.hotels__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 560px) {
  .hotels__item {
    width: 46%;
  }
}
@media screen and (min-width: 560px) {
  .hotels__item:nth-child(odd):last-child {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .hotels__item:nth-child(odd):last-child .hotels__images {
    width: 46%;
  }
  .hotels__item:nth-child(odd):last-child .hotels__txt {
    width: 46%;
  }
}
.hotels__item:nth-child(n+2) {
  margin-top: 15vw;
}
@media screen and (min-width: 560px) {
  .hotels__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 560px) {
  .hotels__item:nth-child(n+3) {
    margin-top: min(10vw, 120px);
  }
}
.hotels__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hotels__images img {
  -o-object-fit: cover;
     object-fit: cover;
}
.hotels__images img:nth-child(1) {
  width: 100%;
  height: 50vw;
  border-radius: 15px 15px 0 0;
  margin-bottom: 2vw;
}
@media screen and (min-width: 560px) {
  .hotels__images img:nth-child(1) {
    height: min(20vw, 250px);
    margin-bottom: 0.5em;
  }
}
.hotels__images img:nth-child(2), .hotels__images img:nth-child(3) {
  width: 49%;
  height: 30vw;
}
@media screen and (min-width: 560px) {
  .hotels__images img:nth-child(2), .hotels__images img:nth-child(3) {
    height: min(15vw, 162px);
  }
}
.hotels__images img:nth-child(2) {
  border-radius: 0 0 0 15px;
}
.hotels__images img:nth-child(3) {
  border-radius: 0 0 15px 0;
}
.hotels__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hotels__name {
  margin-top: min(5vw, 25px);
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 560px) {
  .hotels__name {
    font-size: min(2vw, 21px);
  }
}
.hotels__body {
  margin-top: min(5vw, 25px);
}
.hotels__btn {
  margin-top: min(5vw, 25px);
}

/*
五島列島MAP
-------------------------------------------------------------------*/
.map {
  background-image: url(../images/goto-bg-sp.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 80vw;
  z-index: -1;
}
@media screen and (min-width: 560px) {
  .map {
    background-image: url(../images/goto-bg-pc.jpg);
    padding-bottom: min(30vw, 300px);
    margin-top: -5vw;
  }
}
@media screen and (min-width: 960px) {
  .map {
    margin-top: -100px;
  }
}
.map__swipe {
  margin: 20vw auto 0;
}
@media screen and (min-width: 560px) {
  .map__swipe {
    display: none;
  }
}
.map__viewport {
  width: 100%;
  height: 800px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.map__img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@media screen and (min-width: 960px) {
  .map__img {
    margin-left: 5vw;
  }
}
@media (min-width: 769px) {
  .map__viewport {
    height: auto;
    overflow: visible;
  }
  .map__img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.map__notice {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 560px) {
  .map__notice {
    display: flex;
    justify-content: flex-end;
  }
}
.map__notice li {
  color: #209889;
  display: flex;
}
.map__notice li::before {
  content: "※";
  margin-right: 3px;
}

/*
五島列島で楽しむあれこれ
-------------------------------------------------------------------*/
.activities {
  position: relative;
}
.activities::before {
  width: 100%;
  height: 40vw;
  right: 0;
  top: -40vw;
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(91, 153, 206) 100%);
}
@media screen and (min-width: 560px) {
  .activities::before {
    height: 100px;
    top: -100px;
  }
}
.activities__top, .activities__bot {
  position: relative;
  padding: 25vw 0;
}
@media screen and (min-width: 560px) {
  .activities__top, .activities__bot {
    padding-top: min(10vw, 120px);
    padding-bottom: min(10vw, 120px);
  }
}
.activities__top::after, .activities__bot::after {
  width: 100%;
  height: 6.5vw;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (min-width: 560px) {
  .activities__top::after, .activities__bot::after {
    height: 3.65vw;
  }
}
.activities__top {
  background-color: #5b99ce;
}
.activities__top::after {
  background-image: url(../images/wave-g-sp.svg);
}
@media screen and (min-width: 560px) {
  .activities__top::after {
    background-image: url(../images/wave-g-pc.svg);
  }
}
.activities__bot {
  background-color: #95c48a;
  padding-top: 0;
}
@media screen and (min-width: 560px) {
  .activities__bot {
    padding-top: min(7vw, 70px);
  }
}
.activities__bot::after {
  background-image: url(../images/wave-w-sp.svg);
}
@media screen and (min-width: 560px) {
  .activities__bot::after {
    background-image: url(../images/wave-w-pc.svg);
  }
}
.activities__ttl {
  color: #fff;
  text-align: center;
  width: min(90vw, 1119px);
  margin: 10vw auto 0;
  overflow: hidden;
}
.activities__ttl.--top {
  background-image: url(../images/kami-goto.svg);
  padding: 30vw 0 0;
}
@media screen and (min-width: 560px) {
  .activities__ttl.--top {
    padding-top: min(10vw, 120px);
    margin-top: min(4vw, 45px);
  }
}
.activities__ttl.--bot {
  background-image: url(../images/shimo-goto.svg);
  padding: 63vw 0 0;
  margin-top: 0;
}
@media screen and (min-width: 560px) {
  .activities__ttl.--bot {
    padding-top: min(18vw, 180px);
  }
}
.activities__ttl.--top, .activities__ttl.--bot {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50vw 50vw;
}
@media screen and (min-width: 560px) {
  .activities__ttl.--top, .activities__ttl.--bot {
    background-size: 200px 150px;
    background-position: center 0;
  }
}
.activities__main {
  font-size: 8vw;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  font-weight: normal;
  position: relative;
}
@media screen and (min-width: 560px) {
  .activities__main {
    font-size: min(3.5vw, 40px);
  }
}
.activities__main::before, .activities__main::after {
  content: "";
  display: inline-block;
  width: 25vw;
  height: min(1vw, 5px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
  background-image: url(../images/dot.svg);
}
@media screen and (min-width: 560px) {
  .activities__main::before, .activities__main::after {
    width: 39%;
  }
}
.activities__main::before {
  position: relative;
  left: -4vw;
}
@media screen and (min-width: 560px) {
  .activities__main::before {
    left: -0.6em;
  }
}
.activities__sub {
  font-size: 3vw;
  letter-spacing: 0.5em;
  font-weight: normal;
  margin-left: 1em;
  margin-top: 0.5em;
}
@media screen and (min-width: 560px) {
  .activities__sub {
    font-size: min(1.2vw, 14px);
  }
}
.activities__inner {
  width: min(90vw, 1119px);
  margin: 10vw auto 0;
  display: grid;
  gap: 5vw;
}
@media screen and (min-width: 560px) {
  .activities__inner {
    margin-top: min(7vw, 70px);
    gap: 3em;
  }
}
.activities__link {
  text-align: center;
  background-image: url(../images/dot.svg);
  background-repeat: repeat-x;
  background-position: center bottom;
  margin-top: 5vw;
}
@media screen and (min-width: 560px) {
  .activities__link {
    margin-top: 0;
  }
}
.activities__link-txt {
  font-size: 6vw;
  padding-bottom: 8vw;
  display: inline-block;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 560px) {
  .activities__link-txt {
    font-size: min(2.5vw, 30px);
    padding-bottom: min(4.5vw, 50px);
  }
}
.activities__link-txt::after {
  width: min(8vw, 45px);
  height: min(8vw, 45px);
  margin-left: 1em;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 560px) {
  .activities__link-txt.--top:hover {
    color: #4283ba;
    text-shadow: 2px 2px 0px rgb(255, 255, 255);
  }
  .activities__link-txt.--top:hover::after {
    background-image: url(../images/btn-blue-on.svg);
  }
}
.activities__link-txt.--top::after {
  background-image: url(../images/btn-blue-off.svg);
}
@media screen and (min-width: 560px) {
  .activities__link-txt.--bot:hover {
    color: #209889;
    text-shadow: 2px 2px 0px rgb(255, 255, 255);
  }
  .activities__link-txt.--bot:hover::after {
    background-image: url(../images/btn-green-on.svg);
  }
}
.activities__link-txt.--bot::after {
  background-image: url(../images/btn-green-off.svg);
}

.activity-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.activity-card__media {
  aspect-ratio: 16/10;
}
.activity-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.activity-card__content {
  padding: 5vw;
}
@media screen and (min-width: 560px) {
  .activity-card__content {
    padding: min(3vw, 45px);
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.activity-card__tag {
  color: #fff;
  display: inline-block;
  padding: 6px 25px;
  border-radius: 999px;
  font-size: 3.5vw;
  line-height: 1;
}
@media screen and (min-width: 560px) {
  .activity-card__tag {
    font-size: min(1.4vw, 14px);
  }
}
.activity-card__tag.--blue {
  background-color: #5b99ce;
}
.activity-card__tag.--green {
  background-color: #95c48a;
}
.activity-card__titleRow {
  margin-top: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 560px) {
  .activity-card__titleRow {
    margin-top: min(3vw, 35px);
  }
}
.activity-card__title {
  font-size: 5vw;
  margin: 0;
}
@media screen and (min-width: 560px) {
  .activity-card__title {
    font-size: min(2.1vw, 24px);
  }
}
.activity-card__title.--blue {
  color: #5b99ce;
}
.activity-card__title.--green {
  color: #95c48a;
}
.activity-card__toggle {
  flex: 0 0 auto;
  width: 11vw;
  height: 11vw;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.activity-card__toggle.--blue {
  border: solid 1px #5b99ce;
}
.activity-card__toggle.--green {
  border: solid 1px #95c48a;
}
.activity-card__chev {
  width: 3vw;
  height: 3vw;
  transform: rotate(45deg);
  transition: transform 240ms ease;
}
.activity-card__chev.--blue {
  border-right: 1px solid #5b99ce;
  border-bottom: 1px solid #5b99ce;
}
.activity-card__chev.--green {
  border-right: 1px solid #95c48a;
  border-bottom: 1px solid #95c48a;
}
.activity-card__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 280ms ease, opacity 200ms ease;
}
.activity-card__text {
  margin: 0;
  margin-top: 5vw;
  line-height: 1.5;
}
@media screen and (min-width: 560px) {
  .activity-card__text {
    margin-top: min(3vw, 35px);
  }
}
.activity-card__text.--blue {
  color: #5b99ce;
}
.activity-card__text.--green {
  color: #95c48a;
}
.activity-card.is-open .activity-card__body {
  max-height: 100vh;
  opacity: 1;
}
.activity-card.is-open .activity-card__chev {
  transform: rotate(-135deg);
}
@media (min-width: 560px) {
  .activity-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: stretch;
  }
  .activity-card__media {
    aspect-ratio: auto;
    max-height: 400px;
  }
  .activity-card__media img {
    height: 100%;
  }
  .activity-card__toggle {
    display: none;
  }
  .activity-card__body {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
  }
}

/*
五島列島での過ごし方
-------------------------------------------------------------------*/
.spending {
  padding-top: 20vw;
}
@media screen and (min-width: 560px) {
  .spending {
    padding-top: min(12vw, 120px);
  }
}
.spending__list {
  color: #209889;
  margin: 15vw auto 0;
  width: min(90vw, 1119px);
}
@media screen and (min-width: 560px) {
  .spending__list {
    margin-top: min(10vw, 120px);
  }
}
.spending__item {
  padding-bottom: 5vw;
}
@media screen and (min-width: 560px) {
  .spending__item {
    padding-bottom: 0;
  }
}
.spending__item:nth-child(n+2) {
  padding-top: 10vw;
  border-top: 1px solid #209889;
}
@media screen and (min-width: 560px) {
  .spending__item:nth-child(n+2) {
    padding-top: min(5vw, 50px);
    border-top: none;
  }
}

.itinerary__txt {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 560px) {
  .itinerary__txt {
    flex-direction: row;
  }
}
.itinerary__list {
  margin-top: min(10vw, 120px);
}
@media screen and (min-width: 560px) {
  .itinerary__list {
    max-width: 70%;
    margin-top: 0;
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
  }
}
.itinerary__item {
  font-size: 4vw;
}
@media screen and (min-width: 560px) {
  .itinerary__item {
    font-size: min(1.6vw, 18px);
    display: flex;
    align-items: center;
  }
}
.itinerary__item:nth-child(n+2)::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3vw;
  margin: 2vw auto 1.5vw;
  background-image: url(../images/arrow-sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 560px) {
  .itinerary__item:nth-child(n+2)::before {
    width: 10px;
    height: 10px;
    margin: 0 25px;
    background-image: url(../images/arrow-pc.svg);
  }
}
.itinerary__day {
  font-size: 6vw;
}
@media screen and (min-width: 560px) {
  .itinerary__day {
    color: #fff;
    font-size: min(1.4vw, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: min(7vw, 80px);
    height: min(7vw, 80px);
    background-color: #209889;
    border-radius: 4vw;
  }
  .itinerary__day span {
    font-size: 1.5em;
    display: block;
    margin-top: 0.1em;
  }
}
.itinerary__images {
  margin-top: 10vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 560px) {
  .itinerary__images {
    margin-top: min(5vw, 50px);
    background-image: url(../images/dot-g.svg);
    background-repeat: repeat-y;
    background-position: center;
    background-size: 10px 100%;
    display: grid;
    gap: 0.5em;
    grid-template-columns: 22.3% 37.8% 37.8%;
  }
}
.itinerary__images img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 49%;
  height: 40vw;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 560px) {
  .itinerary__images img {
    border-radius: 15px;
  }
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day1 {
    grid-template-areas: "img1 img2 img3" ".    img2 img4";
  }
}
.itinerary__images.--day1 img:nth-child(1), .itinerary__images.--day1 img:nth-child(4) {
  display: none;
}
.itinerary__images.--day1 img:nth-child(2) {
  border-radius: 15px 0 0 15px;
}
.itinerary__images.--day1 img:nth-child(3) {
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day1 img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .itinerary__images.--day1 img:nth-child(1) {
    display: block;
    grid-area: img1;
    height: min(15vw, 181px);
    margin-bottom: auto;
  }
  .itinerary__images.--day1 img:nth-child(2) {
    grid-area: img2;
    height: min(25vw, 300px);
    border-radius: 15px;
  }
  .itinerary__images.--day1 img:nth-child(3) {
    grid-area: img3;
    height: min(20vw, 241px);
    border-radius: 15px;
  }
  .itinerary__images.--day1 img:nth-child(4) {
    display: block;
    grid-area: img4;
    width: 60%;
    height: min(15vw, 160px);
    margin-left: auto;
  }
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day2 {
    grid-template-areas: ".    img3 img1" "img4 img3 img2";
  }
}
.itinerary__images.--day2 img:nth-child(1), .itinerary__images.--day2 img:nth-child(2) {
  display: none;
}
.itinerary__images.--day2 img:nth-child(3) {
  border-radius: 15px 0 0 15px;
}
.itinerary__images.--day2 img:nth-child(4) {
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day2 img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .itinerary__images.--day2 img:nth-child(1) {
    display: block;
    grid-area: img1;
    height: min(20vw, 241px);
    margin-bottom: auto;
  }
  .itinerary__images.--day2 img:nth-child(2) {
    display: block;
    grid-area: img2;
    width: 60%;
    height: min(15vw, 160px);
    margin-right: auto;
  }
  .itinerary__images.--day2 img:nth-child(3) {
    grid-area: img3;
    height: min(25vw, 300px);
    border-radius: 15px;
  }
  .itinerary__images.--day2 img:nth-child(4) {
    grid-area: img4;
    height: min(15vw, 160px);
    border-radius: 15px;
  }
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day3 {
    height: min(43vw, 460px);
    grid-template-columns: 37.8% 37.8% 22.3%;
    grid-template-areas: "img1 img2 .   " "img1 img3 img4";
  }
}
.itinerary__images.--day3 img:nth-child(2), .itinerary__images.--day3 img:nth-child(4) {
  display: none;
}
.itinerary__images.--day3 img:nth-child(1) {
  border-radius: 15px 0 0 15px;
}
.itinerary__images.--day3 img:nth-child(3) {
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 560px) {
  .itinerary__images.--day3 img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .itinerary__images.--day3 img:nth-child(1) {
    grid-area: img1;
    height: min(25vw, 300px);
    margin-bottom: auto;
    border-radius: 15px;
  }
  .itinerary__images.--day3 img:nth-child(2) {
    display: block;
    grid-area: img2;
    width: 60%;
    height: min(15vw, 160px);
    margin-right: auto;
    margin-top: auto;
  }
  .itinerary__images.--day3 img:nth-child(3) {
    grid-area: img3;
    height: 100%;
    border-radius: 15px;
  }
  .itinerary__images.--day3 img:nth-child(4) {
    display: block;
    grid-area: img4;
    height: min(15vw, 160px);
    margin-top: auto;
  }
}

/*
ご宿泊プラン
-------------------------------------------------------------------*/
.plans {
  margin: 25vw auto 0;
}
@media screen and (min-width: 560px) {
  .plans {
    margin-top: min(10vw, 120px);
  }
}
.plans__list {
  width: min(90vw, 1119px);
  margin: 15vw auto 0;
}
@media screen and (min-width: 560px) {
  .plans__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: min(10vw, 120px);
  }
}
.plans__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 560px) {
  .plans__item {
    width: 46%;
  }
}
.plans__item:nth-child(n+2) {
  margin-top: 15vw;
}
@media screen and (min-width: 560px) {
  .plans__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 560px) {
  .plans__item:nth-child(n+3) {
    margin-top: min(10vw, 120px);
  }
}
.plans__images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plans__images img {
  -o-object-fit: cover;
     object-fit: cover;
}
.plans__images img:nth-child(1) {
  width: 100%;
  height: 60vw;
  border-radius: 15px;
  margin-bottom: 2vw;
}
@media screen and (min-width: 560px) {
  .plans__images img:nth-child(1) {
    height: min(20vw, 250px);
    margin-bottom: 0.5em;
    border-radius: 15px 15px 0 0;
  }
}
.plans__images img:nth-child(2), .plans__images img:nth-child(3) {
  display: none;
}
@media screen and (min-width: 560px) {
  .plans__images img:nth-child(2), .plans__images img:nth-child(3) {
    display: block;
    width: 49%;
    height: min(15vw, 162px);
  }
}
.plans__images img:nth-child(2) {
  border-radius: 0 0 0 15px;
}
.plans__images img:nth-child(3) {
  border-radius: 0 0 15px 0;
}
.plans__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plans__name {
  font-size: 3.75vw;
  margin-top: min(5vw, 25px);
  text-wrap: initial;
  line-height: 1.5;
}
@media screen and (min-width: 560px) {
  .plans__name {
    font-size: min(1.5vw, 16px);
  }
}
.plans__btn {
  margin-top: min(5vw, 25px);
}

/*
フッター
-------------------------------------------------------------------*/
.footer__inr {
  width: 90%;
  padding: 20vw 0;
  border-top: 1px solid #000;
  margin: 20vw auto 0;
}
@media screen and (min-width: 560px) {
  .footer__inr {
    padding-top: min(8vw, 120px);
    padding-bottom: min(8vw, 120px);
    margin-top: min(8vw, 120px);
  }
}
/*# sourceMappingURL=style.css.map */