@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
.zen {
  font-family: "Zen Old Mincho", serif;
}

.eb {
  font-family: "EB Garamond", serif;
}

/*
Theme Name: 有限会社夢工房
Theme URL: https://www.takaranoyu.com/
Description: 野天風呂 宝の湯 | 露天風呂・岩盤浴などで、癒しのひとときをお過ごしください。
Version: 1.0
License: 有限会社夢工房
License URI: https://www.takaranoyu.com/
*/
/****************************************

_reset.scss リセットCSS

*****************************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
picture,
menu,
nav,
section,
main {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

img {
  vertical-align: top;
}

address {
  font-style: normal;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/****************************************

_base.scss body設定(主に書式)

*****************************************/
body {
  min-width: 1200px;
  background: #fff;
  color: #333;
  font-weight: normal;
  font-family: "メイリオ", "Meiryo", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link,
a:visited {
  color: #0098D8;
  text-decoration: underline;
  transition: 0.3s linear;
}

a:hover,
a:active {
  color: #0970C4;
  transition: 0.3s linear;
}

a:hover img.img_opacity {
  opacity: 0.75;
  transition: 0.2s linear;
}

a img.img_opacity {
  transition: 0.2s linear;
}

a:hover img.img_up {
  transform: translateY(-5px);
  transition: 0.3s linear;
}

a img.img_up {
  transition: 0.3s linear;
}

/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

figure a {
  display: block;
  width: 100%;
  height: 100%;
}

/****************************************

電話リンク設定

*****************************************/
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: none;
  }
}
/****************************************

FancyBox

*****************************************/
#fancybox-title {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #fancybox-title {
    font-size: 1.4rem;
  }
}

/****************************************

_variable.scss variable 変数

*****************************************/
/****************************************

_mixin.scss mixin

*****************************************/
/****************************************

_l-header.scss ヘッダー共通

*****************************************/
.l-header__inner {
  position: relative;
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-inline: auto;
  padding: 30px 190px 17px 0;
}
@media screen and (max-width: 1400px) {
  .l-header__inner {
    padding: 30px 170px 17px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    display: block;
    padding: 30px 10px;
  }
}
.l-header__logo {
  position: absolute;
  top: 25px;
  left: 35px;
  z-index: 999;
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .l-header__logo {
    top: 50px;
    left: 15px;
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    top: 10px;
    left: 10px;
    width: 120px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header-right {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-right {
    display: none;
  }
}
.l-header-right__aside {
  display: flex;
  flex-flow: nowrap column;
  align-items: flex-end;
}
.l-header-right__info {
  display: flex;
  flex-flow: nowrap row;
  gap: 0 20px;
}

.l-header-right-access {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  width: 160px;
  height: 150px;
}
@media screen and (max-width: 1400px) {
  .l-header-right-access {
    width: 150px;
  }
}
.l-header-right-access a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #872C2B;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.l-header-right-access a:is(:link, :visited) {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}
.l-header-right-access a:is(:hover, :active) {
  color: #fff;
  background: #96913E;
}
.l-header-right-access__img {
  position: absolute;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
.l-header-right-access__txt {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
}

/****************************************

pc用 横ナビ

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
#g_navi .menu {
  position: relative;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 1400px) {
  #g_navi .menu {
    gap: 0 30px;
  }
}

#g_navi .menu > li {
  position: relative;
}

#g_navi .menu li a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#g_navi .menu li a:is(:link, :visited) {
  color: #333;
}
#g_navi .menu li a:is(:hover, :active) {
  color: #333;
}

#sp_navi .menu-item a,
#sp_navi .sub-menu li a,
#g_navi .menu li a,
#g_navi .menu li ul li a {
  font-family: "Zen Old Mincho", serif;
}

/****************************************

pc用 プルダウンナビ

*****************************************/
#g_navi .menu li ul {
  width: 200px;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

#g_navi .menu li ul li {
  width: 100%;
  border-right: none;
  padding: 0;
}

#g_navi .menu li ul li a {
  width: 100%;
  display: block;
  padding: 15px 5px;
  border-top: 1px solid #ccc;
  font-size: 1.7rem;
  font-weight: normal;
  background: #872C2B;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
#g_navi .menu li ul li a:is(:link, :visited) {
  color: #fff;
}

#g_navi .menu li ul li a:hover {
  background: #96913E;
  color: #fff;
  opacity: 0.6;
  transition: 0.2s linear;
}

#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.9;
}

#g_navi .menu li ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/****************************************

pc用 ホバーの下線

*****************************************/
@media print, screen and (min-width: 768px) {
  .menu > li > a {
    padding: 0;
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  .menu > li > a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 2px;
    background-color: #872C2B;
    transition: 0.6s;
    transform: translateX(0%);
    opacity: 0;
  }
  .menu > li > a:after {
    bottom: 0;
  }
  .menu > li > a:hover:after {
    width: 100%;
    opacity: 1;
  }
}
/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_header,
  #sp_navi,
  #toggle {
    display: none;
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  #toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
    padding: 7px 8px;
    background: #96913E;
    border: 1px solid #fff;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggledivに対して*/
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 0;
  }
  #toggle span:nth-child(2) {
    top: 11px;
  }
  #toggle span:nth-child(3) {
    top: 22px;
  }
  .open_navi #toggle span {
    background: #fff;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    transform: translateY(-11px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background-color: #872C2B;
    opacity: 0.95;
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    transform: translateY(0);
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding-top: 80px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border-top: rgba(255, 255, 255, 0.4) 1px solid;
    cursor: pointer;
    color: #fff;
    margin: 0 auto;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #sp_navi .menu .menu-item:last-of-type {
    border-bottom: rgba(255, 255, 255, 0.4) 1px solid;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 15px 0 14px;
  }
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    background: rgba(255, 255, 255, 0.3);
  }
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu li a:hover {
    color: #ccc;
    background: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
}
/****************************************

メインビジュアル

*****************************************/
.metaslider {
  max-width: none !important;
}

#slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
#slider .l-mv-top__pic img {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  #slider .l-mv-top__pic img {
    left: calc(50% - 960px);
    width: 1920px;
  }
}
@media screen and (max-width: 767px) {
  #slider .l-mv-top__pic img {
    position: relative;
    left: -25%;
    width: 150%;
  }
}
#slider .l-mv-top__ttl {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #slider .l-mv-top__ttl {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: clamp(250px, 70vw, 400px);
    height: auto;
    aspect-ratio: 553/157;
  }
}
#slider .l-mv-top__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75px;
  z-index: 999;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #slider .l-mv-top__scroll {
    display: none;
  }
}
#slider .l-mv-top__scroll a {
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
#slider .l-mv-top__scroll a::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75px;
  z-index: 999;
  background: #fff;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.l-mv-page {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.l-mv-page__pic-img {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .l-mv-page__pic-img {
    left: calc(50% - 960px);
    width: 1920px;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__pic-img {
    position: relative;
    left: -25%;
    width: 150%;
  }
}
.l-mv-page__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--hotspring {
    width: auto;
    height: 28px;
    aspect-ratio: 131/46;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--hojodo {
    width: auto;
    height: 28px;
    aspect-ratio: 281/48;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--yoga {
    width: auto;
    height: 28px;
    aspect-ratio: 220/42;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--relaxation {
    width: auto;
    height: 28px;
    aspect-ratio: 344/42;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--restaurant {
    width: auto;
    height: 28px;
    aspect-ratio: 178/48;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--info {
    width: auto;
    height: 28px;
    aspect-ratio: 393/42;
  }
}

.metaslider .flex-control-nav {
  bottom: 40px !important;
}

.metaslider .flexslider {
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  .metaslider .flex-control-nav {
    bottom: -30px !important;
  }
  .metaslider .flex-control-nav {
    bottom: 15px !important;
  }
}
/****************************************

_l-main.scss メイン共通

*****************************************/
#main-top {
  width: 100%;
  margin-inline: auto;
}

#main-page {
  width: 100%;
  margin-inline: auto;
}

/*---------- 下層ページ ----------*/
.l-main-wrapper {
  max-width: 2560px;
  width: 100%;
  margin-inline: auto;
}
.l-main-wrapper__inner {
  max-width: 1220px;
  width: 100%;
  margin-inline: auto;
  padding: 0 10px 100px;
}
@media screen and (max-width: 767px) {
  .l-main-wrapper__inner {
    padding: 0 10px 60px;
  }
}

/****************************************

_l-breadcrumb.scss パンくず

*****************************************/
.breadcrumb_area {
  width: 100%;
  padding: 5px 0 45px;
}
@media screen and (max-width: 767px) {
  .breadcrumb_area {
    padding: 10px 0 20px;
  }
}

.breadcrumb .topicpath {
  text-align: right;
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 0em;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .breadcrumb .topicpath {
    text-align: left;
    font-size: 1.2rem;
  }
}

.breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.breadcrumb a:is(:link, :visited) {
  color: #333;
}
.breadcrumb a:is(:hover, :active) {
  color: #333;
}

.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform-origin: right top;
  transition: transform 0.3s;
  transform: scale(0, 1);
}

.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/****************************************

_l-bottom.scss ボトム共通

*****************************************/
.l-btm-sec__top {
  position: relative;
  padding: 100px 10px;
  background: url(images/btm_bg.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__top {
    padding: 60px 10px;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .l-btm-sec__top::before {
    display: block;
    content: "";
    position: absolute;
    width: 1400px;
    height: 100%;
    aspect-ratio: 1920/540;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(images/btm_bg.jpg) repeat-y;
    background-size: 1400px 393px;
    z-index: -999;
  }
}
.l-btm-sec__flex {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  gap: 0 60px;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__flex {
    flex-flow: nowrap column;
  }
}
@media screen and (max-width: 767px) {
  .l-btm-sec__fig250 {
    margin: 0 auto 10px;
    max-width: 250px;
  }
}
.l-btm-sec__account {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__account {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.l-btm-sec__btm {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__btm {
    height: 250px;
  }
}
.l-btm-sec__btm iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(50%);
}

.l-btm-sec-ttl {
  text-align: center;
  margin-bottom: 45px;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-btm-sec-ttl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
}
.l-btm-sec-ttl .inner {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-btm-sec-ttl .inner {
    font-size: 1.8rem;
  }
}
.l-btm-sec-ttl .red {
  color: #732D2D;
}

/****************************************

_l-footer.scss フッター共通

*****************************************/
.l-footer {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-bottom: 60px;
  }
}
.l-footer__wrapper {
  background: url(images/footer_bg.jpg) no-repeat center top;
  background-size: cover;
}
.l-footer__inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 10px 50px 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 30px 10px;
  }
}

.l-footer-pc {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
}
.l-footer-pc__left {
  width: 480px;
}
.l-footer-pc__right {
  width: 660px;
}

.l-footer__logo {
  display: inline-block;
  margin-bottom: 15px;
}
.l-footer__logo a {
  display: block;
}
.l-footer__info {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #96917E;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    flex-flow: nowrap column;
  }
}
.l-footer__info-left {
  width: 90px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6B1F1F;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-footer__info-left {
    width: 100%;
    font-size: 1.4rem;
  }
}
.l-footer__info-right {
  width: calc(100% - 90px);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-footer__info-right {
    width: 100%;
    font-size: 1.4rem;
  }
}
.l-footer__aside {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 25px;
  margin-top: 30px;
}

