/* ----------------

Theme Name: 変なホテル金沢 香林坊

---------------- */

/* ---------------

トップページ

--------------- */

/* メインビジュアル */
#mv {
  margin-bottom: 6rem;
}

.mv__inner {
  position: relative;
  z-index: 2;
}

.mv-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  &::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--primary-black);
    opacity: 0.4;
  }

  .mv-slider__list {
    height: 100%;
  }

  .slick-list {
    height: 100%;

    .slick-track {
      height: 100%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

.mv-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 17.7rem);
  min-height: 53rem;
  padding-top: 2.5rem;
}

.mv-content__text {
  width: 100%;
  margin: auto auto 2rem;
}

.mv-content__text__inner {
  width: fit-content;
}

.mv-content__title {
  color: var(--primary-white);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
}

.mv-content__title span {
  display: block;
  font-size: 2.4rem;
  font-style: normal;
  margin-top: 0.5rem;
}

.mv-content__subtitle {
  font-size: 4.2rem;
  color: #f6ff00;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.mv-content__discription {
  font-size: 3rem;
  color: var(--primary-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.mv__title--en {
  font-family: var(--font-family-en);
  background-color: var(--primary-black);
  color: var(--primary-white);
  font-weight: 200;
  padding: 0rem 0.4rem;
}

.mv-banner {
  position: absolute;
  text-align: center;
  top: 1.5rem;
  right: 1.5rem;
  max-width: 24rem;
  width: 20%;
}

.mv-link {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  column-gap: 0.4rem;
}

.mv-link__member {
  position: relative;
  color: var(--primary-white);
  background-color: var(--primary-red);
  font-size: 1.4rem;
  padding: 0.8rem 5rem 0.8rem 1.6rem;
  height: 3.6rem;

  &::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.8rem;
    background-image: url(./img/arrow_wh.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  &::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 1px;
    transform: translateX(-100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: var(--primary-red);
  }
}

.mv-link__bland {
  position: relative;
  color: var(--primary-white);
  background-color: var(--primary-black);
  padding: 0.8rem 5rem 0.8rem 1.6rem;
  font-family: var(--font-family-en);
  font-style: italic;
  height: 3.6rem;

  &::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.8rem;
    background-image: url(./img/arrow_wh.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.mv-sns__list {
  display: flex;
  align-items: center;
  column-gap: 0.4rem;
}

.mv-sns__list > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--primary-black);
  height: 3.6rem;
  aspect-ratio: 1 / 1;
}

.mv-sns__list > li a img {
  height: 100%;
}

.mv-submenu__list {
  display: none;
}

@media (any-hover: hover) {
  .mv-link a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 900px) {
  .mv-submenu__list {
    background-color: var(--primary-black);
    color: var(--primary-white);
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem;
  }

  .mv-submenu__list > li a {
    text-decoration: underline;
  }

  .mv-submenu__language {
    overflow: hidden;
  }

  .mv-submenu__language__title {
    position: relative;
    padding-right: 2rem;
    font-style: italic;
    text-decoration: underline;
    cursor: pointer;

    &::after {
      content: "";
      display: inline-block;
      width: 1rem;
      aspect-ratio: 1 / 1;
      clip-path: polygon(50% 100%, 0 0, 100% 0);
      background-color: var(--primary-white);
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
    }
  }

  .mv-submenu__language__list {
    opacity: 0;
    max-height: 0;
    transition: 0.3s;
  }

  .mv-submenu__language__list.is-active {
    opacity: 1;
    max-height: 100vh;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .mv-slider {
    min-height: 60rem;
    height: 100%;
  }

  .mv-content {
    min-height: 60rem;
    height: 100%;
  }

  .mv-content__subtitle {
    font-size: 2.4rem;
  }

  .mv-content__discription {
    font-size: 2.4rem;
  }

  .mv-banner {
    position: static;
    width: calc(100% - 3.2rem);
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .mv-link {
    flex-wrap: wrap;
  }

  .mv-sns__list {
    justify-content: flex-end;
    width: 100%;
    order: -2;
    margin-bottom: 1rem;
  }
}

/* バナーエリア */
.banner-area__list {
  margin-bottom: 6rem;
}

.banner-area__list > li {
  text-align: center;
}

.banner-area__list > li a {
  max-width: 80rem;
  display: inline-block;
}

@media (any-hover: hover) {
  .banner-area__list > li a:hover {
    opacity: 0.6;
  }
}

/* お知らせ */
#news {
  margin-bottom: 6rem;
}

.news-slider__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-slider__list .slick-track {
  display: flex;
}

.news-slider__item {
  height: auto;
}

.news-slider__item > a {
  border: solid 0.3rem var(--primary-black);
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--primary-white);
}

.news-slider__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}

.news-slider__text {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 6.5rem 2.5rem 2.5rem;

  &::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background-image: url(./img/arrow_bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.news-slider__text h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.news-slider__text__info {
  margin-top: auto;
}

.news-slider__text__category {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.news-slider__text__category > span {
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.news-slider__text__time {
  font-size: 1.2rem;
  text-align: right;
  margin-right: -4rem;
  font-weight: 600;
}

@media (any-hover: hover) {
  .news-slider__item > a:hover {
    background-color: var(--theme-color);
    opacity: 0.8;
  }
}

@media screen and (max-width: 600px) {
  .news-slider__list {
    display: block;
    margin: 0 calc(50% - 50vw) 4rem;
  }

  .news-slider__item > a {
    margin: 0 1.6rem;
  }

  .news-slider__list .slide-arrow.prev-arrow,
  .news-slider__list .slide-arrow.next-arrow {
    width: 2rem;
    aspect-ratio: 1 / 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--theme-color);
    z-index: 2;
  }

  .news-slider__list .slide-arrow.prev-arrow {
    left: 1rem;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
  }

  .news-slider__list .slide-arrow.next-arrow {
    right: 1rem;
    clip-path: polygon(100% 50%, 0 100%, 0 0);
  }
}

/* コンセプト */
#concept {
  margin-bottom: 6rem;
}

.concept__wrap {
  max-width: 85rem;
  margin: 0 auto;
}

.concept__img {
  position: relative;
  aspect-ratio: 16 / 9;
  z-index: 2;
}

.concept__img img,
.concept__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-info {
  margin-bottom: 6rem;
}

.concept-info__inner {
  position: relative;
  display: flex;
  padding-top: 6rem;

  &::before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 20rem;
    margin: 0 calc(50% - 50vw + 5rem);
    position: absolute;
    top: -4rem;
    background-color: var(--theme-color);
    z-index: -1;
  }
}

.concept-info__title {
  min-width: fit-content;
}

.concept-info__title span {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-family-en);
}

.concept-info__title p {
  font-size: 2.8rem;
  font-weight: 600;
}

.concept-info__description {
  position: relative;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.18em;
  position: relative;
  padding: 6rem 0 0 8rem;

  &::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3rem;
    background-color: var(--primary-black);
    transform: rotate(15deg);
  }
}

.concept-checkinflow {
  margin-bottom: 4rem;
}

.concept-detail {
  margin-bottom: 4rem;
}

.concept-detail__def > div {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.concept-detail__def > div > dt {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  width: 12rem;
}

.concept-detail__def > div > dd {
  width: calc(100% - 12rem);
}

.concept-detail__def__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
}

.concept-detail__def__list > li {
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}

.concept-detail__def__item__img {
  width: 6rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.4rem;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.2rem;
}

.concept-detail__def__item figure img {
  width: 100%;
}

.concept-detail__def__item > p {
  width: calc(100% - 5rem - 1rem);
  font-weight: bold;
  line-height: 1.8;
}

.concept-detail__def__lead {
  font-size: 2rem;
  font-weight: 600;
}

.concept-detail__def__lead--satisfaction {
  display: flex;
  align-items: center;
  gap: 2rem 4rem;
}

.concept-detail__def__lead--satisfaction > p {
  letter-spacing: 0.2em;
}

.concept-detail__def__lead--satisfaction + p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.satisfaction__graph {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.satisfaction__graph .chart {
  width: 9rem;
  aspect-ratio: 1 / 1;
}

.satisfaction__graph .circle-bg {
  fill: none;
  stroke: var(--primary-gray);
  stroke-width: 8;
  transform-origin: center;
  transform: scale(0.8);
}

.satisfaction__graph .circle {
  fill: none;
  stroke-width: 8;
  stroke: var(--theme-color);
  transform: rotate(0deg) scale(0.8);
  transform-origin: center;
}

.satisfaction__graph .percentage {
  position: relative;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 4.8rem;
  padding-left: 4rem;
  &::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 0.2rem;
    background-color: var(--primary-gray);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}

.satisfaction__graph .percentage span {
  font-size: 3rem;
}

@media screen and (max-width: 900px) {
  .concept-info__inner {
    display: block;
    padding-top: 4rem;

    &::before {
      margin: 0 calc(50% - 50vw);
    }
  }

  .concept-info__description {
    padding: 1rem 0 0 0;
    &::before {
      display: none;
    }
  }
  .concept-detail__def > div {
    display: block;
  }

  .concept-detail__def > div > dt {
    width: 100%;
    margin-bottom: 1rem;
  }

  .concept-detail__def > div > dd {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .concept-detail__def__list {
    display: block;
  }

  .concept-detail__def__list > li {
    margin-bottom: 1rem;
  }

  .concept-detail__def__lead--satisfaction {
    flex-direction: column-reverse;
  }
}

/* 客室 */
#room {
  margin-bottom: 6rem;
}

.room__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.room__item > a {
  border: solid 0.3rem var(--primary-black);
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--primary-white);
}

.room__item__img {
  width: 100%;
}

.room__item__img img {
  aspect-ratio: 6 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room__item__text {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  height: 100%;
}

.room__item__title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  padding-right: 2rem;

  &::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1rem;
    background-image: url(./img/arrow_bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.room__item__title h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.room__item__text--info {
  font-size: 1.4rem;
}

.room__item__text--price {
  font-size: 1.4rem;
}

.room__item__text--price > div {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.room__item__text--price > div .member {
  color: var(--primary-red);
}

@media (any-hover: hover) {
  .room__item > a:hover {
    background-color: var(--theme-color);
    opacity: 0.8;
  }
}

@media screen and (max-width: 600px) {
  .room__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* おすすめ宿泊プラン */
#plan {
  margin-bottom: 6rem;
}

.plan-slider {
  margin: 0 calc(50% - 50vw + 5rem);
}

.plan-slider__list {
  width: 100%;
  margin-bottom: 4rem;
}

.plan-slider__list .slick-track {
  display: flex;
}

.plan-slider__item {
  width: 34rem;
  margin: 0 1rem;
  height: auto;
}

.plan-slider__item > a {
  display: block;
  border: solid 0.3rem var(--primary-black);
  background-color: var(--primary-white);
}

.plan-slider__img {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.plan-slider__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.plan-slider__text {
  position: relative;
  padding: 2.5rem 6.5rem 2.5rem 2.5rem;

  &::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background-image: url(./img/arrow_bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.plan-slider__text h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plan-slider__text__category {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.plan-slider__text__category > span {
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.plan-slider__text__time {
  text-align: right;
  margin-right: -4rem;
}

@media (any-hover: hover) {
  .plan-slider__item > a:hover {
    background-color: var(--theme-color);
    opacity: 0.8;
  }
}

@media screen and (max-width: 900px) {
  .plan-slider {
    margin: 0 calc(50% - 50vw);
  }

  .plan-slider__list {
    display: block;
  }

  .plan-slider__item {
    width: auto;
    margin: 0 1.6rem;
  }

  .plan-slider__list .slide-arrow.prev-arrow,
  .plan-slider__list .slide-arrow.next-arrow {
    width: 2rem;
    aspect-ratio: 1 / 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--theme-color);
    z-index: 2;
  }

  .plan-slider__list .slide-arrow.prev-arrow {
    left: 1rem;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
  }

  .plan-slider__list .slide-arrow.next-arrow {
    right: 1rem;
    clip-path: polygon(100% 50%, 0 100%, 0 0);
  }
}

/* 会員特典 */
#member {
  padding: 8rem 0;
  margin: 0 calc(50% - 50vw + 5rem);
  background-color: #f5f5f5;
}

.member-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

.member-text__title span {
  position: relative;
  font-size: 6rem;
  color: #ffa741;
  margin: 0 0.8rem;
  display: inline-block;
}

.member-text__title span {
  &::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 1rem;
    border-radius: 50%;
    height: 1rem;
    background-color: #ffa741;
  }
}

.member-list {
  display: flex;
  align-items: flex-start;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}

.member-list > li {
  padding: 4rem;
  background-color: var(--primary-white);
  border-radius: 2rem;
  text-align: center;
  width: calc(100% / 3);
}

.member-list > li:first-of-type {
  margin-top: 4rem;
}

.member-list > li:nth-of-type(3) {
  margin-top: 8rem;
}

.member-list__img {
  display: inline-block;
  width: 6rem;
  margin-bottom: 2rem;
}

.member-list > li p {
  line-height: 1.4;
  font-weight: 600;
}

.member-list > li span {
  font-size: 2.2rem;
  color: #004098;
  display: block;
}

@media screen and (max-width: 900px) {
  #member {
    margin: 0 calc(50% - 50vw);
  }
}

@media screen and (max-width: 600px) {
  .member-text__title {
    font-size: 2rem;
  }

  .member-text__title span {
    font-size: 3.5rem;
  }

  .member-list {
    flex-direction: column;
  }

  .member-list > li {
    width: 100%;
    padding: 2rem;
  }

  .member-list > li:first-of-type {
    margin-top: 0;
  }

  .member-list > li:nth-of-type(3) {
    margin-top: 0;
  }
}

.restaurant-access {
  margin-bottom: 6rem;
}

.restaurant__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./img/top_restaurant-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 9rem 1.6rem;
}

.restaurant__link a {
  position: relative;
  display: block;
  font-size: 3rem;
  font-style: italic;
  font-family: var(--font-family-en);
  max-width: 40rem;
  width: 100%;
  color: var(--primary-white);
  padding: 1.5rem 4rem 1.5rem 2.5rem;
  border: 1px solid var(--primary-white);
  margin: 0 auto;
  z-index: 2;

  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--primary-white);
    opacity: 0;
    transition: 0.3s;
  }

  &::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background-image: url(./img/arrow_wh.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.access__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./img/top_maps-bg.jpg);
  background-size: cover;
  padding: 18rem 1.6rem;

  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--theme-color);
    opacity: 0.2;
  }
}

