@charset "UTF-8";
/* ----------------------------------------
   ■ index.css
---------------------------------------- */
/* RESET
---------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
ul,li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Original */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* @media : SP
---------------------------------------- */
@media screen and (max-width: 768px) and (min-width: 481px) {
  html, body {
    font-size: 1.3020833333vw;
  }
}
@media screen and (max-width: 768px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
@media screen and (max-width: 480px) {
}

/* 共通
---------------------------------------- */
.rel {
  position: relative;
}

.pagelink {
  padding-top: 100px;
  margin-top: -100px;
}

h2.heading {
  font-family: "rift-soft", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #39A8B3;
  font-size: 90px;
  text-align: center;
}

h2.heading span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 21px;
}

.bg-gray {
  background-color: #F3F3F3;
}

.bg-kon {
  background-color: #2A3949;
}

.w600 {
  max-width: 600px;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  margin: 0 auto;
}

.w1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.mt10 {
  margin-top: 10%;
}

.mb5 {
  margin-bottom: 5%;
}

.mb20 {
  margin-bottom: 20%;
}

.mv10 {
  margin: 10% 0;
}

.pv5 {
  padding: 5% 0 1%;
}

.pv10 {
  padding: 10% 0;
}

.main_img {
  max-width: 830px;
  margin: 3% auto 6%;
}

.wrap-fx{
  display: flex;
  justify-content: space-between;
}
.wrap-fx div:first-child{
  width: 40%;
}
.wrap-fx div:last-child{
  width: 56%;
}

