@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 0.6944444444vw;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #242020;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #242020;
  font-weight: 500;
}

input[type=search]::-webkit-search-cancel-button {
  appearance: none;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

*, *:after, *:before {
  box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.4rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3rem);
  }
}

.l-container {
  overflow: hidden;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-black {
  font-weight: 900;
}

.u-underline {
  text-decoration: underline;
}

.u-sans03 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.u-sans02 {
  font-family: "Dela Gothic One", sans-serif;
}

.bg-beige04 {
  background-color: #FCFBF9;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-link {
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-link {
    padding: 1rem 0;
  }
}
.c-link.-right {
  text-align: right;
}
.c-link.-center {
  text-align: center;
}
.c-link > * {
  cursor: pointer;
  padding-right: 7rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-link > * {
    padding-right: 5rem;
  }
}
.c-link > *::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-link > *::before {
    width: 3.7rem;
    height: 3.7rem;
  }
}
.c-link > *::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
  width: 1.7rem;
  height: 1.6rem;
  transition: 0.3s;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-link > *::after {
    width: 1.3rem;
    height: 1.2rem;
    right: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-link > *:hover::before {
    background-color: #fff;
  }
  .c-link > *:hover::after {
    background-color: #425742;
  }
}
.c-link > *.-black {
  color: #242020;
}
.c-link > *.-black::before {
  border: 1px solid #242020;
}
.c-link > *.-black::after {
  background-color: #242020;
}
@media screen and (min-width: 768px) {
  .c-link > *.-black:hover::before {
    background-color: #242020;
  }
  .c-link > *.-black:hover::after {
    background-color: #fff;
  }
}
.c-link > *.-green {
  color: #425742;
}
.c-link > *.-green::before {
  border: 1px solid #425742;
}
.c-link > *.-green::after {
  background-color: #425742;
}
@media screen and (min-width: 768px) {
  .c-link > *.-green:hover::before {
    background-color: #425742;
  }
  .c-link > *.-green:hover::after {
    background-color: #fff;
  }
}

.c-back.-center {
  text-align: center;
}
.c-back a {
  padding-left: 6.3rem;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-back a {
    padding-left: 5rem;
  }
}
.c-back a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5rem;
  height: 5rem;
  border: 1px solid #242020;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-back a::before {
    width: 3.7rem;
    height: 3.7rem;
    left: 0;
  }
}
.c-back a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 1.6rem;
  width: 1.7rem;
  height: 1.6rem;
  transition: 0.3s;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #242020;
}
@media screen and (max-width: 767px) {
  .c-back a::after {
    width: 1.3rem;
    height: 1.2rem;
    left: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-back a:hover::before {
    background-color: #242020;
  }
  .c-back a:hover::after {
    background-color: #fff;
  }
}

/* タイトル
--------------------------------*/
.c-secttl {
  font-size: 4.3rem;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
  }
}
.c-secttl.-s {
  font-size: 2rem;
}
.c-secttl.-ss {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-secttl.-ss {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.c-secttl.-l {
  font-size: 4.7rem;
}
@media screen and (max-width: 767px) {
  .c-secttl.-l {
    font-size: 2.6rem;
  }
}
.c-secttl.-ll {
  font-size: 5.2rem;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: absolute;
  z-index: 998;
  width: 100%;
  top: 0;
  left: 0;
  height: 11rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 6rem;
  }
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.l-header_left {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-header_left {
    gap: 0.5rem;
  }
}
.l-header_left .logo {
  width: 17.6rem;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 9.5rem;
  }
}
.l-header_left .txt {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 0.6rem;
  background-color: #fff;
  border: 1px solid #242020;
  box-shadow: 3px 3px 0px 0px #E7D6A4, 3px 3px 0px 1px #242020;
}
@media screen and (max-width: 767px) {
  .l-header_left .txt {
    font-size: 1.1rem;
    padding: 0.2rem 0.6rem;
    box-shadow: 2px 2px 0px 0px #E7D6A4, 2px 2px 0px 1px #242020;
  }
}
.l-header_right {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  padding-right: 3rem;
}
.l-header_right .menu .list {
  display: flex;
  align-items: center;
}
.l-header_right .menu .list_item {
  position: relative;
}
.l-header_right .menu .list_item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 2.3rem;
  background-color: #969292;
}
.l-header_right .menu .list_item a {
  padding: 0 2rem 0 4.3rem;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-header_right .menu .list_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.8rem;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_seach.png) no-repeat center center/contain;
}
.l-header_right .menu .list_item a::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header_right .menu .list_item a:hover::after {
    transform: scale(1, 1);
  }
}
.l-header_right .menu .list_item a.-sauna::before {
  background: url(../img/common/icon_sauna.png) no-repeat center center/contain;
}
.l-header_right .menu .list_item a.-camera::before {
  background: url(../img/common/icon_camera.png) no-repeat center center/contain;
}
.l-header_right .menu .list_item a.-tree::before {
  background: url(../img/common/icon_tree.png) no-repeat center center/contain;
}

.menu-trigger {
  width: 8.7rem;
  height: 3.6rem;
  border: 1px solid #242020;
  border-radius: 1.8rem;
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  top: 4rem;
  right: 5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    width: 7rem;
    height: 3rem;
    top: 1.6rem;
    right: 1.5rem;
  }
  .is-fixed .menu-trigger {
    top: 3.2rem;
    right: 3rem;
  }
}
.menu-trigger span {
  width: 2.7rem;
  height: 1px;
  background-color: #242020;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.1rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .menu-trigger span {
    top: 0.9rem;
  }
}
.is-fixed .menu-trigger span {
  top: 50%;
  transform: translateX(-50%) rotate(200deg);
}
.menu-trigger span:nth-child(2) {
  top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .menu-trigger span:nth-child(2) {
    top: 1.9rem;
  }
}
.is-fixed .menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) rotate(-200deg);
}

.gnavi {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #425742;
  padding: 2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .gnavi {
    padding: 1.8rem;
  }
  .gnavi .l-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
  }
}
.is-fixed .gnavi {
  opacity: 1;
  visibility: visible;
}
.gnavi_inner {
  background-color: #FFFCF4;
  border-radius: 3rem;
  padding: 5rem 0 2rem;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gnavi_inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .gnavi_inner {
    padding: 5.53rem 1rem;
    border-radius: 1rem;
  }
}
.gnavi_inner .logo {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .logo {
    margin-top: 3rem;
  }
}
.gnavi_inner .logo img {
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .logo img {
    width: 14.2rem;
  }
}
.gnavi_inner .menu-box {
  margin-top: 4.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box {
    margin-top: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .menu {
    margin-top: 1.5rem;
    order: 2;
  }
  .gnavi_inner .menu-box .menu:nth-child(2) {
    order: 3;
  }
  .gnavi_inner .menu-box .menu:nth-child(2) .list_item:nth-child(n+2) {
    margin-top: 1rem;
  }
  .gnavi_inner .menu-box .menu:nth-child(2) .list_item_link {
    font-size: 1.6rem;
  }
}
.gnavi_inner .menu-box .menu .list_item:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .menu .list_item:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}
.gnavi_inner .menu-box .menu .list_item_link {
  font-size: 2rem;
  letter-spacing: 0.07em;
  padding-left: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .menu .list_item_link {
    font-size: 1.8rem;
  }
}
.gnavi_inner .menu-box .menu .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border: 1px solid #425742;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link:hover::before {
    background-color: #425742;
  }
}
.gnavi_inner .menu-box .menu .list_item_link.-seach::before {
  border: none;
  border-radius: none;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_seach.png) no-repeat center center/contain;
}
.gnavi_inner .menu-box .menu .list_item_link.-seach::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link.-seach:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .menu .list_item_link.-sauna::before {
  border: none;
  border-radius: none;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_sauna.png) no-repeat center center/contain;
}
.gnavi_inner .menu-box .menu .list_item_link.-sauna::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link.-sauna:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .menu .list_item_link.-camera::before {
  border: none;
  border-radius: none;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_camera.png) no-repeat center center/contain;
}
.gnavi_inner .menu-box .menu .list_item_link.-camera::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link.-camera:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .menu .list_item_link.-tree::before {
  border: none;
  border-radius: none;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_tree.png) no-repeat center center/contain;
}
.gnavi_inner .menu-box .menu .list_item_link.-tree::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link.-tree:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .menu .list_item_link.-pen::before {
  border: none;
  border-radius: none;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_pen.png) no-repeat center center/contain;
}
.gnavi_inner .menu-box .menu .list_item_link.-pen::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item_link.-pen:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .menu .list_item .child-list_item {
  margin-top: 0.5rem;
}
.gnavi_inner .menu-box .menu .list_item .child-list_item_link {
  position: relative;
}
.gnavi_inner .menu-box .menu .list_item .child-list_item_link::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .menu .list_item .child-list_item_link:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .c-seach-box {
  width: 42rem;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .c-seach-box {
    width: 100%;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .c-seach-box .ttl {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
}
.gnavi_inner .menu-box .c-seach-box .ttl a {
  position: relative;
}
.gnavi_inner .menu-box .c-seach-box .ttl a::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: -2rem;
  width: calc(100% + 2rem);
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .menu-box .c-seach-box .ttl a:hover::after {
    transform: scale(1, 1);
  }
}
.gnavi_inner .menu-box .c-seach-box .form-box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .c-seach-box .form-box dl .item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .gnavi_inner .menu-box .c-seach-box .form-box dl .item dt {
    width: 100%;
  }
}
.gnavi_inner .menu-box .c-seach-box .form-box dl .item dd {
  margin-top: 0.5rem;
  width: 26.3rem;
}
.gnavi_inner .bottom {
  margin-top: 8rem;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  background-color: #425742;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 1.5rem;
  }
}
.l-footer_inner {
  background-color: #FFFCF4;
  border-radius: 3rem;
  padding: 5rem 0 0rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner {
    padding-top: 3rem;
    border-radius: 1rem;
  }
}
.l-footer_inner .logo {
  text-align: center;
}
.l-footer_inner .logo img {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .logo img {
    width: 20rem;
  }
}
.l-footer_inner .menu-box {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box {
    margin: 3rem 1.5rem 0;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box .menu:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.l-footer_inner .menu-box .menu .list_item:nth-child(n+2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box .menu .list_item:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.l-footer_inner .menu-box .menu .list_item_link {
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  padding-left: 2.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box .menu .list_item_link {
    font-size: 1.4rem;
    padding-left: 2rem;
  }
}
.l-footer_inner .menu-box .menu .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border: 1px solid #425742;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box .menu .list_item_link::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_inner .menu-box .menu .list_item_link:hover::before {
    background-color: #425742;
  }
}
.l-footer_inner .menu-box .menu .list_item .child-list {
  margin-left: 2.2rem;
}
.l-footer_inner .menu-box .menu .list_item .child-list_item {
  margin-top: 0.5rem;
}
.l-footer_inner .menu-box .menu .list_item .child-list_item_link {
  position: relative;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .menu-box .menu .list_item .child-list_item_link {
    font-size: 1.3rem;
  }
}
.l-footer_inner .menu-box .menu .list_item .child-list_item_link::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer_inner .menu-box .menu .list_item .child-list_item_link:hover::after {
    transform: scale(1, 1);
  }
}
.l-footer_inner .bottom {
  margin-top: 8rem;
  padding: 2.5rem 0;
  border-top: 1px solid #707070;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
  }
}
.l-footer_inner .bottom .privacy a {
  position: relative;
}
.l-footer_inner .bottom .privacy a::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer_inner .bottom .privacy a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom .privacy a {
    font-size: 1.2rem;
  }
}
.l-footer_inner .bottom .copyright {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom .copyright {
    font-size: 1.2rem;
    left: calc(50% + 2rem);
  }
}
.l-footer_inner .bottom .copyright small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom .copyright small {
    font-size: 1.2rem;
  }
}
.l-footer_inner .bottom .top {
  cursor: pointer;
}
.l-footer_inner .bottom .top span {
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom .top span {
    padding-left: 1.6rem;
  }
}
.l-footer_inner .bottom .top span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.4rem;
  background: url(../img/common/arrow_top_green.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer_inner .bottom .top span::before {
    width: 1.2rem;
    height: 1rem;
  }
}
.l-footer_inner .bottom .top span::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer_inner .bottom .top span:hover::after {
    transform: scale(1, 1);
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* メインコンテンツ
---------------------------------------------------------------------------- */
.main-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .main-inner {
    display: block;
  }
}
.main-inner .main-content {
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-content {
    width: 100%;
  }
}
.main-inner .main-side {
  width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side {
    margin: 0 2.5rem 6rem;
    width: auto;
  }
}
.main-inner .main-side .owner-box {
  background-color: #E7D6A4;
  border: 1px solid #242020;
  padding: 1rem;
}
.main-inner .main-side .owner-box .inner {
  background-color: #FFFDF5;
  border-radius: 1rem;
  border: 1px solid #242020;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .owner-box .inner {
    padding: 2.5rem 1.5rem;
  }
}
.main-inner .main-side .owner-box .inner .c-secttl {
  text-align: center;
}
.main-inner .main-side .owner-box .inner .flex {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .owner-box .inner .flex {
    gap: 1rem;
  }
}
.main-inner .main-side .owner-box .inner .flex .img {
  width: 12rem;
}
.main-inner .main-side .owner-box .inner .flex .img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.main-inner .main-side .owner-box .inner .flex .txt-box {
  flex: 1;
}
.main-inner .main-side .owner-box .inner .flex .txt-box .spot {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #425742;
}
.main-inner .main-side .owner-box .inner .flex .txt-box .name {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
.main-inner .main-side .owner-box .inner .txt {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .owner-box .inner .txt {
    font-size: 1.2rem;
  }
}
.main-inner .main-side .owner-box .inner .reco {
  margin-top: 1.9rem;
}
.main-inner .main-side .owner-box .inner .reco-ttl {
  padding: 0.5rem 1.7rem;
  border: 1px solid #242020;
  background-color: #F0E8D1;
  border-radius: 1.3rem;
  font-size: 1.4rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .owner-box .inner .reco-ttl {
    font-size: 1.2rem;
  }
}
.main-inner .main-side .owner-box .inner .reco-txt {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .owner-box .inner .reco-txt {
    font-size: 1.2rem;
  }
}
.main-inner .main-side .pr-box {
  background-color: #F2F2F2;
  padding: 1.9rem 1.3rem 3rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .pr-box {
    background-color: transparent;
    padding: 0;
    width: calc(100% + 8rem);
    margin-left: -4rem;
  }
}
.main-inner .main-side .pr-box .c-secttl {
  text-align: center;
}
.main-inner .main-side .pr-box .slider-box {
  margin-top: 1.7rem;
}
.main-inner .main-side .pr-box .slider-box .slider {
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .pr-box .slider-box .slider .slick-list {
    padding-left: 2rem;
  }
}
.main-inner .main-side .pr-box .slider-box .slider .slider-prev, .main-inner .main-side .pr-box .slider-box .slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  left: 0;
}
.main-inner .main-side .pr-box .slider-box .slider .slider-next {
  left: auto;
  right: 0;
}
.main-inner .main-side .pr-box .slider-box .slider .slick-slide {
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .pr-box .slider-box .slider .slick-slide {
    margin-right: 2.5rem;
    margin-left: 0;
    width: 23rem;
  }
}
.main-inner .main-side .pr-box .slider-box .slider .slick-slide a {
  display: block;
}
.main-inner .main-side .pr-box .slider-box .slider .slick-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.main-inner .main-side .menu-box .list_item {
  position: relative;
  border-top: 1px solid #707070;
}
.main-inner .main-side .menu-box .list_item:last-child {
  border-bottom: 1px solid #707070;
}
.main-inner .main-side .menu-box .list_item a {
  padding: 2rem 2.4rem;
  display: block;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .menu-box .list_item a {
    font-size: 1.6rem;
  }
}
.main-inner .main-side .menu-box .list_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_seach.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .main-inner .main-side .menu-box .list_item a:hover {
    background-color: #F5F5EC;
  }
}
.main-inner .main-side .menu-box .list_item a.-sauna::before {
  background: url(../img/common/icon_sauna.png) no-repeat center center/contain;
}
.main-inner .main-side .menu-box .list_item a.-camera::before {
  background: url(../img/common/icon_camera.png) no-repeat center center/contain;
}
.main-inner .main-side .menu-box .list_item a.-tree::before {
  background: url(../img/common/icon_tree.png) no-repeat center center/contain;
}
.main-inner .main-side .event-box {
  background-color: #425742;
  padding: 2.5rem 2rem;
}
.main-inner .main-side .event-box .ttl {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7083333333;
}
.main-inner .main-side .event-box .btn {
  margin-top: 2rem;
}
.main-inner .main-side .event-box .btn_link {
  width: 100%;
  display: flex;
  align-items: center;
  height: 5.3rem;
  padding-left: 1.5rem;
  position: relative;
  color: #425742;
  background-color: #F0F0F0;
  border-radius: 1rem;
}
.main-inner .main-side .event-box .btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #425742;
  border-radius: 50%;
  transition: 0.3s;
}
.main-inner .main-side .event-box .btn_link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.8rem;
  width: 1.2rem;
  height: 1.2rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #425742;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .main-inner .main-side .event-box .btn_link:hover::before {
    background-color: #425742;
  }
  .main-inner .main-side .event-box .btn_link:hover::after {
    background-color: #F0F0F0;
  }
}
.main-inner .main-side .category-box .ttl {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
}
.main-inner .main-side .category-box .list {
  margin-top: 2rem;
}
.main-inner .main-side .category-box .list_item:nth-child(n+2) {
  margin-top: 1rem;
}
.main-inner .main-side .category-box .list_item a {
  padding-left: 2.2rem;
  position: relative;
}
.main-inner .main-side .category-box .list_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border: 1px solid #425742;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .main-inner .main-side .category-box .list_item a::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .main-inner .main-side .category-box .list_item a:hover::before {
    background-color: #425742;
  }
}
.main-inner .main-side .category-box .list_item a.is-active::before {
  background-color: #425742;
}

/* 検索
---------------------------------------------------------------------------- */
.c-seach-box .ttl {
  font-size: 2rem;
  padding-left: 2.4rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-seach-box .ttl {
    font-size: 2.2rem;
  }
}
.c-seach-box .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.3rem;
  height: 2.9rem;
  background: url(../img/common/icon_seach.png) no-repeat center center/contain;
}
.c-seach-box .form-box {
  margin-top: 1.5rem;
}
.c-seach-box .form-box dl .item {
  display: flex;
  align-items: center;
}
.c-seach-box .form-box dl .item:nth-child(n+2) {
  margin-top: 1.4rem;
}
.c-seach-box .form-box dl .item dt {
  width: 9.5rem;
}
@media screen and (max-width: 767px) {
  .c-seach-box .form-box dl .item dt {
    width: 8.5rem;
  }
}
.c-seach-box .form-box dl .item dd {
  flex: 1;
}
.c-seach-box .form-box dl .item dd .input-box {
  position: relative;
}
.c-seach-box .form-box dl .item dd .input-box input {
  border: 1px solid #707070;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 0 2rem;
  height: 5rem;
  width: 100%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-seach-box .form-box dl .item dd .input-box input {
    height: 4.2rem;
  }
}
.c-seach-box .form-box dl .item dd .input-box input::placeholder {
  color: #242020;
}
.c-seach-box .form-box dl .item dd .input-box button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  cursor: pointer;
  height: 100%;
}
.c-seach-box .form-box dl .item dd .input-box button img {
  width: 1.6rem;
  height: 1.7rem;
}
.c-seach-box .form-box dl .item dd .select-box {
  position: relative;
}
.c-seach-box .form-box dl .item dd .select-box::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.4rem;
  width: 1.2rem;
  height: 0.6rem;
  background: url(../img/common/arrow_bottom_serch.svg) no-repeat center center/contain;
}
.c-seach-box .form-box dl .item dd .select-box select {
  border: 1px solid #707070;
  background-color: #fff;
  border-radius: 0.4rem;
  padding: 0 2rem;
  height: 5rem;
  font-weight: 400;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-seach-box .form-box dl .item dd .select-box select {
    height: 4.2rem;
  }
}
.c-seach-box .category-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list {
    gap: 0.7rem;
  }
}
.c-seach-box .category-list_item_link {
  padding: 0.2rem 1.3rem;
  border: 1px solid #242020;
  border-radius: 1.9rem;
  font-size: 1.4rem;
  display: block;
  background-color: #F4E1BD;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item_link {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-seach-box .category-list_item_link:hover {
    background-color: #fff !important;
  }
}
.c-seach-box .category-list_item_link.-self-rollie {
  background-color: #E6E6E6;
}
.c-seach-box .category-list_item_link.-auto-rollie {
  background-color: #E7F4F5;
}
.c-seach-box .category-list_item_link.-whisking {
  background-color: #F0F5AD;
}
.c-seach-box .category-list_item_link.-aufguss {
  background-color: #FFD9D9;
}
.c-seach-box .category-list_item_link.-river {
  background-color: #DFE5F5;
}
.c-seach-box .category-list_item_link.-lake-pond {
  background-color: #CEF7F4;
}
.c-seach-box .category-list_item_link.-sea {
  background-color: #EBF6FF;
}
.c-seach-box .category-list_item_link.-groundwater {
  background-color: #CDDDEF;
}
.c-seach-box .category-list_item_link.-private {
  background-color: #F4F2F2;
}
.c-seach-box .category-list_item_link.-public {
  background-color: #EAFDEB;
}
.c-seach-box .category-list_item_link.-group {
  background-color: #FFF7D6;
}
.c-seach-box .category-list_item_link.-stay {
  background-color: #FAF2FD;
}
.c-seach-box .category-list_item_link.-solo {
  background-color: #E1F5D4;
}
.c-seach-box .category-list_item_link.-pet {
  background-color: #EFE8CA;
}
.c-seach-box .category-list_item_link.-bbq {
  background-color: #EFD6D6;
}
.c-seach-box .category-list_item_link.-snow {
  background-color: #F0F2FA;
}
.c-seach-box .category-list_item_link.-bonfire {
  background-color: #F8E1BC;
}
.c-seach-box .category-list_item_link.-gender {
  background-color: #F7F1C4;
}
.c-seach-box .category-list_item_link.-empty-handed {
  background-color: #E3EFC2;
}
.c-seach-box .category-list_item_link.-shifuku {
  background-color: #DDEFD9;
}
.c-seach-box .category-list_item.-shifuku {
  display: none;
  position: relative;
  z-index: 3;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item.-shifuku {
    margin-right: 2.5rem;
  }
}
.c-seach-box .category-list_item.-shifuku .hatena-box {
  width: 0;
  height: 0;
}
.c-seach-box .category-list_item.-shifuku .hatena-box .icon {
  position: absolute;
  top: -0.2rem;
  right: -3rem;
  width: 2rem;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item.-shifuku .hatena-box .icon {
    top: 0.1rem;
    right: -2.5rem;
  }
}
.c-seach-box .category-list_item.-shifuku .hatena-box .icon img {
  width: 100%;
}
.c-seach-box .category-list_item.-shifuku .hatena-box .content-box {
  position: absolute;
  top: -1rem;
  right: -5.8rem;
  width: 24rem;
  padding: 3.4rem 1.6rem 1.7rem;
  background: url(../img/common/bg_hatena_shifuku.svg) no-repeat center center/contain;
  position: relative;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item.-shifuku .hatena-box .content-box {
    top: -0.7rem;
    right: -5.4rem;
    width: 19rem;
    padding: 2.5rem 1.3rem 1rem;
  }
}
.c-seach-box .category-list_item.-shifuku .hatena-box .content-box.is-active {
  opacity: 1;
  visibility: visible;
}
.c-seach-box .category-list_item.-shifuku .hatena-box .content-box .close {
  position: absolute;
  top: 0.9rem;
  right: -0.5rem;
  width: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item.-shifuku .hatena-box .content-box .close {
    top: 0.5rem;
  }
}
.c-seach-box .category-list_item.-shifuku .hatena-box .content-box .close img {
  width: 100%;
}
.c-seach-box .category-list_item.-shifuku .hatena-box .content-box .ex {
  font-size: 1.3rem;
  line-height: 1.2923076923;
}
@media screen and (max-width: 767px) {
  .c-seach-box .category-list_item.-shifuku .hatena-box .content-box .ex {
    font-size: 1.1rem;
  }
}

/* サウナリスト
---------------------------------------------------------------------------- */
.c-sauna-list.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.c-sauna-list.list .list_item {
  border: 1px solid #242020;
  background-color: #fff;
  height: 100%;
}
.c-sauna-list.list .list_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-sauna-list.list .list_item_img-box {
  padding: 1rem;
  background-color: #E7D6A4;
  border-bottom: 1px solid #242020;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item_img-box {
    padding: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-sauna-list.list .list_item_img-box:hover .list_item_img img {
    transform: scale(1.08);
  }
}
.c-sauna-list.list .list_item_img {
  border-radius: 1rem;
  border: 1px solid #242020;
  overflow: hidden;
}
.c-sauna-list.list .list_item_img img {
  width: 100%;
  aspect-ratio: 337/230;
  object-fit: cover;
  transition: 0.3s;
}
.c-sauna-list.list .list_item_txt-box {
  flex: 1;
  padding: 2rem 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item_txt-box {
    padding: 1.9rem 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-sauna-list.list .list_item_txt-box:hover .list_item_ttl {
    background-size: 100% 1px;
  }
}
.c-sauna-list.list .list_item_flex {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 0.5rem;
}
.c-sauna-list.list .list_item_flex_txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item_flex_txt {
    font-size: 1.2rem;
  }
}
.c-sauna-list.list .list_item_flex_txt:first-child {
  position: relative;
}
.c-sauna-list.list .list_item_flex_txt:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.8rem;
  width: 1px;
  height: 1.2rem;
  background-color: #242020;
}
.c-sauna-list.list .list_item_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #242020, #242020); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item_ttl {
    font-size: 2.1rem;
    line-height: 1.8095238095;
  }
}
.c-sauna-list.list .list_item_txt {
  margin-top: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item_txt {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}
.c-sauna-list.list .list_item .c-seach-box {
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-sauna-list.list .list_item .c-seach-box {
    margin-top: 1.5rem;
  }
}
.c-sauna-list.list .list_item .c-seach-box .category-list_item_link {
  padding: 0 1.3rem;
  pointer-events: none;
  font-size: 1.2rem;
}
.c-sauna-list.list .list_item .c-seach-box .category-list {
  gap: 0.7rem;
}

/* 施設ブログ
---------------------------------------------------------------------------- */
.c-blog-list.list .list_item {
  border: 1px solid #242020;
}
.c-blog-list.list .list_item a {
  display: flex;
  flex-direction: column;
  background-color: #F5F5EC;
  height: 100%;
}
.c-blog-list.list .list_item_img {
  padding: 1rem;
  border-bottom: 1px solid #242020;
  position: relative;
}
.c-blog-list.list .list_item_img::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  opacity: 0;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-blog-list.list .list_item_img:hover::before {
    opacity: 0.35;
  }
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_img {
    padding: 0.7rem;
  }
}
.c-blog-list.list .list_item_img img {
  width: 100%;
  aspect-ratio: 37/24;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #242020;
}
.c-blog-list.list .list_item_txt-box {
  flex: 1;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_txt-box {
    padding: 1.9rem 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-blog-list.list .list_item_txt-box:hover .list_item_ttl span {
    background-size: 100% 1px;
  }
}
.c-blog-list.list .list_item_category {
  background-color: #425742;
  padding: 0.3rem 2rem;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  border-radius: 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_category {
    font-size: 1.2rem;
    font-weight: 700;
  }
}
.c-blog-list.list .list_item_flex {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_flex {
    margin-top: 1rem;
  }
}
.c-blog-list.list .list_item_flex_txt {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_flex_txt {
    font-size: 1.2rem;
  }
}
.c-blog-list.list .list_item_ttl {
  font-size: 1.6rem;
  line-height: 1.6875;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-blog-list.list .list_item_ttl span {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #242020, #242020);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .c-blog-list.list .list_item_ttl {
    margin-top: 0.6rem;
    font-size: 1.4rem;
  }
}

/* 施設イベント・キャンペーン
---------------------------------------------------------------------------- */
.c-event-list.list .list_item {
  border: 1px solid #242020;
  background-color: #fff;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item {
    min-width: auto;
    width: auto;
  }
}
.c-event-list.list .list_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-event-list.list .list_item_img-box {
  background-color: #425742;
  border-bottom: 1px solid #242020;
  padding: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-event-list.list .list_item_img-box:hover .list_item_img::before {
    opacity: 0.35;
  }
}
.c-event-list.list .list_item_img {
  position: relative;
}
.c-event-list.list .list_item_img::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  opacity: 0;
  transition: 0.3s;
  border-radius: 1rem;
  background-color: #fff;
}
.c-event-list.list .list_item_img img {
  width: 100%;
  aspect-ratio: 360/312;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #242020;
}
.c-event-list.list .list_item_access {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.3rem 2.5rem;
  border-top: 1px solid #242020;
  border-right: 1px solid #242020;
  color: #fff;
  background-color: #425742;
  border-radius: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_access {
    font-size: 1.5rem;
  }
}
.c-event-list.list .list_item_txt-box {
  flex: 1;
  padding: 1.7rem 2.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_txt-box {
    padding: 1.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-event-list.list .list_item_txt-box:hover .list_item_ttl span {
    background-size: 100% 1px;
  }
}
.c-event-list.list .list_item_ttl {
  font-size: 2.1rem;
  letter-spacing: 0.07em;
  font-family: "Dela Gothic One", sans-serif;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-event-list.list .list_item_ttl span {
  text-decoration: none;
  background-image: linear-gradient(90deg, #242020, #242020); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_ttl {
    font-size: 1.8rem;
  }
}
.c-event-list.list .list_item dl {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item dl {
    margin-top: 0.5rem;
  }
}
.c-event-list.list .list_item_info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_info {
    gap: 0.8rem;
  }
}
.c-event-list.list .list_item_info:nth-child(n+2) {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_info:nth-child(n+2) {
    margin-top: 0;
  }
}
.c-event-list.list .list_item_info dt {
  width: 6rem;
  height: 2.5rem;
  background-color: #F0E8D1;
  border: 1px solid #242020;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  padding-top: 0.1rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_info dt {
    font-size: 1.2rem;
    width: 4.7rem;
    height: 1.9rem;
  }
}
.c-event-list.list .list_item_info dd {
  font-size: 1.8rem;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_info dd {
    font-size: 1.6rem;
  }
}
.c-event-list.list .list_item_sauna {
  margin-top: 0.6rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-event-list.list .list_item_sauna {
    font-size: 1.1rem;
  }
}
.c-event-list.list .list_item.-close .list_item_img::after {
  content: "終了しました";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  transition: 0.3s;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 体験レポ
---------------------------------------------------------------------------- */
.c-repo-list.list .list_item {
  width: 38rem;
  min-width: 38rem;
  margin-right: 2rem;
  border: 1px solid #242020;
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item {
    width: auto;
    min-width: auto;
  }
}
.c-repo-list.list .list_item a {
  height: 100%;
  display: block;
  background-color: #F5F5EC;
}
.c-repo-list.list .list_item_img-box {
  padding: 1rem;
  border-bottom: 1px solid #242020;
}
@media screen and (min-width: 768px) {
  .c-repo-list.list .list_item_img-box:hover img {
    transform: scale(1.08);
  }
}
.c-repo-list.list .list_item_img {
  overflow: hidden;
  border: 1px solid #242020;
  border-radius: 1rem;
}
.c-repo-list.list .list_item_img img {
  width: 100%;
  aspect-ratio: 360/233;
  object-fit: cover;
  transition: 0.3s;
}
.c-repo-list.list .list_item_txt-box {
  padding: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-repo-list.list .list_item_txt-box:hover .list_item_ttl span {
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_date {
    font-size: 1.2rem;
  }
}
.c-repo-list.list .list_item_ttl {
  font-size: 2rem;
  line-height: 1.87;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
}
.c-repo-list.list .list_item_ttl span {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #242020, #242020); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_ttl {
    font-size: 1.6rem;
  }
}
.c-repo-list.list .list_item_profile {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_profile {
    gap: 1rem;
  }
}
.c-repo-list.list .list_item_profile_img {
  width: 6.5rem;
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_profile_img {
    width: 5rem;
  }
}
.c-repo-list.list .list_item_profile_img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_profile_sauna {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-repo-list.list .list_item_profile_name {
    font-size: 1.2rem;
  }
}

/* お知らせ
---------------------------------------------------------------------------- */
.c-news-list.list .list_item {
  border-top: 1px solid #242020;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item {
    border-top: 1px solid #969292;
  }
}
.c-news-list.list .list_item:last-child {
  border-bottom: 1px solid #242020;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item:last-child {
    border-bottom: 1px solid #969292;
  }
}
.c-news-list.list .list_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7rem 2.4rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item a {
    display: block;
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-news-list.list .list_item a:hover {
    background-color: #F5F5F0;
  }
}
.c-news-list.list .list_item_info {
  width: 29.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item_info {
    width: 100%;
  }
}
.c-news-list.list .list_item_category-box {
  flex: 1;
}
.c-news-list.list .list_item_category {
  background-color: #425742;
  border-radius: 1.6rem;
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.3rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item_category {
    font-size: 1.2rem;
    padding: 0.4rem 2rem;
  }
}
.c-news-list.list .list_item_date {
  font-size: 1.4rem;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item_date {
    width: 9rem;
  }
}
.c-news-list.list .list_item_ttl {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-news-list.list .list_item_ttl {
    font-size: 1.4rem;
    margin-top: 1rem;
    -webkit-line-clamp: 2;
    line-height: 1.7;
  }
}

/* お問い合わせ
---------------------------------------------------------------------------- */
.c-contact {
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding-bottom: 7rem;
  }
}
.c-contact .content {
  margin: 0 auto;
  max-width: 93.5rem;
  background-color: #554944;
  padding: 1rem;
  border: 1px solid #242020;
}
.c-contact .content a {
  display: flex;
  align-items: center;
  background-color: #FFFDE8;
  border: 1px solid #F8EABA;
  border-radius: 1rem;
  padding: 3rem 3.5rem;
  gap: 5rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-contact .content a {
    display: block;
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact .content a:hover {
    background-color: #F8EABA;
  }
}
.c-contact .content a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid #554944;
  background-color: #554944;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-contact .content a::before {
    width: 4.2rem;
    height: 4.2rem;
    right: 1.5rem;
    top: auto;
    transform: translate(0);
    bottom: 1.5rem;
  }
}
.c-contact .content a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6.5rem;
  width: 1.7rem;
  height: 1.6rem;
  transition: 0.3s;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact .content a::after {
    top: auto;
    transform: translate(0);
    bottom: 2.8rem;
    right: 2.8rem;
  }
}
.c-contact .content a .ttl {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-contact .content a .ttl {
    font-size: 2rem;
  }
}
.c-contact .content a .txt {
  font-size: 1.4rem;
  line-height: 1.9428571429;
}
@media screen and (max-width: 767px) {
  .c-contact .content a .txt {
    font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.7;
  }
}

/* ページャー
---------------------------------------------------------------------------- */
.c-pager {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .c-pager {
    margin-top: 6rem;
  }
}
.c-pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pager ul {
    gap: 1rem;
  }
}
.c-pager ul li .page-numbers {
  width: 6.2rem;
  height: 6.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-pager ul li .page-numbers {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
.c-pager ul li .page-numbers.current {
  background-color: #425742;
  color: #fff;
}
.c-pager ul li .page-numbers.prev, .c-pager ul li .page-numbers.next {
  width: auto;
  height: auto;
  padding-right: 2.5rem;
  position: absolute;
  right: -15rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-pager ul li .page-numbers.prev, .c-pager ul li .page-numbers.next {
    right: -8rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-pager ul li .page-numbers.prev:hover::after, .c-pager ul li .page-numbers.next:hover::after {
    transform: scale(1, 1);
  }
}
.c-pager ul li .page-numbers.prev::before, .c-pager ul li .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.1rem;
  height: 0.8rem;
  background: url(../img/common/arrow_pager.svg) no-repeat center center/contain;
}
.c-pager ul li .page-numbers.prev::after, .c-pager ul li .page-numbers.next::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  background-color: #242020;
}
.c-pager ul li .page-numbers.prev {
  right: auto;
  left: -15rem;
  padding-right: 0;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-pager ul li .page-numbers.prev {
    left: -8rem;
    padding-left: 1.5rem;
  }
}
.c-pager ul li .page-numbers.prev::before {
  left: 0;
  right: auto;
  transform: translateY(-50%) rotate(-180deg);
}

/* パンくずリスト
---------------------------------------------------------------------------- */
.c-breadcrumb {
  padding: 3rem 0;
}
.c-breadcrumb .list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb .list::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb .list_item {
  font-size: 1.4rem;
  font-weight: 400;
  color: #425742;
  white-space: nowrap;
}
.c-breadcrumb .list_item_link {
  color: #242020;
  position: relative;
  white-space: nowrap;
}
.c-breadcrumb .list_item_link::before {
  content: "";
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  right: -1.5rem;
  width: 0.85rem;
  height: 0.85rem;
  background: url(../img/common/arrow_breadcrumb.svg) no-repeat center center/contain;
}
.c-breadcrumb .list_item_link::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242020;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb .list_item_link:hover::after {
    transform: scale(1, 1);
  }
}

/* PR
---------------------------------------------------------------------------- */
.c-pr {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .c-pr {
    padding: 5rem 0;
  }
}
.c-pr .ttl {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-pr .ttl {
    font-size: 1.8rem;
  }
}
.c-pr .slider-box {
  margin-top: 3rem;
}
.c-pr .slider-box .slider {
  width: calc(100% + 7rem);
  margin-left: -3.5rem;
}
@media screen and (max-width: 767px) {
  .c-pr .slider-box .slider .slick-list {
    padding: 0 30% 0 3.5rem !important;
  }
}
.c-pr .slider-box .slider .slick-slide {
  margin: 0 3.5rem;
  width: 23rem;
}
@media screen and (max-width: 767px) {
  .c-pr .slider-box .slider .slick-slide {
    margin: 0 3rem 0 0;
  }
}
.c-pr .slider-box .slider .slick-dots {
  top: 50%;
  transform: translateY(-50%);
  right: -4rem;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.c-pr .slider-box .slider .slick-dots li {
  margin: 0;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
}
.c-pr .slider-box .slider .slick-dots li.slick-active button {
  background-color: #E8D6A4;
}
.c-pr .slider-box .slider .slick-dots li button {
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #707070;
}
.c-pr .slider-box .slider .slick-dots li button::before {
  content: none;
}
.c-pr .slider-box .slider_item a {
  display: block;
}
.c-pr .slider-box .slider_item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid #242020;
}

/* サウナは、外で深まる。
---------------------------------------------------------------------------- */
.c-scroll-txt {
  padding: 2rem 0;
  border-top: 1px solid #242020;
  border-bottom: 1px solid #242020;
  background-color: #F8F8F2;
}
@media screen and (max-width: 767px) {
  .c-scroll-txt {
    padding: 1.1rem 0;
  }
}
.c-scroll-txt .slider .slick-slide {
  width: 88rem;
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .c-scroll-txt .slider .slick-slide {
    width: 50rem;
  }
}
.c-scroll-txt .slider .slick-slide img {
  width: 100%;
}

/* ------------------------------
    フェードインアニメーション
------------------------------ */
.fade-box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}/*# sourceMappingURL=common.css.map */