@charset "UTF-8";
.qx-contents {
  font-family: Hiragino Sans, Meiryo, sans-serif;
}

.qx-contents-inner {
  width: 100%;
  max-width: 1000px;
  padding-inline: 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .qx-contents-inner {
    padding-inline: 15px;
  }
}

.qx-mv img {
  width: 100%;
}

.br_ipadmini {
  display: none;
}

@media screen and (max-width: 1110px) {
  .br_ipadmini {
    display: inline-block;
  }
}

/* introduction */
.qx-introduction {
  padding-block: 50px 40px;
}

@media screen and (max-width: 767px) {
  .qx-introduction {
    padding-block: 20px;
    padding-inline: 10px;
  }
}

.qx-introduction-inner {
  background: url(../images/introduction_bubble_pc.png) no-repeat center center;
  background-size: 100% auto;
  max-width: 1290px;
  margin-inline: auto;
  width: 90%;
}

@media screen and (max-width: 1110px) {
  .qx-introduction-inner {
    background-position: center 10%;
  }
}

@media screen and (max-width: 767px) {
  .qx-introduction-inner {
    background-image: url(../images/introduction_bubble_sp.png);
    background-position: center 5%;
    width: 100%;
  }
}

.qx-introduction__text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .qx-introduction__text {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 350px) {
  .qx-introduction__text {
    font-size: 10px;
  }
}

.qx-introduction-links {
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
  justify-content: center;
  text-align: center;
}

.qx-introduction-links li {
  width: fit-content;
}

@media screen and (max-width: 795px) {
  .qx-introduction-links {
    gap: 57px;
  }
}

@media screen and (max-width: 767px) {
  .qx-introduction-links {
    gap: 25px;
    max-width: 600px;
    margin-inline: auto;
  }
  .qx-introduction-links li {
    width: calc(100% / 3 - 25px);
  }
}

/* facilities */
.qx-facilities {
  padding-block: 50px;
}

.qx-facilities#eat {
  background: url(../images/facilities_eat_bg.png) #fef2f3 no-repeat center top;
  background-size: 100% auto;
}

.qx-facilities#play {
  background: url(../images/facilities_play_bg.png) #e6f0f6 no-repeat center top -100px;
  background-size: 100% auto;
}

.qx-facilities#stay {
  background: url(../images/facilities_stay_bg.png) #e5f6eb no-repeat center top 30px;
  background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  .qx-facilities {
    padding-block: 40px;
  }
  .qx-facilities#eat {
    background-image: url(../images/facilities_eat_bg_sp.png);
  }
  .qx-facilities#play {
    background-image: url(../images/facilities_play_bg_sp.png);
    background-position: 0 0;
  }
  .qx-facilities#stay {
    background-image: url(../images/facilities_stay_bg_sp.png);
    background-position: 0 10px;
  }
}

.qx-facilities__title {
  text-align: center;
  margin-block: 50px 100px;
}

@media screen and (max-width: 767px) {
  .qx-facilities__title {
    margin-block: 0 25px;
  }
}

.qx-facilities-category__title {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .qx-facilities-category__title {
    height: 20px;
    margin-bottom: 20px;
  }
  .qx-facilities-category__title img {
    width: auto;
    height: 100%;
  }
}

.qx-facilities-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  overflow: hidden;
  transition: .1s all .5s ease;
}

.is-active .qx-facilities-row {
  max-height: 3000px;
}

@media screen and (max-width: 1080px) {
  .qx-facilities-row {
    column-gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .qx-facilities-row {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
  }
  .is-active .qx-facilities-row {
    max-height: 4000px;
  }
}

.qx-facilities__item {
  font-size: 14px;
  display: grid;
  max-height: 450px;
  transition: max-height .5s ease, padding-block .3s ease,  border-top-width .3s ease, border-bottom-width .3s ease;
  margin-block: 10px;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: #fff;
  border: 2px solid #e70012;
  padding: 18px;
  position: relative;
}

.qx-facilities__item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #e70012 transparent;
  position: absolute;
  bottom: 4px;
  right: 4px;
  opacity: 1;
  transition: .4s opacity .2s;
}

#play .qx-facilities__item {
  border-color: #0067b6;
}

#play .qx-facilities__item::after {
  border-color: transparent transparent #0067b6 transparent;
}

#stay .qx-facilities__item {
  border-color: #01a43b;
}

#stay .qx-facilities__item::after {
  border-color: transparent transparent #01a43b transparent;
}

@media screen and (max-width: 1080px) {
  .qx-facilities__item {
    margin-block: 5px;
    padding: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .qx-facilities__item {
    border-width: 1px;
    padding: 8px;
  }
}

@media screen and (max-width: 767px) {
  .qx-facilities__item {
    margin-block: 5px;
    padding: calc(20 / 750 * 100vw);
  }
  .qx-facilities__item::after {
    border-width: 0 0 11px 11px;
    bottom: 2px;
    right: 2px;
  }
}

.qx-facilities__item-link {
  text-decoration: none;
  color: #222;
  display: contents;
}

body.is-pc {
  /* PCの時、3つ以上は格納 */
}

body.is-pc .qx-facilities-category:not(.is-active) .qx-facilities__item:nth-child(n+4) {
  visibility: hidden;
  max-height: 0;
  margin-block: 0;
  grid-template-rows: 0fr;
  padding: 0;
  border: 0;
}

body.is-sp {
  /* SPの時、4つ以上は格納 */
}

body.is-sp .qx-facilities-category:not(.is-active) .qx-facilities__item:nth-child(n+5) {
  visibility: hidden;
  max-height: 0;
  grid-template-rows: 0fr;
  margin-block: 0;
  padding: 0;
  border: 0;
}

.qx-facilities__img {
  flex-shrink: 0;
}

.qx-facilities__tags {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 5px;
  margin-inline: 8px;
  margin-top: 15px;
}

.qx-facilities__tags li {
  border: 1px solid #222;
  width: calc(50% - 10px);
  max-width: 90px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-weight: 600;
  box-sizing: border-box;
}

.qx-facilities__tags li:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 1080px) {
  .qx-facilities__tags li {
    width: calc(50% - 2px);
  }
}

@media screen and (max-width: 1024px) {
  .qx-facilities__tags {
    margin-top: 12px;
    margin-inline: 0;
  }
  .qx-facilities__tags li {
    height: 20px;
    line-height: 20px;
    font-size: 11px;
  }
  .qx-facilities__tags li:not(:last-child) {
    margin-right: 2px;
  }
}

@media screen and (max-width: 767px) {
  .qx-facilities__tags li {
    font-size: 8px;
    width: calc(50% - 6px);
    max-width: 56px;
    height: 16px;
    line-height: 16px;
  }
  .qx-facilities__tags li:not(:last-child) {
    margin-right: 6px;
  }
}

.qx-facilities__name {
  color: #e70012;
  font-weight: 600;
  margin-inline: 8px;
  font-size: 16px;
}

#play .qx-facilities__name {
  color: #0067b6;
}

#stay .qx-facilities__name {
  color: #01a43b;
}

@media screen and (max-width: 1024px) {
  .qx-facilities__name {
    margin-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .qx-facilities__name {
    font-size: 11px;
  }
}

.qx-facilities__text {
  margin-inline: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
  .qx-facilities__text {
    margin-inline: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .qx-facilities__text {
    font-size: 9px;
    margin-bottom: 13px;
  }
}

.qx-facilities__btn--more {
  cursor: pointer;
  border: 0;
  display: block;
  width: 327px;
  height: 64px;
  margin-top: 30px;
  margin-inline: auto;
  border-radius: 32px;
  text-align: right;
  padding: 0 32px;
}

#eat .qx-facilities__btn--more {
  background-color: #e70012;
}

#play .qx-facilities__btn--more {
  background-color: #0067b6;
}

#stay .qx-facilities__btn--more {
  background-color: #01a43b;
}

@media screen and (max-width: 767px) {
  .qx-facilities__btn--more {
    margin-top: 20px;
    width: 163px;
    height: 32px;
    padding-inline: 18px;
  }
  .qx-facilities__btn--more img {
    width: auto;
    height: 12px;
    vertical-align: middle;
  }
}

/* Area Button */
.qx-area {
  background-image: repeating-linear-gradient(90deg, #0067b6, #0067b6 6px, #1473bc 6px, #1473bc 11px);
  text-align: center;
  padding-block: 68px;
}

.qx-area__btn {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .qx-area {
    padding-block: 26px;
  }
  .qx-area__btn {
    display: block;
    width: calc(647 / 750 * 100vw);
    max-width: 517px;
  }
  .qx-area__link {
    display: block;
    max-width: 325px;
    margin-inline: auto;
  }
}

/* Campaign Banner */
.qx-campaign {
  text-align: center;
  padding-block: 70px;
}

.qx-campaign .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px -10px 60px;
}

.qx-campaign .item {
  width: calc(50% - 20px);
  margin-inline: 10px;
}

@media screen and (max-width: 767px) {
  .qx-campaign {
    padding-block: 30px 45px;
  }
  .qx-campaign .items {
    margin: 0;
  }
  .qx-campaign .item {
    margin: 15px 0;
    width: 100%;
    margin-inline: 0;
  }
}

.qx-campaign__title {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .qx-campaign__title {
    width: calc(327 / 750 * 100vw);
  }
}

.qx-campaign__btn {
  display: block;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .qx-campaign__btn {
    max-width: 228px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .random-banner-area {
    margin: calc(40 / 750 * 100vw) auto 0;
    width: 75%;
    margin-top: 5px;
  }
}

/* PageTop */
.toPagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
}

.toPagetop img {
  transition: opacity 0.2s linear;
}

.toPagetop img:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .toPagetop {
    width: 51px;
    height: 58px;
    right: 20px;
    bottom: 75px;
  }
}
