@charset "utf-8";

/*==================================================
$common
==================================================*/
body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  color: #333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo,
    serif;
  font-weight: 400;
  text-align: left;
}

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

a img {
  opacity: 1;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

a[href^="tel:"] {
  pointer-events: none;
}

.nopc {
  display: none !important;
}

img {
  max-width: 100%;
}

.wrap {
  background-image: url(../img/bg.jpg);
}

.inner {
  max-width: 1000px;
  width: 94%;
  margin: auto;
  position: relative;
}

.title {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.title strong {
  text-align: center;
  font-size: 26px;
}

.title strong::before,
.title strong::after {
  content: "";
  width: 30px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/title_deco01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}

.title strong::before {
  margin-right: 30px;
}

.title strong::after {
  margin-left: 30px;
}

.title span {
  text-align: center;
  font-size: 14px;
  color: #b9b9b9;
}

.title + p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.title + span,
.title + p + span {
  max-width: 500px;
  margin: auto;
  width: 90%;
  display: block;
  margin-bottom: 30px;
}

.contents .title {
  padding: 50px;
  background-image: url(../img/title_bg_pc.png);
  background-position: top -75px center;
  background-repeat: repeat-x;
  background-size: auto 220px;
}

.title strong::before,
.title strong::after {
  background-image: url(../img/title_deco02.svg);
}

.contents .title span {
  text-align: center;
  font-size: 14px;
  color: #1c1c1c;
}

a.btn,
button.btn {
  display: block;
  max-width: 280px;
  width: 100%;
  margin: auto;
  padding: 10px 30px;
  text-align: center;
  position: relative;
  border: 1px solid #1c1c1c;
  background-color: #fff;
  transition: 0.3s;
  color: #1c1c1c;
}

a.btn:hover,
button.btn:hover {
  background-color: #1c1c1c;
  color: #fff;
}

a.btn::before,
button.btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  transition: 0.3s;
}

a.btn:hover::before,
button.btn:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

a.btn.aka {
  border: 1px solid #be3a3a;
  background-color: #be3a3a;
  color: #fff;
  padding: 30px 30px;
  max-width: 480px;
  border: 1px solid #be3a3a;
}

a.btn.aka:hover {
  background-color: #fff;
  color: #be3a3a;
}

a.btn.aka::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

a.btn.aka:hover::before {
  border-top: 1px solid #be3a3a;
  border-right: 1px solid #be3a3a;
}

a.btn.pdf::before {
  content: "";
  width: 1.5em;
  height: 20px;
  border: none;
  transform: rotate(0deg);
  position: static;
  margin-right: 10px;
  background-image: url(../img/ico_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s;
}

a.btn.pdf:hover::before {
  background-image: url(../img/ico_pdf_w.svg);
}

.table01 {
  margin-bottom: 50px;
  border-bottom: 1px solid #1c1c1c;
}

.table01 dl {
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #1c1c1c;
  border-bottom: none;
  margin: 0;
}

.table01 dl dt {
  width: 30%;
  padding: 20px;
  background-color: #e6e5e0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.table01 dl dd {
  width: 70%;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.table01 dl dd strong {
  font-weight: bold;
  display: block;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  z-index: 100;
}

header .header_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  max-width: 360px;
  width: 24%;
}

header .logo a img {
  width: 100%;
}

header nav > .close {
  display: none;
}

.burger {
  display: none;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

header nav > p {
  display: none;
}

header nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
header nav ul li {
  min-width: fit-content;
}
header nav ul li a {
  padding: 20px 10px;
  font-size: 16px;
  position: relative;
}

header nav > ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(190, 58, 58, 0);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}

header nav > ul li a:hover::after {
  background-color: rgba(190, 58, 58, 1);
}
header nav .sub_items {
  order: -1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
  justify-self: flex-end;
}
header nav .sp {
  display: none;
}

header nav .sns ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

header nav .sns ul li {
  height: 30px;
  padding: 0 10px;
  position: relative;
}

header nav .sns ul li a {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header nav .sns ul li a img {
  height: 30px;
  opacity: 1;
  transition: 0.3s;
  margin: auto;
}

header nav .sns ul li.twitter a img {
  height: 23px;
}

header nav .sns ul li a img:first-of-type {
  position: relative;
  z-index: 2;
}

header nav .sns ul li a img:last-of-type {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  opacity: 0;
}

header nav .sns ul li a:hover img:first-of-type {
  opacity: 0;
}

header nav .sns ul li a:hover img:last-of-type {
  opacity: 1;
}

.bnGapL {
  margin-right: 4px;
}
.bnGapR {
  margin-left: 2px;
}

@media screen and (max-width: 1360px) {
  header nav ul li a {
    padding: 10px;
    font-size: 14px;
  }

  header nav .sns ul li {
    height: 20px;
    padding: 0 5px;
  }

  header nav .sns ul li.twitter {
    height: 16px;
  }
}

@media screen and (max-width: 950px) {
  header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
  }

  header nav ul {
    width: 100%;
    margin-top: 10px;
  }

  header nav ul li a {
    font-size: 12px;
  }

  header nav .sns {
    position: absolute;
    top: 10px;
    right: 20px;
  }
}

header.top {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: 0.3s;
}

header.top .header_wrap {
  justify-content: center;
}

header.top .logo {
  display: none;
}
header.top nav {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
header.top nav ul {
  justify-content: center;
}
header.top nav > ul li a {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
header.top .sub_items {
  width: fit-content;
  order: 1;
}
header.top .sns {
  display: none;
}

footer {
  font-size: 14px;
  padding: 50px 0 20px;
  position: relative;
}

footer #totop {
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  right: 100px;
  top: -100px;
  background-color: #888;
  transform: rotate(45deg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

footer #totop span {
  transform: rotate(-45deg);
  color: #fff;
  position: relative;
}

footer #totop span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

footer #totop:hover span::before {
  top: -15px;
}

footer .footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

footer .sp_nav {
  display: none;
}

footer .logo {
  width: 40%;
  text-align: center;
}

footer .logo a img {
  max-width: 260px;
}

footer address {
  /* width: 60%; */
  padding-right: 20px;
  margin-top: 20px;
}

footer address p {
  margin-bottom: 5px;
}

footer address ul {
  margin-bottom: 5px;
}

footer address ul li {
  display: inline-block;
  margin-right: 30px;
}

footer address span a img {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
}

footer address span a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

footer .sns {
  width: 100%;
  padding: 50px 0 30px;
}

footer .sns ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

footer .sns ul li {
  height: 30px;
  padding: 0 10px;
  position: relative;
}

footer .sns ul li.twitter {
  height: 23px;
}

footer .sns ul li a img {
  height: 100%;
  position: relative;
}

footer .sns ul li a img:first-of-type {
  position: relative;
  z-index: 2;
}

footer .sns ul li a img:last-of-type {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

footer .sns ul li a:hover img:first-of-type {
  opacity: 0;
}

footer .sns ul li a:hover img:last-of-type {
  opacity: 1;
}

footer .copyright {
  text-align: center;
  width: 100%;
}

.footer-flex {
  justify-content: space-between;
  margin-top: 30px;
  display: flex;
}

.footer-bottomleft {
  margin-left: 80px;
  width: 50%;
}

.footer-bottomright {
  margin-right: 50px;
  margin-left: 115px;
  width: 50%;
}

/*==================================================
$toppage
==================================================*/
.main_area {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.main_area > div:not(.slider_wrap) {
  position: absolute;
  top: 20vh;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.main_area .main_title {
  width: 100%;
}

.main_area .main_title img {
  max-width: 430px;
}

.main_area .catchcopy {
  width: 100%;
  position: relative;
  top: -100px;
}

.main_area .catchcopy img {
  max-width: 430px;
}

.main_area .slider_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.main_area .slider_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.main_area .slider_wrap .slider {
}

.main_area .slider_wrap .slider {
}

.main_area .slider_wrap .slider .slider_item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.main_area .slider_wrap .slider .slider_item img {
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1360px) {
  .main_area .slider_wrap .slider .slider_item img {
    width: auto;
    height: 100%;
  }
}

.another_news {
  max-width: 780px;
  width: 90%;
  margin: auto;
  padding: 0 0 30px;
  position: relative;
  z-index: 2;
}

.another_news div ul.txt {
  margin: 50px 0;
  /* text-align: center; */
}

.another_news div ul.txt li {
  border-top: 1px solid #be3a3a;
  border-bottom: 1px solid #be3a3a;
  margin: 2rem 0;
}

.another_news div ul.txt li a {
  display: block;
  padding: 10px 50px;
  width: 100%;
  color: #be3a3a;
  font-size: 25px;
  font-weight: bold;
}

.another_news div ul.txt li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
  margin-right: 20px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #be3a3a;
  border-right: 1px solid #be3a3a;
  transform: rotate(45deg);
}

.recommend_area {
  margin-bottom: 60px;
}

.recommend_area .reco_title {
  padding: 10px 0;
  background-image: url(../img/top_recommend_bg.png);
  background-size: 60px;
}

.recommend_area .reco_title img {
  max-width: 170px;
  width: 90%;
  margin: auto;
  display: block;
}

.recommend_area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recommend_area ul li {
  width: 50%;
}

.recommend_area ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  padding: 25% 0;
  background-size: 105% auto;
  background-position: center;
  position: relative;
  transition: 0.3s;
}

.recommend_area ul li:hover a {
  background-size: 115% auto;
}

.recommend_area ul li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.recommend_area ul li a p {
  width: 100%;
  text-align: center;
  font-size: 45px;
  color: #fff;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.recommend_area ul li a p::first-letter {
  font-size: 65px;
}

.recommend_area ul li a p span {
  display: block;
  text-align: center;
  font-size: 20px;
}

.recommend_area ul li:nth-of-type(1) a {
  background-image: url(../img/top_recommned_btn_bg01.jpg);
}

.recommend_area ul li:nth-of-type(2) a {
  background-image: url(../img/top_recommned_btn_bg02.jpg);
}

.recommend_area ul li:nth-of-type(3) a {
  background-image: url(../img/top_recommned_btn_bg03.jpg);
}

/*サウナ追加230421*/
.recommend_area ul li:nth-of-type(4) a {
  background-image: url(../img/top_recommned_btn_bg04-1a.jpg);
}

.recommend_area ul li:nth-of-type(5) a {
  background-image: url(../img/top_recommned_btn_bg04.jpg);
}

.recommend_area ul li:nth-of-type(6) a {
  background-image: url(../img/top_recommned_btn_bg05.jpg);
}

.recommend_area ul li:nth-of-type(7) a {
  background-image: url(../img/top_recommned_btn_bg06.jpg);
}

.news_area {
  background-color: #fff;
  padding: 80px 120px;
}

.news_box {
  margin-bottom: 50px;
}

.news_box ul {
  margin-bottom: 30px;
  border-top: 1px solid #b9b9b9;
}

.news_box ul li a {
  padding: 20px 100px;
  display: block;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.news_box ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  border-top: 2px solid #d1652b;
  border-right: 2px solid #d1652b;
  transform: rotate(45deg);
  margin: auto;
  transition: 0.3s;
}

.news_box ul li a:hover::before {
  left: 45px;
}

.news_box ul li a small {
  font-size: 14px;
  color: #fff;
  padding: 3px 15px;
  border-radius: 5px;
  margin-left: 10px;
}

.news_box ul li a small.info {
  background-color: #d1652b;
}

.news_box ul li a small.event {
  background-color: #7c9a00;
}

.news_box ul li a p {
  margin-top: 10px;
}

.news_area .event_box {
  padding: 50px 0 0;
}

.news_area .event_box ul:not(.event_banner) {
  margin-bottom: 34px;
}

.news_area .event_box ul:not(.event_banner) li {
  max-width: 760px;
  width: 100%;
  margin: auto;
}

.news_area .event_box ul:not(.event_banner) li img {
  width: 100%;
  height: auto;
}

.news_area .event_box .event_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-top: 100px; */
  margin-top: 20px;
}

.news_area .event_box .event_banner li {
  width: 49%;
  margin-bottom: 2%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  top: -3px;
  transition: 0.3s;
}

.news_area .event_box .event_banner li:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  top: 0;
}
/*250717 追加ここから*/
.column_box {
  padding-top: 50px;
}
.column_box ul {
  margin-bottom: 30px;
  border-top: 1px solid #b9b9b9;
}
.column_box ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}
.column_box ul li a .image {
  flex-shrink: 0;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
}
.column_box ul li a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .column_box ul li a:hover .image img {
    transform: scale(1.1);
  }
}
.column_box ul li a .date {
  font-size: 14px;
  color: #b9b9b9;
}
.column_box ul li a small {
  font-size: 14px;
  color: #fff;
  padding: 3px 15px;
  border-radius: 5px;
  margin-left: 10px;
}
.column_box ul li a p {
  margin-top: 10px;
}
.column_box .column_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.3;
  vertical-align: baseline;
  padding: 4px 8px;
  color: #63636d;
  padding: 3px 6px;
  background: #f5f0ed;
}
/*250717 追加ここまで*/

