@charset "UTF-8";
body {
  font-family: "Zen Old Mincho", serif;
  color: #000000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.sp--only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp--only {
    display: block;
  }
}

.mini--only {
  display: none;
}
@media screen and (max-width: 480px) {
  .mini--only {
    display: block;
  }
}

.pc--only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc--only {
    display: none;
  }
}

.normal {
  font-weight: normal;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

img {
  object-fit: cover;
  object-position: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo .logo__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.logo .logo__head img {
  width: 20px;
  height: 20px;
}
.logo .logo__head p {
  font-size: 16px;
  color: #ffffff;
  font-weight: normal;
}
.logo .logo__body p {
  font-size: 25px;
  color: #ffffff;
  font-weight: normal;
}
.logo.is-active .logo__head p {
  color: #4d4637;
}
.logo.is-active .logo__body p {
  color: #4d4637;
}

.title--main {
  font-size: 27px;
  font-weight: bold;
  padding-bottom: 10px;
  align-items: center;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .title--main {
    font-size: max(4.2253521127vw, 18px);
  }
}
.title--main::after {
  content: "";
  width: 80px;
  position: absolute;
  height: 4px;
  background-color: #c7ae6d;
  bottom: 0;
  left: 50%;
  translate: -50%;
  display: block;
}

.button {
  width: 280px;
  background-color: #c7ae6d;
  padding: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}
.button:hover {
  opacity: 0.7;
}
.button .button__inner {
  border: 1px solid #ffffff;
  background-color: #c7ae6d;
  color: #ffffff;
  text-align: center;
  line-height: 44px;
  font-size: 23px;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 29px 16px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: min(3.4428794992vw, 22px) min(5.4773082942vw, 35px) min(2.5039123631vw, 16px);
  }
}

.header__inner {
  display: flex;
  height: 53px;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    height: min(11.1111111111vw, 71px);
    align-items: start;
  }
}

