@charset "UTF-8";

@media screen and (max-width: 1680px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 968px) {
  html {
    font-size: 7px;
  }
}

.sp {
  display: none !important;
}

.pc {
  display: block;
}

table tr th.pc,
table tr td.pc {
  display: table-cell;
}

/*汎用flex*/
.flex {
  display: flex;
}

/*--------------------------------------------------------------------------
部品
--------------------------------------------------------------------------*/
/*------------------------------------
汎用見出し
------------------------------------*/
.g-h {
  font-size: 3.8rem;
}

.g-h::first-letter {
  font-size: 5.2rem;
}

.g-h:after {
  width: 8rem;
  width: 0;
  height: 1.4rem;
  border-radius: 0.7rem;
  margin: 2.8rem auto 0;
}

.g-h.effect_on:after {
  width: 8rem;
}

/*------------------------------------
MORE
------------------------------------*/
.more {
  padding-right: 1.4rem;
}

.more:after {
  width: 3rem;
  height: 0.7rem;
  right: -3rem;
  bottom: .1rem;
  transition: all .5s ease;
}

.more:hover:after {
  right: -3.5rem;
}

.more2 {
  width: 48rem;
  padding: 2.4rem 0;
}

.more2:after {
  width: 3.8rem;
  height: 1rem;
  margin-left: 5.25%;
  transition: all .5s ease;
}

.more2:hover:after {
  margin-left: 7%;
}

/*------------------------------------
ページャー
------------------------------------*/
.wp-pagenavi span,
.wp-pagenavi a {
  padding: 1rem;
}

/*------------------------------------
前後記事リンク
------------------------------------*/
.single-pagination {
  margin-top: 8rem;
}

.single-pagination .archive {
  margin: 0 3.5rem;
}

.single-pagination .archive a {
  font-size: 1.8rem;
}

/*------------------------------------
TOPに戻る
------------------------------------*/
#page_top {
  right: 5rem;
  bottom: 10rem;
  width: 5rem;
  height: 5rem;
}

#page_top .to-top {
  width: 5rem;
  height: auto;
}

/*------------------------------------
パンくずリスト
------------------------------------*/
.topic-path {
  bottom: 2rem;
  left: 14%;
}

.topic-path li {
  display: inline;
  position: relative;
}

.topic-path li,
.topic-path li span,
.topic-path li a span {
  font-size: 1.6rem;
}

/*------------------------------------
予約システム
------------------------------------*/
.reserve-wrap {
  position: fixed;
  width: 100%;
  bottom: 2rem;
  z-index: 10;
  justify-content: center;
}

.top-reservation {
  opacity: 0;
  /* width: 131rem; */
  background: transparent;
}

/*　上に上がる動き　*/
.top-reservation.UpMove {
  animation: UpAnime 0.5s forwards;
  height: 0;
}

@keyframes UpAnime {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/*　下に下がる動き　*/
.top-reservation.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.top-reservation * {
  font-size: 1.4rem;
  color: #333;
  line-height: 1;
}

.top-reservation .bestrate {
  min-width: 31rem;
  background: #ec6e03;
  border-radius: 0.8rem 0 0 0.8rem;
  text-align: center;
  position: relative;
  padding: 0 1.6rem;
  box-sizing: border-box;
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
}

.top-reservation .bestrate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.top-reservation form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  width: 100%;
  background: #fff;
  border: 0.1rem solid #988061;
  border-radius: 0 0.8rem 0.8rem 0;
  border-left: none;
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
}

.top-reservation form label,
.top-reservation form input {
  display: block;
}

.top-reservation form input,
.top-reservation form select {
  cursor: pointer;
  box-sizing: border-box;
}

.top-reservation form input:disabled,
.top-reservation form select:disabled {
  cursor: auto;
}

.top-reservation form select {
  padding: 0.8rem 4.8rem 0.8rem 1rem;
}

.top-reservation form input {
  width: 18rem;
  padding: 0.8rem 0.8rem 0.8rem 1rem;
  box-sizing: border-box;
}

.top-reservation form input.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.top-reservation form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0;
  cursor: pointer;
}

@media screen and (max-width: 950px) {
  .top-reservation form input {
    width: 13rem;
  }
}

.top-reservation form div,
.top-reservation form dl,
.top-reservation form dd {
  display: flex;
  align-items: center;
}

.top-reservation form dt {
  margin-right: 0.6rem;
}

.top-reservation form .date-wrapper,
.top-reservation form .select-wrapper {
  position: relative;
  background: #fff;
  border: 1px solid #988061;
  pointer-events: auto;
}

.top-reservation form .date-wrapper:after,
.top-reservation form .select-wrapper:after {
  content: "";
  position: absolute;
  background: url(../img/common/calendar.svg) 0 50%/100% auto no-repeat;
  pointer-events: none;
  top: 0;
  right: 1rem;
  height: 3rem;
}

.top-reservation form .date-wrapper:after {
  width: 2.1rem;
}

.top-reservation form .select-wrapper:after {
  content: "";
  display: inline-block;
  border-top: 0.7rem solid #988061;
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  position: absolute;
  right: 1rem;
  top: 100%;
  transform: translateY(-45%);
}

.top-reservation form .inbox_489ban {
  margin-left: 3rem;
}

.top-reservation form .date_489ban dd .date-wrapper {
  margin-right: 1.2rem;
}

.top-reservation form .date_489ban dd>label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 2.6rem;
}

.top-reservation form .date_489ban dd>label:before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: auto;
  bottom: calc(100% / 2 - 1rem);
  background: #fff;
  border: 0.1rem solid #988061;
}

.top-reservation form .date_489ban dd>label:after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 1rem;
  left: 0.6rem;
  top: 0;
  transform: rotate(45deg);
  border-right: 0.2rem solid #988061;
  border-bottom: 0.2rem solid #988061;
  opacity: 0;
  transition: 0.3s ease;
}

.top-reservation form .date_489ban dd>label.checked:after {
  opacity: 1;
}

.top-reservation form .date_489ban dd>label input[type="checkbox"] {
  display: none;
}

.top-reservation form .person_489ban {
  margin-right: 1.4rem;
}

.top-reservation form .person_489ban dd span {
  margin-left: 0.4rem;
}

.top-reservation form button {
  font-size: 1.6rem;
  width: 9.8rem;
  height: 4.4rem;
  margin-left: 3.7rem;
  color: #fff;
  background: #988061;
  border-radius: 0.6rem;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1100px) {
  .top-reservation {
    width: 98%;
  }

  .top-reservation form input {
    width: 14rem;
  }

  .top-reservation form select {
    padding: 0.8rem 3.2rem 0.8rem 1rem;
  }

  .top-reservation form .inbox_489ban {
    margin-left: 1.5rem;
  }

  .top-reservation .bestrate {
    min-width: 20rem;
  }

  .top-reservation .bestrate p:first-child {
    font-size: 1.8rem;
  }

  .top-reservation .bestrate p:last-child {
    font-size: 1rem;
  }

  .top-reservation form button {
    margin-left: .7rem;
  }

  .top-reservation .bestrate:before {
    left: 0.5rem;
    width: 2rem;
  }

  .top-reservation .bestrate:after {
    right: 0.5rem;
    width: 2rem;
  }

  .top-reservation .bestrate p:first-child {
    margin-top: 1.8rem;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										ヘッダー&フッター
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------------------------*/
#header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  transition: 0.5s all ease;
}

#header.DownMove {
  top: -100%;
}

#header .h-wrap {
  height: 10rem;
  padding: 0 0 0 5%;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  position: relative;
}

#header.DownMove .h-wrap {
  box-shadow: none;
}

#header .h-wrap .inner {
  height: 10rem;
  justify-content: space-between;
  align-items: center;
}

#header.DownMove .inner {
  justify-content: flex-end;
}

#header .h-wrap .logo img {
  margin: auto;
}

#header .h-wrap .logo .logo-jp {
  min-width: 36rem;
  height: auto;
}

#header .h-wrap .logo .logo-en {
  min-width: 23.8rem;
  height: auto;
  margin-top: 1rem;
}

/* 初期画面ナビゲーション */
#header .nav-wrapper {
  padding: 1.5rem 4% 0 0;
  height: 9rem;
}

#header.DownMove .nav-wrapper {
  display: none;
}

#header .nav-wrapper .h-nav1 ul {
  justify-content: flex-end;
  align-items: center;
  height: 2.4rem;
}

#header .nav-wrapper .h-nav1 ul li a {
  font-size: 1.6rem;
  padding-left: 4rem;
  position: relative;
  line-height: 1.6;
}

#header .nav-wrapper .h-nav1 .info:before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: url(../img/common/info.svg) no-repeat center center/contain;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  left: 1.2rem;
}

#header .nav-wrapper .h-nav1 .map {
  padding-right: 1.5rem;
}

#header .nav-wrapper .h-nav1 .map:before {
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  display: inline-block;
  background: url(../img/common/map_icon.svg) no-repeat center center/contain;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  left: 1.2rem;
}

#header .nav-wrapper .h-nav1 .tel {
  opacity: 1;
  cursor: default;
}

#header .nav-wrapper .h-nav1 .email:before {
  content: "";
  width: 2.2rem;
  height: 1.75rem;
  display: inline-block;
  background: url(../img/common/header-mail-icon.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}

#header .nav-wrapper .h-nav1 .tel:before {
  content: "";
  width: 2.2rem;
  height: 1.75rem;
  display: inline-block;
  background: url(../img/common/header-phone-icon.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.5rem;
}

#header .nav-wrapper .h-nav2 ul {
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: flex-end;
}

#header .nav-wrapper .h-nav2 ul li {
  margin-left: 2rem;
  height: 3.5rem;
  line-height: 1;
  position: relative;
}

#header .nav-wrapper .h-nav2 ul li a {
  font-size: 1.6rem;
}

/* ナビゲーションホバーメニュー部 */
#header .nav-wrapper .h-nav2 ul li ul {
  display: block;
  position: absolute;
  top: 2.1rem;
  margin: 0;
  height: 0;
  overflow: hidden;
  box-shadow: 0 0.3rem 0.1rem rgb(0 0 0 / 16%);
  transition: all .5s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul li ul li {
  margin: 0;
  padding: 2.5rem 0 0 5rem;
  transition: .5s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul li ul li:not(:first-child) {
  padding: 1.5rem 0 0 5rem;
}

#header .nav-wrapper .h-nav2 ul li:hover ul li {
  height: 2rem;
}

