@charset "utf-8";

:root {
  --sans-font: 'Zen Kaku Gothic New';
  --default-font: 'Zen Old Mincho';
  --font-color: #2F2F2F;
  --white-color: #fff;
  --bg-color: #eaf1e4;
  --base-color: #F2F2F2;
  --main-color: #91BA8F;
  --accent-color: #6A8768;
  --gray-color: #C4C4C4;
  --lightblack-color: #6A6969;
  --logo-color: #4D4A47;
}



/* =================================
MV メインビジュアル
==================================== */
.mv {
  width: 100%;
  height: 100vh;
}

/* --------SWIPER-------- */
.mv-swiper {
  width: 100%;
  height: 100%;
}

/* オプション: フェード効果のためのカスタムスタイルを追加 */
.mv-swiper .swiper-slide {
  position: relative;
  opacity: 0;
  /* 初期状態で透明にする */
}

.mv-swiper .swiper-slide-active {
  opacity: 1;
  /* アクティブなスライドを表示する */
  transition: opacity 1s ease-in-out;
  /* フェード効果を適用 */
}

/* キャッチコピー */
.mv-swiper .swiper-slide p {
  position: absolute;
  left: 5rem;
  right: auto;
  bottom: 20%;
  font-size: 4rem;
  color: var(--white-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), -1px -1px 2px rgba(0, 0, 0, 0.3),
    -1px 1px 2px rgba(0, 0, 0, 0.3), 1px -1px 2px rgba(0, 0, 0, 0.3),
    0px 1px 2px rgba(0, 0, 0, 0.3), 0 -1px 2px rgba(0, 0, 0, 0.3),
    -1px 0 2px rgba(0, 0, 0, 0.3), 1px 0 2px rgba(0, 0, 0, 0.3);
}

.mv-swiper .mv-media {
  width: 100%;
  height: 100%;
}


.mv-swiper .mv-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.mv-swiper .mv-media.upper img {
  object-position: center -50px;
}

.mv-media-active {
  opacity: 1;
  box-shadow: inset 15px 25px 25px rgba(0, 0, 0, .5);
}

@media (max-width: 572px) {
  .mv-swiper .swiper-slide p {
    left: 10px;
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {

  /* キャッチコピー */
  .mv-swiper .swiper-slide p {
    font-size: 2.8rem;
  }
  .mv-swiper .swiper-slide p .sp-br {
    display: block;
  }
}

/* -----------------------------------
トップ共通
-------------------------------------- */
.top-cont {
  margin-top: 15rem;
}
.top-cont img {
  filter: contrast(0.8) brightness(1.1);
}

.flex-colum {
  display: flex;
  flex-flow: column;
  gap: 36px;
}

.tl-box h2 {
  font-size: 4.4rem;
  line-height: 1;
  color: var(--logo-color);
}

.txt .p:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width:1024px) {
  .tl-box h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width:768px) {
  .tl-box h2 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width:480px) {
  .tl-box h2 {
    font-size: 2.8rem;
  }
}


/* -----------------------------------
加古川について
-------------------------------------- */
.about {
  max-width: 1440px;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: auto;
  margin-left: auto;
}

.about .item-1 {
  flex: 7;
}

.about .item-2 {
  flex: 3;
}

.about .tl-box {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5rem;
}

.about .txt-box {
  display: flex;
  justify-content: space-between;
}

.about .pic {
  flex: 4;
  width: 100%;
  aspect-ratio: 2 / 3;
}

.about .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .txt-box .txt {
  flex: 6;
}

.about .txt-box .txt .p {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  line-height: 2.4;
}

.about .pic-box {
  width: 100%;
  aspect-ratio: 2 / 3;
}

.about .pic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width:1025px) {
  .pic-sp {
    display: none;
  }
}