.link_area {
  padding: 80px 0;
}

.link_area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.link_area ul li {
  width: 48%;
}

.link_area ul li a {
  display: flex;
  flex-wrap: nowrap;
  height: 145px;
  width: 100%;
  background-color: #be3a3a;
  justify-content: space-between;
  align-items: center;
}

.link_area ul li p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  width: 100%;
  padding: 0 30px;
  position: relative;
}

.link_area ul li p::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  transition: 0.3s;
}

.link_area ul li:hover p::before {
  left: 25px;
}

.link_area ul li p span {
  font-size: 14px;
  display: block;
  width: 100%;
}

.link_area ul li a > span {
  height: 100%;
  width: auto;
}

.link_area ul li a > span img {
  height: 100%;
  max-width: none;
}

/*==================================================
$guide
==================================================*/

.guide_box {
  background-color: #fff;
  padding: 30px;
}

.guide_number ol {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.guide_number ol li {
  text-align: center;
  border: 1px solid #be3a3a;
  width: calc(100% / 6.8);
  font-size: 14px;
  position: relative;
}

.guide_number ol li:not(:last-of-type)::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #be3a3a;
  border-right: 2px solid #be3a3a;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10%;
  margin: auto;
}

.guide_number ol li span {
  background-color: #be3a3a;
  display: block;
  padding: 5px;
  color: #fff;
  text-align: center;
}