#header .nav-wrapper .h-nav2 ul li ul:before {
  content: "";
  display: block;
  width: 1px;
  background: #707070;
  position: absolute;
  top: .5rem;
  height: 0;
  transition: all .5s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul li ul li a {
  font-size: 1.4rem;
  width: 100%;
  display: block;
  transition: all .8s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-plan-link .nav-plan-box {
  width: 29.4rem;
  left: -2rem;
}

#header .nav-wrapper .h-nav2 ul .nav-plan-link .nav-plan-box:before {
  left: 2.8rem;
  transition: all .6s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-plan-link:hover .nav-plan-box {
  height: 6rem;
}

#header .nav-wrapper .h-nav2 ul .nav-plan-link:hover .nav-plan-box:before {
  height: 4rem;
}

#header .nav-wrapper .h-nav2 ul .nav-room-link .nav-room-box {
  width: 26rem;
  left: -1.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-room-link .nav-room-box:before {
  left: 2.2rem;
  transition: all 1s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-room-link:hover .nav-room-box {
  height: 20rem;
}

#header .nav-wrapper .h-nav2 ul .nav-room-link:hover .nav-room-box:before {
  height: 18rem;
}

#header .nav-wrapper .h-nav2 ul .nav-restaurant-link .nav-restaurant-box {
  width: 29.4rem;
  left: -1.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-restaurant-link .nav-restaurant-box:before {
  left: 2.2rem;
  transition: all .6s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-restaurant-link:hover .nav-restaurant-box {
  height: 9.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-restaurant-link:hover .nav-restaurant-box:before {
  height: 7.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-access-link .nav-access-box {
  width: 29.4rem;
  left: -1.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-access-link .nav-access-box:before {
  left: 2.2rem;
  transition: all .6s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-access-link:hover .nav-access-box {
  height: 6rem;
}

#header .nav-wrapper .h-nav2 ul .nav-access-link:hover .nav-access-box:before {
  height: 4.3rem;
}

#header .nav-wrapper .h-nav2 ul .nav-faq-link .nav-faq-box {
  width: 29.4rem;
  left: -1.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-faq-link .nav-faq-box:before {
  left: 2.2rem;
  transition: all .9s ease-in-out;
}

#header .nav-wrapper .h-nav2 ul .nav-faq-link:hover .nav-faq-box {
  height: 9.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-faq-link:hover .nav-faq-box:before {
  height: 7.5rem;
}

/* ----------------------------- */
@media screen and (max-width: 1339px) {
  #header .nav-wrapper {
    display: none;
  }

  #header .hamburger {
    display: block;
  }
}

/* 初期ヘッダーの右上のリンクボックス */
#header .hr-box {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 800;
}

@media screen and (max-width: 1339px) {
  #header .hr-box {
    right: 10rem;
  }
}

#header.DownMove .hr-box {
  right: 10rem;
}

#header .hr-box .reserve-link {
  width: 12rem;
  height: 16.8rem;
  background: #ec6e03;
  opacity: 1;
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
}

#header .hr-box .reserve-link .img {
  width: 2.6rem;
  height: auto;
  margin: 5.7rem auto 0;
}

#header .hr-box .acard-link .img img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

#header .hr-box .reserve-link p {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-top: 1.5rem;
}

#header .hr-box .acard-link {
  width: 10rem;
  height: 10rem;
  background: #b42f39;
  opacity: 1;
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
}

#header.DownMove .hr-box .acard-link {
  display: none;
}

#header .hr-box .acard-link .img {
  width: 4.7rem;
  height: 3.1rem;
  transform: scale(1.5);
  margin: 2rem auto 0;
}

#header .hr-box .acard-link .img img {
  object-fit: contain;
  font-family: "object-fit: contain;";
}

#header .hr-box .acard-link p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.logo-jp2 {
  position: fixed;
  top: 2rem;
  left: 2.3%;
  z-index: 1;
  width: 21rem;
  height: auto;
}

/*------------------------------------
ハンバーガーメニュー
------------------------------------*/
/* 初期ヘッダー右上のハンバーガーメニュー */
@media screen and (min-width: 1340px) {
  #header .nav-wrapper {
    display: block;
  }

  #header .hamburger {
    display: none;
  }

  #header .h-wrap {
    padding: 0 22rem 0 5%;
  }

  #header .h-wrap .hr-box {
    right: 0;
  }

  #header.DownMove .h-wrap .hr-box {
    right: 10rem;
  }
}

#header .hamburger {
  width: 10rem;
  height: 10rem;
  background: #988061;
  opacity: 1;
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  right: 0;
}

#header .hamburger.active {
  background: #afa191;
}

#header.DownMove .hamburger {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
}

#header .hamburger div {
  position: absolute;
  width: 4rem;
  height: 3.3rem;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#header .hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  width: 4rem;
  height: 0.3rem;
  border-radius: 0.1rem;
  background: #fff;
}

#header .hamburger span:nth-of-type(1) {
  top: 0;
}

#header .hamburger span:nth-of-type(2) {
  top: calc(50% - 0.15rem);
}

#header .hamburger span:nth-of-type(3) {
  bottom: 0;
}

#header .globalMenu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  color: #000;
  background: #afa191;
  opacity: 0;
  max-height: 85vh;
  transition: all 0.2s ease;
  flex-direction: column;
  visibility: hidden;
}

#header .globalMenu * {
  font-size: 1.8rem;
  line-height: 2.2;
}

#header .globalMenu.active {
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
  box-shadow: 0 .1rem .6rem rgb(0 0 0 / 16%);
  transition: all .5s ease;
}

#header .globalMenu .m-close {
  display: block;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  cursor: pointer;
}

#header .globalMenu .m-close:before,
#header .globalMenu .m-close:after {
  content: "";
  display: block;
  width: 55%;
  height: .4rem;
  background: #333;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(30% - .15rem);
  left: 31%;
}

#header .globalMenu .m-close::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 30%;
}

#header .globalMenu .wrap {
  padding: 8rem 10rem;
  box-sizing: border-box;
}

#header .globalMenu .wrap .wrapper {
  justify-content: space-between;
}

#header .globalMenu .wrap .wrapper>ul:first-child {
  margin-right: 10rem;
}

#header .globalMenu .wrap .wrapper ul li ul {
  position: relative;
}

#header .globalMenu .wrap .wrapper ul li ul:before {
  content: "";
  display: block;
  width: 1px;
  background: #707070;
  position: absolute;
  top: .5rem;
}

#header .globalMenu .wrap .wrapper ul li .hmb-plan-box:before,
#header .globalMenu .wrap .wrapper ul li .hmb-access-box:before {
  left: 1rem;
  height: 3.5rem;
}

#header .globalMenu .wrap .wrapper ul li .hmb-rooms-box:before {
  left: 1rem;
  height: 19rem;
}

#header .globalMenu .wrap .wrapper ul li .hmb-restaurant-box:before {
  left: 1rem;
  height: 7rem;
}

#header .globalMenu ul li ul li.indent {
  margin-left: 1.5em;
}

#header .globalMenu ul li ul li.indent a {
  font-size: 1.6rem;
}

#header .globalMenu .sns {
  margin-top: 5rem;
}

#header .globalMenu .sns li {
  width: 2.7rem;
  height: 2.7rem;
}

#header .globalMenu .sns li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

#header .globalMenu .sns .instagram {
  margin-left: 1.8rem;
}

#header .globalMenu ul .tel-no {
  /* margin-top: 5rem; */
  margin-top: 9rem;
  /*2021/11/18変更 愛甲*/
}

#header .globalMenu ul .tel-no p {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

#header .globalMenu ul .tel-no p span {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
  line-height: 1;
}

#header .globalMenu .close {
  display: block;
  width: 100%;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  margin: 5.5rem auto 0;
}

/*----------------------------------------------------------------------------------------
フッター
----------------------------------------------------------------------------------------*/
#footer .container {
  padding: 8rem 5%;
}

#footer .footer-left {
  width: 30%;
}

#footer .footer-left .logo-wrap img:first-child {
  width: 37.2rem;
  height: 3.2rem;
}

#footer .footer-left .logo-wrap img:last-child {
  width: 24.6rem;
  height: 1.7rem;
  margin-top: 1rem;
}

#footer .footer-left .contact-wrap {
  margin-top: 3.4rem;
}

#footer .footer-left .contact-wrap .img {
  width: 6.4rem;
  height: 4.2rem;
  margin-right: 2rem;
}

#footer .footer-left .contact-wrap ul li {
  font-size: 1.4rem;
}

#footer .footer-right {
  margin: -0.7rem 0 0 5rem;
  width: 70%;
}

#footer .footer-right nav div:not(:first-child) {
  margin-left: 6%;
}

#footer .footer-right nav div:nth-child(1) {
  width: 15rem;
}

#footer .footer-right nav div:nth-child(2) {
  width: 22rem;
}

#footer .footer-right nav div:nth-child(3) {
  width: 39rem;
}

#footer .footer-right nav div ul li {
  font-size: 1.6rem;
}

#footer .footer-right nav div .sns {
  margin-top: 1.5rem;
}

#footer .footer-right nav div .sns .instagram,
#footer .footer-right nav div .sns .facebook {
  width: 2.7rem;
  height: 2.7rem;
}

#footer .footer-right nav div .sns .instagram {
  margin-left: 2rem;
}

#footer .copyright {
  font-size: 1.4rem;
  padding: 0.8rem 0 1.8rem;
}

@media screen and (max-width: 1200px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-left {
    min-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-right {
    margin: 6rem 0 0;
    width: 100%;
  }

  #footer .footer-right nav {
    justify-content: center;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										フロントページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
/* Left Side あしらいテキスト */
#front .treat_box {
  position: absolute;
}

#front .treat_text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #988061;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  position: relative;
  text-align: left;
  display: inline-block;
}

#front .treat_text::after {
  content: "";
  width: 1px;
  height: 20rem;
  background: #988061;
  position: absolute;
  top: 105%;
  left: calc(50% - .1rem);
  display: inline-block;
  transform: scale(1, 0);
  transform-origin: top left;
}

#front .treat_text.effect_on::after {
  content: "";
  animation: scroll 1s ease forwards;
  display: inline-block;
}

@keyframes scroll {
  from {
    transform: scale(1, 0);
  }

  to {
    transform: scale(1, 1);
  }
}

/*------------------------------------
ヒーローヘッダー
------------------------------------*/
#front .main-visual,
#front .main-visual .inner {
  height: 100vh;
}

#front .main-visual #top-slider {
  height: 100vh;
  position: relative;
  z-index: 1;
}

#front .main-visual .img {
  overflow: visible;
}

#front .main-visual .img img {
  top: 10rem;
}

/*----予約システム----*/
#front .greeting .top-reservation2 {
  width: 92%;
  max-width: 127rem;
  margin: 12rem auto 0;
  padding: 1.3rem;
  box-sizing: border-box;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  background: #fff;
  align-items: center;
}