.access__link a {
  position: relative;
  display: block;
  font-size: 3rem;
  font-style: italic;
  font-family: var(--font-family-en);
  max-width: 40rem;
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 2.5rem;
  border: 1px solid var(--primary-black);
  margin: 0 auto;
  z-index: 2;

  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--theme-color);
    z-index: -1;
    opacity: 0.3;
    transition: 0.3s;
  }

  &::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    background-image: url(./img/arrow_bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media (any-hover: hover) {
  .restaurant__link a:hover {
    &::before {
      opacity: 0.3;
    }
  }

  .access__link a:hover {
    &::before {
      opacity: 0.6;
    }
  }
}

@media screen and (max-width: 600px) {
  .access__link {
    padding: 9rem 1.6rem;
  }
}

/* Service */

#service {
  margin-bottom: 6rem;
}

#service h3 {
  font-size: 2.1rem;
}

#service h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;

  &::before {
    content: "■";
  }
}

.service__wrap {
  max-width: 85rem;
  margin: 0 auto;
}

.service__info__def {
  width: fit-content;
  margin: 0 auto 8rem;
  font-size: 1.4rem;
}

.service__info__def > div {
  display: flex;
  margin-bottom: 1rem;
}

.service__info__def > div:last-of-type {
  margin-bottom: 0;
}