.wrap-fx div h3,
.wrap-fx2 div h3 {
  color: #39A8B3;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
.wrap-fx div h3 span,
.wrap-fx2 div h3 span {
  display: block;
  font-size: 18px;
  margin-top: 15px;
}
.wrap-fx div h3 span {
  margin-bottom: 6px;
}


.wrap-fx div p,
.wrap-fx2 div p {
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.5;
}

.wrap-fx div a.lp_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 210px;
  background-color: #39A8B3;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  border-radius: 30px;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  margin-left: 55%;
}
.wrap-fx div a.lp_btn::before {
  content: '';
  display: inline-block;
  background-image: url(../img/icon_yazi_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.wrap-fx div a.lp_btn:hover {
  background-color: #fff;
  color: #39A8B3;
  border: 1px solid #39A8B3;
}
.wrap-fx div a.lp_btn:hover::before {
  background-image: url(../img/icon_yazi_lightblue.png);
}

.info,
.info2,
.info3 {
  background-color: #F3F3F3;
  border-radius: 10px;
  padding: 50px 0;
  margin: 10% 0;
}
.info2 {
  margin: 10% 0 30px;
}
.info3 {
  margin: 30px 0 10%;
}

.wrap-fx2{
  display: flex;
  justify-content: space-evenly;
}
.wrap-fx2 div:first-child{
  width: 50%;
}
.wrap-fx2 div:last-child{
  width: 30%;
}

.wrap-fx3 {
  display: flex;
  justify-content: flex-start;
  margin-left: 5%;
  margin-top: 3%;
}

.wrap-fx3 a.lp_btn,
.wrap-fx3 a.lp_btn2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 240px;
  background-color: #39A8B3;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  border-radius: 30px;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
}
.wrap-fx3 a.lp_btn::before,
.wrap-fx3 a.lp_btn2::before {
  content: '';
  display: inline-block;
  background-image: url(../img/icon_yazi_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.wrap-fx3 a.lp_btn2 {
  width: 300px;
  background-color: #397177;
  margin-left: 20px;
}
.wrap-fx3 a.lp_btn:hover,
.wrap-fx3 a.lp_btn2:hover {
  background-color: #fff;
  color: #39A8B3;
  border: 1px solid #39A8B3;
}
.wrap-fx3 a.lp_btn:hover::before,
.wrap-fx3 a.lp_btn2:hover::before {
  background-image: url(../img/icon_yazi_lightblue.png);
}
.wrap-fx3 a.lp_btn2:hover {
  background-color: #fff;
  color: #397177;
  border: 1px solid #397177;
}
.wrap-fx3 a.lp_btn2:hover::before {
  background-image: url(../img/icon_yazi_darkgreen.png);
}

.info3 .wrap-fx3 {
  margin-top: 0;
}


@media screen and (max-width: 768px) {
  .pagelink {
    padding-top: 0;
    margin-top: 0;
  }
  
  h2.heading {
    font-size: 50px;
  }
  .wrap-fx {
    display: block;
    margin: 50px 20px;
  }
  .wrap-fx div:first-child,
  .wrap-fx div:last-child{
    width: 100%;
  }
  .wrap-fx div.sp-border {
    border-bottom: 2px solid #39A8B3;
    padding-bottom: 50px;
  }
  .wrap-fx div h3,
  .wrap-fx2 div h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .wrap-fx2 div h3 {
    text-align: center;
  }
  .wrap-fx div h3 span,
  .wrap-fx2 div h3 span {
    display: block;
    font-size: 16px;
  }
  .wrap-fx div p,
  .wrap-fx2 div p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }
  .wrap-fx div a.lp_btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding-left: 0;
    font-size: 15px;
  }
  .wrap-fx div a.lp_btn::before {
    width: 25px;
    height: 15px;
  }
  .info,
  .info2,
  .info3 {
    width: 90%;
    border-radius: 0 30px 30px 0;
    padding: 50px 0;
    margin: 20% 0;
  }
  .info2 {
    margin: 20% 0 30px;
  }
  .info3 {
    margin: 30px 0 10%;
  }
  .wrap-fx2{
    display: block;
    margin: 0 20px;
  }
  .wrap-fx2 div:first-child,
  .wrap-fx2 div:last-child{
    width: 100%;
  }
  .wrap-fx3 {
    display: block;
    margin-left: 0;
    margin-top: 0;
  }
  
  .wrap-fx3 a.lp_btn,
  .wrap-fx3 a.lp_btn2 {
    justify-content: center;
    width: 90%;
    margin: 0 auto 10px;
    padding-left: 0;
    font-size: 15px;
  }
  .wrap-fx3 a.lp_btn2 {
    width: 90%;
    background-color: #397177;
    margin-left: 0;
    margin: 0 auto 10px;
  }
  .wrap-fx3 a.lp_btn::before,
  .wrap-fx3 a.lp_btn2::before {
    width: 25px;
    height: 15px;
  }
  .wrap-fx3 a.lp_btn:hover,
  .wrap-fx3 a.lp_btn2:hover {
    background-color: #fff;
    color: #39A8B3;
    border: 1px solid #39A8B3;
  }
  .wrap-fx3 a.lp_btn:hover::before,
  .wrap-fx3 a.lp_btn2:hover::before {
    background-image: url(../img/icon_yazi_lightblue.png);
  }
  .wrap-fx3 a.lp_btn2:hover {
    background-color: #fff;
    color: #397177;
    border: 1px solid #397177;
  }
  .wrap-fx3 a.lp_btn2:hover::before {
    background-image: url(../img/icon_yazi_darkgreen.png);
  }
  
}


/* メニュー
---------------------------------------- */
.menu.active {
  display: none;
}

.menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  position: fixed;
  z-index: 120;
  top: 0;
  padding: 20px;
  width: 100%;
}

.menu ul li{
  padding: 0 15px;
}
.menu ul li:nth-child(1){
  /* width: 150px; */
  /* width: 75px; */
  width: 110px;
}
.menu ul li:nth-child(2){
  /* width: 140px; */
  /* width: 70px; */
  width: 110px;
}
.menu ul li:nth-child(3){
  /* width: 200px; */
  /* width: 109px; */
  width: 146.8px;
}
.menu ul li:nth-child(4){
  /* width: 260px; */
  /* width: 152px; */
  width: 192.1px;
}
.menu ul li:nth-child(5){
  /* width: 170px; */
  /* width: 86px; */
  width: 121.72px;
}