#front .greeting .top-reservation2 * {
  font-size: 1.8rem;
  color: #333;
  line-height: 1;
}

#front .greeting .top-reservation2 .bestrate2 {
  width: 33%;
  min-width: 32.5rem;
  height: 16rem;
  background: #ec6e03;
  margin-right: 4rem;
  padding: 0 2.6rem;
  box-sizing: border-box;
}

#front .greeting .top-reservation2 .bestrate2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

#front .top-reservation2 form {
  position: relative;
}

#front .top-reservation2 form label,
#front .top-reservation2 form input {
  display: block;
}

#front .top-reservation2 form input,
#front .top-reservation2 form select {
  cursor: pointer;
  box-sizing: border-box;
}

#front .top-reservation2 form input:disabled,
#front .top-reservation2 form select:disabled {
  cursor: auto;
}

#front .top-reservation2 form select {
  padding: 0.5rem 4.8rem 0.5rem 1rem;
}

#front .top-reservation2 form input {
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}

#front .top-reservation2 form input.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

#front .top-reservation2 form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0;
  cursor: pointer;
}

#front .top-reservation2 form div,
#front .top-reservation2 form dl,
#front .top-reservation2 form dd {
  display: flex;
  align-items: center;
}

#front .top-reservation2 form div {
  display: inline-flex;
}

#front .top-reservation2 form dl {
  width: 100%;
}

#front .top-reservation2 form dt {
  margin-right: 0.8rem;
  text-align: right;
  width: 6rem;
}

#front .top-reservation2 form .inbox_489ban {
  margin-top: 2.7rem;
  margin-left: 0.8rem;
}

#front .top-reservation2 form dd {
  flex-direction: row;
  align-items: center;
  width: 78%;
}

#front .top-reservation2 form .person_489ban:first-child {
  margin-left: 2rem;
}

#front .top-reservation2 form .person_489ban:last-child {
  margin-left: 1.8rem;
}

#front .top-reservation2 form .person_489ban dd {
  flex-direction: row;
  align-items: center;
}

#front .top-reservation2 form .date-wrapper,
#front .top-reservation2 form .select-wrapper {
  position: relative;
  background: #fff;
  border: 1px solid #988061;
  pointer-events: auto;
}

#front .top-reservation2 form .date-wrapper:after,
#front .top-reservation2 form .select-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  background: 0 50%/100% auto no-repeat;
  pointer-events: none;
}

#front .top-reservation2 form .date-wrapper:after {
  background-image: url(../img/common/calendar.svg);
}

#front .top-reservation2 form .select-wrapper:after {
  content: "";
  display: inline-block;
  border-top: 0.7rem solid #988061;
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  position: absolute;
  right: 1.8rem;
  top: 100%;
  transform: translateY(-45%);
}

#front .top-reservation2 form .date_489ban dd .date-wrapper {
  width: 23.1rem;
  height: auto;
}

#front .top-reservation2 form .date_489ban dd>label {
  padding-left: 3rem;
  margin-left: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#front .top-reservation2 form .date_489ban dd>label:before,
#front .top-reservation2 form .date_489ban dd>label:after {
  content: "";
  position: absolute;
}

#front .top-reservation2 form .date_489ban dd>label:before {
  left: 0;
  top: auto;
  background: #fff;
  border: 0.1rem solid #988061;
}

#front .top-reservation2 form .date_489ban dd>label:after {
  top: 0;
  transform: rotate(45deg);
  border-right: 0.2rem solid #988061;
  border-bottom: 0.2rem solid #988061;
  opacity: 0;
  transition: 0.3s ease;
}

#front .top-reservation2 form .date_489ban dd>label.checked:after {
  opacity: 1;
}

#front .top-reservation2 form .stay_489ban .select-wrapper {
  padding-right: 0.8rem;
}

#front .top-reservation2 form .date-wrapper:after,
#front .top-reservation2 form .select-wrapper:after {
  right: 1rem;
  height: 3.1rem;
}

#front .top-reservation2 form .date-wrapper:after {
  width: 2.1rem;
}

#front .top-reservation2 form .date_489ban dd>label:before {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}

#front .top-reservation2 form .date_489ban dd>label:after {
  width: 0.6rem;
  height: 1rem;
  left: 0.7rem;
  top: 0.3rem;
}

#front .top-reservation2 form .date_489ban dd>label input[type="checkbox"] {
  display: none;
}

#front .top-reservation2 form .person_489ban dd span {
  margin-left: 0.4rem;
}

/* #front .top-reservation2 form button {
  color: #fff !important;
  background: #988061;
  border-radius: 0.6rem;
  font-size: 2rem;
  width: 15.4rem;
  height: 7.7rem;
  position: absolute;
  right: -18rem;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.16);
} */
#front .top-reservation2 form #tabichat-search {
  color: #fff !important;
  background: #988061;
  border-radius: 0.6rem;
  font-size: 2rem;
  width: 15.4rem;
  height: 7.7rem;
  position: absolute;
  right: -18rem;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.16);
  line-height: 7.7rem;
}

@media screen and (max-width: 1100px) {
  #front .top-reservation2 {
    align-items: center;
  }

  #front .top-reservation2 form {
    width: 80%;
  }

  #front .top-reservation2 form .person_489ban:first-child,
  #front .top-reservation2 form .person_489ban:last-child {
    margin-left: 0;
  }

  #front .top-reservation2 form select {
    padding: 0.5rem 2.8rem 0.5rem 1rem;
  }

  #front .top-reservation2 form .inbox_489ban:last-child {
    margin-right: 3rem;
  }

  #front .top-reservation2 form button {
    height: 4.8rem;
    width: 14rem;
    margin: 2rem auto 0;
    position: relative;
    top: 0;
    right: 0;
    transform: none;
  }
}

/*------------------------------------
GREETING
------------------------------------*/
#front .greeting {
  margin-top: -3rem;
  padding: 19rem 0 13.1rem;
  flex-direction: column-reverse;
}

#front .greeting h2 {
  font-size: 4.6rem;
  letter-spacing: .3em;
  padding-left: .3em;
  font-weight: 700;
}

#front .greeting p:nth-of-type(1) {
  margin-top: 10rem;
}

#front .greeting p:nth-of-type(2),
#front .greeting p:nth-of-type(3) {
  margin-top: 6.6rem;
}

#front .greeting .treat_box {
  top: 18rem;
  left: 2%;
}

/*------------------------------------
PHOTO
------------------------------------*/
/* #front .photo .inner {
  padding: 4rem 8% 0;
} */
/* 2024年3月 */
#front .photo .inner {
  padding: 4rem 8% 4rem;
}

#front .photo .photo-wrap {
  flex-wrap: wrap;
  justify-content: center;
}

#front .photo .photo-wrap li {
  width: calc((100% / 3) - 1px);
  height: auto;
}

#front .photo .gallerymodal-open {
  padding: 3rem 0 3.5rem;
}

#front .photo .gallerymodal-open:after {
  width: 8rem;
  height: 0.1rem;
  margin: 1rem auto 0;
}

#front .photo .treat_box {
  top: 4rem;
  left: 2%;
}

/*------------------------------------
PHOTO modal
------------------------------------*/
#front .photo .close-btn {
  top: 3.5%;
  right: 3.5%;
  width: 5rem;
  height: 5rem;
}

#front .photo .close-btn:before,
.close-btn:after {
  height: 0.4rem;
  top: calc(14% - 0.2rem);
  left: 14%;
}

#front .photo .close-btn:after {
  right: 14%;
}

#front .photo .close-btn2 {
  bottom: -8vh;
  width: 25rem;
  height: 4rem;
  line-height: 4rem;
}

@media screen and (max-width: 1025px) {
  #front .photo .close-btn2 {
    bottom: -10vh;
  }
}

#front .photo .close-btn2:after {
  width: 5rem;
  height: .1rem;
  margin: .5rem auto 0;
}

#front .photo .close-btn2 .close-icon {
  width: 2rem;
  height: 1.1rem;
  margin-right: 1.5rem;
}

/*モーダルウィンドウ（終）*/
/*====slickレイアウト設定====*/
#front .photo .wrapper {
  width: 86.6%;
  height: 60.7%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  align-items: center;
}

#front .photo .g-slider {
  width: 56.6%;
  height: 100%;
}

#front .photo .thumb-wrapper {
  margin-left: 2.6%;
  width: 43.4%;
}

#front .photo .thumb li {
  margin-right: 0.37vh;
  width: calc((100% / 4) - 0.37vh);
  height: auto;
  min-height: 8rem;
  margin: 0 0.37vh 0.37vh 0;
}

@media screen and (max-width: 1025px) {
  #front .photo .wrapper {
    width: 90%;
    height: auto;
    margin: auto;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    align-items: center;
  }

  #front .photo .g-slider {
    width: 100%;
    height: 50rem;
  }

  #front .photo .thumb-wrapper {
    padding: 2rem 10% 0;
    width: 100%;
    margin-left: 0;
  }

  #front .photo .thumb li {
    margin-right: 0.37vh;
    width: calc((100% / 4) - 0.37vh);
    height: 10rem;
    margin: 0 0.37vh 0.37vh 0;
  }
}

/*====slickレイアウト設定（終）====*/
/*------------------------------------
INFO
------------------------------------*/
#front .info .container {
  padding: 16rem 0 18rem;
  width: 50%;
}

@media screen and (max-width: 1080px) {
  #front .info .container {
    width: 70%;
  }
}

#front .info h2:after {
  margin: 2.8rem 0 0;
}

#front .info .info-list {
  margin-top: 5rem;
}

#front .info .info-list .entry a {
  padding: 1.75rem;
}

#front .info .info-list .entry a .box {
  width: 80%;
}

#front .info .info-list .entry a .box .state {
  align-items: center;
}

#front .info .info-list .entry a .time {
  font-size: 2rem;
}

#front .info .info-list .entry a .new {
  font-size: 1.6rem;
  margin-left: 1.5rem;
}

#front .info .info-list .entry a .img {
  width: 20%;
  min-width: 15rem;
  max-width: 15rem;
  height: 10rem;
  margin-left: 2rem;
}

#front .info .treat_box {
  top: 16rem;
  left: 2%;
}

/*------------------------------------
PLAN
------------------------------------*/
#front .plan {
  padding: 0 8%;
}

#front .plan .plan-list {
  padding: 6rem 10% 0;
}

#front .plan .plan-list .list {
  padding: 5rem 0 6rem;
}

#front .plan .plan-list .list h3 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

#front .plan .plan-list .list .wrapper:hover {
  opacity: 1;
}

#front .plan .plan-list .list .wrapper .img {
  width: 44%;
  max-width: 54rem;
}

#front .plan .plan-list .list .wrapper .desc-wrapper {
  margin-left: 6rem;
  width: 56%;
}

