@charset "UTF-8";
/* ==============================
  base
============================== */
/******************
  font
*******************/
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
.intro {
  height: 100vh;
  overflow: hidden;
}

.intro-content {
  position: relative;
  z-index: 1;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .intro-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.intro-content__description {
  position: relative;
  margin-top: 10%;
  padding: 2.5% 0;
  background: #fff;
  color: #047db8;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .intro-content__description {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 0.5% 0;
    margin-top: 5%;
    font-size: 2rem;
  }
}

.intro-content__description::before {
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: auto;
  width: 50px;
  height: 2px;
  content: "";
  background: #047db8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.intro-content__description::after {
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  bottom: auto;
  right: 0;
  width: 50px;
  height: 2px;
  content: "";
  background: #047db8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.intro-content__title {
  margin-top: 15%;
  margin-left: 5%;
  color: #0581b8;
  text-align: left;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  .intro-content__title {
    margin-top: 10%;
  }
}

.intro-content__title span {
  display: block;
}

.intro-content__title span:nth-child(1) {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 5px;
}

@media screen and (min-width: 600px) {
  .intro-content__title span:nth-child(1) {
    font-size: 4rem;
  }
}

.intro-content__title span:nth-child(2) {
  padding: 3% 0 0 0;
  font-size: 7rem;
  letter-spacing: 5px;
}

@media screen and (min-width: 600px) {
  .intro-content__title span:nth-child(2) {
    font-size: 12rem;
  }
}

.intro-content__title span:nth-child(3) {
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 5px;
}

@media screen and (min-width: 600px) {
  .intro-content__title span:nth-child(3) {
    font-size: 7rem;
  }
}

.intro-content__text {
  margin-top: 5%;
  margin-left: 5%;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 3px #0580b8;
  letter-spacing: 5px;
}

@media screen and (min-width: 600px) {
  .intro-content__text {
    font-size: 4rem;
  }
}

.intro-content__limited {
  position: absolute;
  right: 5%;
  top: 7.5%;
  background: #0580b8;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -webkit-transition: all 0.25s cubic-bezier(0, 1, 0, 1.5) 1s;
  transition: all 0.25s cubic-bezier(0, 1, 0, 1.5) 1s;
  -webkit-transform: translate(0, -30vh);
  transform: translate(0, -30vh);
}

@media screen and (min-width: 600px) {
  .intro-content__limited {
    width: 200px;
    height: 200px;
    -webkit-transform: translate(0, -50vh);
    transform: translate(0, -50vh);
  }
}

.intro-content__limited > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
}

@media screen and (min-width: 600px) {
  .intro-content__limited > span {
    font-size: 5rem;
  }
}