.service__info__def dt {
  width: 14rem;
  padding-right: 2rem;
}

.service__info__def dd {
  width: calc(100% - 14rem);
}

.service__facility__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service__facility__inner__list {
  font-size: 1.4rem;
  list-style: disc;
  padding-left: 2rem;
}

.service__facility__inner__list > li {
  margin-bottom: 0.5rem;
}

.service__facility__inner__list > li:last-of-type {
  margin-bottom: 0;
}

.service__language {
  margin-bottom: 4rem;
}

.service__language__def {
  font-size: 1.4rem;
}

.service__language__def > div {
  display: flex;
  margin-bottom: 1rem;
}

.service__language__def dt {
  width: 14rem;
  padding-right: 2rem;
}

.service__language__def dd {
  width: calc(100% - 14rem);
}

.service__restaurant {
  margin-bottom: 4rem;
  font-size: 1.4rem;
}

.service__restaurant p {
  margin-top: 2rem;
}

.service__credit {
  font-size: 1.4rem;
}

.service__credit p {
  margin-top: 2rem;
}

@media screen and (max-width: 600px) {
  .service__facility__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }

  .service__facility__inner__list {
    font-size: 1.4rem;
  }

  .service__facility__inner__list > li {
    margin-bottom: 0.5rem;
  }
}

#sns {
  margin-bottom: 6rem;
}

.sns__content {
  width: fit-content;
  margin: 0 auto;
}

.sns__content {
  width: fit-content;
  margin: 0 auto;
}

.sns__content h3 {
  font-size: 1.8rem;
}

.sns__content--facebook h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  &::before {
    content: "";
    display: inline-block;
    width: 3rem;
    aspect-ratio: 1 / 1;
    background-image: url(./img/snsicon_fb-bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.sns__content--facebook iframe {
  max-width: 34rem;
  width: 100%;
}

/* ---------------

固定ページ

--------------- */

/* -----共通ここから ----- */

/* ページ キービジュアル */
#page-kv {
  position: relative;
  /* background-image: ; */
  background-size: cover;
  background-position: center;
  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
    background-color: var(--theme-color);
    opacity: 0.5;
  }
}

