@charset "UTF-8";
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
section {
  padding: 80px 0;
}
@media all and (max-width: 896px) {
  section {
    padding: 40px 0;
  }
}

h2 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 480px) {
  h2 {
    font-size: 3rem;
  }
}

.important {
  padding: 40px 0 0 !important;
  text-align: center;
  position: relative;
  z-index: 10;
}
.important a {
  padding: 20px;
  color: #fff;
  font-size: 2rem;
  border: 1px solid #000;
  background: #000;
  display: block;
}
.important a:hover:after {
  right: -5px;
}
.important a:after {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin: 0 0 0 10px;
}

.more_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.more_btn a {
  display: inline-block;
  border-bottom: 1px solid #000;
  padding: 7px 0;
}
.more_btn a:hover:after {
  right: -5px;
}
.more_btn a:after {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin: 0 0 0 10px;
}

.bg_plan {
  position: relative;
}
.bg_plan:before {
  content: "";
  display: block;
  width: 20vw;
  height: 50vw;
  position: absolute;
  bottom: 10vw;
  left: -5vw;
  z-index: -1;
  background: url("../../common/images/bg_point04.png") no-repeat center bottom/100% auto;
}
@media all and (max-width: 896px) {
  .bg_plan:before {
    opacity: 0.5;
  }
}
.bg_plan:after {
  content: "";
  display: block;
  width: 10vw;
  height: 20vw;
  position: absolute;
  bottom: -3vw;
  right: 7vw;
  z-index: -1;
  background: url("../../common/images/bg_point04.png") no-repeat center bottom/100% auto;
}
@media all and (max-width: 896px) {
  .bg_plan:after {
    opacity: 0.5;
  }
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 555;
  top: 0;
  left: 0;
  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;
}
@media all and (max-width: 896px) {
  .loader {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}
.loader .img {
  display: none;
}

.loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 896px) {
  .loading {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation img {
  max-width: 155px;
  width: 100%;
  height: auto;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.main {
  padding: 0;
  position: relative;
}
.main .logo {
  width: 100vw;
  height: 100vh;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.9));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.9));
}
@media all and (max-width: 1280px) {
  .main .logo {
    display: none;
  }
}
.main .logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-top: -100px;
}
.main .area_main .slider {
  width: 100vw;
  height: 50vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
.main .area_main .slick-img img {
  width: 100%;
}
@media all and (max-width: 896px) {
  .main .area_main .slick-img img {
    width: auto;
    height: 80vw;
    max-width: none;
  }
}
@media all and (max-width: 480px) {
  .main .area_main .slick-img img {
    height: 100vw;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}
.main .area_main .add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}
.main .area_main .slick-dots {
  bottom: 15px !important;
}
.main .area_main ul li {
  position: relative;
}
.main .area_main ul li span {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -35%);
          transform: translate(-50%, -35%);
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 90%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
@media all and (max-width: 480px) {
  .main .area_main ul li span {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 480px) {
  .main .slick-dots {
    bottom: 0 !important;
  }
}

.intro {
  position: relative;
  padding-bottom: 0;
}
@media all and (max-width: 480px) {
  .intro {
    padding-top: 30px !important;
  }
}
.intro:before {
  content: "";
  display: block;
  width: 20vw;
  height: 25vw;
  background: url("../../common/images/bg_point01.png") no-repeat center center/100% 100%;
  position: absolute;
  left: -3%;
  bottom: 0;
  z-index: -1;
}
@media all and (max-width: 480px) {
  .intro:before {
    height: 50vw;
    width: 50vw;
    opacity: 0.5;
  }
}
.intro .area_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro .area_intro .box_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro .area_intro .box_title h1 {
  font-size: 4.5rem;
  letter-spacing: 15px;
  display: inline-block;
}
@media all and (max-width: 896px) {
  .intro .area_intro .box_title h1 {
    font-size: 4rem;
  }
}
@media all and (max-width: 480px) {
  .intro .area_intro .box_title h1 {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 5px;
  }
}
.intro .area_intro .sub_copy {
  display: inline-block;
  line-height: 2.8em;
  margin-top: 30px;
}
@media all and (max-width: 480px) {
  .intro .area_intro .sub_copy {
    line-height: 2em;
  }
}

.column {
  position: relative;
}
.column:before {
  content: "";
  display: block;
  width: 20vw;
  height: 80vw;
  position: absolute;
  bottom: -10vw;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .column:before {
    opacity: 0.5;
  }
}
@media all and (max-width: 480px) {
  .column:before {
    width: 30vw;
  }
}
.column.bg_r:before {
  background: url("../../common/images/bg_point02.png") no-repeat left center/100% auto;
  right: -10vw;
}
@media all and (max-width: 896px) {
  .column.bg_r:before {
    right: -2vw;
  }
}
.column.bg_r .sec_txt {
  padding-right: 10vw;
}
@media all and (max-width: 896px) {
  .column.bg_l .area_column {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
.column.bg_l:before {
  background: url("../../common/images/bg_point03.png") no-repeat left center/100% auto;
  left: -10vw;
}
.column.bg_l .sec_txt {
  padding-left: 10vw;
}
.column .area_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.column .area_column .sec_img {
  width: calc(100% - 550px);
}
@media all and (max-width: 896px) {
  .column .area_column .sec_img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.column .area_column .sec_txt {
  width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media all and (max-width: 896px) {
  .column .area_column .sec_txt {
    width: 100%;
    padding: 30px 15px;
  }
}
.column .area_column .sec_txt .ttl {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  letter-spacing: 10px;
  display: inline-block;
}
.column .area_column .sec_txt .ttl p {
  font-size: 2.4rem;
}
@media all and (max-width: 480px) {
  .column .area_column .sec_txt .ttl p {
    font-size: 1.5rem;
  }
}
.column .area_column .sec_txt .ttl h3 {
  font-size: 4rem;
}
@media all and (max-width: 480px) {
  .column .area_column .sec_txt .ttl h3 {
    font-size: 2.5rem;
  }
}
.column .area_column .sec_txt > p {
  margin-top: 50px;
  text-align: center;
  line-height: 2em;
}
@media all and (max-width: 480px) {
  .column .area_column .sec_txt > p {
    margin-top: 20px;
    text-align: left;
  }
}
.column .area_column .bnr {
  max-width: 500px;
  margin: 100px auto 0;
  text-align: center;
}
@media all and (max-width: 480px) {
  .column .area_column .bnr {
    margin: 40px 20px 0;
  }
}

section.plan .area_plan .sec_title {
  text-align: center;
  margin-bottom: 50px;
}
section.plan .area_plan .sec_title h2 {
  margin-bottom: 0;
}
section.plan .area_plan .sec_title > p {
  font-size: 2.5rem;
  letter-spacing: 5px;
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .picture {
  width: 30%;
}
@media all and (max-width: 896px) {
  section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .picture {
    width: 100%;
    margin: 15px 0 0 0;
    text-align: center;
  }
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan {
  width: calc(70% - 20px);
}
@media all and (max-width: 896px) {
  section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan {
    width: 100%;
  }
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .plan a {
  font-size: 1.7rem;
  font-weight: bold;
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist {
  margin-top: 30px;
}
@media all and (max-width: 480px) {
  section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist {
    margin-top: 10px;
  }
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist ul {
  margin-top: 5px;
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist ul li {
  margin: 3px 0;
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist ul li:before {
  content: "・";
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .roomlist ul li a {
  text-decoration: underline;
  color: #245E9C;
}
section.plan .area_plan .sec_plan #recommend_489ban > div.PlanView .explan .comment {
  display: none;
}

.sns {
  padding: 0 0 80px;
}
.sns .area_sns > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sns .area_sns > ul > li {
  width: 44.5%;
  border: 1px solid #dddfe2;
  padding: 20px;
}
@media all and (max-width: 896px) {
  .sns .area_sns > ul > li {
    width: 42%;
    padding: 15px;
  }
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li {
    width: 100%;
    padding: 0;
  }
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li:last-child {
    margin-top: 15px;
  }
}
.sns .area_sns > ul > li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
}
.sns .area_sns > ul > li p img {
  margin-right: 0.8em;
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li p img {
    margin-right: 0.4em;
    max-width: 25px;
  }
}
.sns .area_sns > ul > li p a {
  pointer-events: none;
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li p a {
    pointer-events: auto;
    display: block;
    padding: 15px;
    width: 100%;
    text-align: center;
    background: #fff;
  }
}
.sns .area_sns > ul > li .insta_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横に3列 */
  gap: 16px;
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li .insta_list {
    grid-template-columns: repeat(3, 1fr);
    width: 95%;
    gap: 8px;
    margin: 0 auto 24px;
  }
  .sns .area_sns > ul > li .insta_list > li:nth-of-type(n+4) {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li .banner {
    display: none;
  }
}
.sns .area_sns > ul > li iframe {
  width: 100%;
}
@media all and (max-width: 480px) {
  .sns .area_sns > ul > li iframe {
    display: none;
  }
}

.birdview {
  background: url("../images/bg_img.jpg") no-repeat center center/cover;
}
.birdview .area_birdview .sec_birdview {
  color: #fff;
}
.birdview .area_birdview .sec_birdview h2 {
  text-align: left;
  font-size: 3rem;
  margin-bottom: 20px;
}
.birdview .area_birdview .sec_birdview p {
  line-height: 2em;
}
.birdview .area_birdview .link_btn {
  margin-top: 200px;
}

.facility .area_facility .slide_facility li {
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.facility .area_facility .slide_facility li > div {
  position: relative;
  background: #000;
}
.facility .area_facility .slide_facility li > div p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 3px;
  font-size: 2rem;
  z-index: 1;
}
.facility .area_facility .slide_facility li > div img {
  opacity: 0.8;
}
.facility .area_facility .slide_facility .slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.facility .area_facility .slide_facility .next-arrow {
  right: 20px;
}
.facility .area_facility .slide_facility .prev-arrow {
  left: 20px;
}
.facility .area_facility .more_btn {
  margin-top: 60px;
}

.spend .area_spend .ttl {
  text-align: center;
}
.spend .area_spend .ttl > p {
  font-size: 2.2rem;
  letter-spacing: 3px;
}
.spend .area_spend .sec_spend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.spend .area_spend .sec_spend li {
  width: calc(33.333% - 20px);
  margin: 10px;
}
.spend .area_spend .sec_spend li p {
  margin-top: 10px;
}
.spend .area_spend .sec_spend li p span {
  display: block;
  font-size: 2rem;
}

.info {
  background: #F2F2F2;
}
.info .area_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.info .area_info .sec_title {
  width: 250px;
  position: relative;
}
@media all and (max-width: 896px) {
  .info .area_info .sec_title {
    width: 100%;
  }
}
.info .area_info .sec_title h2 {
  text-align: left;
  margin-bottom: 0;
}
.info .area_info .sec_title > p {
  font-size: 2.2rem;
  letter-spacing: 3px;
}
.info .area_info .sec_title .more_btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media all and (max-width: 896px) {
  .info .area_info .sec_title .more_btn {
    position: absolute;
    top: -20px;
    right: 0;
  }
}
.info .area_info .sec_info {
  width: calc(100% - 280px);
}
@media all and (max-width: 896px) {
  .info .area_info .sec_info {
    width: 100%;
    margin-top: 30px;
  }
}
.info .area_info .sec_info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media all and (max-width: 480px) {
  .info .area_info .sec_info dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.info .area_info .sec_info dl dt {
  min-width: 130px;
  max-width: 130px;
  margin-right: 20px;
}
@media all and (max-width: 480px) {
  .info .area_info .sec_info dl dt {
    max-width: 100%;
    width: 100%;
    margin: 0 0 15px 0;
    height: 150px;
  }
}
.info .area_info .sec_info dl dt img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;"; /*IE対策*/
  width: 100%;
  height: 100% !important;
}
.info .area_info .sec_info dl dd {
  width: 100%;
}
.info .area_info .sec_info dl dd h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.info .area_info .sec_info dl dd h2 a {
  color: #245E9C;
}
.info .area_info .sec_info dl dd p {
  font-size: 1.4rem;
}

.bg_purple {
  background-color: #E8E6F3;
  margin-top: 100px;
  margin-bottom: 20px;
  padding: 0 100px 80px;
}
@media all and (max-width: 480px) {
  .bg_purple {
    padding: 0 10px 64px;
  }
}
.bg_purple .top-banner {
  margin: 0;
}
.bg_purple p {
  text-align: center;
  font-weight: 700;
  color: #AB17B8;
  font-size: 1.8rem;
  padding: 40px;
}
@media all and (max-width: 480px) {
  .bg_purple p {
    font-size: 2.4rem;
    padding: 32px 12px;
  }
}

.top-banner {
  text-align: center;
  margin: 100px 0 20px;
  display: block;
}

#recommend_489ban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media all and (max-width: 480px) {
  #recommend_489ban {
    display: block;
  }
}
#recommend_489ban .PlanView {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}
#recommend_489ban .picture {
  width: 100% !important;
}
#recommend_489ban .explan {
  margin-top: 10px;
  width: 100% !important;
}
#recommend_489ban .roomlist {
  display: none;
}