.guide_number ol li p {
  text-align: center;
  padding: 20px 5px;
  color: #be3a3a;
}

.guide_box > ol li {
  padding: 50px 0;
}

.guide_box > ol li .headline {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 26px;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.guide_box > ol li .headline span {
  color: #fff;
  line-height: 0;
  width: 50px;
  height: 50px;
  background-color: #b79402;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 20px;
}

.guide_box > ol li > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.guide_box > ol li div span {
  max-width: 460px;
  width: 50%;
}

.guide_box > ol li div span img {
  width: 100%;
}

.guide_box > ol li div div {
  width: 50%;
  padding: 0 50px;
}

.guide_box > ol li div div a.btn {
  margin-top: 20px;
}

.guide_box > ol li div div a.btn span {
}

.guide_box > ol li:nth-of-type(2) > div span,
.guide_box > ol li:nth-of-type(5) > div span,
.guide_box > ol li:nth-of-type(6) > div span {
  order: 2;
}

.guide_box > ol li:nth-of-type(2) > div div,
.guide_box > ol li:nth-of-type(5) > div div,
.guide_box > ol li:nth-of-type(6) > div div {
  order: 1;
}

.guide_box > ol li:nth-of-type(3) > div:nth-of-type(2) span {
  order: 2;
}

.guide_box > ol li:nth-of-type(3) > div:nth-of-type(2) div {
  order: 1;
}

.guide_box > ol li:nth-of-type(5) > div:nth-of-type(2) span {
  order: 1;
}

.guide_box > ol li:nth-of-type(5) > div:nth-of-type(2) div {
  order: 2;
}

.guide_box > div {
  /* padding: 50px 20px; */
  padding: 20px 20px 100px;
}

.guide_box > div p {
  text-align: center;
  margin-bottom: 30px;
}

.question_box {
  width: 90%;
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 50px;
}

.question_box > img {
  width: 50%;
  margin: 0 auto 30px;
  display: block;
}

.question_box ol {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.question_box ol li {
  width: 49%;
  padding-top: 60px;
  position: relative;
}

.question_box ol li span {
  width: 50px;
  height: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  background-color: #be3a3a;
  border-radius: 100px;
  font-size: 20px;
}

.question_box ol li img {
  display: block;
  margin-bottom: 10px;
}

/*==================================================
$spa
==================================================*/
.link_btn {
  margin-bottom: 50px;
}

.link_btn ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.link_btn ul li {
  width: 100%;
  margin-left: 5px;
  margin-bottom: 5px;
}

.link_btn ul li:first-of-type {
  margin-left: 0;
}

.link_btn ul li a {
  background-color: #be3a3a;
  border: 1px solid #be3a3a;
  display: block;
  text-align: center;
  color: #fff;
  padding: 20px 10px 40px;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.link_btn ul li a:hover {
  background-color: #fff;
  color: #be3a3a;
}

.link_btn ul li a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}

.link_btn ul li a:hover:after {
  border-bottom: 2px solid #be3a3a;
  border-right: 2px solid #be3a3a;
}

.spa_list > span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.spa_list > span img {
  width: 50px;
  margin-right: 10px;
}

.spa_item {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
}

.spa_item:not(:last-of-type)::after {
  content: "";
  width: 94%;
  height: 1px;
  background-color: #b9b9b9;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.spa_item > div {
  position: relative;
}

.spa_item > div .name {
  position: absolute;
  padding: 30px 20px;
  background-color: #fff;
  font-size: 20px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: -20px;
  left: 100px;
}

.spa_item:nth-of-type(2) > div .name {
  left: auto;
  right: 100px;
}

.spa_item > div .name.icon::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/ico_spa.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.spa_item > div > span {
  margin-bottom: 30px;
  display: block;
}

.spa_item > div > p {
  max-width: 780px;
  width: 90%;
  margin: 0 auto 30px;
}

.spa_item > div > div {
  max-width: 780px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
}

.spa_item > div > div span {
  display: block;
  width: 50%;
}

.spa_item > div > div p {
  width: 50%;
  padding: 0 20px;
}

.spa_item > div dl.spa_btn {
  max-width: 780px;
  width: 90%;
  margin: auto;
  padding-top: 30px;
}

.spa_item > div dl.spa_btn > dt {
  padding: 20px;
  border: 1px solid #b9b9b9;
  border-radius: 100px;
  text-align: center;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  color: #1c1c1c;
  background-color: #fff;
}

.spa_item > div dl.spa_btn > dt::before {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #1c1c1c;
  border-right: 2px solid #1c1c1c;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  margin: auto;
}

.spa_item > div dl.spa_btn > dt.active::before {
  border: none;
  border-top: 2px solid #1c1c1c;
  border-left: 2px solid #1c1c1c;
}

.spa_item > div dl.spa_btn > dd {
  padding-top: 30px;
  display: none;
}

.spa_item:nth-of-type(n + 3) > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 780px;
  width: 90%;
  margin: auto;
}

.spa_item:nth-of-type(n + 3) > div > span {
  width: 50%;
}

.spa_item:nth-of-type(n + 3) > div > p {
  width: 50%;
  padding: 20px;
}

.spa_item:nth-of-type(n + 3) > div .name {
  left: 20px;
}

.spa_item:nth-of-type(2n + 3) > div > span {
  order: 2;
}

.spa_item:nth-of-type(2n + 3) > div > p {
  order: 1;
}

.spa_item:nth-of-type(2n + 3) > div .name {
  left: auto;
  right: 20px;
}

/*==================================================
$facility
==================================================*/
.facility_box {
  background-color: #fff;
  position: relative;
  padding: 50px 0;
}

.facility_box > div {
  width: 94%;
  margin: 0 auto 100px;
  position: relative;
}

.facility_box > div:last-of-type {
  margin-bottom: 0;
}

.facility_box > div .headline {
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  text-align: center;
  margin-bottom: 30px;
}

.facility_box > div > span {
  max-width: 780px;
  margin: auto;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.facility_box > div > p {
  max-width: 780px;
  margin: auto;
  width: 100%;
  margin-bottom: 30px;
}

.facility_box > div .inblock {
  max-width: 780px;
  margin: auto;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.facility_box > div .inblock div {
  /* width: 48%; */
}

.facility_box > div:nth-of-type(2) .inblock div {
  width: 100%;
}

.facility_box > div .inblock div .sub_headline {
  margin-bottom: 10px;
}

.facility_box > div .inblock div ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.facility_box > div .inblock div ul li {
  width: 48%;
  margin-bottom: 10px;
}

.facility_box > div:nth-of-type(1) .inblock div:nth-of-type(1) ul li {
  width: 24.5%;
}

.facility_box > div .inblock div ul li span {
  display: block;
  margin-bottom: 10px;
}

.facility_box > div .inblock div ul li p {
  font-size: 14px;
  line-height: 1.3;
}

.facility_box > div .inblock div ul li p span {
  color: #acacac;
}

.sub_food li {
  width: 24% !important;
}

/*==================================================
$information
==================================================*/
.info_news {
  margin-bottom: 30px;
}

.info_news a {
  padding: 30px 100px;
  font-size: 26px;
  color: #be3a3a;
  display: block;
  border-top: 1px solid #be3a3a;
  border-bottom: 1px solid #be3a3a;
  text-align: center;
  line-height: 1.3;
}

.info_news a span {
  font-size: 18px;
}

.info_news a span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  border-top: 1px solid #be3a3a;
  border-right: 1px solid #be3a3a;
  transform: rotate(45deg);
  margin-right: 10px;
  margin-bottom: 5px;
}

.information .title ~ span {
  max-width: 500px;
  margin: 0 auto 30px;
  display: block;
}

.info_box {
  background-color: #fff;
  position: relative;
  padding: 50px 0;
}

.info_box > div {
  width: 94%;
  margin: 0 auto 100px;
  position: relative;
}

.info_box > div:last-of-type {
  margin-bottom: 0;
}

.info_box > div .headline ~ * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.info_box > div .headline {
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  text-align: center;
  margin-bottom: 30px;
}

.info_box > div > p {
  margin-bottom: 10px;
}

.info_box > div > p span {
  font-size: 18px;
  font-weight: bold;
}

.info_box > div > span {
  display: block;
  margin-bottom: 30px;
}

.info_box > div > strong {
  display: block;
  margin-bottom: 30px;
}

.info_box > div.price > strong {
  padding: 20px 20px 15px;
  text-align: center;
  color: #be3a3a;
  border-top: 1px solid #be3a3a;
  border-bottom: 1px solid #be3a3a;
}

.info_box > div.price > strong span {
  font-size: 30px;
  display: inline-block;
  margin-right: 5px;
}

.info_box > div.stamp > strong {
  background-color: #b79402;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 5px 10px;
}

.info_box > div.stamp > strong span {
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  margin: 0 5px;
  line-height: 1;
}

.info_box > div.stamp > div > span {
  max-width: 350px;
  display: block;
  margin: 0 auto 30px;
}

.info_box > div.stamp > div div div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 50px 0 0;
}

.info_box > div.stamp > div div div p {
  width: 70%;
}

.info_box > div.stamp > div div div span {
  width: 28%;
}

.info_box > div.amenity > span {
  max-width: 560px;
  display: block;
  margin: 0 auto 30px;
}

/*==================================================
$access
==================================================*/
.access_box {
  background-color: #fff;
  position: relative;
  padding: 50px 30px;
}

.access_box address {
  display: inline-block;
  width: 48%;
}

.access_box address strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.access_box address p {
  margin-bottom: 10px;
}

.access_box address .tel {
  padding-left: 30px;
}

.access_box address .tel a {
  color: #036eb8;
  font-size: 26px;
  margin-left: -30px;
}

.access_box address .tel a::before {
  content: "";
  width: 1em;
  height: 20px;
  background-image: url(../img/ico_tel.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}

.access_box .map {
  position: relative;
  padding-bottom: 35%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 48%;
}

.access_box .map iframe,
.access_box .map object,
.access_box .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_box a.btn {
  margin: 30px auto;
}

.access_box div .headline {
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  text-align: center;
  margin-bottom: 30px;
}

.access_box div ol {
  display: flex;
  flex-wrap: wrap;
}

.access_box div ol li {
  width: 32%;
  margin-bottom: 20px;
  margin-right: 2%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.access_box div ol li:nth-of-type(3n) {
  margin-right: 0;
}

.access_box div ol li span {
  width: 30px;
  height: 30px;
  background-color: #b79402;
  color: #fff;
  line-height: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  margin-left: 0;
}

.access_box div ol li div {
  margin-bottom: 5px;
  width: 100%;
}

.access_box div a {
  display: block;
  max-width: 500px;
  width: 90%;
  margin: 50px auto;
}

.access_box div .headline + p {
  text-align: center;
  margin-bottom: 20px;
}

.access_box div > strong {
  background-color: #b79402;
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.access_box div span {
  display: block;
  width: 100%;
  margin: 0 auto 30px;
  text-align: right;
}

.access_box div span img {
  margin-bottom: 5px;
}

.access_box div dl {
  max-width: 780px;
  width: 90%;
  margin: 0 auto 30px;
}

.access_box div dl:last-of-type {
  margin-bottom: 0;
}

.access_box div dl dt {
  color: #be3a3a;
}

/*==================================================
$news
==================================================*/
.archive {
  margin-bottom: 20px;
}

.archive div {
  width: 200px;
  margin-left: auto;
  position: relative;
}

.archive p {
  text-align: center;
  padding: 5px 20px;
  margin-left: auto;
  cursor: pointer;
}

.archive p::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  transform: rotate(45deg);
  margin-bottom: 5px;
  margin-right: 10px;
}

.archive p.active::before {
  border: none;
  border-top: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
}

.archive ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #b9b9b9;
  border-bottom: none;
  display: none;
}

.archive ul li {
  background-color: #fff;
  border-bottom: 1px solid #b9b9b9;
  border-top: none;
}

.archive ul li a {
  display: block;
  padding: 5px 20px;
  text-align: center;
  position: relative;
}

.archive ul li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  transform: rotate(45deg);
  margin-bottom: 5px;
  margin-right: 10px;
}

.news .news_box {
  padding: 50px 0;
  background-color: #fff;
}

.news .news_box ul {
  width: 94%;
  margin: auto;
}

.news_detail_box {
  background-color: #fff;
  padding: 50px 30px;
}

.news_detail_box time {
  margin-right: 20px;
}

.news_detail_box > span {
  font-size: 14px;
  color: #fff;
  padding: 3px 15px;
  border-radius: 5px;
  margin-left: 10px;
}

.news_detail_box > span.info {
  background-color: #d1652b;
}

.news_detail_box > span.event {
  background-color: #7c9a00;
}

.news_detail_box .news_title {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
}

.news_detail_box .incontents p {
  margin-bottom: 20px;
  word-break: break-all;
}

.news_detail_box .incontents > img {
  margin-bottom: 20px;
}

.news_detail_box .incontents img {
  max-width: 100%;
  height: auto;
}

.news_detail_box .incontents strong {
  font-weight: bold;
}

.news_detail_box .incontents h1 {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
  font-size: 26px;
}

.news_detail_box .incontents h1::before,
.news_detail_box .incontents h1::after {
  content: "";
  width: 30px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/title_deco01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
}

.news_detail_box .incontents h1::before {
  margin-right: 30px;
}

.news_detail_box .incontents h1::after {
  margin-left: 30px;
}

.news_detail_box .incontents h2 {
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 20px;
}

.news_detail_box .incontents h3 {
  font-size: 16px;
  padding: 5px 10px;
  border-left: 3px solid #b9b9b9;
  margin-bottom: 20px;
  background-color: #ededed;
}

.news_detail_box .incontents h4,
.news_detail_box .incontents h5,
.news_detail_box .incontents h6 {
  margin-bottom: 20px;
}

.news_detail_box .incontents em {
  font-style: italic;
}

.news_detail_box .incontents ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.news_detail_box .incontents ul li {
  list-style: disc;
}

.news_detail_box .incontents ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.news_detail_box .incontents ol li {
  list-style: decimal;
}

.news_detail_box .incontents blockquote {
  padding: 20px;
  background-color: #ededed;
  margin-bottom: 20px;
  position: relative;
}

.news_detail_box .incontents blockquote::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 10px;
  font-size: 35px;
  font-weight: bold;
  line-height: 0;
}

