@charset "UTF-8";
/*==========*/
html {
  font-size: 0.625rem;
  overflow-x: hidden;
}

body {
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #444;
  cursor: pointer;
}

/*================*/
/*ボタン*/
.button {
  position: relative;
  display: flex;
  justify-content: center;
  width: 60%;
  padding: 11px 15px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  color: #444;
  font-weight: 500;
  border: 1px solid #c8b9a3;
}
@media screen and (max-width: 992px) {
  .button {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .button {
    width: 70%;
    padding: 11px 10px;
    font-size: 1.2rem;
  }
}
.button::after {
  position: absolute;
  top: 45%;
  right: 8%;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid #444;
  border-right: 1px solid #444;
}
.button:hover {
  color: #fff;
  background-color: #c8b9a3;
}
.button:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.button-center {
  margin: 0 auto;
}

/*=======header=====*/
.header {
  z-index: 1000;
  top: 0;
  left: 0;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 5%;
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header {
    height: 40px;
  }
}

.header__title {
  width: 13%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__title img {
  aspect-ratio: 160/40;
  object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__title {
    min-width: 100px;
  }
}
@media screen and (max-width: 576px) {
  .header__title {
    min-width: 80px;
  }
}

.header__nav-list {
  display: flex;
  font-size: 1.1vw;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.header__nav-item {
  margin-right: 2rem;
}

.header__nav-item a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #444;
}
.header__nav-item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transition: translate 0.3s;
  background: #99a277;
  translate: -100% 0;
}
.header__nav-item a:hover::after {
  translate: 0 0;
}

.cta {
  padding: 25px 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 20px 8px;
    font-size: 1.2rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 576px) {
  .cta {
    font-size: 1rem;
  }
}

.header__cta-red {
  position: relative;
  background-color: #e0613e;
  transition: background-color 0.3s ease;
}
.header__cta-red:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 3;
}

.header__cta-gr {
  position: relative;
  background-color: #a7bd50;
  transition: background-color 0.3s ease;
}
.header__cta-gr:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 3;
}

.header__cta-ye {
  position: relative;
  background-color: #dc9d3d;
  transition: background-color 0.3s ease;
}
.header__cta-ye:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 3;
}

/*=======ハンバーガー========*/
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100vh;
  background-image: url(./png/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation-name: gnaviAnime;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#g-nav.panelactive.panelfadeout {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#g-nav-list {
  display: none;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 50px 150px 50px;
}

#g-nav.panelactive #g-nav-list {
  display: block;
}

#g-nav.panelactive ul {
  opacity: 1;
}

#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hamburger__nav {
  width: 100%;
  display: flex;
  gap: 10%;
}

.hamburger__list_1,
.hamburger__list_2 {
  width: 45%;
  list-style: none;
}

.hamburger__item {
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #888;
  text-decoration: none;
  transition: 0.3s ease;
}
.hamburger__item :hover {
  color: #888;
}
.hamburger__item a {
  text-decoration: none;
}
.hamburger__item:first-child {
  border-top: 1px solid #888;
}
@media screen and (max-width: 576px) {
  .hamburger__item {
    font-size: 1.2rem;
  }
}

.ham_info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10%;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .ham_info {
    flex-direction: column;
  }
}

.ham_logo {
  width: 40%;
  align-content: center;
  display: flex;
  flex-direction: column;
}
.ham_logoimg {
  width: 100%;
}

.ham_sns_icon {
  display: flex;
  margin-top: 10px;
  width: 80%;
}
.ham_sns_icon img {
  width: 60%;
  object-fit: cover;
  aspect-ratio: 1;
}

.ham_add {
  width: 50%;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #444;
}
@media screen and (max-width: 576px) {
  .ham_add {
    margin-top: 32px;
    width: 100%;
  }
}

.ham_number {
  margin-top: 20px;
  font-size: 2rem;
  gap: 10px;
  transition: 0.3s ease;
}

.ham_number a:hover {
  color: #888;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  bottom: 30px;
  right: -3000px;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 10px;
  height: 1px;
  border-radius: 1px;
  background-color: #242424;
  width: 60%;
}

