@charset "UTF-8";
.soumokukan {
  margin: 0;
  height: 100vh; /* ウィンドウの高さに合わせる */
  position: relative;
  z-index: 0;
}
.soumokukan::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* 画像がウィンドウ全体を覆うように調整 */
  background-position: center; /* 中央に配置 */
  background-attachment: fixed; /* 背景画像を固定（スクロールに追従しない） */
  background-repeat: no-repeat; /* 繰り返しを防止 */
  -webkit-filter: blur(12px);
          filter: blur(12px); /* 背景画像をぼかす */
  background-image: url("/assets/img/utility/soumokukan/17.jpg");
  background-color: rgba(255, 255, 255, 0.74); /* 白い半透明のオーバーレイ */
  z-index: 1;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3137254902);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3137254902);
  padding: 0 1.2rem;
  padding-top: 0.8rem;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 2;
  max-width: 440px;
}
@media screen and (max-width: 767.98px) {
  .page {
    max-width: 767.98px;
  }
}
.page .title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
.page .title--sub {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}
.page .title--sub span {
  border-bottom: 1px dashed #ccc;
}
.page .contensInterval, .page .page__access, .page .page__food, .page .page__space, .page .page__intro {
  margin-bottom: 7.6rem;
}

.page__header .header {
  position: sticky;
  top: 10px;
}
.page__header .header__logo {
  width: 154px;
}

.page__intro .intro__time {
  padding-top: 4rem;
  padding-bottom: 4.8rem;
  text-align: center;
}
.page__intro .intro__caution .caution {
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
  padding: 0.8rem;
  text-align: center;
  border: 1px dashed #484848;
  border-radius: 6px;
}
.page__intro .intro__caution .caution .caution__closed {
  padding: 0.4rem 0;
  font-weight: bold;
}
.page__intro .intro__explanation {
  text-align: justify;
}

.page__space .space__phptos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
}
.page__space .space__phptos p {
  width: calc(50% - 0.2rem);
}

.page__food .food__explanation {
  text-align: center;
}
.page__food .food__desc {
  font-size: 0.9rem;
  padding: 0.8rem;
  background-color: #422b00;
  color: #ccc;
  border-radius: 6px;
}
.page__food .food__desc p {
  text-indent: -1.1rem;
  padding-left: 1.1rem;
}

.page__access .access__exterior {
  width: 300px;
  margin: auto;
}
.page__access .access__location .location__item {
  margin-top: 4.8rem;
  text-align: justify;
}
.page__access .access__location .location__item .address {
  text-align: center;
}
.page__access .access__location .location__item .address__place {
  margin-bottom: 0.8rem;
}
.page__access .access__map {
  margin-top: 4.8rem;
  margin-bottom: 0.8rem;
}
.page__access .access__desc {
  text-align: justify;
}

.page__footer {
  text-align: center;
}

.c-fullscreen--on .credit {
  position: fixed !important;
  z-index: 210 !important;
  color: #000 !important;
  opacity: 0.5 !important;
  text-shadow: 1px 1px 2px #ffffff !important;
  bottom: 20px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font: initial !important;
  text-align: center;
}

.c-fullscreen img {
  padding-bottom: initial;
}
.c-fullscreen img.is-full {
  max-width: 90%;
  max-height: 92%;
}

.c-fullscreen::after {
  padding: 0.2rem 0.4rem;
  color: #484848;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 8px;
  right: 8px;
  font-size: 0.7rem;
  opacity: 0;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.c-fullscreen:hover::after {
  opacity: 0.8;
  -webkit-transform: scale(1);
          transform: scale(1);
}/*# sourceMappingURL=soumokukan.css.map */