.news_detail_box .incontents blockquote::after {
  content: "”";
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 35px;
  font-weight: bold;
  line-height: 0;
}

.news_detail_box .incontents blockquote p:last-of-type {
  margin-bottom: 0;
}

.news_detail_box .incontents hr {
  margin-bottom: 20px;
}

.news_detail_box .sns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 50px;
}

.news_detail_box .sns li {
  width: 32%;
}

.news_detail_box .sns li a {
  display: block;
  padding: 10px 20px;
  background-color: #606060;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.news_detail_box .sns li a img {
  height: 20px;
  margin-right: 20px;
}

.news_btn {
  margin: 50px auto 0;
  position: relative;
  padding-bottom: 100px;
}

.news_btn::after {
  content: "";
  clear: both;
  display: block;
}

.news_btn li {
  position: absolute;
  top: 0;
  margin: auto;
}

.news_btn li.prev {
  left: 0;
}

.news_btn li.back {
  left: 0;
  right: 0;
  width: 150px;
}

.news_btn li.next {
  right: 0;
}

.news_btn li a {
  display: block;
  padding: 10px 20px;
  border: 1px solid #b9b9b9;
  text-align: center;
  background-color: rgba(96, 96, 96, 0);
  transition: 0.3s;
  color: #606060;
}