.l-footer-sitemap-txt {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 25px;
  font-family: "EB Garamond", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #322C25;
  letter-spacing: 0.06em;
}
.l-footer-sitemap-txt::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid #94928D;
  width: auto;
  height: 1px;
  margin-top: 10px;
  margin-left: 30px;
}

/* ----------- コピーライト ----------- */
.l-footer-copyright {
  padding: 17px 10px;
  background: #6B2121;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.07em;
  overflow-wrap: break-word !important;
  word-break: break-all !important;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    padding: 5px 10px;
    font-size: 1.2em;
  }
}
.l-footer-copyright__txt {
  display: inline-block;
}

/* ----------- ページトップ ----------- */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 9999;
  display: none;
}
@media screen and (max-width: 767px) {
  .pagetop {
    display: none !important;
  }
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    display: none !important;
  }
}

.l-footer-sitemap {
  display: flex;
  flex-flow: nowrap row;
  gap: 0 35px;
}
@media screen and (max-width: 767px) {
  .l-footer-sitemap {
    display: none;
  }
}
.l-footer-sitemap__cat {
  margin-bottom: 20px;
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #6B2020;
  letter-spacing: 0.07em;
  line-height: 1;
}
.l-footer-sitemap__cat a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-footer-sitemap__cat a:is(:link, :visited) {
  color: #872C2B;
}
.l-footer-sitemap__cat a:is(:hover, :active) {
  color: #872C2B;
}
.l-footer-sitemap__cat a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #872C2B;
  transition: all 0.3s ease-in-out;
}
.l-footer-sitemap__cat a:hover::before {
  width: 100%;
}
.l-footer-sitemap__page {
  position: relative;
  margin-bottom: 5px;
  padding-left: 10px;
}
.l-footer-sitemap__page::before {
  display: block;
  content: "";
  position: absolute;
  width: 4px;
  height: auto;
  aspect-ratio: 4/7;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(images/sitemap_arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
.l-footer-sitemap__page a {
  white-space: nowrap;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.l-footer-sitemap-local__list {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer-sitemap-local__list {
    display: none;
  }
}
.l-footer-sitemap-local__page {
  padding: 0 10px;
  height: 20px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  line-height: 20px;
}
.l-footer-sitemap-local__page a {
  font-size: 1.6rem;
}
.l-footer-sitemap-local__page:first-child {
  border-left: none;
}
.l-footer-sitemap-local__page:last-child {
  border-right: none;
}
.l-footer-sitemap-local__page + .l-footer-sitemap-local__page {
  border-left: none;
}

.l-footer-link a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-footer-link a:is(:link, :visited) {
  color: #333;
}
.l-footer-link a:is(:hover, :active) {
  color: #872C2B;
}
.l-footer-link a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #872C2B;
  transition: all 0.3s ease-in-out;
}
.l-footer-link a:hover::before {
  width: 100%;
}

/* ----------- フローティングバナー----------- */
@media screen and (max-width: 767px) {
  .sp_btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
  }
  .sp_btn_list {
    display: flex;
    height: 60px;
    background: #872C2B;
    border-top: 1px solid #fff;
  }
  .sp_btn_list_item {
    position: relative;
    width: 25%;
    height: 100%;
    line-height: 1.6;
  }
  .sp_btn_list_item a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 0 5px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .sp_btn_list_item a:link, .sp_btn_list_item a:visited, .sp_btn_list_item a:hover, .sp_btn_list_item a:active {
    color: #fff;
  }
  .sp_btn_list_item_icon_01,
  .sp_btn_list_item_icon_02,
  .sp_btn_list_item_icon_03,
  .sp_btn_list_item_icon_04 {
    position: relative;
    display: block;
    margin: auto 0 0;
  }
  .sp_btn_list_item_icon_01::after,
  .sp_btn_list_item_icon_02::after,
  .sp_btn_list_item_icon_03::after,
  .sp_btn_list_item_icon_04::after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
  }
  .sp_btn_list_item_icon_01::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_line_white.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_02::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_insta_white.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_03::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_mail.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_04::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_arrow.svg);
    background-size: 18px;
  }
}
/****************************************

_l-single.scss 投稿詳細ページ

*****************************************/
.l-single-sec {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .l-single-sec {
    margin: 20px auto 0;
  }
}
.l-single-sec__ttl {
  margin-bottom: 15px;
}
.l-single-sec__txt img {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}

.pager {
  clear: both;
  text-align: center;
  margin: 50px auto 0;
  padding-bottom: 10px;
}
.pager a {
  text-decoration: none;
}
.pager a:is(:link, :visited) {
  color: #872C2B;
  border: 1px solid #872C2B;
}
.pager a:is(:hover, :active) {
  color: #fff;
  border: 1px solid #872C2B;
  background: #872C2B;
}

a.page-numbers {
  background: #fff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
}

.pager .current {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: #96913E;
  border: solid 1px #96913E;
  color: white;
}

@media screen and (max-width: 767px) {
  a.page-numbers,
  .pager .current {
    font-size: 1.3rem;
  }
}

.nav-below {
  margin: 60px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .nav-below {
    margin: 30px 0 20px;
  }
}

.nav-below a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .nav-below a {
    margin: 0 10px;
  }
}
.nav-below a:is(:link, :visited) {
  color: #333;
}
.nav-below a:is(:hover, :active) {
  color: #872C2B;
}
.nav-below a::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 0;
  height: 1px;
  background: #872C2B;
  transition: 0.6s;
  left: 0;
}
.nav-below a:hover::before {
  width: 100%;
  opacity: 0.9;
}

.aligncenter {
  display: block;
}

/****************************************

_c-button.scss ボタン共通

*****************************************/
/*---------------------button共通*/
.c-btn a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
}

/*---------------------buttonトップ、下層*/
.c-btn01 a {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.07em;
  text-align: left;
  outline: rgba(249, 249, 248, 0.4) 1px solid;
  outline-offset: -5px;
}
@media screen and (max-width: 767px) {
  .c-btn01 a {
    font-size: 1.4rem;
  }
}
.c-btn01 a::after {
  display: block;
  content: "";
  position: absolute;
  width: 7px;
  height: auto;
  aspect-ratio: 7/13;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(images/btn-arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}

.c-btn01--red a {
  background: #872C2B;
}
.c-btn01--red a:hover {
  background: #96913E;
}

.c-btn01--green a {
  background: #00B900;
}
.c-btn01--green a:hover {
  background: #96913E;
}

.c-btn01--top-sec02 {
  margin: 50px auto 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec02 {
    width: 250px;
  }
}
.c-btn01--top-sec02 a {
  padding: 20px 10px 20px 35px;
}

.c-btn01--top-sec04 {
  margin: 40px auto 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec04 {
    margin: 30px auto 0;
    width: 250px;
  }
}
.c-btn01--top-sec04 a {
  padding: 20px 10px 20px 35px;
}

.c-btn01--top-sec05,
.c-btn01--top-sec06 {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec05,
  .c-btn01--top-sec06 {
    width: 250px;
  }
}
.c-btn01--top-sec05 a,
.c-btn01--top-sec06 a {
  padding: 20px 10px 20px 35px;
}

.c-btn01--btm {
  margin: 40px 0 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c-btn01--btm {
    margin: 30px auto 0;
    width: 250px;
  }
}
.c-btn01--btm a {
  padding: 20px 10px 20px 35px;
}

/****************************************

_c-title.scss 見出し共通

*****************************************/
.c-headline {
  position: relative;
  margin-bottom: 85px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .c-headline {
    margin-bottom: 60px;
    font-size: 2.2rem;
  }
}
.c-headline::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/8;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/headline_bg.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .c-headline::after {
    bottom: -20px;
  }
}

.c-ttl01 {
  position: relative;
  padding: 0 0 10px 50px;
  border-bottom: 1px solid #c1c0bd;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .c-ttl01 {
    padding: 0 0 5px 35px;
    font-size: 1.8rem;
  }
}
.c-ttl01::before {
  display: block;
  content: "";
  position: absolute;
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  top: -5px;
  left: 0;
  background: url(images/c_ttl01.png) no-repeat center top;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .c-ttl01::before {
    top: 0px;
    width: 25px;
  }
}

.c-ttl02 {
  position: relative;
  padding: 0 0 10px 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #322C25;
  line-height: 1.5 !important;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-ttl02 {
    padding: 0 0 10px 10px;
    font-size: 1.7rem;
  }
}
.c-ttl02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #c4787e, #c4787e 4px, transparent 4px, transparent 6px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  left: 0;
  bottom: 0;
}

/****************************************

_c-flex.scss 見出し、テキスト、画像のセット

ブログページなど、PHP専用

*****************************************/
.c-flex {
  flex-flow: row wrap;
}

.c-flex-r {
  flex-flow: row-reverse wrap;
}

.c-flex,
.c-flex-r {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-flex,
  .c-flex-r {
    flex-flow: column-reverse wrap;
    align-items: center;
  }
}
.c-flex__txt720,
.c-flex-r__txt720 {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .c-flex__txt720,
  .c-flex-r__txt720 {
    margin-top: 10px;
    width: 100%;
  }
}
.c-flex__fig440,
.c-flex-r__fig440 {
  max-width: 440px;
  width: 100%;
}

/****************************************

_c-flex.scss 見出し、テキスト、画像のセット

エレメンター専用

*****************************************/
.c-flex {
  flex-flow: row wrap;
}

.c-flex-r {
  flex-flow: row-reverse wrap;
}

.c-flex,
.c-flex-r {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-flex,
  .c-flex-r {
    flex-flow: column-reverse wrap;
    align-items: center;
  }
}
.c-flex .txt720,
.c-flex-r .txt720 {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .c-flex .txt720,
  .c-flex-r .txt720 {
    margin-top: 10px;
    width: 100%;
  }
}
.c-flex .fig440,
.c-flex-r .fig440 {
  max-width: 440px;
  width: 100%;
}

/****************************************

_c-column.scss カラム共通

*****************************************/
/****************************************

_c-post.scss 投稿共通

*****************************************/
.c-post-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .c-post-list {
    gap: 40px 10px;
  }
}
.c-post-list .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .c-post-list .item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .c-post-list .item {
    width: calc((100% - 10px) / 2);
  }
}
.c-post-list .fig440 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 440/310;
  margin-bottom: 10px;
}
.c-post-list .fig440 a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-post-list .fig440 a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/****************************************

_c-table.scss テーブル共通

*****************************************/
.c-table {
  display: table;
  width: 100%;
}
.c-table tbody {
  display: table;
  width: 100%;
}
.c-table tbody th {
  background: #fff;
  font-weight: normal;
  text-align: center;
}
.c-table tbody tr > td:first-of-type {
  background: #fff;
  text-align: left;
}
.c-table tbody tr > td:nth-of-type(2) {
  background: #f9f8f5;
  text-align: center;
}
.c-table tbody th,
.c-table tbody td {
  border: 1px solid #686867;
  padding: 15px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table tbody th,
  .c-table tbody td {
    padding: 10px 10px;
  }
}

/*---------- pages-table ----------*/
.p-care-sec01-table tbody th,
.p-scrub-sec01-table tbody th {
  width: 13.8888888889%;
  white-space: nowrap;
}
.p-care-sec01-table tbody tr > td:first-of-type,
.p-scrub-sec01-table tbody tr > td:first-of-type {
  width: 66.6666666667%;
}
.p-care-sec01-table tbody tr > td:nth-of-type(2),
.p-scrub-sec01-table tbody tr > td:nth-of-type(2) {
  width: 19.4444444444%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-care-sec01-table tbody tr > td:nth-of-type(2),
  .p-scrub-sec01-table tbody tr > td:nth-of-type(2) {
    text-align: right;
  }
}

.p-restaurant-sec02-table tbody th {
  width: 14.1666666667%;
  white-space: nowrap;
}
.p-restaurant-sec02-table tbody tr > td:first-of-type {
  width: 69.1666666667%;
}
.p-restaurant-sec02-table tbody tr > td:nth-of-type(2) {
  width: 16.6666666667%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec02-table tbody tr > td:nth-of-type(2) {
    text-align: right;
  }
}

/****************************************

_c-common.scss 全ページ共通

*****************************************/
.c-tel {
  text-align: center;
}
.c-tel a {
  pointer-events: auto;
  text-decoration: none;
  color: #333;
}
.c-tel .inner {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-tel .inner {
    padding-left: 25px;
    font-size: 2.5rem;
  }
}
.c-tel .inner::after {
  display: block;
  content: "";
  position: absolute;
  width: auto;
  height: 25px;
  aspect-ratio: 20/25;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(images/c_tel.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .c-tel .inner::after {
    height: 22px;
  }
}

.c-tel--contact {
  margin: 30px auto;
}

/****************************************

_el-reset.scss リセットCSS（エレメンター）

*****************************************/
.elementor-widget:not(:last-child) {
  margin-bottom: 0px;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none;
}

.elementor-widget-wrap > .elementor-element {
  width: 100%;
}

/****************************************

ボタン

*****************************************/
.elementor-16 .elementor-element.elementor-element-b80e8aa .elementor-button {
  width: 100%;
}

.elementor-16 .elementor-element.elementor-element-b80e8aa .elementor-button {
  text-shadow: none !important;
}

.elementor-button {
  border-radius: 0px;
}

/****************************************

_el-title.scss 見出し共通（エレメンター）

*****************************************/
/** トップ **/
.el-top-sec01-ttl .elementor-heading-title {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .el-top-sec01-ttl .elementor-heading-title {
    margin-bottom: 20px;
  }
}
.el-top-sec01-ttl .elementor-heading-title .en {
  margin-bottom: 20px;
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #B2A98C;
  letter-spacing: 0.07em;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec01-ttl .elementor-heading-title .en {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
.el-top-sec01-ttl .elementor-heading-title .jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec01-ttl .elementor-heading-title .jp {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
}
.el-top-sec01-ttl .elementor-heading-title .red {
  color: #732D2D;
}

.el-top-sec02-ttl .elementor-heading-title {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  align-items: flex-end;
  gap: 0 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .el-top-sec02-ttl .elementor-heading-title {
    margin-bottom: 30px;
  }
}
.el-top-sec02-ttl .elementor-heading-title .en {
  position: relative;
  font-size: 5.6rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec02-ttl .elementor-heading-title .en {
    font-size: 3rem;
  }
}
.el-top-sec02-ttl .elementor-heading-title .en::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  bottom: 0px;
  right: -20px;
  background: url(images/top_sec02_ttl_bg.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .el-top-sec02-ttl .elementor-heading-title .en::after {
    width: 20px;
    right: -8px;
  }
}
.el-top-sec02-ttl .elementor-heading-title .jp {
  font-size: 1.5rem;
  font-weight: normal;
  color: #6E6B67;
  letter-spacing: 0;
  line-height: 1.8 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec02-ttl .elementor-heading-title .jp {
    font-size: 1.8rem;
    line-height: 1.2 !important;
  }
}
.el-top-sec02-ttl .elementor-heading-title .red {
  color: #732D2D;
}

.el-top-sec03-ttl .elementor-heading-title {
  margin-bottom: 65px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec03-ttl .elementor-heading-title {
    font-size: 2.2rem;
  }
}
.el-top-sec03-ttl .elementor-heading-title .red {
  color: #732D2D;
}

.el-top-sec04-ttl .elementor-heading-title,
.el-top-sec05-ttl .elementor-heading-title,
.el-top-sec06-ttl .elementor-heading-title {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
  font-size: 3.8rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec04-ttl .elementor-heading-title,
  .el-top-sec05-ttl .elementor-heading-title,
  .el-top-sec06-ttl .elementor-heading-title {
    margin-bottom: 50px;
    font-size: 2.2rem;
  }
}
.el-top-sec04-ttl .elementor-heading-title::after,
.el-top-sec05-ttl .elementor-heading-title::after,
.el-top-sec06-ttl .elementor-heading-title::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/8;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/headline_bg.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .el-top-sec04-ttl .elementor-heading-title::after,
  .el-top-sec05-ttl .elementor-heading-title::after,
  .el-top-sec06-ttl .elementor-heading-title::after {
    bottom: -25px;
  }
}

.el-top-sec07-ttl .elementor-heading-title {
  margin-bottom: 25px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .el-top-sec07-ttl .elementor-heading-title {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}

/** 下層 **/
.el-headline .elementor-heading-title {
  position: relative;
  margin-bottom: 85px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .el-headline .elementor-heading-title {
    margin-bottom: 60px;
    font-size: 2.2rem;
  }
}
.el-headline .elementor-heading-title::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/8;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/headline_bg.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .el-headline .elementor-heading-title::after {
    bottom: -20px;
  }
}

.el-ttl01 .elementor-heading-title {
  position: relative;
  padding: 0 0 10px 50px;
  border-bottom: 1px solid #c1c0bd;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .el-ttl01 .elementor-heading-title {
    padding: 0 0 5px 35px;
    font-size: 1.8rem;
  }
}
.el-ttl01 .elementor-heading-title::before {
  display: block;
  content: "";
  position: absolute;
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
  top: -5px;
  left: 0;
  background: url(images/c_ttl01.png) no-repeat center top;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .el-ttl01 .elementor-heading-title::before {
    top: 0px;
    width: 25px;
  }
}

.el-ttl02 .elementor-heading-title {
  position: relative;
  padding: 0 0 10px 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #322C25;
  line-height: 1.5 !important;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .el-ttl02 .elementor-heading-title {
    padding: 0 0 10px 10px;
    font-size: 1.7rem;
  }
}
.el-ttl02 .elementor-heading-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #c4787e, #c4787e 4px, transparent 4px, transparent 6px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  left: 0;
  bottom: 0;
}

/****************************************

_el-button.scss ボタン共通（エレメンター）

*****************************************/
/*---------------------button共通*/
.el-btn .elementor-widget-container .elementor-button-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
  line-height: 1.5 !important;
}

/*---------------------buttonトップ、下層*/
.el-btn01 .elementor-widget-container .elementor-button-wrapper a {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.07em;
  text-align: left;
  outline: rgba(249, 249, 248, 0.4) 1px solid;
  outline-offset: -5px;
}
@media screen and (max-width: 767px) {
  .el-btn01 .elementor-widget-container .elementor-button-wrapper a {
    font-size: 1.4rem;
  }
}
.el-btn01 .elementor-widget-container .elementor-button-wrapper a::after {
  display: block;
  content: "";
  position: absolute;
  width: 7px;
  height: auto;
  aspect-ratio: 7/13;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(images/btn-arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}

.el-btn01--red .elementor-widget-container .elementor-button-wrapper a {
  background: #872C2B;
}
.el-btn01--red .elementor-widget-container .elementor-button-wrapper a:hover {
  background: #96913E;
}

.el-btn01--green .elementor-widget-container .elementor-button-wrapper a {
  background: #00B900;
}
.el-btn01--green .elementor-widget-container .elementor-button-wrapper a:hover {
  background: #96913E;
}

.el-btn01--top-sec02 {
  margin: 50px auto 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .el-btn01--top-sec02 {
    width: 250px;
  }
}
.el-btn01--top-sec02 .elementor-widget-container .elementor-button-wrapper a {
  padding: 20px 10px 20px 35px;
}

.el-btn01--top-sec04 {
  margin: 40px auto 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .el-btn01--top-sec04 {
    margin: 30px auto 0;
    width: 250px;
  }
}
.el-btn01--top-sec04 .elementor-widget-container .elementor-button-wrapper a {
  padding: 20px 10px 20px 35px;
}

.el-btn01--top-sec05,
.el-btn01--top-sec06 {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .el-btn01--top-sec05,
  .el-btn01--top-sec06 {
    width: 250px;
  }
}
.el-btn01--top-sec05 .elementor-widget-container .elementor-button-wrapper a,
.el-btn01--top-sec06 .elementor-widget-container .elementor-button-wrapper a {
  padding: 20px 10px 20px 35px;
}

.el-btn01--btm {
  margin: 40px 0 0;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .el-btn01--btm {
    margin: 30px auto 0;
    width: 250px;
  }
}
.el-btn01--btm .elementor-widget-container .elementor-button-wrapper a {
  padding: 20px 10px 20px 35px;
}

/****************************************

_c-column.scss カラム共通

*****************************************/
/****************************************

_el-flex.scss 見出し、テキスト、画像のセット（エレメンター）

*****************************************/
.el-flex .elementor-container {
  flex-flow: row wrap;
}

.el-flex-r .elementor-container {
  flex-flow: row-reverse wrap;
}

.el-flex .elementor-container,
.el-flex-r .elementor-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .el-flex .elementor-container,
  .el-flex-r .elementor-container {
    flex-flow: column-reverse wrap;
    align-items: center;
  }
}
.el-flex .elementor-container .txt720,
.el-flex-r .elementor-container .txt720 {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .el-flex .elementor-container .txt720,
  .el-flex-r .elementor-container .txt720 {
    margin-top: 10px;
    width: 100%;
  }
}
.el-flex .elementor-container .fig440,
.el-flex-r .elementor-container .fig440 {
  max-width: 440px;
  width: 100%;
}

/****************************************

_el-faq.scss よくある質問（アコーディオン）（エレメンター）

*****************************************/
.elementor-accordion .elementor-tab-title {
  margin-bottom: 20px !important;
  padding: 0px 20px 15px 20px !important;
  border-bottom-color: #c1c0bd !important;
  border-bottom: 1px solid #c1c0bd !important;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-tab-title {
    margin-bottom: 15px !important;
    padding: 0 30px 15px 0 !important;
  }
}

.elementor-accordion .elementor-tab-title a {
  position: relative;
  display: block;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold !important;
  font-size: 2.4rem !important;
  color: #322d25 !important;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-tab-title a {
    font-size: 1.6rem !important;
    padding: 0 20px 0 45px;
  }
}

.elementor-accordion .elementor-tab-title a::before {
  position: absolute;
  content: "Q";
  left: 0;
  top: -4px;
  width: 36px;
  height: 36px;
  line-height: 30px;
  border: 4px solid #0d127e;
  box-sizing: content-box;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #322d25;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-tab-title a::before {
    top: -6px;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 3px solid #0d127e;
    font-size: 1.6rem;
  }
}

.elementor-accordion .elementor-tab-content {
  position: relative;
  border-top: none !important;
}

.elementor-accordion .elementor-tab-content::before {
  position: absolute;
  content: "A";
  left: 20px;
  top: 0px;
  width: 36px;
  height: 36px;
  line-height: 34px;
  border: 4px solid #872c2b;
  box-sizing: content-box;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #322d25;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-tab-content::before {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 3px solid #872c2b;
    font-size: 1.6rem;
  }
}

.elementor-accordion .elementor-tab-content P {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-tab-content P {
    font-size: 1.4rem;
  }
}

.elementor-accordion-item {
  margin-bottom: 20px;
}

.elementor-accordion div:last-child {
  margin-bottom: 0;
}

.elementor-accordion .elementor-accordion-item {
  padding: 30px;
  background: #f9f8f5;
}
@media screen and (max-width: 767px) {
  .elementor-accordion .elementor-accordion-item {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 767px) {
  .elementor-accordion-icon-right {
    position: relative;
    top: 10px;
  }
}

/****************************************

_el-table.scss テーブル共通（エレメンター）

*****************************************/
/**border,padding,width,fontなどの設定は案件によって変更する**/
/**ボーダーの指定 ul 上左右**/
.el-table .elementor-price-list {
  border-left: 1px solid #686867;
  /**案件ごとに変更**/
  border-right: 1px solid #686867;
  /**案件ごとに変更**/
  border-top: 1px solid #686867;
  /**案件ごとに変更**/
}

/**ボーダーの指定 li 下**/
.el-table .elementor-price-list li {
  border-bottom: 1px solid #686867;
  /**案件ごとに変更**/
}

/**ボーダーの指定 th 右**/
.el-table .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  border-right: 1px solid #686867;
  /**案件ごとに変更**/
}

/**デフォルトで入っているliに対しての下の余白を削除**/
.el-table .elementor-price-list li {
  margin-bottom: 0 !important;
}

/**aリンクいらないので無効化**/
.el-table .elementor-price-list li a {
  align-items: inherit;
  pointer-events: none;
  text-decoration: none;
}

/** tr **/
.el-table .elementor-price-list .elementor-price-list-item .elementor-price-list-text {
  flex-wrap: revert !important;
  align-items: revert !important;
}

/**th td 共通指定**/
.el-table .elementor-price-list .elementor-price-list-item .elementor-price-list-header,
.el-table .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  padding: 18px 20px;
  font-size: 1.6rem !important;
  /**案件ごとに変更**/
  line-height: 1.5 !important;
  letter-spacing: 0.12em !important;
  /**案件ごとに変更**/
}

/** th **/
.el-table .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  margin-bottom: 0 !important;
  align-items: stretch;
  max-width: 100% !important;
  color: #333333;
}

/** th span **/
.el-table .elementor-price-list li a .elementor-price-list-header .elementor-price-list-title {
  display: block;
  max-width: 100%;
  width: 100%;
}

/** td **/
.el-table .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  display: block;
  font-weight: normal;
  color: #333333;
}

/**thとtdの間のタグいらないので削除**/
.el-table .elementor-price-list li a .elementor-price-list-header .elementor-price-list-separator {
  display: none;
}

@media screen and (max-width: 767px) {
  /******ここでテーブルを縦にする*****/
  /**th td 共通指定**/
  .el-table .elementor-price-list .elementor-price-list-item .elementor-price-list-header,
  .el-table .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    padding: 10px 10px;
    font-size: 1.4rem !important;
  }
  /** th **/
  /** td **/
}
/* ───────────────────────────────
ホットヨガ
   ─────────────────────────────── */
/** th **/
.el-table--yoga .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #f9f8f5;
  /**案件ごとに変更**/
  font-weight: bold;
  /**案件ごとに変更**/
}

/** td **/
.el-table--yoga .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #fff;
  /**案件ごとに変更**/
}

.el-table--yoga {
  width: 100%;
}

/** th **/
.el-table--yoga .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 29.1666666667% !important;
}

/** td **/
.el-table--yoga .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 70.8333333333% !important;
}

@media screen and (max-width: 767px) {
  /******ここでテーブルを縦にする*****/
  .el-table--yoga .elementor-price-list .elementor-price-list-item .elementor-price-list-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /** th **/
  .el-table--yoga .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #686867;
  }
  /** td **/
  .el-table--yoga .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    width: 100%;
  }
}
/* ───────────────────────────────
ボディケアルーム 夢殿
   ─────────────────────────────── */
/** th **/
.el-table--care .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #fff;
  /**案件ごとに変更**/
  font-weight: normal;
  /**案件ごとに変更**/
}

/** td **/
.el-table--care .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #f9f8f5;
  /**案件ごとに変更**/
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el-table--care .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    text-align: right;
  }
}

.el-table--care {
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .el-table--care {
    max-width: initial;
  }
}

/** th **/
.el-table--care .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 80.5555555556% !important;
}
@media screen and (max-width: 767px) {
  .el-table--care .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
    flex-basis: 65% !important;
  }
}

/** td **/
.el-table--care .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 19.4444444444% !important;
}
@media screen and (max-width: 767px) {
  .el-table--care .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    flex-basis: 35% !important;
  }
}

/* ───────────────────────────────
お食事処
   ─────────────────────────────── */
/** th **/
.el-table--restaurant .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #fff;
  /**案件ごとに変更**/
  font-weight: normal;
  /**案件ごとに変更**/
}

/** td **/
.el-table--restaurant .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #f9f8f5;
  /**案件ごとに変更**/
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el-table--restaurant .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    text-align: right;
  }
}

.el-table--restaurant {
  max-width: 580px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .el-table--restaurant {
    max-width: initial;
  }
}

/** th **/
.el-table--restaurant .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 74.1379310345% !important;
}

/** td **/
.el-table--restaurant .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 25.8620689655% !important;
}

/* ───────────────────────────────
ご利用案内（入浴料、販売・レンタル）
   ─────────────────────────────── */
/** th **/
.el-table--guide01 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #fff;
  /**案件ごとに変更**/
  font-weight: normal;
  /**案件ごとに変更**/
}

/** td **/
.el-table--guide01 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #f9f8f5;
  /**案件ごとに変更**/
}
@media screen and (max-width: 767px) {
  .el-table--guide01 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    text-align: right;
  }
}

.el-table--guide01 {
  width: 100%;
}

/** th **/
.el-table--guide01 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 66.6666666667% !important;
}
@media screen and (max-width: 767px) {
  .el-table--guide01 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
    flex-basis: 62% !important;
  }
}

/** td **/
.el-table--guide01 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 33.3333333333% !important;
}
@media screen and (max-width: 767px) {
  .el-table--guide01 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    flex-basis: 38% !important;
  }
}

/* ───────────────────────────────
ご利用案内（営業時間・定休日）
   ─────────────────────────────── */
/** th **/
.el-table--guide02 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #f9f8f5;
  /**案件ごとに変更**/
  font-weight: normal;
  /**案件ごとに変更**/
}

/** td **/
.el-table--guide02 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #fff;
  /**案件ごとに変更**/
}

.el-table--guide02 {
  width: 100%;
}

/** th **/
.el-table--guide02 .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 25% !important;
}

/** td **/
.el-table--guide02 .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 75% !important;
}

/* ───────────────────────────────
施設概要
   ─────────────────────────────── */
/** th **/
.el-table--overview .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  background: #f9f8f5;
  /**案件ごとに変更**/
  font-weight: normal;
  /**案件ごとに変更**/
}

/** td **/
.el-table--overview .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  background: #fff;
  /**案件ごとに変更**/
}

.el-table--overview {
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .el-table--overview {
    max-width: initial;
  }
}

/** th **/
.el-table--overview .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
  flex-basis: 25% !important;
}

/** td **/
.el-table--overview .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
  flex-basis: 75% !important;
}

@media screen and (max-width: 767px) {
  /******ここでテーブルを縦にする*****/
  .el-table--overview .elementor-price-list .elementor-price-list-item .elementor-price-list-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /** th **/
  .el-table--overview .elementor-price-list .elementor-price-list-item .elementor-price-list-header {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #686867;
  }
  /** td **/
  .el-table--overview .elementor-price-list .elementor-price-list-item p.elementor-price-list-description {
    width: 100%;
  }
}
/****************************************

_el-others.scss その他（エレメンター）

*****************************************/
/** section **/
/** p **/
/** figure **/
/**  ul　（アイコンリスト） **/
/**  ul　（内部セクションを複製して、CSSで作るリスト） **/
/****************************************

_el-common.scss 全ページ共通（エレメンター）

*****************************************/
/****************************************

_el-others.scss トップページ（エレメンター）

*****************************************/
.p-top-sec01 {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  background: url(images/top_sec01_bg_pc.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-sec01 {
    position: relative;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec01::before {
    display: block;
    content: "";
    position: absolute;
    max-width: 200px;
    width: 45%;
    height: auto;
    aspect-ratio: 517/475;
    top: 0;
    left: 0;
    background: url(images/top_sec01_bg01_sp.png) no-repeat;
    background-size: 100%;
    z-index: -999;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec01::after {
    display: block;
    content: "";
    position: absolute;
    max-width: 200px;
    width: 45%;
    height: auto;
    aspect-ratio: 485/514;
    bottom: 0;
    right: 0;
    background: url(images/top_sec01_bg02_sp.png) no-repeat;
    background-size: 100%;
    z-index: -999;
  }
}
.p-top-sec01 .inner {
  position: relative;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 10px 130px;
}
@media screen and (max-width: 767px) {
  .p-top-sec01 .inner {
    padding: 60px 10px 60px;
  }
}
.p-top-sec01 .inner::before {
  display: block;
  content: "";
  position: absolute;
  width: 470px;
  height: auto;
  aspect-ratio: 470/650;
  top: 70px;
  left: -540px;
  background: url(images/top_sec01_left_pc.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
.p-top-sec01 .inner::after {
  display: block;
  content: "";
  position: absolute;
  width: 457px;
  height: auto;
  aspect-ratio: 457/517;
  top: 60px;
  right: -540px;
  background: url(images/top_sec01_right_pc.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
.p-top-sec01 .txt {
  text-align: center;
  line-height: 2.3 !important;
}
@media screen and (max-width: 767px) {
  .p-top-sec01 .txt {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec01 .pic {
    margin: 20px auto 0;
    max-width: 440px;
  }
}

.p-top-sec02-03-outer {
  position: relative;
  padding: 90px 10px 100px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-03-outer {
    padding: 60px 10px;
  }
}
.p-top-sec02-03-outer::before {
  display: block;
  content: "";
  position: absolute;
  width: 1920px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/top_sec02_03_bg.jpg) no-repeat;
  background-size: cover;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-03-outer::before {
    width: 1400px;
    height: 100%;
    left: -170px;
    transform: translateX(0%);
    background: url(images/top_sec02_03_bg.jpg) repeat-y;
    background-size: 1400px 998px;
  }
}

.p-top-sec02 .elementor-container {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02 .elementor-container {
    flex-flow: nowrap column;
    align-items: center;
    gap: 60px 0;
  }
}
.p-top-sec02 .elementor-container .left,
.p-top-sec02 .elementor-container .right {
  width: 580px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02 .elementor-container .left,
  .p-top-sec02 .elementor-container .right {
    width: 100%;
  }
}

.p-top-sec03 {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 100px auto 0;
  padding: 60px 10px;
  border-top: 7px solid #872C2B;
  box-shadow: 0px 0px 15px rgba(27, 7, 7, 0.2);
}
@media screen and (max-width: 767px) {
  .p-top-sec03 {
    margin: 80px auto 0;
    padding: 40px 10px;
  }
}
.p-top-sec03::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FDFDFC;
  z-index: -888;
}
.p-top-sec03::after {
  display: block;
  content: "";
  position: absolute;
  width: 599px;
  height: auto;
  aspect-ratio: 599/492;
  bottom: 0;
  right: 0;
  background: url(images/top_sec03_bg.png) no-repeat;
  background-size: 100%;
  z-index: -777;
}
@media screen and (max-width: 767px) {
  .p-top-sec03::after {
    width: 80%;
  }
}

.p-top-sec03-list {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list {
    flex-flow: wrap row;
    justify-content: center;
    gap: 45px 10px;
  }
}
.p-top-sec03-list__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 255px;
  width: 100%;
  min-height: 170px;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__item {
    width: calc((100% - 10px) / 2);
    min-height: 140px;
    height: auto;
    aspect-ratio: 255/170;
  }
}
.p-top-sec03-list__item--yellow {
  background: #F5F4EC;
  border: 4px solid #CECBA6;
}
.p-top-sec03-list__item--red {
  background: #F8EFEF;
  border: 4px solid #DBAEAF;
}
.p-top-sec03-list__item--blue {
  background: #F1F5F8;
  border: 4px solid #A4C0CE;
}
.p-top-sec03-list__item--green {
  background: #F0F7F0;
  border: 4px solid #A7CEA4;
}
.p-top-sec03-list__num {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50vh;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__num {
    width: 50px;
  }
}
.p-top-sec03-list__num .inner {
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1 !important;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__num .inner {
    font-size: 2rem;
  }
}
.p-top-sec03-list__num--yellow {
  background: #96913E;
}
.p-top-sec03-list__num--red {
  background: #B75E60;
}
.p-top-sec03-list__num--blue {
  background: #3E7695;
}
.p-top-sec03-list__num--green {
  background: #589B55;
}
.p-top-sec03-list__txt {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  letter-spacing: 0;
}
.p-top-sec03-list__txt .small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__txt .small {
    font-size: 1.6rem;
  }
}
.p-top-sec03-list__txt .middle {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__txt .middle {
    font-size: 2.2rem;
  }
}
.p-top-sec03-list__txt .big {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-list__txt .big {
    font-size: 1.6rem;
  }
}
.p-top-sec03-list__txt--yellow .num,
.p-top-sec03-list__txt--yellow .day,
.p-top-sec03-list__txt--yellow .event {
  color: #878133;
}
.p-top-sec03-list__txt--red .num,
.p-top-sec03-list__txt--red .day,
.p-top-sec03-list__txt--red .event {
  color: #B75E5F;
}
.p-top-sec03-list__txt--blue .num,
.p-top-sec03-list__txt--blue .day,
.p-top-sec03-list__txt--blue .event {
  color: #3E7694;
}
.p-top-sec03-list__txt--green .num,
.p-top-sec03-list__txt--green .day,
.p-top-sec03-list__txt--green .event {
  color: #589A54;
}

.p-top-sec03-present {
  margin-top: 30px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1.6 !important;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-present {
    font-size: 1.8rem;
  }
}
.p-top-sec03-present .big {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-present .big {
    font-size: 2.2rem;
  }
}
.p-top-sec03-present .red {
  color: #982C2C;
}
.p-top-sec03-present .underline {
  position: relative;
}
.p-top-sec03-present .underline::before {
  display: block;
  content: "";
  position: absolute;
  height: 12px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(235, 207, 112, 0.5);
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-present .underline::before {
    height: 8px;
  }
}
.p-top-sec03-present .underline--01::before {
  width: 136px;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-present .underline--01::before {
    width: 100px;
  }
}
.p-top-sec03-present .underline--02::before {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-present .underline--02::before {
    width: 140px;
  }
}

.p-top-flex .elementor-container {
  flex-flow: row wrap;
}

.p-top-flex-r .elementor-container {
  flex-flow: row-reverse wrap;
}

.p-top-flex .elementor-container,
.p-top-flex-r .elementor-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-flex .elementor-container,
  .p-top-flex-r .elementor-container {
    flex-flow: column-reverse wrap;
    align-items: center;
    padding-bottom: 60px;
  }
}
.p-top-flex .elementor-container .txt960,
.p-top-flex-r .elementor-container .txt960 {
  padding: 105px 10px 10px 10px;
  width: 50%;
  min-height: 520px;
}
@media screen and (max-width: 767px) {
  .p-top-flex .elementor-container .txt960,
  .p-top-flex-r .elementor-container .txt960 {
    margin-top: 30px;
    padding: 0 10px;
    width: 100%;
    min-height: initial;
  }
}
.p-top-flex .elementor-container .fig960,
.p-top-flex-r .elementor-container .fig960 {
  position: relative;
  overflow: hidden;
  width: 50%;
  min-height: 520px;
}
@media screen and (max-width: 767px) {
  .p-top-flex .elementor-container .fig960,
  .p-top-flex-r .elementor-container .fig960 {
    width: 100%;
    min-height: initial;
  }
}
.p-top-flex .elementor-container .fig960 .elementor-widget-image,
.p-top-flex-r .elementor-container .fig960 .elementor-widget-image {
  height: 100%;
}
.p-top-flex .elementor-container .fig960 .elementor-widget-container,
.p-top-flex-r .elementor-container .fig960 .elementor-widget-container {
  height: 100%;
}
.p-top-flex .elementor-container .fig960 img,
.p-top-flex-r .elementor-container .fig960 img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-flex .elementor-container .fig960 img,
  .p-top-flex-r .elementor-container .fig960 img {
    position: static;
    object-fit: fill;
    object-position: center top;
  }
}

.p-top-sec04-txt,
.p-top-sec05-txt,
.p-top-sec06-txt {
  line-height: 2 !important;
}

.p-top-btn-box {
  margin: 40px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-btn-box {
    margin: 30px auto 0;
  }
}
.p-top-btn-box .elementor-container {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-top-btn-box .elementor-container {
    flex-flow: wrap row;
    justify-content: center;
    gap: 10px;
    padding-bottom: 0 !important;
  }
}
.p-top-btn-box .elementor-container .left,
.p-top-btn-box .elementor-container .right {
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  .p-top-btn-box .elementor-container .left,
  .p-top-btn-box .elementor-container .right {
    max-width: 250px;
  }
}

.p-top-sec07 {
  padding: 100px 10px;
  background: url(images/top_sec07_bg.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-sec07 {
    padding: 60px 10px;
  }
}

.p-top-sec07-list {
  max-width: 1460px;
  width: 100%;
  margin-inline: auto;
}
.p-top-sec07-list .elementor-container {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-list .elementor-container {
    flex-flow: nowrap column;
    align-items: center;
    gap: 40px 0;
  }
}
.p-top-sec07-list .item {
  width: 31.5068493151%;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-list .item {
    width: 100%;
  }
}
.p-top-sec07-list .fig460 {
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 460/335;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-list .fig460 {
    margin-inline: auto;
    max-width: 460px;
  }
}
.p-top-sec07-list .fig460 img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-sec08 {
  padding: 100px 10px;
}
@media screen and (max-width: 767px) {
  .p-top-sec08 {
    padding: 60px 10px;
  }
}

.p-top-sec08-list {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.p-top-sec08-list .elementor-container {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-top-sec08-list .elementor-container {
    flex-flow: wrap row;
    align-items: center;
    gap: 10px;
  }
}
.p-top-sec08-list .item {
  width: 31.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-sec08-list .item {
    width: calc((100% - 10px) / 2);
  }
}
.p-top-sec08-list .fig380 {
  width: 100%;
  height: auto;
  aspect-ratio: 380/330;
}
.p-top-sec08-list .fig380 a {
  display: block;
}
.p-top-sec08-list .fig380 img {
  display: block;
  width: 100%;
  height: 100%;
}

/****************************************

_p-top.scss トップページ

*****************************************/
/****************************************

newsトップ用

*****************************************/
.p-diary-list {
  margin-inline: auto;
  max-width: 580px;
  width: 100%;
  height: 100%;
  max-height: 300px;
  padding-right: 10px;
  overflow-y: scroll;
}
.p-diary-list__item {
  border-bottom: 1px solid #C1C0BD;
  width: 100%;
}
.p-diary-list__item a {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  padding: 22px 20px 22px 0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-diary-list__item a {
    flex-flow: column nowrap;
    padding: 10px 20px 10px 0;
  }
}
.p-diary-list__item a:is(:hover, :active) {
  background: rgba(150, 145, 62, 0.2);
}
.p-diary-list__item:first-child a {
  padding: 0 20px 22px 0px;
}
@media screen and (max-width: 767px) {
  .p-diary-list__item:first-child a {
    padding: 0 20px 10px 0px;
  }
}
.p-diary-list__date {
  width: 23%;
  font-family: "EB Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6B2020;
  letter-spacing: 0.07em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-diary-list__date {
    width: auto;
    font-size: 1.4rem;
  }
}
.p-diary-list__ttl {
  position: relative;
  text-decoration: none;
  width: 77%;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.07em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-diary-list__ttl {
    width: auto;
    font-size: 1.4rem;
  }
}

/****************************************

_p-page-name.scss お風呂

*****************************************/
@media screen and (max-width: 767px) {
  .bath-fig01 .elementor-widget-container {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 580/350;
  }
}
@media screen and (max-width: 767px) {
  .bath-fig01 .elementor-widget-container img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center top;
  }
}

.bath-blex .elementor-container {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bath-blex .elementor-container {
    flex-flow: nowrap column;
    gap: 10px 0;
  }
}
.bath-blex .elementor-container .item {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767px) {
  .bath-blex .elementor-container .item {
    width: 100%;
  }
}

/****************************************

_p-page-name.scss ロウリュウとは？

*****************************************/
.p-loyly-txt {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-loyly-txt {
    font-size: 1.6rem;
  }
}

/****************************************

_p-page-name.scss ロウリュウの癒し

*****************************************/
/****************************************

_p-page-name.scss 宝蒸洞とは？

*****************************************/
.p-about-sec01 .txt-box {
  padding: 30px;
  background: url(images/about_bg.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-about-sec01 .txt-box {
    padding: 20px;
    background: url(images/about_bg.jpg) no-repeat left top;
    background-size: cover;
  }
}

.p-about-sec03-list .elementor-container {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 40px 0px;
}
@media screen and (max-width: 767px) {
  .p-about-sec03-list .elementor-container {
    flex-flow: nowrap column;
    gap: 30px 0;
  }
}
.p-about-sec03-list .elementor-container .item {
  padding: 0 20px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-about-sec03-list .elementor-container .item {
    padding: 0;
    width: 100%;
  }
}
.p-about-sec03-list .elementor-container .ttl .elementor-heading-title {
  padding: 22px 20px;
  outline: 2px solid #c1c0bd;
  outline-offset: -10px;
  background: #f9f8f5;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px) {
  .p-about-sec03-list .elementor-container .ttl .elementor-heading-title {
    font-size: 1.7rem;
  }
}

/****************************************

_p-page-name.scss 宝蒸洞Q＆A

*****************************************/
/****************************************

_p-page-name.scss ホットヨガ

*****************************************/
.p-yoga-sec02-list .elementor-container {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-yoga-sec02-list .elementor-container {
    gap: 30px 0px;
  }
}
.p-yoga-sec02-list .elementor-container .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-yoga-sec02-list .elementor-container .item {
    width: 100%;
  }
}
.p-yoga-sec02-list .elementor-container .ttl .elementor-heading-title {
  padding: 25px 20px;
  outline: 2px solid #c1c0bd;
  outline-offset: -10px;
  background: #f9f8f5;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #322C25;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-yoga-sec02-list .elementor-container .ttl .elementor-heading-title {
    padding: 20px;
    font-size: 1.7rem;
  }
}
.p-yoga-sec02-list .elementor-container .ttl .elementor-heading-title .num {
  color: #91020d;
}

.p-yoga-sec04-list .elementor-container {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 0px 30px;
}
@media screen and (max-width: 767px) {
  .p-yoga-sec04-list .elementor-container {
    gap: 10px 0;
  }
}
.p-yoga-sec04-list .elementor-container .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-yoga-sec04-list .elementor-container .item {
    width: 100%;
  }
}
.p-yoga-sec04-list .elementor-container .fig380 {
  max-width: 380px;
}
@media screen and (max-width: 767px) {
  .p-yoga-sec04-list .elementor-container .fig380 {
    margin-inline: auto;
  }
}
.p-yoga-sec04-list .elementor-container .fig380 img {
  display: block;
  width: 100%;
  height: auto;
}

/****************************************

_p-page-name.scss ボディケアルーム 夢殿

*****************************************/
.p-care-intro {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-care-intro {
    margin-bottom: 30px;
  }
}

.p-care-sec04-box {
  padding: 20px 50px;
  background: #FBF8F1;
}
@media screen and (max-width: 767px) {
  .p-care-sec04-box {
    padding: 20px;
  }
}

/****************************************

_p-page-name.scss 韓国式あかすり

*****************************************/
.p-scrub-intro {
  font-weight: bold;
  color: #b80a00;
}

.p-scrub-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #686867;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-scrub-table {
    display: block;
    border: none;
    width: 100%;
  }
}
.p-scrub-table tbody {
  display: table;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-scrub-table tbody {
    display: block;
  }
}
.p-scrub-table tbody tr:last-child td,
.p-scrub-table tbody tr:last-child th {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-scrub-table tbody tr:last-child td,
  .p-scrub-table tbody tr:last-child th {
    border-bottom: 1px solid #686867;
  }
}
.p-scrub-table tbody th {
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-scrub-table tbody th {
    background: #f9f8f5;
  }
}
.p-scrub-table thead tr th:not(:first-child),
.p-scrub-table thead tr td:not(:first-child),
.p-scrub-table tbody tr th:not(:first-child),
.p-scrub-table tbody tr td:not(:first-child) {
  border-left: 1px solid #686867;
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead tr th:not(:first-child),
  .p-scrub-table thead tr td:not(:first-child),
  .p-scrub-table tbody tr th:not(:first-child),
  .p-scrub-table tbody tr td:not(:first-child) {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead tr td:last-child,
  .p-scrub-table tbody tr td:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead tr,
  .p-scrub-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #686867;
    background: #fff;
    overflow: hidden;
  }
}
.p-scrub-table thead td,
.p-scrub-table tbody td {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead td,
  .p-scrub-table tbody td {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: none;
    position: relative;
    text-align: left;
  }
}
.p-scrub-table thead th,
.p-scrub-table thead td,
.p-scrub-table tbody th,
.p-scrub-table tbody td {
  padding: 15px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #686867;
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead th,
  .p-scrub-table thead td,
  .p-scrub-table tbody th,
  .p-scrub-table tbody td {
    padding: 10px 15px;
  }
}
.p-scrub-table thead .box01,
.p-scrub-table tbody .box01 {
  text-align: center;
  width: 14.1666666667%;
}
.p-scrub-table thead .box02,
.p-scrub-table tbody .box02 {
  text-align: center;
  width: 10.8333333333%;
}
.p-scrub-table thead .box03,
.p-scrub-table tbody .box03 {
  width: 60.8333333333%;
}
.p-scrub-table thead .box04,
.p-scrub-table tbody .box04 {
  text-align: center;
  width: 14.1666666667%;
  background: #f9f8f5;
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead .box04,
  .p-scrub-table tbody .box04 {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-scrub-table thead .box01,
  .p-scrub-table thead .box02,
  .p-scrub-table thead .box03,
  .p-scrub-table thead .box04,
  .p-scrub-table tbody .box01,
  .p-scrub-table tbody .box02,
  .p-scrub-table tbody .box03,
  .p-scrub-table tbody .box04 {
    display: block;
    width: 100% !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  tbody tr:last-child {
    margin-bottom: 0;
  }
}

/****************************************

_p-page-name.scss お食事処

*****************************************/
.p-restaurant-sec01-list .elementor-container {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 0px 30px;
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec01-list .elementor-container {
    gap: 10px 0;
  }
}
.p-restaurant-sec01-list .elementor-container .item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec01-list .elementor-container .item {
    width: 100%;
  }
}
.p-restaurant-sec01-list .elementor-container .fig380 {
  max-width: 380px;
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec01-list .elementor-container .fig380 {
    margin-inline: auto;
  }
}
.p-restaurant-sec01-list .elementor-container .fig380 img {
  display: block;
  width: 100%;
  height: auto;
}

.p-restaurant-sec02-list .elementor-container {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec02-list .elementor-container {
    gap: 30px 0;
  }
}
.p-restaurant-sec02-list .elementor-container .item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .p-restaurant-sec02-list .elementor-container .item {
    width: 100%;
  }
}