.openbtn1 span:nth-of-type(1) {
  bottom: 15px;
  width: 40%;
}

.openbtn1 span:nth-of-type(2) {
  bottom: 25px;
}

.openbtn1 span:nth-of-type(3) {
  bottom: 35px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
  background-color: #444;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
  background-color: #444;
}

@media screen and (max-width: 960px) {
  .header__nav-item {
    display: none;
  }
  .header__cta {
    position: relative;
  }
  .openbtn1 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    border: 1px solid #444;
    border-radius: 100vh;
    background: #fff;
  }
  .openbtn1.active {
    border: 1px solid #444;
  }
}
/*==========*/
.mv {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 1366/779;
  background: url(./pic/man_hotspring.jpg) center/cover;
}

.mv__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 3.6rem;
  color: #fff;
  position: absolute;
  top: 65%;
  left: 10%;
}
.mv__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin-left: 14px;
  transform: translateY(-50%);
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .mv__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-weight: 500;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 576px) {
  .mv__title {
    font-size: 1.2rem;
    left: 5%;
  }
}

.back {
  background-image: url(./png/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -5;
}

/*========================*/
.c-headline1 {
  text-align: center;
}
.c-headline1 img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  width: 2rem;
}

.c-headline1__ex {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .c-headline1__ex {
    font-size: 1.2rem;
  }
}

.c-headline1__main {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15625;
}
@media screen and (max-width: 768px) {
  .c-headline1__main {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .c-headline1__main {
    font-size: 2rem;
  }
}

.c-headline1__sub {
  font-family: "Crimson Text", serif;
  color: #b8c097;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-headline1__sub {
    font-size: 1.2rem;
  }
}

/*=========*/
.fukusima_banner_container {
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.fukusima_banner {
  padding-top: 5%;
  margin: 0 auto 0 auto;
  text-align: center;
  aspect-ratio: 728/90;
  object-fit: cover;
  height: auto;
  width: 53%;
  position: relative;
}
.fukusima_banner:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.fukusima_banner img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .fukusima_banner {
    width: 80%;
  }
}

/*===========*/
.search {
  margin-top: 6%;
  margin-right: auto;
  margin-left: auto;
  width: 80vw;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  aspect-ratio: 1164/197;
  box-sizing: border-box;
  background-color: #f1ebe2;
  outline: 1px solid rgb(207, 168, 65);
  outline-offset: -7px;
  box-shadow: 0px 0px 14px -5.4px rgba(0, 0, 0, 0.4);
  font-family: "Shippori Mincho", serif;
  color: #444;
}
@media screen and (max-width: 768px) {
  .search {
    width: 80vw;
  }
}
@media screen and (max-width: 576px) {
  .search {
    width: 90vw;
  }
}

.search__title__container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.search__title {
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-size: 1.6rem;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .search__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 576px) {
  .search__title {
    font-size: 1rem;
  }
}
.search__title::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(./img/ph_magnifying-glass.svg) no-repeat;
  aspect-ratio: 1;
  margin-left: 3px;
  display: inline-block;
  transform: translateY(3px);
}

.search__subtitle {
  font-family: "Crimson Text", serif;
  color: #b8c097;
  line-height: 0.8;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .search__subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .search__subtitle {
    font-size: 0.8rem;
  }
}

.search__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 20px 40px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .search__inner {
    padding: 0 20px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .search__inner {
    padding: 0 0 20px 0;
  }
}