.news_btn li.prev a::before,
.news_btn li.next a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
  margin-right: 10px;
  transition: 0.3s;
}

.news_btn li.next a::after {
  border: none;
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  margin-right: 0;
  margin-left: 10px;
}

.news_btn li a:hover {
  background-color: rgba(96, 96, 96, 1);
  color: #fff;
}

.news_btn li.prev a:hover::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}

.news_btn li.next a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*==================================================
$faq
==================================================*/
.faq_btn {
  background-color: #fff;
  padding: 50px 30px;
  position: relative;
  margin-bottom: 50px;
}

.faq_btn li:not(:last-child) {
  margin-bottom: 10px;
}

.faq_btn li a {
  color: #036eb8;
}

.faq_box {
  background-color: #fff;
  padding: 50px 30px;
  position: relative;
}

.faq_box dl {
  padding: 30px;
  border-bottom: 1px solid #b9b9b9;
}

.faq_box dl dt {
  margin-bottom: 10px;
  color: #be3a3a;
  font-size: 20px;
}

.faq_box dl dd {
  padding-left: 30px;
}

/*==================================================
$company
==================================================*/
.company_box {
  padding: 50px 30px;
  margin: auto;
  background-color: #fff;
}

.company_box > span {
  display: block;
  text-align: right;
  font-size: 14px;
  margin-bottom: 10px;
}

.company_box table {
  border: 1px solid #1c1c1c;
  border-collapse: collapse;
  width: 100%;
}

.company_box table tr th {
  padding: 20px;
  background-color: #e6e5e0;
  border: 1px solid #1c1c1c;
}

.company_box table tr td {
  padding: 20px;
  border: 1px solid #1c1c1c;
}

.company_box table tr td a {
  color: #036eb8;
}

/*==================================================
$privacy
==================================================*/
.privacy_box {
  padding: 50px 30px;
  background-color: #fff;
  position: relative;
}

.privacy_box ol li {
  margin-bottom: 30px;
}

.privacy_box ol li strong {
  font-weight: bold;
}

/*==================================================
$contact
==================================================*/
.contact_box {
  background-color: #fff;
  padding: 50px 30px;
  position: relative;
}

.contact_box p {
  margin-bottom: 30px;
}

.contact_box p a {
  color: #036eb8;
}

.recruit_box {
  background-color: #fff;
  padding: 50px 30px;
  position: relative;
}

.recruit_box p {
  margin-bottom: 30px;
}

.contact_box .headline {
  font-size: 20px;
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  text-align: center;
  margin-bottom: 30px;
}

/* 201002LINE追加 */
.information article .price_ba {
  max-width: 1000px;
  margin: 0 auto 30px;
  /* display: flex; バナー2つ以上のときはフレックスに戻す*/
  text-align: center;
  justify-content: space-between;
}