/****************************************

_p-blog.scss お知らせ

*****************************************/
.p-journal-list__item:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__item:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.p-journal-list__ttl {
  margin-bottom: 15px;
}
.p-journal-list__txt {
  margin-bottom: 30px;
}
.p-journal-list__btn {
  margin: 0 0 0 auto;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__btn {
    margin: 0 auto;
    width: 250px;
  }
}
.p-journal-list__btn a {
  padding: 20px 10px 20px 35px;
}
.p-journal-list__fig440 {
  position: relative;
  width: 440px;
  height: 330px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__fig440 {
    max-width: 440px;
    width: 100%;
    height: auto;
    aspect-ratio: 440/330;
  }
}
.p-journal-list__fig440 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/****************************************

_p-blog.scss イベント情報

*****************************************/
.p-journal-list__item:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__item:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.p-journal-list__txt {
  margin-bottom: 30px;
}
.p-journal-list__btn {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-journal-list__btn {
    margin: 0 auto;
  }
}
.p-journal-list__fig440 {
  position: relative;
  width: 440px;
  height: 310px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__fig440 {
    max-width: 440px;
    width: 100%;
    height: auto;
    aspect-ratio: 440/310;
  }
}
.p-journal-list__fig440 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/****************************************

_p-page-name.scss ご利用案内

*****************************************/
/****************************************

_p-overview.scss 施設概要

*****************************************/
/*---------- アクセス ----------*/
.p-overview-sec02 .map {
  margin-top: 20px;
  width: 100%;
}
.p-overview-sec02 .map iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-overview-sec02 .map iframe {
    height: 250px;
  }
}

/****************************************

_p-contact.scss お問い合わせ

*****************************************/
.p-form-sec01__tel {
  margin: 30px auto;
  width: 230px;
  height: auto;
  aspect-ratio: 230/25;
}
@media screen and (max-width: 767px) {
  .p-form-sec01__tel {
    width: auto;
    height: 22px;
  }
}

.p-contact-recruit {
  font-weight: bold;
  color: #b80a00;
}

/*---------- サイトポリシー ----------*/
.p-form-sec01-policy {
  padding: 40px 20px;
  background: #f9f8f5;
}
@media screen and (max-width: 767px) {
  .p-form-sec01-policy {
    padding: 20px;
  }
}
.p-form-sec01-policy__ttl {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-form-sec01-policy__ttl {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

/****************************************

Contact Form7

*****************************************/
.tc {
  width: 360px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tc {
    width: 250px;
  }
}

.tc input[type=submit] {
  font-family: "メイリオ", sans-serif;
}

.wpcf7 {
  width: 100%;
}

.form_row {
  display: -webkit-box;
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #AAA;
}

.last_row {
  margin-bottom: 30px;
  padding: 0 20px;
  border-bottom: none;
}

.form_row .form_label {
  width: 300px;
}

.form_row .form_label .required {
  display: inline-block;
  color: #FFF;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #CC0000;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #D7D7D7;
  margin-right: 10px;
  border-radius: 3px;
}

.form_row .form_input {
  width: calc(100% - 300px);
}

.wpcf7-form-control {
  width: 100%;
}

select.wpcf7-form-control {
  width: auto;
}

.wpcf7-form input {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.wpcf7-form textarea {
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
}

.form_row .form_input_post {
  width: 180px;
}

.form_row .form_input_post_txt {
  color: #B20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.tc input[type=submit] {
  cursor: pointer;
  width: 360px;
  max-width: 100%;
  padding: 18px;
  border: 1px solid #872C2B;
  background-color: #872C2B;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  margin: 10px auto 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .tc input[type=submit] {
    width: 250px;
  }
}

.wpcf7 .tc input[type=submit]:hover {
  background-color: #fff;
  color: #872C2B;
}

.wpcf7-response-output {
  font-size: 1.6rem;
}

.wpcf7-radio input {
  vertical-align: baseline;
  margin: auto 3px auto 5px;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio input {
    vertical-align: middle;
    margin: auto 3px 3px 5px;
  }
}

span.wpcf7-list-item {
  margin: 0 1em 0 0;
}
@media screen and (max-width: 767px) {
  span.wpcf7-list-item {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .form_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0 0 20px 0;
  }
  .last_row {
    margin-bottom: 0;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 5px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .ajax-loader {
    width: auto;
  }
  span.wpcf7-list-item {
    display: block;
  }
  .tc input[type=submit] {
    display: block;
    font-size: 1.4rem;
    padding: 15px;
  }
  .wpcf7-response-output {
    font-size: 1.3rem;
  }
}
/****************************************

_u-display.scss 表示、非表示

*****************************************/
@media print, screen and (min-width: 768px) {
  .u-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none !important;
  }
}
/****************************************

_u-arrange.scss 余白調整

*****************************************/
/* 共通セクションの余白 */
.u-cmn-sec:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-cmn-sec:not(:first-of-type) {
    margin-top: 60px;
  }
}

/* PC,テキスト中央 */
@media screen and (min-width: 768px) {
  .u-tc {
    text-align: center;
  }
}

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

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

/* 改行 */
.u-line-break {
  margin-top: 25px;
}

/* 1行目の字下げ */
.u-notes {
  text-indent: -1em;
  padding-left: 1em;
}

/* margin-bottom */
.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .u-mb50,
  .u-mb60 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .u-mb70,
  .u-mb80 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .u-mb90,
  .u-mb100 {
    margin-bottom: 80px;
  }
}

/* margin-top */
.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .u-mt50,
  .u-mt60 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt70,
  .u-mt80 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt90,
  .u-mt100 {
    margin-top: 80px;
  }
}

/****************************************

_u-link.scss リンク動作設定

*****************************************/
.u-link-fade-in a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.u-link-fade-in a:is(:link, :visited) {
  color: #333;
}
.u-link-fade-in a:is(:hover, :active) {
  color: #872C2B;
}
.u-link-fade-in a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #872C2B;
  transition: all 0.3s ease-in-out;
}
.u-link-fade-in a:hover::before {
  width: 100%;
  opacity: 0.9;
}

.u-link-fade-out a {
  position: relative;
  text-decoration: none;
  color: #333;
}
.u-link-fade-out a::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background: #333;
  transition: all 0.3s ease-in-out;
}
.u-link-fade-out a:hover::after {
  width: 0;
}

.u-link-on-to-off a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.u-link-on-to-off a:is(:link, :visited) {
  color: #333;
}
.u-link-on-to-off a:is(:hover, :active) {
  color: #872C2B;
}
.u-link-on-to-off a::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transition: all 0.3s ease-in-out;
}
.u-link-on-to-off a:hover::before {
  background: #872C2B;
}

/****************************************

_u-color.scss カラー指定

*****************************************/
.u-base-color {
  color: #333;
}

.u-main-color {
  color: #872C2B;
}

.u-accent-color {
  color: #96913E;
}

.u-red {
  color: #872C2B;
}

.u-black {
  color: #322C25;
}

.u-gray {
  color: #655A45;
}

/****************************************

_u-font.scss フォント調整

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

.u-font-base {
  font-family: "メイリオ";
}

.u-font-jp {
  font-family: "Zen Old Mincho", serif;
}

.u-font-en {
  font-family: "EB Garamond", serif;
}

/* End Hack *//*# sourceMappingURL=style.css.map */