@charset "UTF-8";
@import url(component.css?202601087);
/* -------------------------------------
カラー
------------------------------------- */
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
:is(p, h1, h2, h3, h4, h5, h6, figcaption) {
  margin-block: var(--leading-trim);
}

html {
  font-size: 2.6666666667vw;
  /* = (10 / 375) * 100) SPデザインが375の場合 */
}

@media screen and (min-width: 769px) {
  html {
    font-size: 1.3020833333vw;
    /* = (10 / 1440) * 100) SPデザインが1024の場合 */
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.6944444444vw;
    /* = (10 / 1440) * 100) SPデザインが1440の場合 */
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #232323;
  background-color: #F0F0F0;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

.font-en {
  font-family: "Roboto Condensed", sans-serif;
}

.font-ttl {
  font-family: "BIZ UDPMincho", sans-serif;
}

.font-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-mainInner {
  width: min(110.5rem, 100%);
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .l-mainInner {
    width: 112rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-mainInner {
    width: 33.5rem;
    padding-inline: 0;
  }
}

@media screen and (max-width: 1024px) {
  .l-mainInner_sp {
    width: 32.5rem;
    margin: 0 auto;
  }
}

.l-pageInner {
  width: 101.1rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-pageInner {
    width: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .l-pageInner {
    width: 32.5rem;
  }
}

.font-bold {
  font-weight: 700;
}

.font-strong > span {
  position: relative;
}
.font-strong > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -0.3rem -0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  background-color: currentColor;
  border-radius: 9999px;
}

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

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

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

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

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

.all-none {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* -------------------------------------
ヘッダー
------------------------------------- */
#pageHeader {
  overflow-x: clip;
  width: 100%;
}

.l-overlay {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.l-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

.l-head {
  width: 100%;
  height: 8.4rem;
  position: absolute;
  top: 0;
  left: 0;
}

.l-head_title {
  width: calc(100% - 87vw);
  position: absolute;
  top: 7.7rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .l-head_title {
    width: auto;
    left: 5.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-head_title {
    top: 3.7rem;
    left: 1.7rem;
  }
}

.l-head_logo {
  width: 13.2rem;
  height: 31.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-head_logo {
    width: 9.2rem;
    height: auto;
  }
}
.l-head_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-head_cnt {
  width: 87vw;
  height: 100%;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1440px) {
  .l-head_cnt {
    width: 117.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-head_cnt {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-head_cnt {
    width: 21.3rem;
  }
}

.l-head_hours {
  display: flex;
  margin-top: 4rem;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .l-head_hours {
    flex-direction: column;
    margin-top: 4.3rem;
    margin-right: 12rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-head_hours {
    margin-right: 0;
  }
}

.l-head_hours-child {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-head_hours-child {
    align-items: flex-start;
    gap: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .l-head_hours-child {
    flex-direction: column;
  }
}
.l-head_hours-child dt {
  width: 8.8rem;
  height: 2.8rem;
  display: grid;
  place-content: center;
  margin-block: var(--leading-trim);
  margin-right: 1.4rem;
  background-color: #fff;
  border: 0.15rem solid #1C1C1C;
  line-height: 1.5;
  color: #232323;
  border-radius: 9999px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .l-head_hours-child dt {
    width: 7.8rem;
    height: 2.5rem;
    font-size: 1.3rem;
    border-radius: 10rem;
  }
}
.l-head_hours-child dd {
  margin-block: var(--leading-trim);
  font-size: 1.8rem;
  line-height: 1.5;
}
.l-head_hours-child dd:not(:last-child) {
  margin-right: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .l-head_hours-child dd {
    font-size: 1.6rem;
  }
}
.l-head_hours-child dd.--line {
  padding-left: 1.7rem;
  position: relative;
}
.l-head_hours-child dd.--line::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.6lh;
  top: 59%;
  translate: 0 -50%;
  background-color: #1C1C1C;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .l-head_hours-child dd.--line {
    padding-left: 0;
  }
  .l-head_hours-child dd.--line::before {
    display: none;
  }
}
.l-head_hours-child dd .--small {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .l-head_hours-child dd .--small {
    font-size: 1.2rem;
  }
}

.l-head_nav {
  margin-top: 3.1rem;
  margin-right: 1.5rem;
  display: flex;
  align-self: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .l-head_nav {
    display: none;
  }
}
.l-head.--page .l-head_title {
  top: 3.7rem;
}
.l-head.--page .l-head_logo {
  width: 6vw;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .l-head.--page .l-head_logo {
    width: 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-head.--page .l-head_logo {
    width: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .l-head.--page .l-head_logo {
    width: 9.4rem;
  }
}

/* -------------------------------------
下層ページ用ヘッダー
------------------------------------- */
.l-head_child {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 11.8rem;
  background-color: #F5F3EE;
  position: relative;
}
.l-head_child .l-head_title {
  width: 22.057rem;
  margin: unset;
  padding-top: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -52% -42%;
}
@media screen and (max-width: 1024px) {
  .l-head_child .l-head_title {
    position: static;
    translate: unset;
    margin: 0 auto;
  }
}

.l-head_child_inner {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 3rem;
}

.l-head_innerTop {
  padding-top: 8.41rem;
}
@media screen and (max-width: 1024px) {
  .l-head_innerTop {
    padding-top: 13.41rem;
  }
}
@media screen and (max-width: 768px) {
  .l-head_innerTop {
    padding-top: 24.41rem;
  }
}

/* -------------------------------------
ハンバーガーメニュー
------------------------------------- */
/* ボタン　 */
.l-menu_btn {
  cursor: pointer;
  border-radius: 9999px;
  background-color: #59412A;
  width: 8.4rem;
  height: 2.8rem;
  overflow: hidden;
  position: fixed;
  top: 3.6rem;
  right: 5.6rem;
  z-index: 300;
}
@media screen and (max-width: 1024px) {
  .l-menu_btn {
    top: auto;
    bottom: 3rem;
    right: 50%;
    translate: 50% 0;
  }
}
.l-menu_btn .l-openbtn_lineBox {
  translate: 0 0;
  transition: translate 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-menu_btn.active .l-openbtn_lineBox {
  translate: 0 -50%;
  transition: translate 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-menu_btn.active .l-openbtn_lineBox .--text:first-child {
  opacity: 0;
  transition: opacity 0.5s;
}
.l-menu_btn.active .l-openbtn_lineBox .--text:last-child {
  opacity: 1;
  transition: opacity 0.5s;
}
.l-menu_btn.active .l-openbtn_lineBox .c-menu_textSlide > span:first-child {
  opacity: 0;
  translate: -50% -100%;
  transition: translate 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s;
}
.l-menu_btn.active .l-openbtn_lineBox .c-menu_textSlide > span:last-child {
  opacity: 1;
  translate: -50% 0;
  transition: translate 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s;
}

.l-openbtn_lineBox {
  height: 5.6rem;
  display: flex;
  flex-direction: column;
}
.l-openbtn_lineBox .--text {
  height: 100%;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.l-openbtn_lineBox .--text:first-child {
  opacity: 1;
  transition: opacity 0.5s;
}
.l-openbtn_lineBox .--text:last-child {
  opacity: 0;
  transition: opacity 0.5s;
}
.l-openbtn_lineBox .--text::before, .l-openbtn_lineBox .--text::after {
  content: "";
  display: block;
  width: 0.3rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.l-openbtn_lineBox .--text::before {
  left: 1.4rem;
}
.l-openbtn_lineBox .--text::after {
  right: 1.4rem;
}

/* メニュー背景 */
.l-open_sp {
  width: 30rem;
  height: 44rem;
  padding: 9rem 2rem 6rem 4.4rem;
  border-radius: 1rem;
  position: fixed;
  top: 2.6rem;
  right: 4.6rem;
  z-index: 299;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  background-color: #755D46;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
  .l-open_sp {
    top: auto;
    bottom: 7.6rem;
    right: 50%;
    translate: 50% 0;
  }
}
.l-open_sp::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/noise.png);
  background-size: 10rem;
  background-position: center;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-open_sp.openbgactive {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

/* -------------
SPメニュー
------------- */
.l-sp_menu {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 1024px) {
  .l-sp_menu:not(:first-of-type) {
    margin-top: 3rem;
  }
}

.l-sp_menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.l-sp_menu-list > li a {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  margin-block: var(--leading-trim);
  color: #fff;
}

.l-sp_sns_block {
  margin-top: 2.7rem;
  display: flex;
  gap: 1.5rem;
}
.l-sp_sns_block a {
  transition: 0.3s;
}
@media (hover: hover) {
  .l-sp_sns_block a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

.l-sns_icon {
  width: 2.4rem;
  height: 2.4rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.l-sns_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-head_sp_duckling {
  position: absolute;
  right: 2.7rem;
  bottom: 0;
  width: 7.9rem;
  height: 6.1rem;
}
.l-head_sp_duckling img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------
フッター
------------------------------------- */
#pageFooter {
  overflow-x: clip;
  position: relative;
}

.l-foot {
  height: 77rem;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .l-foot {
    height: 66.7rem;
  }
}

.l-foot_bath {
  width: 100%;
  height: 8.3rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  background-image: url(../img/common/foot_bath.png);
  background-size: 144rem 8.3rem;
  background-position: center;
  background-repeat: repeat-x;
}

.l-foot_people {
  width: 18.5rem;
  height: 9.2rem;
  position: absolute;
  bottom: 7.3rem;
  left: 50%;
  translate: -51% 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .l-foot_people {
    width: 14.84rem;
    height: 7.36rem;
    translate: -51% 0;
  }
}

.l-foot_huu {
  width: 7rem;
  height: 18.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -95%;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .l-foot_huu {
    translate: -50% -50%;
  }
}

.l-foot_copyright {
  position: absolute;
  bottom: 9rem;
  left: 5.5rem;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .l-foot_copyright {
    bottom: 17rem;
    left: 0;
    translate: -39% 0;
    rotate: 90deg;
  }
}
.l-foot_copyright small {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .l-foot_copyright small {
    font-size: 1rem;
  }
}

.l-foot_backtop {
  position: absolute;
  bottom: 9rem;
  right: 6.1rem;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .l-foot_backtop {
    top: 12rem;
    bottom: auto;
    right: 50%;
    translate: 50%;
  }
}

.l-foot_backtop_link .c-arrow {
  transition: 0.3s;
}
@media (hover: hover) {
  .l-foot_backtop_link:hover .c-arrow {
    translate: 0 -0.2rem;
    transition: 0.3s;
  }
}

.l-foot_backtop_inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.l-foot_backtop_inner .c-arrow {
  rotate: -90deg;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.l-foot_backtop_text {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
}

/* -------------------------------------
ニュース news お知らせ
------------------------------------- */
.l-news_cat .c-sub-heading__link-list {
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 1024px) {
  .l-news_cat .c-sub-heading__link-list {
    justify-content: flex-start;
    gap: 2rem;
  }
}
.l-news_cat .c-sub-heading__link::before {
  display: none;
}

.l-single_content {
  padding: 4rem 0 6rem;
}

.l-archive_head {
  padding-top: 28rem;
}

.l-archive_inner {
  width: 91.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-archive_inner {
    width: 52.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-archive_inner {
    width: 32.5rem;
  }
}

.l-archive_cnt {
  padding: 4.7rem 0 8rem;
}

.l-single_inner {
  width: 91.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-single_inner {
    width: 72.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-single_inner {
    width: 32.5rem;
  }
}

.l-single_head {
  padding: 30.8rem 0 0;
}

/* -------------------------------------
2カラム用レイアウト
------------------------------------- */
.l-col2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .l-col2 {
    flex-direction: column;
  }
}
.l-col2.--sticky {
  position: relative;
}
.l-col2.--sticky .l-content_side {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 3rem;
}
@media screen and (max-width: 1024px) {
  .l-col2.--sticky .l-content_side {
    position: static;
  }
}

/* -------------------------------------
下層ページ
------------------------------------- */
.l-page_mvBlock {
  padding: 0 3.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-page_mvBlock {
    padding: 1rem 2rem 0;
  }
}

.l-page_mv-cnt {
  width: 86.7%;
  position: absolute;
  bottom: 4.3rem;
  left: 10rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .l-page_mv-cnt {
    bottom: 2.3rem;
    left: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .l-page_mv-cnt {
    width: 100%;
    position: static;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
  }
}

.l-page_mv-cnt_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-page_mv-cnt_inner {
    display: block;
  }
}

.l-page_mv-ttl {
  font-size: 4.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .l-page_mv-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .l-page_mv-ttl {
    font-size: 3.2rem;
    color: #232323;
  }
}

.l-page_mv-text {
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-left: 3rem;
  margin-top: 2.3rem;
}
@media screen and (max-width: 1024px) {
  .l-page_mv-text {
    font-size: 1.3rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-page_mv-text {
    font-size: 1.5rem;
    color: #232323;
    padding-left: 0;
  }
}
.l-page_mv-text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 0.3rem;
  height: 90%;
  background-image: url(../img/common/border_wave.svg);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top left;
  scale: 1.8 1;
}
@media screen and (max-width: 768px) {
  .l-page_mv-text::before {
    display: none;
  }
}

/* -------------------------------------
animation
------------------------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* -------------------------------------
ローディングアニメーション
------------------------------------- */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #F4DB36;
  background-image: url(../img/common/noise.png);
  background-size: 10rem;
  background-position: center;
  background-repeat: repeat;
  z-index: 9999;
  transition: opacity 0.5s;
}
.l-loading.l-fade-out {
  opacity: 0;
  transition: 1s;
}

.l-loading_fog {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  aspect-ratio: 2120/1188;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-loading_fog {
    width: 110rem;
  }
}
.l-loading_fog img {
  display: block;
}
.l-loading_fog:nth-child(1) {
  left: -60%;
  translate: 100% -50%;
}
@media screen and (max-width: 768px) {
  .l-loading_fog:nth-child(1) {
    left: -280%;
  }
}
.l-loading_fog:nth-child(1).--left0 {
  left: 0;
  opacity: 0;
  transition: left 3s cubic-bezier(0.12, 0, 0.39, 0), opacity 3.5s;
}
.l-loading_fog:nth-child(2) {
  right: -50%;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  .l-loading_fog:nth-child(2) {
    right: -280%;
  }
}
.l-loading_fog:nth-child(2).--right0 {
  right: 0;
  opacity: 0;
  transition: right 3s cubic-bezier(0.12, 0, 0.39, 0), opacity 3.5s;
}

.l-loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.l-loading_logo img {
  display: block;
}

.l-loading_num {
  position: absolute;
  bottom: 10%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.l-loading_num .l-loading_num-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

/* -------------------------------------
その他
------------------------------------- */
@media screen and (max-width: 1024px) {
  .u-txt-right {
    display: block;
    text-align: right;
  }
}