#front .plan .plan-list .desc-wrapper .service-wrapper li {
  margin-bottom: 1em;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  line-height: 1;
}

#front .plan .plan-list .desc-wrapper .service-wrapper li:not(:last-child) {
  margin-right: 1.5rem;
}

#front .plan .plan-list .desc-wrapper p {
  margin-top: 1.5rem;
}

#front .plan .container .more {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
}

#front .plan .container .more2 {
  margin: 10rem auto 0;
}

#front .plan .treat_box {
  top: 0;
  left: 2%;
}

/*------------------------------------
ROOMS
------------------------------------*/
#front .rooms {
  padding: 18rem 12% 16rem;
}

#front .rooms .desc {
  margin-top: 6rem;
}

#front .rooms .single-room {
  width: 64.6%;
  margin: 10rem auto 6rem;
}

#front .rooms .single-room p {
  margin-top: 2rem;
}

#front .rooms .single-room p:before {
  width: 3rem;
  height: 0.1rem;
  margin-right: 1rem;
}

/* 2024年3月 */
#front .rooms .room-type.single-superior {
  margin: 10rem auto 6rem;
}

#front .rooms .room-type .type {
  width: calc((100% / 3) - 1rem);
}

#front .rooms .room-type .type:not(:first-child) {
  margin-left: 1rem;
}

#front .rooms .room-type .type p {
  margin-top: 2.2rem;
}

#front .rooms .room-type .type p:before {
  width: 3rem;
  height: 0.1rem;
  margin-right: 1rem;
}

#front .rooms .btn {
  margin-top: 10rem;
}

#front .rooms .treat_box {
  top: 18rem;
  left: 2%;
}

/*------------------------------------
RESTAURANT MORNING
------------------------------------*/
#front .m-restaurant .container {
  padding: 18rem 18% 0;
}

#front .m-restaurant h3 {
  font-size: 3rem;
  margin-top: 10rem;
}

#front .m-restaurant h3::first-letter {
  font-size: 3rem;
}

#front .m-restaurant h3:after {
  margin: 1.7rem 0 0;
  height: 0.4rem;
}

#front .m-restaurant .desc {
  margin: 4.2rem 0 0 3rem;
}

#front .m-restaurant .img {
  width: 82.3%;
  height: 85rem;
  margin: 6.5rem 0 10rem;
}

#front .m-restaurant .treat_box {
  top: 18rem;
  left: 2%;
}

/*------------------------------------
RESTAURANT & BAR　DINNER
------------------------------------*/
#front .d-restaurant .container {
  padding: 18rem 17.7% 6.5rem 32.8%;
}

#front .d-restaurant h3 {
  font-size: 3rem;
}

#front .d-restaurant h3::first-letter {
  font-size: 3rem;
}

#front .d-restaurant h3:after {
  margin: 1.7rem 0 0;
  height: 0.4rem;
}

#front .d-restaurant .desc {
  margin: 4.2rem 0 0 3rem;
}

#front .d-restaurant .img {
  width: 82.3%;
  height: 85rem;
}

#front .d-restaurant .btn {
  padding: 10rem 0 16rem;
}

#front .d-restaurant .treat_box {
  top: 18rem;
  left: 2%;
}

/*------------------------------------
SERVICE
------------------------------------*/
#front .service {
  padding: 18rem 15%;
}

#front .service .text {
  margin: 6rem auto 0;
}

#front .service .service-list {
  margin-top: 7.2rem;
}

#front .service .service-list li {
  border-top-left-radius: 5rem;
  width: calc(50% - 1.4rem);
  margin-top: 2.8rem;
}

#front .service .service-list li:after {
  width: 0.2rem;
  height: 77.8%;
  left: 37%;
  background-size: 0.2rem 0.4rem;
}

#front .service .service-list li:nth-child(2n) {
  margin-left: 2.8rem;
}

#front .service .service-list li .card {
  padding: 2.4rem 0;
}

#front .service .service-list li div .img {
  width: 37%;
  padding: 2rem;
}

#front .service .service-list li div .img h3 {
  font-size: 1.7rem;
}

#front .service .service-list li div .service-desc {
  width: 63%;
  text-align: justify;
}

#front .service .service-list li div .service-desc p {
  padding: 1.25rem 5rem 0 3rem;
  font-size: 1.8rem;
}

#front .service .treat_box {
  top: 18rem;
  left: 2%;
}

@media screen and (max-width: 1400px) {
  #front .service {
    padding: 20.8rem 10% 26.6rem;
  }
}

/*------------------------------------
SPOT
------------------------------------*/
#front .spot {
  padding: 18rem 0;
}

#front .spot .desc {
  margin-top: 6rem;
  text-align: center;
}

#front .spot .spot-list {
  width: 53.6%;
  min-width: 80rem;
  margin: 10rem auto 0;
}

#front .spot .spot-list .post:not(:first-child) {
  margin-top: 5rem;
}

#front .spot .spot-list .post a .img.thumbnail {
  width: calc(50% - 2rem);
  max-height: 35rem;
  margin-right: 4rem;
}

#front .spot .spot-list .post a .spot-desc {
  width: calc(50% - 2rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid #b7b7b7;
}

#front .spot .spot-list .post a .spot-desc .state {
  align-items: center;
}

#front .spot .spot-list .post a .spot-desc .cat {
  font-size: 1.7rem;
  font-weight: 700;
  width: 11.3rem;
  height: 2.7rem;
  line-height: 2.7rem;
}

#front .spot .spot-list .post a .spot-desc .date {
  margin-left: 1rem;
  line-height: 1;
}

#front .spot .spot-list .post a .spot-desc .new {
  margin-left: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

#front .spot .spot-list .post a .spot-desc h3 {
  font-size: 3rem;
  margin-top: 1.5rem;
}

#front .spot .spot-list .post a .spot-desc h3 .ruby {
  font-size: 3rem;
  margin-left: 1em;
}

#front .spot .spot-list .post a .spot-desc .spot-text {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 11.2rem;
}

#front .spot .spot-list .post a .spot-desc .author {
  margin-top: auto;
}

#front .spot .spot-list .post a .spot-desc .author .img.icon {
  width: 3.7rem;
}

#front .spot .spot-list .post a .spot-desc .author p {
  font-size: 1.6rem;
  margin-left: 1rem;
}

#front .spot .btn {
  margin-top: 12rem;
}

#front .spot .treat_box {
  top: 21.4rem;
  left: 2%;
}

#front .spot .img.treat2 {
  width: 57.9rem;
  height: 11.5rem;
  margin: 0 5.2% 2rem 0;
}

/*------------------------------------
ACCESS
------------------------------------*/
#front .access {
  padding: 18rem 5.2% 16rem;
}

#front .access .glink {
  font-size: 1.8rem;
  margin: 10rem 0 1rem;
}

#front .access .glink:after {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
  vertical-align: -6%;
}

#front .access .ggmap {
  padding-bottom: 50rem;
}

#front .access .container {
  margin-top: 9rem;
}

#front .access .left-area,
#front .access .right-area {
  width: 50%;
}

#front .access .left-area {
  padding-left: 9.5rem;
  box-sizing: border-box;
}

#front .access .left-area .img {
  display: inline-flex;
  align-items: center;
}

#front .access .left-area .img img:first-child {
  width: 7.3rem;
}

#front .access .left-area .img img:last-child {
  margin-left: 2.24rem;
  width: 40rem;
}

#front .access .left-area ul {
  margin: 2rem 0 0 9.75rem;
}

#front .access .left-area ul li {
  font-size: 1.8rem;
}

#front .access .right-area {
  padding-left: 5.5rem;
  box-sizing: border-box;
}

#front .access .right-area ul li:not(:first-child) {
  margin-top: 6rem;
}

#front .access .right-area ul li .traffic .img {
  width: 10rem;
}

#front .access .right-area ul li .traffic .traffic-desc {
  margin-left: 3rem;
  width: calc(100% - 10rem - 3rem);
}

#front .access .right-area ul li .traffic .traffic-desc h3 {
  font-size: 1.8rem;
}

#front .access .right-area ul li .traffic .traffic-desc dl dt,
#front .access .right-area ul li .traffic .traffic-desc dl dd {
  font-size: 1.8rem;
}

#front .access .right-area ul li:nth-child(1) .traffic .traffic-desc dl dt {
  width: 30%;
}

#front .access .right-area ul li:nth-child(1) .traffic .traffic-desc dl dd {
  width: 70%;
}

#front .access .right-area ul li:nth-child(2) .traffic .traffic-desc dl dt {
  width: 27%;
}

#front .access .right-area ul li:nth-child(2) .traffic .traffic-desc dl dd {
  width: 73%;
}

#front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dt {
  width: 32%;
}

#front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dd {
  width: 68%;
}

#front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dt:nth-of-type(2) {
  width: 29%;
}

#front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dd:nth-of-type(2) {
  width: 71%;
}

@media screen and (max-width: 1350px) {
  #front .access .container {
    display: block;
  }

  #front .access .right-area ul li .traffic .traffic-desc dl {
    /* width: 84rem; */
    max-width: 61rem;
  }

  #front .access .right-area ul li:nth-child(1) .traffic .traffic-desc dl dt {
    width: 29%;
  }

  #front .access .right-area ul li:nth-child(1) .traffic .traffic-desc dl dd {
    width: 71%;
  }

  #front .access .right-area ul li:nth-child(2) .traffic .traffic-desc dl dt {
    width: 27%;
  }

  #front .access .right-area ul li:nth-child(2) .traffic .traffic-desc dl dd {
    width: 73%;
  }

  #front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dt {
    width: 33%;
  }

  #front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dd {
    width: 67%;
  }

  #front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dt:nth-of-type(2) {
    width: 30%;
  }

  #front .access .right-area ul li:nth-child(3) .traffic .traffic-desc dl dd:nth-of-type(2) {
    width: 70%;
  }
}

#front .access .btn {
  margin-top: 12rem;
}

#front .access .treat_box {
  top: 20.3rem;
  left: 2%;
}

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

  #front .access .left-area,
  #front .access .right-area {
    width: 100%;
  }

  #front .access .right-area {
    margin: auto;
    border: none;
    padding: 7.5rem 0 0;
  }

  #front .access .right-area ul {
    margin-left: 14%;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										客室ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#rooms .main-visual h1 {
  top: 15.4rem;
  left: 11.6rem;
  width: 40.6rem;
}

#rooms .main-visual .desc {
  top: 28rem;
  left: 0;
  width: 57.1rem;
  height: 21rem;
  padding-left: 12.2rem;
}

#rooms .main-visual .desc p:first-child {
  font-size: 3rem;
  padding-top: 4rem;
}

#rooms .main-visual .desc p:last-child {
  padding-top: 1.5rem;
}