.header__logo {
  width: 130px;
  height: 53px;
  z-index: 200;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: min(31.2989045383vw, 200px);
    height: min(11.1111111111vw, 71px);
  }
}
@media screen and (max-width: 1024px) {
  .header__logo .logo__head img {
    width: min(5.1643192488vw, 33px);
    height: min(5.1643192488vw, 33px);
  }
}
@media screen and (max-width: 1024px) {
  .header__logo .logo__head p {
    font-size: min(3.7558685446vw, 24px);
  }
}
@media screen and (max-width: 1024px) {
  .header__logo .logo__body p {
    font-size: min(5.4773082942vw, 35px);
  }
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.header__list li a {
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.header__list li a:hover {
  font-weight: bold;
}

.header__btn {
  transition: all 0.3s ease;
  font-size: 18px;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: 180px;
  height: 43px;
  text-align: center;
  line-height: 40px;
}
.header__btn:first-child {
  margin-right: 29px;
}
@media (any-hover: hover) {
  .header__btn:hover {
    color: #4d4637;
    background-color: #ffffff;
  }
}

.header--black {
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.drawer__icon {
  display: none;
  width: min(8.13771518vw, 52px);
  height: min(4.06885759vw, 26px);
  position: relative;
  z-index: 200;
  border: none;
  background: transparent;
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon--bar {
  width: 100%;
  height: 100%;
  position: relative;
}
.drawer__icon--bar span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.drawer__icon--bar span.drawer__icon--bar1 {
  top: 0;
}
.drawer__icon--bar span.drawer__icon--bar2 {
  top: 50%;
  translate: 0 -50%;
  width: 76%;
}
.drawer__icon--bar span.drawer__icon--bar3 {
  bottom: 0;
  width: 56%;
}
.drawer__icon.is-active .drawer__icon--bar1 {
  top: 14px;
  transform: rotate(45deg);
  background-color: #4d4637;
}
.drawer__icon.is-active .drawer__icon--bar2 {
  opacity: 0;
}
.drawer__icon.is-active .drawer__icon--bar3 {
  top: 14px;
  width: 100%;
  transform: rotate(-45deg);
  background-color: #4d4637;
}

.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #EFF1F2;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .drawer {
    display: block;
  }
}
.drawer.is-active {
  visibility: visible;
  opacity: 1;
}
.drawer__inner {
  padding: min(25.8215962441vw, 165px) min(1.8779342723vw, 12px) min(15.6494522692vw, 100px);
  height: 100%;
  overflow-y: auto;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 53.3646322379vw;
  max-width: 341px;
  margin-left: auto;
  margin-right: auto;
}
.drawer__list {
  margin-bottom: min(7.8247261346vw, 50px);
  width: 100%;
}
.drawer__list li {
  margin-bottom: min(4.06885759vw, 26px);
  position: relative;
}
.drawer__list li a {
  font-size: 24px;
  color: #4d4637;
  transition: opacity 0.3s ease;
}
.drawer__list li a::after {
  content: "";
  display: block;
  width: 99px;
  height: 1px;
  background-color: #4d4637;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}
@media screen and (max-width: 480px) {
  .drawer__list li a::after {
    width: 16.6666666667vw;
  }
}
.drawer__list li a:hover {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .drawer__list li a {
    font-size: max(3.7558685446vw, 16px);
  }
}
.drawer .header__btn {
  margin-bottom: 34px;
  border: 1px solid #4d4637;
  color: #4d4637;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 62px;
  line-height: 62px;
  font-size: 24px;
}
.drawer .header__btn:hover {
  background-color: #EFF1F2;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .drawer .header__btn {
    font-size: max(3.7558685446vw, 16px);
    height: max(9.7026604069vw, 40px);
    line-height: max(9.7026604069vw, 40px);
  }
}
.drawer .header__btn:first-child {
  margin-right: 0;
}
.drawer .header__btn:last-child {
  color: #ffffff;
  background-color: #4d4637;
}
.drawer .header__btn:last-child:hover {
  background-color: #4d4637;
  color: #ffffff;
}

.footer {
  width: 100%;
  height: 343px;
  background-color: #4d4637;
  color: #ffffff;
  padding-top: 47px;
  padding-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .footer {
    height: auto;
    padding-top: 8.13771518vw;
    padding-bottom: 17px;
  }
}
.footer__inner {
  max-width: 1300px;
  padding-left: 13.8461538462vw;
  padding-right: 8.3076923077vw;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding-left: 6.2597809077vw;
    padding-right: 6.2597809077vw;
    padding-bottom: 150px;
  }
}
.footer__inner .footer__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__inner .footer__body {
    flex-direction: column;
    align-items: center;
    gap: max(7.8247261346vw, 20px);
  }
}
@media screen and (max-width: 1024px) {
  .footer__inner .footer__body .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__inner .footer__body .footer-left__logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footer__inner .footer__body .footer-left__logo .footer__logo {
  width: 130px;
  height: 53px;
  margin-right: 25px;
}
.footer__inner .footer__body .footer-left__address {
  font-size: 18px;
  display: flex;
  line-height: 1.5;
  align-items: start;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .footer__inner .footer__body .footer-left__address .address-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__inner .footer__body .footer-left__address {
    text-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner .footer__body .footer-left__address {
    font-size: max(2.8169014085vw, 16px);
  }
}
.footer__inner .footer__body .footer-right {
  display: grid;
  grid-template-columns: 130px 200px;
  grid-template-rows: repeat(4, 22px);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer__body .footer-right {
    grid-template-columns: max(20.3442879499vw, 120px) max(31.2989045383vw, 180px);
  }
}
.footer__inner .footer__body .footer-right .footer-right__item {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer__body .footer-right .footer-right__item {
    font-size: max(2.8169014085vw, 16px);
  }
}
.footer__inner .footer__body .footer__insta {
  width: 29px;
  height: 29px;
}
.footer__inner .footer__copyright {
  position: absolute;
  font-size: 18px;
  left: 50%;
  translate: -50%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer__inner .footer__copyright {
    bottom: 60px;
    font-size: 13px;
  }
}
.footer .zenkaku {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .footer .zenkaku {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max(9.7026604069vw, 40px);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
  }
}
.sec-button .header__btn {
  width: 50%;
  height: 100%;
  background-color: #EFF1F2;
  color: #4d4637;
  font-size: max(3.7558685446vw, 18px);
  line-height: max(9.7026604069vw, 40px);
  max-width: none;
}
.sec-button .header__btn:first-child {
  margin-right: 0;
}
.sec-button .header__btn:last-child {
  background-color: #4d4637;
  color: #ffffff;
}
.sec-button .header__btn:hover:first-child {
  background-color: #4d4637;
  color: #EFF1F2;
}
.sec-button .header__btn:hover:last-child {
  background-color: #EFF1F2;
  color: #4d4637;
}

.sec-fv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.sec-fv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.26);
  z-index: 1;
  width: 100%;
  height: 100%;
}
.sec-fv .fv__title {
  color: #ffffff;
  text-align: center;
  z-index: 2;
}
.sec-fv .fv__title span {
  font-size: 21px;
}
.sec-fv .fv__title p {
  font-size: 35px;
}
.sec-fv .fv__angle {
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 27px;
  z-index: 2;
  animation: 3s 1s ease-in-out forwards infinite angleFloat;
}
@keyframes angleFloat {
  0% {
    translate: -50% 0;
  }
  45% {
    translate: -50% -20px;
  }
  55% {
    translate: -50% -20px;
  }
  100% {
    translate: -50% 0;
  }
}
.sec-fv .fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.sec-fv .fv__bg.active {
  opacity: 1;
}