#page-kv02 {
  position: relative;
  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
    background-color: var(--theme-color);
    opacity: 1;
  }
}

.page-kv__inner {
  position: relative;
  padding: 6rem 0;
  min-height: 27rem;
  display: flex;
  align-items: center;
}

#page-kv02 .page-kv__inner {
  min-height: 18rem;
}

.page-kv__title {
  display: flex;
  column-gap: 2rem;
}

.page-kv__title > span {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  font-family: var(--font-family-en);
  writing-mode: vertical-lr;
  white-space: nowrap;
}

.page-kv__title > h1,
.page-kv__title > div {
  font-size: 1.2rem;
  font-size: 2.2rem;
  font-weight: bold;
  display: inline-block;
  padding-top: 1rem;
  margin-bottom: 0;
}

.aioseo-breadcrumbs {
  font-size: 1.3rem;
  display: flex;
  column-gap: 1rem;
  padding: 1.6rem;
  max-width: 112rem;
  margin: 0 auto 4rem;
}

.aioseo-breadcrumb:last-of-type {
  font-weight: 600;
}

.page-ankerlink__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: -6rem;
  margin-bottom: 6rem;
  font-size: 1.4rem;
}

.page-ankerlink__list > li a {
  text-decoration: underline;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .page-ankerlink__list {
    margin-top: 0;
    justify-content: center;
  }
}

/* -----共通 ここまで ----- */

/* -----コンセプトページ ----- */
.page-concept__wrap {
  max-width: 85rem;
  margin: 0 auto;
}

.page-concept-info {
  margin-bottom: 6rem;
}

.page-concept-info__inner {
  position: relative;
  display: flex;
  padding-top: 6rem;

  &::before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 20rem;
    margin: 0 calc(50% - 50vw + 5rem);
    position: absolute;
    top: 0;
    background-color: var(--theme-color);
    z-index: -1;
  }
}

.page-concept-info__title {
  min-width: fit-content;
}

.page-concept-info__title span {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-family-en);
}

.page-concept-info__title p {
  font-size: 2.8rem;
  font-weight: 600;
}

.page-concept-info__description {
  position: relative;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.18em;
  position: relative;
  padding: 6rem 0 0 8rem;

  &::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3rem;
    background-color: var(--primary-black);
    transform: rotate(15deg);
  }
}

.page-concept-detail {
  margin-bottom: 4rem;
}

.page-concept-detail__def > div {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.page-concept-detail__def > div > dt {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  width: 12rem;
}

.page-concept-detail__def > div > dd {
  width: calc(100% - 12rem);
}

.page-concept-detail__def__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
}

.page-concept-detail__def__list > li {
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}

.page-concept-detail__def__item__img {
  width: 6rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.4rem;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.2rem;
}

.page-concept-detail__def__item figure img {
  width: 100%;
}

.page-concept-detail__def__item > p {
  width: calc(100% - 5rem - 1rem);
  font-weight: bold;
  line-height: 1.8;
}

.page-concept-detail__def__lead {
  font-size: 2rem;
  font-weight: 600;
}

.page-concept-feature__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
  margin-bottom: 12rem;
}

.page-concept-feature__list > li figure {
  aspect-ratio: 1 / 1;
  border: solid 0.3rem var(--primary-black);
  margin-bottom: 2rem;
}

.page-concept-feature__list > li figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-concept-feature__list > li p {
  font-size: 1.8rem;
  font-weight: 600;
  display: grid;
  align-self: flex-start;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  line-height: 1.4;
}

.page-concept-feature__icon {
  position: relative;
  display: inline-block;
  width: 5rem;
  aspect-ratio: 1 / 1;
  background-color: var(--theme-color);
  &::before {
    content: "";
    display: inline-block;
    width: 4rem;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.page-concept-feature__list > li:nth-of-type(3n-2) .page-concept-feature__icon {
  &::before {
    background-image: url(./img/feature_icon01.png);
  }
}

.page-concept-feature__list > li:nth-of-type(3n-1) .page-concept-feature__icon {
  &::before {
    background-image: url(./img/feature_icon02.png);
  }
}

.page-concept-feature__list > li:nth-of-type(3n) .page-concept-feature__icon {
  &::before {
    background-image: url(./img/feature_icon03.png);
  }
}

#page_concept__content01 {
  margin-bottom: 12rem;
}

.page_concept__content01__list,
.page_concept__content02__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.page_concept__content01__thumb {
  position: relative;
}

.page_concept__content01__thumb__img {
  margin: 0 calc(50% - 50vw + 5rem) 4rem;
  aspect-ratio: 3 / 1;
}

.page_concept__content01__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page_concept__content01__thumb__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-white);
  min-width: fit-content;
  width: 40rem;
  text-align: center;
  padding: 1.6rem;
  border: solid 0.2rem var(--primary-black);
}

.page_concept__content01__thumb__text span {
  font-size: 1.4rem;
}

.page_concept__content01__thumb__text h3 {
  margin-bottom: 0;
}

.page_concept__content01__text-area {
  margin: 0 auto 4rem;
  max-width: 86rem;
}

.page_concept__content01__text-area:last-of-type {

}

.page_concept__content01__text-area h4 {
  text-align: center;
}

.page_concept__content01__other {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 86rem;
}

.page_concept__content01__other video,
.page_concept__content01__other img,
.page_concept__content01__other iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.page_concept__content01__column3-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
}

.page_concept__content01__column3-list > li a {
  text-decoration: underline;
}

.page_concept__content01__column3-list > li figure {
  border: solid 0.2rem var(--primary-black);
  aspect-ratio: 1.6 / 1;
  margin-bottom: 2rem;
}

.page_concept__content01__column3-list > li figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page_concept__content01__column3-list > li h5 {
  text-align: center;
}

#page_concept__content02 {
  margin-bottom: 12rem;
}

.page_concept__content02__thumb {
  position: relative;
  margin-bottom: 4rem;
}