#rooms .main-visual .img {
  margin-left: 17.7%;
  width: 82.3%;
  height: 84.8rem;
}

#rooms .main-visual nav {
  padding: 5rem 0 17rem;
}

#rooms .main-visual nav ul li {
  width: 14.6%;
  height: 8rem;
}

@media screen and (max-width: 1180px) {
  #rooms .main-visual nav ul li {
    width: 20%;
  }
}

#rooms .main-visual nav ul li:not(:first-child) {
  margin-left: 0.1rem;
}

#rooms .main-visual nav ul li:last-child {
  margin-left: 6rem;
}

#rooms .main-visual nav ul li a {
  line-height: 8rem;
}

#rooms .main-visual nav ul li a span {
  font-size: 1rem;
  margin-left: 1rem;
  transition: all .5s ease;
}

/* 設備・アメニティポップアップ */
#rooms .f-modal h2 {
  top: 14%;
  left: 18%;
  font-size: 3rem;
}

@media screen and (max-width: 1640px) {
  #rooms .f-modal h2 {
    top: 14%;
  }
}

#rooms .f-modal h2:before {
  width: 9.6rem;
  height: 0.4rem;
  bottom: -1.8rem;
  left: -.5rem;
}

#rooms .f-modal h2:after {
  bottom: -5rem;
  font-size: 2rem;
}

#rooms .f-modal .modal {
  width: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1280px) {
  #rooms .f-modal h2 {
    top: 14%;
    left: 10%;
  }

  #rooms .f-modal .modal {
    width: 95%;
  }
}

#rooms .f-modal .modal .container {
  margin-bottom: -2.5rem;
}

#rooms .f-modal .modal ul li {
  width: calc((100% / 7) - 0.8rem);
  margin-right: 0.8rem;
}

#rooms .f-modal .modal ul li:nth-child(7n) {
  width: calc(100% / 7);
  margin-right: 0;
}

#rooms .f-modal .modal ul li .img {
  max-width: 20rem;
  height: 13vh;
}

#rooms .f-modal .modal ul li p {
  margin-bottom: 2.5rem;
  text-align: center;
}

#rooms .f-modal .f-close-btn {
  width: 26rem;
  height: 5rem;
  line-height: 5rem;
  bottom: 7rem;
}

/* 各ルーム */
#rooms .room .heading-box {
  width: 50%;
  height: 60rem;
}

/* 2024年3月 */
#rooms .room#sec-single .heading-box .text-treat {
  top: -2rem;
  left: 0;
  width: 20.6rem;
}

#rooms .room#sec-superior .heading-box .text-treat {
  top: -6rem;
  left: -5rem;
  width: 35rem;
}

#rooms .room#sec-double .heading-box .text-treat {
  top: -1rem;
  left: -5rem;
  width: 26.7rem;
}

#rooms .room#sec-semi-double .heading-box .text-treat {
  top: -2rem;
  left: 0;
  width: 20.6rem;
}

/* #rooms .room:nth-of-type(2) .heading-box .text-treat {
  top: -1rem;
  left: -5rem;
  width: 26.7rem;
}

#rooms .room:nth-of-type(3) .heading-box .text-treat {
  top: -2rem;
  left: 0;
  width: 20.6rem;
}

#rooms .room:nth-of-type(4) .heading-box .text-treat {
  top: -3.5rem;
  left: -1rem;
  width: 21.2rem;
}

#rooms .room:nth-of-type(5) .heading-box .text-treat {
  top: -1rem;
  left: -0.8rem;
  width: 21.2rem;
} */

#rooms .room .heading-box h2 {
  font-size: 3.6rem;
  padding: 9.4rem 0 4.1rem 3.6rem;
  margin-left: 35.4%;
}

/* 2024年3月 */
#rooms .room#sec-superior .heading-box h2 {
  font-size: 2.8rem;
}

@media screen and (max-width: 1000px) {
  #rooms .room#sec-superior .heading-box h2 {
    font-size: 2.4rem;
  }
}

#rooms .room .heading-box h2 span {
  margin-left: 4rem;
}

#rooms .room .heading-box h2:before {
  width: 0.2rem;
  top: -3.4rem;
  background: linear-gradient(180deg, #988061 19%, #fff 19%);
}

#rooms .room .heading-box h2.effect_on:before {
  height: 17.9rem;
}

#rooms .room .slick-wrap {
  padding: 17rem 17.7% 0;
}

#rooms .room .desc-wrap {
  padding: 9rem 17.7% 24rem;
}

#rooms .room .slick-wrap .room-slider {
  width: 85%;
  height: 65rem;
}

#rooms .room .slick-wrap .room-thumb-list {
  width: 18%;
  margin-left: 1rem;
}

#rooms .room .slick-wrap .room-thumb-list li {
  height: 10.2rem;
}

#rooms .room .slick-wrap .room-thumb-list li:not(:first-child) {
  margin-top: 1rem;
}

#rooms .room .desc-wrap .desc-text {
  padding-bottom: 8rem;
}

#rooms .room dl {
  padding: 7.5rem 0 11rem;
}

#rooms .room dl dt {
  width: 22%;
}

#rooms .room dl dd {
  width: 78%;
}

/* Beachside Villa */
#rooms #sec-villa .heading-box h2 {
  margin-left: 17.7%;
  padding: 6.2rem 0 4rem 3.5rem;
  color: #000;
}

#rooms #sec-villa .heading-box h2:before {
  background: #508db2;
  background: linear-gradient(180deg, #508db2 19%, #fff 19%);
}

#rooms #sec-villa .heading-box h2 span {
  color: #000;
}

#rooms #sec-villa .heading-box .text-treat {
  width: 22.2rem;
  top: -3rem;
  left: -0.8rem;
}

#rooms #sec-villa .slick-wrap {
  padding: 17rem 0 0;
}

#rooms #sec-villa .slick-wrap .room-thumb-list {
  width: 100%;
  margin-left: 0;
  justify-content: space-between;
}

#rooms #sec-villa .slick-wrap .room-thumb-list li {
  margin: 2rem 0 0;
  height: 17rem;
  width: calc((100% / 5) - 4rem);
}

#rooms #sec-villa .slick-wrap .room-thumb-list li:not(:first-child) {
  margin-left: 2rem;
}

#rooms #sec-villa .desc-wrap .desc-text {
  line-height: 2.1;
  padding-bottom: 8rem;
}

#rooms #sec-villa .desc-wrap div .room-search {
  width: 20rem;
  height: 6rem;
  margin-top: 1.5rem;
  line-height: 6rem;
  color: #120D37;
}

#rooms #sec-villa .desc-wrap div .room-search:before {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1.3rem 0.3rem 0;
}

#rooms #sec-villa .desc-wrap {
  padding: 9rem 17.7% 24rem;
}

#rooms #sec-villa .desc-wrap .left-area img {
  width: 29.7rem;
  height: auto;
}

#rooms #sec-villa .desc-wrap .container {
  padding: 5rem 0 10rem;
  justify-content: space-between;
}

#rooms #sec-villa .desc-wrap .container .left-area dl {
  padding: 2.9rem 0 0;
  width: 100%;
}

#rooms #sec-villa .desc-wrap .container .left-area dl dt {
  width: 15%;
}

#rooms #sec-villa .desc-wrap .container .left-area dl dd {
  width: 85%;
}

#rooms #sec-villa .desc-wrap .container .right-area img {
  width: 45rem;
  height: 22.6rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										レストランページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#restaurant .main-visual h1 {
  top: 16.4rem;
  left: 11.2rem;
  width: 64.2rem;
}

#restaurant .main-visual .desc {
  width: 74rem;
  height: 21rem;
  padding-left: 12rem;
  top: 29rem;
}

#restaurant .main-visual .desc p:first-child {
  font-size: 3rem;
  padding-top: 4rem;
}

#restaurant .main-visual .desc p:last-child {
  padding-top: 1rem;
}

#restaurant .main-visual .img1,
#restaurant .main-visual .img2 {
  width: 77%;
  height: 48rem;
}

#restaurant .main-visual .img1 {
  margin-left: 33%;
  padding-top: 10rem;
  width: 67%;
}

#restaurant .main-visual .img2 {
  margin-top: 4rem;
}

#restaurant .covid p {
  padding: 14rem 0 6.5rem;
  font-size: 3rem;
  line-height: 2;
}

#restaurant .covid .btn {
  padding-bottom: 14rem;
}

#restaurant .covid .btn .more2 {
  width: 67rem;
}

#restaurant .covid .btn .more2:after {
  margin-left: 2rem;
}

#restaurant .covid .btn .more2:hover:after {
  margin-left: 2.5rem;
}

#restaurant .covid .btn .more2 span {
  display: inline-block;
  color: #988061;
  font-weight: 700;
  transition: .5s all ease;
}

#restaurant .covid .btn .more2:hover span {
  color: #fff;
}

#restaurant .morning .morning-h {
  height: 76rem;
}

#restaurant .morning h2 {
  margin-top: 16rem;
}

#restaurant .morning .time {
  margin: 8.4rem auto 0;
  padding: 2rem 8rem;
  width: 64rem;
}

#restaurant .morning .morning-desc1 p {
  margin: 7.2rem auto 0;
  text-align: center;
}

#restaurant .morning .morning-wrap .img {
  margin-top: 18rem;
  width: 62.5%;
  height: 76rem;
  margin-left: 37.5%;
}

#restaurant .morning .morning-wrap .morning-desc2 {
  width: 50%;
  height: 45rem;
  top: 26rem;
}

#restaurant .morning .morning-wrap .morning-desc2 p {
  padding: 6.6rem 9.4% 16.2rem 23%;
}

@media screen and (max-width: 1020px) {
  #restaurant .morning .morning-wrap .morning-desc2 p {
    padding: 6.6rem 9.4% 16.2rem 20%;
  }
}

#restaurant .morning .morning-wrap2 {
  padding: 20rem 20% 36rem 5%;
}

#restaurant .morning .morning-wrap2 ul li {
  height: 36.6rem;
}

#restaurant .morning .morning-wrap2 ul li:nth-of-type(1) {
  width: 40%;
}

#restaurant .morning .morning-wrap2 ul li:nth-of-type(2),
#restaurant .morning .morning-wrap2 ul li:nth-of-type(3) {
  width: 30%;
}

#restaurant .night .night-h {
  height: 76rem;
}

#restaurant .night h2 {
  margin-top: 16rem;
}

#restaurant .night .time {
  margin: 8.4rem auto 0;
  padding: 2rem 5rem;
  width: 64rem;
}

#restaurant .night .time th {
  width: 30%;
}

#restaurant .night .time td {
  width: 70%;
}

#restaurant .night .night-desc1 p {
  margin: 7.2rem auto 0;
  text-align: center;
}

#restaurant .night .night-wrap .img {
  margin-top: 18rem;
  width: 62.5%;
  height: 76rem;
}

#restaurant .night .night-wrap .night-desc2 {
  width: 50%;
  height: 45.6rem;
  top: 24.4rem;
}

#restaurant .night .night-wrap .night-desc2 p {
  padding: 6.6rem 23% 13.6rem 9.4%;
}

@media screen and (max-width: 1020px) {
  #restaurant .night .night-wrap .night-desc2 p {
    padding: 5.6rem 10% 13.6rem 8.4%;
  }
}

#restaurant .night .night-wrap2 {
  padding: 20rem 5% 32rem 20%;
}

#restaurant .night .night-wrap2 ul li {
  height: 36.6rem;
}

#restaurant .night .night-wrap2 ul li div {
  width: 100%;
  height: 100%;
}

#restaurant .night .night-wrap2 ul li:nth-of-type(1),
#restaurant .night .night-wrap2 ul li:nth-of-type(3) {
  width: 37%;
}

#restaurant .night .night-wrap2 ul li:nth-of-type(2) {
  width: 26%;
}

#restaurant .night .night-wrap3 .img {
  width: 55.7%;
  height: 67.8rem;
  margin-left: 44.3%;
}

#restaurant .night .night-wrap3 .night-desc3 {
  width: 50%;
  height: 53.6rem;
  top: 4.8rem;
}

#restaurant .night .night-wrap3 .night-desc3 p {
  padding: 6.6rem 9% 16.6rem 23%;
}

@media screen and (max-width: 1020px) {
  #restaurant .night .night-wrap3 .night-desc3 p {
    padding: 4.6rem 9% 16.6rem 20%;
  }
}

#restaurant .night .night-wrap4 {
  padding: 24rem 7.3% 36rem 17.7%;
  flex-direction: column;
}

#restaurant .night .night-wrap4 .night-desc4 p {
  line-height: 2.1;
}

#restaurant .night .night-wrap4 ul {
  margin-top: 4.2rem;
}

#restaurant .night .night-wrap4 ul li {
  height: 36.6rem;
}

#restaurant .night .night-wrap4 ul li:nth-of-type(1),
#restaurant .night .night-wrap4 ul li:nth-of-type(3) {
  width: 29.6%;
}

#restaurant .night .night-wrap4 ul li:nth-of-type(2) {
  width: 40.8%;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										コロナ取組ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#covid .head-bnr {
  height: 38rem;
  margin-top: 10rem;
}

#covid .head-bnr .head-left {
  width: 50%;
  height: 100%;
  min-width: 580px;
  justify-content: end;
  padding: 0 6.4rem 0 8.4rem;
  box-sizing: border-box;
}

#covid .head-bnr .head-left .img {
  max-width: 18.8rem;
  min-width: 9.4rem;
  margin-right: 3.6rem;
}

#covid .head-bnr .head-left .desc .txt {
  max-width: 42.3rem;
  margin-bottom: 3.5rem;
}

#covid .head-bnr .head-left .desc .link-btn {
  width: 30rem;
  padding: .75rem 2.2rem;
  border-radius: .4rem;
  box-shadow: .1rem .1rem .1rem .1rem rgba(204, 204, 204, .8);
}

#covid .head-bnr .head-left .desc .link-btn:after {
  bottom: 1rem;
  right: 2.2rem;
  width: 2.5rem;
  height: .7rem;
}

#covid .head-bnr .head-right {
  width: 50%;
  height: 100%;
  align-items: center;
  background: #ccc9c7;
  padding: 0 6.4rem 0 10rem;
  box-sizing: border-box;
  border-top-left-radius: 19rem;
}

#covid .main-visual .wrapper {
  padding: 13.2rem 0 13rem;
}

#covid .main-visual .wrapper h1 {
  font-size: 3.8rem;
}

#covid .main-visual .wrapper h1 span {
  font-size: 3.8rem;
  font-weight: 700;
  display: inline;
}

#covid .main-visual .wrapper p {
  margin-top: 7.5rem;
}

#covid .request h2 {
  height: 8rem;
  font-size: 3.8rem;
}

#covid .request h2:before {
  width: 3.8rem;
  height: 3.8rem;
  margin-right: 2.5rem;
}

#covid .request ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

#covid .request .request-wrap {
  margin: 4rem 17.7% 0;
}

#covid .request .request-wrap .img {
  width: 45.2%;
  height: auto;
}

#covid .request .request-wrap ul {
  width: 54.8%;
  margin-left: 6rem;
}

#covid .request .request-wrap li:not(:first-child) {
  margin-top: 1.5rem;
}

#covid .request .request-wrap2 {
  margin: 4rem 0 0 17.7%;
  padding: 3.8rem 17.7% 7.2rem 4rem;
}

#covid .request .request-wrap2 p {
  margin-top: 2rem;
}

#covid .room h3,
#covid .inside h3,
#covid .meal h3 {
  width: 82.3%;
  margin-left: 17.7%;
  padding-left: 4rem;
  height: 8rem;
  font-size: 3.8rem;
  line-height: 8rem;
}

#covid .room .request-wrap3,
#covid .inside .request-wrap4,
#covid .meal .request-wrap5 {
  margin-left: 17.7%;
  padding: 4rem 17.7% 7rem 4rem;
}

#covid .meal .request-wrap5 {
  padding-bottom: 20rem;
}

#covid .room .request-wrap3 ul,
#covid .inside .request-wrap4 ul,
#covid .meal .request-wrap5 .container {
  padding-right: 6rem;
  width: 53.3%;
}

#covid .room .request-wrap3 .img,
#covid .inside .request-wrap4 .img {
  width: 46.7%;
  height: auto;
}

#covid .meal .request-wrap5 .img_wrap {
  width: 46.7%;
}

#covid .meal .request-wrap5 .img_wrap .img {
  width: 100%;
  height: auto;
}

#covid .meal .request-wrap5 .img_wrap .img:last-child {
  margin-top: 4rem;
}

#covid .room .request-wrap3 ul li:not(:first-child),
#covid .inside .request-wrap4 ul li:not(:first-child),
#covid .meal .request-wrap5 .container ul li {
  margin-top: 3rem;
}

#covid .meal .request-wrap5 .container ul li {
  margin-top: 1.5rem;
}

#covid .meal .request-wrap5 .container h4 {
  font-weight: 700;
  margin-bottom: 3rem;
}

#covid .meal .request-wrap5 .container h4:last-of-type {
  margin-top: 6rem;
}

@media screen and (max-width: 1200px) {
  #covid .head-bnr .head-right {
    padding: 0;
    justify-content: center;
  }

  #covid .head-bnr .head-right img {
    width: 45rem;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										アクセスページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#access h1 {
  padding-top: 27rem;
}

#access .logo {
  width: 40rem;
  margin: 8.7rem auto 0;
}

#access .access-info {
  margin-top: 4.6rem;
}

#access .access-info li {
  margin-top: 0.8rem;
}

#access .glink {
  font-size: 1.8rem;
  margin: 15rem 5% 1rem;
}

#access .glink:after {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
  vertical-align: -6%;
}

#access .ggmap {
  width: 90%;
  padding-bottom: 50.8rem;
}

#access .access_summary .inner {
  width: 78%;
  padding: 3% 5%;
  margin: 16rem auto 0;
}

#access .facility {
  margin: 18rem auto 0;
  padding-bottom: 20rem;
}

#access .facility table {
  margin-top: 9rem;
}

#access .facility tr {
  width: 75%;
}

#access .facility tr th {
  width: 27%;
  font-size: 1.8rem;
  padding: .5rem 0 .5rem 2rem;
  box-sizing: border-box;
}

#access .facility tr td {
  width: 73%;
  font-size: 1.8rem;
  padding: .5rem 2rem;
  box-sizing: border-box;
}

#access .facility tr:nth-of-type(odd) th {
  background-color: #ccc9c7;
}

#access .facility tr:nth-of-type(odd) td {
  background-color: #ccc9c7;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										姶良の魅力ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#spot .main-visual .main-visual-text {
  top: 41.9rem;
}

#spot .main-visual .main-visual-text h1 {
  font-size: 3.8rem;
}

#spot .main-visual .main-visual-text h1::first-letter {
  font-size: 5.2rem;
}

#spot .main-visual .main-visual-text h1:before {
  width: 9.6rem;
  height: 12.7rem;
  top: -15rem;
}

#spot .main-visual .main-visual-text h2 {
  margin-top: 3rem;
}

#spot .main-visual .hero {
  height: 108rem;
}

#spot .main-visual .desc-wrapper .desc {
  width: 36%;
  padding: 27rem 45.8% 18rem 17.7%;
  position: relative;
  z-index: 1;
}

#spot .main-visual .desc-wrapper .desc p {
  font-size: 1.8rem;
}

#spot .main-visual .desc-wrapper .desc p:not(:first-child) {
  margin-top: 5rem;
}

#spot .main-visual .desc-wrapper .treat1 {
  top: -10.6rem;
  right: 3rem;
  width: 45%;
  min-width: 68rem;
  height: 127.7rem;
}

#spot .main-visual .desc-wrapper .treat2 {
  left: 11%;
  width: 40.5rem;
  height: 8rem;
}

#spot .spot {
  margin-top: 17rem;
}

#spot .spot .spot-list {
  width: calc(100% - 46.4%);
  max-width: 1400px;
  margin: 8.3rem auto 0;
}

@media screen and (max-width: 1400px) {
  #spot .spot .spot-list {
    width: calc(100% - 26.2%);
  }
}

#spot .spot .spot-list li:not(:first-child) {
  margin-top: 5rem;
}

#spot .spot .spot-list li a .img.thumbnail {
  width: 30%;
  max-width: 480px;
  min-width: 320px;
  max-height: 32rem;
  margin-right: 4rem;
}

#spot .spot .spot-list li a .spot-desc {
  width: calc(70% - 4rem);
  padding-bottom: 1rem;
  margin-top: -0.5rem;
  border-bottom: 1px solid #b7b7b7;
  flex-direction: column;
}

#spot .spot .spot-list li a .spot-desc .cat {
  font-size: 1.7rem;
  width: 11.3rem;
  height: 2.7rem;
  line-height: 2.7rem;
}

#spot .spot .spot-list li a .spot-desc .date {
  margin-left: 1rem;
}

#spot .spot .spot-list li a .spot-desc .new {
  margin-left: 1.5rem;
}

#spot .spot .spot-list li a .spot-desc h3 {
  font-size: 3rem;
  margin-top: 1.4rem;
}

#spot .spot .spot-list li a .spot-desc .spot-text {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 7.2em;
}