/* バーガーメニュー*/
/* アイコン用 */
.menu-btn {
  position: fixed;
  top: 0;
  left: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 240;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background-color: #39A8B3;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

.menu-btn.on span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
.menu-btn.on span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #fff;
}
.menu-btn.on span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

#menu-btn-check {
  display: none;
}

/* メニュー */
.menu-content {
  width: 70%;
  height: 100vw;
  position: fixed;
  top: 0;
  left: -100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 200;
  background-color: #39A8B3;
  border-bottom-right-radius: 30px;
  transition: all 0.5s;/*アニメーション設定*/
}

.menu-content.on {
  left: 0;/*メニューを画面内へ*/
}

.menu-content ul {
  padding: 70px 30px 30px;
}
.menu-content ul li {
  list-style: none;
}
.menu-content ul li:nth-child(1) {
   width: 219px; 
  /*width: 100px;*/
}
.menu-content ul li:nth-child(2) {
   width: 146px; 
  /*width: 94px;*/
}
.menu-content ul li:nth-child(3) {
  /* width: 219px; */
  width: 146px;
}
.menu-content ul li:nth-child(4) {
  /* width: 303px; */
  width: 202px;
}
.menu-content ul li:nth-child(5) {
  /* width: 172px; */
  width: 114px;
}
.menu-content ul li:nth-child(6) {
  width: 49px;
}
.menu-content ul li:nth-child(7) {
  /* width: 155px; */
  width: 103px;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}
.menu-content ul li:nth-child(6) a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 画像フェードイン */
.slider {
  height: 53vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 80vw;
}
.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}


/* lp_mv
---------------------------------------- */
.lp_mv {
  position: relative;
  height: 48vw;
}
.mv_titel {
  z-index: 9;
  max-width: 36%;
  position: absolute;
  top: 0;
  left: 27%;
  transform: translate(-50%, 30%);
  -webkit-transform: translate(-50%, 30%);
  -ms-transform: translate(-50%, 30%);
}

.mv_slide {
  width: 100%;
  height: 100%;
  max-width: 70%;
  margin-right: 0;
  margin-left: auto;
  display: block;
  position: relative;
}
.mv_slide li {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  animation: image-switch-animation 32s infinite;
}
@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}
.mv_slide li:nth-of-type(1) {
  animation-delay: 0s;
}
.mv_slide li:nth-of-type(2) {
  animation-delay: 8s;
}
.mv_slide li:nth-of-type(3) {
  animation-delay: 16s;
}
.mv_slide li:nth-of-type(4) {
  animation-delay: 24s;
}

@media screen and (max-width: 768px) {
  .lp_mv {
    /* height: 120vw; */
    height: 150vw;
  }
  .mv_titel {
    max-width: 60%;
    margin: 50px auto 20px;
    position: relative;
    left: 0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
  }
  .mv_slide {
    max-width: 90%;
  }
}

/* about
---------------------------------------- */
.about {
  max-width: 980px;
  margin: 10% auto;
}
.about p {
  font-size: 17px;
  text-align: center;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .about p {
    font-size: 14px;
    text-align: left;
    line-height: 2;
    margin: 0 20px;
    text-align: justify;
  }
}

