@charset "UTF-8";
/*------------------------------------------------*/
/*------------------- reset ----------------------*/
/*------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
figure,
th,
td,
dl,
dt,
dd {
  word-wrap: break-word;
}*/
a {
  text-decoration: none;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

input,
input[type=text],
button,
textarea,
fieldset,
abbr,
select {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  appearance: none;
  /*
  &:focus {
    border: none;
    outline: 0;
      outline-width: 0;
  }*/
}

/*
.form-content__item-02 select {
  position: relative;
}

.form-content__item-02 select::after {
  content: '';
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}*/
/*------------------------------------------------*/
/*------------------- Base -----------------------*/
/*------------------------------------------------*/
html {
  font-size: 14px;
}

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

::selection {
  color: #fff;
  background: #b2752b;
}

::-moz-selection {
  color: #fff;
  background: #b2752b;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

sub,
sup {
  font-size: 0.6rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: 0;
}

sup {
  top: -0.25rem;
}

hr {
  height: 1px;
  background-color: #4d4d4d;
  border: none;
  color: #4d4d4d;
  margin: 10px 0;
}

/*------------------------------------------------*/
/*------------------- fonts ----------------------*/
/*------------------------------------------------*/
body {
  font-family: YakuHanJPs_Noto, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*読み込みアニメーション*/ /*
body {
  animation: fadeout 1.5s ease 0s 1 normal;
  @keyframes fadeout {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}*/
a {
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

/*
.img-left {
  animation: left 3s ease 0s forwards;
}

.img-right {
  animation: right 3s ease 0s forwards;
}

@keyframes left {
  0% {
    transform: translate(5px, 20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0, 0);
    opacity: 1;
  }
}

@keyframes right {
  0% {
    transform: translate(-5px, 20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0, 0);
    opacity: 1;
  }
}*/
/* フェード */
.fade {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 0.9s ease 0.5s;
}
.fade.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 右フェード */
.fade.fade-right {
  opacity: 0;
  transform: translate(200px, 0px);
  transition: all 1s ease 0.5s;
}
.fade.fade-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 左フェード */
.fade.fade-left {
  opacity: 0;
  transform: translate(-200px, 0px);
  transition: all 1.5s ease 0.4s;
}
.fade.fade-left.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 拡大 */
.fade.fade-up {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease 0.5s;
}
.fade.fade-up.active {
  opacity: 1;
  transform: scale(1);
}

/*------------------------------------------------*/
/*------------------- header ---------------------*/
/*------------------------------------------------*/
.header {
  padding: 40px 0 30px 0;
}
.header-logo {
  text-align: center;
}
.header-logo__sub {
  width: 56%;
  margin-bottom: 5px;
}
.header-logo__main {
  width: 75%;
}

.main {
  padding: 50px 0;
  background: #f9dcaf;
}
.main .content {
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
  background: #ec9f1e;
  border-radius: 10px; /*
box-shadow: 5px 5px 15px 5px rgba(228, 216, 195, 0.7);*/
}
.main .content .main__inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------------------*/
/*------------------- footer ----------------------*/
/*------------------------------------------------*/
.footer {
  padding: 70px 0 30px 0;
}
.footer-logo {
  text-align: center;
}
.footer-logo__sub {
  display: block;
  width: 36%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}
.footer-logo__main {
  display: block;
  width: 48%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 8px;
}
.footer__copyright {
  text-align: center;
}
.footer__copyright small {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
}

.u-no-break {
  display: inline-block;
}
.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.common-content-btn a {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding: 20px 0;
  display: block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  border-radius: 30px;
  border: 4px solid #e2590a;
  color: #4d4d4d;
  background: #fff;
}

/*横並び*/
.c-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-flex--reverse {
  flex-direction: row-reverse;
}
.c-flex--center {
  justify-content: center;
}
.c-flex--right {
  justify-content: flex-end;
}
.c-flex--left {
  justify-content: flex-start;
}
.c-flex--between {
  justify-content: space-between;
}

.top {
  text-align: center;
  padding-bottom: 40px;
}
.top .top-title__sub {
  margin-bottom: 10px;
  padding-top: 40px;
}
.top .top-title__sub img {
  width: 85%;
}
.top .top-title__main img {
  width: 80%;
  position: relative;
  z-index: 2;
}
.top .top-title__img {
  position: relative;
}
.top .top-title__img .img01 {
  position: relative;
  width: 45%;
  top: 0px;
  z-index: 1;
}
.top .top-title__img .img-left {
  position: absolute;
  top: -60%;
  left: 12%;
  width: 17%;
}
.top .top-title__img .img-right {
  position: absolute;
  top: -70%;
  right: 15%;
  width: 15%;
}

.facility__title {
  padding: 15px 0;
  display: block;
  text-align: center;
  background: #e2590a;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.facility-list {
  padding: 40px 0 0 0;
  text-align: center;
}
.facility-list__item:not(:last-child) {
  margin-bottom: 20px;
}
.facility-list__item a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.common-img {
  position: relative;
}
.common-img-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
  align-items: flex-start;
  gap: 10px;
}
.common-img-icon__coupon {
  width: 50px;
}
.common-img-icon__stamp {
  width: 50px;
}

.common-conntent {
  padding: 20px 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 400;
}
.common-conntent__title {
  margin-bottom: 20px;
}
.common-conntent__title h1 {
  position: relative;
  padding: 0 0px;
  z-index: 10;
  display: inline;
  font-size: 2.25rem;
  line-height: 3.25rem;
  font-weight: 500;
  background: linear-gradient(transparent 70%, #e2590a 0%);
}
.common-conntent dl dt,
.common-conntent dl dd {
  display: inline-block;
}
.common-conntent__tel a {
  position: relative;
  color: #fff;
  display: inline-block;
}
.common-conntent__tel a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.common-conntent__sns {
  width: 100%;
  gap: 20px;
  margin: 10px 0 20px 0;
}
.common-conntent__sns-item {
  width: 25px;
}
.common-conntent__web {
  margin: 10px 0 20px 0;
}
.common-conntent__web a {
  display: inline-block;
  color: #fff;
}
.common-conntent__web a::before {
  content: "";
  display: inline-block;
  vertical-align: -7px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
  background: url(../img/onsen/icon_web.svg) no-repeat;
  background-size: contain;
}
.common-conntent__price {
  margin-top: 15px;
}
.common-conntent__price__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  line-height: 1.125rem;
  margin-bottom: 5px;
}
.common-conntent__price__item {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: center;
  color: #4d4d4d;
}
.common-conntent__price__item dt,
.common-conntent__price__item dd {
  padding: 5px 15px;
  margin-bottom: 5px;
}
.common-conntent__price__item dt {
  width: 70%;
  background: #f9dcaf;
}
.common-conntent__price__item dd {
  width: 30%;
  background: #fff;
}
.common-conntent__set {
  margin-bottom: 20px;
}

.coupon {
  padding-bottom: 5%;
  background: #e2590a;
}
.coupon__title {
  position: relative;
}
.coupon__title img {
  width: 180px;
  display: inline-block;
  margin-left: 88px;
  padding: 10px 0;
}
.coupon__title::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  width: 78px;
  height: 48px;
  background: url(../img/title-img.webp) no-repeat;
  background-size: contain;
}
.coupon__item {
  background: #f9dcaf;
  padding: 10px;
}
.coupon__item__title {
  text-align: center;
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.coupon__item__title span {
  font-size: 1rem;
}
.coupon__item__txt {
  font-size: 0.9375rem;
  font-weight: 400;
}

.common-content-detail {
  padding-top: 30px;
  color: #fff;
}
.common-content-detail__title {
  margin-bottom: 10px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.common-content-detail dl {
  margin-bottom: 30px;
}
.common-content-detail dl dt,
.common-content-detail dl dd {
  line-height: 1.625rem;
	  margin-bottom: 15px;
}

.common-content-stamp .main__inner {
  padding: 15px 0 30px 0;
  margin-bottom: 30px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.common-content-stamp__item {
  margin-bottom: 15px;
  gap: 3%;
  align-items: center;
}
.common-content-stamp__img {
  width: 38%;
}
.common-content-stamp__txt {
  width: 58%;
  color: #fff;
  margin-top: 10px;
}
.common-content-stamp__txt .title {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 10px;
}
.common-content-stamp .common-content-btn {
  text-align: center;
}
.common-content-stamp .common-content-btn a {
  margin-bottom: 10px;
}
.common-content-stamp .common-content-btn p {
  color: #fff;
}

.common-content-map iframe {
  width: 100%;
  height: 285px;
}

.common-content-btn__list .main__inner {
  padding: 35px 0;
  border-bottom: 2px solid #fff;
}

/*調整*/
/*共通パーツ*/
/*各ページレイアウト*/
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .main {
    padding: 0;
  }
  .main .content {
    border-radius: 0px;
  }
  .u-sp-no {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-no {
    display: none;
  }
}
/*# sourceMappingURL=cssmap/style.css.map */
