@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-size-adjust: 100%;
  word-break: break-all;
  line-break: strict;
  hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

fieldset, img {
  border: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  position: fixed;
  top: 0;
  z-index: 9997;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
}
header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
header .logo img {
  max-width: 290px;
  width: 56%;
}
header .logo p {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
header .logo:hover {
  opacity: 0.7;
  text-decoration: none;
}
header .re-button {
  position: absolute;
  top: 130%;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D16B4C;
  border-radius: 10px 0 0 10px;
  width: 90px;
  height: 170px;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 0;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
header .re-button:hover {
  background: #FFFFFF;
  color: #D16B4C;
  text-decoration: none;
}
@media (max-width: 1590px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  header .logo {
    width: auto;
  }
  header .logo img {
    max-width: 290px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header {
    padding: 12px 10px 10px 20px;
  }
  header .logo {
    gap: 10px;
  }
  header .logo img {
    max-width: 190px;
  }
  header .logo p {
    font-size: 0.6875rem;
    line-height: 1.2em;
  }
  header .re-button {
    width: 70px;
    height: 150px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding-left: 10px;
  }
  header .logo {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }
  header .re-button {
    width: 50px;
    height: 130px;
  }
}
@media screen and (max-width: 480px) {
  header .logo {
    gap: 5px;
  }
  header .logo img {
    max-width: 150px;
  }
  header .logo p {
    font-size: 0.5625rem;
  }
}

/* ------------------------------------- 
  header-menu
------------------------------------- */
.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.header-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
.header-menu ul li a, .header-menu--home {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.header-menu ul li a:hover, .header-menu--home:hover {
  opacity: 0.7;
  text-decoration: none;
}
.header-menu--tel, .header-menu--tel a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.header-menu--tel:hover, .header-menu--tel a:hover {
  text-decoration: none;
}
@media (max-width: 1690px) {
  .header-menu ul {
    gap: 20px;
  }
}
@media (max-width: 1590px) {
  .header-menu {
    display: none;
  }
}

/* ------------------------------------- 
  header-menu_sp
------------------------------------- */
.header-menu_sp {
  display: none;
}
@media (max-width: 1590px) {
  .header-menu_sp {
    display: block;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 20px;
  top: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background: #000;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger {
  /* スマホメニューを開いてる時のボタン */
}
.hamburger.active span:nth-child(1) {
  top: 30px;
  background: #000;
  transform: rotate(-30deg);
}
.hamburger.active span:nth-child(2) {
  top: 30px;
  background: #000;
  transform: rotate(30deg);
}

.header-menu_sp__contents {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  transition: all 0.6s;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 10% 0 0;
  opacity: 0;
  pointer-events: none;
}
.header-menu_sp__contents .logo {
  flex-direction: column;
  gap: 10px;
}
.header-menu_sp__contents ul {
  margin: 50px auto 0;
  max-width: 600px;
  width: 100%;
  column-count: 2;
}
.header-menu_sp__contents li {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
}
.header-menu_sp__contents li a {
  display: block;
  color: #1C1C1C;
  text-align: center;
}
.header-menu_sp__contents .header-menu--tel {
  margin-top: 30px;
  text-align: center;
}
.header-menu_sp__contents {
  /* クリックでjQueryで追加・削除 */
}
.header-menu_sp__contents.active {
  opacity: 100;
  display: block;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    top: 0px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 5px;
  }
  .header-menu_sp__contents ul {
    max-width: 450px;
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .hamburger {
    right: 20px;
  }
}
/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #1C1C1C;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "MS PMincho", "serif";
  line-height: 2em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h1, h2 {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2.1875rem;
}

p, dl, dt, li, th, td, a {
  font-size: 1.25rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.1875rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.5625rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p, dl, dt, li, th, td, a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.5625rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.125rem;
  }
  p, dl, dt, li, th, td, a {
    line-height: 1.8em;
    letter-spacing: 0;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt_pink {
  color: #D16B4C;
}

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

.txt-left {
  text-align: left;
}

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

/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #1C1C1C;
  transition: all 0.3s;
}

/* ------------------------------------- 
  layout
------------------------------------- */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-375, .sp-480, .sp-768, .sp-960, .sp-1024, .sp-1280, .sp-1440, .sp-1536, .sp-1920 {
  display: none !important;
}

@media (max-width: 1920px) {
  .sp-1920 {
    display: block !important;
  }
  .pc-1920 {
    display: none !important;
  }
}
@media (max-width: 1536px) {
  .sp-1536 {
    display: block !important;
  }
  .pc-1536 {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-768 {
    display: block !important;
  }
  .pc-768 {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
/* ------------------------------------- 
  main
------------------------------------- */
main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 100px;
  }
}

/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ------------------------------------- 
  section-common
------------------------------------- */
.section-common {
  max-width: 1200px;
  width: 85%;
  margin: 240px auto 0;
  box-sizing: border-box;
}
.section-common .contents {
  margin-top: 40px;
}

.contents-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  max-width: 994px;
  width: 100%;
  height: 285px;
  margin: 0 auto;
}
.contents-title h2 {
  letter-spacing: 0.3em;
}
.contents-title p {
  text-align: center;
  letter-spacing: 0.3em;
}
.contents-title::after, .contents-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 325px;
  height: 100%;
}
.contents-title::before {
  left: 0;
  background: url(../images/contents-title_l.png) no-repeat;
  background-size: 100%;
}
.contents-title::after {
  right: 0;
  background: url(../images/contents-title_r.png) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 1024px) {
  .section-common {
    width: 90%;
    margin-top: 170px;
  }
  .contents-title {
    gap: 30px;
    max-width: 700px;
    height: 210px;
  }
  .contents-title::after, .contents-title::before {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .section-common {
    margin-top: 120px;
  }
  .contents-title {
    gap: 20px;
    max-width: 500px;
    height: 140px;
  }
  .contents-title::after, .contents-title::before {
    width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .section-common {
    margin-top: 70px;
  }
  .contents-title {
    gap: 0px;
    height: 80px;
  }
  .contents-title::after, .contents-title::before {
    width: 70px;
  }
}
/* ------------------------------------- 
  tag
------------------------------------- */
.tag {
  border-radius: 100px;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
}

.tag-information {
  background: #5F3970;
}

.tag-important {
  background: #703939;
}

.tag-sasakura {
  background: #397052;
}

.tag-hp {
  background: #395470;
}

/* ------------------------------------- 
  slider
------------------------------------- */
.slider {
  line-height: 0;
  font-size: 0;
}

.slick-list {
  margin-bottom: -10px !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.dots-wrap {
  position: absolute;
  bottom: 3%;
  left: 3%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.dots-wrap li:hover, .dots-wrap li.slick-active {
  background: #397052;
}
.dots-wrap li button {
  display: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .dots-wrap {
    gap: 10px;
  }
  .dots-wrap li {
    width: 7px;
    height: 7px;
    margin: 0;
  }
}
/* ------------------------------------- 
  modal
------------------------------------- */
.modal-open {
  cursor: pointer;
}
.modal-open:hover {
  text-decoration: none;
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container .modal-contents {
  max-width: 891px;
  width: 100%;
}

.screen-reader-response {
  display: none !important;
}
.screen-reader-response p {
  color: #D16B4C;
}
.screen-reader-response ul {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #D16B4C;
}

.wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

input[type=text], input[type=tel], input[type=email] {
  border: none;
  border-radius: 0;
  background: #EFEFEF;
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-weight: normal;
}
input[type=radio] {
  display: inline-block;
  transform: scale(1.4);
  margin-right: 10px;
}
input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 0.5em;
}

textarea {
  padding: 10px;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-weight: normal;
  border: none;
  border-radius: 0;
  background: #EFEFEF;
  width: 100%;
  box-sizing: border-box;
}

.radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px 30px;
}
.radio label {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}
.radio label::not(:last-of-type) {
  margin-bottom: 16px;
}
.radio input {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #A0A0AF;
  border-radius: 9999px;
  cursor: pointer;
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #397052;
}

.checkbox span {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
  cursor: pointer;
}
.checkbox span:not(:last-of-type) {
  margin-right: 10px;
}
.checkbox input {
  appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  border: none;
  background: #EFEFEF;
  border-radius: 0;
  cursor: pointer;
}
.checkbox input:checked {
  background-color: #397052;
}
.checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.submitbtn {
  cursor: pointer;
  position: relative;
  max-width: 330px;
  width: 90%;
  margin: 70px auto 0;
}
.submitbtn input[type=submit] {
  cursor: pointer;
  position: relative;
  display: block;
  background: #FFFFFF;
  border: 1px solid #1C1C1C;
  border-radius: 100px;
  width: 100%;
  line-height: 65px;
  font-size: 1.25rem;
  color: #1C1C1C;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: all 0.3s;
}
.submitbtn:hover input[type=submit] {
  background: #1C1C1C;
  color: #FFFFFF;
}

.button-flex {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  width: 90%;
  margin: 70px auto 0;
}
.button-flex div {
  width: 100%;
}
.button-flex div input {
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 100px;
  width: 100%;
  line-height: 65px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: all 0.3s;
}
.button-flex .return input {
  background: #A0A0AF;
  border: 1px solid #A0A0AF;
  color: #FFFFFF;
}
.button-flex .return:hover input {
  background: #FFFFFF;
  color: #A0A0AF;
}
.button-flex .submit input {
  background: #FFFFFF;
  border: 1px solid #1C1C1C;
  color: #1C1C1C;
}
.button-flex .submit:hover input {
  background: #1C1C1C;
  color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .radio input {
    width: 20px;
    height: 20px;
  }
  .radio input:checked::after {
    width: 10px;
    height: 10px;
  }
  .checkbox input {
    width: 20px;
    height: 20px;
  }
  .checkbox input:checked::after {
    top: 3.5px;
    left: 4.5px;
    width: 10px;
  }
  .submitbtn {
    max-width: 450px;
    margin-top: 50px;
  }
  .submitbtn input[type=submit] {
    font-size: 1.375rem;
    line-height: 60px;
  }
  .button-flex {
    gap: 15px;
    margin-top: 50px;
  }
  .button-flex div input {
    font-size: 1.375rem;
    line-height: 60px;
  }
}
@media screen and (max-width: 960px) {
  .radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  input[type=radio], input[type=checkbox] {
    margin-left: 5px;
  }
  .checkbox input:checked::after {
    left: 3.5px;
  }
  .checkbox span {
    line-height: 1.3em;
    width: auto;
    text-align: left;
    font-size: 0.875rem;
  }
  .checkbox span.wpcf7-form-control wpcf7-acceptance {
    display: block;
    margin: 0 auto;
  }
  .checkbox .wpcf7-list-item-label {
    width: calc(100% - 32px);
  }
  .submitbtn {
    margin-top: 30px;
  }
  .submitbtn input[type=submit] {
    max-width: 250px;
    width: 80%;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 50px;
  }
  .button-flex {
    max-width: 500px;
    margin-top: 30px;
  }
  .button-flex div input {
    font-size: 1.125rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .submitbtn {
    margin-top: 20px;
  }
  .submitbtn input[type=submit] {
    font-size: 1rem;
    line-height: 40px;
  }
  .button-flex {
    margin-top: 20px;
  }
  .button-flex div input {
    font-size: 1rem;
    line-height: 40px;
  }
}
/* ------------------------------------- 
  page_top
------------------------------------- */
#page_top {
  will-change: bottom;
  position: fixed;
  right: 20px;
  bottom: -200px;
  transition: bottom 0.3s ease;
  z-index: 9996;
  max-width: 137.5px;
  transition: all 0.3s;
}
#page_top img {
  display: block;
  width: 100%;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
}
#page_top.is-show {
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  #page_top {
    max-width: 100px;
  }
}
@media screen and (max-width: 768px) {
  #page_top {
    max-width: 70px;
  }
}
@media screen and (max-width: 480px) {
  #page_top {
    max-width: 50px;
  }
}

/* ------------------------------------- 
  footer
------------------------------------- */
footer .footer-reserve {
  margin-bottom: 150px;
}
footer .footer-reserve .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #706A39;
  border-radius: 0;
  background: #706A39;
  max-width: 716px;
  width: 60%;
  height: 110px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(32 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
footer .footer-reserve .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
footer .footer-reserve .button {
  letter-spacing: 0.2em;
}
footer .footer-reserve p.tel {
  margin-top: 20px;
  text-align: center;
  line-height: 1em;
}
footer .footer-reserve p.tel span, footer .footer-reserve p.tel span a {
  font-size: 2.5rem;
}
footer .footer-menu {
  max-width: 1125px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}
footer .footer-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 45px;
  border-left: 1px solid #1C1C1C;
  border-right: 1px solid #1C1C1C;
  padding: 5px 0;
}
footer .footer-menu ul li {
  font-size: 1rem;
}
footer .footer-menu .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #703939;
  border-radius: 0;
  background: #703939;
  max-width: 310px;
  width: 70%;
  height: 62px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(22 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
footer .footer-menu .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
footer .footer-menu .button {
  margin-top: 20px;
}
footer .footer__common {
  background: #397052;
  margin-top: 55px;
  padding: 115px 0;
}
footer .footer__common p, footer .footer__common li, footer .footer__common a {
  color: #FFFFFF;
}
footer .footer__common .wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1195px;
  width: 80%;
  margin: 0 auto;
}
footer .footer__common .company {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  max-width: 519px;
  width: 43.4%;
}
footer .footer__common .company p {
  font-size: 1.125rem;
}
footer .footer__common .company__logo {
  width: 100%;
}
footer .footer__common .company .sns_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
footer .footer__common .company .sns_list li {
  width: 30px;
}
footer .footer__common .company .copyright {
  margin-top: auto;
  font-size: 1rem;
  letter-spacing: 0;
}
footer .footer__common .detail {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  max-width: 626px;
  width: 52.4%;
}
footer .footer__common .detail p {
  font-size: 1.375rem;
  line-height: 1.5em;
}
footer .footer__common .detail p.tel span, footer .footer__common .detail p.tel a {
  font-size: 2.25rem;
  line-height: 1.5em;
}
footer .footer__common .detail p.fax {
  margin-top: 5px;
}
footer .footer__common .detail .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
}
footer .footer__common .detail .button {
  position: relative;
  display: block;
  border: 1px solid #FFFFFF;
  max-width: 237px;
  width: 37.8%;
  margin-top: 20px;
  padding-left: 18px;
  text-align: left;
  line-height: 51px;
  letter-spacing: 0.2em;
}
footer .footer__common .detail .button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 12px;
  transition: all 0.3s;
}
footer .footer__common .detail .button:hover {
  text-decoration: none;
}
footer .footer__common .detail .button:hover::after {
  right: 7px;
}
footer .footer__common .detail .character {
  max-width: 298px;
  width: 47.6%;
}
@media screen and (max-width: 1024px) {
  footer .footer-reserve {
    margin-bottom: 100px;
  }
  footer .footer-reserve .button {
    height: 80px;
    font-size: 1.5625rem;
  }
  footer .footer-reserve p.tel span, footer .footer-reserve p.tel span a {
    font-size: 2.1875rem;
  }
  footer .footer-menu .button {
    height: 60px;
    font-size: 1.125rem;
  }
  footer .footer__common {
    margin-top: 40px;
    padding: 70px 0;
  }
  footer .footer__common .company p {
    font-size: 1rem;
  }
  footer .footer__common .detail p {
    font-size: 1.125rem;
  }
  footer .footer__common .detail p.tel span, footer .footer__common .detail p.tel a {
    font-size: 1.6875rem;
  }
  footer .footer__common .detail .button {
    line-height: 40px;
  }
  footer .footer__common .detail .character {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-reserve {
    margin-bottom: 50px;
  }
  footer .footer-reserve .button {
    width: 70%;
    height: 60px;
    font-size: 1.25rem;
  }
  footer .footer-reserve p.tel {
    margin-top: 10px;
  }
  footer .footer-reserve p.tel span, footer .footer-reserve p.tel span a {
    font-size: 1.875rem;
  }
  footer .footer-menu ul {
    gap: 0 30px;
  }
  footer .footer-menu ul li {
    font-size: 0.875rem;
  }
  footer .footer-menu .button {
    height: 50px;
    font-size: 1rem;
  }
  footer .footer__common {
    margin-top: 30px;
    padding: 50px 0;
  }
  footer .footer__common .wrap {
    flex-direction: column;
    gap: 30px;
    width: 85%;
  }
  footer .footer__common .wrap .company, footer .footer__common .wrap .detail {
    max-width: 100%;
    width: 100%;
  }
  footer .footer__common .company p {
    font-size: 0.875rem;
    text-align: center;
  }
  footer .footer__common .company__logo {
    max-width: 300px;
    width: 70%;
    margin: 0 auto;
  }
  footer .footer__common .company .sns_list {
    margin: 0 auto;
  }
  footer .footer__common .detail {
    align-items: center;
  }
  footer .footer__common .detail p {
    font-size: 1rem;
  }
  footer .footer__common .detail p.tel {
    text-align: center;
  }
  footer .footer__common .detail .button {
    width: 60%;
    line-height: 40px;
    margin: 20px auto 0;
  }
  footer .footer__common .detail .character {
    max-width: 350px;
    width: 70%;
    margin: 0 auto;
  }
  footer .footer__common .copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  footer .footer-reserve .button {
    width: 80%;
    font-size: 1rem;
  }
  footer .footer-reserve p.tel {
    margin-top: 10px;
  }
  footer .footer-reserve p.tel span, footer .footer-reserve p.tel span a {
    font-size: 1.6875rem;
  }
  footer .footer-menu ul {
    display: block;
    column-count: 2;
    padding: 5px 20px;
  }
  footer .footer-menu ul li a {
    display: block;
    font-size: 0.875rem;
    text-align: center;
  }
  footer .footer__common {
    padding: 50px 0 20px;
  }
  footer .footer__common .wrap {
    gap: 20px;
  }
  footer .footer__common .company .sns_list {
    gap: 15px;
  }
  footer .footer__common .detail p.tel span, footer .footer__common .detail p.tel a {
    font-size: 1.4375rem;
  }
  footer .footer__common .detail p.fax {
    margin-top: 0;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* ------------------------------------- 
  animation
------------------------------------- */
/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_popout2_out **************************/
.txt_popout2_out {
  display: block;
}

.txt_popout2_out span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
.txt_popout2_out.move span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_out.move span.l_0 {
  transition-delay: 0s;
}
.txt_popout2_out.move span.l_1 {
  transition-delay: 0.02s;
}
.txt_popout2_out.move span.l_2 {
  transition-delay: 0.04s;
}
.txt_popout2_out.move span.l_3 {
  transition-delay: 0.06s;
}
.txt_popout2_out.move span.l_4 {
  transition-delay: 0.08s;
}
.txt_popout2_out.move span.l_5 {
  transition-delay: 0.1s;
}
.txt_popout2_out.move span.l_6 {
  transition-delay: 0.12s;
}
.txt_popout2_out.move span.l_7 {
  transition-delay: 0.14s;
}
.txt_popout2_out.move span.l_8 {
  transition-delay: 0.16s;
}
.txt_popout2_out.move span.l_9 {
  transition-delay: 0.18s;
}
.txt_popout2_out.move span.l_10 {
  transition-delay: 0.2s;
}
.txt_popout2_out.move span.l_11 {
  transition-delay: 0.22s;
}

/* txt_popout2_in **************************/
.txt_popout2_in {
  display: block;
}

.txt_popout2_in span.l {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.15s linear, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  opacity: 1;
  transform: none;
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt_popout2_in.move span.l_0 {
  transition-delay: 0.5s;
}
.txt_popout2_in.move span.l_1 {
  transition-delay: 0.52s;
}
.txt_popout2_in.move span.l_2 {
  transition-delay: 0.54s;
}
.txt_popout2_in.move span.l_3 {
  transition-delay: 0.56s;
}
.txt_popout2_in.move span.l_4 {
  transition-delay: 0.58s;
}
.txt_popout2_in.move span.l_5 {
  transition-delay: 0.6s;
}
.txt_popout2_in.move span.l_6 {
  transition-delay: 0.62s;
}
.txt_popout2_in.move span.l_7 {
  transition-delay: 0.64s;
}
.txt_popout2_in.move span.l_8 {
  transition-delay: 0.66s;
}
.txt_popout2_in.move span.l_9 {
  transition-delay: 0.68s;
}
.txt_popout2_in.move span.l_10 {
  transition-delay: 0.7s;
}
.txt_popout2_in.move span.l_11 {
  transition-delay: 0.72s;
}

/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* ------------------------------------- 
  delay
------------------------------------- */
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

/* =========================================
LOADING
========================================= */
body.is-loading {
  overflow: hidden;
}

#loading {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading-animation {
  width: min(90%, 900px);
  aspect-ratio: 1920/1080;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-container {
  position: relative;
  z-index: 2;
  width: min(92vw, 1200px);
  max-height: 700px;
  height: 85vh;
  height: 85dvh;
  background: #fff;
  padding: 40px;
  overflow: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.modal.is-open .modal-container {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  margin: 0;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
}
.modal-close img {
  display: block;
  width: 35px;
  height: 35px;
}

/* bodyスクロールロック */
.modal-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 30px;
  }
  .modal-close {
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .modal-container {
    padding: 20px 30px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
}
/* ------------------------------------- 
  page-service
  hp / meal common　温泉・料理共通
------------------------------------- */
.page_service-mv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.page_service-mv .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  background-color: rgba(28, 28, 28, 0.5);
  max-width: 672px;
  max-height: 560px;
  width: 40%;
  height: 45%;
}
.page_service-mv .title h1, .page_service-mv .title p {
  color: #FFFFFF;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
.page_service-mv .title h1 {
  font-size: clamp(25px, 16px + 2.8125vw, 70px);
}
.page_service-mv .title p {
  font-size: clamp(16px, 13.2px + 0.875vw, 30px);
}

.page_service-overview {
  position: relative;
  width: 100%;
  padding: 80px 0;
}
.page_service-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 824px;
  z-index: -1;
}
.page_service-overview .wrap {
  position: relative;
  max-width: 1750px;
  width: 100%;
  margin: 0 auto;
}
.page_service-overview .wrap .text .lead, .page_service-overview .wrap .image {
  opacity: 0;
}
.page_service-overview .wrap .text {
  position: relative;
  top: 0;
  left: 0;
  max-width: 821px;
  width: 46.9%;
  padding-left: 50px;
}
.page_service-overview .wrap .text p {
  font-size: clamp(16px, 14.2px + 0.5625vw, 25px);
  line-height: 1.8em;
}
.page_service-overview .wrap .image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 847px;
  width: 48.4%;
}

.page_service-common {
  width: 100%;
  margin: 0 auto;
  padding-top: 240px;
}

.service-title {
  opacity: 0;
  position: relative;
  max-width: 490px;
  margin: 0 auto;
}
.service-title h2 {
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -47%);
  width: 100%;
  color: #FFFFFF;
  letter-spacing: 0.5em;
  font-size: clamp(20px, 14px + 1.875vw, 50px);
}

.page-reserve .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #706A39;
  border-radius: 0;
  background: #706A39;
  max-width: 716px;
  width: 70%;
  height: 110px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(32 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.page-reserve .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
.page-reserve--tel {
  margin-top: 20px;
}
.page-reserve--tel p {
  text-align: center;
}
.page-reserve--tel .tel, .page-reserve--tel .tel a {
  font-size: 2.5rem;
  line-height: 1.2em;
}

@media screen and (max-width: 1536px) {
  .page_service-overview::before {
    height: 100%;
  }
  .page_service-overview .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page_service-overview .wrap .text {
    padding-left: 5%;
  }
  .page_service-overview .wrap .image {
    position: static;
  }
}
@media screen and (max-width: 1280px) {
  .page_service-mv .title {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .page_service-mv {
    max-height: 768px;
  }
  .page_service-mv .title {
    width: 50%;
    height: 40%;
  }
  .page_service-overview .wrap {
    flex-direction: column-reverse;
    width: 80%;
  }
  .page_service-overview .wrap .image {
    position: relative;
    max-width: 100%;
    max-height: 300px;
    width: 100%;
    height: 50vh;
  }
  .page_service-overview .wrap .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page_service-overview .wrap .text {
    max-width: 100%;
    width: 100%;
    margin: 20px auto 0;
    padding-left: 0;
  }
  .page_service-common {
    padding-top: 170px;
  }
  .service-title {
    max-width: 350px;
  }
  .service-title h2 {
    left: 51.5%;
    transform: translate(-50%, -48.5%);
    letter-spacing: 0.4em;
  }
  .page-reserve .button {
    max-width: 600px;
    height: 80px;
    font-size: 1.6875rem;
  }
  .page-reserve--tel .tel, .page-reserve--tel .tel a {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .page_service-overview .wrap .image {
    max-height: 200px;
  }
  .page_service-common {
    padding-top: 120px;
  }
  .service-title {
    max-width: 300px;
  }
  .service-title h2 {
    left: 51%;
    transform: translate(-50%, -49%);
    letter-spacing: 0.2em;
  }
  .page-reserve .button {
    width: 80%;
    height: 70px;
    font-size: 1.4375rem;
  }
  .page-reserve--tel .tel, .page-reserve--tel .tel a {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .page_service-overview {
    padding: 50px 0;
  }
  .page_service-overview .wrap .image {
    max-height: 150px;
  }
  .page_service-common {
    padding-top: 80px;
  }
  .service-title {
    max-width: 200px;
    width: 70%;
  }
  .page-reserve .button {
    width: 90%;
    height: 60px;
    font-size: 1.25rem;
  }
  .page-reserve--tel .tel, .page-reserve--tel .tel a {
    font-size: 1.6875rem;
  }
}
/* ------------------------------------- 
  page
  下層ページ共通
------------------------------------- */
.page-mv {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: url(../images/page_mv-bg.jpg) no-repeat;
  background: cover;
  width: 100%;
  max-height: 383px;
  height: 35vh;
  padding-top: 83px;
}
.page-mv h1 {
  max-width: 1520px;
  width: 80%;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: left;
  letter-spacing: 0.3em;
  font-weight: 500;
  font-size: clamp(22px, 16.4px + 1.75vw, 50px);
  filter: drop-shadow(5px 5px 10px rgb(0, 0, 0));
  transform: translateZ(0);
}

.page {
  margin-top: 175px;
}

@media screen and (max-width: 1536px) {
  .page-mv {
    max-height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .page-mv {
    max-height: 200px;
    padding-top: 50px;
  }
  .page {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .page-mv {
    max-height: 230px;
    height: 25vh;
    padding-top: 63px;
  }
  .page {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .page {
    margin-top: 50px;
  }
}
/* ------------------------------------- 
  page_404
------------------------------------- */
.page_404 .title h1, .page_404 .title p {
  text-align: center;
}
.page_404 .lead {
  margin-top: 50px;
  text-align: center;
}
.page_404 a.button {
  margin-top: 30px !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #397052;
  border-radius: 0;
  background: #397052;
  max-width: 350px;
  width: 80%;
  height: 70px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.page_404 a.button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .page_404 .lead {
    margin-top: 30px;
  }
  .page_404 a.button {
    height: 60px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .page_404 {
    margin-top: 100px;
  }
  .page_404 a.button {
    height: 50px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .page_404 {
    margin-top: 100px;
  }
}

/* ------------------------------------- 
  top common
------------------------------------- */
.top .contents-title {
  opacity: 0;
}

/* ------------------------------------- 
  top-mv
------------------------------------- */
.top-mv {
  position: relative;
}
.top-mv__badge {
  position: absolute;
  top: 110px;
  left: 30px;
  z-index: 1;
  display: grid;
  justify-content: flex-strat;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 360px;
  width: 40%;
}
.top-mv__badge li {
  max-width: 113px;
}
.top-mv h1 {
  position: absolute;
  right: 22px;
  bottom: 30px;
  z-index: 1;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
  transform: translateZ(0);
  font-size: clamp(12px, 8.6px + 1.0625vw, 29px);
  color: #FFFFFF;
  writing-mode: vertical-rl;
  text-align: right;
}
.top-mv__slider div {
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin: 0;
}
.top-mv__slider div.img01 {
  background: url(../images/top/mv01.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.top-mv__slider div.img02 {
  background: url(../images/top/mv02.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.top-mv__slider div.img03 {
  background: url(../images/top/mv03.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
.top-mv__slider div.img04 {
  background: url(../images/top/mv04.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 1024px) {
  .top-mv__badge {
    top: 70px;
    left: 20px;
    gap: 5px;
    width: 30%;
  }
  .top-mv h1 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__badge {
    top: 80px;
    width: 50%;
  }
  .top-mv .dots-wrap {
    left: 20px;
    bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .top-mv__badge {
    top: 70px;
  }
}

/* ------------------------------------- 
  bnr-area
------------------------------------- */
.bnr-area {
  opacity: 0;
  margin: 30px auto 0;
}
.bnr-area a:hover {
  opacity: 0.7;
}
.bnr-area a.hitou {
  display: block;
  max-width: 350px;
  width: 70%;
  margin: 0 auto;
}

/* ------------------------------------- 
  reservation
------------------------------------- */
.reservation {
  opacity: 0;
  max-width: 1425px;
  width: 90%;
  margin: 100px auto 0;
}
.reservation__stay {
  border: 1px solid #1C1C1C;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
.reservation__stay .title, .reservation__stay .contents {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.reservation__stay .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.reservation__stay .title h2 {
  font-size: 1.875rem;
  text-align: left;
}
.reservation__stay .title p.lead {
  width: calc(100% - 570px);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5em;
}
.reservation__stay .contents {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 30px;
}
.reservation__stay .contents div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 580px;
  width: 48.3%;
}
.reservation__stay .contents div h3, .reservation__stay .contents div p {
  width: 100%;
}
.reservation__stay .contents div h3 {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  font-size: 1.375rem;
  line-height: 1.5em;
}
.reservation__stay .contents div p {
  margin: 10px auto;
  font-size: 1.0625rem;
  line-height: 1.5em;
  letter-spacing: 0;
}
.reservation__stay .contents div .button {
  margin-top: auto !important;
  padding: 0 20px;
  line-height: 1.5em;
}
.reservation__stay .contents .system-new h3 {
  color: #703939;
  border-color: #703939;
}
.reservation__stay .contents .system-new .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #703939;
  border-radius: 0;
  background: #703939;
  max-width: 580px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.reservation__stay .contents .system-new .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
.reservation__stay .contents .system-old h3 {
  color: #395470;
  border-color: #395470;
}
.reservation__stay .contents .system-old .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #395470;
  border-radius: 0;
  background: #395470;
  max-width: 580px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.reservation__stay .contents .system-old .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
.reservation__hp {
  margin: 50px auto 0;
}
.reservation__hp .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #397052;
  border-radius: 0;
  background: #397052;
  max-width: 580px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(24 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.reservation__hp .button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
.reservation__hp .button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../images/top/icon_hp.svg) no-repeat;
  background-size: 100%;
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 1280px) {
  .reservation__stay .title {
    flex-direction: column;
  }
  .reservation__stay .title h2 {
    text-align: center;
  }
  .reservation__stay .title p.lead {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .reservation {
    margin-top: 70px;
  }
  .reservation__stay {
    padding: 40px 0;
  }
  .reservation__stay .title h2 {
    font-size: 1.5625rem;
  }
  .reservation__stay .title p.lead {
    font-size: 0.9375rem;
  }
  .reservation__stay .contents div h3 {
    font-size: 1.1875rem;
  }
  .reservation__stay .contents div p {
    font-size: 0.9375rem;
  }
  .reservation__stay .contents .system-new .button, .reservation__stay .contents .system-old .button {
    height: 80px;
    font-size: 1rem;
  }
  .reservation__hp {
    margin-top: 30px;
  }
  .reservation__hp .button {
    height: 80px;
    font-size: 1.25rem;
  }
  .reservation__hp .button::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .reservation {
    margin-top: 50px;
  }
  .reservation__stay .title {
    gap: 3px;
  }
  .reservation__stay .title h2 {
    font-size: 1.25rem;
  }
  .reservation__stay .title p.lead {
    font-size: 0.875rem;
  }
  .reservation__stay .contents {
    flex-direction: column;
    gap: 25px;
  }
  .reservation__stay .contents div {
    width: 100%;
  }
  .reservation__stay .contents div h3 {
    font-size: 1.125rem;
  }
  .reservation__stay .contents div p {
    font-size: 0.875rem;
  }
  .reservation__stay .contents .system-new .button, .reservation__stay .contents .system-old .button {
    width: 80%;
    height: 60px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
  .reservation__hp .button {
    width: 80%;
    height: 60px;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .reservation__hp .button::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .reservation__stay .title h2 {
    font-size: 1.125rem;
  }
  .reservation__stay .title p.lead {
    margin-top: 10px;
  }
  .reservation__stay .contents div h3 {
    font-size: 1rem;
    text-align: center;
  }
  .reservation__stay .contents .system-new .button, .reservation__stay .contents .system-old .button {
    height: 50px;
  }
  .reservation__hp .button::before {
    left: 15px;
  }
}

/* ------------------------------------- 
 top-information
 top-news/top-plan 共通common
------------------------------------- */
.top-information__list {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.top-information__list li {
  opacity: 0;
  padding: 30px;
  border-bottom: 1px solid #1C1C1C;
}
.top-information__list li:first-child {
  border-top: 1px solid #1C1C1C;
}
.top-information__list li .sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.top-information__list li .sub .date {
  font-size: 1.125rem;
}
.top-information__list li .sub .tag {
  width: 146px;
  font-size: 0.9375rem;
  line-height: 25px;
}
.top-information__list li .title {
  margin-top: 5px;
  font-size: 1.375rem;
  font-weight: 800;
}
.top-information .button {
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #1C1C1C;
  border-radius: 900px;
  max-width: 330px;
  width: 70%;
  height: 65px;
  margin: 0 auto;
  color: #1C1C1C;
  text-align: center;
  letter-spacing: 0.2em;
}
.top-information .button:hover {
  text-decoration: none;
  background: #1C1C1C;
  color: #FFFFFF;
}
.top-information .button {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-information__list li .sub .date {
    font-size: 1rem;
  }
  .top-information__list li .sub .tag {
    font-size: 0.875rem;
  }
  .top-information__list li .title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-information__list li {
    padding: 15px;
  }
  .top-information__list li .sub .date {
    font-size: 0.875rem;
  }
  .top-information__list li .sub .tag {
    width: 125px;
    font-size: 0.75rem;
    line-height: 22px;
  }
  .top-information__list li .title {
    font-size: 1.125rem;
    line-height: 1.5em;
  }
  .top-information .button {
    height: 50px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .top-information__list li .title {
    font-size: 1rem;
  }
}

/* ------------------------------------- 
 top-news/top-plan 個別指定
------------------------------------- */
.top-news__list li a.title {
  display: block;
  text-decoration: underline;
}
.top-news__list li a.title:hover {
  text-decoration: none;
}

.top-plan__list li {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.top-plan__list li .thumbnail {
  max-width: 275px;
  width: 26.4%;
  aspect-ratio: 55/41;
  align-self: flex-start;
}
.top-plan__list li .thumbnail img {
  height: 100%;
  object-fit: cover;
}
.top-plan__list li .detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 70%;
}
.top-plan__list li .detail .title {
  margin-bottom: 20px;
}
.top-plan__list li .re-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #703939;
  border-radius: 0;
  background: #703939;
  max-width: 300px;
  width: 70%;
  height: 50px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.top-plan__list li .re-button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}
.top-plan__list li .re-button {
  margin-top: auto;
  margin-left: 0;
}
.top-plan__list li .re-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 10px;
  transition: all 0.3s;
}
.top-plan__list li .re-button:hover::after {
  right: 10px;
}
.top-plan .plan-empty p {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .top-plan__list li {
    gap: 30px;
  }
  .top-plan__list li .re-button {
    height: 40px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-plan__list li {
    gap: 20px;
  }
  .top-plan__list li .thumbnail {
    width: 30%;
  }
  .top-plan__list li .detail {
    width: 65%;
  }
  .top-plan__list li .re-button {
    height: 35px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .top-plan__list li {
    flex-direction: column;
  }
  .top-plan__list li .thumbnail {
    width: 70%;
    margin: 0 auto;
  }
  .top-plan__list li .detail {
    width: 100%;
  }
  .top-plan__list li .detail .title {
    margin-bottom: 10px;
  }
  .top-plan__list li .re-button {
    margin: 0 auto;
  }
}
/* ------------------------------------- 
  top-history
------------------------------------- */
.top-history {
  margin-top: 240px;
}
.top-history .contents {
  position: relative;
  background: url(../images/top/history_bg.jpg) no-repeat;
  background-size: cover;
}
.top-history .contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 40%;
}
.top-history .text {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 180px;
}
.top-history .text h3, .top-history .text p {
  opacity: 0;
}
.top-history .text h3 {
  color: #397052;
}
.top-history .text p {
  margin-top: 120px;
  color: #FFFFFF;
  line-height: 2em;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  transform: translateZ(0); /* safariの挙動用 */
}
@media screen and (max-width: 1024px) {
  .top-history {
    margin-top: 170px;
  }
}
@media screen and (max-width: 768px) {
  .top-history {
    margin-top: 120px;
  }
  .top-history .text {
    padding: 80px 0 150px;
  }
  .top-history .text p {
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .top-history {
    margin-top: 70px;
  }
  .top-history .text {
    padding: 50px 0 120px;
  }
  .top-history .text p {
    margin-top: 50px;
  }
}

/* ------------------------------------- 
  top-service
------------------------------------- */
.top-service {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
}
.top-service > div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
}
.top-service .detail {
  background: #1C1C1C;
  padding: 12% 18%;
  height: 100%;
}
.top-service .detail h2, .top-service .detail p {
  text-align: left;
  color: #FFFFFF;
}
.top-service .detail .title h2 {
  font-size: 2.5rem;
}
.top-service .detail .title p {
  letter-spacing: 0.2em;
}
.top-service .detail p.lead {
  margin-top: 60px;
}
.top-service .detail .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 900px;
  max-width: 366px;
  width: 80%;
  height: 73px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.2em;
}
.top-service .detail .button:hover {
  text-decoration: none;
  background: #FFFFFF;
  color: #397052;
}
.top-service .detail .button {
  margin-top: 70px;
  margin-left: 0;
}
.top-service .top-service__hp .detail {
  background: url(../images/top/service_hp-bg.jpg) no-repeat;
  background-size: cover;
}
.top-service .top-service__meal .detail {
  background: url(../images/top/service_meal-bg.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-service .detail .title h2 {
    font-size: 1.875rem;
  }
  .top-service .detail p.lead {
    margin-top: 40px;
  }
  .top-service .detail .button {
    height: 60px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-service {
    display: block;
  }
  .top-service > div {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 45% 55%;
  }
  .top-service .image {
    height: 100%;
  }
  .top-service .image img {
    height: 100%;
    object-fit: cover;
  }
  .top-service .detail {
    padding: 30px 40px 40px;
  }
  .top-service .detail .title h2 {
    font-size: 1.5625rem;
  }
  .top-service .detail p.lead {
    margin-top: 20px;
  }
  .top-service .detail .button {
    height: 50px;
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .top-service > div {
    display: block;
  }
  .top-service .detail {
    padding: 30px 30px 40px;
  }
  .top-service .detail .title h2, .top-service .detail .title p {
    text-align: center;
  }
  .top-service .detail .title h2 {
    font-size: 1.25rem;
  }
  .top-service .detail p.lead {
    margin-top: 10px;
  }
  .top-service .detail .button {
    width: 70%;
    height: 50px;
    margin: 20px auto 0;
  }
}

/* ------------------------------------- 
  top-room
------------------------------------- */
.top-room {
  background: url(../images/top/room-bg.jpg) no-repeat;
  background-size: cover;
  padding: 240px 0 100px;
}
.top-room .contents-title h2, .top-room .contents-title p {
  color: #FFFFFF;
}
.top-room .contents {
  display: grid;
  grid-template-rows: 50% 50%;
  grid-template-columns: 50% 50%;
  gap: 20px;
}
.top-room__special, .top-room__jw, .top-room__j {
  opacity: 0;
}
.top-room__special {
  grid-area: 1/1/auto/span 2;
}
.top-room__jw {
  grid-area: 2/1/auto/span 1;
}
.top-room__j {
  grid-area: 2/2/auto/span 1;
}
.top-room .contents {
  width: calc(100% - 20px);
  margin-top: 80px;
}
.top-room .contents li {
  position: relative;
}
.top-room .contents .text {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  max-width: 610px;
  padding: 40px 50px;
}
.top-room .contents .text p {
  font-size: clamp(12px, 10.4px + 0.5vw, 20px);
  line-height: 1.8em;
}
.top-room .contents .text .title h3 {
  font-size: clamp(15px, 12px + 0.9375vw, 30px);
}
.top-room .contents .text .lead {
  margin-top: 15px;
  letter-spacing: 0;
}
.top-room__special .text {
  width: 31.7%;
}
.top-room__jw .text, .top-room__j .text {
  width: 64.7%;
}
@media screen and (max-width: 1440px) {
  .top-room .contents .text {
    bottom: 15px;
    right: 15px;
    padding: 25px 35px;
  }
  .top-room .contents .text .lead {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .top-room .contents .text p {
    font-size: 0.9375rem;
    line-height: 1.6em;
  }
}
@media screen and (max-width: 1024px) {
  .top-room {
    padding-top: 170px;
  }
  .top-room .contents {
    display: block;
    width: 100%;
  }
  .top-room__special, .top-room__jw {
    margin-bottom: 20px;
  }
  .top-room .contents {
    margin-top: 50px;
  }
  .top-room .contents .text {
    max-width: 400px;
    width: 50%;
    padding: 17px 25px;
  }
}
@media screen and (max-width: 768px) {
  .top-room {
    padding: 120px 0 50px;
  }
  .top-room .contents {
    margin-top: 30px;
  }
  .top-room .contents .text {
    position: static;
    background: transparent;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 20px 20px;
  }
  .top-room .contents .text h3, .top-room .contents .text p {
    color: #FFFFFF;
  }
  .top-room .contents .text .title h3 {
    line-height: 1.6em;
    font-size: 1.375rem;
  }
  .top-room .contents .dots-wrap {
    bottom: 5%;
  }
  .top-room__j .text {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .top-room {
    padding-top: 70px;
  }
  .top-room .contents {
    margin-top: 10px;
  }
  .top-room .contents .text .title h3 {
    font-size: 1.25rem;
  }
}

/* ------------------------------------- 
  top-facility
------------------------------------- */
.top-facility {
  position: relative;
}
.top-facility::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  background: linear-gradient(90deg, rgb(82, 73, 63) 0%, rgb(47, 40, 32) 25%, rgb(47, 40, 32) 30%, rgba(28, 28, 28, 0) 100%);
  background-size: 100%;
  width: 100%;
  height: 100%;
}
.top-facility .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.top-facility .title {
  width: 19%;
}
.top-facility .title h2, .top-facility .title p {
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
}
.top-facility .title h2 {
  margin-top: 100px;
  letter-spacing: 0.3em;
  text-align: left;
  writing-mode: vertical-rl;
}
.top-facility .title p {
  margin-top: 30px;
}
.top-facility .contents {
  width: 81%;
}
.top-facility .contents li {
  opacity: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  background: #1C1C1C;
  margin-top: 20px;
}
.top-facility .contents li .text, .top-facility .contents li .image {
  height: 100%;
}
.top-facility .contents li .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
}
.top-facility .contents li .text h3, .top-facility .contents li .text p {
  max-width: 452px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  color: #FFFFFF;
}
.top-facility .contents li .text h3 {
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 1.875rem;
}
.top-facility .contents li .text h3 span {
  font-size: 1.25rem;
}
.top-facility .contents li .text p {
  font-size: 1.125rem;
}
.top-facility .contents li .image {
  background: #1C1C1C;
}
.top-facility .contents li .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-facility .contents li:nth-child(even) .text {
  grid-area: 1/2/auto/span 1;
}
.top-facility__lobby .text {
  background: url(../images/top/facility_lobby-bg.jpg) no-repeat;
  background-size: cover;
}
.top-facility__restaurant .text {
  background: url(../images/top/facility_restaurant-bg.jpg) no-repeat;
  background-size: cover;
}
.top-facility__lounge .text {
  background: url(../images/top/facility_lounge-bg.jpg) no-repeat;
  background-size: cover;
}
.top-facility__stand .text {
  background: url(../images/top/facility_stand-bg.jpg) no-repeat;
  background-size: cover;
}
.top-facility__water .text {
  background: url(../images/top/facility_water-bg.jpg) no-repeat;
  background-size: cover;
}
.top-facility__amenities {
  background: url(../images/top/facility_amenities-bg.jpg) no-repeat;
  background-size: cover;
  margin-top: 20px;
  padding: 100px 0;
}
.top-facility__amenities .button {
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 900px;
  max-width: 600px;
  width: 70%;
  height: 80px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.2em;
}
.top-facility__amenities .button:hover {
  text-decoration: none;
  background: #FFFFFF;
  color: #1C1C1C;
}
.top-facility__amenities .button {
  font-size: 1.5rem;
}
.top-facility__amenities .modal-contents li {
  margin-bottom: 70px;
}
.top-facility__amenities .modal-contents li:last-child {
  margin-bottom: 0;
}
.top-facility__amenities .modal-contents h3 {
  border-bottom: 1px solid #1C1C1C;
  padding-bottom: 15px;
  font-size: 1.875rem;
}
.top-facility__amenities .modal-contents p {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .top-facility .title {
    width: 15%;
  }
  .top-facility .contents {
    width: 85%;
  }
  .top-facility .contents li .text {
    padding: 40px;
  }
  .top-facility .contents li .text h3 {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
  .top-facility .contents li .text h3 span {
    font-size: 1rem;
  }
  .top-facility .contents li .text p {
    font-size: 1rem;
  }
  .top-facility__amenities {
    padding: 50px 0;
  }
  .top-facility__amenities .button {
    max-width: 500px;
    height: 70px;
    font-size: 1.25rem;
  }
  .top-facility__amenities .modal-contents li {
    margin-bottom: 50px;
  }
  .top-facility__amenities .modal-contents h3 {
    padding-bottom: 10px;
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-facility::before {
    background: linear-gradient(90deg, rgb(82, 73, 63) 0%, rgb(47, 40, 32) 40%, rgba(28, 28, 28, 0) 100%);
  }
  .top-facility .wrap {
    flex-direction: column;
  }
  .top-facility .title, .top-facility .contents {
    width: 100%;
  }
  .top-facility .title h2 {
    margin-top: 50px;
    writing-mode: unset;
    text-align: center;
  }
  .top-facility .title p {
    margin-top: 10px;
    letter-spacing: 0.3em;
  }
  .top-facility .contents li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    margin-top: 10px;
  }
  .top-facility .contents li:first-child {
    margin-top: 20px;
  }
  .top-facility .contents li .text, .top-facility .contents li .image {
    width: 100%;
  }
  .top-facility .contents li .text {
    padding: 20px 40px 30px;
  }
  .top-facility .contents li .text h3, .top-facility .contents li .text p {
    max-width: 100%;
  }
  .top-facility .contents li .text h3 {
    font-size: 1.375rem;
  }
  .top-facility .contents li .text h3 span {
    font-size: 0.875rem;
  }
  .top-facility .contents li .text p {
    font-size: 0.875rem;
  }
  .top-facility__amenities {
    margin-top: 10px;
    padding: 30px 0;
  }
  .top-facility__amenities .button {
    max-width: 400px;
    height: 60px;
    font-size: 1rem;
    line-height: 1.4em;
  }
  .top-facility__amenities .modal-contents li {
    margin-bottom: 30px;
  }
  .top-facility__amenities .modal-contents h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .top-facility .contents li .text h3 {
    font-size: 1.25rem;
  }
  .top-facility__amenities {
    padding: 40px 0;
  }
  .top-facility__amenities .button {
    width: 80%;
    height: 50px;
    font-size: 0.875rem;
  }
  .top-facility__amenities .modal-contents p {
    line-height: 1.6em;
  }
}

/* ------------------------------------- 
  top-access
------------------------------------- */
.top-access {
  background: linear-gradient(180deg, rgb(255, 255, 255) 20%, rgba(29, 56, 41, 0.1) 100%);
  padding-bottom: 155px;
}
.top-access__root {
  position: relative;
}
.top-access__root .button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.top-access__root .modal-container {
  overflow: hidden;
}
.top-access__root .modal-contents {
  overflow-x: scroll;
}
.top-access__root .modal-contents img {
  width: 250%;
}
.top-access__facility {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
}
.top-access__facility .text {
  max-width: 620px;
  width: 51.6%;
  height: 100%;
}
.top-access__facility .text h3 {
  border-bottom: 1px solid #1C1C1C;
  padding-bottom: 5px;
  font-size: 1.625rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.top-access__facility .text .detail {
  margin-top: 10px;
}
.top-access__facility .text .detail h4 {
  font-size: 1.625rem;
}
.top-access__facility .text .check {
  margin-top: 20px;
}
.top-access__facility .text .check p {
  background: #FFFFFF;
  margin-bottom: 8px;
  padding: 5px 10px;
  font-size: clamp(16px, 14.4px + 0.5vw, 24px);
  line-height: 1.6em;
  letter-spacing: 0;
}
.top-access__facility .text .check p:last-child {
  margin-bottom: 0;
}
.top-access__facility .text .list {
  margin-top: 15px;
}
.top-access__facility .map {
  max-width: 491px;
  width: 41%;
  height: auto;
}
.top-access__facility .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-access {
    padding-bottom: 100px;
  }
  .top-access__facility .text h3 {
    font-size: 1.375rem;
  }
  .top-access__facility .text .detail h4 {
    font-size: 1.375rem;
  }
  .top-access__facility .text .check p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .top-access__facility {
    flex-direction: column;
    gap: 30px;
  }
  .top-access__facility .text, .top-access__facility .map {
    max-width: 100%;
    width: 100%;
  }
  .top-access__facility .text h3 {
    font-size: 1.125rem;
  }
  .top-access__facility .text .detail h4 {
    font-size: 1.125rem;
  }
  .top-access__facility .text .check p {
    font-size: 1rem;
  }
  .top-access__facility .map {
    aspect-ratio: 6/4;
  }
}
@media screen and (max-width: 480px) {
  .top-access {
    padding-bottom: 70px;
  }
  .top-access__root .button {
    width: 30px;
    height: 30px;
  }
  .top-access__facility {
    gap: 20px;
  }
  .top-access__facility .text .check p {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  top-location
------------------------------------- */
.top-location__slider {
  opacity: 0;
  position: relative;
  margin: 0 -10px;
  padding-bottom: 60px;
}
.top-location__slider .slick-track {
  display: flex;
}
.top-location__slider .slick-slide {
  height: auto;
  display: flex;
}
.top-location__slider .slick-slide > div {
  width: 100%;
  display: flex;
}
.top-location__slider .box {
  display: flex;
  flex-direction: column;
  background: #397052;
  width: 100%;
  height: auto;
  margin: 0 10px;
}
.top-location__slider .box .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
}
.top-location__slider .box .text h3, .top-location__slider .box .text p {
  color: #FFFFFF;
}
.top-location__slider .box .text h3 {
  font-size: 1.5rem;
  line-height: 1.5em;
}
.top-location__slider .box .text p {
  margin-top: 5px;
  font-size: 1rem;
  letter-spacing: 0;
}
.top-location__slider .box .text a {
  position: absolute;
  top: -55px;
  right: 20px;
  display: block;
  width: 70px;
  height: 70px;
}
.top-location__slider .box .text a:hover {
  opacity: 0.7;
}
.top-location .location-arrow {
  position: absolute;
  bottom: -50px;
  width: 100px;
  height: 59px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}
.top-location .location-arrow-prev {
  border-right: 1px solid #1C1C1C;
}
.top-location .location-arrow-prev::before, .top-location .location-arrow-next::before {
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "MS PMincho", "serif";
  color: #1C1C1C;
  font-size: 1.125rem;
}
.top-location .location-arrow-prev::after, .top-location .location-arrow-next::after {
  content: "";
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  height: 8px;
}
.top-location .location-arrow-prev {
  left: calc(50% - 100px);
}
.top-location .location-arrow-prev::before {
  content: "前へ";
}
.top-location .location-arrow-prev::after {
  right: 10px;
  background: url(../images/arrow-prev.svg) no-repeat;
  background-size: 100%;
}
.top-location .location-arrow-next {
  right: calc(50% - 100px);
}
.top-location .location-arrow-next::before {
  content: "次へ";
}
.top-location .location-arrow-next::after {
  left: 10px;
  background: url(../images/arrow-next.svg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .top-location__slider {
    padding-bottom: 40px;
  }
  .top-location__slider .box .text {
    padding: 15px;
  }
  .top-location__slider .box .text h3 {
    font-size: 1.125rem;
  }
  .top-location__slider .box .text p {
    font-size: 0.875rem;
    line-height: 1.6em;
  }
  .top-location__slider .box .text a {
    position: absolute;
    top: -45px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .top-location__slider {
    margin: 0;
    padding-bottom: 30px;
  }
  .top-location__slider .box {
    margin: 0;
  }
  .top-location .location-arrow {
    height: 40px;
  }
  .top-location .location-arrow-prev::before, .top-location .location-arrow-next::before {
    font-size: 1rem;
  }
  .top-location .location-arrow-prev::after, .top-location .location-arrow-next::after {
    bottom: 5px;
  }
}

/* ------------------------------------- 
  hp-mv
------------------------------------- */
.hp-mv {
  background: url(../images/hot-spring/mv.jpg) no-repeat;
  background-size: cover;
}

/* ------------------------------------- 
  overview
------------------------------------- */
.page_hp .overview::before {
  background: url(../images/hot-spring/overview-bg.jpg) no-repeat;
  background-size: cover;
}
.page_hp .overview .wrap p {
  padding: 70px 0;
}
@media screen and (max-width: 1536px) {
  .page_hp .overview .wrap .text p {
    padding: 0;
  }
}

/* ------------------------------------- 
  page_service-common
  largebath / panoramicbath　共通
------------------------------------- */
.page_hp .page_service-common .contents {
  margin-top: 150px;
}
.page_hp .page_service-common .contents li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 20%;
}
.page_hp .page_service-common .contents li .text {
  background: #EBF0ED;
  width: 48.6%;
  margin-top: 5%;
  padding: 7% 0;
}
.page_hp .page_service-common .contents li .text h3, .page_hp .page_service-common .contents li .text p {
  max-width: 570px;
  width: 70%;
  margin: 0 15%;
}
.page_hp .page_service-common .contents li .text h3 {
  border-bottom: 1px solid #1C1C1C;
  font-size: clamp(18px, 14.6px + 1.0625vw, 35px);
}
.page_hp .page_service-common .contents li .text .lead {
  margin-top: 5%;
  font-size: clamp(12px, 10.4px + 0.5vw, 20px);
}
.page_hp .page_service-common .contents li .text .time {
  background: #FFFFFF;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: clamp(12px, 10px + 0.625vw, 22px);
  line-height: 1.5em;
}
.page_hp .page_service-common .contents li .text .time span {
  color: #397052;
}
.page_hp .page_service-common .contents li .image {
  position: relative;
  width: 51.4%;
}
.page_hp .page_service-common .contents li .image .image-s {
  position: absolute;
  bottom: -20%;
  right: -60%;
  width: 68.9%;
}
.page_hp .page_service-common .contents li:nth-child(even) {
  flex-direction: row-reverse;
}
.page_hp .page_service-common .contents li:nth-child(even) .image .image-s {
  left: -60%;
  right: auto;
}
.page_hp .page_service-common .contents li:first-child {
  margin-top: 0;
}
.page_hp .page_service-common .contents li:last-child {
  padding-bottom: 21%;
}

.page_hp .panoramicbath .contents li .image .image-s {
  bottom: -25%;
}

@media screen and (max-width: 1920px) {
  .page_hp .panoramicbath .contents li .image .image-s {
    bottom: -35%;
  }
}
@media screen and (max-width: 1536px) {
  .page_hp .panoramicbath .contents li .image .image-s {
    bottom: -40%;
  }
}
@media screen and (max-width: 1440px) {
  .page_hp .page_service-common .contents li .image .image-s {
    bottom: -25%;
  }
  .page_hp .panoramicbath .contents li .image .image-s {
    bottom: -40%;
  }
}
@media screen and (max-width: 1280px) {
  .page_hp .page_service-common .contents li .text {
    width: 52%;
  }
  .page_hp .page_service-common .contents li .text h3, .page_hp .page_service-common .contents li .text p {
    width: 80%;
    margin: 0 10%;
  }
  .page_hp .page_service-common .contents li .image .image-s {
    bottom: -27%;
  }
  .page_hp .panoramicbath .contents li .text {
    margin-top: 2%;
  }
  .page_hp .panoramicbath .contents li .image .image-s {
    bottom: -45%;
  }
}
@media screen and (max-width: 1024px) {
  .page_hp .page_service-common .contents {
    margin-top: 100px;
  }
  .page_hp .page_service-common .contents li .image {
    width: 48%;
  }
  .page_hp .page_service-common .contents li .image .image-s {
    bottom: -30%;
    right: -40%;
    width: 60%;
  }
  .page_hp .page_service-common .contents li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page_hp .page_service-common .contents li:nth-child(even) .image .image-s {
    left: -40%;
    right: auto;
  }
  .page_hp .page_service-common .contents li:last-child {
    padding-bottom: 16%;
  }
  .page_hp .panoramicbath .contents li .text {
    padding: 5% 0;
  }
  .page_hp .panoramicbath .contents li .image .image-s {
    bottom: -40%;
  }
}
@media screen and (max-width: 960px) {
  .page_hp .page_service-common .contents li {
    align-items: center;
  }
  .page_hp .page_service-common .contents li .text {
    margin-top: 0;
    padding: 3% 0 5%;
  }
  .page_hp .page_service-common .contents li .image .image-s {
    bottom: -37%;
  }
}
@media screen and (max-width: 768px) {
  .page_hp .page_service-common .contents {
    margin-top: 50px;
  }
  .page_hp .page_service-common .contents li {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10%;
  }
  .page_hp .page_service-common .contents li .text {
    max-width: 100%;
    width: 100%;
    padding: 5% 0 10%;
  }
  .page_hp .page_service-common .contents li .image {
    width: 100%;
  }
  .page_hp .page_service-common .contents li .image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #EBF0ED;
    background-size: 100%;
    width: 100%;
    height: 20%;
  }
  .page_hp .page_service-common .contents li .image .image-l {
    width: 60%;
    padding-left: 5%;
  }
  .page_hp .page_service-common .contents li .image .image-s {
    right: 5%;
    bottom: -10%;
    width: 40%;
  }
  .page_hp .page_service-common .contents li:nth-child(even) {
    flex-direction: column;
  }
  .page_hp .page_service-common .contents li:nth-child(even) .image .image-s {
    left: auto;
    right: 5%;
  }
  .page_hp .page_service-common .contents li:last-child {
    padding-bottom: 0%;
  }
}
@media screen and (max-width: 480px) {
  .page_hp .page_service-common .contents li .text {
    padding-top: 10%;
  }
}
/* ------------------------------------- 
  others
------------------------------------- */
.page_hp .others .contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page_hp .others__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.page_hp .others__list .box {
  max-width: 561px;
  width: 46.75%;
}
.page_hp .others__list .title {
  position: relative;
}
.page_hp .others__list .title h3 {
  position: absolute;
  right: -20px;
  bottom: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #397052;
  max-width: 438px;
  width: 100%;
  padding: 20px;
  font-size: 1.375rem;
  color: #FFFFFF;
}
.page_hp .others__list .lead {
  margin-top: 70px;
}
.page_hp .others__list ul {
  margin-top: 20px;
}
.page_hp .others__list ul li {
  margin-bottom: 5px;
  line-height: 1.5em;
  color: #397052;
  letter-spacing: 0;
}
.page_hp .others__list ul li:last-child {
  margin-bottom: 0;
}
.page_hp .others__quality {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px solid #1C1C1C;
  padding: 5% 10%;
}
.page_hp .others__quality h3 {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 900;
}
.page_hp .others__quality table {
  width: 75%;
}
.page_hp .others__quality table tr {
  border-top: 1px solid #1C1C1C;
}
.page_hp .others__quality table tr:last-child {
  border-bottom: 1px solid #1C1C1C;
}
.page_hp .others__quality table th, .page_hp .others__quality table td {
  padding: 10px 20px;
}
.page_hp .others__quality table th {
  width: 150px;
}
.page_hp .others__quality table td {
  padding-left: 0;
  font-size: 1.0625rem;
}
.page_hp .others__amenities {
  background: #EBF0ED;
  padding: 5% 10%;
}
.page_hp .others__amenities h3 {
  font-size: 1.5625rem;
  font-weight: 900;
  color: #397052;
  text-align: center;
}
.page_hp .others__amenities table {
  width: 100%;
  margin-top: 20px;
}
.page_hp .others__amenities table th, .page_hp .others__amenities table td {
  padding: 10px 0;
}
.page_hp .others__amenities table th {
  width: 150px;
  color: #397052;
}
.page_hp .others__amenities table td {
  font-size: 1.125rem;
}
@media screen and (max-width: 1280px) {
  .page_hp .others__quality {
    padding: 5% 7%;
  }
}
@media screen and (max-width: 1024px) {
  .page_hp .others__list .title h3 {
    padding: 15px;
    font-size: 1.25rem;
  }
  .page_hp .others__list .lead {
    margin-top: 60px;
  }
  .page_hp .others__quality h3 {
    font-size: 1.375rem;
  }
  .page_hp .others__quality table th {
    width: 150px;
  }
  .page_hp .others__quality table td {
    font-size: 1rem;
    line-height: 1.4em;
  }
  .page_hp .others__amenities {
    padding: 5% 7%;
  }
  .page_hp .others__amenities h3 {
    font-size: 1.375rem;
  }
  .page_hp .others__amenities table {
    width: 100%;
    margin-top: 10px;
  }
  .page_hp .others__amenities table th {
    width: 120px;
    color: #397052;
  }
  .page_hp .others__amenities table td {
    font-size: 1.0625rem;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 768px) {
  .page_hp .others__list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .page_hp .others__list .box {
    max-width: 100%;
    width: 90%;
  }
  .page_hp .others__list .title {
    margin: 0 auto;
  }
  .page_hp .others__list .title h3 {
    width: 90%;
    padding: 10px;
    font-size: 1.125rem;
    letter-spacing: 0;
  }
  .page_hp .others__list .lead {
    margin-top: 50px;
  }
  .page_hp .others__quality {
    flex-direction: column;
    gap: 20px;
  }
  .page_hp .others__quality h3 {
    font-size: 1.25rem;
  }
  .page_hp .others__quality table {
    width: 100%;
  }
  .page_hp .others__quality table th, .page_hp .others__quality table td {
    padding: 10px;
  }
  .page_hp .others__quality table th {
    width: 120px;
  }
  .page_hp .others__quality table td {
    font-size: 0.9375rem;
  }
  .page_hp .others__amenities {
    padding: 30px;
  }
  .page_hp .others__amenities h3 {
    font-size: 1.25rem;
  }
  .page_hp .others__amenities table {
    width: 100%;
  }
  .page_hp .others__amenities table th, .page_hp .others__amenities table td {
    display: block;
    width: 100%;
  }
  .page_hp .others__amenities table th {
    padding-bottom: 0;
    font-size: 1rem;
    font-weight: 900;
  }
  .page_hp .others__amenities table td {
    padding-top: 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .page_hp .others__list {
    gap: 30px;
  }
  .page_hp .others__list .box {
    width: 100%;
  }
  .page_hp .others__list .title h3 {
    width: 100%;
    font-size: 1rem;
  }
  .page_hp .others__quality {
    gap: 10px;
  }
  .page_hp .others__quality h3 {
    font-size: 1.125rem;
    line-height: 1.6em;
  }
  .page_hp .others__quality table th {
    font-size: 0.875rem;
    width: 90px;
  }
  .page_hp .others__quality table td {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  day-hp
------------------------------------- */
.day-hp {
  background: url(../images/hot-spring/dayhp-bg.jpg) no-repeat;
  background-size: cover;
  margin-top: 240px;
  padding: 140px 0;
}
.day-hp .section-common {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1205px;
  width: 90%;
}
.day-hp .title {
  opacity: 0;
  width: 8.4%;
}
.day-hp .title h2 {
  writing-mode: vertical-rl;
  color: #397052;
  font-size: clamp(20px, 14px + 1.875vw, 50px);
  line-height: 1em;
  letter-spacing: 0.3em;
}
.day-hp .contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1104px;
  width: 91.6%;
  margin-top: 0;
}
.day-hp .contents .image {
  max-width: 470px;
  width: 42.6%;
  height: 100%;
}
.day-hp .contents .image img {
  height: 100%;
  object-fit: cover;
}
.day-hp .contents .text {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  width: 54.3%;
}
.day-hp .contents .lead {
  font-size: clamp(16px, 14.8px + 0.375vw, 22px);
}
.day-hp .contents dl dt {
  background: #397052;
  border-radius: 100px;
  max-width: 280px;
  width: 100%;
  color: #FFFFFF;
  text-align: center;
  line-height: 58px;
  font-size: clamp(16px, 14.4px + 0.5vw, 24px);
}
.day-hp .contents dl dd {
  margin: 10px auto 30px;
}
.day-hp .contents dl dd:last-child {
  margin-bottom: 0;
}
.day-hp .contents dl dd ul li {
  margin-bottom: 5px;
  line-height: 1.5em;
}
.day-hp .contents dl dd ul li:last-child {
  margin-bottom: 0;
}
.day-hp .contents .free-area {
  background: #FFFFFF;
  max-width: 558px;
  padding: 30px;
}
.day-hp .contents .free-area h3 {
  font-size: 1.25rem;
}
.day-hp .contents .free-area p {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.8em;
}
.day-hp .contents .image {
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  .day-hp .contents dl dt {
    line-height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .day-hp {
    margin-top: 170px;
    padding: 100px 0;
  }
  .day-hp .contents .free-area h3 {
    font-size: 1.125rem;
  }
  .day-hp .contents .free-area p {
    font-size: 1rem;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .day-hp {
    margin-top: 120px;
  }
  .day-hp .section-common {
    flex-direction: column;
    gap: 40px;
  }
  .day-hp .title, .day-hp .contents {
    max-width: 100%;
    width: 100%;
  }
  .day-hp .title h2 {
    writing-mode: unset;
  }
  .day-hp .contents {
    flex-direction: column;
    gap: 40px;
  }
  .day-hp .contents .image, .day-hp .contents .text {
    max-width: 100%;
    width: 100%;
  }
  .day-hp .contents .image {
    height: 250px;
    object-fit: cover;
  }
  .day-hp .contents .lead {
    text-align: center;
  }
  .day-hp .contents dl dt {
    text-align: center;
    line-height: 40px;
  }
  .day-hp .contents dl dd ul li {
    font-size: 1rem;
  }
  .day-hp .contents .free-area {
    max-width: 100%;
    padding: 20px;
  }
  .day-hp .contents .free-area h3 {
    font-size: 1rem;
    line-height: 1.6em;
  }
  .day-hp .contents .free-area p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .day-hp {
    margin-top: 70px;
    padding: 70px 0;
  }
  .day-hp .contents {
    gap: 30px;
  }
  .day-hp .contents .lead {
    text-align: left;
  }
  .day-hp .contents dl dd ul li {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  meal-mv
------------------------------------- */
.meal-mv {
  background: url(../images/meal/mv.jpg) no-repeat;
  background-size: cover;
}

/* ------------------------------------- 
  overview
------------------------------------- */
.page_meal .overview::before {
  background: url(../images/meal/overview-bg.jpg) no-repeat;
  background-size: cover;
}
.page_meal .overview .text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
  padding-top: 15%;
}
.page_meal .overview .text img.text-image {
  opacity: 0;
  max-width: 607px;
}
.page_meal .overview .time {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #BE7E6B;
  max-width: 620px;
  width: 50%;
  margin: 0 auto;
  padding: 45px 50px;
}
.page_meal .overview .time h3, .page_meal .overview .time p {
  color: #FFFFFF;
}
.page_meal .overview .time h3 {
  border-bottom: 1px solid #FFFFFF;
  font-size: 1.875rem;
  letter-spacing: 0.2em;
}
.page_meal .overview .time ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  background: #FFFFFF;
  margin-top: 15px;
  padding: 0 30px;
}
.page_meal .overview .time ul li {
  font-size: 1.875rem;
}
.page_meal .overview .time ul li span {
  color: #BE7E6B;
}
.page_meal .overview .time .att {
  margin-top: 15px;
  font-size: 1rem;
}
@media screen and (max-width: 1536px) {
  .page_meal .overview .text {
    padding-top: 0;
  }
  .page_meal .overview .time {
    bottom: -10%;
  }
}
@media screen and (max-width: 1024px) {
  .page_meal .overview {
    padding-bottom: 0;
  }
  .page_meal .overview::before {
    height: 90%;
  }
  .page_meal .overview .text {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .page_meal .overview .text .lead {
    width: 45%;
    padding-left: 5%;
  }
  .page_meal .overview .text img {
    width: 50%;
  }
  .page_meal .overview .image img {
    object-position: 50% 70%;
  }
  .page_meal .overview .time {
    position: static;
    transform: none;
    margin: 20px auto 0;
    padding: 25px 30px;
  }
  .page_meal .overview .time h3 {
    font-size: 1.5625rem;
  }
  .page_meal .overview .time ul {
    gap: 30px;
    padding: 0 20px;
  }
  .page_meal .overview .time ul li {
    font-size: 1.5625rem;
  }
  .page_meal .overview .time .att {
    margin-top: 10px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .page_meal .overview .text {
    flex-direction: column;
    gap: 20px;
  }
  .page_meal .overview .text .lead {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
  }
  .page_meal .overview .text img {
    width: 60%;
  }
  .page_meal .overview .time {
    width: 70%;
    margin-top: 30px;
    padding: 10px 25px;
  }
  .page_meal .overview .time h3 {
    font-size: 1.375rem;
  }
  .page_meal .overview .time ul {
    gap: 20px;
    padding: 0 20px;
  }
  .page_meal .overview .time ul li {
    font-size: 1.375rem;
  }
  .page_meal .overview .time .att {
    margin-top: 10px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .page_meal .overview .time {
    width: 80%;
    padding: 20px;
  }
  .page_meal .overview .time h3 {
    font-size: 1.25rem;
    line-height: 1.3em;
  }
  .page_meal .overview .time ul {
    gap: 10px;
    padding: 0 10px;
  }
  .page_meal .overview .time ul li {
    font-size: 1.125rem;
  }
  .page_meal .overview .time .att {
    font-size: 0.8125rem;
    letter-spacing: 0;
    line-height: 1.3em;
  }
}

/* ------------------------------------- 
  season
------------------------------------- */
.page_meal .season {
  background: url(../images/meal/season-bg.jpg) no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding-bottom: 200px;
}
.page_meal .season .section-common {
  margin-top: 0;
}
.page_meal .season .title-lead {
  margin-top: 50px;
  text-align: center;
}
.page_meal .season table {
  width: 100%;
}
.page_meal .season table tr {
  border-top: 1px solid #1C1C1C;
}
.page_meal .season table tr:last-child {
  border-bottom: 1px solid #1C1C1C;
}
.page_meal .season table th, .page_meal .season table td {
  padding: 20px 30px;
}
.page_meal .season table th {
  position: relative;
  width: 20%;
}
.page_meal .season table th::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1C1C1C;
  width: 1px;
  height: 70%;
}
.page_meal .season .detail {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page_meal .season .detail .menu-name dt {
  background: #BE7E6B;
  padding: 30px 25px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.page_meal .season .detail .menu-name dd {
  margin-top: 30px;
}
.page_meal .season .menu-lineup {
  margin-top: 30px;
}
.page_meal .season .menu-lineup h3 {
  font-size: 1.5625rem;
  color: #BE7E6B;
  text-align: left;
}
.page_meal .season .menu-lineup table {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .page_meal .season {
    padding-bottom: 150px;
  }
  .page_meal .season table th, .page_meal .season table td {
    padding: 10px 20px;
  }
  .page_meal .season table th::after {
    height: 60%;
  }
  .page_meal .season .detail {
    gap: 40px;
  }
  .page_meal .season .detail .menu-name dt {
    padding: 20px;
    font-size: 1.25rem;
  }
  .page_meal .season .detail .menu-name dd {
    margin-top: 20px;
  }
  .page_meal .season .menu-lineup h3 {
    font-size: 1.25rem;
  }
  .page_meal .season .menu-lineup table {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page_meal .season {
    padding-bottom: 120px;
  }
  .page_meal .season table th {
    width: 120px;
    text-align: center;
  }
  .page_meal .season .detail {
    gap: 30px;
  }
  .page_meal .season .detail .menu-name dt {
    padding: 15px;
    font-size: 1.125rem;
  }
  .page_meal .season .detail .menu-name dd {
    margin-top: 10px;
  }
  .page_meal .season .menu-lineup h3 {
    font-size: 1.125rem;
  }
  .page_meal .season .menu-lineup table {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .page_meal .season {
    padding-bottom: 70px;
  }
  .page_meal .season table th, .page_meal .season table td {
    line-height: 1.6em;
  }
  .page_meal .season table th {
    width: 80px;
  }
  .page_meal .season .detail {
    gap: 30px;
  }
  .page_meal .season .detail .period th, .page_meal .season .detail .period td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .page_meal .season .detail .period th {
    padding: 10px 0 0;
  }
  .page_meal .season .detail .period th::after {
    background: transparent;
  }
  .page_meal .season .detail .menu-name dt {
    padding: 10px;
    font-size: 1.0625rem;
  }
  .page_meal .season .menu-lineup h3 {
    font-size: 1.0625rem;
  }
  .page_meal .season .menu-lineup table th, .page_meal .season .menu-lineup table td {
    font-size: 0.875rem;
    padding: 5px 0;
  }
  .page_meal .season .menu-lineup table th {
    width: 50px;
  }
  .page_meal .season .menu-lineup table td {
    padding-left: 10px;
  }
}

/* ------------------------------------- 
  dining-information
  breakfast / dinner　共通
------------------------------------- */
.page_meal .information__overview {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: 41% 59%;
}
.page_meal .information__overview .title, .page_meal .information__overview image {
  height: 100%;
}
.page_meal .information__overview .title, .page_meal .information__overview .image {
  width: 100%;
  height: 100%;
}
.page_meal .information__overview .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../images/meal/information-bg.jpg) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.page_meal .information__overview .title h2, .page_meal .information__overview .title p, .page_meal .information__overview .title .image {
  opacity: 0;
}
.page_meal .information__overview .title h2 {
  font-size: clamp(25px, 20px + 1.5625vw, 50px);
  color: #BE7E6B;
  writing-mode: vertical-rl;
}
.page_meal .information__overview .title p {
  width: 90%;
  margin: 70px auto 0;
  text-align: center;
}
.page_meal .information__overview .image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .page_meal .information__overview .title {
    padding: 70px 0;
  }
  .page_meal .information__overview .title p {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page_meal .information__overview {
    display: block;
  }
  .page_meal .information__overview .title {
    padding: 50px 0 30px;
  }
  .page_meal .information__overview .title p {
    margin-top: 30px;
  }
  .page_meal .information__overview .title .image {
    max-width: 600px;
    width: 85%;
    height: 200px;
    margin: 30px auto 0;
  }
}

/* ------------------------------------- 
  option
------------------------------------- */
.page_meal .option {
  background: url(../images/meal/option-bg.jpg) no-repeat;
  background-size: 100%;
  background-position: bottom center;
  margin-top: 240px;
  padding-bottom: 200px;
}
.page_meal .option .title {
  width: 100%;
}
.page_meal .option .title .image img, .page_meal .option .title h2, .page_meal .option .title .lead {
  opacity: 0;
}
.page_meal .option .title .image {
  position: relative;
  max-width: 1200px;
  width: 62.5%;
  margin: 0 auto;
}
.page_meal .option .title .image::after {
  content: "";
  display: block;
  height: 100%;
  padding-top: 70%;
}
.page_meal .option .title .image img {
  position: absolute;
  max-width: 677px;
  width: 56.5%;
}
.page_meal .option .title .image img.title-img1 {
  top: 0;
  right: 0;
  z-index: 1;
}
.page_meal .option .title .image img.title-img2 {
  left: 0;
  top: 35%;
}
.page_meal .option .title h2 {
  margin-top: 200px;
  position: relative;
  font-size: clamp(25px, 20px + 1.5625vw, 50px);
  font-weight: 500;
}
.page_meal .option .title h2::after {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  content: "Option";
  color: #F8F2F0;
  font-size: clamp(50px, 30px + 6.25vw, 150px);
  font-weight: 900;
  letter-spacing: 0.2em;
}
.page_meal .option .title .lead {
  margin-top: 40px;
  text-align: center;
}
.page_meal .option .contents {
  margin-top: 50px;
}
.page_meal .option .contents li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1C1C1C;
  padding: 50px 40px;
}
.page_meal .option .contents li:last-child {
  border-bottom: 1px solid #1C1C1C;
}
.page_meal .option .contents dl {
  max-width: 630px;
  width: 56.2%;
}
.page_meal .option .contents dt {
  font-size: 1.875rem;
}
.page_meal .option .contents dd {
  margin-top: 30px;
  line-height: 1.5em;
}
.page_meal .option .contents .image {
  max-width: 450px;
  width: 40.1%;
}
@media screen and (max-width: 1024px) {
  .page_meal .option {
    margin-top: 170px;
    padding-bottom: 150px;
  }
  .page_meal .option .title h2 {
    margin-top: 150px;
  }
  .page_meal .option .title h2::after {
    bottom: 50px;
  }
  .page_meal .option .title .lead {
    margin-top: 30px;
  }
  .page_meal .option .contents {
    margin-top: 40px;
  }
  .page_meal .option .contents li {
    padding: 40px 30px;
  }
  .page_meal .option .contents dt {
    padding: 20px 15px;
    font-size: 1.25rem;
  }
  .page_meal .option .contents dd {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page_meal .option {
    margin-top: 120px;
    padding-bottom: 120px;
  }
  .page_meal .option .title {
    width: 90%;
    margin: 0 auto;
  }
  .page_meal .option .title .image {
    width: 80%;
  }
  .page_meal .option .title h2 {
    margin-top: 120px;
  }
  .page_meal .option .title h2::after {
    bottom: 40px;
  }
  .page_meal .option .title .lead {
    margin-top: 20px;
  }
  .page_meal .option .contents {
    margin-top: 30px;
  }
  .page_meal .option .contents li {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px 15px;
  }
  .page_meal .option .contents dl {
    max-width: 100%;
    width: 100%;
  }
  .page_meal .option .contents dt {
    padding: 10px 15px;
    font-size: 1.125rem;
  }
  .page_meal .option .contents dd {
    margin-top: 10px;
  }
  .page_meal .option .contents .image {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .page_meal .option {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  .page_meal .option .title .image {
    width: 90%;
  }
  .page_meal .option .title h2 {
    margin-top: 70px;
  }
  .page_meal .option .title h2::after {
    bottom: 35px;
  }
  .page_meal .option .contents {
    margin-top: 20px;
  }
  .page_meal .option .contents li {
    padding: 15px 10px;
  }
  .page_meal .option .contents dt {
    padding: 10px;
    font-size: 1rem;
  }
  .page_meal .option .contents .image {
    width: 100%;
  }
}

/* ------------------------------------- 
  news__category
------------------------------------- */
.news__category {
  margin-top: 0;
}
.news__category h2 {
  position: relative;
  padding-left: 40px;
  font-size: 1.875rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: left;
}
.news__category h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #1C1C1C;
  background-size: 100%;
  width: 27px;
  height: 1px;
}
.news__category ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
  margin-left: 50px;
}
.news__category ul li a {
  text-decoration: underline;
}
.news__category ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .news__category h2 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .news__category h2 {
    padding-left: 30px;
    font-size: 1.375rem;
  }
  .news__category h2::before {
    width: 20px;
  }
  .news__category ul {
    display: block;
    column-count: 2;
    max-width: 300px;
    width: 100%;
    margin-top: 10px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 480px) {
  .news__category h2 {
    font-size: 1.125rem;
  }
  .news__category ul {
    max-width: 250px;
    margin-left: 20px;
  }
  .news__category ul li a {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  news__list / news_detail 共通
------------------------------------- */
.news__list .sub, .news__detail .sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.news__list .sub .date, .news__detail .sub .date {
  font-size: clamp(16px, 14.8px + 0.375vw, 22px);
  width: 130px;
}
.news__list .sub .tag, .news__detail .sub .tag {
  width: 180px;
  font-size: clamp(12px, 10.8px + 0.375vw, 18px);
  line-height: 31px;
}
@media screen and (max-width: 1024px) {
  .news__list .sub .date, .news__detail .sub .date {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .news__list .sub .date, .news__detail .sub .date {
    width: auto;
  }
  .news__list .sub .tag, .news__detail .sub .tag {
    max-width: 180px;
    width: 40%;
    line-height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .news__list .sub .tag, .news__detail .sub .tag {
    line-height: 25px;
  }
}

/* ------------------------------------- 
  news__list
------------------------------------- */
.news__list {
  margin-top: 120px;
}
.news__list ul.list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 25px;
  border-bottom: 1px solid #1C1C1C;
}
.news__list ul.list li:first-child {
  border-top: 1px solid #1C1C1C;
}
.news__list ul.list li .thumbnail {
  max-width: 275px;
  width: 25%;
  aspect-ratio: 55/41;
  align-self: flex-start;
}
.news__list ul.list li .thumbnail img {
  height: 100%;
  object-fit: cover;
}
.news__list ul.list li .detail {
  width: 72%;
}
.news__list ul.list li .title {
  display: block;
  margin-top: 5px;
  font-size: clamp(16px, 13.8px + 0.6875vw, 27px);
  font-weight: 800;
  text-decoration: underline;
}
.news__list ul.list li .title:hover {
  text-decoration: none;
}
.news__list .pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  margin-top: 50px;
}
.news__list .pagenation .prev, .news__list .pagenation .next {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 10px;
}
.news__list .pagenation .prev:hover, .news__list .pagenation .next:hover {
  opacity: 0.7;
}
.news__list .pagenation .page-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.news__list .pagenation .page-list .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  color: #397052;
  font-size: 1.5rem;
  text-decoration: underline;
}
.news__list .pagenation .page-list .num:hover {
  text-decoration: none;
}
.news__list .pagenation .page-list .active {
  background: #397052;
  background-size: 100%;
  border-radius: 100%;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .news__list {
    margin-top: 70px;
  }
  .news__list ul.list li {
    padding: 20px 15px;
  }
  .news__list .pagenation {
    gap: 30px;
    margin-top: 30px;
  }
  .news__list .pagenation .page-list {
    gap: 10px;
  }
  .news__list .pagenation .page-list .num {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .news__list {
    margin-top: 50px;
  }
  .news__list ul.list {
    display: grid;
    justify-content: center;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
    padding: 30px 0;
  }
  .news__list ul.list li {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    height: 100%;
    padding: 0;
    border: none;
  }
  .news__list ul.list li:first-child {
    border-top: none;
  }
  .news__list ul.list li .thumbnail {
    max-width: 300px;
    width: 100%;
  }
  .news__list ul.list li .detail {
    width: 100%;
  }
  .news__list ul.list li .sub {
    flex-direction: column;
    gap: 5px;
  }
  .news__list ul.list li .sub .tag {
    width: 80%;
  }
  .news__list ul.list li .title {
    margin-top: 10px;
    line-height: 1.6em;
  }
  .news__list .pagenation {
    gap: 20px;
    margin-top: 20px;
  }
  .news__list .pagenation .page-list {
    gap: 10px;
  }
  .news__list .pagenation .page-list .num {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .news__list {
    margin-top: 30px;
  }
  .news__list ul.list {
    gap: 15px;
    padding: 20px 0;
  }
  .news__list ul.list li .sub .date {
    font-size: 0.875rem;
  }
  .news__list ul.list li .title {
    font-size: 0.875rem;
  }
}

/* ------------------------------------- 
  news__detail
------------------------------------- */
.news__detail {
  margin-top: 0;
}
.news__detail .title {
  border-bottom: 1px solid #1C1C1C;
  margin-top: 50px;
  padding-bottom: 30px;
}
.news__detail .title h2 {
  font-size: 2.1875rem;
  text-align: left;
}
.news__detail .detail {
  margin-top: 25px;
}
.news__detail .detail p, .news__detail .detail a {
  letter-spacing: 0;
}
.news__detail .detail p {
  padding: 10px 0;
}
.news__detail .detail a {
  text-decoration: underline;
  color: #395470;
}
.news__detail .detail a:hover {
  text-decoration: none;
}
.news__detail .detail .wp-element-caption {
  margin: 0 auto 10px;
  text-align: center;
}
.news__detail .reserve_button {
  display: block;
  background: #397052;
  max-width: 600px;
  width: auto;
  margin: 30px auto 0;
  padding: 15px 20px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5em;
}
.news__detail .reserve_button:hover {
  background: #1C1C1C;
  text-decoration: none;
}
.news__detail .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #1C1C1C;
  border-radius: 900px;
  max-width: 330px;
  width: 70%;
  height: 62px;
  margin: 0 auto;
  color: #1C1C1C;
  text-align: center;
  letter-spacing: 0.2em;
}
.news__detail .button:hover {
  text-decoration: none;
  background: #1C1C1C;
  color: #FFFFFF;
}
.news__detail .button {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .news__detail .title {
    margin-top: 30px;
    padding-bottom: 20px;
  }
  .news__detail .title h2 {
    font-size: 1.875rem;
  }
  .news__detail .detail {
    margin-top: 20px;
  }
  .news__detail .button {
    margin-top: 70px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .news__detail .title {
    margin-top: 20px;
    padding-bottom: 15px;
  }
  .news__detail .title h2 {
    font-size: 1.5625rem;
  }
  .news__detail .detail {
    margin-top: 15px;
  }
}
@media screen and (max-width: 480px) {
  .news__detail .title {
    margin-top: 10px;
  }
  .news__detail .title h2 {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
  .news__detail .reserve_button {
    padding: 10px 15px;
  }
}

/* ------------------------------------- 
  page_contact common
------------------------------------- */
.page_contact {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .page_contact {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .page_contact {
    margin-top: 70px;
  }
}
@media screen and (max-width: 480px) {
  .page_contact {
    margin-top: 50px;
  }
}

/* ------------------------------------- 
  contact__faq
------------------------------------- */
.contact__faq {
  margin-top: 0;
}
.contact__faq__category {
  margin-top: 60px;
}
.contact__faq__category ul {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}
.contact__faq__category ul li {
  border-left: 1px solid #1C1C1C;
  height: 100%;
}
.contact__faq__category ul li:last-child {
  border-right: 1px solid #1C1C1C;
}
.contact__faq__category ul li a {
  display: block;
  padding: 10px 20px;
  font-size: clamp(12px, 10.8px + 0.375vw, 18px);
  text-align: center;
  line-height: 1.3em;
}
.contact__faq__contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: url(../images/contact_btn-bg.jpg) no-repeat;
  background-size: cover;
  margin-top: 85px;
  padding: 20px;
}
.contact__faq__contact .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #703939;
  border-radius: 900px;
  max-width: 397px;
  width: 45%;
  height: 54px;
  margin: 0 auto;
  color: #703939;
  text-align: center;
  letter-spacing: 0.2em;
}
.contact__faq__contact .button:hover {
  text-decoration: none;
  background: #703939;
  color: #FFFFFF;
}
.contact__faq__contact .button {
  border-color: transparent;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}
.contact__faq__contact .button:hover {
  background: #1C1C1C;
}
.contact__faq__contact p {
  width: 50%;
  color: #FFFFFF;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .contact__faq__category {
    margin-top: 50px;
  }
  .contact__faq__category ul li a {
    padding: 5px 10px;
  }
  .contact__faq__contact {
    margin-top: 50px;
  }
  .contact__faq__contact .button {
    font-size: 1.125rem;
  }
  .contact__faq__contact p {
    font-size: 0.9375rem;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .contact__faq__category {
    margin-top: 40px;
  }
  .contact__faq__category ul {
    display: block;
    border-left: 1px solid #1C1C1C;
    border-right: 1px solid #1C1C1C;
    column-count: 2;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .contact__faq__category ul li {
    border: none;
  }
  .contact__faq__category ul li:last-child {
    border: none;
  }
  .contact__faq__contact {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
  .contact__faq__contact .button {
    width: 80%;
    height: 50px;
    font-size: 1rem;
  }
  .contact__faq__contact p {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__faq__category {
    margin-top: 30px;
  }
  .contact__faq__contact {
    margin-top: 20px;
    padding: 15px 20px;
  }
  .contact__faq__contact .button {
    height: 40px;
  }
}

/* ------------------------------------- 
  contact__faq__list
  アコーディオンメニュー
------------------------------------- */
#payments {
  margin-bottom: 0;
}

#faq-stay {
  margin-top: 130px;
}

.contact__faq__list {
  margin-bottom: 130px;
}
.contact__faq__list h3 {
  font-size: 1.875rem;
  color: #397052;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.contact__faq__list .accordion {
  width: 100%;
  margin-top: 20px;
}
.contact__faq__list .accordion-item {
  background: #EBF0ED;
  margin-bottom: 20px;
}
.contact__faq__list .accordion-item:last-child {
  margin-bottom: 0;
}
.contact__faq__list .accordion-header {
  background: transparent;
  position: relative;
  width: 100%;
  padding: 20px 50px 20px 40px;
  border: none;
  text-align: left;
  cursor: pointer;
}
.contact__faq__list .accordion-header::before, .contact__faq__list .accordion-header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 17px;
  height: 1px;
  background: #1C1C1C;
  transition: transform 0.3s ease;
}
.contact__faq__list .accordion-header::after {
  transform: translateY(-50%) rotate(90deg);
}
.contact__faq__list .accordion-header::before {
  transform: translateY(-50%);
}
.contact__faq__list .accordion-header.active::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.contact__faq__list .accordion-header p {
  position: relative;
  padding-left: 35px;
  line-height: 1.5em;
}
.contact__faq__list .accordion-header p::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "Q";
  font-size: 1.5625rem;
  color: #706A39;
}
.contact__faq__list .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.contact__faq__list .accordion-content .detail {
  position: relative;
  padding: 0 20px 30px 75px;
}
.contact__faq__list .accordion-content .detail::before {
  position: absolute;
  left: 40px;
  content: "A";
  font-size: 1.5625rem;
  color: #703939;
}
.contact__faq__list .accordion-content .detail p {
  line-height: 1.6em;
}
.contact__faq__list .accordion-content .detail a {
  color: #395470;
  text-decoration: underline;
}
.contact__faq__list .accordion-content .detail a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  #faq-stay {
    margin-top: 100px;
  }
  .contact__faq__list {
    margin-bottom: 100px;
  }
  .contact__faq__list h3 {
    font-size: 1.5625rem;
  }
  .contact__faq__list .accordion {
    margin-top: 10px;
  }
  .contact__faq__list .accordion-item {
    margin-bottom: 10px;
  }
  .contact__faq__list .accordion-header {
    padding: 10px 50px 10px 20px;
  }
  .contact__faq__list .accordion-header p {
    padding-left: 30px;
  }
  .contact__faq__list .accordion-header p::before {
    font-size: 1.25rem;
  }
  .contact__faq__list .accordion-content .detail {
    padding: 0 10px 20px 50px;
  }
  .contact__faq__list .accordion-content .detail::before {
    left: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  #faq-stay {
    margin-top: 70px;
  }
  .contact__faq__list {
    margin-bottom: 70px;
  }
  .contact__faq__list h3 {
    font-size: 1.375rem;
  }
  .contact__faq__list .accordion-item {
    margin-bottom: 5px;
  }
  .contact__faq__list .accordion-header p {
    padding-left: 25px;
  }
  .contact__faq__list .accordion-header p::before {
    font-size: 1rem;
  }
  .contact__faq__list .accordion-content .detail {
    padding-left: 45px;
  }
  .contact__faq__list .accordion-content .detail::before {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #faq-stay {
    margin-top: 50px;
  }
  .contact__faq__list {
    margin-bottom: 50px;
  }
  .contact__faq__list h3 {
    font-size: 1.125rem;
  }
  .contact__faq__list .accordion {
    margin-top: 5px;
  }
  .contact__faq__list .accordion-header {
    padding-left: 15px;
    padding-right: 40px;
  }
  .contact__faq__list .accordion-header p {
    padding-left: 20px;
  }
  .contact__faq__list .accordion-content .detail {
    padding-left: 35px;
  }
  .contact__faq__list .accordion-content .detail p, .contact__faq__list .accordion-content .detail a {
    font-size: 0.875rem;
  }
  .contact__faq__list .accordion-content .detail::before {
    left: 15px;
  }
}
/* ------------------------------------- 
  contact__form
------------------------------------- */
.contact__form {
  border: 1px solid #1C1C1C;
  padding: 10%;
}
.contact__form .tel, .contact__form .tel a {
  color: #FFFFFF;
}
.contact__form .tel {
  background: #397052;
  margin-top: 25px;
  padding: 10px;
  text-align: center;
}
.contact__form .tel span, .contact__form .tel span a {
  font-size: 2.5rem;
}
.contact__form .mailform {
  width: 100%;
  margin-top: 70px;
}
.contact__form .mailform tr {
  border-top: 1px solid #1C1C1C;
}
.contact__form .mailform tr:last-child {
  border-bottom: 1px solid #1C1C1C;
}
.contact__form .mailform th, .contact__form .mailform td {
  padding: 20px 0;
}
.contact__form .mailform th {
  position: relative;
  font-size: 1.125rem;
}
.contact__form .mailform th .hissu {
  position: absolute;
  right: 0;
  color: #D16B4C;
  font-size: 1rem;
}
.contact__form .mailform td {
  max-width: 610px;
  width: 70%;
  padding-left: 20px;
  font-size: 1rem;
}
.contact__form .mailform th.textarea {
  vertical-align: top;
}
.contact__form .mailform td.checkbox {
  text-align: center;
  padding: 50px 0;
}
.contact__form .mailform td.checkbox .policy {
  max-width: 670px;
  width: 90%;
  margin: 30px auto 0;
}
.contact__form .mailform td.checkbox .policy h3 {
  font-size: 1.125rem;
}
.contact__form .mailform td.checkbox .policy ul {
  list-style-type: disc;
  border: 1px solid #1C1C1C;
  width: 100%;
  max-height: 290px;
  padding: 30px 30px 30px 50px;
  overflow-y: scroll;
}
.contact__form .mailform td.checkbox .policy li {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5em;
}
.contact__form .mailform td.checkbox .policy li:last-child {
  margin-bottom: 0;
}
.contact__form .mailform td.checkbox .policy li span {
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .contact__form {
    padding: 7%;
  }
  .contact__form .tel {
    margin-top: 15px;
    padding: 5px;
  }
  .contact__form .tel span, .contact__form .tel span a {
    font-size: 2.1875rem;
  }
  .contact__form .mailform {
    margin-top: 50px;
  }
  .contact__form .mailform th, .contact__form .mailform td {
    padding: 15px 0;
  }
  .contact__form .mailform th {
    font-size: 1rem;
  }
  .contact__form .mailform th .hissu {
    font-size: 0.875rem;
  }
  .contact__form .mailform td.checkbox {
    padding: 30px 0;
  }
  .contact__form .mailform td.checkbox .policy {
    margin-top: 20px;
  }
  .contact__form .mailform td.checkbox .policy h3 {
    font-size: 1rem;
  }
  .contact__form .mailform td.checkbox .policy li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding: 25px 30px 30px;
  }
  .contact__form .lead {
    width: 90%;
    margin: 10px auto;
  }
  .contact__form .tel {
    margin-top: 10px;
    padding: 10px;
  }
  .contact__form .tel span, .contact__form .tel span a {
    font-size: 1.875rem;
    line-height: 1em;
  }
  .contact__form .mailform {
    margin-top: 30px;
  }
  .contact__form .mailform th, .contact__form .mailform td {
    display: block;
    width: 100%;
  }
  .contact__form .mailform th {
    padding: 15px 0 10px;
  }
  .contact__form .mailform th .hissu {
    position: static;
  }
  .contact__form .mailform td {
    padding: 0 0 15px 0;
  }
  .contact__form .mailform td.checkbox {
    padding: 20px 0;
  }
  .contact__form .mailform td.checkbox .policy {
    margin-top: 10px;
  }
  .contact__form .mailform td.checkbox .policy ul {
    padding: 20px 20px 20px 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact__form {
    padding: 15px 20px 20px;
  }
  .contact__form .lead p {
    font-size: 0.875rem;
  }
  .contact__form .tel span, .contact__form .tel span a {
    font-size: 1.5625rem;
  }
  .contact__form .mailform {
    margin-top: 20px;
  }
  .contact__form .mailform th {
    padding: 10px 0 5px;
  }
  .contact__form .mailform td.checkbox {
    padding: 15px 0;
  }
  .contact__form .mailform td.checkbox .policy {
    width: 100%;
  }
  .contact__form .mailform td.checkbox .policy ul {
    padding: 15px 15px 15px 35px;
  }
}

/* ------------------------------------- 
  contact__confirm/contact__thanks
------------------------------------- */
.contact__confirm, .contact__thanks {
  margin-top: 150px;
  padding-top: 6%;
}
.contact__confirm h2, .contact__confirm p, .contact__thanks h2, .contact__thanks p {
  text-align: center;
}
.contact__confirm p, .contact__thanks p {
  padding-top: 50px;
}

.contact__thanks a.button {
  margin-top: 30px !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #397052;
  border-radius: 0;
  background: #397052;
  max-width: 350px;
  width: 80%;
  height: 70px;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
  letter-spacing: 0.1em;
}
.contact__thanks a.button:hover {
  border: 1px solid #1C1C1C;
  background: #1C1C1C;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .contact__confirm, .contact__thanks {
    margin-top: 100px;
    padding-top: 5%;
  }
  .contact__confirm p, .contact__thanks p {
    padding-top: 30px;
  }
  .contact__thanks a.button {
    height: 60px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__confirm, .contact__thanks {
    margin-top: 70px;
    padding-top: 30px;
  }
  .contact__confirm p, .contact__thanks p {
    padding-top: 20px;
  }
  .contact__thanks a.button {
    height: 50px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .contact__confirm, .contact__thanks {
    margin-top: 50px;
  }
}/*# sourceMappingURL=common_style.css.map */