/* HOTELS
---------------------------------------- */
.hotels {
  margin: 10% 0 20%;
}
.hotels .bg-gray {
  max-width: 90%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-top: -30px;
}
.hotels_map {
  background-image: url(../img/hotels_map.png);
  background-size: 80%;
  background-repeat: no-repeat;
  height: 50vw;
  position: relative;
}
.hotels_map ul {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hotels_map ul li {
  width: 320px;
  padding: 20px 0;
  font-size: 21px;
  color: #595757;
  border-bottom: 2px solid #595757;
  position: relative;
}
.hotels_map ul li:last-child {
  border: none;
}
.hotels_map ul li::before {
  content: '';
  display: inline-block;
  background-image: url(../img/icon_yazi_gray.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 60%;
  right: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hotels_map ul li a {
  color: #595757;
  text-decoration: none;
}
.hotels_map ul li span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #39A8B3;
  padding: 5px 0 12px;
}
.hotels_map ul li span.text {
  /* color: #595757; */
  color: #808080;
  font-size: 12px;
  font-weight: 500;
}
.hotels_map ul li:last-child a {
  color: #808080;
}



@media screen and (max-width: 768px) {
  .hotels .bg-gray {
    margin-top: -20px;
  }  
  .hotels_map {
    background-image: url(../img/sp_hotels_map.png);
    background-size: 100%;
    height: auto;
  }
  .hotels_map ul {
    padding-top: 320px;
    padding-bottom: 30px;
    position: relative;
    top: 0;
    right: 0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
  }
  .hotels_map ul li {
    width: 250px;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    position: relative;
  }
  .hotels_map ul li span {
    display: block;
    font-size: 13px;
    padding: 5px 0;
  }
  .hotels_map ul li::before {
    width: 25px;
    height: 15px;
  }
  .hotels_map ul li:last-child {
    border-bottom: 2px solid #595757;
  }
  
}


/* SAPPORO KUSHIRO SHINFURANO HAKODATEONUMA KUSSHARO
---------------------------------------- */
.top-mv__scroll-container {
  position: absolute;
  right: -5%;
  top: -50px;
  z-index: 1;
}
.top-mv__scroll-container2 {
  position: absolute;
  left: -5%;
  top: -50px;
  z-index: 1;
}
.top-mv__scroll {
  aspect-ratio: 1;
  height: 200px;
  height: 7.5rem;
  position: relative;
}
.top-mv__scroll-text {
  -webkit-animation: scroll 10s infinite linear;
  animation: scroll 10s infinite linear;
}
@-webkit-keyframes scroll {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
  }
}
@keyframes scroll {
  0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
  }
}

@media screen and (max-width: 768px) {
  .top-mv__scroll-container,
  .top-mv__scroll-container2 {
    top: 200px;
    right: 25px;
  }
  .top-mv__scroll-container2 {
    right: 25px;
    left: auto;
  }
  .top-mv__scroll {
    height: 6rem;
  }
  
  
}

/* related
---------------------------------------- */
.related h2 {
  width: 340px;
  margin: 0 auto;
}
.related p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin: 30px auto 50px;
}
.related .banner a{
  display: block;
}
.related .banner a:hover{
  opacity: 0.8;
}
.related .banner a:first-child{
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .related h2 {
    width: 80%;
  }
  .related p {
    font-size: 13px;
    line-height: 2;
    margin: 30px auto;
  }
  .related .banner a{
    width: 90%;
    margin: 0 auto;
  }
  
}

/* footer
---------------------------------------- */
footer .note {
  font-size: 13px;
  text-align: center;
  color: #3E3A39;
}
footer a {
  display: block;
/*  width: 40%;*/
  margin: 0 auto;
  font-size: 19px;
  text-align: center;
  color: #3E3A39;
  padding: 50px 0;
  text-decoration: none;
}
footer a::after,
footer a::before {
  content: '|';
  padding: 0 10px;
}
footer a:hover {
  opacity: 0.5;
}

footer .copywriter {
  font-size: 12px;
  text-align: center;
  color: #858585;
}

@media screen and (max-width: 768px) {
  footer .note {
    font-size: 12px;
    line-height: 1.5;
  }
  footer a {
/*    width: 70%;*/
    font-size: 16px;
    padding: 40px 0;
  }
  footer .copywriter {
    font-size: 10px;
  }
}

#gototop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
#gototop a{
  font-size: 25px;
  background: rgba(57,168,179,0.8);
  color: #fff;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 768px) {
    #gototop{
        bottom: 60px;
    }
}