.information article .price_ba a {
  display: inline-block;
  width: 480px;
  margin-bottom: 20px;
  /* width: 32%; */
}

/* 201214イベント追加 */
.event_br {
  text-align: center;
  margin-bottom: 30px;
}

.event_br img {
  width: 500px;
}

/* 210112 */
.ondo {
  text-align: right;
}

.shampoo {
  display: flex;
  width: 780px;
  margin: auto;
}

.shampoo dd {
  width: 700px;
  margin-right: 10px;
}

/* 210219 お食事バナー */
.food_banner {
  margin-top: 50px;
  margin-bottom: 45px;
}

.food_banner a {
  display: block;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

/* 211224_楽しみ方コンテンツ */
.enjoy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.enjoy li {
  width: 48%;
  margin-bottom: 5%;
}

.enjoy li h2 {
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.enjoy li a,
.enjoy li p {
  margin-top: 5%;
}

.nifty_symbol {
  position: absolute;
  bottom: 40px;
  right: 20px;
  z-index: 500;
  max-width: 600px;
  width: 100%;
}

.nifty_symbol a {
  display: block;
}

.nifty_company {
  color: white;
  text-align: right;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  max-width: 600px;
  width: 100%;
}

/* 230913 */
.group_list_box {
  margin-top: 20px;
}

.group_list_box.partnership {
  margin-top: 0;
}

.group_list_box strong {
  display: block;
  margin-bottom: 3%;
}

.group_list_box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.group_list_box ul li {
  width: 48%;
  margin-bottom: 5%;
}

.group_list_box ul li a {
  display: block;
  width: 100%;
  transition: 0.3s;
}

.group_list_box ul li a:hover {
  opacity: 0.8;
}

.group_list_box ul li img {
  width: 100%;
}

/* 240220スライダー設置 */
.news_area .event_box .slick-dots {
  bottom: -57px;
  right: 0px;
}

.news_area.inner .event_box .slick-dots li {
  max-width: 36px;
}

/* .news_area .event_box .slick-dots li button:before {
	font-size: 24px;
} */

.slick01 .slick-next::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  border-top: 2px solid #d1652b;
  border-right: 2px solid #d1652b;
  transform: rotate(45deg);
  margin: auto;
  transition: 0.3s;
}

.slick01 .slick-prev::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  border-top: 2px solid #d1652b;
  border-right: 2px solid #d1652b;
  transform: rotate(225deg);
  margin: auto;
  transition: 0.3s;
}