.intro-content__limited.scroll_on {
  -webkit-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

.intro__bg-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

.intro__bg-list li {
  width: 100%;
  padding: 100vh 0 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.intro__bg-list li:nth-child(1) {
  background-image: url(../img/index/topfade/topfade01_s.jpg);
}

@media screen and (min-width: 600px) {
  .intro__bg-list li:nth-child(1) {
    background-image: url(../img/index/topfade/topfade01.jpg);
  }
}

.intro__bg-list li:nth-child(2) {
  background-image: url(../img/index/topfade/topfade02_s.jpg);
}

@media screen and (min-width: 600px) {
  .intro__bg-list li:nth-child(2) {
    background-image: url(../img/index/topfade/topfade02.jpg);
  }
}

.intro__bg-list li:nth-child(3) {
  background-image: url(../img/index/topfade/topfade03_s.jpg);
}

@media screen and (min-width: 600px) {
  .intro__bg-list li:nth-child(3) {
    background-image: url(../img/index/topfade/topfade03.jpg);
  }
}

.summary {
  padding-bottom: 15%;
  background: #379aba;
}

@media screen and (min-width: 600px) {
  .summary {
    padding-bottom: 5%;
  }
}

@media screen and (min-width: 600px) {
  .summary-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.summary-content__title {
  position: relative;
  padding: 20% 5%;
  text-align: left;
  color: #fff;
  text-shadow: 0 0 1px #fff;
  letter-spacing: 5px;
  background: url(../img/index/summary_okinawa.png) no-repeat 90% center;
  background-size: auto 40%;
}

@media screen and (min-width: 600px) {
  .summary-content__title {
    padding: 5%;
    background-size: auto 70%;
    width: 100%;
  }
}

.summary-content__title::after {
  display: block;
  position: absolute;
  top: 20%;
  left: auto;
  bottom: auto;
  right: 12%;
  width: 10%;
  height: 20%;
  content: "";
  background: url(../img/index/summary_pin.png) no-repeat center center;
  background-size: contain;
  opacity: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.5s cubic-bezier(0, 1, 0, 2) 1.5s;
  transition: all 0.5s cubic-bezier(0, 1, 0, 2) 1.5s;
}

@media screen and (min-width: 600px) {
  .summary-content__title::after {
    padding: 5%;
    background-size: auto 70%;
    height: 25%;
  }
}

.summary-content__title span {
  display: block;
  opacity: 0.1;
  font-size: 2.2rem;
}

@media screen and (min-width: 600px) {
  .summary-content__title span {
    font-size: 4rem;
  }
}

.summary-content__title span:nth-child(1) {
  -webkit-transition: all 0.5s 0.5s;
  transition: all 0.5s 0.5s;
}

.summary-content__title span:nth-child(2) {
  -webkit-transition: all 0.5s 1s;
  transition: all 0.5s 1s;
}

.summary-content__title.scroll_on::after {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.summary-content__title.scroll_on span {
  opacity: 1;
}

.summary-content__photo {
  margin: 0 5% 10%;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .summary-content__photo {
    width: 44%;
    margin: 0 0 10% 5%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/index/summary_photo.jpg);
  }
}

.summary-content__photo img {
  opacity: 1;
}

@media screen and (min-width: 600px) {
  .summary-content__photo img {
    opacity: 0;
  }
}

.summary-content__campaign {
  margin: 0 5% 10%;
  padding: 10%;
  border-radius: 5px;
  background: #fff;
  color: #379aba;
  font-size: 4rem;
}

@media screen and (min-width: 600px) {
  .summary-content__campaign {
    width: 44%;
    margin: 0 5% 10% 0;
    padding: 10% 5%;
  }
}

.summary-content__campaign span {
  display: block;
}

@media screen and (min-width: 600px) {
  .summary-content__campaign span {
    font-size: 6rem;
  }
}

.summary-content__campaign span svg {
  width: 100%;
}

.summary-content__campaign span.svg_30off path, .summary-content__campaign span.svg_30off polygon, .summary-content__campaign span.svg_30off rect, .summary-content__campaign span.svg_30off polyline {
  stroke: #379ABA;
  fill: none;
  stroke-width: 3;
  fill-opacity: 0;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}

.summary-content__campaign span.svg_30off.scroll_on path, .summary-content__campaign span.svg_30off.scroll_on polygon, .summary-content__campaign span.svg_30off.scroll_on rect, .summary-content__campaign span.svg_30off.scroll_on polyline {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 0s forwards;
  animation: svg_line 5s ease-in-out 0s forwards;
}

.summary-content__deta {
  color: #fff;
  font-weight: bold;
  font-weight: 2rem;
}

@media screen and (min-width: 600px) {
  .summary-content__deta {
    width: 100%;
    font-size: 4rem;
  }
}

.summary-content__deta > p:nth-child(1) {
  position: relative;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 5%;
  padding: 0 0 5%;
}

@media screen and (min-width: 600px) {
  .summary-content__deta > p:nth-child(1) {
    font-size: 7rem;
    padding: 0 0 1%;
    margin-bottom: 1%;
  }
}

.summary-content__deta > p:nth-child(1)::before {
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: auto;
  width: 100%;
  height: 1px;
  content: "";
  background: #fff;
}

.place {
  padding-bottom: 5%;
}

.place-content__title {
  padding: 15% 0 0;
  color: #379aba;
}

@media screen and (min-width: 600px) {
  .place-content__title {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    padding: 5% 0 0;
  }
}

.place-content__presented {
  color: #2592d4;
  font-size: 1.2rem;
  padding-bottom: 5%;
}

.place-content__presented img {
  width: 60%;
  margin-top: -5px;
}

@media screen and (min-width: 600px) {
  .place-content__presented img {
    width: 300px;
  }
}

.place-content__list-nav {
  padding: 0 5%;
}

@media screen and (min-width: 600px) {
  .place-content__list-nav {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.place-content__text p {
  margin: 5% 0;
  font-size: 2rem;
  color: #379aba;
}

.place-list-nav .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.place-list-nav li {
  display: inline-block;
  font-size: 2.8rem;
  border: 1px solid #379aba;
  border-radius: 5px;
  padding: 0 2.5%;
  margin-bottom: 5%;
  color: #379aba;
}

@media screen and (min-width: 600px) {
  .place-list-nav li {
    display: block;
    width: 30%;
  }
  .place-list-nav li:nth-child(3), .place-list-nav li:nth-child(2), .place-list-nav li:nth-child(1) {
    margin-bottom: 1%;
  }
}

.place-list-nav li span > span {
  font-size: 1.5rem;
}

.place-list-nav li.slick-active {
  background: #379aba;
  color: #fff;
}

.place-list__inner {
  margin: 2%;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.place-list__text {
  background: #379aba;
  padding: 10% 10% 15%;
  color: #fff;
  text-shadow: 0 0 1px #fff;
  font-size: 1.6rem;
}

.place-list__name {
  height: 50px;
}

.place-list__type {
  padding: 5px;
  margin: 0 10% 10%;
  border: 2px #fff solid;
}

.place-apply-btn {
  color: #379aba !important;
  text-shadow: 0 0 1px #379aba;
  border: 2px solid #379aba;
}

.place-title--01 {
  display: block;
  font-size: 1.8rem;
}

@media screen and (min-width: 600px) {
  .place-title--01 {
    font-size: 3rem;
  }
}

.place-title--02 {
  position: relative;
  padding: 0 5%;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 5%;
}

@media screen and (min-width: 600px) {
  .place-title--02 {
    font-size: 7rem;
  }
}

.place-title--02::after {
  display: block;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  right: auto;
  width: 60%;
  height: 1px;
  content: "";
  background: #379aba;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.place-title--03 {
  display: block;
  width: 50%;
  margin: auto;
}

.place-title--03 svg {
  width: 100%;
}

.place-title--03.svg_pickup path, .place-title--03.svg_pickup polygon, .place-title--03.svg_pickup rect, .place-title--03.svg_pickup polyline {
  stroke: #379ABA;
  fill: none;
  stroke-width: 2;
  fill-opacity: 0;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  stroke-linejoin: round;
}

@media screen and (min-width: 600px) {
  .place-title--03.svg_pickup path, .place-title--03.svg_pickup polygon, .place-title--03.svg_pickup rect, .place-title--03.svg_pickup polyline {
    stroke-width: 1;
  }
}

.place-title--03.svg_pickup.scroll_on path, .place-title--03.svg_pickup.scroll_on polygon, .place-title--03.svg_pickup.scroll_on rect, .place-title--03.svg_pickup.scroll_on polyline {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 0s forwards;
  animation: svg_line 5s ease-in-out 0s forwards;
}

@media screen and (min-width: 600px) {
  .point-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.point-content__title {
  padding: 15% 0;
  font-size: 1.6rem;
  color: #379aba;
}

@media screen and (min-width: 600px) {
  .point-content__title {
    padding: 5% 0;
    font-size: 3rem;
  }
}

.point-title--text, .point-title--svg {
  display: block;
}

.point-title--svg {
  font-size: 0;
}

.point-title--svg svg {
  width: 50%;
}

@media screen and (min-width: 600px) {
  .point-title--svg svg {
    width: 65%;
  }
}

.point-title--svg.svg_point path, .point-title--svg.svg_point polygon, .point-title--svg.svg_point rect, .point-title--svg.svg_point polyline {
  stroke: #379ABA;
  fill: none;
  stroke-width: 2;
  fill-opacity: 0;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  stroke-linejoin: round;
}

.point-title--svg.svg_point.scroll_on path, .point-title--svg.svg_point.scroll_on polygon, .point-title--svg.svg_point.scroll_on rect, .point-title--svg.svg_point.scroll_on polyline {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 0s forwards;
  animation: svg_line 5s ease-in-out 0s forwards;
}

.point-item {
  padding: 0 5% 10%;
  /*各写真*/
}

.point-item__title {
  position: relative;
  padding: 10% 0 5%;
  text-align: left;
  color: #379aba;
  font-size: 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (min-width: 600px) {
  .point-item__title {
    width: 100%;
    font-size: 3rem;
    padding: 0 0 5%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .point-item__title br {
    display: none;
  }
}

.point-item__title--text {
  font-weight: bold;
}

.point-item__title--price {
  font-size: 5rem;
  font-weight: normal;
}

.point-item__title--svg-num {
  padding: 0 5% 0 0;
  height: 60px;
}

@media screen and (min-width: 600px) {
  .point-item__title--svg-num {
    position: static;
    height: auto;
  }
}

.point-item__title--svg-num4 {
  margin: 5% 0 0;
}

.point-item__title--svg-num svg {
  width: auto;
  height: 100%;
}

.point-item__text {
  text-align: left;
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .point-item__text {
    width: auto;
    font-size: 2.5rem;
  }
}

.point-item__img {
  padding: 10% 0;
}

@media screen and (min-width: 600px) {
  .point-item1__img {
    padding: 0;
    margin: auto;
  }
}

.point-item1__img-item1 {
  width: 70%;
  margin: 0 0 10% auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 1s;
  transition: 1s;
}

@media screen and (min-width: 600px) {
  .point-item1__img-item1 {
    width: 40%;
    margin: 0 auto 10% 0;
  }
}

.point-item1__img-item2 {
  display: none;
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 1s;
  transition: 1s;
}

@media screen and (min-width: 600px) {
  .point-item1__img-item2 {
    width: 55%;
    margin: -55% 0 10% auto;
  }
}

@media screen and (min-width: 600px) {
  .point-item1__img.scroll_on .point-item-img {
    -webkit-transform: translate(55%, 0);
    transform: translate(55%, 0);
  }
}

@media screen and (min-width: 600px) {
  .point-item2__img {
    width: 60%;
    padding: 0;
    margin: auto;
  }
}

.point-item2__img-item1 {
  width: 75%;
}

@media screen and (min-width: 600px) {
  .point-item2__img-item1 {
    width: 55%;
  }
}

.point-item2__img-item2 {
  width: 70%;
  margin: -30% 0 0 auto;
}

@media screen and (min-width: 600px) {
  .point-item2__img-item2 {
    width: 55%;
    margin: -60% 0 5% auto;
  }
}

.point-item2__img.scroll_on .point-item-img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (min-width: 600px) {
  .point-item3__img {
    padding: 0;
    margin: auto;
  }
}

.point-item3__img-item1 {
  width: 70%;
  margin: 0 0 10% auto;
}

@media screen and (min-width: 600px) {
  .point-item3__img-item1 {
    width: 40%;
  }
}

@media screen and (min-width: 600px) {
  .point-item3__img-item2 {
    width: 55%;
    margin: -55% 0 15%;
  }
}

.point-item3__img.scroll_on .point-item-img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (min-width: 600px) {
  .point-item4__img {
    width: 60%;
    padding: 0;
    margin: 0 auto 5%;
  }
}

.point-item4__img-item1 {
  opacity: 0.2;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.point-item4__img.scroll_on .point-item-img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.point-item-img {
  border-radius: 5px;
  overflow: hidden;
}

.travel {
  padding-bottom: 15%;
}

@media screen and (min-width: 600px) {
  .travel {
    padding-bottom: 5%;
  }
}

@media screen and (min-width: 600px) {
  .travel-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    position: relative;
  }
}

.travel-content__title {
  position: relative;
  margin: 0 1%;
  padding: 10% 0 20%;
  background: url(../img/index/travel/travel_header.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 5px;
}

.travel-content__title::after {
  display: block;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  right: auto;
  width: 20%;
  height: 40%;
  content: "";
  background: url(../img/index/travel/travel_icon.png) no-repeat top center;
  background-size: contain;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media screen and (min-width: 600px) {
  .travel-content__title::after {
    width: 100px;
  }
}

.travel-content__title h2 {
  font-weight: bold;
  font-size: 3.5rem;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .travel-content__title h2 {
    font-size: 7rem;
  }
}

.travel-content__item {
  padding: 10% 0;
}

.travel-item__title {
  color: #379aba;
  font-size: 2rem;
  font-weight: bold;
}

.travel-item__item {
  padding-top: 5%;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (min-width: 600px) {
  .travel-item__item {
    font-size: 4rem;
    padding-top: 0%;
  }
}

@media screen and (min-width: 600px) {
  .travel-popular {
    padding: 0;
    width: 60%;
    position: absolute;
    right: 0;
    top: 40%;
  }
}

@media screen and (min-width: 600px) {
  .travel-inexpensive {
    padding: 0;
    width: 60%;
    position: absolute;
    right: 0;
    top: 55%;
  }
}

@media screen and (min-width: 600px) {
  .travel-temperature {
    width: 40%;
  }
}

.travel-temperature .temperature-chart {
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .travel-temperature .temperature-chart {
    margin-top: 2.5%;
  }
}

.travel .season-line {
  margin: 0 10%;
  position: relative;
  height: 85px;
}

.travel .season-line::after {
  display: block;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  right: auto;
  width: 0;
  height: 1px;
  content: "";
  background: #000;
  -webkit-transition: 1s;
  transition: 1s;
}

.travel .season-line__item {
  position: absolute;
  top: 0;
  font-size: 4rem;
  height: 100%;
  opacity: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.travel .season-line__item:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 1.1s;
  transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 1.1s;
}

.travel .season-line__item:nth-child(2) {
  -webkit-transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 2.2s;
  transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 2.2s;
}

.travel .season-line__item:nth-child(3) {
  -webkit-transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 3.3s;
  transition: all 0.2s cubic-bezier(0, 1, 0, 1.5) 3.3s;
}

.travel .season-line__item::after {
  display: block;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: -18px;
  right: auto;
  width: 0;
  height: 0;
  content: "";
  border: solid transparent;
  border-width: 20px 10px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.travel .season-line__item > span {
  font-weight: bold;
  font-size: 1.8rem;
}

.travel .season-line__item.month1 {
  left: 6.666%;
}

.travel .season-line__item.month2 {
  left: 13.332%;
}

.travel .season-line__item.month3 {
  left: 19.998%;
}

.travel .season-line__item.month4 {
  left: 26.664%;
}

.travel .season-line__item.month5 {
  left: 33.33%;
}

.travel .season-line__item.month6 {
  left: 39.996%;
}

.travel .season-line__item.month7 {
  left: 46.662%;
}

.travel .season-line__item.month8 {
  left: 53.328%;
}

.travel .season-line__item.month9 {
  left: 59.994%;
}

.travel .season-line__item.month10 {
  left: 66.66%;
}

.travel .season-line__item.month11 {
  left: 73.326%;
}

.travel .season-line__item.month12 {
  left: 79.992%;
}

.travel .season-line.scroll_on::after {
  width: 100%;
}

.travel .season-line.scroll_on .season-line__item {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.travel .season-line--popular .season-line__item::after {
  border-top-color: #e0bd71;
}

.travel .season-line--inexpensive .season-line__item::after {
  border-top-color: #379aba;
}

.travel-stay {
  padding-top: 0;
}

@media screen and (min-width: 600px) {
  .travel-stay {
    padding: 0;
    width: 60%;
    position: absolute;
    right: 0;
    top: 70%;
  }
}

.travel-stay__title {
  position: relative;
}

.travel-stay__title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  content: "";
  background-size: auto 100%;
}

.travel-price {
  padding-top: 0;
}

@media screen and (min-width: 600px) {
  .travel-price {
    padding: 0;
    width: 60%;
    position: absolute;
    right: 0;
    top: 80%;
  }
}

.travel-price__title {
  position: relative;
}

.travel-price__title::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  content: "";
  background-size: auto 100%;
}

.access {
  padding: 0 5%;
}

@media screen and (min-width: 600px) {
  .access-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.access-content__title {
  font-size: 0;
  margin-bottom: 5%;
}

@media screen and (min-width: 600px) {
  .access-content__title {
    width: 100%;
  }
}

.access-content__title svg {
  width: 70%;
}

.access-content__title.svg_access path, .access-content__title.svg_access polygon, .access-content__title.svg_access rect, .access-content__title.svg_access polyline {
  stroke: #379ABA;
  fill: none;
  stroke-width: 2;
  fill-opacity: 0;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  stroke-linejoin: round;
}

@media screen and (min-width: 600px) {
  .access-content__title.svg_access path, .access-content__title.svg_access polygon, .access-content__title.svg_access rect, .access-content__title.svg_access polyline {
    stroke-width: 1;
  }
}

.access-content__title.svg_access.scroll_on .st0 {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 0s forwards;
  animation: svg_line 5s ease-in-out 0s forwards;
}

.access-content__map {
  display: block;
  padding: 100% 0 0;
  margin-bottom: 20%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/index/access_map_s.jpg);
}

@media screen and (min-width: 600px) {
  .access-content__map {
    width: 49%;
    padding: 49% 0 0;
  }
}

@media screen and (min-width: 600px) {
  .access-content__access-list {
    width: 49%;
  }
}

.access-list__item {
  margin: 5% 0;
}

.access-list__shop {
  margin: auto;
  border: 2px #379aba solid;
  color: #379aba;
  border-radius: 16px;
  width: 50%;
  font-size: 2rem;
}

.access-list__adress {
  padding: 5% 10%;
  font-size: 1.6rem;
  text-align: left;
}

.description {
  padding: 0 5%;
}

@media screen and (min-width: 600px) {
  .description {
    padding: 0;
  }
}

.description-content {
  position: relative;
}

@media screen and (min-width: 600px) {
  .description-content {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.description-content::before {
  display: block;
  position: absolute;
  top: 10%;
  left: auto;
  bottom: auto;
  right: 0;
  width: 50%;
  height: 60%;
  content: "";
  background: url(../img/index/description_photo.jpg);
  background-size: cover;
  z-index: -1;
  opacity: 0.35;
  border-radius: 5px;
}

.description-content__title {
  width: 60%;
}

.description-content__title h3 {
  font-size: 0;
}

.description-content__title.svg_best path, .description-content__title.svg_best polygon, .description-content__title.svg_best rect, .description-content__title.svg_best polyline {
  stroke: #379ABA;
  fill: none;
  stroke-width: 2;
  fill-opacity: 0;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  stroke-linejoin: round;
}

@media screen and (min-width: 600px) {
  .description-content__title.svg_best path, .description-content__title.svg_best polygon, .description-content__title.svg_best rect, .description-content__title.svg_best polyline {
    stroke-width: 1;
  }
}

.description-content__title.svg_best.scroll_on .st0 {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 0s forwards;
  animation: svg_line 5s ease-in-out 0s forwards;
}

.description-content__title.svg_best.scroll_on .st1 {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 1s forwards;
  animation: svg_line 5s ease-in-out 1s forwards;
}

.description-content__title.svg_best.scroll_on .st2 {
  -webkit-animation: svg_line 5s ease-in-out alternate forwards;
  animation: svg_line 5s ease-in-out alternate forwards;
  -webkit-animation: svg_line 5s ease-in-out 2s forwards;
  animation: svg_line 5s ease-in-out 2s forwards;
}

.description-content__item {
  text-align: left;
}

.description-content__item p {
  margin-bottom: 5%;
  font-size: 1.8rem;
}

.description-apply-btn {
  margin: 0 0 5%;
  color: #379aba !important;
  text-shadow: 0 0 1px #379aba;
  border: 2px solid #379aba;
}

@media screen and (min-width: 600px) {
  .description-apply-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.tgy-fixed-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: #fff;
  z-index: 100;
}

.tgy-fixed-btn__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .tgy-fixed-btn__inner {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tgy-fixed-btn__item {
  display: block;
  position: relative;
  border-radius: 5px;
  width: 45%;
  height: 70%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.tgy-fixed-btn__item p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: bold;
}

.tgy-fixed-btn a {
  display: block;
  color: #fff;
}

.tgy-fixed-btn--form {
  border: #0555b9 1px solid;
  color: #0555b9;
}

.tgy-fixed-btn--line {
  background: #0555b9;
  color: #fff;
}

/* ==============================
	modal
============================== */
.modal_html,
.modal_body {
  overflow: hidden;
}

.modal-layer {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.modal {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  z-index: 1500;
}

.modal.modal_on {
  -webkit-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

.modal.modal_on .modal_inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-inner {
  margin: 5vh 0 0;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  height: 95vh;
}

.modal-content {
  padding: 10% 0 5%;
  overflow-y: scroll;
  height: 100%;
}

.modal-content__title {
  font-size: 2rem;
  font-weight: bold;
  color: #379aba;
}

.modal_close {
  position: absolute;
  left: 10px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: auto;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.modal_close::before, .modal_close::after {
  display: block;
  position: absolute;
  top: 14px;
  width: 20px;
  height: 2px;
  background: #000;
  content: "";
}

.modal_close::before {
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal_close::after {
  left: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