.page_concept__content02__thumb__img {
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
  &::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 18rem;
    margin: 0 calc(50% - 50vw + 5rem);
    background-color: var(--theme-color);
    z-index: -1;
  }
}

.page_concept__content02__thumb__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.page_concept__content02__thumb__img video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page_concept__content02__thumb__text {
  text-align: center;
  font-weight: 600;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.page_concept__content02__thumb__text h3 {
  margin-bottom: 1rem;
}

.page_concept__content02__other {
  text-align: left;
  margin: 0 auto 4rem;
  max-width: 86rem;
}

.page_concept__content02__other a {
  color: blue;
  text-decoration: underline;
}

.page_concept__content02__other__img {
  margin: 0 auto;
  max-width: 86rem;
}

#page-concept__satisfaction {
  margin-bottom: 8rem;
}

.page-concept__satisfaction__inner {
  padding: 8rem 4rem;
  background-color: var(--theme-color);
}

.page-concept__satisfaction__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.page-concept__satisfaction__graph {
  position: relative;
  width: fit-content;
  margin: 0 auto 1rem;
}

.page-concept__satisfaction__graph .chart {
  width: 18rem;
  aspect-ratio: 1 / 1;
}

.page-concept__satisfaction__graph .circle-bg {
  fill: none;
  stroke: var(--primary-white);
  transform-origin: center;
  stroke-width: 4;
}

.page-concept__satisfaction__graph .circle {
  fill: none;
  stroke-width: 4;
  stroke: var(--primary-black);
  transform: rotate(0deg);
  transform-origin: center;
}

.page-concept__satisfaction__graph .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 4.8rem;
}

.page-concept__satisfaction__graph .percentage span {
  font-size: 1.8rem;
}

.page-concept__satisfaction__title {
  font-weight: 600;
  font-size: 2.1rem;
  text-align: center;
}

.page-concept__satisfaction__def {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  justify-items: center;
  margin-bottom: 4rem;
}

.page-concept__satisfaction__def > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.page-concept__satisfaction__def > div > dt {
  width: 14rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.page-concept__satisfaction__def > div > dd {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  width: fit-content;
}

.satisfaction-star-rating {
  display: flex;
  gap: 0.2rem;
}

.satisfaction-star {
  position: relative;
  display: inline-block;
  font-size: 2.4rem;
  color: var(--primary-white);
}

.satisfaction-star::before {
  content: "★";
  display: block;
}

.satisfaction-star-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--primary-black);
}

.satisfaction-star-filled::before {
  content: "★";
}

.satisfaction-star-score {
  font-size: 3.2rem;
  font-family: var(--font-family-en);
}

.page-concept__satisfaction__info {
  width: fit-content;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .page-concept-info__inner {
    display: block;
    padding-top: 4rem;

    &::before {
      margin: 0 calc(50% - 50vw);
    }
  }

  .page-concept-info__description {
    padding: 1rem 0 0 0;
    &::before {
      display: none;
    }
  }
  .page-concept-detail__def > div {
    display: block;
  }

  .page-concept-detail__def > div > dt {
    width: 100%;
    margin-bottom: 1rem;
  }

  .page-concept-detail__def > div > dd {
    width: 100%;
  }

  .page_concept__content01__thumb__img {
    margin: 0 calc(50% - 50vw) 4rem;
  }
  .page_concept__content02__thumb__img {
    &::before {
      margin: 0 calc(50% - 50vw);
    }
  }
}

@media screen and (max-width: 600px) {
  .page-concept-detail__def__list {
    display: block;
  }

  .page-concept-detail__def__list > li {
    margin-bottom: 1rem;
  }

  .page-concept-feature__list {
    grid-template-columns: 1fr;
  }

  .page_concept__content01__thumb__img {
    aspect-ratio: 1.6 / 1;
    margin: 0 calc(50% - 50vw);
  }

  .page_concept__content01__thumb__text {
    position: static;
    transform: translate(0, -50%);
  }

  .page_concept__content01__column3-list {
    grid-template-columns: 1fr;
  }

  .page_concept__content02__thumb__img {
    aspect-ratio: 1.6 / 1;
  }

  .page-concept__satisfaction__inner {
    padding: 4rem 1.6rem;
  }

  .page-concept__satisfaction__title {
    font-size: 1.6rem;
  }

  .satisfaction-circular-chart {
    width: 14rem;
  }

  .page-concept__satisfaction__def {
    grid-template-columns: 1fr;
  }
}
/* ----- コンセプトページ ここまで ----- */

/* -----客室ページ ----- */

#type {
  margin-bottom: 12rem;
}

.page-room__type-list {
}

.page-room__type-list > li {
  margin-bottom: 8rem;
}

.page-room__type-list > li:last-of-type {
  margin-bottom: 0;
}

.page-room__type-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.page-room__type-title h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.page-room__type-title span {
}

.page-room__type-title__def {
  display: flex;
  align-items: center;
}

.page-room__type-content {
  border: solid 0.4rem var(--primary-black);
  display: flex;
  margin-bottom: 2rem;
}

.page-room__type-content__slider {
  position: relative;
  width: calc(100% - 46rem);
  min-height: 40rem;
}

.page-room__type-content__slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.page-room__type-content__slider .slick-list {
  height: 100%;
}

.page-room__type-content__slider .slick-track {
  display: flex;
  height: 100%;
}

.page-room__type-content__slider .slick-slide {
  position: relative;
  height: auto;
}

.page-room__type-content__slider .slick-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.page-room__type-content__slider .slick-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.page-room__type-content__slider .slick-dots li {
  border: solid 1px var(--primary-white);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
}
.page-room__type-content__slider .slick-dots li.slick-active {
  background-color: var(--primary-white);
}

.page-room__type-content__slider .slick-dots button {
  display: none;
}

.page-room__type-content__info {
  width: 46rem;
  padding: 2rem;
  font-size: 1.4rem;
}

.page-room__type-content__def {
  margin-top: 2rem;
  font-weight: 600;
}

.page-room__type-content__def > div {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.page-room__type-content__def > div dt {
  width: 8rem;
}

.page-room__type-content__def > div dd {
  font-size: 1.6rem;
}

.page-room__type-content__def--capacity {
  display: flex;
  align-items: flex-start;
  column-gap: 2rem;
}

.page-room__type-content__def--capacity i {
  display: inline-block;
  width: 5rem;
  aspect-ratio: 1 / 1;
  background-color: var(--theme-color);
  padding: 0.2rem;
  border-radius: 0.5rem;
}

.page-room__type-content__def--capacity--number span {
  font-size: 4.2rem;
  font-family: var(--font-family-en);
  line-height: 1;
  font-weight: 700;
}

.page-room__type-content__def--note {
  font-size: 1.2rem;
}

.page-room__type-other {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}

.page-room__type-other--btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.page-room__type-icon__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.page-room__type-icon__list > li {
  position: relative;
  padding-left: 2rem;
  text-align: center;
  max-width: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  &::before {
    content: "";
    display: inline-block;
    height: 100%;
    width: 1px;
    background-color: var(--primary-black);
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(15deg);
    opacity: 0.4;
  }
}

.page-room__type-icon__list > li i {
  display: inline-block;
  width: 4.5rem;
  margin-bottom: 0.5rem;
}

.page-room__type-icon__list > li p {
  font-size: 1rem;
}

.page-room__textbox__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.page-room__textbox__list > li {
  position: relative;
  padding-right: 2rem;
  font-weight: 600;

  &::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%) rotate(30deg);
    background-color: var(--primary-black);
  }
}

.page-room__textbox__list > li:last-of-type {
  padding-right: 0;
  &::after {
    display: none;
  }
}

#amenity,
#facility {
  margin-bottom: 8rem;
}

.page-room__imgbox__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.page-room__imgbox__list figure img {
  display: inline-block;
  aspect-ratio: 1.4 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.page-room__imgbox__list figure figcaption {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .page-room__type-content {
    display: block;
  }

  .page-room__type-content__slider {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    min-height: auto;
  }

  .page-room__type-content__info {
    width: 100%;
  }

  .page-room__type-other {
    justify-content: center;
  }

  .page-room__type-other--btn {
    margin: 0 auto;
  }

  .page-room__type-icon__list {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .page-room__ankerlink__list {
    justify-content: center;
    margin-top: 0;
  }

  .page-room__type-other--btn {
    flex-direction: column;
  }
}

/* -----客室ページ ここまで ----- */

/* -----アクセスページ ----- */

#map {
  margin-bottom: 8rem;
}

.page-access__map__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.page-access__map__title h2 {
  margin-bottom: 0;
}

.page-access__map__title address {
  font-size: 1.4rem;
}

.page-access__gmap {
  aspect-ratio: 2 / 1;
}

.page-access__gmap iframe {
  width: 100%;
  height: 100%;
}

#tourism {
  margin-bottom: 8rem;
}
.page-access__tourism__list .slick-list {
  margin: 0 -1rem;
}
.page-access__tourism__item.slick-slide {
  margin: 0 1rem;
}

.page-access__tourism__list .slick-prev {
  aspect-ratio: 67 / 170;
  height: auto;
  width: 6.7rem;
  background-image: url("./img/slider_pager_prev.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;

  &::before {
    display: none;
  }
}

.page-access__tourism__list .slick-next {
  aspect-ratio: 67 / 170;
  height: auto;
  width: 6.7rem;
  background-image: url("./img/slider_pager_next.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;

  &::before {
    display: none;
  }
}

.page-access__tourism__item {
  border: solid 0.4rem var(--primary-black);
  background-color: var(--primary-white);
}

.page-access__tourism__item__img {
  aspect-ratio: 1.6 / 1;
}

.page-access__tourism__item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-access__tourism__item__text {
  padding: 2rem;
}

.page-access__tourism__item__text h3 {
  font-size: 1.6rem;
}

.page-access__tourism__item__text p {
  font-size: 1.4rem;
}

.page-access__ancher {
  margin: 0 calc(50% - 50vw + 5rem) 4rem;
  background-color: var(--theme-color);
  padding: 4rem 1.6rem;
}

.page-accesss__ancher__title {
  text-align: center;
}

.page-accesss__ancher__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.page-access__means {
  margin-bottom: 8rem;
}

.page-access__means__list {
  margin-bottom: 4rem;
}

.page-access__means__list > li {
  padding: 4rem 1.6rem;
  border: solid 0.4rem var(--primary-black);
  margin-bottom: 2rem;
}

.page-access__means__list > li:last-of-type {
  margin-bottom: 0;
}

.page-access__means__item__title {
  display: flex;
  gap: 2rem;
  max-width: 90rem;
  margin: 0 auto 2rem;
}

.page-access__means__item__title h3 {
  margin-bottom: 0;
}

.page-access__means__item__title > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;

  &::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-top: solid 1px var(--primary-black);
    border-right: solid 1px var(--primary-black);
    transform: rotate(45deg);
  }
}

.page-access__means__item__info {
  font-size: 1.4rem;
  max-width: 90rem;
  margin: 0 auto;
}

.page-access__means__item__info a {
  color: blue;
  text-decoration: underline;
}

.page-access__means__bus {
  text-align: center;
  margin-bottom: 4rem;
}

.page-access__means__bus h3 {
  text-align: center;
}

.page-access__means__bus img {
  margin-bottom: 1rem;
}

.page-access__means__bus p {
  font-weight: 600;
}