@media screen and (max-width:1024px) {
  .about {
    display: block;
  }

  .about .item-1 {
    gap: 5rem;
  }

  .about .tl-box {
    padding-bottom: 0;
  }

  .about .pic {
    display: none;
  }

  .about .txt-box {
    display: block;
  }

  .about .item-2 {
    position: relative;
    width: 80%;
    height: fit-content;
    margin-right: 0;
    margin-left: auto;
    margin-top: 8rem;
    padding-bottom: 10rem;
  }

  .about .pic-sp1 {
    width: 65%;
    margin-right: 0;
    margin-left: auto;
  }

  .about .pic-sp {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
  }

}

@media screen and (max-width:572px) {
  .about .txt-box .txt p {
    width: 90%;
  }
  .about .tl-box h2 {
    text-align: center;
    line-height: 1.2;
  }
  .about .tl-box .sp-br {
    display: block;
  }

}


/* -----------------------------------
トップ　お部屋
-------------------------------------- */
.top-room {
  display: flex;
  align-items: center;
}

.top-room .item-1 {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 60%;
}

.top-room .item-1 div {
  position: absolute;
}

.top-room .item-1 div:first-child {
  width: 70%;
  z-index: 1;
}

.top-room .item-1 div:last-child {
  width: 40%;
  z-index: 2;
  right: 0;
  bottom: 0;
}

.top-room .item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-room .item-2 {
  width: 25%;
  margin-left: 10rem;
}

@media screen and (max-width:1024px) {
  .top-room {
    /* width: 95%; */
    flex-direction: column-reverse;
    gap: 8rem;
    margin-right: auto;
    margin-left: auto;
  }

  .top-room .item-1 {
    width: 90%;
    margin-right: auto;
    margin-left: 0;
  }

  .top-room .item-2 {
    width: 70%;
    margin-left: 0;
  }
}

@media screen and (max-width:572px) {
  .top-room .item-2 {
    width: 90%;
  }
}

/* -----------------------------------
トップ　朝食
-------------------------------------- */

.top-bf .upper {
  display: flex;
  justify-content: end;
  align-items: center;
}

.top-bf .item-1 {
  width: 25%;
  margin-right: 10rem;
}