#spot .spot .spot-list li a .spot-desc .author {
  margin-top: auto;
}

#spot .spot .spot-list li a .spot-desc .author .img.icon {
  width: 3.7rem;
}

#spot .spot .spot-list li a .spot-desc .author p {
  font-size: 1.6rem;
  margin-left: 1rem;
}

#spot .spot .spot-archive {
  padding: 10rem 0 24rem;
  margin: 0 auto;
  width: calc(100% - 34.4%);
  max-width: 1600px;
}

@media screen and (max-width: 1400px) {
  #spot .spot .spot-archive {
    padding: 8rem 0 20rem;
    width: calc(100% - 20%);
  }
}

#spot .spot .spot-archive li {
  width: calc((100% / 3) - 3rem);
  margin: 4rem 4.5rem 0 0;
}

#spot .spot .spot-archive li:nth-child(3n) {
  margin-right: 0;
}

#spot .spot .spot-archive li a {
  display: block;
  padding-bottom: 2rem;
}

#spot .spot .spot-archive li a .img {
  height: 32rem;
  margin-bottom: 2rem;
}

#spot .spot .spot-archive li a .cat {
  font-size: 1.6rem;
  width: 11rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

#spot .spot .spot-archive li a .date {
  font-size: 1.8rem;
  margin-left: 1rem;
}

#spot .spot .spot-archive li a .new {
  font-size: 1.8rem;
}

#spot .spot .spot-archive li a h3 {
  font-size: 2rem;
  margin-top: .4rem;
}

#spot .spot .spot-archive li a .spot-text {
  font-size: 1.4rem;
  margin: 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 7.2em;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										FAQページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#faq .nav1 {
  margin: 28.6rem 5.2% 0 11%;
}

#faq .nav1 ul li:nth-child(1) {
  width: 44%;
  height: 12rem;
  margin-right: 0.6%;
  border-radius: 2rem 2rem 0 0;
}

#faq .nav1 ul li:nth-child(1) h1 {
  font-size: 7rem;
  line-height: 1.85;
}

#faq .nav1 ul li:nth-child(1) span {
  font-size: 2.2rem;
  margin-left: 3rem;
  vertical-align: -25%;
  line-height: 0;
}

#faq .nav1 ul li:nth-child(2) {
  width: 16.6%;
  height: 10rem;
  font-size: 2.2rem;
  margin-right: 0.6%;
  border-radius: 2rem 2rem 0 0;
  line-height: 6;
}

#faq .nav1 ul li:nth-child(2):hover {
  height: 12rem;
}

#faq .nav1 ul li:nth-child(3) {
  width: 33%;
  height: 10rem;
  margin-right: 5.2%;
  border-radius: 2rem 2rem 0 0;
  font-size: 2.2rem;
  line-height: 6;
}

#faq .nav1 ul li:nth-child(3):hover {
  height: 12rem;
}

@media screen and (max-width: 1020px) {
  #faq .nav1 ul li:nth-child(1) h1 {
    font-size: 5rem;
    line-height: 2.9;
  }

  #faq .nav1 ul li:nth-child(1) span {
    font-size: 2rem;
  }

  #faq .nav1 ul li:nth-child(2) {
    font-size: 2rem;
    line-height: 6.3;
  }

  #faq .nav1 ul li:nth-child(3) {
    font-size: 2rem;
    line-height: 6.3;
  }
}

#faq .desc {
  margin-left: 11%;
  padding: 12rem 12% 8rem;
  line-height: 2.1;
}

#faq .nav2 {
  width: calc(100% - 16.5%);
  margin: 0 -11% 0 11%;
  padding: 0 5.5% 8rem 0%;
}

#faq .nav2 .flex {
  justify-content: center;
}

#faq .nav2 ul li:not(:last-child) {
  padding-right: 10rem;
  box-sizing: border-box;
}

#faq .nav2 ul li:not(:first-child):before {
  width: 5.3rem;
  height: .1rem;
  left: -7.5rem;
}

@media screen and (max-width: 1079px) {
  #faq .nav2 ul li:not(:last-child) {
    padding-right: 6rem;
  }

  #faq .nav2 ul li:not(:first-child):before {
    width: 4.5rem;
    height: .1rem;
    left: -5.5rem;
  }
}

#faq .nav2 ul li a span {
  font-size: 1.5rem;
}

#faq .faq-wrap {
  margin-left: 11%;
  padding: 0 13.8% 20rem 6.8%;
}

@media screen and (max-width: 1020px) {
  #faq .faq-wrap {
    padding: 0 2.5% 20rem;
  }
}

#faq .faq-wrap h3 {
  font-size: 2.75rem;
  margin: 5rem 0 .75rem;
}

#faq .faq-wrap h3:before {
  width: 2rem;
  height: 2rem;
  margin: 0 1.5rem 0 1rem;
}

#faq .faq-wrap h3 span {
  font-size: 1.6rem;
  margin-left: 1rem;
}

#faq .faq-wrap li:not(:first-child) {
  margin-top: 2rem;
}

#faq .faq-wrap li .question {
  height: 10rem;
}

#faq .faq-wrap li .question:before,
#faq .faq-wrap li .question:after {
  width: 3.5rem;
  height: 0.6rem;
}

#faq .faq-wrap li .question:before {
  top: 48%;
  right: 4.5rem;
}

#faq .faq-wrap li .question:after {
  top: 48%;
  right: 4.5rem;
}

#faq .faq-wrap li .question span {
  width: 10rem;
  height: 10rem;
  line-height: 10rem;
  font-size: 4.4rem;
}

#faq .faq-wrap li .question h4 {
  line-height: 10rem;
  padding-left: 2.5rem;
}

#faq .faq-wrap li .answer {
  padding: 4.1rem 9rem 5.5rem 10rem;
}

#faq .faq-wrap li .answer span {
  width: 10rem;
  height: 10rem;
  line-height: 10rem;
  font-size: 4.4rem;
}

#faq .faq-wrap li .answer .note {
  margin: 1rem 0 0 1.5rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										利用規約／個人情報保護ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#privacy nav {
  margin: 28.6rem 5.2% 0 11%;
}

#privacy nav ul li:nth-child(1) {
  width: 44%;
  height: 10rem;
  font-size: 7rem;
  margin-right: 0.6%;
  padding-left: 0;
  text-indent: unset;
}

#privacy nav ul li:nth-child(1) a {
  line-height: 10rem;
}

#privacy nav ul li:nth-child(1):hover {
  height: 12rem;
}

#privacy nav ul li:nth-child(1) span {
  display: inline-block;
  font-size: 2.2rem;
  margin-left: 3rem;
  line-height: 0;
}

#privacy nav ul li:nth-child(2) {
  width: 16.6%;
  height: 10rem;
  font-size: 2.2rem;
  margin-right: 0.6%;
  line-height: 6.5;
}

#privacy nav ul li:nth-child(2):hover {
  height: 12rem;
}

#privacy nav ul li:nth-child(3) {
  width: 33%;
  height: 12rem;
  margin-right: 5.2%;
}

#privacy nav ul li:nth-child(3) h1 {
  font-size: 2.2rem;
  line-height: 8.4;
}

@media screen and (max-width: 1020px) {
  #privacy nav ul li:nth-child(1) {
    font-size: 5rem;
  }

  #privacy nav ul li:nth-child(1) span {
    font-size: 2rem;
  }

  #privacy nav ul li:nth-child(2) {
    font-size: 2rem;
  }

  #privacy nav ul li:nth-child(3) h1 {
    font-size: 2rem;
    line-height: 8.7;
  }
}

#privacy .t-of-s {
  margin-left: 11%;
}

#privacy .t-of-s .inner {
  padding: 11.2rem 21.4% 14rem 10.4%;
  border-top-left-radius: 2rem;
}

#privacy .t-of-s h2 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

#privacy .t-of-s p:nth-of-type(2) {
  margin-top: 5rem;
}

#privacy .t-of-s ul {
  margin-top: 5rem;
}

#privacy .t-of-s ul li span {
  margin-right: 6rem;
}

#privacy .t-of-s .example,
#privacy .privacy .example {
  margin: 2rem 0 0 5rem;
}

#privacy .privacy {
  margin-left: 11%;
}

#privacy .privacy .inner {
  padding: 0 21.4% 24rem 10.4%;
}

#privacy .privacy h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

#privacy .privacy h3:not(:first-of-type) {
  margin-top: 5rem;
}

#privacy .privacy ul {
  margin-top: 4rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										お問い合わせページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#contact nav {
  margin: 28.6rem 5.2% 0 11%;
}

#contact nav ul li:nth-child(1) {
  width: 44%;
  height: 10rem;
  font-size: 7rem;
  margin-right: 0.6%;
}

#contact nav ul li:nth-child(1) a {
  line-height: 10rem;
}

#contact nav ul li:nth-child(1):hover {
  height: 12rem;
}

#contact nav ul li:nth-child(1) span {
  font-size: 2.2rem;
  margin-left: 3rem;
  line-height: 0;
}

#contact nav ul li:nth-child(2) {
  width: 16.6%;
  height: 12rem;
  margin-right: 0.6%;
}

#contact nav ul li:nth-child(2) h1 {
  line-height: 8.3;
  font-size: 2.2rem;
}

#contact nav ul li:nth-child(3) {
  height: 10rem;
  width: 33%;
  margin-right: 5.2%;
}

#contact nav ul li:nth-child(3) a {
  font-size: 2.2rem;
  line-height: 6.5;
}

#contact nav ul li:nth-child(3):hover {
  height: 12rem;
}

@media screen and (max-width: 1020px) {
  #contact nav ul li:nth-child(1) {
    font-size: 5rem;
  }

  #contact nav ul li:nth-child(1) span {
    font-size: 2rem;
  }

  #contact nav ul li:nth-child(2) h1 {
    line-height: 8.3;
    font-size: 2rem;
  }

  #contact nav ul li:nth-child(3) a {
    font-size: 2rem;
    line-height: 6.3;
  }
}

#contact .form .container {
  margin-left: 11%;
  padding: 14.6rem 12% 20rem;
}

#contact .form .wrap h1 {
  font-size: 8rem;
}

#contact .form .wrap h1 span {
  font-size: 1.6rem;
  margin-top: 1rem;
  letter-spacing: .3em;
}

#contact .form .wrap p {
  margin-top: 5rem;
}

#contact .form .g-form {
  padding: 8rem 0 0;
}

#contact .form .g-form p {
  margin-top: 2.5rem;
}

#contact .form .g-form .req {
  font-size: 1.4rem;
  width: 4.2rem;
  height: 2.4rem;
  margin-left: 2rem;
}

#contact .form .g-form input[type="text"],
#contact .form .g-form input[type="email"],
#contact .form .g-form input[type="tel"],
#contact .form .g-form textarea {
  line-height: 2rem;
  padding: 2rem;
  margin-top: .6rem;
}