/* オリジナルグッズ */
.original {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.original li {
  width: 27%;
  margin: 4% 2% 2% 4%;
}

.original li h2 {
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.original li a,
.original li p {
  margin-top: 2%;
}

.kakaku {
  font-weight: bold;
  font-size: 16.5px;
}

.sp-none {
  display: block;
}

.cent {
  text-align: center;
}

.flex_recommend {
  display: flex;
  justify-content: space-around;
}

.link_btn ul li.goods_btn a::after {
  display: none;
}

.link_btn ul li.goods_btn a {
  background-color: #ab8c13;
  border: 1px solid #7a640b;
  display: block;
  text-align: center;
  color: #fff;
  padding: 32px 10px 28px;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.link_btn ul li.goods_btn a:hover {
  background-color: #fff;
  color: #7a640b;
}

.link_btn ul li.goods_btn a:hover:after {
  border-bottom: 2px solid #ab8c13;
  border-right: 2px solid #ab8c13;
}

/* 240911ニフティ前売り券 */
.nifty_ticket {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}

/* 250318 */
.group_list_box.hinata ul li {
  width: 100%;
  margin-bottom: 5%;
}

/* 250326 */
.group_list_box ul li a.footer__banner {
  height: 9rem;
  padding: 0 1rem 0 2rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  outline: 1px solid #fff !important;
  outline-offset: -0.5rem;
  font-size: 1.8rem;
  line-height: 2;
}

.group_list_box ul li a.footer__banner span {
  font-size: 1.1rem;
  color: #fff;
}

.group_list_box ul li a.footer__banner small {
  display: block;
  font-size: 14px;
}

.group_list_box ul li a.footer__banner .arrow {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.group_list_box ul li a.footer__banner .arrow .icon {
  width: 1rem;
  height: auto;
}
.group_list_box ul li a.footer__banner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.group_list_box ul li a.footer__banner .bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}
.group_list_box ul li a.footer__banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 980px) {
  .group_list_box ul li a.footer__banner span {
    font-size: 1.5vw;
  }

  .group_list_box ul li a.footer__banner small {
    font-size: 1.2vw;
  }

  .group_list_box ul li a.footer__banner {
    padding: 0 2vw 0 2vw;
  }

  .group_list_box ul li a.footer__banner .arrow {
    width: 3.1vw;
    height: 3.1vw;
  }
}

/* 250627追記 */
.access_box div dl:last-of-type {
  margin-bottom: 30px;
}

.access_box div .access_expo {
  display: inline-block;
  width: 48%;
  padding-left: 10px;
}

/* 固定サイドナビのスタイル */
#fixed-side-nav {
  position: fixed;
  bottom: 260px;
  right: 0;
  z-index: 1000;
}

#fixed-side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#fixed-side-nav a {
  text-decoration: none;
  background-color: white;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.11;
  min-height: 200px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 60px;
  padding: 20px 0;
}

#fixed-side-nav ul:hover {
  opacity: 0.8;
}

#fixed-side-nav .icon_expo::before {
  background: url(../img/expo_icon.jpg) left top no-repeat;
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  margin: 0 0 5px;
  width: 50px;
  aspect-ratio: 5 / 6;
}

/* 251010　ポップアップ */
.top_lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1010;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.top_lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.top_lightbox div {
  background: #fff;
  width: 70%;
  max-width: 650px;
  padding: 50px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  border: 3px solid #caa670;
}

.top_lightbox div img {
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}

.top_lightbox div p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
}

.top_lightbox div p strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid #9f864c;
  margin: auto;
  width: 52%;
}

.top_lightbox div p strong.popup_strong {
  font-size: 18px;
  padding: 20px 0;
  border: none;
  line-height: 1.5em;
}

.top_lightbox div p strong span {
  font-size: 20px;
  color: red;
  position: relative;
  z-index: 1;
}

.top_lightbox div p strong span::after {
  content: "";
  width: 100%;
  height: 7px;
  background-color: #fff141;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: -2;
}

.top_lightbox div .close {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  opacity: 1;
}

.top_lightbox div .close::before,
.top_lightbox div .close::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #404040;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.top_lightbox div .close::before {
  transform: rotate(45deg);
}

.top_lightbox div .close::after {
  transform: rotate(-45deg);
}

.top_lightbox div .btn {
  cursor: pointer;
  padding: 10px;
  display: block;
  margin: 30px auto 0;
  line-height: 100%;
  height: auto;
  width: 210px;
  border: 1px solid #9e8b63;
}

.top_lightbox div .btn::after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .top_lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2547483645;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .top_lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }

  .top_lightbox div {
    background: #fff;
    width: 90%;
    /* max-width: 650px; */
    padding: 14% 5%;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    border: 3px solid #caa670;
    /* height: 70vh; */
    overflow-y: auto;
    min-height: 250px;
    margin-top: -10%;
  }

  .top_lightbox div img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
  }

  .top_lightbox div p {
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
  }

  .top_lightbox div p strong {
    font-size: 4vw;
    font-weight: bold;
    display: block;
    width: 95%;
  }

  .top_lightbox div p strong.popup_strong {
    font-size: 3.8vw;
    padding: 5% 0;
    border: none;
  }

  .top_lightbox div p strong.popup_strong span {
    font-size: 5vw;
    color: red;
    position: relative;
    z-index: 1;
  }

  .top_lightbox div p strong.popup_strong span::after {
    content: "";
    width: 100%;
    height: 7px;
    background-color: #fff141;
    position: absolute;
    bottom: 4px;
    left: 0;
    z-index: -2;
  }

  .top_lightbox div .close {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    opacity: 1;
  }

  .top_lightbox div .close::before,
  .top_lightbox div .close::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .top_lightbox div .close::before {
    transform: rotate(45deg);
  }

  .top_lightbox div .close::after {
    transform: rotate(-45deg);
  }

  .top_lightbox div .btn {
    cursor: pointer;
    padding: 10px;
    display: block;
    margin: auto;
    line-height: 100%;
    height: auto;
    width: 210px;
    border: 1px solid #9e8b63;
    margin: 30px auto 0;
  }

  .top_lightbox div .btn::after {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .top_lightbox.all .link_box a.btn {
    font-size: 4vw;
  }
}

@media screen and (max-width: 380px) {
  .top_lightbox div {
    height: auto;
  }

  .top_lightbox div p {
    font-size: 3.2vw;
  }

  .top_lightbox div .btn {
    padding: 10px 0px 10px 5px;
  }
}