.top-bf .item-2 {
  width: 60%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.top-bf .item-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-bf .lower {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 5rem;
  padding-bottom: 10rem;
}

.top-bf .lower img {
  width: 100%;
  height: auto;
}

.top-bf .pic-box:last-child {
  margin-bottom: -10rem;
}

.top-bf .pic-box:first-child {
  width: 30%;
  aspect-ratio: 2 / 3;
}
.top-bf .pic-box:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-bf .pic-box:last-child {
  width: 50%;
}

@media screen and (max-width:1024px) {
  .top-bf .upper {
    flex-flow: column;
    gap: 8rem;
    /* width: 95%; */
    margin-right: auto;
    margin-left: auto;
  }

  .top-bf .item-1 {
    width: 70%;
    margin-right: 0;
  }

  .top-bf .item-2 {
    width: 60%;
    margin-right: 0;
    margin-left: auto;
  }
}

@media screen and (max-width:768px) {
  .top-bf .lower {
    width: 95%;
    margin-top: 3rem;
  }
}

@media screen and (max-width:572px) {
  .top-bf .item-1 {
    width: 90%;
  }

  .top-bf .lower {
    width: 95%;
    margin-top: -5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ===================================
トップ　大浴場
====================================== */
.top-pbath {
  display: flex;
  justify-content: end;
}

.top-pbath .item-1 {
  width: 25%;
  margin-right: 10rem;
}

.top-pbath .item-2 {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 60%;
}

.top-pbath .item-2 div {
  position: absolute;
}

.top-pbath .item-2 div:first-child {
  width: 80%;
  top: 0;
  left: auto;
  right: 0;
  z-index: 1;
  aspect-ratio: 3 / 2;
}

.top-pbath .item-2 div:last-child {
  width: 30%;
  z-index: 2;
  bottom: 0;
  aspect-ratio: 2 / 3;
}

.top-pbath .item-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:1024px) {
  .top-pbath {
    flex-flow: column;
    gap: 8rem;
    /* width: 95%; */
    margin-right: auto;
    margin-left: auto;
  }

  .top-pbath .item-1 {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }

  .top-pbath .item-2 {
    width: 70%;
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (max-width:572px) {
  .top-pbath .item-1 {
    width: 90%;
  }
}

/* -----------------------------------
トップ サービス
-------------------------------------- */
.top-sv {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width:1025px) {
  .top-sv .item {
    flex: 5;
  }

  .top-sv .item-pic {
    flex: 2.5;
    aspect-ratio: 2 / 3;
  }
}

.top-sv .item .txt-wrap {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.top-sv .btn {
  margin-right: auto;
  margin-left: auto;
}

.top-sv .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-sv .p {
  text-align: center;
}

@media screen and (max-width:1024px) {
  .top-sv {
    width: 100%;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 8rem 0;
  }

  .top-sv .item {
    order: 0;
    width: 100%;
  }

  .top-sv .item .txt-wrap {
    width: 70%;
  }

  .top-sv .item-pic {
    order: 1;
    aspect-ratio: 2 / 3;
  }

  .top-sv .item-pic:first-child {
    width: 40%;
  }

  .top-sv .item-pic:last-child {
    width: 40%;
    margin-top: 10rem;
  }
}

/* -----------------------------------
トップ お知らせ
-------------------------------------- */
.top-news {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.top-post {
  margin-top: 5rem;
}

.top-post li {
  background-color: var(--bg-color);
  padding: 15px 0;
  margin-bottom: 3rem;
  transition: ease-in-out 0.3s;
}

/* .top-post li:last-child {
  margin-bottom: 0;
} */
.top-post .post-inner {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.top-post .post-info {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.top-post .post-link {
  color: var(--font-color);
}

.top-post .post-info time {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.top-post .category {
  background-color: var(--white-color);
  color: var(--main-color);
  padding: 5px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 18px;
  pointer-events: none;
}

.top-post .post-tl h3 {
  font-size: 1.8rem;
  margin-top: 10px;
}

/* -----矢印----- */
.top-post .dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: var(--logo-color);
  line-height: 1;
  position: relative;
  width: 2em;
  height: 2em;
  transform: translateX(-25%) rotate(45deg);
}

.top-post .dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  /* border-radius: 0.1em; */
}

.top-post .dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.2em;
}

.top-post .dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.2em;
}

.top-news .btn {
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}

@media (hover: hover) and (pointer: fine) {
  .top-post li:hover {
    opacity: 0.7
  }
}

@media screen and (max-width:1024px) {
  .top-post .post-tl h3 {
    font-size: 1.6rem;
  }

  .top-post .post-info time {
    font-size: 1.6rem;
  }
}

@media screen and (max-width:768px) {
  .top-post .post-inner {
    width: 90%;
  }
}

@media screen and (max-width:572px) {
  .top-post li {
    padding: 10px 0;
  }

  .top-news {
    width: 90%;
  }

  .top-post .post-tl h3 {
    font-size: 1.4rem;
  }

  .top-post .post-info time {
    font-size: 1.4rem;
  }
}


/* ===================================
トップ 施設案内
====================================== */
.top-facility {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.top-facility .tl-box {
  text-align: center;
  margin-bottom: 5rem;
}

.subtl-box h3 {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent-color);
}

.subtl-box h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 10px;
  padding-top: 15px;
  border-bottom: 2px solid var(--accent-color);
}

@media screen and (max-width:768px) {
  .subtl-box h3 {
    font-size: 2.8rem;
  }
  .subtl-box h3::after {
    padding-top: 0;
  }
}

@media screen and (max-width:480px) {
  .subtl-box h3 {
    font-size: 2.4rem;
  }
}

.top-facility .btn {
  margin-top: 5rem;
}

/* -----------------------------------
トップ アクセス
-------------------------------------- */
.top-access {
  width: 90%;
  display: flex;
  justify-content: end;
  align-items: start;
  gap: 10rem;
  margin-right: auto;
  margin-left: auto;
}

.top-access .item-1 {
  width: 50%;
}

.top-access .item-2 {
  width: 50%;
}

.top-access .item-2 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.gmap-btn {
  width: 100%;
  text-align: end;
}
.gmap-btn a {
  display: inline-block;
  font-family: var(--sans-font);
  font-size: 1.6rem;
  color: var(--accent-color);
}
.gmap-btn .arrow {
  position: relative;
  display: inline-block;
  width: 6.8px;
  height: 9.7px;
  margin-left: 10px;
}

.gmap-btn .arrow::before,
.gmap-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--accent-color);
  transform-origin: calc(100% - 0.5px) 50%;
}

.gmap-btn .arrow::before {
  transform: rotate(45deg);
}

.gmap-btn .arrow::after {
  transform: rotate(-45deg);
}

/* ---------アコーディオン--------- */
.ac-accordion {
  width: 100%;
  margin: 0 auto;
}

.ac-panel-header {
  width: 100%;
  padding: 15px 20px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-color);
}

.ac-panel-header p {
  display: flex;
  justify-content: start;
  align-items: center;
}

.ac-panel-header img {
  width: 30px;
  height: auto;
  margin-right: 16px;
}

.ac-accordion .icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.ac-panel-header.active .icon {
  transform: rotate(45deg);
}

.ac-panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.ac-panel-body {
  padding: 20px 20px 20px 48px;
  border-top: 1px solid #eee;
  background-color: var(--white-color);
}

.ac-panel-body p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (max-width:572px) {

  /* -------- アコーディオン ------- */
  .ac-accordion {
    margin: 3rem auto 0;
  }

  .ac-panel-header {
    font-size: 1.8rem;
  }

  .ac-panel-header img {
    width: 28px;
  }

  .ac-panel-body {
    padding: 15px 20px;
  }

  .ac-panel-body p {
    line-height: 1.6;
  }

  .ac-panel-body p span {
    display: block;
    line-height: 1;
    margin-top: 5px;
  }

  .ac-panel-body p .sp-br {
    display: block;
  }
}

@media screen and (max-width:375px) {

  /* -------- アコーディオン ------- */
  .ac-panel-header {
    padding: 12px 15px 12px 0;
    font-size: 1.6rem;
  }

  .ac-panel-header img {
    width: 26px;
  }

  .ac-panel-body {
    padding: 12px;
  }

  .ac-panel-body p {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .ac-panel-body p span {
    font-size: 1.4rem;
  }
}

/* -------アクセス　レスポンシブ------- */
@media screen and (max-width:1024px) {
  .top-access {
    width: 95%;
    display: flex;
    justify-content: end;
    align-items: start;
    gap: 5%;
    margin-right: 0;
    margin-left: auto;
  }

  .top-access .item-2 img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;

  }
}

@media screen and (max-width:768px) {
  .top-access {
    width: 80%;
    flex-flow: column;
    gap: 8rem;
    margin-right: auto;
    margin-left: auto;
  }

  .top-access .item-1 {
    width: 100%;
  }

  .top-access .item-2 {
    width: 100%;
  }
}

@media screen and (max-width:572px) {
  .top-access {
    width: 90%;
  }
}

/* -----------------------------------
トップ 駐車場
-------------------------------------- */
.top-parking {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}

.top-parking .item-1 {
  width: 25%;
  margin-right: 10rem;
}

.top-parking .item-2 {
  width: 40%;
}

.top-parking .item-2 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:1024px) {
  .top-parking {
    display: flex;
    flex-flow: column;
    margin-top: 8rem;
    gap: 8rem;
    margin-right: auto;
    margin-left: auto;
  }
  .top-parking .item-1 {
    width: 70%;
    margin-right: 0;
  }
  .top-parking .item-2 {
    width: 70%;
  }
}
@media screen and (max-width:572px) {
  .top-parking {
    gap: 5rem;
  }
  .top-parking .item-1 {
    width: 90%;
  }
  .top-parking .item-2 {
    width: 70%;
  }
}