.search__details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.search__day {
  min-width: 100px;
  max-width: 300px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .search__day {
    padding: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .search__day {
    padding: 0.5rem;
  }
}

.solid {
  border-left: 1px solid #808080;
  padding: 0 10px;
  min-width: 50px;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .solid {
    padding: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .solid {
    padding: 0.5em;
  }
}

.search__item__wrapper {
  display: flex;
}

.search__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.search__item__img {
  display: flex;
  flex-direction: column;
}

.search__item__img img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 150/124;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .search__item__img img {
    max-width: 100px;
  }
}
@media screen and (max-width: 576px) {
  .search__item__img img {
    max-width: 70px;
  }
}

.search__item label {
  font-size: 1.4rem;
  color: #444;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 992px) {
  .search__item label {
    font-size: 1rem;
  }
}

.search__item input,
.search__item select {
  color: #444;
  font-size: 2.8rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .search__item input,
  .search__item select {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .search__item input,
  .search__item select {
    font-size: 1.4rem;
  }
}

.search__button {
  width: 15%;
  min-width: 150px;
  background-color: #db8c5f;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  padding: 11px 15px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s ease;
}
.search__button:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 3;
}
@media screen and (max-width: 992px) {
  .search__button {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .search__button {
    padding: 11px 10px;
    font-size: 1.2rem;
  }
}

/*===============*/
.news {
  padding-top: 16%;
  width: 100%;
}

.newsArrow-container {
  width: 100%;
  max-width: 1200px;
  padding-right: 5%;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 2%;
}

.arrow_left,
.arrow_right {
  position: relative;
  width: 54px;
  height: 54px;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .arrow_left,
  .arrow_right {
    width: 30px;
    height: 30px;
  }
}

.arrow_left img,
.arrow_right img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.arrow_left:hover img:nth-of-type(1),
.arrow_right:hover img:nth-of-type(1) {
  opacity: 0;
}

/*======newsタイトル=========*/
.news-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 3%;
  position: relative;
  z-index: 1;
}

.news-headline img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
  width: 2rem;
}

.news-logo {
  margin-bottom: 10px;
}

.news-title-container {
  display: flex;
}

.news-title {
  margin: 0;
  font-size: 3.2rem;
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.15625;
}
@media screen and (max-width: 768px) {
  .news-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 576px) {
  .news-title {
    font-size: 2rem;
  }
}

.news-subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4em;
  color: #b8c097;
  font-weight: 500;
  line-height: 1.5;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
}
@media screen and (max-width: 768px) {
  .news-subtitle {
    font-size: 1.2rem;
  }
}

/*=========*/
.topNews__inner {
  position: relative;
  width: 100%;
}

.topNews__inner::after {
  position: absolute;
  background-image: url(./png/news_bg.png);
  aspect-ratio: 1076/168;
  object-fit: cover;
  background-size: cover;
  content: "";
  bottom: -60px;
  right: 0;
  width: 70vw;
  height: 150px;
  z-index: 0;
}

.topNews__container {
  margin-top: 16px;
  padding-right: 0;
  padding-left: 10%;
  width: 200%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
}

.topNews-card-container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.topNews-card {
  position: relative;
  width: 300px;
  height: auto;
  margin-right: 30px;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.topNews-card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .topNews-card {
    margin-right: 15px;
  }
}

.topNews-card__img {
  z-index: 8;
  position: relative;
  width: 100%;
}
.topNews-card__img img {
  aspect-ratio: 279/186;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

@media screen and (min-width: 769px) {
  .topNews-card-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.topNews-card__body {
  bottom: -2.5rem;
  left: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.topNews-card__title {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 2px 12px;
  background-color: #a5b07c;
  font-family: "Crimson Text", serif;
  color: #fff;
  display: inline-block;
}

.topNews-card__text {
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
  color: #444;
  line-height: 1;
}

.topNews_button_container {
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.topNews_button {
  width: 220px;
  margin: 70px 5% 0 auto;
  border: 1px solid #99a277;
}
.topNews_button:hover {
  color: #fff;
  background-color: #99a277;
}

/*=====ようこそ======*/
.welcome {
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.welcome_inner {
  margin-top: 9.6%;
  padding: 0 6%;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .welcome_inner {
    margin-top: 64px;
  }
}

.welcomeText {
  font-family: "Shippori Mincho", serif;
  line-height: 2.5;
  text-align: center;
  margin-top: 20px;
}

.irasuto_container {
  width: 100%;
  display: inline-flex;
  place-content: center;
  gap: 30%;
}

.forestIra {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.forestIra img {
  aspect-ratio: 376/175;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

.campIra {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.campIra img {
  aspect-ratio: 226/172;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

/*=====案内=====*/
.topInfomation {
  margin-top: 9.6%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topInfomation {
    margin-top: 64px;
  }
}
.topInfomation::after {
  position: absolute;
  background-image: url(./png/guidance_bg.png);
  aspect-ratio: 1408/395;
  object-fit: cover;
  background-size: cover;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 0;
}

.topInfomation_container {
  width: 100%;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 3%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: grid;
  place-content: center;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media screen and (max-width: 576px) {
  .topInfomation_container {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    min-width: 300px;
    gap: 2rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.topInfomation-card {
  width: 100%;
  position: relative;
  z-index: 1;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  gap: 1rem;
}
.topInfomation-card__img {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.topInfomation-card__img img {
  aspect-ratio: 380/396;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}
.topInfomation-card__body {
  display: contents;
}
.topInfomation-card__text {
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-size: 1.5rem;
  line-height: 1.75;
}

@media screen and (min-width: 769px) {
  .topInfomation-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.topInfomation_button {
  width: 70%;
  margin: 0 0 0 auto;
  font-size: 1.5rem;
}
@media screen and (max-width: 992px) {
  .topInfomation_button {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .topInfomation_button {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .topInfomation_button {
    width: 80%;
  }
}

/*======健回炉=====*/
.topKenkairo {
  padding-top: 20%;
  width: 100%;
  position: relative;
}

.topKenkairo::after {
  position: absolute;
  background-image: url(./png/kenkairo_bg.png);
  aspect-ratio: 1477/458;
  object-fit: cover;
  background-size: cover;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 0;
}

.topkenkairo_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 10% 10% 10%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  .topkenkairo_container {
    padding: 0 5% 15% 5%;
  }
}
@media screen and (max-width: 768px) {
  .topkenkairo_container {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 576px) {
  .topkenkairo_container {
    padding-bottom: 80%;
  }
}

.topkenkairo-media__img {
  width: 65%;
  aspect-ratio: 895/562;
  object-fit: cover;
  height: auto;
  z-index: 4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .topkenkairo-media__img {
    width: 90%;
  }
}

.topkenkairo-media__img img {
  width: 100%;
}

.topkenkairo-media__body {
  width: 37%;
  min-width: 200px;
  background-color: #fff;
  padding: 19px 50px;
  z-index: 5;
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 1.5rem;
  color: #444;
}
@media screen and (max-width: 992px) {
  .topkenkairo-media__body {
    width: 50%;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  .topkenkairo-media__body {
    padding: 15px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 3%;
    right: 3%;
  }
}
@media screen and (max-width: 576px) {
  .topkenkairo-media__body {
    padding: 15px 20px;
    width: 80%;
  }
}

.topkenkairo-media__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .topkenkairo-media__text {
    line-height: 1.5;
    margin-top: 14px;
  }
}

.topKenkairo_button {
  margin: 20px 0 0 auto;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .topKenkairo_button {
    padding: 8px 12px;
    margin-top: 8px;
  }
}

/*=====O2box======*/
.topO2box {
  margin-top: 11.1%;
  width: 100%;
  position: relative;
}

.topO2box::after {
  position: absolute;
  background-image: url(./png/o2box_bg.png);
  aspect-ratio: 1477/458;
  object-fit: cover;
  background-size: cover;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 0;
}

.topO2box_container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  padding: 0 10% 10% 10%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  .topO2box_container {
    padding: 0 5% 15% 5%;
  }
}
@media screen and (max-width: 768px) {
  .topO2box_container {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 576px) {
  .topO2box_container {
    padding-bottom: 80%;
  }
}

.topO2box-media__img {
  width: 65%;
  aspect-ratio: 895/562;
  object-fit: cover;
  height: auto;
  z-index: 4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .topO2box-media__img {
    width: 90%;
  }
}

.topO2box-media__img img {
  width: 100%;
}

.topO2box-media__body {
  width: 37%;
  min-width: 200px;
  background-color: #fff;
  padding: 19px 50px;
  z-index: 5;
  position: absolute;
  bottom: 10%;
  left: 15%;
  font-size: 1.5rem;
  color: #444;
}
@media screen and (max-width: 992px) {
  .topO2box-media__body {
    width: 50%;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  .topO2box-media__body {
    padding: 15px 15px;
    bottom: 3%;
    left: 3%;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media screen and (max-width: 576px) {
  .topO2box-media__body {
    padding: 15px 20px;
    width: 80%;
  }
}

.topO2box-media__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .topO2box-media__text {
    line-height: 1.5;
    margin-top: 14px;
  }
}

.topO2box_button {
  margin: 20px 0 0 auto;
  border: 1px solid #99a277;
  width: 80%;
}
.topO2box_button:hover {
  color: #fff;
  background-color: #99a277;
}
@media screen and (max-width: 768px) {
  .topO2box_button {
    padding: 8px 12px;
    margin-top: 8px;
  }
}

/*=====日帰り======*/
.dayTrip {
  width: 100%;
  margin-top: 9.6%;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .dayTrip {
    margin-top: 64px;
  }
}
.dayTrip_inner {
  margin-top: 38px;
  width: 100%;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  place-content: center;
  gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
@media screen and (max-width: 576px) {
  .dayTrip_inner {
    width: 80%;
    min-width: 150px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dayTrip-card {
  position: relative;
}
.dayTrip-card__img {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.dayTrip-card__img img {
  aspect-ratio: 577/451;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

@media screen and (min-width: 769px) {
  .dayTrip-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.dayTrip_button {
  margin: 20px 0 0 auto;
  border: 1px solid #99a277;
  width: 70%;
}
.dayTrip_button:hover {
  color: #fff;
  background-color: #99a277;
}
@media screen and (max-width: 768px) {
  .dayTrip_button {
    display: grid;
    place-content: center;
    font-size: 1.2rem;
  }
}

/*====館内施設===*/
.facilities {
  margin-top: 9.6%;
  padding: 8% 0;
  width: 100%;
  position: relative;
  z-index: 3;
  background-image: url(./png/facilities_bg.png);
  aspect-ratio: 1366/630;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.facilities_inner {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.facilities_container {
  margin-top: 20px;
  width: 100%;
  display: grid;
  place-content: center;
  gap: 3%;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

.facilities-card {
  position: relative;
}

.facilities-card__img {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.facilities-card__img img {
  aspect-ratio: 390/260;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

@media screen and (min-width: 769px) {
  .facilities-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.facilities-card__body {
  position: relative;
  z-index: 5;
}

.facilities-card__title {
  margin-top: 3px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #444;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .facilities-card__title {
    font-size: 1.4rem;
  }
}
.facilities-card__title::after {
  content: "";
  position: absolute;
  left: 3rem;
  top: -2rem;
  z-index: -1;
  background-image: url(./img/facilities_item.svg);
  display: inline-block;
  width: 20%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .facilities-card__title::after {
    left: 1rem;
    top: -1rem;
  }
}

.facilities_button {
  width: 30%;
  display: grid;
  place-content: center;
  margin: 54px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .facilities_button {
    width: 50%;
    margin-top: 24px;
  }
}

/*=====付帯施設====*/
.ancillaryFacilities {
  margin-top: 9.6%;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.ancillaryFacilities__inner {
  width: 100%;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .ancillaryFacilities__inner {
    margin-top: 64px;
  }
}

.ancillaryFacilities_container {
  margin-top: 38px;
  width: 100%;
  display: grid;
  place-content: center;
  gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
@media screen and (max-width: 576px) {
  .ancillaryFacilities_container {
    width: 80%;
    min-width: 150px;
    margin-right: auto;
    margin-left: auto;
  }
}

.ancillaryFacilities-card {
  position: relative;
}

.ancillaryFacilities-card__img {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.ancillaryFacilities-card__img img {
  aspect-ratio: 577/451;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

@media screen and (min-width: 769px) {
  .ancillaryFacilities-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.ancillaryFacilities-card__title {
  margin-top: 3px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #444;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ancillaryFacilities-card__title {
    font-size: 1.8rem;
  }
}

.ancillaryFacilities_button {
  margin: 20px 0 0 auto;
  width: 70%;
}
.ancillaryFacilities_button:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ancillaryFacilities_button {
    display: grid;
    place-content: center;
    font-size: 1.2rem;
  }
}

/*===動画紹介=======*/
.movie {
  width: 100%;
}

.movie__inner {
  margin-top: 9.6%;
}
@media screen and (max-width: 768px) {
  .movie__inner {
    margin-top: 64px;
  }
}

.movie__container {
  width: 100%;
  margin-top: 13px;
  background-image: url(./png/movie_bg.png);
  aspect-ratio: 1371/467;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.movie__container img {
  aspect-ratio: 650/353;
  width: 47%;
  max-width: 1200px;
  object-fit: cover;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .movie__container img {
    width: 62%;
  }
}

/*======アクセス======*/
.access__inner {
  margin-top: 6.4%;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 768px) {
  .access__inner {
    margin-top: 48px;
  }
}

.map {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1201/388;
  width: 100%;
}

/*=====フォトギャラリー=======*/
.photoGallery {
  margin-top: 5%;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
}

.photoGallery__panel {
  width: 100%;
  display: flex;
  gap: 8px;
}
.photoGallery__panel img {
  aspect-ratio: 200/183;
  min-width: 30px;
  width: auto;
  object-fit: cover;
  height: auto;
}

.photoGallery_button {
  width: 30%;
  min-width: 200px;
  display: grid;
  place-content: center;
  margin: 54px auto 0 auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .photoGallery_button {
    width: 40%;
    min-width: 200px;
    margin-top: 24px;
    font-size: 1.2rem;
  }
}

/*========バナー==========*/
.bannerContainer {
  margin-top: 74px;
  margin-right: auto;
  padding-bottom: 74px;
  margin-left: auto;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .bannerContainer {
    margin-top: 32px;
    padding-bottom: 32px;
  }
}

.banner__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
}

.banner__panel {
  transition: background-color 0.3s ease;
  position: relative;
  cursor: pointer;
}
.banner__panel:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.banner__panel img {
  object-fit: cover;
  width: 100%;
  min-width: 150px;
}

/*=====フッター=======*/
.footer {
  background-color: #a7b281;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 65px;
  padding-bottom: 65px;
  padding-left: 10%;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.footer__inner_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer__inner_left {
    width: 80%;
  }
}

.footer__logo {
  width: 160px;
  aspect-ratio: 160/40;
  object-fit: cover;
  height: auto;
}

.footer__address {
  margin-top: 23px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.footer__address p {
  margin-bottom: 8px;
}

.footer__icon {
  margin-top: 14px;
  display: flex;
  gap: 7px;
}
.footer__icon img {
  width: 4rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}

.footer__inner_right {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .footer__inner_right {
    width: 80%;
    align-items: center;
  }
}

.footer__nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-top: 32px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
}

.footer__list,
.footer__list_ {
  list-style: none;
}
.footer__list:not(:last-child),
.footer__list_:not(:last-child) {
  margin-right: 7%;
}

.footer__item {
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .footer__item {
    margin-bottom: 10px;
  }
}
.footer__item a {
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer__item a {
    font-size: 1.4rem;
  }
}
.footer__item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transition: translate 0.3s;
  background: #fff;
  translate: -100% 0;
}
.footer__item a:hover::after {
  translate: 0 0;
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  display: grid;
  place-content: center;
}

/*=======健回炉ページ==========*/
.kenkairo-mv {
  width: 100%;
  height: auto;
  background: url(./pic/kenkairo_fv.jpg) center/cover;
  aspect-ratio: 1366/462;
  position: relative;
}

.kenkairo-mv-text {
  width: 80%;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5;
}
.kenkairo-mv-text p {
  margin-top: 50px;
  text-align: center;
}

.bread {
  width: 100%;
  display: flex;
  font-size: 1.5rem;
}

/*=======健回炉　headline======*/
.kenkairo-headline1 {
  text-align: center;
  margin-bottom: 25px;
}

.kenkairo-headline1__main {
  font-family: "Shippori Mincho", serif;
  font-size: 4.2rem;
  font-weight: 500;
  color: #d9caaf;
}
@media screen and (max-width: 768px) {
  .kenkairo-headline1__main {
    font-size: 2.4rem;
  }
}

.kenkairo-headline1__sub {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #444;
}
@media screen and (max-width: 768px) {
  .kenkairo-headline1__sub {
    font-size: 1.2rem;
  }
}

/*====健回炉セクション===*/
.kenkairo {
  margin-top: 8%;
  position: relative;
  z-index: 5;
  display: block;
}
.kenkairo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 2;
  background-image: url(./img/kenkairo_left_item.svg);
  display: inline-block;
  width: 10vw;
  height: 200px;
  aspect-ratio: 139/220;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .kenkairo::before {
    width: 15vw;
  }
}
.kenkairo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  z-index: 2;
  background-image: url(./img/kenkairo_right_item.svg);
  display: inline-block;
  width: 10vw;
  height: auto;
  aspect-ratio: 152/274;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .kenkairo::after {
    width: 15vw;
    top: 15%;
  }
}

.kenkairo_inner {
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.kenkairo_contents {
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  height: auto;
  aspect-ratio: 1276/386;
  position: relative;
  z-index: 3;
}
.kenkairo_contents img {
  width: 100%;
  object-fit: cover;
}

.kenkairo_img_contents {
  position: relative;
  z-index: 3;
}

.kenkairo_text_contents {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
.kenkairo_text_contents p {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kenkairo_text_contents p {
    text-align: start;
  }
}

/*====*/
.kenkairoTable {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 992px) {
  .kenkairoTable {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .kenkairoTable {
    width: 100%;
  }
}

.kenkairoTable_title {
  background-color: #e6dbca;
  text-align: center;
  width: 20%;
  padding: 15px 10px;
}

.kenkairoTable_subtitle {
  background-color: #f7f2ea;
  text-align: center;
  width: 20%;
  padding: 15px 10px;
}

.kenkairoTable_text {
  background-color: #fff;
  padding: 15px 15px;
}

/**/
.timeTable {
  width: 50%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  border-top: 1px solid #e6dbca;
  border-bottom: 1px solid #e6dbca;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .timeTable {
    width: 80%;
  }
}

.timeTable_title {
  background-color: #f8f5f0;
  text-align: center;
  width: 25%;
  padding: 30px 5px;
}

.timeTable_text {
  background-color: transparent;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .timeTable_text {
    padding: 15px 10px;
  }
}
.timeTable_text p {
  margin-bottom: 10px;
}

/*========健回炉other======*/
.kenkairoOther {
  margin-top: 16%;
  position: relative;
  z-index: 5;
  display: block;
}
.kenkairoOther::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-image: url(./img/kenkairo_left_item.svg);
  display: inline-block;
  width: 10vw;
  height: auto;
  aspect-ratio: 139/220;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .kenkairoOther::before {
    width: 15vw;
  }
}
.kenkairoOther::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 2;
  background-image: url(./img/radon_right_item.svg);
  display: inline-block;
  width: 10vw;
  height: auto;
  aspect-ratio: 152/274;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 576px) {
  .kenkairoOther::after {
    width: 15vw;
  }
}
.kenkairoOther_inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  padding: 0 5% 10% 5%;
  display: grid;
  place-content: center;
  gap: 6rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  position: relative;
  z-index: 3;
}

.kenkairoItem {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sauna-card,
.radon-card {
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 576px) {
  .sauna-card,
  .radon-card {
    width: 300px;
  }
}

.sauna-card__img,
.radon-card__img {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.sauna-card__img img,
.radon-card__img img {
  aspect-ratio: 463/262;
  object-fit: cover;
  height: auto;
  width: 100%;
  transition: transform 0.8s;
}

@media screen and (min-width: 769px) {
  .sauna-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
  .radon-card:hover > a > figure > img {
    transform: scale(1.2);
    transition: transform 0.8s;
  }
}
.sauna-card__text,
.radon-card__text {
  font-family: "Shippori Mincho", serif;
  color: #444;
  margin-top: 27px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
}

.timeTable_other {
  width: 90%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #444;
  border-top: 1px solid #e6dbca;
  border-bottom: 1px solid #e6dbca;
  border-collapse: collapse;
  justify-content: baseline;
}
@media screen and (max-width: 768px) {
  .timeTable_other {
    width: 80%;
  }
}

.timeTable_title_other {
  background-color: #f8f5f0;
  text-align: center;
  width: 25%;
  padding: 15px 5px;
}

.timeTable_text_other {
  background-color: transparent;
  padding: 15px 10px;
}
.timeTable_text_other span {
  margin-bottom: 10px;
  margin-top: 10px;
}

/*=======過ごし方=======*/
.kenkairoHow {
  margin-top: 16%;
  width: 100%;
}
.kenkairoHow_inner {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  place-content: center;
}
.kenkairoHow_textcontainer {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
  font-family: "Shippori Mincho", serif;
  color: #444;
  padding-bottom: 30px;
  position: relative;
  z-index: 5;
  display: block;
}
@media screen and (max-width: 768px) {
  .kenkairoHow_textcontainer {
    width: 80%;
    padding-right: 10%;
    padding-left: 15px;
    line-height: normal;
    margin-right: 0;
  }
}
.kenkairoHow_textcontainer::before {
  content: "";
  position: absolute;
  left: 3%;
  top: -15rem;
  z-index: 2;
  background-image: url(./img/how_item.svg);
  display: inline-block;
  width: 8%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .kenkairoHow_textcontainer::before {
    top: -10rem;
  }
}
.kenkairoHow_textcontainer::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 2;
  background-image: url(./img/how_item.svg);
  display: inline-block;
  width: 8%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-size: contain;
}
.kenkairoHow p {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .kenkairoHow p {
    margin-bottom: 24px;
  }
}

.parent {
  position: relative;
}

.child-left {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: -20rem;
  width: 20%;
}
.child-left img {
  margin-bottom: 10%;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .child-left {
    top: -15rem;
  }
}
@media screen and (max-width: 768px) {
  .child-left {
    top: -30px;
  }
}

.child-right {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  bottom: -20rem;
  width: 20%;
}
.child-right img {
  margin-bottom: 10%;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .child-right {
    bottom: -10rem;
  }
}
@media screen and (max-width: 768px) {
  .child-right {
    display: none;
  }
}

/*========ご案内=======*/
.kenkairoInfo {
  margin-top: 20%;
}
.kenkairoInfo_inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .kenkairoInfo_inner {
    width: 70%;
  }
}

.kenkairoInfo__contents {
  margin-top: 32px;
  width: 100%;
}

.kenkairoInfo__group {
  display: flex;
  width: 80%;
  max-width: 900px;
  border-bottom: 1px solid #ddd0b9;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .kenkairoInfo__group {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
}
.kenkairoInfo__group:first-child {
  border-top: 1px solid #ddd0b9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.kenkairoInfo__group + .kenkairoInfo__group {
  padding-top: 20px;
  padding-bottom: 20px;
}

.kenkairoInfo__item {
  font-size: 1.5rem;
  min-width: 15%;
  max-width: 15%;
  color: #444;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .kenkairoInfo__item {
    margin-bottom: 10px;
    min-width: 100%;
    max-width: 100%;
    font-weight: 600;
  }
}

.kenkairoInfo__description {
  font-size: 1.5rem;
  color: #444;
  font-family: "Shippori Mincho", serif;
  margin-left: 10%;
}
@media screen and (max-width: 576px) {
  .kenkairoInfo__description {
    margin-left: 0;
    margin: 0 auto;
  }
}

.kenkairoInfo__description span {
  color: #c4411d;
  font-size: 1.5rem;
}

.kenkairoInfo__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.kenkairoInfo__table__header {
  background-color: #f8f5f0;
}

.kenkairoInfo__table__header,
.kenkairoInfo__table__cell {
  font-size: 1.5rem;
  width: 33.3333333333%;
  padding: 18px 6%;
  text-align: center;
  color: #444;
  border: 1px solid #e8dfd0;
}
@media screen and (max-width: 768px) {
  .kenkairoInfo__table__header,
  .kenkairoInfo__table__cell {
    padding: 10px 3%;
  }
}

/*=======footer_photo====*/
.footer_photo {
  width: 100%;
  margin-top: 128px;
  text-align: center;
}
.footer_photo img {
  width: 100%;
  aspect-ratio: 1366/291;
  object-fit: cover;
  height: auto;
  vertical-align: top;
}/*# sourceMappingURL=style.css.map */