@charset "UTF-8";
/* リキッドレイアウト対応 */
/* 
    @include flex();
    */
/* 
    @include flex-center();
*/
.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

.u-fw-bold {
  font-weight: 700;
}

.u-small {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-small {
    display: block;
  }
}

.u-blue {
  color: #0b284d;
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

html {
  scroll-behavior: smooth;
}

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

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: inherit;
  cursor: pointer;
}

/* ホバー 
a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  &:hover {
    opacity: 0.8;
  }
}
*/
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #472e24;
  overflow-x: clip;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  min-height: 100vh;
}

img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/* 管理画面 */
.wp-menu-image img {
  width: 30px;
  width: 1.875rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h2,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh2MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* パンくず
------------------------------------------------ */
/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-baseBtn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  max-width: 18.75rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  background-color: #f3f1ee;
  -webkit-box-shadow: 2px 5px 2px rgba(70, 71, 73, .2);
          box-shadow: 2px 5px 2px rgba(70, 71, 73, .2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #472e24;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  position: relative;
}
.c-baseBtn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(71, 46, 36, .7);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-baseBtn.--front {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
@media (any-hover: hover) {
  .c-baseBtn:hover {
    color: #f3f1ee;
    z-index: 1;
  }
  .c-baseBtn:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    z-index: -1;
  }
}
@media screen and (max-width: 480px) {
  .c-baseBtn {
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 380px) {
  .c-baseBtn {
    max-width: 9.375rem;
  }
}

.c-baseBtnText {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 380px) {
  .c-baseBtnText {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.c-btn-border {
  border: 2px solid #472e24;
  border-radius: 0;
  background: #f3f1ee;
  color: #472e24;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-btn-border {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-btn-border:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  border-color: rgba(193, 177, 165, .7);
}

/* ハンバーガーボタン
------------------------------------------------ */
body.is-active {
  pointer-events: none;
  overflow: hidden;
}

body:not(.scroll-at-top) .c-hamburger__inner {
  background-color: rgba(243, 241, 238, .5);
}

body.scroll-at-top .c-hamburger__inner {
  background-color: transparent;
}

.c-hamburger__inner {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-hamburger__inner {
    display: block;
    width: 100%;
    height: 3.75rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
    background-color: #f3f1ee;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .c-hamburger__inner.is-active {
    background-color: transparent;
  }
}

.c-hamburger__logo {
  -ms-flex-item-align: start;
      align-self: start;
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  -webkit-margin-before: 0.75rem;
          margin-block-start: 0.75rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; /* フェードアニメーションを追加（オプション） */
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
}
.c-hamburger__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-hamburger__logo {
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.c-hamburger__logoLink {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .c-hamburger__logoLink:hover, .c-hamburger__logoLink:focus {
    opacity: 0.7;
  }
}

.is-active.c-hamburger__logo {
  visibility: hidden; /* スペースを確保しつつ非表示 */
  opacity: 0; /* フェードアウト */
}

.c-hamburger {
  width: 68px;
  width: 4.25rem;
  height: 60px;
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  cursor: pointer;
  -ms-flex-item-align: start;
      align-self: start;
  border-radius: 0 0 0 1.5rem;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
.c-hamburger span {
  display: block;
  background-color: #472e24;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.c-hamburger span:nth-child(1) {
  width: 32px;
  width: 2rem;
  height: 2px;
  height: 0.125rem;
}
.c-hamburger span:nth-child(2),
.c-hamburger span:nth-child(3) {
  width: 23px;
  width: 1.4375rem;
  height: 2px;
  height: 0.125rem;
}

.c-hamburger.is-active {
  background-color: #f3f1ee;
}
.c-hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.9375rem) rotate(-45deg);
          transform: translateY(0.9375rem) rotate(-45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  width: 32px;
  width: 2rem;
  height: 2px;
  height: 0.125rem;
  -webkit-transform: translateY(-0.5rem) rotate(-135deg);
          transform: translateY(-0.5rem) rotate(-135deg);
}

.c-hamburger__logo.is-active {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/***************************************
c-page__text p-implantText
****************************************/
.c-page__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16/24;
  letter-spacing: 0.02em;
}
.c-page__text.--indent {
  -webkit-margin-start: 71px;
          margin-inline-start: 71px;
  -webkit-margin-start: 4.4375rem;
          margin-inline-start: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .c-page__text.--indent {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-page__text {
    font-size: 0.875rem;
    line-height: 14/24;
  }
}

.c-page__text > span {
  display: inline-block;
}

.c-articleText {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-articleText {
    font-size: 0.875rem;
    line-height: 1;
  }
}

.c-timeText {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-timeText {
    font-size: 0.875rem;
  }
}

/* タイトル
------------------------------------------------ */
.c-sectionTitleInner {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #472e24;
}

.c-sectionTitle {
  width: 100%;
  max-width: 1280px;
  max-width: 80rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  gap: 0.625rem;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle {
    max-width: 100%;
    padding: 0.9375rem 0.625rem;
  }
}
.c-sectionTitle .title__en {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Cinzel", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle .title__en {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 380px) {
  .c-sectionTitle .title__en {
    font-size: 1rem;
  }
}
.c-sectionTitle .title__ja {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle .title__ja {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 380px) {
  .c-sectionTitle .title__ja {
    font-size: 0.625rem;
  }
}

.c-heading__en {
  font-size: 130px;
  font-size: 8.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-family: "Cinzel", sans-serif;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
  white-space: nowrap;
  overflow-x: hidden;
  color: #472e24;
}
@media screen and (max-width: 768px) {
  .c-heading__en {
    line-height: 1;
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 480px) {
  .c-heading__en {
    font-size: 3.125rem;
    line-height: 1;
  }
}

.c-mainTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
  color: #472e24;
}
.c-mainTitle::before {
  content: "";
  display: block;
  width: 70px;
  width: 4.375rem;
  height: 1px;
  background-color: #472e24;
  position: absolute;
  top: 50%;
  left: -100px;
  left: -6.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-mainTitle::after {
  content: "";
  display: block;
  width: 70px;
  width: 4.375rem;
  height: 1px;
  background-color: #472e24;
  position: absolute;
  top: 50%;
  right: -100px;
  right: -6.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-mainTitle {
    font-size: 2rem;
    line-height: 1;
  }
  .c-mainTitle::before {
    width: 3.125rem;
    left: -5rem;
  }
  .c-mainTitle::after {
    width: 3.125rem;
    right: -5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-mainTitle {
    font-size: 1.5rem;
    line-height: 1;
  }
  .c-mainTitle::before {
    width: 2.5rem;
    left: -3.75rem;
  }
  .c-mainTitle::after {
    width: 2.5rem;
    right: -3.75rem;
  }
}

.c-articleTitle {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-articleTitle {
    font-size: 1.125rem;
  }
}

/***************************************
下層ページ
****************************************/
.c-page__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
.c-page__heading-en {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-family: "Cinzel", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-page__heading-en {
    font-size: 3.125rem;
    line-height: 1;
  }
}
.c-page__heading-ja {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-page__heading-ja {
    font-size: 1rem;
    line-height: 1;
  }
}

/*

*/
.c-page__sectionHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
.c-page__sectionHeading-text {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-page__sectionHeading-text {
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 480px) {
  .c-page__sectionHeading-text {
    font-size: 1.25rem;
    line-height: 1;
  }
}
.c-page__sectionHeading::before {
  content: "";
  display: block;
  width: 60px;
  width: 3.75rem;
  height: 1px;
  background-color: #464749;
}
@media screen and (max-width: 768px) {
  .c-page__sectionHeading::before {
    width: 2.5rem;
  }
}

/***************************************
 post-article
****************************************/
.l-post__article {
  background-color: #f3f1ee;
}

.l-post__articleLink {
  display: block;
  position: relative;
}

.l-post__articleImg {
  width: 100%;
}
.l-post__articleImg img {
  width: 100%;
  height: auto;
  max-height: 350px;
  max-height: 21.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: 0.625rem 0.625rem 0 0;
}

.l-post__articleContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0 0 0.625rem 0.625rem;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 480px) {
  .l-post__articleContent {
    gap: 0.625rem;
  }
}

.l-post__articleHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  gap: 0.625rem;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  -webkit-border-after: 1px solid #472e24;
          border-block-end: 1px solid #472e24;
}
.l-post__articleHeading .l-post__articleDate {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .l-post__articleHeading .l-post__articleDate {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .l-post__articleHeading .l-post__articleDate {
    font-size: 0.625rem;
  }
}
.l-post__articleHeading .l-post__articleTitle {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-post__articleHeading .l-post__articleTitle {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .l-post__articleHeading .l-post__articleTitle {
    font-size: 1rem;
  }
}

.l-post__articleItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-border-after: 1px solid #472e24;
          border-block-end: 1px solid #472e24;
  background-color: rgba(243, 241, 238, .6);
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
}
@media screen and (max-width: 480px) {
  .l-post__articleItem {
    -webkit-padding-after: 0.625rem;
            padding-block-end: 0.625rem;
  }
}
.l-post__articleItem .category-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  -webkit-border-end: 1px solid #472e24;
          border-inline-end: 1px solid #472e24;
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
  -webkit-padding-end: 0.625rem;
          padding-inline-end: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.l-post__articleItem .category-text:last-of-type {
  -webkit-border-end: none;
          border-inline-end: none;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
@media screen and (max-width: 480px) {
  .l-post__articleItem .category-text {
    gap: 0.125rem;
    -webkit-padding-end: 0.3125rem;
            padding-inline-end: 0.3125rem;
    font-size: 0.9375rem;
  }
}

.l-post__articleBtn {
  width: 150px;
  width: 9.375rem;
  height: 50px;
  height: 3.125rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-margin-end: 1.25rem;
          margin-inline-end: 1.25rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .l-post__articleBtn {
    width: 7.5rem;
    height: 2.5rem;
  }
}

/***************************************
キャスト一覧
****************************************/
.l-cast__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 30px 10px;
  gap: 1.875rem 0.625rem;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-cast__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .l-cast__list {
    gap: 0.3125rem;
  }
}

.l-cast__listItem {
  display: grid;
  grid-template-columns: 1fr;
  color: #472e24;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
}
@media screen and (max-width: 768px) {
  .l-cast__listItem {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (any-hover: hover) {
  .l-cast__listItem:hover .l-cast__listItemImg img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.l-cast__listBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
  gap: 0.625rem;
  padding: 15px;
  padding: 0.9375rem;
}

.l-cast__listItemImg {
  display: block;
  width: 100%;
  aspect-ratio: 310/360;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-cast__listItemImg {
    aspect-ratio: 1/1;
  }
}
.l-cast__listItemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-cast__listTitle {
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-cast__listTitle .name {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
}
.l-cast__listTitle .ago {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-cast__listTitle .name {
    font-size: 1.25rem;
  }
  .l-cast__listTitle .ago {
    font-size: 0.875rem;
  }
}

.l-cast__listText {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-cast__listText > .text {
  display: block;
}
.l-cast__listText > .text:not(:first-child) {
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .l-cast__listText {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .l-cast__listText {
    font-size: 0.75rem;
  }
}

.l-cast__listBtn {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  background-color: #f3f1ee;
  -webkit-box-shadow: 0 3px 6px 0 rgba(70, 71, 73, .2);
          box-shadow: 0 3px 6px 0 rgba(70, 71, 73, .2);
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -webkit-margin-end: 0.3125rem;
          margin-inline-end: 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .l-cast__listBtn {
    -webkit-margin-before: 0.3125rem;
            margin-block-start: 0.3125rem;
  }
}

.l-cast__listTime {
  background-color: #f3f1ee;
  padding: 8px 15px;
  padding: 0.5rem 0.9375rem;
  border-radius: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
}
.l-cast__listTime > .time {
  display: block;
}
@media screen and (max-width: 768px) {
  .l-cast__listTime {
    font-size: 0.875rem;
  }
}

/***************************************
p-main__post
****************************************/
.l-main {
  -webkit-padding-before: 135px;
          padding-block-start: 135px;
  -webkit-padding-before: 8.4375rem;
          padding-block-start: 8.4375rem;
}
@media screen and (max-width: 768px) {
  .l-main {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
  }
}

/***************************************
l-page__Heading
****************************************/
.l-page__fvInner {
  width: 100%;
  height: auto;
}

.l-page__fvImgWrapper {
  width: 100%;
  height: 391px;
  height: 24.4375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-page__fvImgWrapper {
    aspect-ratio: 768/391;
  }
}

.p-page__fvImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-page__fvImg {
    height: 12.5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-page__fvImg {
    height: 9.375rem;
  }
}

/***************************************
パンクズリスト
****************************************/
.l-page__navgeition {
  width: 100%;
  padding-block: 20px;
  padding-block: 1.25rem;
  background: rgba(193, 177, 165, .7);
}

.l-page__navgeitionInner {
  width: min(100% - 20px, 1280px);
  width: min(100% - 20px, 80rem);
  margin-inline: auto;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  gap: 5px;
  gap: 0.3125rem;
  color: #472e24;
}
@media (any-hover: hover) {
  .l-page__navgeitionInner a:hover, .l-page__navgeitionInner a:focus {
    color: linear-gradient(to bottom, #e0d4c3, #a99177);
  }
}

.l-page__navgeition + span {
  display: inline-block;
}

/***************************************
 pager
****************************************/
.l-page__pagerWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-page__pagerPrev {
  -webkit-padding-end: 50px;
          padding-inline-end: 50px;
  -webkit-padding-end: 3.125rem;
          padding-inline-end: 3.125rem;
  -webkit-border-end: 1px solid #472e24;
          border-inline-end: 1px solid #472e24;
}
@media screen and (max-width: 768px) {
  .l-page__pagerPrev {
    -webkit-padding-end: 1.25rem;
            padding-inline-end: 1.25rem;
  }
}

.l-page__pagerNext {
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
  -webkit-padding-start: 3.125rem;
          padding-inline-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .l-page__pagerNext {
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
  }
}

.l-page__pagerPrev,
.l-page__pagerNext {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #472e24;
}
@media screen and (max-width: 768px) {
  .l-page__pagerPrev,
  .l-page__pagerNext {
    font-size: 1.25rem;
  }
}

.l-page__pagerNextLink,
.l-page__pagerPrevLink {
  position: relative;
}
.l-page__pagerNextLink::after,
.l-page__pagerPrevLink::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #472e24;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.l-page__pagerNextLink:hover::after, .l-page__pagerNextLink:focus::after,
.l-page__pagerPrevLink:hover::after,
.l-page__pagerPrevLink:focus::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-page__pagerNextLink.is-disabled,
.l-page__pagerPrevLink.is-disabled {
  color: rgba(71, 46, 36, .4);
  cursor: default;
  pointer-events: none;
}
.l-page__pagerNextLink.is-disabled::after,
.l-page__pagerPrevLink.is-disabled::after {
  display: none;
}
.l-page__pagerNextLink.is-disabled:hover, .l-page__pagerNextLink.is-disabled:focus,
.l-page__pagerPrevLink.is-disabled:hover,
.l-page__pagerPrevLink.is-disabled:focus {
  color: rgba(71, 46, 36, .4);
}
.l-page__pagerNextLink.is-disabled:hover::after, .l-page__pagerNextLink.is-disabled:focus::after,
.l-page__pagerPrevLink.is-disabled:hover::after,
.l-page__pagerPrevLink.is-disabled:focus::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/***************************************
    料金システム
****************************************/
.l-price__item {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  padding: 30px 20px 60px;
  padding: 1.875rem 1.25rem 3.75rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 768px) {
  .l-price__item {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
    padding: 0.9375rem 0.9375rem 1.875rem;
  }
}

.l-price__itemHeading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-price__itemHeading {
    font-size: 1.125rem;
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}

.l-price__list {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-price__list {
    gap: 1.25rem;
  }
}

.l-price__listItem {
  width: 70%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  gap: 30px;
  gap: 1.875rem;
}
.l-price__listItem > span:first-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #472e24;
}
.l-price__listItem > span {
  display: inline-block;
}
.l-price__listItem .dot-line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
}
.l-price__listItem .dot-line figure {
  width: auto;
}
.l-price__listItem .dot-line figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-price__listItem {
    width: 80%;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .l-price__listItem {
    width: 100%;
  }
}

/***************************************
front
****************************************/
.l-inner {
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
}

.l-page__inner {
  width: min(100% - 20px, 1200px);
  width: min(100% - 20px, 75rem);
  margin-inline: auto;
  padding-block: 40px;
  padding-block: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-page__inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.625rem;
    margin-inline: auto;
    padding-block: 1.25rem;
  }
}

/***************************************
p-attendance
****************************************/
.p-attendance {
  width: 100%;
}

.p-attendance__inner {
  padding: 200px 0 100px 0;
  padding: 12.5rem 0 6.25rem 0;
}

.p-attendance__title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 50px 0;
  padding: 3.125rem 0;
}

.p-attendance table {
  border-collapse: collapse;
  min-width: 1200px;
  width: 100%;
}

.p-attendance th,
.p-attendance td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px;
  white-space: nowrap;
}

.p-attendance th {
  background: #f5f5f5;
}

.p-attendance td img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

/***************************************
p-castList
****************************************/
.p-castList {
  width: 100%;
}

.p-castList__inner {
  width: min(100% - 50px, 1200px);
  width: min(100% - 3.125rem, 75rem);
}
@media screen and (max-width: 768px) {
  .p-castList__inner {
    width: 100%;
  }
}

.p-castList__list {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-castList__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 0.625rem;
  }
}

/***************************************
キャスト詳細
****************************************/
.p-cast {
  width: 100%;
}

.p-cast__inner {
  margin-block: 50px;
  margin-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-cast__inner {
    margin-block: 1.875rem;
  }
}

.p-cast__postInner {
  width: 70%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 25px;
  gap: 1.5625rem;
  margin-block: 50px;
  margin-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-cast__postInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-block: 0.9375rem;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .p-cast__postInner {
    width: 100%;
    gap: 0.9375rem;
  }
}

.p-cast__postSliderWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .p-cast__postSliderWrap {
    gap: 0.3125rem;
  }
}

.p-cast__postSliderMain {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 75%;
          flex: 1 1 75%;
  aspect-ratio: 3/4;
  min-height: 500px;
  min-height: 31.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-cast__postSliderMain {
    min-height: 21.875rem;
  }
}
.p-cast__postSliderMain .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p-cast__postSliderMain .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-cast__postSliderMain .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cast__postSliderThumbnail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.p-cast__postSliderThumbnail .swiper-slide {
  width: 100%;
}
.p-cast__postSliderThumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cast__name {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(71, 46, 36, .5);
  line-height: 1.25;
  letter-spacing: 0.05em;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-cast__name {
    font-size: 1.5rem;
  }
}
.p-cast__name .p-cast__age {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-cast__name .p-cast__size {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #fff;
  color: #472e24;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
}

.p-cast__catch {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-cast__catch {
    font-size: 1rem;
  }
}

.p-cast__body {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-cast__body {
    font-size: 0.875rem;
  }
}

.p-cast__blood {
  border-top: 1px solid #472e24;
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  -webkit-padding-before: 1.25rem;
          padding-block-start: 1.25rem;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-cast__blood {
    font-size: 0.875rem;
  }
}

.p-cast__postSliderCommentWrap {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.p-cast__comment {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  border-top: 1px solid #472e24;
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
  -webkit-padding-before: 0.625rem;
          padding-block-start: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-cast__comment {
    font-size: 0.875rem;
  }
}

.p-cast__commentTitle {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
}
@media screen and (max-width: 768px) {
  .p-cast__commentTitle {
    font-size: 1rem;
  }
}

.p-cast__commentText {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-cast__commentText {
    font-size: 0.875rem;
  }
}

.p-cast__qa {
  margin-block: 50px;
  margin-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-cast__qa {
    margin-block: 2.1875rem;
  }
}

.p-cast__qaTitle {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
}

.p-cast__qaInner dl {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #472e24;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 0.3125rem;
}
.p-cast__qaInner dl dt {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  border-bottom: 1px solid #472e24;
}
@media screen and (max-width: 768px) {
  .p-cast__qaInner dl dt {
    font-size: 1rem;
  }
}
.p-cast__qaInner dl dd {
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
  -webkit-padding-before: 0.625rem;
          padding-block-start: 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-cast__qaInner dl dd {
    font-size: 1rem;
  }
}

.p-cast__shiftItem {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-cast__shiftItem .p-cast__shiftDate {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #f3f1ee;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 0.3125rem 0.3125rem 0 0;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-cast__shiftItem .p-cast__shiftDate {
    font-size: 0.875rem;
    padding: 0.3125rem 0.625rem;
  }
}
.p-cast__shiftItem .p-cast__shiftTime {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #fff;
  border: 1px solid rgba(193, 177, 165, .7);
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 0 0 0.3125rem 0.3125rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-cast__shiftItem .p-cast__shiftTime {
    font-size: 0.75rem;
    padding: 0.3125rem 0.625rem;
  }
}

/***************************************
p-diaryList
****************************************/
.p-diaryList__heading {
  color: #472e24;
}
.p-diaryList__heading span {
  color: #472e24;
}
.p-diaryList__heading span::before, .p-diaryList__heading span::after {
  background-color: #472e24;
}

.p-diaryList__list {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-diaryList__list {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 0.3125rem;
  }
}

/***************************************
 cast-article
****************************************/
.l-diary__article {
  background-color: rgba(243, 241, 238, .6);
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .l-diary__article {
    padding: 0.625rem;
  }
}

.l-diary__img {
  width: 100%;
  max-height: 350px;
  max-height: 21.875rem;
  aspect-ratio: 3/4;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .l-diary__img {
    max-height: auto;
    aspect-ratio: 1/1;
  }
}
.l-diary__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 0.625rem;
}

.l-diary__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.l-diary__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  gap: 0.625rem;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  -webkit-border-after: 1px solid #472e24;
          border-block-end: 1px solid #472e24;
}
.l-diary__heading .l-diary__date {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .l-diary__heading .l-diary__date {
    font-size: 0.75rem;
  }
}
.l-diary__heading .l-diary__cast {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-diary__heading .l-diary__cast {
    font-size: 1.5rem;
  }
}

/***************************************
日記詳細
****************************************/
.p-diary__list {
  width: calc(100% - 2.5rem);
  margin-inline: auto;
  margin-block: 100px;
  margin-block: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  gap: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-diary__list {
    margin-block: 3.125rem;
  }
}

.p-diary__articleContent {
  background-color: rgba(243, 241, 238, .6);
  padding: 50px;
  padding: 3.125rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-diary__articleContent {
    padding: 1.875rem;
  }
}

.p-diary__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-diary__heading {
    gap: 0.3125rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-diary__heading .p-diary__date {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-diary__heading .p-diary__date {
    font-size: 0.875rem;
  }
}
.p-diary__heading .p-diary__cast {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-diary__heading .p-diary__cast {
    font-size: 1.25rem;
  }
}

.p-diary__title {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: 20px;
  margin-block: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-diary__title {
    font-size: 1.875rem;
  }
}

.p-diary__content {
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-diary__content {
    font-size: 0.875rem;
  }
}
.p-diary__content p {
  margin-block: 0;
}
.p-diary__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: 20px;
  margin-block: 1.25rem;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
  -webkit-border-start: 7px solid linear-gradient(to bottom, #e0d4c3, #a99177);
          border-inline-start: 7px solid linear-gradient(to bottom, #e0d4c3, #a99177);
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  -webkit-padding-start: 0.9375rem;
          padding-inline-start: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-diary__content h3 {
    font-size: 1.125rem;
    -webkit-padding-start: 0.625rem;
            padding-inline-start: 0.625rem;
    -webkit-border-start: 5px solid linear-gradient(to bottom, #e0d4c3, #a99177);
            border-inline-start: 5px solid linear-gradient(to bottom, #e0d4c3, #a99177);
  }
}
@media screen and (max-width: 480px) {
  .p-diary__content h3 {
    font-size: 1rem;
  }
}
.p-diary__content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: 20px;
  margin-block: 1.25rem;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
}
@media screen and (max-width: 768px) {
  .p-diary__content h4 {
    font-size: 1rem;
  }
}
.p-diary__content ul {
  list-style: disc;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-diary__content ul {
    font-size: 0.875rem;
  }
}
.p-diary__content ol {
  list-style: decimal;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-diary__content ol {
    font-size: 0.875rem;
  }
}
.p-diary__content li {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-block: 5px;
  margin-block: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-diary__content li {
    font-size: 0.875rem;
  }
}
.p-diary__content img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  margin-block: 20px;
  margin-block: 1.25rem;
}

.p-diary__button {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-diary__button {
    width: 70%;
  }
}

.p-diary__buttonText {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
  background-color: #f3f1ee;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 3px 6px linear-gradient(to bottom, #e0d4c3, #a99177);
          box-shadow: 0 3px 6px linear-gradient(to bottom, #e0d4c3, #a99177);
}
@media screen and (max-width: 768px) {
  .p-diary__buttonText {
    font-size: 0.875rem;
  }
}
.p-diary__buttonText:hover {
  background-color: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #f3f1ee;
}

/***************************************
p-newsList
****************************************/
.p-newsList__heading {
  color: #472e24;
}
.p-newsList__heading span {
  color: #472e24;
}
.p-newsList__heading span::before, .p-newsList__heading span::after {
  background-color: #472e24;
}

.p-newsList__list {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  gap: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-newsList__list {
    grid-template-columns: 1fr;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 1.875rem;
  }
}

.p-front__newsNoPost {
  white-space: nowrap;
}

/***************************************
p-post
****************************************/
.p-post__inner {
  width: min(100% - 50px, 1000px);
  width: min(100% - 3.125rem, 62.5rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-post__inner {
    width: 100%;
  }
}

.p-post__heading {
  color: #472e24;
}
.p-post__heading span {
  color: #472e24;
}
.p-post__heading span::before, .p-post__heading span::after {
  background-color: #472e24;
}

.p-post__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-post__list {
    grid-template-columns: 1fr;
  }
}

.p-post__detailInner {
  width: min(100%, 750px);
  width: min(100%, 46.875rem);
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  background-color: rgba(243, 241, 238, .6);
  padding: 50px 30px;
  padding: 3.125rem 1.875rem;
  border-radius: 0.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-post__detailInner {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}

.p-post__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-post__detailImg {
  width: 100%;
  border-radius: 0.625rem;
}
.p-post__detailImg img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-post__detailContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-post__detailContent {
    gap: 0.3125rem;
  }
}

.p-post__articleContent {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-post__title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

.p-shift__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
.p-shift__item .p-shift__time {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.p-shift__item .p-shift__name {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.p-shift__item .p-shift__data {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: normal;
}
.p-shift__item .p-shift__copy {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.p-shift__item:not(:first-child) {
  margin-block: 10px;
  margin-block: 0.625rem;
  -webkit-padding-before: 10px;
          padding-block-start: 10px;
  -webkit-padding-before: 0.625rem;
          padding-block-start: 0.625rem;
  -webkit-border-before: 3px solid #472e24;
          border-block-start: 3px solid #472e24;
}

.p-post__storeText {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  -webkit-border-before: 3px solid linear-gradient(to bottom, #e0d4c3, #a99177);
          border-block-start: 3px solid linear-gradient(to bottom, #e0d4c3, #a99177);
  -webkit-border-after: 3px solid linear-gradient(to bottom, #e0d4c3, #a99177);
          border-block-end: 3px solid linear-gradient(to bottom, #e0d4c3, #a99177);
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
.p-post__storeText .text-bold {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-margin-after: 5px;
          margin-block-end: 5px;
  -webkit-margin-after: 0.3125rem;
          margin-block-end: 0.3125rem;
}
.p-post__storeText .text-medium {
  font-weight: normal;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  -webkit-padding-start: 0.625rem;
          padding-inline-start: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
}

/***************************************
p-post__backButton
****************************************/
.p-post__pager {
  margin-block: 50px;
  margin-block: 3.125rem;
}

.p-post__backButton {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-margin-end: 1.25rem;
          margin-inline-end: 1.25rem;
}

.p-post__backButtonText {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: linear-gradient(to bottom, #e0d4c3, #a99177);
  background-color: #f3f1ee;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 3px 6px rgba(193, 177, 165, .7);
          box-shadow: 0 3px 6px rgba(193, 177, 165, .7);
}
@media screen and (max-width: 768px) {
  .p-post__backButtonText {
    font-size: 0.875rem;
  }
}
.p-post__backButtonText:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #f3f1ee;
}

/***************************************
p-price
****************************************/
.p-price {
  width: 100%;
  position: relative;
}

.p-price__heading .c-page__heading-en {
  color: #472e24;
}
.p-price__heading .c-page__heading-ja {
  color: #472e24;
}

.p-price__courseHeading {
  -webkit-margin-start: -30px;
          margin-inline-start: -30px;
  -webkit-margin-start: -1.875rem;
          margin-inline-start: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-price__courseHeading {
    margin-block: 0;
  }
}

.p-price__courseText {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-price__courseText {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-price__courseInner {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  min-height: 250px;
  min-height: 15.625rem;
  display: grid;
  gap: 30px;
  gap: 1.875rem;
}
.p-price__courseInner--course {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .p-price__courseInner--course {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-price__courseInner--course {
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-price__courseInner--other {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-price__courseInner--other {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-price__courseInner--other {
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-price__usageHeading {
  color: #472e24;
}
.p-price__usageHeading::before, .p-price__usageHeading::after {
  background-color: #472e24;
}

.p-price__usageItems {
  margin-block: 75px;
  margin-block: 4.6875rem;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .p-price__usageItems {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.625rem;
    margin-block: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-price__usageItems {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-price__usageItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-shadow: 0 0 6px rgba(70, 71, 73, .3);
          box-shadow: 0 0 6px rgba(70, 71, 73, .3);
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0.625rem;
  background-color: #f3f1ee;
}

.p-price__usageItem-img {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-price__usageItem-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-price__usageItemHeading {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

.p-price__usageItemText {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 350;
}

.p-price__usageText {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.p-price__considerationsHeading {
  -webkit-margin-start: -30px;
          margin-inline-start: -30px;
  -webkit-margin-start: -1.875rem;
          margin-inline-start: -1.875rem;
}

.p-price__considerationsInner {
  width: 80%;
  margin-inline: auto;
  margin-block: 50px;
  margin-block: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-price__considerationsInner {
    width: 100%;
    gap: 1.875rem;
    margin-block: 1.875rem;
  }
}

.p-price__considerationsTitle {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-price__considerationsTitle {
    font-size: 1.25rem;
  }
}

.p-price__considerationsText {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.p-price__considerationsText.--red {
  color: #a92828;
}

.p-price__considerationsList {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.p-price__considerationsItem {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/***************************************
l-page__Heading
****************************************/
.p-recruit {
  width: 100%;
  position: relative;
}

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

****************************************/
.p-schedule {
  width: 100%;
  -webkit-padding-after: 100px;
          padding-block-end: 100px;
  -webkit-padding-after: 6.25rem;
          padding-block-end: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-schedule {
    -webkit-padding-after: 3.125rem;
            padding-block-end: 3.125rem;
  }
}

.p-schedule__inner {
  width: min(100% - 50px, 1200px);
  width: min(100% - 3.125rem, 75rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-schedule__inner {
    width: 100%;
  }
}

.p-schedule__calendarInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-schedule__calendarInner {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-schedule__calendarBtn {
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  color: #464749;
}
@media screen and (max-width: 768px) {
  .p-schedule__calendarBtn {
    padding: 0.3125rem;
    font-size: 1rem;
  }
}
.p-schedule__calendarBtn.is-saturday {
  color: blue;
}
.p-schedule__calendarBtn.is-holiday {
  color: red;
}
.p-schedule__calendarBtn.is-active {
  position: relative;
}
.p-schedule__calendarBtn.is-active::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: rgba(71, 46, 36, .7);
  border-radius: 50%;
  z-index: -1;
}

.p-schedule__noMember {
  font-size: 24px;
  font-size: 1.5rem;
  padding: 32px 0;
  padding: 2rem 0;
}

.p-schedule__castList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
  gap: 1.875rem 0.625rem;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-schedule__castList {
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 0.3125rem;
  }
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadeup.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-top-walk__block.fadeup {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.p-top-treatment .p-top-treatment__section:nth-child(2).fadeup {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* -----------------------------------------------------------------
    swiper
----------------------------------------------------------------- */
/***************************************
p-front__newFaceInner
****************************************/
.p-front__newFaceInner {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.js-newface-swiper.swiper__slide {
  min-width: 375px;
  min-width: 23.4375rem;
  margin-inline: auto;
}

/***************************************
contact
****************************************/
.p-page__contactForm {
  width: min(100%, 992px);
  width: min(100%, 62rem);
  margin-inline: auto;
  -webkit-margin-before: 65px;
          margin-block-start: 65px;
  -webkit-margin-before: 4.0625rem;
          margin-block-start: 4.0625rem;
  -webkit-margin-after: 120px;
          margin-block-end: 120px;
  -webkit-margin-after: 7.5rem;
          margin-block-end: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-page__contactForm {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
  }
}

.p-page__contactFormItem {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
}
.p-page__contactFormItem:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
@media screen and (max-width: 768px) {
  .p-page__contactFormItem {
    gap: 0.375rem;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-page__contactFormLabel {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media screen and (max-width: 768px) {
  .p-page__contactFormLabel {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.p-page__contactFormItem input[type=text],
.p-page__contactFormItem input[type=tel],
.p-page__contactFormItem input[type=email],
.p-page__contactFormItem textarea {
  width: 100%;
  padding: 35px;
  padding: 2.1875rem;
  background-color: #fff;
  border-radius: 0.75rem;
  border: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-page__contactFormItem input[type=text],
  .p-page__contactFormItem input[type=tel],
  .p-page__contactFormItem input[type=email],
  .p-page__contactFormItem textarea {
    padding: 1.0625rem 1.5625rem;
  }
}
.p-page__contactFormItem textarea {
  field-sizing: content;
  min-height: 180px;
  height: auto;
  padding: 25px 63px;
  padding: 1.5625rem 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-page__contactFormItem textarea {
    padding: 1.5625rem 1.875rem;
    font-size: 0.9375rem;
  }
}

.p-page__privacyBoxWrapper {
  width: min(100%, 721px);
  width: min(100%, 45.0625rem);
  margin-inline: auto;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-page__privacyBoxWrapper {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-page__privacyBox {
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 25px;
  padding: 1.5625rem;
  border-radius: 0.75rem;
  max-height: 150px;
  overflow-y: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  font-weight: 300;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
@media screen and (max-width: 768px) {
  .p-page__privacyBox {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    padding: 0.8125rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

/***************************************
contactFormCheck
****************************************/
.p-page__contactFormCheck {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 300;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
}

.p-page__contactCheckBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #464749;
  /* チェックされたときだけ表示 */
}
.p-page__contactCheckBox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
.p-page__contactCheckBox input[type=checkbox] {
  display: none;
}
.p-page__contactCheckBox .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  padding-left: 1.75rem;
  cursor: pointer;
}
.p-page__contactCheckBox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 0.25rem;
}
.p-page__contactCheckBox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 6px;
  left: 0.375rem;
  width: 4px;
  width: 0.25rem;
  height: 8px;
  height: 0.5rem;
  border-right: 2px solid #464749;
  border-bottom: 2px solid #464749;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: none;
}
@media screen and (max-width: 768px) {
  .p-page__contactCheckBox .wpcf7-list-item-label::after {
    top: 48%;
  }
}
.p-page__contactCheckBox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  display: block;
}

/***************************************
contactFormSubmit
****************************************/
.p-page__contactFormSubmit {
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  -webkit-margin-before: 2.0625rem;
          margin-block-start: 2.0625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-page__contactFormSubmit {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

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

.wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton {
  padding: 5.5px 22.5px;
  padding: 0.34375rem 1.40625rem;
  width: 250px;
  width: 15.625rem;
  height: 58px;
  height: 3.625rem;
  background-color: inherit;
  color: #fff;
  border: none;
  border-radius: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .wpcf7-form-control.wpcf7-submit.has-spinner.p-page__contactFormButton:hover {
    background-color: #ffb384;
  }
}

.p-page__contactCheckBox .wpcf7-list-item-label {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 300;
}

span.wpcf7-not-valid-tip {
  display: none !important;
}

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

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-image: url(../images/bg/bg-05.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto; /* 縦方向にスクロール可能にする */
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  visibility: hidden; /* 初期状態: 非表示 */
}

.p-drawer.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible; /* 表示状態: 見える */
}

.p-drawer__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  -webkit-padding-before: 80px;
          padding-block-start: 80px;
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  position: relative;
  color: #f3f1ee;
  background-color: rgba(71, 46, 36, .5);
}
@media screen and (max-width: 480px) {
  .p-drawer__inner {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
  }
}

.p-drawer__nav {
  width: calc(100% - 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-drawer__navItems {
  width: 100%;
}

.p-drawer__navItem {
  width: 100%;
  -webkit-padding-start: 5px;
          padding-inline-start: 5px;
  -webkit-padding-start: 0.3125rem;
          padding-inline-start: 0.3125rem;
  border-bottom: 1px solid #f3f1ee;
  padding-block: 20px;
  padding-block: 1.25rem;
}
.p-drawer__navItem:last-child {
  border-bottom: none;
}

.p-drawer__navLink {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  gap: 0.1875rem;
  position: relative;
}
@media (any-hover: hover) {
  .p-drawer__navLink:hover, .p-drawer__navLink:focus {
    color: linear-gradient(to bottom, #e0d4c3, #a99177);
  }
  .p-drawer__navLink:hover::after, .p-drawer__navLink:focus::after {
    width: 100%;
    left: 0;
  }
}
.p-drawer__navLink .navItem--item--en {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Cinzel", sans-serif;
}
.p-drawer__navLink .navItem--item--ja {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}

.p-drawer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
}
.p-drawer__contact .tel {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
}
.p-drawer__contact .time {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}

.p-drawer__logo {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  width: 150px;
  height: 150px;
}
.p-drawer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
fixed
****************************************/
@media only screen and (min-width: 768px) {
  .p-fixed {
    position: fixed;
    bottom: 7.5%;
    right: 3%;
    z-index: 30;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    background-color: rgba(71, 46, 36, .7);
    -webkit-box-shadow: 2px 5px 2px rgba(70, 71, 73, .2);
            box-shadow: 2px 5px 2px rgba(70, 71, 73, .2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (any-hover: hover) {
  .p-fixed:hover {
    -webkit-box-shadow: 0 0 0 rgba(70, 71, 73, .2);
            box-shadow: 0 0 0 rgba(70, 71, 73, .2);
  }
}
@media only screen and (max-width: 768px) {
  .p-fixed {
    display: none;
  }
}

.p-fixed__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  gap: 5px;
  gap: 0.3125rem;
  color: #f3f1ee;
}
.p-fixed__btn .p-fixed__icon {
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-fixed__btn .p-fixed__icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.p-fixed__btn .p-fixed__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (any-hover: hover) {
  .p-fixed__btn:hover .p-fixed__icon img {
    -webkit-animation: iconShake 0.5s ease-in-out;
            animation: iconShake 0.5s ease-in-out;
  }
}

@-webkit-keyframes iconShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes iconShake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-sp_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
@media only screen and (min-width: 768px) {
  .p-sp_fixed {
    display: none;
  }
}

.p-sp_fixed__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-sp_fixed__inner-wrap {
  width: 100%;
  height: 60px;
  height: 3.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.p-sp_fixed__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
}
.p-sp_fixed__btn .p-sp_fixed__icon {
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}
.p-sp_fixed__btn .p-sp_fixed__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-sp_fixed__btn .p-sp_fixed__btn-text {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  color: #464749;
}
.p-sp_fixed__btn:hover .p-sp_fixed__icon img {
  -webkit-animation: iconShake 0.5s ease-in-out;
          animation: iconShake 0.5s ease-in-out;
}

.p-sp_fixed__btn-wrap {
  position: absolute;
  top: -35%;
  right: -5%;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  background-color: #ff5472;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .p-sp_fixed__btn-wrap {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.p-sp_fixed__btn-wrap .p-sp_fixed__btn-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.25rem 1.875rem;
}
.p-sp_fixed__btn-wrap .p-sp_fixed__btn-tel:hover .p-sp_fixed__btn-tel-icon img {
  -webkit-animation: iconShake 0.5s ease-in-out;
          animation: iconShake 0.5s ease-in-out;
}

.p-sp_fixed__btn-tel-icon {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}
.p-sp_fixed__btn-tel-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #472e24;
}
@media screen and (max-width: 768px) {
  .p-footer {
    -webkit-padding-after: 5.625rem;
            padding-block-end: 5.625rem;
  }
}

.p-footer__inner {
  width: min(100% - 16px, 1050px);
  width: min(100% - 16px, 65.625rem);
  margin-inline: auto;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding: 1.25rem;
  }
}

.p-footer__navItems {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 480px) {
  .p-footer__navItems {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-footer__navItem {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.0909090909;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-footer__navItem {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

.p-footer__navLink {
  display: block;
  font-weight: 500;
}
@media (any-hover: hover) {
  .p-footer__navLink:hover {
    color: rgba(193, 177, 165, .7);
  }
}
.p-footer__navLink > span {
  display: block;
}
.p-footer__navLink .navItem--item--ja {
  font-size: 8px;
  font-size: 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 300;
  -webkit-margin-before: 2px;
          margin-block-start: 2px;
  -webkit-margin-before: 0.125rem;
          margin-block-start: 0.125rem;
}

.p-footer__copy {
  width: 100%;
  color: #472e24;
  -webkit-border-before: 1px solid #472e24;
          border-block-start: 1px solid #472e24;
}

.p-footer__copyText {
  display: block;
  text-align: center;
  padding-block: 10px;
  padding-block: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .p-footer__copyText {
    font-size: 0.625rem;
    line-height: 1.8;
    padding-block: 0.625rem;
  }
}

/* -----------------------------------------------------------------
    フロントページ
----------------------------------------------------------------- */
.p-fv {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-fv {
    height: 80vh;
  }
}
.p-fv .p-fv__img {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-fv__inner {
  position: relative;
}

.p-fv__titleInner {
  position: absolute;
  top: 45%;
  right: 10%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-fv__titleInner {
    top: 40%;
  }
}
@media screen and (max-width: 480px) {
  .p-fv__titleInner {
    top: 45%;
    right: 15%;
  }
}

.p-fv__title {
  display: none;
}

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

****************************************/
.p-front__todayCast {
  width: 100%;
  position: relative;
}

.p-front__todayCastCalendar {
  width: 100%;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastCalendar {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-front__todayCastCalendar {
  width: 100%;
  max-width: 1280px;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastCalendar {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-front__todayCastCalendarInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  gap: 0.3125rem;
  padding: 10px 5px;
  padding: 0.625rem 0.3125rem;
  border-radius: 0.625rem;
}

.p-front__todayCastCalendarBtn {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  position: relative;
  color: #464749;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastCalendarBtn {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0.3125rem 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__todayCastCalendarBtn {
    font-size: 1rem;
    padding: 0.3125rem;
  }
}
.p-front__todayCastCalendarBtn.is-saturday {
  color: blue;
}
.p-front__todayCastCalendarBtn.is-holiday {
  color: red;
}
.p-front__todayCastCalendarBtn.is-active {
  position: relative;
}
.p-front__todayCastCalendarBtn.is-active::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background-color: rgba(85, 195, 85, .3);
  border-radius: 50%;
}

.p-front__todayCastBtn {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.p-front__todayCastInner {
  width: 100%;
  max-width: 1200px;
  max-width: 75rem;
  margin-inline: auto;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastInner {
    max-width: 100%;
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
  }
}

.p-front__todayCastItemInner {
  display: none;
}
.p-front__todayCastItemInner.is-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastItemInner.is-active {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.p-front__todayCastItem {
  width: 100%;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  position: relative;
}

.p-front__todayCastLink {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-front__todayCastLink:hover .p-front__todayCastItemImg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__todayCastItemImg {
  width: 100%;
  display: block;
  aspect-ratio: 210/210;
  overflow: hidden;
  position: relative;
}
.p-front__todayCastItemImg img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.p-front__todayCastItemImg .p-front__todayCastItemNew {
  position: absolute;
  top: 7px;
  top: 0.4375rem;
  left: 5px;
  left: 0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  padding: 5px;
  padding: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-front__todayCastItemImg .p-front__todayCastItemNew::before {
  content: "NEW";
}
@media screen and (max-width: 768px) {
  .p-front__todayCastItemImg .p-front__todayCastItemNew {
    font-size: 0.75rem;
    top: 0.1875rem;
    left: 0.125rem;
  }
}

.p-front__todayCastItemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastItemBody {
    padding: 0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__todayCastItemBody {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.1875rem;
  }
}

.p-front__todayCastItemName {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastItemName {
    font-size: 1rem;
  }
}

.p-front__todayCastItemTime {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.p-front__todayCastNoMember {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #472e24;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-front__todayCastNoMember {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

.p-front__todayCastItemCup {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 480px) {
  .p-front__todayCastItemCup {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 380px) {
  .p-front__todayCastItemCup {
    font-size: 0.75rem;
  }
}

/***************************************
    新着キャスト  
****************************************/
.p-front__newFace {
  width: 100%;
  position: relative;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-front__newFace {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
  }
}

.p-front__newFaceContent {
  width: 100%;
  max-width: 1280px;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-front__newFaceItem {
  display: block;
}
.p-front__newFaceItem:hover .p-front__newFaceItemImg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__newFaceItemImg {
  position: relative;
}

.p-front__todayCastItemNew::before {
  content: "NEW";
}

.swiper-slide.is-ghost {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.swiper-slide.is-ghost img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-front__newFaceItemImg {
  position: relative;
  overflow: hidden;
}
.p-front__newFaceItemImg img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  .p-front__newFaceItemImg img {
    aspect-ratio: 3/4;
  }
}

.p-front__newFaceItemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #472e24;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__newFaceItemBody {
    padding: 0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__newFaceItemBody {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.1875rem;
  }
}

.p-front__newFaceItemTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-front__newFaceItemTitle .name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__newFaceItemTitle .name {
    font-size: 1rem;
  }
}
@media screen and (max-width: 380px) {
  .p-front__newFaceItemTitle .name {
    font-size: 0.875rem;
  }
}
.p-front__newFaceItemTitle .ago {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__newFaceItemTitle .ago {
    font-size: 0.75rem;
  }
}

.p-front__todayCastItemNew {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 5px;
  left: 0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-animation: animateNew 1.2s infinite;
          animation: animateNew 1.2s infinite;
  z-index: 2;
}

.p-front__todayCastItemNew::before {
  content: "NEW";
}

@-webkit-keyframes animateNew {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animateNew {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/***************************************
    キャスト
****************************************/
.p-front__cast {
  width: 100%;
  position: relative;
  padding-block: 50px;
  padding-block: 3.125rem;
  color: #464749;
}
@media screen and (max-width: 768px) {
  .p-front__cast {
    padding-block: 2.1875rem;
  }
}

.p-front__castInner {
  width: min(100%, 1280px);
  width: min(100%, 80rem);
  margin-inline: auto;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__castInner {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-front__castItem {
  display: block;
}
.p-front__castItem:hover .p-front__castItemImg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__castItemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 250/250;
  overflow: hidden;
}
.p-front__castItemImg img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__castItemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
  color: #472e24;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__castItemBody {
    padding: 0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__castItemBody {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.1875rem;
  }
}

.p-front__castItemTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-front__castItemTitle .name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__castItemTitle .name {
    font-size: 1rem;
  }
}
@media screen and (max-width: 380px) {
  .p-front__castItemTitle .name {
    font-size: 0.875rem;
  }
}
.p-front__castItemTitle .ago {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__castItemTitle .ago {
    font-size: 0.75rem;
  }
}

.p-front__castItemText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
}
.p-front__castItemText .text {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__castItemText .text {
    font-size: 0.6875rem;
    letter-spacing: 0.01em;
  }
}

/***************************************
ニュース
****************************************/
.p-front__news {
  width: 100%;
  -webkit-padding-before: 50px;
          padding-block-start: 50px;
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-front__news {
    -webkit-padding-before: 2.1875rem;
            padding-block-start: 2.1875rem;
  }
}

.p-front__newsInner {
  width: 100%;
  max-width: 1100px;
  max-width: 68.75rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 1;
  color: #464749;
}
@media screen and (max-width: 768px) {
  .p-front__newsInner {
    padding-inline: 0.625rem;
  }
}

.p-front__newsItem {
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
}

.p-front__newsItemInner {
  width: 100%;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 50px 10px;
  gap: 3.125rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__newsItemInner {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
    gap: 0.625rem 0.3125rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-front__newsItemLink {
  display: block;
  position: relative;
}
.p-front__newsItemLink:hover .p-front__newsItemImg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__newsItemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
}
.p-front__newsItemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__newsItemContent {
  padding: 10px;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__newsItemContent {
    padding: 0.3125rem;
  }
}

.p-front__newsItemItem .category-heading {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-front__newsItemItem .category-heading {
    font-size: 0.875rem;
  }
}
.p-front__newsItemItem .category-text {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  padding-inline: 3px;
  padding-inline: 0.1875rem;
  border-right: 0.5px solid #472e24;
}
.p-front__newsItemItem .category-text:last-child {
  border-right: none;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .p-front__newsItemItem .category-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__newsItemItem .category-text {
    font-size: 0.75rem;
  }
}

.p-front__newsItemBtn {
  width: 150px;
  width: 9.375rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
.p-front__newsItemBtn .c-btn-border__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-front__newsItemBtn {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
  .p-front__newsItemBtn .c-btn-border__text {
    font-size: 0.875rem;
  }
}

/***************************************
    写メ日記
****************************************/
.p-front__diary {
  width: 100%;
  position: relative;
}

.p-front__diaryItemInner {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
  gap: 1.25rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-front__diaryItemInner {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-front__diaryItemInner {
    gap: 0.625rem;
  }
}

.p-front__diaryItem {
  display: block;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
}
.p-front__diaryItem:hover .p-front__diaryItemImg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__diaryItemImg {
  width: 100%;
  height: auto;
  aspect-ratio: 200/200;
  overflow: hidden;
}
.p-front__diaryItemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-front__diaryItemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  padding: 10px;
  padding: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0d4c3), to(#a99177));
  background: linear-gradient(to bottom, #e0d4c3, #a99177);
}

.p-front__diaryItemHeading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.p-front__diaryItemTitle {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-front__diaryItemTitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .p-front__diaryItemTitle {
    font-size: 0.875rem;
  }
}

.p-front__diaryNoPost {
  text-align: center;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #f3f1ee;
}
@media screen and (max-width: 768px) {
  .p-front__diaryNoPost {
    font-size: 2.1875rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    margin-inline: auto;
  }
}

/***************************************
    料金システム
****************************************/
.p-front__price {
  width: 100%;
  position: relative;
  padding-block: 100px 50px;
  padding-block: 6.25rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-front__price {
    padding-block: 3.125rem;
  }
}

.p-front__priceHeading {
  text-align: center;
  position: relative;
}

.p-front__priceTitleText {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-front__priceTitleText {
    top: 70%;
  }
}

/***************************************
    店舗情報
****************************************/
.p-front__info {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-front__info {
    padding-block: 0 3.125rem;
  }
}

.p-front__accessItem {
  color: #464749;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-front__accessItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
  }
}

.p-front__accessItemMap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemMap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    aspect-ratio: auto;
    height: 12.5rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.p-front__accessItemMap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemMap iframe {
    height: 12.5rem;
  }
}

.p-front__infoBanner {
  display: block;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-front__infoBanner {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}
.p-front__infoBanner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-front__accessItemHeading {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  font-family: "Cinzel", sans-serif;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemHeading {
    font-size: 2.1875rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-front__accessItemText {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemText {
    font-size: 0.875rem;
  }
}

.p-front__accessItemNav {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  border-top: 1px solid rgba(193, 177, 165, .7);
  -webkit-padding-before: 5px;
          padding-block-start: 5px;
  -webkit-padding-before: 0.3125rem;
          padding-block-start: 0.3125rem;
  border-bottom: 1px solid rgba(193, 177, 165, .7);
  -webkit-padding-after: 5px;
          padding-block-end: 5px;
  -webkit-padding-after: 0.3125rem;
          padding-block-end: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemNav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3125rem;
  }
}

.p-front__accessItemNavText {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #472e24;
}

.p-front__accessItemBtn {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemBtn {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-front__accessItemBtnLink {
  display: block;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 3px 6px rgba(193, 177, 165, .7);
          box-shadow: 0 3px 6px rgba(193, 177, 165, .7);
  width: 200px;
  width: 12.5rem;
  height: 50px;
  height: 3.125rem;
  background-color: #472e24;
  color: #f3f1ee;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-front__accessItemBtnLink {
    width: 9.375rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .p-front__accessItemBtnLink:hover {
    -webkit-animation: animate 1s infinite;
            animation: animate 1s infinite;
  }
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-front__linkTitle {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-front__linkTitle {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-front__linkItemInner {
  margin-block: 50px;
  margin-block: 3.125rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 5px;
  gap: 1.25rem 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-front__linkItemInner {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.3125rem;
    margin-block: 1.25rem 0;
  }
}
@media screen and (max-width: 480px) {
  .p-front__linkItemInner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3125rem;
  }
}

.p-front__linkItemLink {
  display: block;
}
.p-front__linkItemLink img {
  width: 100%;
  height: auto;
  aspect-ratio: 200/40;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  width: 100%;
}

.p-header__inner {
  margin-top: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body:not(.scroll-at-top) .p-header__inner {
  background-color: rgba(71, 46, 36, .3);
}
body.scroll-at-top .p-header__inner {
  background-color: transparent;
}

body:not(.home) .p-header__inner {
  color: #472e24;
  text-shadow: none;
}
:not(.scroll-at-top) body:not(.home) .p-header__inner {
  background-color: transparent;
}
body:not(.home) .p-header__inner .p-header__navItem {
  border-color: #472e24;
}

.p-header__inner {
  width: 100%;
  height: 135px;
  height: 8.4375rem;
  margin-inline: auto;
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  margin-inline: auto;
  color: #f3f1ee;
  text-shadow: 0 1px 6px #472e24;
  text-shadow: 0 0.0625rem 0.375rem #472e24;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    display: none;
  }
}
.p-header__inner--page {
  background-color: transparent;
}

.p-header__logo {
  width: 250px;
  width: 15.625rem;
}

.p-header__logoLink {
  display: block;
  width: 100px;
  height: 100px;
}
.p-header__logoLink img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(0);
          filter: brightness(0) invert(0);
}
@media (any-hover: hover) {
  .p-header__logoLink:hover {
    opacity: 0.7;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  gap: 2.5rem;
}

.p-header__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  gap: 0.9375rem;
}

.p-header__navItem {
  font-size: 15px;
  font-size: 0.9375rem;
  white-space: nowrap;
  padding-left: 15px;
  padding-left: 0.9375rem;
  border-left: 1px solid #f3f1ee;
  border-left: 0.0625rem solid #f3f1ee;
}
.p-header__navItem:first-child {
  padding-left: 0;
  border-left: none;
}

.p-header__navItem > span {
  display: block;
}

.p-header__navLink {
  display: block;
  position: relative;
}
.p-header__navLink::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background-color: #472e24;
  position: absolute;
  bottom: -5px;
  bottom: -0.3125rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-header__navLink:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.p-header__navButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-header__navButtonItem {
  width: 249px;
  width: 15.5625rem;
  height: 55px;
  height: 3.4375rem;
}
@media screen and (max-width: 1279px) {
  .p-header__navButtonItem {
    width: 11.6875rem;
    height: 2.8125rem;
  }
}

.p-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}
.p-header__contact .time {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-header__contactLink {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-header__contactLink:hover {
  opacity: 0.7;
}

/* -----------------------------------------------------------------
  ローディング画面
----------------------------------------------------------------- */
.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f1ee;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
}

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

.p-loading__logo {
  position: relative;
  width: 300px;
  width: 18.75rem;
  height: 300px;
  height: 18.75rem;
  z-index: 600;
}
.p-loading__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 下層ページ
------------------------------------------------ */
.p-page__headingWrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-page__headingWrap {
    gap: 1rem;
  }
  .p-page__headingWrap .p-page__headingText {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
    margin-top: 0;
    position: static;
  }
}

.p-page__heading {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 600;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  border-bottom: 3px dotted #464749;
}
@media screen and (max-width: 768px) {
  .p-page__heading {
    font-size: 1.5625rem;
    line-height: 1.48;
  }
}
@media screen and (max-width: 480px) {
  .p-page__heading {
    font-size: 1.375rem;
    line-height: 1.1818181818;
  }
}
.p-page__heading--thanks {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-page__headingText {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-page__headingText {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-page__contactForm {
  width: 100%;
}

/***************************************
search
****************************************/
.p-search-results {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-search-results__item {
  padding: 10px;
  padding: 0.625rem;
}

.p-search-results__link {
  display: block;
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
}
@media (any-hover: hover) {
  .p-search-results__link:hover, .p-search-results__link:focus {
    color: linear-gradient(to bottom, #e0d4c3, #a99177);
  }
}

.privacy-content {
  width: 100%;
  margin-block: 120px;
  margin-block: 7.5rem;
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .privacy-content {
    margin-block: 5rem;
  }
}

.privacy-content__inner {
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
  margin-inline: auto;
}

.privacy-content__heading {
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(28px, 6vw, 48px);
  text-align: center;
  margin-block: 8px 24px;
  margin-block: 0.5rem 1.5rem;
}

.privacy-content__title {
  font-weight: 700;
  font-size: clamp(18px, 3.6vw, 22px);
  margin-block: 8px 16px;
  margin-block: 0.5rem 1rem;
}

.privacy-content__section {
  padding-block: 16px;
  padding-block: 1rem;
  border-top: 1px solid #e5e7eb;
}

.privacy-content__subTitle {
  font-weight: 700;
  font-size: clamp(16px, 3.4vw, 18px);
  margin-bottom: 0.5em;
}

.privacy-content__text {
  line-height: 1.9;
}

.privacy-content__list {
  padding-left: 1.2em;
  margin: 0.5em 0 0;
}

.privacy-content__list li {
  list-style: disc;
  margin: 0.3em 0;
}

.privacy-content__dl {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 0.4em 1em;
  padding-block: 0.6em;
  border-bottom: 1px dashed #e5e7eb;
}

.privacy-content__dl:last-child {
  border-bottom: none;
}

.note {
  font-size: 0.9em;
  color: #666;
  border-left: 3px solid #0ea5e9;
  padding: 0.5em 0.75em;
  background: rgba(14, 165, 233, .05);
  border-radius: 4px;
}

/***************************************
p-shift-form
****************************************/
.p-shift__inner {
  width: calc(100% - 2.5rem);
  margin-inline: auto;
  padding: 50px 0 50px 0;
  padding: 3.125rem 0 3.125rem 0;
}

.p-shift__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.p-shift__table {
  min-width: 1220px;
  min-width: 76.25rem;
}

.p-shift__thead {
  background-color: #f5f5f5;
  color: #464749;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}

.p-shift__table {
  border-collapse: collapse;
  min-width: 1200px;
  width: 100%;
}

.p-shift__th,
.p-shift__td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px;
  white-space: nowrap;
}

.p-shift__td:nth-child(2) {
  min-width: 80px;
  min-width: 5rem;
}

.p-shift__th {
  background: #f5f5f5;
}

.p-shift__td option.is-registered {
  color: #888;
  font-style: italic;
  background-color: #dadddf;
}

.p-shift__td img {
  width: 100px;
  width: 6.25rem;
  height: auto;
  border-radius: 4px;
}

.p-shift__submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  background-color: #afb7c4;
  color: #f3f1ee;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: bold;
  border-radius: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
/*# sourceMappingURL=style.css.map */