.page-access__means__note {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.page-access__means__other {
  max-width: 85rem;
  margin: 0 auto 8rem;
}

.page-access__means__other > h4 {
  text-align: center;
}

.page-access__means__other__img {
  margin-bottom: 2rem;
}

.page-access__means__other__def {
  margin-bottom: 4rem;
}

.page-access__means__other__def > div {
  margin-bottom: 2rem;
}

.page-access__means__other__def > div:last-of-type {
  margin-bottom: 0;
}

.page-access__means__other__def > div dt {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.page-access__means__other__content a {
  color: blue;
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .page-access__ancher {
    margin: 0 calc(50% - 50vw) 4rem;
  }
}
@media screen and (max-width: 600px) {
  .page-access__map__title {
    display: block;
  }

  .page-access__tourism__list .slick-prev {
    width: 4rem;
    left: -1.6rem;
  }

  .page-access__tourism__list .slick-next {
    width: 4rem;
    right: -1.6rem;
  }

  .page-accesss__ancher__list {
    flex-direction: column;
  }

  .page-access__means__item__title {
    flex-direction: column;
  }
}

/* -----アクセスページ ここまで ----- */

/* ----- レストランページ ----- */

.page-restaurant__info {
  margin-bottom: 12rem;
}

.page-restaurant__name {
  border: solid 0.4rem var(--primary-black);
  padding: 4rem 1.6rem;
  margin-bottom: 4rem;
}

.page-restaurant__name__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 90rem;
  margin: 0 auto;
}

.page-restaurant__name span {
  font-family: var(--font-family-en);
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  min-width: fit-content;
}

.page-restaurant__name h2 {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.page-restaurant__info__def {
  font-family: var(--font-family-en);
  font-weight: 700;
  max-width: 90rem;
  margin: 0 auto;

  .text-large {
    font-size: 4rem;
    line-height: 1.2;
  }

  .text-middle {
    font-size: 2.4rem;
  }

  .text-small {
    font-size: 1.4rem;
  }
}

.page-restaurant__info__def > div {
  display: flex;
  align-items: flex-start;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}

.page-restaurant__info__def > div dt {
  display: flex;
  align-items: center;
  width: 11rem;
}

.page-restaurant__info__def > div dt span {
  display: inline-block;
  width: 5rem;
  min-width: fit-content;
  font-size: 1.2rem;
}

.page-restaurant__info__def > div dt i {
  width: 5rem;
  aspect-ratio: 1 / 1;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-restaurant__info__def > div dd {
  width: calc(100% - 11rem);
}

.page-restaurant__info__def__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.page-restaurant__info__def__item__time {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.page-restaurant__info__def__item__time > p {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.page-restaurant__info__def__item__time .close {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  &::before {
    content: "";
    display: inline-block;
    width: 3rem;
    height: 0.3rem;
    background-color: #bbb;
  }
}

.page-restaurant__info__def__item__menu {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.page-restaurant__info__def__item__menu > span {
  display: inline-block;
  min-width: fit-content;
  font-size: 2.4rem;
}

.page-restaurant__info__def__item__menu > p {
  font-size: 2.1rem;
}

.page-restaurant__info__def__item__price {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.page-restaurant__info__def__item__price > span {
  display: inline-block;
  min-width: fit-content;
  font-size: 2.4rem;
}

.page-restaurant__info__def__item__price > p {
  font-size: 2.1rem;
}

.page-restaurant__meal {
}

.page-restaurant__meal__mv {
  position: relative;
}

.page-restaurant__meal__mv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--primary-white);
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1.6rem;
}

.page-restaurant__meal__slider {
  margin: 0 calc(50% - 50vw + 5rem) 4rem;

  &::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: var(--primary-black);
    opacity: 0.2;
    z-index: 2;
  }
}

.page-restaurant__meal__slider .slick-slide {
  height: 50rem;
}

.page-restaurant__meal__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-restaurant__meal__description {
  margin-bottom: 4rem;
}

.page-restaurant__meal__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 2rem;
  margin-bottom: 8rem;
}

.page-restaurant__meal__list__description {
  padding: 2.5rem;
  border: solid 0.4rem var(--primary-black);
}

.page-restaurant__meal__item__img {
  border: solid 0.4rem var(--primary-black);
  background-color: var(--primary-gray);
  margin-bottom: 1rem;
  /* aspect-ratio: 1.6 / 1; */
}

.page-restaurant__meal__item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-restaurant__meal__item__text {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
}

.page-restaurant__service__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

.page-restaurant__service__list > li {
  display: flex;
  align-items: center;
  gap: 2rem 4rem;
}

.page-restaurant__service__item__text {
  width: calc(60% - 4rem);
}

.page-restaurant__service__item__text h3 {
  margin-bottom: 2rem;
}

.page-restaurant__service__item__text span {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}

.page-restaurant__service__item__text p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.page-restaurant__service__item__img {
  width: 40%;
  background-color: var(--primary-gray);
  aspect-ratio: 1.6 / 1;
}

.page-restaurant__service__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .page-restaurant__meal__slider {
    margin: 0 calc(50% - 50vw) 4rem;
  }
}

@media screen and (max-width: 600px) {
  .page-restaurant__name__inner {
    display: block;
  }
  .page-restaurant__name h2 {
    text-align: left;
  }
  .page-restaurant__info__def {
    .text-large {
      font-size: 2.4rem;
      line-height: 1.2;
    }
    .text-middle {
      font-size: 1.8rem;
    }
  }

  .page-restaurant__info__def > div {
    gap: 2rem;
  }

  .page-restaurant__info__def > div dt {
    width: 8rem;
  }

  .page-restaurant__info__def__item__time {
    display: block;
  }

  .page-restaurant__info__def__item__menu {
    display: block;
  }

  .page-restaurant__info__def__item__menu > span {
    font-size: 1.8rem;
  }

  .page-restaurant__info__def__item__menu > p {
    font-size: 1.6rem;
  }

  .page-restaurant__info__def__item__price {
    display: block;
  }

  .page-restaurant__info__def__item__price > span {
    font-size: 1.8rem;
  }

  .page-restaurant__info__def__item__price > p {
    font-size: 1.6rem;
  }

  .page-restaurant__meal__slider .slick-slide {
    height: 35rem;
  }

  .page-restaurant__meal__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-restaurant__meal__list > li:first-of-type {
    grid-column: span 2 / span 2;
  }

  .page-restaurant__meal__list__description {
    grid-column: span 2 / span 2;
    border: none;
    padding: 0;
  }

  .page-restaurant__service__list > li {
    flex-direction: column-reverse;
  }

  .page-restaurant__service__item__text,
  .page-restaurant__service__item__img {
    width: 100%;
  }
}

/* ----- レストランページ ここまで ----- */

/* ----- よくある質問 ----- */
.page-faq__content {
  margin-bottom: 4rem;
}

.page-faq__content h2 {
  font-size: 2.1rem;
}

.page-faq__def__item {
  margin-bottom: 2rem;
}

.page-faq__def__item dt {
  position: relative;
  padding: 2rem 6rem 2rem 6rem;
  border: solid 0.3rem var(--primary-black);
  cursor: pointer;
  transition: 0.3s;

  &::before {
    content: "Q";
    display: inline-block;
    font-family: var(--font-family-en);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2.4rem;
    font-size: 1.8rem;
    line-height: 1;
  }
}

.page-faq__def__item.is-active dt {
  background-color: var(--theme-color);
  margin-bottom: 1.6rem;
}

.page-faq__def--toggle {
  position: absolute;
  width: 4rem;
  aspect-ratio: 1 / 1;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
  &::before,
  &::after {
    content: "";
    display: inline-block;
    font-family: var(--font-family-en);
    width: 2.4rem;
    height: 0.3rem;
    background-color: var(--primary-black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  &::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}

.page-faq__def__item.is-active .page-faq__def--toggle {
  &::before {
    opacity: 0;
  }
  &::after {
    transform: translate(-50%, -50%) rotate(0);
  }
}

.page-faq__def__item dd {
  padding: 0 1.6rem;
  font-size: 1.4rem;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.page-faq__def__item dd a {
  color: blue;
  text-decoration: underline;
}

.page-faq__def__item.is-active dd {
  max-height: 100%;
  opacity: 1;
  visibility: visible;
}

.page-agreement__title {
  padding: 2.4rem 1.6rem;
  border: solid 0.2rem var(--primary-black);
  text-align: center;
}

.page-agreement__content {
  font-size: 1.4rem;
  margin-bottom: 6rem;
}

.page-agreement__content .sub-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.page-agreement__content .min-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.page-agreement__content ul ul,
.page-agreement__content ul ol,
.page-agreement__content ol ul,
.page-agreement__content ol ol {
  padding-left: 1.6rem;
}

/* ----- よくある質問 ここまで ----- */

/* ----- 404 ページ ----- */

#page404-kv {
  padding: 10rem 0;
  background-color: var(--primary-gray);
}

.page404-kv__inner {
  text-align: center;
}

.page404-kv__inner img {
  max-width: 24rem;
  margin-bottom: 4rem;
}

.page404-kv__inner h1 {
  font-size: 2.1rem;
}

/* ----- 404 ページ ここまで ----- */

/* ----- 新着情報 ----- */

.archive-news__list {
  margin-bottom: 8rem;
}

.archive-news__list > li {
  margin-bottom: 4rem;
}

.archive-news__list > li a {
  display: flex;
  border: solid 0.2rem var(--primary-black);
  min-height: 31rem;
  transition: 0.3s;
}

.archive-news__item__text {
  padding: 3rem;
  width: 40%;
}

.archive-news__item__text time {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.archive-news__item__text h2 {
  font-size: 2.1rem;
}

.archive-news__item__text p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.archive-news__item__category {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 1.4rem;
  padding-right: 4rem;

  &::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    aspect-ratio: 52 / 31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-image: url(./img/arrow_bk.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.archive-news__item__category span {
  font-size: 1.2rem;
  padding: 0.2rem 1rem;
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.archive-news__item__img {
  position: relative;
  width: 60%;
}

.archive-news__item__img img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 8rem 0;
  font-weight: 600;
}

.pagination .page-numbers {
  aspect-ratio: 1 / 1;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-gray);
  border-bottom: solid 0.2rem var(--primary-black);
  transition: 0.3s;
}

.pagination .page-numbers.current {
  background-color: var(--theme-color);
}

.pagination .page-numbers.dots {
  pointer-events: none;
}

.pagination .prev.page-numbers {
  position: relative;
  &::before {
    content: "≪";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.pagination .next.page-numbers {
  position: relative;
  &::before {
    content: "≫";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.archive-news__bottom__content {
  margin-bottom: 8rem;
  display: flex;
  column-gap: 4rem;
}

.archive-news__bottom__archive,
.archive-news__bottom__category {
  display: flex;
  column-gap: 2rem;
  font-size: 1.4rem;
}

.archive-news__bottom__archive > span,
.archive-news__bottom__category > span {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  font-family: var(--font-family-en);
  writing-mode: vertical-lr;
  white-space: nowrap;
}

.archive-news__bottom__archive__inner,
.archive-news__bottom__category__inner {
  padding-top: 3rem;
}

.archive-news__bottom__archive__inner #monthly-archive > li,
.archive-news__bottom__category__inner .category-list > li {
  margin-bottom: 0.5rem;
}

#load-more-months {
  display: block;
  width: fit-content;
  margin-left: auto;
}

@media (any-hover: hover) {
  .pagination .page-numbers:hover {
    background-color: var(--theme-color);
  }
  .archive-news__list > li a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 900px) {
  .archive-news__list > li a {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .archive-news__item__text {
    width: 100%;
  }

  .archive-news__item__img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
  }
}

@media screen and (max-width: 600px) {
}

/* ----- 新着情報 ここまで ----- */

/* ----- 投稿ページ ----- */

.single-content {
  margin-bottom: 8rem;
}

.single-content__title > time {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.single-content__title > h1 {
  font-size: 2.1rem;
}

.single-content__title__category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 1.4rem;
  padding-right: 4rem;
}

.single-content__title__category > span {
  font-size: 1.2rem;
  padding: 0.2rem 1rem;
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.single-content__main {
  margin: 8rem 0;
}

.single-content__main a {
  color: blue;
  text-decoration: underline;
}

.single-content__main p {
  margin-bottom: 2rem;
}

/* ----- 投稿ページ ここまで ----- */