.sub-sec-fv {
  height: 300px;
  background-image: url(../img/fv-01.JPG);
  background-position: center;
}

.sec-sv {
  background: url(../img/sv-bg.png) no-repeat center center/cover;
  padding: 70px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec-sv {
    padding: 9.7026604069vw 1.5649452269vw;
  }
}
.sec-sv .sv__title {
  margin-bottom: 35px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-sv .sv__title {
    margin-bottom: max(5.4773082942vw, 20px);
  }
}
.sec-sv .sv__text {
  font-size: 18px;
  line-height: 2;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-sv .sv__text {
    font-size: max(2.8169014085vw, 12px);
  }
}

.sec-room {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 55px;
}
@media screen and (max-width: 768px) {
  .sec-room {
    padding-top: 10.9546165884vw;
    padding-left: 6.2597809077vw;
    padding-right: 6.2597809077vw;
  }
}
.sec-room .room__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec-room .room__title {
    margin-bottom: max(4.6948356808vw, 20px);
  }
}
.sec-room .room__body {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec-room .room__body {
    margin-bottom: max(6.2597809077vw, 20px);
    width: 100%;
    gap: max(11.2676056338vw, 60px);
  }
}
.sec-room .room__body .room__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
}
@media screen and (max-width: 1024px) {
  .sec-room .room__body .room__card {
    gap: max(5.859375vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .sec-room .room__body .room__card {
    gap: max(5.3208137715vw, 20px);
    flex-direction: column;
    justify-content: center;
  }
}
.sec-room .room__body .room__card .card__img {
  width: 330px;
  height: 228px;
}
.sec-room .room__body .room__card .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec-room .room__body .room__card .card__text {
  font-size: 18px;
  line-height: 2;
  max-width: 486px;
}
@media screen and (max-width: 1024px) {
  .sec-room .room__body .room__card .card__text {
    max-width: 42.96875vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-room .room__body .room__card .card__text {
    width: 100%;
    max-width: none;
    font-size: max(3.2863849765vw, 16px);
    text-align: center;
  }
}
.sec-room .room__body .room__card--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .sec-room .room__body .room__card--reverse {
    flex-direction: column;
  }
}

.sec-access {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 6.2597809077vw;
  padding-right: 6.2597809077vw;
}
@media screen and (max-width: 768px) {
  .sec-access {
    padding-top: 15.6494522692vw;
  }
}
.sec-access .access__title {
  margin-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .sec-access .access__title {
    margin-bottom: max(5.4773082942vw, 20px);
  }
}
.sec-access .access__inner {
  display: flex;
  align-items: start;
  gap: 27px;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .sec-access .access__inner {
    width: 100%;
    gap: max(6.103286385vw, 20px);
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .sec-access .access__inner iframe {
    width: 100% !important;
    height: 168px !important;
  }
}
.sec-access .access__inner .access-item {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .sec-access .access__inner .access-item {
    font-size: max(3.2863849765vw, 14px);
  }
}
.sec-access .access__inner .access-item .access-item__text {
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .sec-access .access__inner .access-item .access-item__text {
    margin-left: max(3.2863849765vw, 14px);
  }
}

.sec-item {
  padding-top: 100px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 6.2597809077vw;
  padding-right: 6.2597809077vw;
}
@media screen and (max-width: 768px) {
  .sec-item {
    padding-top: 15.6494522692vw;
  }
}
.sec-item .item__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .sec-item .item__title {
    margin-bottom: max(6.7292644757vw, 20px);
  }
}
.sec-item .item__desc {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .sec-item .item__desc {
    margin-bottom: max(6.7292644757vw, 18px);
    font-size: max(3.7558685446vw, 16px);
  }
}
.sec-item .item__text {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-item .item__text {
    font-size: max(2.8169014085vw, 14px);
    margin-bottom: max(7.0422535211vw, 20px);
  }
}
.sec-item .item__note {
  margin-bottom: 45px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-item .item__note {
    margin-bottom: max(7.0422535211vw, 20px);
  }
}

.item__swiper-container {
  margin-bottom: 32px;
  width: 100vw;
  overflow: hidden !important;
}
.item__swiper-slide {
  width: 209px !important;
  height: 128px !important;
}
.item__swiper-slide img {
  width: 100%;
  height: auto;
}

.sec-cta {
  margin-bottom: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec-cta {
    margin-bottom: max(12.5195618153vw, 20px);
    padding-left: 4.6948356808vw;
    padding-right: 4.6948356808vw;
  }
}
.sec-cta .cta__text {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec-cta .cta__text {
    font-size: max(2.6604068858vw, 14px);
    margin-bottom: max(6.2597809077vw, 10px);
  }
}
.sec-cta .cta__button {
  width: 729px;
  aspect-ratio: 729/133;
  position: relative;
  background: url(../img/cta-bg.png) no-repeat center center/cover;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sec-cta .cta__button {
    width: 100%;
  }
}
.sec-cta .cta__button:hover {
  opacity: 0.7;
}
.sec-cta .cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.sec-cta .cta__button p {
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec-cta .cta__button p {
    font-size: max(4.6948356808vw, 18px);
  }
}
.sec-cta .cta__button p span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .sec-cta .cta__button p span {
    font-size: max(2.5039123631vw, 14px);
  }
}
.sec-cta .cta__button img {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 45px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec-cta .cta__button img {
    right: 3.1298904538vw;
    width: max(3.1298904538vw, 10px);
    height: max(5.9467918623vw, 19px);
  }
}

.facility-main {
  padding-bottom: 100px;
}
.facility-main.container {
  max-width: 1080px;
  width: 90%;
  margin: auto;
}
.facility-main #facility-nav {
  margin: 40px auto;
}
.facility-main #facility-nav .flex {
  justify-content: left;
}
.facility-main #facility-nav .item {
  width: 15%;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 1.5%;
}
@media screen and (max-width: 1024px) {
  .facility-main #facility-nav .item {
    width: 18%;
    margin-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .facility-main #facility-nav .item {
    width: 23%;
    margin-left: 2%;
  }
}
.facility-main #facility-nav .item img {
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .facility-main #facility-nav .item img {
    height: 16vw;
  }
}
.facility-main .fac-item-wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .facility-main .fac-item-wrapper {
    margin-top: 20px;
  }
}
.facility-main .fac-item-wrapper .faci-name {
  width: 30%;
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .facility-main .fac-item-wrapper .faci-name {
    width: 100%;
    font-size: 20px;
  }
}
.facility-main .fac-item-wrapper .faci-name span {
  margin-top: 17px;
  display: inline-block;
  line-height: 1.7;
  font-size: 18px;
  font-weight: 300;
}
.facility-main .fac-item-wrapper .faci-garrally {
  width: 70%;
  max-width: 550px;
}
@media screen and (max-width: 768px) {
  .facility-main .fac-item-wrapper .faci-garrally {
    width: 100%;
    max-width: unset;
    margin-top: 20px;
  }
}
.facility-main .faci-garrally {
  /* メインスライダーのスタイル */
  /* サムネイルスライダーのスタイル */
  /* Swiperのナビゲーション（矢印）のスタイル */
}
.facility-main .faci-garrally .swiper-container.main-swiper {
  width: 100%;
  height: 400px; /* メイン画像の高さ */
  margin-bottom: 10px; /* サムネイルとの間隔 */
  border: 1px solid #ddd;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .facility-main .faci-garrally .swiper-container.main-swiper {
    height: 60vw;
  }
}
.facility-main .faci-garrally .main-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  overflow: hidden; /* 画像がはみ出さないように */
}
.facility-main .faci-garrally .main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像をコンテナに合わせてトリミング */
}
.facility-main .faci-garrally .swiper-container.thumbnail-swiper {
  width: 100%;
  height: 100px; /* サムネイル画像の高さ */
  box-sizing: border-box;
  padding: 5px 0; /* 上下のパディングで、サムネイル間のスペースを作る */
}
@media screen and (max-width: 768px) {
  .facility-main .faci-garrally .swiper-container.thumbnail-swiper {
    height: 20vw;
  }
}
.facility-main .faci-garrally .thumbnail-swiper .swiper-slide {
  width: 25%; /* 4つ表示されるように（例） */
  height: 100%;
  opacity: 0.5; /* 非アクティブなサムネイルは少し薄く */
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid transparent; /* アクティブ時に枠線を表示するため */
  box-sizing: border-box;
}
.facility-main .faci-garrally .thumbnail-swiper .swiper-slide-thumb-active {
  opacity: 1; /* アクティブなサムネイルは完全に表示 */
}
.facility-main .faci-garrally .thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-main .faci-garrally .swiper-button-next,
.facility-main .faci-garrally .swiper-button-prev {
  color: #fff; /* 矢印の色 */
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facility-main .faci-garrally .swiper-button-next::after,
.facility-main .faci-garrally .swiper-button-prev::after {
  font-size: 1.2rem; /* 矢印のサイズ */
}
.facility-main .faci-garrally .txt-wrap {
  font-size: 21px;
}
@media screen and (max-width: 480px) {
  .facility-main .faci-garrally .txt-wrap {
    font-size: 17px;
  }
}

.message-404 {
  text-align: center;
  margin: 30px auto;
  font-size: 21px;
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */