@charset "UTF-8";
@import url("https://bigs.jp/area/css/reset.css");
@import url("https://bigs.jp/area/css/font.css");
:root {
  --mask-icon-right: url(https://bigs.jp/icon/fontawesome/caret-right-solid.svg) no-repeat center center / contain;
  --mask-icon-link: url(https://bigs.jp/icon/fontawesome/up-right-from-square-solid.svg) no-repeat center center / contain;
  --mask-icon-location: url(https://bigs.jp/icon/fontawesome/location-dot-solid.svg) no-repeat center center / contain;
  --bg-image: linear-gradient(to top left, #0582cb, #00aab5);
  --box-shadow: #57575757 0px 2px 5px;
}

body > main {
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) {
  body > main {
    font-size: 15px;
  }
}

.br-sp {
  display: inline-block;
}

.br-pc {
  display: none;
}

@media (min-width: 768px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline-block;
  }
}
.inner {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .inner {
    width: 90vw;
  }
}
@media (min-width: 992px) {
  .inner {
    width: 85vw;
    max-width: 1300px;
  }
}
/* 各セクション内の統一CSS
--------------------------------------------------------------*/
:is(main > section):not(.mainVisual) {
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  :is(main > section):not(.mainVisual) {
    padding: 4rem 0;
  }
}
:is(main > section) div:has(> h2) {
  text-align: center;
  margin-bottom: 3rem;
}
:is(main > section) h2 {
  font-size: clamp(16px, 4em, 22px);
  color: #003c61;
}
:is(main > section) h2 span {
  display: block;
  font-size: 12px;
}
@media (min-width: 768px) {
  :is(main > section) h2 {
    font-size: clamp(16px, 4em, 28px);
  }
}

/* 各セクション内の統一CSS（aタグ）
--------------------------------------------------------------*/
:is(main > section) [class$="__showMore"] {
  margin: 2.5rem auto 0px;
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1607843137);
  width: 80%;
  max-width: 900px;
}
:is(main > section) [class$="__showMore"] a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  color: #fff;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9em;
  background-color: #007ac1;
  background-image: linear-gradient(to top left, #0582cb, #00aab5);
}
:is(main > section) [class$="__showMore"] a::after {
  content: "";
  -webkit-mask: var(--mask-icon-link);
  mask: var(--mask-icon-link);
  background: #fff;
  display: inline-block;
  width: 11px;
  height: 11px;
}
@media (min-width: 768px) {
  :is(main > section) [class$="__showMore"] a:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) {
  :is(main > section) a {
    opacity: 1;
    transition: all 0.2s;
  }
  :is(main > section) a:has(img):hover {
    opacity: 0.6;
  }
}

/* main image CSS
--------------------------------------------------------------*/
.mainVisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 2/1;
}
@media (min-width: 768px) {
  .mainVisual img {
    max-height: 500px;
    max-width: 1500px;
    aspect-ratio: 3/1;
    margin: 0 auto;
  }
}
.mainVisual__title {
  text-align: center;
  padding: 2rem 1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .mainVisual__title {
    padding: 2rem 0;
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .mainVisual__title {
    max-width: 900px;
  }
}
@media (min-width: 1200px) {
  .mainVisual__title {
    max-width: 1100px;
  }
}
.mainVisual__title h1 {
  font-size: clamp(16px, 4em, 22px);
  color: #17a2a7;
  background: linear-gradient(to bottom left, #0582cb, #00aab5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
@media (min-width: 768px) {
  .mainVisual__title h1 {
    font-size: clamp(16px, 4em, 28px);
  }
}
.mainVisual__caption {
  background: #f8fcff;
  background: #e7f4fd;
  padding: 1rem;
  margin: 0 auto 2rem;
  width: 85%;
}
.mainVisual__caption p.notes {
  font-size: 0.8em;
  margin-top: 1rem;
  color: #474747;
}
@media (min-width: 768px) {
  .mainVisual__caption {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .mainVisual__caption {
    max-width: 900px;
  }
}
@media (min-width: 1200px) {
  .mainVisual__caption {
    max-width: 1300px;
  }
  .mainVisual__caption p {
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* navigation bar CSS
--------------------------------------------------------------*/
.navPageHeader {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 10;
  background: #fafafa;
  background: rgba(0, 60, 97, 0.8784313725);
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5647058824);
}
.navPageHeader ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.navPageHeader li {
  border-right: 1px dashed #8d8d8d;
  border-right: 1px dashed #fff;
}
.navPageHeader li:last-of-type {
  border-right: none;
}
.navPageHeader a {
  display: block;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  font-family: Kiwi Maru, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, sans-serif;
}
@media (min-width: 768px) {
  .navPageHeader a {
    opacity: 1;
    transition: all 0.2s;
    font-size: 1em;
    padding: 0.75rem 0;
  }
  .navPageHeader a:hover {
    background-color: #007ac1;
    background-image: linear-gradient(to top left, #0582cb, #00aab5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .navPageHeader .inner {
    width: 100%;
  }
}

/*　hotel CSS
--------------------------------------------------------------*/
.hotels {
  padding: 0 !important;
}

.hotel {
  padding: 3rem 1rem;
  background: #f8fcff;
}
.hotel__title {
  text-align: center;
  margin-bottom: 3rem;
}
.hotel__title h2::before {
  content: "";
  display: block;
  width: 7em;
  height: 2em;
  margin: 0 auto 1rem;
  background: #17a2a7;
  background: linear-gradient(to bottom left, #0582cb, #00aab5);
  mask: url(https://bigs.jp/okinawa/img/h2_irasuto_02.svg) no-repeat center center/contain;
  -webkit-mask: url(https://bigs.jp/okinawa/img/h2_irasuto_02.svg) no-repeat center center/contain;
}
.hotel__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hotel__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hotel__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hotel__item {
  position: relative;
  counter-increment: num;
  border-radius: 0.3em;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  min-height: 400px;
  background: #fff;
}
.hotel__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "No." counter(num);
  background: #003c61;
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-bottom-right-radius: 0.3em;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hotel__description {
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .hotel__description {
    padding: 1rem;
  }
}
.hotel__name {
  margin-bottom: 0.75rem;
}
.hotel__name h3 {
  font-size: clamp(14px, 4em, 18px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hotel__name h3 {
    min-height: 3.5rem;
  }
}
.hotel__name span {
  display: block;
  font-size: 0.8em;
  margin-bottom: 0.5rem;
  font-weight: 500;
  height: 2em;
}
.hotel__name span.lux {
  display: flex;
  justify-content: space-between;
}
.hotel__name span.lux::after {
  content: "Luxury";
  display: block;
  color: #b1a90d;
  border: 1px solid;
  border-radius: 0.3em;
  padding: 0.1rem 0.3rem;
  font-weight: 600;
}
.hotel__text p {
  font-size: 0.9em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hotel__text p {
    font-size: 0.9em;
    margin-bottom: 1rem;
    height: 5rem;
  }
}
.hotel__text p span {
  display: block;
  font-weight: 600;
  color: #17a2a7;
}
.hotel__text p span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #17a2a7;
  -webkit-mask: var(--mask-icon-location);
  mask: var(--mask-icon-location);
  margin-right: 0.3rem;
}
.hotel__info {
  background: #fafafa;
}
.hotel__info::before {
  content: "= information =";
  color: #17a2a7;
  padding: 0.3rem;
  display: block;
  font-size: 0.85em;
  font-weight: 600;
  text-align: center;
}
.hotel__info dl {
  font-size: 0.9em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5rem;
}
.hotel__info dt {
  width: 30%;
}
.hotel__info dd {
  width: 70%;
}
.hotel__info dd details summary {
  color: #17a2a7;
}
.hotel__price {
  font-size: 10px;
  text-align: right;
  color: #e31345;
  font-weight: 700;
  line-height: 1.2;
}
.hotel__price span {
  font-size: 2em;
}
.hotel__link {
  width: 90%;
  margin: 1rem auto 0;
}
.hotel__link a {
  background-color: #007ac1;
  background-image: linear-gradient(to top left, #0582cb, #00aab5);
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.3em;
  font-size: 0.9em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.3rem;
  column-gap: 0.3rem;
  letter-spacing: 0.05em;
}
.hotel__link a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #fff;
  -webkit-mask: var(--mask-icon-right);
  mask: var(--mask-icon-right);
}
@media (min-width: 768px) {
  .hotel__link a {
    opacity: 1;
    transition: all 0.2s;
  }
  .hotel__link a:hover {
    opacity: 0.6;
  }
}

/*　hotel__image tab CSS
--------------------------------------------------------------*/
.tab img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.tab__panel-box {
  display: none;
}
.tab__panel-box.is-show {
  display: block;
}

.tab__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 0.75rem 0.75rem;
}
@media (min-width: 768px) {
  .tab__menu {
    padding: 0 1rem 1rem;
  }
}
.tab__menu-btn {
  position: relative;
  cursor: pointer;
  color: #5a5656;
  font-weight: 600;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 0.5rem 0;
  border: 1px solid;
  border-color: #17a2a7;
  background-color: #fff;
  border-radius: 0.3em;
  transition: background-color 0.2s ease;
}
.tab__menu-btn.is-active {
  color: #ffffff;
  background-color: #17a2a7;
}
.tab__menu-btn.is-active::before {
  position: absolute;
  left: 50%;
  bottom: 100%;
  content: "";
  margin-left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid;
  border-bottom-color: #17a2a7;
}
.tab__menu p {
  font-size: 0.8em;
}

/* 共通の特集 CSS
--------------------------------------------------------------*/
.commonFeatures__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
}
@media (min-width: 768px) {
  .commonFeatures__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.commonFeatures__list a {
  background: #fff;
  border-radius: 0.3em;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  color: #333;
}
.commonFeatures__list a:nth-of-type(n + 9) {
  display: none;
}
.commonFeatures__list a img {
  aspect-ratio: 8/5;
  -o-object-fit: cover;
  object-fit: cover;
}
.commonFeatures__description {
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .commonFeatures__description {
    padding: 1rem;
  }
}
.commonFeatures__description h3 {
  color: #003c61;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.commonFeatures__description p {
  font-size: 0.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* エリアから探す
--------------------------------------------------------------*/
.areaSearch {
  padding: 3rem 1rem;
}
.areaSearch__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2em;
}
@media (min-width: 768px) {
  .areaSearch__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.areaSearch__list a {
  background: #fff;
  border-radius: 0.3em;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  color: #333;
}
.areaSearch__list a img {
  width: 100%;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.areaSearch__list a h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  padding: 0.5rem 0;
  color: #003c61;
}
.areaSearch__list a h3::after {
  content: "";
  -webkit-mask: var(--mask-icon-link);
  mask: var(--mask-icon-link);
  background: #003c61;
  display: inline-block;
  width: 10px;
  height: 10px;
}
@media (min-width: 768px) {
  .areaSearch__list a h3 {
    font-size: 1.1em;
  }
}

/* よくある質問
--------------------------------------------------------------*/
.faq {
  background: #e7f4fd;
}
.faq li[itemtype="https://schema.org/Question"]:not(:last-of-type)
{
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e9e9e9;
  border-bottom: 1px dashed #fff;
}
.faq li[itemtype="https://schema.org/Question"] h3[itemprop=name]
{
  font-size: 1.1em;
  margin-bottom: 1rem;
  color: #003c61;
  display: inline-flex;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.faq li[itemtype="https://schema.org/Question"] h3[itemprop=name] span
{
  flex: 1;
}
.faq li[itemtype="https://schema.org/Question"] h3[itemprop=name]::before
{
  content: "";
  -webkit-mask: url(https://bigs.jp/icon/fontawesome/circle-question-solid.svg) no-repeat center center/contain;
  mask: url(https://bigs.jp/icon/fontawesome/circle-question-solid.svg) no-repeat center center/contain;
  background: #fff;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #007ac1;
  background-image: linear-gradient(to top left, #0582cb, #00aab5);
}
.faq div[itemprop="acceptedAnswer"] a {
  font-weight: 700;
  color: #007ac1;
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .faq .inner {
    width: 1000px;
  }
  .faq div[itemprop="acceptedAnswer"] a {
    opacity: 1;
    transition: all 0.2s;
  }
  .faq div[itemprop="acceptedAnswer"] a:hover {
    opacity: 0.6;
  }
}