#contact .form .g-form .wpcf7-checkbox {
  margin-top: 3rem;
}

#contact input[type="checkbox"]:checked+.wpcf7-list-item-label:after {
  top: 1rem;
}

#contact .form .submit {
  margin: 4.5rem auto 0;
  width: 40%;
  height: 6rem;
}

#contact #pri-link {
  font-size: 1.7rem;
}

/*お問い合わせ完了*/
#contact .finish-form {
  margin: 10rem 0 8rem;
  padding: 3rem;
}

#contact .goto-top {
  width: 20rem;
  padding: 2rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										姶良の魅力スポット　singleページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#s-spot .container {
  width: 75%;
  padding: 25rem 0 0;
  margin: 0 0 0 15%;
}

#s-spot .container .two-col {
  padding: 0 0 20rem;
}

#s-spot-post {
  width: calc(100% - 25% - 7.5rem);
  margin-right: 7.5rem;
}

#s-spot-post .state {
  margin-bottom: .5rem;
}

#s-spot-post .state .cat {
  width: 11.3rem;
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 1.7rem;
}

#s-spot-post .state .new {
  color: #A83216;
  font-weight: 700;
  margin-left: 1.5rem;
}

#s-spot-post .wrap {
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  align-items: baseline;
}

#s-spot-post .wrap h1 {
  font-size: 3rem;
}

#s-spot-post .wrap .date {
  font-size: 1.8rem;
  width: 25%;
  margin-left: 3rem;
  text-align: right;
  align-self: flex-end;
}

#s-spot-post .author {
  margin-top: 4rem;
}

#s-spot-post .author .icon {
  width: 3.7rem;
}

#s-spot-post .author p {
  font-size: 1.6rem;
  margin-left: 1rem;
}

#s-spot-aside {
  width: 25%;
}

#s-spot-aside h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

#s-spot-aside ul li {
  margin-bottom: 2rem;
  width: 100%;
}

#s-spot-aside ul li a:hover {
  opacity: 1;
}

#s-spot-aside ul li a .img {
  width: 100%;
  height: 24rem;
  overflow: hidden;
}

#s-spot-aside ul li a .img img {
  object-fit: cover;
  object-position: 50%;
  font-family: "object-fit: cover; object-position: 50%;";
}

#s-spot-aside ul li a:hover .img img {
  transform: scale(1.05);
}

#s-spot-aside ul li a .wrap {
  margin-top: 1.5rem;
  justify-content: space-between;
  align-items: end;
}

#s-spot-aside ul li a .wrap .cat {
  width: 6.6rem;
  height: 2.2rem;
  line-height: 2.2rem;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background: #988061;
}

#s-spot-aside ul li a .wrap .date {
  font-size: 1.4rem;
  line-height: 1;
}

#s-spot-aside ul li a .text {
  margin-top: .5rem;
}

#s-spot-aside ul li a .text h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* 左端あしらい */
#s-spot .text-treat {
  position: fixed;
  width: 11rem;
  height: auto;
  top: 16rem;
  left: 0;
  z-index: 1;
}

#s-spot .text-treat span {
  font-size: 1.2rem;
  display: block;
  position: absolute;
  top: -1rem;
  left: 2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: .7em;
}

@media screen and (max-width: 1100px) {
  #s-spot .container .two-col {
    display: block;
  }

  #s-spot-post {
    width: 100%;
    margin: 0 0 7.5rem;
  }

  #s-spot-aside {
    width: 100%;
  }

  #s-spot-aside ul {
    display: flex;
    flex-wrap: wrap;
  }

  #s-spot-aside ul li {
    margin-right: 2rem;
    width: calc((100% - 2rem) / 2);
  }

  #s-spot-aside ul li:nth-child(even) {
    margin-right: 0;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										姶良の魅力スポット　archiveページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#a-spot {
  padding: 18.9rem 15% 16rem;
  position: relative;
}

#a-spot .spot-list {
  flex-wrap: wrap;
}

#a-spot .spot-list .post {
  width: calc((100% / 3) - 2rem);
  margin: 10rem 3rem 0 0;
}

#a-spot .spot-list .post:nth-child(3n) {
  margin-right: 0;
}

#a-spot .spot-list .post .img.thumbnail {
  width: 100%;
  height: 30rem;
  margin-right: 4rem;
  margin-top: 1rem;
}

#a-spot .spot-list .post .img.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
}

#a-spot .spot-list .post a .new {
  font-size: 1.6rem;
  color: #b42f39;
  display: block;
}

#a-spot .spot-list .post .spot-desc {
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  margin-top: -0.5rem;
  border-bottom: 1px solid #b7b7b7;
}

#a-spot .spot-list .post .spot-desc .cat {
  font-size: 1.5rem;
  font-weight: 700;
  width: 10rem;
  height: 2.7rem;
  line-height: 2.7rem;
  color: #fff;
  background: #988061;
  display: inline-block;
  text-align: center;
}

#a-spot .spot-list .post .spot-desc .date {
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 1rem;
}

#a-spot .spot-list .post .spot-desc .new {
  margin-left: 1rem;
  color: #a83216;
}

#a-spot .spot-list .post .spot-desc h3 {
  font-size: 1.9rem;
  margin-top: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

#a-spot .spot-list .post .spot-desc h3 .ruby {
  font-size: 3rem;
  margin-left: 1em;
}

#a-spot .spot-list .post .spot-desc .spot-text {
  font-size: 1.6rem;
  margin-top: 2rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										Information　singleページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#s-info .container {
  width: 75%;
  padding: 25rem 0 0;
  margin: 0 0 0 15%;
}

#s-info .container .two-col {
  padding: 0 0 20rem;
}

#s-info-post {
  width: calc(100% - 25% - 7.5rem);
  margin-right: 7.5rem;
}

#s-info-post .new {
  font-size: 2rem;
}

#s-info-post .wrap {
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

#s-info-post .wrap h1 {
  font-size: 3rem;
  width: 75%;
  line-height: 1.5;
}

#s-info-post .wrap .date {
  width: 25%;
  min-width: 13.5rem;
  font-size: 1.8rem;
  text-align: right;
  line-height: 2;
  margin-left: 3rem;
  align-self: flex-end;
}

#s-info-aside {
  width: 25%;
}

#s-info-aside h2 {
  text-align: center;
  padding: .75rem 2.5rem;
  margin-bottom: .5rem;
  font-weight: 700;
  font-size: 2rem;
  background-color: #ccc9c7;
}

#s-info-aside ul li {
  margin-bottom: .75rem;
  background-color: #ccc9c7;
}

#s-info-aside ul li a {
  display: block;
  padding: 1.75rem 2.5rem;
}

#s-info-aside ul li a:hover {
  background: #d6d2d1;
  opacity: 1;
}

#s-info-aside ul li a h3 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid #988061;
}

#s-info-aside ul li a .date {
  display: block;
  font-size: 1.4rem;
  margin-top: .25rem;
  color: #988061;
}

#s-info-aside ul li a .text {
  margin-top: .5rem;
}

#s-info-aside ul li a .text p {
  font-size: 1.3rem;
  max-height: 3.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 左端あしらい */
#s-info-post .text-treat {
  position: fixed;
  width: 12rem;
  height: auto;
  top: 16rem;
  left: 0;
  z-index: 1;
  margin: 0;
}

#s-info-post .text-treat span {
  font-size: 1.2rem;
  display: block;
  position: absolute;
  top: -1rem;
  left: 2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: .7em;
}

@media screen and (max-width: 1100px) {
  #s-info .container .two-col {
    display: block;
  }

  #s-info-post {
    width: 100%;
    margin: 0 0 7.5rem;
  }

  #s-info-aside {
    width: 100%;
  }
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										Information　archiveページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#a-info .inner {
  width: 70%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 20rem 0;
}

#a-info .info-list {
  margin-top: 9rem;
}

#a-info .info-post {
  margin-top: 5rem;
}

#a-info .info-post a {
  display: block;
  padding: 5rem 10rem;
}

#a-info .info-post a .new {
  font-size: 2rem;
  line-height: 1;
}

#a-info .info-post a .wrap {
  padding-bottom: .5rem;
  margin-bottom: 3rem;
}

#a-info .info-post a .wrap h2 {
  font-size: 3rem;
}

#a-info .info-post a .box {
  justify-content: space-between;
}

#a-info .info-post a .box .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 7.2em;
}

#a-info .info-post a .box .img {
  min-width: 30rem;
  width: 32%;
  padding: 0 0 0 8rem;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										404ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#notfound {
  padding-top: 10rem;
}

#notfound .inner {
  width: 90%;
}

#notfound h2 {
  font-size: 6rem;
  padding-top: 15rem;
}

#notfound h2:first-letter {
  font-size: 6rem;
}

#notfound p:first-of-type {
  font-size: 3rem;
  margin-top: 1rem;
}

#notfound p:last-of-type {
  padding: 3rem 0 7rem;
}

#notfound .photo-wrap {
  padding: 10rem 0;
}

#notfound .photo-wrap li {
  width: calc(100% / 3);
}


/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
										利用規約／個人情報保護ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#agreement .agreement .clause {
  margin: 1rem 0 0;
}

#agreement .agreement {
  padding-top: 10rem;
}

#agreement .agreement .inner {
  padding: 18.6rem 15% 24rem;
}

#agreement .agreement h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

#agreement .agreement h2:not(:first-of-type),
#agreement .agreement h3:not(:first-of-type) {
  margin-top: 5rem;
}

#agreement .agreement ol {
  margin-top: 4rem;
}

#agreement .agreement .clause li ol {
  margin: 3rem 0;
}

#agreement .agreement table {
  margin-top: 2rem;
}

#agreement .agreement table tr th,
#agreement .agreement table tr td {
  padding: .6rem 2rem;
  border: 1px solid #aaa;
  background: #fff;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
}

#agreement .agreement .table-1 tr th,
#agreement .agreement .table-1 tr td {
  width: 20%;
}

#agreement .agreement .table-2 tr td:nth-child(1) {
  width: 20%;
}

#agreement .agreement .table-2 tr td:nth-child(2) {
  width: 10%;
}

#agreement .agreement .table-2 tr td:nth-child(3) {
  width: 70%;
}

#agreement .topic-path {
  left: 15%;
}




#header .nav-wrapper .h-nav2 ul .nav-faq-link:hover .nav-faq-box {
  height: 12.5rem;
}

#header .nav-wrapper .h-nav2 ul .nav-faq-link:hover .nav-faq-box:before {
  height: 11rem;
}

/* 2024年3月 */
/* グループ企業 */
#group {
  padding: 27rem 0;
}