@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #503733;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #503733;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #503733;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #503733;
  border-radius: .3125rem;
  background-image: none;
  padding: 4px 8px;
  padding: .25rem .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, まつも textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #503733;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #503733;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #503733;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #503733;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.75em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #503733;
  width: 1.25em;
  height: 1.25em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: -.15em;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .2em solid #503733;
  border-bottom: .2em solid #503733;
  width: .625em;
  height: 1em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: 1px solid #503733;
  border-radius: .3125rem;
  background-color: #fff;
  padding: .4em 2.4em .4em .8em;
  width: 100%;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #503733;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

dd:has(select) {
  position: relative;
}

dd:has(select)::after {
  position: absolute;
  top: 50%;
  right: 12px;
  right: .75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #503733;
  width: 15px;
  width: .9375rem;
  height: 13px;
  height: .8125rem;
  pointer-events: none;
  content: '';
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/*=============================================
MicroModal Base Styles
=============================================*/
.modal.micromodal-slide {
  display: none;
}

.modal.micromodal-slide.is-open {
  display: block;
}

.modal__overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, .8);
  overflow-x: hidden;
}

.modal__container {
  background-color: white;
  max-width: 95vw;
  max-height: 95vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal__close {
  aspect-ratio: 1;
  display: block;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  width: 50px;
  width: 3.125rem;
}

.modal__close::before, .modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background: #666;
  width: 24px;
  width: 1.5rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover::before, .modal__close:hover::after {
  background: #503733;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: transparent;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  aspect-ratio: 28/32;
  position: absolute;
  background-color: #503733;
  width: 24px;
  width: 1.5rem;
  content: '';
}

.swiper-button-prev {
  padding: 8px 8px 8px 0;
  padding: .5rem .5rem .5rem 0;
}

.swiper-button-prev::before {
  left: 0;
  -webkit-clip-path: var(--clip-triangle-left);
  clip-path: var(--clip-triangle-left);
}

.swiper-button-next {
  padding: 8px 0 8px 8px;
  padding: .5rem 0 .5rem .5rem;
}

.swiper-button-next::before {
  right: 0;
  -webkit-clip-path: var(--clip-triangle-right);
  clip-path: var(--clip-triangle-right);
}

.swiper-button-disabled {
  opacity: .3;
  cursor: not-allowed;
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  aspect-ratio: 1;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #F5F5F5;
  width: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
  margin-left: .625rem;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #503733;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #503733;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #503733;
}

#toc_container .toc_list li::before {
  display: none;
  color: #503733;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #503733;
}

.l-container {
  margin: 0 auto;
  padding: 0 23px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-footer {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.l-main.is-modal {
  z-index: 9999;
}

.l-section {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.l-section.l-section--background {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.l-section--background {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.l-section__title {
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  border: 1px solid transparent;
  background-color: #503733;
  background-image: none;
  padding: 1.125em 3.0625em;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.0555555556;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #503733;
  background-color: #503733;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn.c-btn--white {
  display: block;
  border: 1px solid;
  background-color: #fff;
  padding: 10px;
  padding: .625rem;
  color: #503733;
  font-size: 12px;
  font-size: .75rem;
  line-height: 2;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(48.8549618321, 33.5877862595, 31.1450381679);
  background-color: #503733;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #503733;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #503733;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #503733;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-sectionSubTitle {
  position: relative;
  padding-left: 1.07em;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.42;
}

.c-sectionSubTitle::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #503733;
  width: 6px;
  width: .375rem;
  height: 87.5%;
  content: '';
}

.c-sectionTitle {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5789473684;
  text-align: center;
  text-transform: uppercase;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #463532;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-404 {
  text-align: center;
}

.p-404__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-404__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-about {
  overflow-x: clip;
}

.p-about__title {
  text-align: center;
}

.p-about__content {
  margin-top: 12px;
  margin-top: .75rem;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  line-height: 1.5625;
  text-align: center;
}

.p-about__text + .p-about__text {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-about__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-about__swiper {
  margin: 0 calc(50% - 50vw);
}

.p-about__slide img {
  aspect-ratio: 303/176;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-about__pagination {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.p-access__map {
  max-width: 100%;
}

.p-access__map iframe {
  aspect-ratio: 328/166;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-access__info {
  margin-top: 15px;
  margin-top: .9375rem;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
}

.p-access__infoTitle {
  font-weight: 700;
}

.p-access__infoWrapper {
  margin-top: 6px;
  margin-top: .375rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.p-access__infoBlock {
  padding: 10px 0 10px 5px;
  padding: .625rem 0 .625rem .3125rem;
}

.p-access__infoBlock + .p-access__infoBlock {
  border-top: 1px solid rgba(152, 137, 134, .5);
}

.p-access__infoText {
  margin-top: 4px;
  margin-top: .25rem;
  padding-left: .5em;
  font-size: 14px;
  font-size: .875rem;
}

.p-access__infoText span:not(:first-child) {
  display: block;
  margin-top: 6px;
  margin-top: .375rem;
}

.wp-block-image {
  margin-top: 10px;
  margin-top: .625rem;
}

figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #988986;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
}

.p-article__body p,
.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6,
.p-article__body ul,
.p-article__body ol {
  margin-top: 1em;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  border-left: 5px solid #503733;
  padding-left: .5em;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  background-color: #503733;
  padding: .3em .4em;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #503733;
  content: 'ー';
}

.p-article__body ul {
  padding: 0;
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #503733;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #503733;
  border-bottom: 1px solid #503733;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #503733;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body a {
  text-decoration: underline;
}

.p-article__mainTitle {
  border-bottom: 1px solid;
  padding-bottom: 5px;
  padding-bottom: .3125rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-article__meta {
  color: #988986;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  font-size: 14px;
  font-size: .875rem;
}

.p-article__footer {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-article__footer a {
  min-width: 200px;
  min-width: 12.5rem;
}

.p-article__thumbnail {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-breadcrumb {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
}

.p-breadcrumb a {
  text-decoration: underline;
}

.p-cancel {
  background-color: #655350;
}

.p-cancel__title {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.p-cancel__table {
  overflow-x: auto;
}

.p-cancel__notes {
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
}

.p-cancelTable {
  border-collapse: collapse;
  width: 100%;
}

.p-cancelTable__head,
.p-cancelTable__data {
  vertical-align: middle;
  border: 1px solid #503733;
  background-color: #503733;
  padding: 12px 8px;
  padding: .75rem .5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
}

.p-cancelTable__head {
  color: #fff;
}

.p-cancelTable__head--term {
  width: 37%;
}

.p-cancelTable__head--price {
  width: 37%;
}

.p-cancelTable__head--case {
  width: 26%;
}

.p-cancelTable__data {
  background-color: #fff;
  color: #000;
}

.p-contact__formTitle {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-contact__form {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contact__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-contact__messageText {
  font-size: 14px;
  font-size: .875rem;
}

.p-contact__messageText + .p-contact__messageText {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-contactContents__text {
  text-align: center;
}

.p-contactContents__btns {
  gap: 17px;
  gap: 1.0625rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-contactContents__btn a {
  width: 100%;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  font-size: 14px;
  font-size: .875rem;
}

.p-cta {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%) translateY(100%);
  transform: translateX(-50%) translateY(100%);
  z-index: 2;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: -webkit-transform, -webkit-box-shadow;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform, -webkit-box-shadow;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: .75rem .75rem 0 0;
  background-color: #fff;
  padding: 10px 15px;
  padding: .625rem .9375rem;
  width: 90%;
  max-width: 400px;
  max-width: 25rem;
}

.p-cta.is-active {
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

.p-cta__icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 57px;
  width: 3.5625rem;
}

.p-cta__icon img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-cta__text {
  font-family: 'Noto Sans JP', '游ゴシック体', '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', 'MS Pゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  text-align: center;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 12px 10px;
  padding: .75rem .625rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #503733;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  background: #fff;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  margin-top: 60px;
  background-image: url(../img/common/drawer_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  color: #fff;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  font-weight: 500;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  width: 100%;
}

.p-drawer__navLink {
  display: block;
  border-bottom: 1px solid #3C444A;
  padding: 1em 22.5px;
  padding: 1em 1.40625rem;
  font-family: 'Cormorant Garamond', sans-serif;
  text-transform: uppercase;
}

.p-equipment {
  background-color: #503733;
  color: #fff;
}

.p-equipment__list {
  border-top: 3px solid;
  border-top: .1875rem solid;
  border-bottom: 3px solid;
  border-bottom: .1875rem solid;
}

.p-equipment__category {
  padding: 10px 10px 10px 0;
  padding: .625rem .625rem .625rem 0;
  font-size: 14px;
  font-size: .875rem;
}

.p-equipment__category + .p-equipment__category {
  border-top: 2px solid;
}

.p-equipment__category.p-equipment__category--beige-border {
  border-top: 1px solid #988986;
}

.p-equipment__category-title {
  font-weight: 700;
}

.p-equipment__items {
  padding: 0 10px;
  padding: 0 .625rem;
  width: 100%;
}

.p-equipment__item {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-equipment__item + .p-equipment__item {
  border-top: 1px solid #988986;
  padding-top: 10px;
  padding-top: .625rem;
}

.p-equipment__item:not(:last-child) {
  padding-bottom: 10px;
  padding-bottom: .625rem;
}

.p-equipment__item-name {
  margin-top: 5px;
  margin-top: .3125rem;
  font-weight: 300;
}

.p-equipment__item-quantity {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-equipment__item-times {
  font-size: 12px;
  font-size: .75rem;
}

.p-floor {
  background-color: #F2F0EC;
}

.p-floor.is-modal {
  position: relative;
  z-index: 9999;
}

.p-floor__content {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
}

.p-floor__gallery {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
}

.p-floor__diagram {
  padding: 0 42px;
  padding: 0 2.625rem;
}

.p-floor__diagram-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.p-floor__diagram-image {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  cursor: pointer;
}

.p-floor__diagram-image img {
  aspect-ratio: 427/580;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-floor__zoom-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 7px;
  right: .4375rem;
  bottom: 7px;
  bottom: .4375rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  cursor: pointer;
  border-radius: 50%;
  background: #503733;
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}

.p-floor__zoom-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  width: 16px;
  width: 1rem;
  height: 2px;
  height: .125rem;
}

.p-floor__zoom-btn span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-floor__images {
  position: relative;
  padding: 0 42px;
  padding: 0 2.625rem;
  min-width: 0;
}

.p-floor__images .swiper {
  position: static;
}

.p-floor__images-slider-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.p-floor__images-grid {
  gap: 15px 10px;
  gap: .9375rem .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-floor__image-item {
  cursor: pointer;
  overflow: hidden;
}

.p-floor__image-item:hover .p-floor__gallery-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-floor__gallery-image {
  aspect-ratio: 230/173;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-floor__images-next,
.p-floor__images-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-floor__images-next {
  right: 0;
}

.p-floor__images-prev {
  left: 0;
}

.p-floor__layoutList {
  gap: 16px;
  gap: 1rem;
  display: grid;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-floor__layoutItem__image {
  cursor: pointer;
}

.p-floor__layoutItem__image:hover .p-floor__zoom-btn {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.p-floor__layoutText {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4210526316;
  text-align: center;
}

.p-floor__layout-wrapper {
  position: relative;
}

.p-floor__layout-image {
  aspect-ratio: 288/556;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-floorModal__content {
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
}

.p-floorModal__image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 550px;
}

.p-footer {
  background-image: url(../img/common/header_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 8px;
  padding-top: .5rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  text-align: center;
}

.p-footer__link {
  padding: 5px;
  padding: .3125rem;
  width: 34px;
  width: 2.125rem;
}

.p-footer__link img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__copy {
  margin-top: calc(1.125rem - .25em);
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
}

.p-form__item {
  gap: 5px;
  gap: .3125rem;
  display: grid;
}

.p-form__item + .p-form__item {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-form__required {
  margin-left: .2em;
  color: #f00;
}

.p-form__itemBody {
  width: 100%;
}

.p-form__checkbox {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-form__checkboxLabel a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  text-decoration: underline;
}

.p-form__checkboxLabel a:hover {
  opacity: .7;
}

.p-form__footer {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-form__footer input.c-btn, .p-form__footer submit.c-btn {
  width: 100%;
  min-width: 200px;
  min-width: 12.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-form__footer input {
  width: 100%;
}

.p-form__footer span {
  display: block;
  width: 100%;
}

.p-form__footer .wpcf7-spinner {
  display: none;
}

.p-form__confirmArea {
  display: none;
}

.p-fv {
  width: 100%;
  height: calc(100vh - var(--header-height, 60px));
  height: calc(100svh - var(--header-height, 60px));
  min-height: 400px;
  max-height: 800px;
}

.p-fv__inner {
  width: 100%;
  height: 100%;
}

.p-fv__slider {
  width: 100%;
  height: 100%;
}

.p-fv__sliderWrapper {
  width: 100%;
  height: 100%;
}

.p-fv__slide {
  width: 100%;
  height: 100%;
}

.p-fv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-galleryModal__container {
  background-color: #fff;
  max-width: 95vw;
  max-height: 95vh;
}

.p-galleryModal__content {
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
}

.p-galleryModal__gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-galleryModal__swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-galleryModal__slide {
  padding: 0 40px;
  padding: 0 2.5rem;
}

.p-galleryModal__image {
  max-width: 100%;
  max-height: 600px;
  max-height: 37.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-galleryModal__images-next,
.p-galleryModal__images-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-galleryModal__images-next {
  right: 0;
}

.p-galleryModal__images-prev {
  left: 0;
}

.p-header {
  border-bottom: 2.5px solid #D5D5D5;
  background-image: url(../img/common/header_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__inner.l-container {
  padding-right: 10px;
}

.p-header__logo {
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  z-index: 41;
  width: 150px;
  width: 9.375rem;
  height: 100%;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-layoutModal__content {
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
}

.p-layoutModal__image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 400px;
}

.p-layoutModal__image {
  width: 75%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-news__title {
  text-align: center;
}

.p-news__btn {
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: center;
}

.p-news__footer {
  margin-top: 19px;
  margin-top: 1.1875rem;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
}

.p-news__footer .page-numbers {
  width: 3em;
  height: 3em;
  line-height: 2.8;
}

.p-newsList {
  border-top: 1.5px solid;
  border-bottom: 1.5px solid;
}

.p-newsList__item + .p-newsList__item {
  border-top: 1px solid rgba(152, 137, 134, .5);
}

.p-newsList__link {
  display: block;
  padding: 4px 8px;
  padding: .25rem .5rem;
}

.p-newsList__date {
  color: #988986;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
  line-height: 1.1875;
}

.p-newsList__text {
  display: block;
}

.p-newsList__none {
  padding: 40px 0;
  padding: 2.5rem 0;
  text-align: center;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #503733;
  width: 2em;
  height: 2em;
  color: #503733;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #503733;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-price {
  background-color: #503733;
}

.p-price__title {
  color: #fff;
}

.p-price__content {
  background-color: #fff;
  padding: 20px 20px 28px;
  padding: 1.25rem 1.25rem 1.75rem;
}

.p-price__content + .p-price__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-price__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-price__table {
  margin-top: 16px;
  margin-top: 1rem;
  overflow-x: auto;
}

.p-price__notes {
  margin-top: 16px;
  margin-top: 1rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
}

.p-priceTable {
  border: 3px solid #000;
  border-collapse: collapse;
  background-color: #fff;
  width: 100%;
  color: #000;
  font-weight: 500;
  line-height: 1.1111111111;
}

.p-priceTable--hall {
  min-width: 480px;
  min-width: 30rem;
}

.p-priceTable__head,
.p-priceTable__data {
  vertical-align: middle;
  border: 2px solid #000;
  padding: 10px;
  padding: .625rem;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
}

.p-priceTable__head {
  background-color: #f8f8f8;
}

.p-priceTable small {
  font-size: 12px;
  font-size: .75rem;
}

.p-priceTable__data--room {
  font-weight: 500;
  text-align: left;
}

.p-privacy__container {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'MS P明朝', 'MS PMincho', serif;
}

.p-privacy__container p,
.p-privacy__container h1,
.p-privacy__container h2,
.p-privacy__container h3,
.p-privacy__container h4,
.p-privacy__container h5,
.p-privacy__container h6,
.p-privacy__container ul,
.p-privacy__container ol {
  margin-top: 1em;
  line-height: 1.5;
}

.p-privacy__container h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-privacy__container h2 {
  border-left: 5px solid #503733;
  padding-left: .5em;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-privacy__container h3 {
  background-color: #503733;
  padding: .3em .4em;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-privacy__container h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-privacy__container h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-privacy__container .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-privacy__container .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #503733;
  content: 'ー';
}

.p-privacy__container ul {
  padding: 0;
  list-style: none;
}

.p-privacy__container ul li {
  position: relative;
  padding-left: 1em;
}

.p-privacy__container ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-privacy__container ol {
  padding-left: 1.25em;
}

.p-privacy__container ol > li:not([class]) {
  list-style: decimal;
}

.p-privacy__container ol > li:not([class])::marker {
  color: #503733;
}

.p-privacy__container li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-privacy__container table {
  border: none;
  width: 100%;
}

.p-privacy__container table th,
.p-privacy__container table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #503733;
  border-bottom: 1px solid #503733;
  padding: 20px;
  padding: 1.25rem;
}

.p-privacy__container table th {
  border-right: 1px solid #503733;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-privacy__container a {
  text-decoration: underline;
}

.p-privacy__container p:first-child {
  margin-top: 0;
}

.p-schedule {
  overflow-x: clip;
}

.p-schedule__header {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid;
  padding-bottom: 3px;
  padding-bottom: .1875rem;
}

.p-schedule__current-month {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-schedule__month-tab {
  border: 1px solid;
  padding: 5px 6px;
  padding: .3125rem .375rem;
  font-size: 13px;
  font-size: .8125rem;
  line-height: 1.3;
}

.p-schedule__month-tab.is-current {
  border: 1px solid #503733;
  background-color: #503733;
  color: #fff;
}

.p-schedule__item {
  border-bottom: 1px solid #707070;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
}

.p-schedule__item + .p-schedule__item {
  padding-top: 10px;
  padding-top: .625rem;
}

.p-schedule__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-schedule__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  width: 4.375rem;
}

.p-schedule__title {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-schedule__day {
  font-size: 19px;
  font-size: 1.1875rem;
}

.p-schedule__week {
  font-size: 11px;
  font-size: .6875rem;
}

.p-schedule__badge {
  aspect-ratio: 1;
  width: 19px;
  width: 1.1875rem;
}

.p-schedule__main-image img {
  aspect-ratio: 328/310;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  cursor: pointer;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-schedule__artists-swiper {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-schedule__artists-swiper.swiper {
  position: static;
}

.p-schedule__artists-swiper--has-nav {
  margin: 1.4375rem calc(50% - 50vw) 0;
}

.p-schedule__artists-swiper-wrapper.swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-schedule__artist {
  position: relative;
  max-width: 102px;
}

.p-schedule__artist img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-schedule__artist-name {
  display: block;
  position: absolute;
  bottom: 0;
  background-color: rgba(80, 55, 51, .39);
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  text-align: center;
}

.p-schedule__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
}

.p-schedule__text a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  text-decoration: underline;
}

.p-schedule__actions {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 9px;
  margin-top: .5625rem;
}

.p-schedule__link-caption {
  display: block;
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
}

.p-schedule__no-posts {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-schedule__swiper-button-next,
.p-schedule__swiper-button-prev {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-schedule__swiper-button-next.swiper-button-next, .p-schedule__swiper-button-next.swiper-button-prev,
.p-schedule__swiper-button-prev.swiper-button-next,
.p-schedule__swiper-button-prev.swiper-button-prev {
  width: 20px;
  width: 1.25rem;
}

.p-schedule__swiper-button-next.swiper-button-next::before, .p-schedule__swiper-button-next.swiper-button-prev::before,
.p-schedule__swiper-button-prev.swiper-button-next::before,
.p-schedule__swiper-button-prev.swiper-button-prev::before {
  width: 14px;
  width: .875rem;
}

.p-schedule__swiper-button-next {
  right: 0;
}

.p-schedule__swiper-button-prev {
  left: 0;
}

/*-------------------------------------------------------------------
スケジュール画像モーダル
--------------------------------------------------------------------*/
.p-scheduleModal__container {
  background-color: #fff;
  max-width: 95vw;
  max-height: 95vh;
}

.p-scheduleModal__content {
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
}

.p-scheduleModal__image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-scheduleModal__image {
  max-width: 100%;
  max-height: 600px;
  max-height: 37.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-thanks__container {
  text-align: center;
}

.p-thanks__container p:first-child {
  margin-top: 0;
}

.p-thanks__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.6vw;
  }

  input,
  textarea {
    padding: 4px 12px;
    padding: .25rem .75rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  select {
    font-size: 18px;
    font-size: 1.125rem;
  }

  dd:has(select)::after {
    right: 24px;
    right: 1.5rem;
  }

  :root {
    --header-height: 139px;
    --header-height: 8.6875rem;
  }

  .modal__close {
    width: 80px;
    width: 5rem;
  }

  .modal__close::before, .modal__close::after {
    width: 32px;
    width: 2rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 48px;
    width: 3rem;
    height: 48px;
    height: 3rem;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    width: 28px;
    width: 1.75rem;
  }

  .swiper-button-prev {
    padding: 10px 10px 10px 0;
    padding: .625rem .625rem .625rem 0;
  }

  .swiper-button-next {
    padding: 10px 0 10px 10px;
    padding: .625rem 0 .625rem .625rem;
  }

  .swiper-pagination-bullet {
    width: 16px;
    width: 1rem;
  }

  .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 32px;
    margin-left: 2rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1060px;
  }

  .l-container.l-container--narrow {
    max-width: 860px;
  }

  .l-container.l-container--wide {
    max-width: 1282px;
  }

  .l-footer {
    margin-top: 112px;
    margin-top: 7rem;
  }

  .l-section {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .l-section.l-section--price {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .l-section.l-section--background {
    padding: 88px 0;
    padding: 5.5rem 0;
  }

  .l-section--background {
    padding: 88px 0;
    padding: 5.5rem 0;
  }

  .l-section__title {
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }

  .c-btn:hover, .c-btn:focus-visible {
    outline: none;
    border-color: currentColor;
    background-color: #fff;
    color: #503733;
  }

  .c-btn.c-btn--white {
    padding: calc(1.125rem - .3em);
    min-width: 208px;
    min-width: 13rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-btn.c-btn--white:hover, .c-btn.c-btn--white:focus-visible {
    border-color: #503733;
    background-color: #503733;
    color: #fff;
  }

  .c-sectionSubTitle {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .c-sectionTitle {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .p-404__body {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-404__foot {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-about__content {
    margin-top: 64px;
    margin-top: 4rem;
    line-height: 2;
  }

  .p-about__text + .p-about__text {
    margin-top: 0;
  }

  .p-about__pagination {
    bottom: 35px;
    bottom: 2.1875rem;
  }

  .p-access__map iframe {
    aspect-ratio: 1000/505;
  }

  .p-access__info {
    margin-top: 88px;
    margin-top: 5.5rem;
  }

  .p-access__infoTitle {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-access__infoWrapper {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-access__infoBlock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 13px;
    padding-top: .8125rem;
  }

  .p-access__infoLabel {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 170px;
    width: 10.625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-access__infoText {
    margin-top: 0;
    padding-left: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .wp-block-image {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-article__body p,
  .p-article__body ul li,
  .p-article__body ol li {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article__body p,
  .p-article__body h1,
  .p-article__body h2,
  .p-article__body h3,
  .p-article__body h4,
  .p-article__body h5,
  .p-article__body h6,
  .p-article__body ul,
  .p-article__body ol {
    margin-top: 2em;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body a:hover {
    opacity: .7;
  }

  .p-article__mainTitle {
    padding-bottom: 12px;
    padding-bottom: .75rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-article__meta {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-article__footer {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-article__thumbnail {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-breadcrumb {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-breadcrumb a:hover {
    opacity: .7;
  }

  .p-cancel__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-cancel__notes {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }

  .p-cancelTable__head,
  .p-cancelTable__data {
    padding: 16px 12px;
    padding: 1rem .75rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-contact__formTitle {
    margin-top: 112px;
    margin-top: 7rem;
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-contact__form {
    margin-top: 41px;
    margin-top: 2.5625rem;
  }

  .p-contact__message {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-contact__messageText {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-contact__messageText + .p-contact__messageText {
    margin-top: 13px;
    margin-top: .8125rem;
  }

  .p-contactContents__btns {
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
    margin-top: 3.5rem;
    max-width: 680px;
  }

  .p-contactContents__btn a {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-cta.is-active {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  .p-cta {
    right: 0;
    bottom: 16px;
    bottom: 1rem;
    left: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(100%) translateY(0);
    transform: translateX(100%) translateY(0);
    border-radius: .75rem 0 0 .75rem;
    padding: 24px;
    padding: 1.5rem;
    width: 100px;
    width: 6.25rem;
    max-width: none;
  }

  .p-cta:hover {
    -webkit-transform: translateY(.25rem);
    transform: translateY(.25rem);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16);
  }

  .p-cta__text {
    font-size: 22px;
    font-size: 1.375rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
  }

  .p-equipment__category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 13px 0 13px 13px;
    padding: .8125rem 0 .8125rem .8125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-equipment__category-title {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 321px;
    width: 20.0625rem;
  }

  .p-equipment__items {
    overflow: 0;
  }

  .p-equipment__item + .p-equipment__item {
    padding-top: 13px;
    padding-top: .8125rem;
  }

  .p-equipment__item:not(:last-child) {
    padding-bottom: 13px;
    padding-bottom: .8125rem;
  }

  .p-equipment__item {
    padding-right: 13px;
    padding-right: .8125rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-equipment__item-name {
    margin-top: 0;
  }

  .p-equipment__item-quantity {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .p-equipment__item-times {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .p-floor__content {
    gap: 64px;
    gap: 4rem;
  }

  .p-floor__gallery {
    gap: 56px;
    gap: 3.5rem;
    grid-template-columns: 4.27fr 5.64fr;
  }

  .p-floor__diagram {
    padding: 0;
  }

  .p-floor__diagram:hover .p-floor__zoom-btn {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .p-floor__images-grid {
    gap: 31px 15px;
    gap: 1.9375rem .9375rem;
  }

  .p-floor__layoutList {
    gap: 68px;
    gap: 4.25rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-floor__layoutText {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-footer {
    padding-top: 38px;
    padding-top: 2.375rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-footer__link {
    width: 58px;
    width: 3.625rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-footer__link:hover {
    opacity: .7;
  }

  .p-footer__copy {
    margin-top: calc(3.625rem - .25em);
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-form {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-form__item {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-form__item + .p-form__item {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-form__itemHead {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
    width: 12.5rem;
  }

  .p-form__checkbox {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-form__footer input.c-btn, .p-form__footer submit.c-btn {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-form__footer {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-form__footer--confirm {
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }

  .p-fv {
    min-height: 600px;
    max-height: 1000px;
  }

  .p-galleryModal__container {
    width: 1200px;
    width: 75rem;
  }

  .p-galleryModal__slide {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

  .p-galleryModal__image {
    max-height: 700px;
    max-height: 43.75rem;
  }

  .p-header {
    height: 139px;
    height: 8.6875rem;
  }

  .p-header__inner.l-container {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 0;
  }

  .p-header__logo {
    width: 180px;
    width: 11.25rem;
  }

  .p-header__logo a {
    padding: 42px 0;
    padding: 2.625rem 0;
    height: auto;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
  }

  .p-header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-header__nav li:last-child > a {
    padding-right: 30px;
  }

  .p-header__nav li > a {
    display: block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    padding: 42px 22px;
    padding: 2.625rem 1.375rem;
    color: #fff;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4210526316;
    text-transform: uppercase;
  }

  .p-header__drawer {
    display: none;
  }

  .p-layoutModal__image-wrapper {
    max-width: 600px;
  }

  .p-layoutModal__image {
    width: 60%;
  }

  .p-news__btn {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }

  .p-news__footer {
    margin-top: 75px;
    margin-top: 4.6875rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-news__footer a {
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
  }

  .p-news__footer a:hover {
    background-color: #503733;
    color: #fff;
  }

  .p-newsList__link {
    gap: 96px;
    gap: 6rem;
    display: inline-block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 10px;
    padding: 1rem .625rem;
  }

  .p-newsList__link:hover .p-newsList__text span {
    background-size: 100% 1px;
  }

  .p-newsList__date {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100px;
    width: 6.25rem;
  }

  .p-newsList__text span {
    display: inline;
    -webkit-transition: background-size .6s;
    transition: background-size .6s;
    background-image: -webkit-gradient(linear, left top, right top, from(#503733), to(#503733));
    background-image: linear-gradient(90deg, #503733, #503733);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 3px;
    padding-bottom: .1875rem;
  }

  .p-newsList__none {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-price__content {
    padding: 24px 27px 52px;
    padding: 1.5rem 1.6875rem 3.25rem;
  }

  .p-price__content + .p-price__content {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-price__subtitle {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-price__table {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-price__notes {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }

  .p-priceTable__head,
  .p-priceTable__data {
    padding: 13px;
    padding: .8125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-priceTable small {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-priceTable__head--room {
    width: 39.4%;
  }

  .p-priceTable__head--time {
    width: 21.3%;
  }

  .p-priceTable__head--setup {
    width: 17%;
  }

  .p-priceTable__head--price {
    width: 22.3%;
  }

  .p-privacy__container p,
  .p-privacy__container ul li,
  .p-privacy__container ol li {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-privacy__container p,
  .p-privacy__container h1,
  .p-privacy__container h2,
  .p-privacy__container h3,
  .p-privacy__container h4,
  .p-privacy__container h5,
  .p-privacy__container h6,
  .p-privacy__container ul,
  .p-privacy__container ol {
    margin-top: 2em;
  }

  .p-privacy__container table th,
  .p-privacy__container table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-privacy__container table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-privacy__container a:hover {
    opacity: .7;
  }

  .p-schedule__header {
    padding-bottom: 5px;
    padding-bottom: .3125rem;
  }

  .p-schedule__current-month {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .p-schedule__month-tab {
    -webkit-transition: color .3s;
    transition: color .3s;
    padding: 6px 10px;
    padding: .375rem .625rem;
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-schedule__month-tab:hover {
    color: #988986;
  }

  .p-schedule__head {
    gap: 5%;
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-schedule__date {
    gap: 7px;
    gap: .4375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24%;
    font-weight: 700;
    line-height: 1;
  }

  .p-schedule__title {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1.75;
  }

  .p-schedule__day {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .p-schedule__week {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .p-schedule__badge {
    width: 41px;
    width: 2.5625rem;
  }

  .p-schedule__contents {
    gap: 5%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 23px;
    margin-top: 1.4375rem;
    width: 100%;
  }

  .p-schedule__contents:not(:has(.p-schedule__main-image)) {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .p-schedule__main-image img {
    aspect-ratio: 240/300;
  }

  .p-schedule__main-image img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-schedule__main-image {
    width: 24%;
  }

  .p-schedule__right {
    width: 71%;
  }

  .p-schedule__artists-swiper-container {
    position: relative;
    padding: 0 20px;
    padding: 0 1.25rem;
  }

  .p-schedule__artists-swiper {
    margin: 0;
    max-width: 100%;
    overflow: clip;
  }

  .p-schedule__artists-swiper--has-nav {
    margin: 0;
  }

  .p-schedule__artist {
    max-width: 160px;
  }

  .p-schedule__artist-name {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-schedule__text {
    margin-top: 22px;
    margin-top: 1.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .p-schedule__text a:hover {
    opacity: .7;
  }

  .p-schedule__actions {
    gap: 16px;
    gap: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 34px;
    margin-top: 2.125rem;
  }

  .p-schedule__btn-wrapper {
    width: 50%;
    max-width: 200px;
  }

  .p-schedule__link-caption {
    margin-top: 8px;
    margin-top: .5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-schedule__no-posts {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-schedule__swiper-button-next,
  .p-schedule__swiper-button-prev {
    display: block;
  }

  .p-scheduleModal__container {
    width: 800px;
    width: 50rem;
  }

  .p-scheduleModal__image {
    max-height: 700px;
    max-height: 43.75rem;
  }

  .p-thanks__container {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-thanks__btn {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {

  .p-header__nav li > a span {
    position: relative;
  }

  .p-header__nav li > a span::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
    background-color: #fff;
    width: 0;
    height: 2px;
    content: '';
  }

  .p-header__nav li > a:hover span::after {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media (min-width: 1000px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */