@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #CA7F13;
  background-color: #F9F8F6;
  overflow-x: hidden;
  width: 100%;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

body.noscroll {
  overflow: hidden;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* 下に30pxの位置から */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* 透過率と縦方向の移動を1秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 30px上に移動する */
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}

.l-container {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 50rem;
    text-align: center;
    width: auto;
  }
}

.l-footer {
  margin-top: 6.375rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #54372D;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 7.5rem;
  }
}

.l-footer__logo a {
  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;
}

.l-footer__logo-img {
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo-img {
    width: 4rem;
    height: 4rem;
    margin-right: 0.5rem;
  }
}

.l-footer__logo-text {
  font-family: "Marcellus", serif;
  color: #54372D;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-footer__logo-text {
    font-size: 1.75rem;
  }
}

.l-footer__nav {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    margin-top: 2.875rem;
  }
}

.l-footer__nav-list {
  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;
}

.l-footer__nav-item {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  margin: 0 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin: 0 1.5625rem;
  }
}

.l-footer__nav-item:not(:last-child)::after {
  content: "|";
  color: #54372D;
  position: absolute;
  right: -0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-footer__nav-item:not(:last-child)::after {
    right: -1.5625rem;
  }
}

.l-footer__link {
  margin-top: 1.875rem;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  position: relative;
  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 (min-width: 768px) {
  .l-footer__link {
    margin-top: 2rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.l-footer__link-list {
  margin: 0 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__link-list {
    margin: 0 1.5625rem;
  }
}

.l-footer__link-list:not(:last-child)::after {
  content: "|";
  color: #54372D;
  position: absolute;
  right: -0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-footer__link-list:not(:last-child)::after {
    right: -1.5625rem;
  }
}

.l-footer__copyright {
  margin-top: 2.5rem;
  font-family: "Marcellus", serif;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 3.28125rem;
  }
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  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;
  background: #949E33;
  border-radius: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  #page-top a {
    width: 5rem;
    height: 5rem;
  }
}

#page-top a:hover {
  background: #54372D;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 1.5625rem;
  bottom: 1.5625rem;
  z-index: 2; /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media screen and (min-width: 768px) {
  #page-top {
    right: 3.125rem;
    bottom: 3.125rem;
  }
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
.l-header {
  padding: 1.25rem 1.25rem 0 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 3rem 3rem 0 3rem;
  }
}

.l-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo-img {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo-img {
    width: 4rem;
    height: 4rem;
    margin-right: 0.5rem;
  }
}

.l-header__logo-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    display: block;
    font-family: "Marcellus", serif;
    color: #54372D;
    font-size: 1.75rem;
    letter-spacing: 0.2em;
    font-weight: normal;
  }
}

.l-header__nav-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__nav-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5625rem;
    margin-right: 1.5625rem;
  }
}

.l-header__nav-item {
  font-family: "Marcellus", serif;
  color: #54372D;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #D4CEBE;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  #g-nav {
    display: none;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: left;
}

#g-nav li a {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  right: 20px;
  cursor: pointer;
  width: 6.25rem;
  height: 1.875rem;
  background-color: #949E33;
  border-radius: 2.5rem;
}
@media screen and (min-width: 768px) {
  .openbtn {
    display: none;
  }
}

.openbtn.active {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 3.125rem;
}

.openbtn p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  left: 0.5625rem;
  top: 0.25rem;
}

.openbtn.active p {
  display: none;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 8.5px;
  height: 1px;
  background-color: #fff;
  width: 0.75rem;
}

.openbtn span:nth-of-type(1) {
  top: 11px;
}

.openbtn span:nth-of-type(2) {
  top: 15px;
}

.openbtn span:nth-of-type(3) {
  top: 19px;
}

.openbtn.active span:nth-of-type(1) {
  top: 8px;
  left: 9px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 12px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 20px;
  left: 9px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 12px;
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 75rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-inner-2 {
  width: 100%;
  max-width: 1260px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-inner-2 {
    width: 100%;
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.c-breadcrumb {
  margin: 0 0 3.71875rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    margin: 0 0 5.1875rem 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.c-breadcrumb__between {
  margin: 0 1rem;
}

.c-btn-s {
  width: 7.5rem;
  height: 1.875rem;
  padding: 0.375rem 0;
  background-color: #949E33;
  color: #fff;
  border-radius: 2.5rem;
  font-size: 0.75rem;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn-s {
    width: 10rem;
    height: 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.c-btn-s1 {
  width: 12.5rem;
  height: 2.5rem;
  display: inline-block;
  padding: 0.5625rem;
  background-color: #949E33;
  color: #fff;
  border-radius: 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  border: none;
  cursor: pointer;
}

.c-btn {
  width: 12.5rem;
  border-radius: 2.5rem;
  display: inline-block;
  background-color: #949E33;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  position: relative;
}

.c-btn span {
  margin-left: 1.625rem;
}

.c-btn1 {
  width: 10rem;
  border-radius: 2.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #949E33;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  position: relative;
  text-transform: capitalize;
}

.c-btn1 span {
  margin-left: 0.6875rem;
}

.c-button {
  width: 160px;
  display: inline-block;
  text-align: center;
  padding: 8px;
  background-color: #949E33;
  border-radius: 40px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border: none;
}

@media (hover: hover) {
  .c-button {
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}
.c-price-title {
  font-family: "Marcellus", serif;
  font-size: 5.25rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.c-section-title {
  position: relative;
  z-index: 1;
}

.c-section-title h2 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title h2 {
    font-size: 5.25rem;
    letter-spacing: 0.04em;
  }
}

.c-section-title p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title p {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
}

.c-section-title span {
  position: absolute;
  top: -1.25rem;
  left: 3.75rem;
  font-family: "Parisienne", cursive;
  font-size: 4.5rem;
  text-transform: capitalize;
  color: rgba(202, 127, 19, .08);
  z-index: 0;
  pointer-events: none; /* 背景テキストがクリックできないようにする */
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title span {
    top: -2.1875rem;
    left: 6.25rem;
    font-size: 7.5rem;
  }
}

.c-section-title2 {
  position: relative;
  z-index: 1;
  text-align: center;
}

.c-section-title2 h2 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title2 h2 {
    font-size: 5rem;
    letter-spacing: 0.1em;
  }
}

.c-section-title2 p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title2 p {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.c-section-title3 {
  position: relative;
  z-index: 1;
}

.c-section-title3 h2 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title3 h2 {
    font-size: 5.25rem;
    letter-spacing: 0.04em;
  }
}

.c-section-title3 span {
  position: absolute;
  top: 1.5625rem;
  left: 5rem;
  font-family: "Parisienne", cursive;
  font-size: 4.5rem;
  text-transform: capitalize;
  color: rgba(202, 127, 19, .08);
  z-index: 0;
  pointer-events: none; /* 背景テキストがクリックできないようにする */
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title3 span {
    top: -3.125rem;
    left: 0;
    right: 0;
    font-size: 7.5rem;
  }
}

.c-section-title4 {
  position: relative;
  z-index: 1;
}

.c-section-title4 h2 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title4 h2 {
    font-size: 5.25rem;
    letter-spacing: 0.04em;
  }
}

.c-section-title4 p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 0.6666666667;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title4 p {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-top: 0.875rem;
  }
}

.c-section-title4 span {
  position: absolute;
  top: -1.875rem;
  left: 0;
  font-family: "Parisienne", cursive;
  font-size: 4.5rem;
  text-transform: capitalize;
  color: rgba(202, 127, 19, .08);
  z-index: 0;
  pointer-events: none; /* 背景テキストがクリックできないようにする */
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title4 span {
    left: 6.25rem;
    right: 0;
    font-size: 7.5rem;
  }
}

.c-section-title5 {
  position: relative;
  z-index: 1;
}

.c-section-title5 h2 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: normal;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title5 h2 {
    font-size: 5.25rem;
    letter-spacing: 0.04em;
  }
}

.c-section-title5 span {
  position: absolute;
  top: 18%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 4.5rem;
  text-transform: capitalize;
  color: rgba(202, 127, 19, .08);
  z-index: 0;
  pointer-events: none; /* 背景テキストがクリックできないようにする */
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-section-title5 span {
    left: 35%;
    font-size: 7.5rem;
  }
}

.c-head-title {
  position: relative;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #CA7F13;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-head-title {
    font-size: 5.25rem;
  }
}

.c-head-title.c-head-title--deco::before {
  text-transform: none;
  position: absolute;
  bottom: -17px;
  left: 3.125rem;
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1.4;
  color: rgba(202, 127, 19, .0784313725);
}
@media screen and (min-width: 768px) {
  .c-head-title.c-head-title--deco::before {
    font-size: 7.5rem;
    left: 5.25rem;
  }
}

.p-features {
  padding: 5.375rem 0 3.625rem;
  background-color: #464646;
}
@media screen and (min-width: 768px) {
  .p-features {
    padding: 10rem 0 3.75rem;
  }
}

.p-features__head {
  position: absolute;
  z-index: 1000;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-features__head {
    top: -60px;
  }
}

.p-features .c-head-title--deco::before {
  content: "Feature";
  left: -0.625rem;
}

.p-features__inner {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1410px;
}
@media screen and (min-width: 1024px) {
  .p-features__inner {
    padding: 0;
    padding: 0 30px 0;
  }
}

.p-features__left {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-features__left {
    display: block;
    padding: 0 44px;
    width: 33.333%;
  }
}

.p-features__guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-features__guide:not(:first-child) {
  margin-top: 46px;
}

.p-features__guide-number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #CA7F13;
  opacity: 0.5;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

.p-feature__guide.active .p-feature__guide-number {
  opacity: 1;
}

.p-features__guide-text {
  margin-left: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #CA7F13;
  opacity: 0.5;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

.p-features__guide.active .p-features__guide-text {
  opacity: 1;
}

.p-archive {
  margin-top: 0.78125rem;
}
@media screen and (min-width: 768px) {
  .p-archive {
    margin-top: 1.5rem;
    margin-bottom: 7.5rem;
  }
}

.p-archive__breadcrumb {
  margin: 0 0 0 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-archive__breadcrumb {
    margin: 0 0 0 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-archive__container {
  margin-top: 5rem;
  padding: 0 1rem 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-archive__container {
    margin: 6.9375rem auto 0;
    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;
    max-width: 67.5rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-archive__list {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}

.p-archive__categories {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-archive__categories {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 2.6875rem;
    margin-top: 0;
    border-left: 1px solid #CA7F13;
    height: auto;
    padding: 0.375rem 0 0 1.03125rem;
  }
}

.p-archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #D4CEBE;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-archive__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 1.25rem;
  }
}

.p-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0.75rem 0.375rem 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-archive__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.625rem 1.5rem;
  }
}

.p-archive__post {
  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;
  width: 100%;
}

.p-archive__post-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-archive__post-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-archive__date {
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive__date {
    margin-right: 1rem;
    line-height: 0.875;
    margin-bottom: 0;
  }
}

.p-archive__title {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-archive__title {
    font-size: 1rem;
    line-height: 0.875;
    letter-spacing: 0.1em;
  }
}

.p-archive__category {
  font-family: "Marcellus", serif;
  color: rgba(84, 55, 45, .2);
  text-transform: capitalize;
  font-size: 1.125rem;
  line-height: 0.875;
  letter-spacing: 0.04em;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-archive__category {
    font-size: 2rem;
  }
}

.p-archive__categories h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-archive__categories h3 {
    font-size: 2rem;
  }
}

.p-archive__categories ul {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-archive__categories ul {
    margin-top: 1.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-archive__categories li {
  width: 50%; /* 2つずつ横並びにする */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .p-archive__categories li {
    width: 100%;
  }
}

.p-archive__categories ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-archive__categories ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.nav-links {
  margin-top: 0.25rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .nav-links {
    margin-top: 1rem;
    gap: 1.5rem;
  }
}

.prev.page-numbers,
.next.page-numbers {
  display: inline-block;
  width: 0.375rem;
  height: 0.65625rem;
}
@media screen and (min-width: 768px) {
  .prev.page-numbers,
  .next.page-numbers {
    width: 0.875rem;
    height: 1.5rem;
  }
}

.page-numbers {
  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;
  font-size: 1rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    font-size: 2rem;
  }
}

.page-numbers.current {
  color: #333333;
}

.p-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #D4CEBE;
  padding-top: 3.5625rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-body {
    padding-bottom: 3.9375rem;
  }
}

.p-body__s {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-body__s {
    margin-top: 2.5rem;
  }
}

.p-body__s-title {
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-body__s-title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-body__s-text {
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-body__s-text {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    text-align: center;
  }
}

.p-body__br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-body__br {
    display: block;
  }
}

.p-body__br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-body__br-sp {
    display: none;
  }
}

.p-body__table-sp {
  margin-top: 0.3125rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
}
.p-body__table-sp th, .p-body__table-sp td {
  padding: 1.71875rem 1.5rem 1.71875rem 0;
  border-bottom: 1px solid #CA7F13;
}
.p-body__table-sp th {
  text-align: left;
}
.p-body__table-sp td {
  font-family: "Noto Serif JP", serif;
}
.p-body__table-sp tr:first-child th {
  border-bottom: none;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  font-weight: normal;
  text-align: center;
}
.p-body__table-sp tr:nth-child(2) th {
  text-align: center;
}
.p-body__table-sp tr:last-child td {
  border-bottom: none;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-top: 0.78125rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-body__table-sp {
    display: none;
  }
}

.p-body__table {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-body__table {
    display: block;
    margin-top: 4rem;
    width: 100%;
    border-collapse: collapse;
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0.04em;
    font-weight: normal;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-body__table th,
.p-body__table td {
  padding: 1.25rem;
  border-bottom: 1px solid #CA7F13;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-body__table th,
  .p-body__table td {
    display: table-cell;
  }
}

.p-body__table th {
  font-weight: 400;
}

.p-body__table tr:last-child td {
  border-bottom: none;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.04em;
  padding-top: 0.78125rem;
  text-align: right;
}

.p-body__table td {
  font-family: "Noto Serif JP", serif;
}

.p-body__m {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-body__m {
    margin-top: 5rem;
  }
}

.p-body__vline, .p-body__set {
  margin-top: 3.28125rem;
}
@media screen and (min-width: 768px) {
  .p-body__vline, .p-body__set {
    margin-top: 6.0625rem;
  }
}

.p-button-container {
  margin-top: 5rem;
  margin-bottom: -2.5rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-button-container {
    margin: 7.5rem auto;
  }
}

.p-button-container__btn {
  width: 9.75rem;
  border-radius: 2.5rem;
  display: inline-block;
  text-align: center;
  background-color: #949E33;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.625rem 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-button-container__btn {
    font-size: 1rem;
    width: 10.375rem;
  }
}

.p-concept {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-concept {
    margin-top: 12.625rem;
  }
}

.p-concept__sp-img {
  width: 100%;
  margin-bottom: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-concept__sp-img {
    display: none;
    margin-bottom: 0;
  }
}

.p-concept__sp-img img {
  aspect-ratio: 315/247;
  width: 100%;
}

.p-concept__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-concept__text-wrapper {
  position: absolute;
  top: 0;
  left: 7%;
}
@media screen and (min-width: 768px) {
  .p-concept__text-wrapper {
    top: 40%;
    left: -1%;
  }
}

.p-concept__head-text p {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  line-height: 2;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-concept__head-text p {
    font-size: 1.75rem;
    margin-top: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__head-text br {
    display: none;
  }
}

.p-concept__img {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: -1;
}

.p-concept__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-concept__body {
  margin-top: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-concept__body {
    margin-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-concept__body-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-concept__body-img {
    display: block;
    width: 100%;
    margin-right: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__body-text {
    margin-right: 1.375rem;
  }
}

.p-concept__body-text p {
  font-family: "Noto Sans JP", sans-serif;
  color: #54372D;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-concept__body-text p {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.p-concept__arrow {
  margin-top: 1.5rem;
  text-align: right;
}

.p-concept__arrow a {
  color: #54372D;
  text-transform: capitalize;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  text-decoration: none;
  outline: none;
}

/*矢印と下線の形状*/
.p-concept__arrow a::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -4px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #54372D;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-concept__arrow a::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #54372D;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*hoverした際の移動*/
.p-concept__arrow a:hover::before {
  left: 20%;
}

.p-concept__arrow a:hover::after {
  right: -5%;
}

.p-custom {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 縦方向の中央揃え */
    max-width: 67.5rem;
    margin: 5rem auto;
    padding: 0;
  }
}

.p-custom__img {
  padding: 0 2.34375rem;
}
@media screen and (min-width: 768px) {
  .p-custom__img {
    width: 50%;
    margin-right: 3.75rem;
    padding: 0;
  }
}

.p-custom__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 240/240;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-custom__img img {
    aspect-ratio: 480/480;
  }
}

.p-custom__body {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-custom__body {
    width: 50%;
    margin-top: 0;
  }
}

.p-custom__title {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.p-custom__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-custom__text {
    margin-top: 3.375rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-cv-reserve {
  margin-top: 7.5rem;
  position: relative;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../../../valentinerose/assets/images/reserve-link-sp.webp") no-repeat center center;
  padding: 3.1875rem 0 4.5625rem;
}
@media screen and (min-width: 768px) {
  .p-cv-reserve {
    background: url("../../../valentinerose/assets/images/reserve-link-pc.webp") no-repeat center center;
    padding: 8.75rem 0;
  }
}

.p-cv-reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, .8);
}

.p-cv-reserve__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-cv-reserve__link:hover {
  opacity: 0.8;
}

.p-cv {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-cv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 3.125rem 0;
    width: 100%;
    max-width: 1200px;
    border-bottom: 1px solid #CA7F13;
  }
}

.p-cv__wrapper::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-cv__wrapper::after {
    display: block;
    border: 1px solid #CA7F13;
  }
}

.p-cv__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 3.125rem;
}

.p-cv__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-cv__link:hover {
  opacity: 0.8;
}

.p-cv__content:nth-child(2) {
  border-bottom: 1px solid #CA7F13;
}

.p-cv__divider {
  width: 19.6875rem;
  height: 1px;
  background-color: #CA7F13;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-cv__divider {
    display: block;
    height: 16.25rem;
    width: 1px;
    background-color: #CA7F13;
  }
}

.p-cv__divider-sp {
  width: 19.6875rem;
  height: 1px;
  background-color: #CA7F13;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-cv__divider-sp {
    display: none;
  }
}

.p-error {
  overflow: hidden;
  margin-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-error {
    margin-top: 10.8125rem;
  }
}

.p-error__container {
  position: relative;
}

.p-error__image {
  width: 100%;
  height: auto;
  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="0.5" /><feFuncG type="linear" slope="0.5" /><feFuncB type="linear" slope="0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.p-error__text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.p-error__title {
  font-size: 2.5rem;
  font-weight: 400;
}

.p-error__text {
  font-size: 1rem;
  font-weight: 400;
}

.p-faq {
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    margin-top: 10.46875rem;
  }
}

.p-faq__container {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__container {
    margin-top: 3.4375rem;
    max-width: 67.5rem;
  }
}

.p-faq__accordion {
  background-color: #D4CEBE;
  padding: 1.125rem 2.25rem 1rem 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__accordion {
    padding: 2.4375rem 2rem 2.375rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.2857142857;
  }
}

.p-faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-faq__question::before {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  top: 0;
  bottom: 0;
  right: -1.375rem;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 0.75rem solid #54372D;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-bottom: 0 solid transparent;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-faq__question::before {
    right: 1.6875rem;
  }
}

.p-faq__question.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-faq__answer {
  display: none;
  margin-top: 1.75rem;
}

.p-faq__question span,
.p-faq__answer span {
  padding-left: 2.25rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-faq__question span::before {
  position: absolute;
  content: "Q";
  top: -1px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__question span::before {
    font-size: 1.5rem;
  }
}

.p-faq__answer span::before {
  position: absolute;
  content: "A";
  top: -1px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__answer span::before {
    font-size: 1.5rem;
  }
}

.p-feature {
  background-color: #464646;
  margin-top: 7.5rem;
  padding: 3.75rem 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-feature {
    margin-top: 12.625rem;
    padding: 10rem 2.9375rem 3.6875rem 5.5rem;
  }
}

.p-feature__title-wrapper {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-feature__title-wrapper {
    position: absolute;
    top: 22%; /* タイトルをセクションの中央付近に配置 */
    left: 40%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); /* タイトルを縦方向に半分ずらす */
    z-index: 10; /* タイトルを前面に表示 */
    padding: 0 20px;
  }
}

.p-feature__background-text {
  position: absolute;
  top: 1.5625rem;
  left: 5rem;
  font-family: "Parisienne", cursive;
  font-size: 4.5rem;
  text-transform: capitalize;
  color: rgba(202, 127, 19, .08);
  z-index: 0;
  pointer-events: none; /* 背景テキストがクリックできないようにする */
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-feature__background-text {
    top: -3.125rem;
    left: 0;
    right: 0;
    font-size: 7.5rem;
  }
}

.p-feature__contents {
  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;
  padding: 0;
  position: relative; /* これが基準となる要素 */
  z-index: 1; /* タイトルより後ろに配置されるように設定 */
}
@media screen and (min-width: 768px) {
  .p-feature__contents {
    padding: 40px;
  }
}

/* 左側のテキスト部分のスタイル */
.p-feature__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.25rem;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  text-align: left;
}

.p-feature__left ul {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-feature__left ul {
    display: block;
    list-style-type: none;
    padding: 0;
  }
}

.p-feature__left li {
  margin-bottom: 0.625rem;
  position: relative;
  padding-left: 2.5rem;
}

.p-feature__left li::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #CA7F13;
}

.p-feature__pc-view {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-feature__pc-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 20px;
  }
}

.p-feature__image-wrapper img {
  width: 100%;
  height: auto;
}

.p-feature__details {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-feature__details {
    padding: 20px;
  }
}

.p-feature__details h2 {
  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;
  text-align: center;
  margin-bottom: 1.125rem;
  color: #CA7F13;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-family: "Marcellus", serif;
}
.p-feature__details h2::before, .p-feature__details h2::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #CA7F13;
  margin: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-feature__details h2 {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
  .p-feature__details h2::before, .p-feature__details h2::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__image-wrapper,
  .p-feature__details {
    width: 48%; /* または必要な幅に調整 */
  }
}

@media screen and (min-width: 768px) {
  .p-feature__details {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

/* 右側の画像と詳細テキストのスタイル */
.p-feature__right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-feature__right {
    padding: 20px;
  }
}

#feature-image {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #feature-image {
    margin-right: 2rem;
  }
}

#feature-image img {
  aspect-ratio: 315/275;
}
@media screen and (min-width: 768px) {
  #feature-image img {
    aspect-ratio: 450/630;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#feature-details h2 {
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  #feature-details h2 {
    margin-top: 0;
    color: #CA7F13;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    font-family: "Marcellus", serif;
    padding-bottom: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-feature__details h2::after {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-feature__details h2::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 47%;
    width: 1.5rem; /* ボーダーの長さ */
    height: 2px; /* ボーダーの太さ */
    background-color: #CA7F13; /* ボーダーの色 */
  }
}

#feature-details span {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

#feature-details p {
  margin-top: 3.3125rem;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2.1111111111;
}

.p-feature__sp-view {
  display: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-feature__sp-view {
    display: block;
  }
}
.p-feature__sp-view .swiper {
  width: 100%;
  padding: 0 1.875rem;
  overflow: visible;
}
.p-feature__sp-view .swiper-wrapper {
  height: auto;
}
.p-feature__sp-view .swiper-slide {
  width: 85%;
  height: auto;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-feature__sp-view .swiper-slide-active {
  opacity: 1;
}
.p-feature__sp-view .p-feature__sp-content {
  padding: 0.4375rem;
  background-color: #464646;
  color: #CA7F13;
}
.p-feature__sp-view .p-feature__sp-content span {
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
}
.p-feature__sp-view .p-feature__sp-content p {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
  opacity: 0.8;
  margin-top: 1.875rem;
  text-align: center;
  padding: 0 1.25rem;
}
.p-feature__sp-view .p-feature__image-wrapper {
  margin-bottom: 1.5rem;
  width: 100%;
}
.p-feature__sp-view .p-feature__image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 315/275;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-feature__sp-view .swiper-pagination {
  position: relative;
  margin-top: 1.875rem;
}
.p-feature__sp-view .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 0.375rem;
}
.p-feature__sp-view .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  /* 左側を非表示 */
  .p-feature__left {
    display: none;
  }
  /* 右側を縦並びにする */
  .p-feature__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  /* 画像を大きく表示 */
  #feature-image {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* フェードインアニメーションの設定 */
.fade-in {
  -webkit-animation: fadeIn 1s ease-in-out;
          animation: fadeIn 1s ease-in-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-flow {
  margin-top: 6.875rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    margin-top: 10.4375rem;
  }
}

.p-flow__container {
  margin-top: 4.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__container {
    margin-top: 6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-flow__list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    max-width: 50rem;
  }
}

.p-flow__item {
  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;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    padding-left: 6.25rem;
    margin-bottom: 2rem;
  }
}

.p-flow__number {
  position: static;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #949E33;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  border-radius: 50%;
  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;
  padding: 0.625rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #949E33;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    border-radius: 50%;
    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;
    padding: 0.625rem 1.3125rem;
  }
}

.p-flow__item::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 1.5rem;
  border-left: 1px dashed #949E33;
}
@media screen and (min-width: 768px) {
  .p-flow__item::before {
    content: "";
    position: absolute;
    left: 1.875rem; /* 番号の中央に合わせる */
    top: 4.3125rem; /* 番号の下から開始 */
    width: 1px;
    height: 4.5rem;
    border-left: 1px dashed #949E33; /* 1pxの破線 */
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item:last-child::before {
    content: none; /* 最後のアイテムには点線を表示しない */
  }
}

.p-flow__item:first-child::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-flow__item:first-child::before {
    content: "";
  }
}

.p-flow__item-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-flow__item-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__item-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.p-flow__item-text {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-flow__item-text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-flow__img-left {
  width: 5rem;
  height: 5rem;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  right: -2.0625rem;
  border-radius: 50%;
  margin-top: 140%;
}
@media screen and (min-width: 768px) {
  .p-flow__img-left {
    width: 9.375rem;
    height: 9.375rem;
    margin-right: 5.1875rem;
    margin-left: -2.625rem;
    margin-top: 27%;
    position: static;
  }
}

.p-flow__img-right {
  width: 6.25rem;
  height: 6.25rem;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  left: -1.875rem;
  border-radius: 50%;
  margin-top: 295%;
}
@media screen and (min-width: 768px) {
  .p-flow__img-right {
    width: 11.25rem;
    height: 11.25rem;
    margin-right: -3.75rem;
    margin-left: 4.375rem;
    position: static;
  }
}

.p-flow__img-right.second-image {
  /* 2つ目の画像のスタイル */
  float: right;
  margin-left: 70px;
  margin-top: 35px;
}

.p-form {
  background-color: #EDE9E4;
}

.p-form__container {
  padding: 3.75rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__container {
    max-width: 67.5rem;
    margin: 0 auto;
    padding: 5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-form__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-form__step-info {
    width: 50%;
  }
}

.p-form__step-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__step-title {
    font-size: 3rem;
  }
}

.p-form__step-text {
  margin-top: 1rem;
  color: #333333;
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__step-text {
    margin-top: 3rem;
  }
}

.p-form__steps {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__steps {
    width: 50%;
    gap: 1.65625rem;
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-form__step-item {
  text-align: center;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 2.4375rem 0.8125rem 2.1625rem 0.625rem;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .p-form__step-item {
    padding: 3.59375rem 0.84375rem 3.34375rem 0.90625rem;
  }
}

.p-form__step-item.active {
  color: #CA7F13;
  border-top: 1px solid #CA7F13;
  border-bottom: 1px solid #CA7F13;
}

.p-form__step-item-number {
  font-family: "Marcellus", serif;
  font-weight: 200;
  text-transform: capitalize;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-form__step-item-number {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-form__step-item-text {
  margin-top: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-form__step-item-text {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

.p-form__form {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-form__form {
    margin-top: 5.625rem;
  }
}

.p-form__thanks {
  text-align: left;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-form__thanks {
    margin-top: 5.625rem;
    text-align: center;
  }
}

.p-form__thanks-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__thanks-title {
    font-size: 2.25rem;
    text-align: center;
  }
}

.p-form__thanks-detail-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__thanks-detail-wrapper {
    font-size: 1.125rem;
    line-height: 2;
    margin: 2rem auto 0;
  }
}

.p-form__thanks-link:hover {
  text-decoration: underline;
}

/* Contact Form 7のスタイルをリセット */
.p-instagram {
  margin-top: 6.875rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-instagram {
    margin-top: 10.4375rem;
  }
}

.p-instagram__grid {
  width: 100%;
  margin-top: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__grid {
    max-width: 800px;
    margin: 4.75rem auto 0; /* 中央揃え */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /* 画像間のスペースを均等に */
  }
}

.p-instagram__grid .sbi_item {
  width: 9.25rem;
  height: 9.25rem;
  margin-bottom: 0.59375rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__grid .sbi_item {
    width: 15rem;
    height: 15rem;
    margin-bottom: 0.625rem;
  }
}

.p-instagram__grid .sbi_item:nth-child(odd) {
  margin-right: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__grid .sbi_item:nth-child(odd) {
    margin-right: 1.875rem;
  }
}

.p-instagram__btn-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
}

.p-instagram__btn {
  text-align: center;
  margin-top: 0.625rem;
  padding: 0.75rem 0 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-instagram__btn {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-intro {
  overflow: hidden;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-intro {
    margin-top: 10.8125rem;
  }
}

.p-intro__wrapper {
  position: relative;
}

.p-intro__title {
  background-color: #D4CEBE;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    padding: 8.125rem 0;
  }
}

.p-intro__title-text {
  font-size: 2rem;
  color: #CA7F13;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-intro__title-text {
    font-size: 5rem;
  }
}

.p-intro__title-sub {
  text-transform: uppercase;
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-intro__title-sub {
    font-size: 3rem;
  }
}

.p-intro__img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}

.p-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-menuinfo {
  padding-top: 0.78125rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-menuinfo {
    padding-top: 1.5rem;
    padding-bottom: 7.4375rem;
  }
}

.p-menuinfo__breadcrumb {
  margin: 0 0 5rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__breadcrumb {
    margin: 0 0 4.625rem 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-menuinfo__wrapper {
  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;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-menuinfo__text {
  margin-right: 2.98125rem;
  margin-top: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__text {
    margin-top: 0;
    margin-right: 2.98125rem;
    width: 50%;
  }
}

.p-menuinfo__text p {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__text p {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-menuinfo__text-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__text-sp {
    display: none;
  }
}

.p-menuinfo__list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 19.6875rem;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

.p-menuinfo__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #CA7F13;
  padding: 0.625rem 0;
  align-items: center;
  padding: 0.375rem 1.0625rem 0.375rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__item {
    padding: 0.5625rem 1.0625rem 0.5rem 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-menuinfo__item:nth-child(odd) {
    border-right: 1px solid #CA7F13;
  }
}

.p-menuinfo__item:last-child {
  border-bottom: none;
}

.p-menuinfo__title {
  font-size: 1.25rem;
  font-family: "Marcellus", serif;
  line-height: 0.3;
  letter-spacing: 0.04em;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__title {
    font-size: 2.0625rem;
    line-height: 0.303030303;
  }
}

.p-menuinfo__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  line-height: 0.4166666667;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-left: 0.53125rem;
}
@media screen and (min-width: 768px) {
  .p-menuinfo__subtitle {
    font-size: 0.5625rem;
    line-height: 1;
    margin-left: 0.8125rem;
    margin-right: 1.25rem;
  }
}

.p-menuinfo__arrow {
  margin-left: auto;
}

.p-message {
  margin-top: 0.78125rem;
}
@media screen and (min-width: 768px) {
  .p-message {
    margin-top: 1.5rem;
  }
}

.p-message__breadcrumb {
  margin: 0 0 0 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-message__breadcrumb {
    margin: 0 0 0 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-message__text {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    margin-top: 7.5rem;
    max-width: 67.5rem;
    margin: 7.5rem auto 0;
    text-align: center;
  }
}

.p-message__text p {
  font-family: "Noto Serif JP", serif;
  color: #333333;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-message__text p {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-mv {
  position: relative;
}

.p-mv__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-mv__text {
  position: absolute;
  top: 49%;
  margin-left: 0.875rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    top: 40%;
    margin-left: 2.25rem;
    font-size: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__text-spbr {
    display: none;
  }
}

.p-news-single {
  margin-top: 0.78125rem;
}
@media screen and (min-width: 768px) {
  .p-news-single {
    margin-top: 1.5rem;
    margin-bottom: 11.375rem;
  }
}

.p-news-single__breadcrumb {
  margin: 0 0 0 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-news-single__breadcrumb {
    margin: 0 0 0 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-news-single__container {
  margin-top: 5rem;
  padding: 0 0.875rem 0 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__container {
    margin: 6.9375rem auto 0;
    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;
    max-width: 67.5rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-news-single__article {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}

.p-news-single__categories {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__categories {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 9.125rem;
    margin-top: 0;
    border-left: 1px solid #CA7F13;
    height: auto;
    padding: 0.375rem 0 0 1.03125rem;
  }
}

.p-news-single__categories h3 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-news-single__categories h3 {
    font-size: 2rem;
  }
}

.p-news-single__categories ul {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-news-single__categories ul {
    margin-top: 1.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-news-single__categories li {
  width: 50%; /* 2つずつ横並びにする */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .p-news-single__categories li {
    width: 100%;
  }
}

.p-news-single__categories ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-news-single__categories ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.p-news-single__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-news-single__title {
    font-size: 1.5rem;
  }
}

.p-news-single__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Marcellus", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-news-single__info {
    font-size: 0.875rem;
  }
}

.p-news-single__date {
  margin-left: 0.5rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__date {
    margin-left: 1rem;
    margin-top: 0;
  }
}

.p-news-single__img {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__img {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

.p-news-single__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 347/249;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news-single__img img {
    aspect-ratio: 691/250;
  }
}

.p-news-single__detail p {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__detail p {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-news-single__detail h2 {
  font-family: "Noto Serif JP", serif;
  color: #CA7F13;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__detail h2 {
    font-size: 1.125rem;
    margin-top: 2rem;
  }
}

.p-news-single__detail a {
  display: block;
  text-decoration: underline;
  color: #0072bc;
}

.p-news-single__btn {
  margin-top: 2.03125rem;
  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; /* 垂直方向の中央寄せ（必要に応じて） */
}
@media screen and (min-width: 768px) {
  .p-news-single__btn {
    margin-top: 2.875rem;
  }
}

.p-news {
  margin-top: 1.625rem;
  padding: 0 1.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 8.25rem;
    padding: 0 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.p-news__head-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-news__head-btn {
    display: block;
    margin-top: auto;
  }
}

.p-news__list {
  margin-top: 2.28125rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 2.28125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-news__item {
  border-top: solid 1px #54372D;
  padding: 1.5625rem 0;
  color: #54372D;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    padding: 1.03125rem 1.25rem;
    border-left: solid 1px #54372D;
    border-top: none;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30%;
            flex: 1 1 30%; /* 各アイテムを同じ幅に */
    margin: 0 10px; /* アイテム間のスペースを調整 */
    -webkit-box-sizing: border-box;
            box-sizing: border-box; /* パディングとボーダーを含めた幅を設定 */
    overflow: hidden; /* コンテンツがはみ出さないようにする */
    text-overflow: ellipsis; /* テキストがはみ出した場合に省略記号を表示 */
  }
}

.p-news__item:last-child {
  border-bottom: solid 1px #54372D;
}
@media screen and (min-width: 768px) {
  .p-news__item:last-child {
    border-right: solid 1px #54372D;
    border-bottom: none;
  }
}

.p-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.p-news__title {
  margin-top: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.p-news__category {
  margin-top: 1rem;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.p-news__list-btn {
  display: block;
  margin: 1.34375rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-news__list-btn {
    display: none;
  }
}

.p-prefecture {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
}

.p-prefecture__detail-banner {
  background-color: #CA7F13;
  text-align: center;
  padding: 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-banner {
    padding: 1.25rem 0;
  }
}

.p-prefecture__detail-banner p {
  font-family: "Marcellus", serif;
  color: #fff;
  text-transform: capitalize;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-banner p {
    font-size: 3rem;
  }
}

.p-prefecture__detail-container {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-container {
    padding: 3.75rem 0 4.875rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}

.p-prefecture__detail-item {
  max-width: 35.625rem;
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-item {
    margin-top: 0;
  }
}

.p-prefecture__detail-map {
  width: 100%;
}

.p-prefecture__detail-map iframe {
  width: 100%;
  aspect-ratio: 315/200;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-map iframe {
    aspect-ratio: 570/360;
  }
}

.p-prefecture__detail-item h4 {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-item h4 {
    font-size: 2rem;
  }
}

.p-prefecture__detail-item p {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-prefecture__detail-item p {
    font-size: 1rem;
  }
}

.p-prefecture__detail-item p:last-child {
  color: #464646;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}

.p-prefectures {
  margin-top: 0.78125rem;
}
@media screen and (min-width: 768px) {
  .p-prefectures {
    margin-top: 1.5rem;
  }
}

.p-prefectures__breadcrumb {
  margin: 0 0 6.875rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-prefectures__breadcrumb {
    margin: 0 0 7.5rem 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-prefectures__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 5.3125rem;
  margin-left: 1.875rem;
  max-width: 17.9375rem;
}
@media screen and (min-width: 768px) {
  .p-prefectures__list {
    margin-top: 8.4375rem;
    max-width: 69.375rem;
    margin-left: 5.625rem;
    gap: 1.25rem;
  }
}

.p-prefectures__item {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  position: relative;
  margin-right: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-prefectures__item {
    font-size: 3rem;
    margin-right: 4.6875rem;
  }
}

.p-prefectures__item::before {
  content: "";
  margin: auto;
  color: #54372D;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.75rem;
  width: 0;
  height: 0;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.416875rem solid #54372D;
}
@media screen and (min-width: 768px) {
  .p-prefectures__item::before {
    border-top: 0.5625rem solid transparent;
    border-bottom: 0.5625rem solid transparent;
    border-left: 0.9375rem solid #54372D;
    left: -2.1875rem;
  }
}

.p-prefectures__item-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-prefectures__item-sub {
    font-size: 0.875rem;
    margin-left: 1rem;
  }
}

.p-pricemenu {
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-pricemenu {
    margin-top: 12.5rem;
  }
}

.p-pricemenu__items {
  margin-top: 3.0625rem;
  margin-left: auto;
  width: 800px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-pricemenu__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
  }
}

.p-pricemenu__item {
  border-bottom: 1px solid #CA7F13;
}

.p-pricemenu__item:last-of-type {
  border-bottom: 1px solid #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-pricemenu__item:last-of-type {
    border-bottom: none;
  }
}

.p-pricemenu__item:nth-child(odd) {
  border-right: none;
}
@media screen and (min-width: 768px) {
  .p-pricemenu__item:nth-child(odd) {
    border-right: 1px solid #CA7F13;
  }
}

.p-pricemenu__link {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  padding: 0.8125rem 0;
}
@media screen and (min-width: 768px) {
  .p-pricemenu__link {
    padding: 0.5rem 0.8125rem;
  }
}

.p-pricemenu__link::after {
  content: "\f054"; /* Font Awesomeのchevron-rightのUnicode */
  font-family: "Font Awesome 5 Free"; /* Font Awesomeのフォントファミリー */
  font-weight: 900; /* Font Awesomeのフォントウェイト */
  position: absolute;
  right: 1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #CA7F13; /* アイコンの色 */
  font-size: 1.3125rem; /* アイコンの高さに合わせたフォントサイズ */
  width: 0.75rem; /* アイコンの幅 */
  height: 1.3125rem; /* アイコンの高さ */
}
@media screen and (min-width: 768px) {
  .p-pricemenu__link::after {
    right: 1.125rem;
  }
}

.p-pricemenu__cat {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: #CA7F13;
}
@media screen and (min-width: 1024px) {
  .p-pricemenu__cat {
    font-size: 2.25rem;
  }
}

.p-pricemenu__cat span {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 1rem;
}

.p-profile {
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding: 84px 0 122px;
  }
}

@media screen and (min-width: 768px) {
  .p-profile__background-text-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-profile__detail {
    max-width: 67.5rem;
    margin: 0 auto;
  }
}

.p-profile__img {
  margin-top: 5.3125rem;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-profile__img {
    margin-top: 4.0625rem;
  }
}

.p-profile__info table {
  margin-top: 2.5rem;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .p-profile__info table {
    margin-top: 3.78125rem;
  }
}

.p-profile__info table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-profile__info table tr {
    display: table-row;
  }
}

.p-profile__info table th,
.p-profile__info table td {
  padding-top: 1.65625rem;
  padding-bottom: 1.65625rem;
  padding-left: 0.84375rem;
  border-bottom: 1px solid #CA7F13;
  text-align: left;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-profile__info table th,
  .p-profile__info table td {
    display: table-cell;
    padding: 1.40625rem;
    width: auto;
  }
}

.p-profile__info table th {
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 40%;
  padding-left: 0.84375rem;
}
@media screen and (min-width: 768px) {
  .p-profile__info table th {
    font-size: 1.125rem;
    line-height: 0.7777777778;
    width: auto;
  }
}

.p-profile__info table td {
  color: #333333;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  width: 60%;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-profile__info table td {
    font-size: 1rem;
    line-height: 0.875;
    width: auto;
  }
}

.p-profile__info table tr:first-child th,
.p-profile__info table tr:first-child td {
  border-top: 1px solid #CA7F13;
}

@media screen and (min-width: 768px) {
  .p-profile__info table tr:last-child th,
  .p-profile__info table tr:last-child td {
    border-bottom: none;
  }
}

.p-reserve-entry__content {
  max-width: 1000px;
  margin: 0 auto;
}

.p-reserve-entry__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: 13px;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve-entry__item.p-reserve-entry__item--confirm {
    gap: 8px;
  }
}

.p-reserve-entry__item:not(:first-child) {
  margin-top: 31px;
}

.p-reserve-entry__item.p-reserve-entry__item--confirm:not(:first-child) {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__item.p-reserve-entry__item--confirm:not(:first-child) {
    margin-top: 28px;
  }
}

.p-reserve-entry__label {
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__label {
    padding-top: 15px;
    padding-right: 20px;
    width: 38%;
  }
}

.p-reserve-entry__label--confirm {
  padding-top: 0;
}

.p-reserve-entry__tag {
  width: 60px;
  border-radius: 15px;
  text-align: center;
  padding: 4px;
  background-color: #54372D;
  color: #F9F8F6;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-right: 16px;
}

.p-reserve-entry__tag.p-reserve-entry__tag--any {
  background-color: #D4CEBE;
  color: #333333;
}

.p-reserve-entry__label-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #333333;
}

.p-reserve-entry__field {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__field {
    width: 62%;
  }
}

.p-reserve-entry__field.p-reserve-entry__field--short {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__field.p-reserve-entry__field--short {
    width: 30%;
  }
}

.p-reserve-entry__input,
.p-reserve-entry__textarea {
  width: 100%;
  background-color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #333333;
  padding: 13px;
  border: none;
}

.p-reserve-entry__textarea {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__textarea {
    height: 120px;
  }
}

.p-reserve-entry__caution {
  margin-top: 2px;
  width: 100%;
  margin-left: auto;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__caution {
    width: 62%;
  }
}

.p-reserve-entry__button {
  margin-top: 29px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__button {
    margin-top: 26px;
  }
}

.p-reserve-entry__confirm-text {
  width: 100%;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #707070;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__confirm-text {
    width: 61%;
    font-size: 1rem;
  }
}

.p-reserve-entry__confirm-text span {
  display: block;
}

.p-reserve-entry__confirm-text.p-reserve-entry__confirm-text--small {
  font-size: 0.875rem;
  color: #333333;
}

.p-reserve-head {
  margin: 0.78125rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-reserve-head {
    margin: 1.0625rem 0 7.5rem;
  }
}

.p-reserve-head__breadcrumb {
  margin: 0 0 5rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__breadcrumb {
    margin: 0 0 7.5rem 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve-head__wrapper {
    max-width: 67.5rem;
    margin: 0 auto;
  }
}

.p-reserve-head__minor {
  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;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__minor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-reserve-head__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__title {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve-head__title br {
    display: none;
  }
}

.p-reserve-head__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__text {
    margin-top: 0;
    margin-right: 6.3125rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve-head__text-br {
    display: none;
  }
}

.p-reserve-head__btn-wrapper {
  width: 15rem;
  background-color: #D4CEBE;
  padding: 2.25rem 2.5rem;
  text-align: center;
  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;
  margin: 0 auto;
}

.p-reserve-head__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-reserve-head__btn {
  margin-top: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-reserve-head__tel {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__tel {
    margin-top: 7.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-reserve-head__tel-info {
    max-width: 60%;
    border-right: 1px solid #CA7F13;
    padding-right: 3.78125rem;
  }
}

.p-reserve-head__tel-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__tel-title {
    font-size: 3rem;
    text-align: left;
  }
}

.p-reserve-head__tel-text {
  margin-top: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__tel-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-reserve-head__tel-container {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__tel-container {
    margin-top: 0;
    max-width: 40%;
    padding: 0 5.625rem;
  }
}

.p-reserve-head__tel-number,
.p-reserve-head__tel-time {
  white-space: nowrap;
}

.p-reserve-head__tel-number {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.25rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: inline-block;
}
.p-reserve-head__tel-number:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-reserve-head__tel-number {
    font-size: 2rem;
    margin-bottom: 2.25rem;
  }
}

.p-reserve-head__tel-time {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
  border: 1px solid #CA7F13;
  padding: 0.4375rem 2.1875rem;
  border-radius: 1rem;
}

.p-reserve-page-form__body {
  max-width: 600px;
  margin: 59px auto 0;
}
@media screen and (min-width: 768px) {
  .p-reserve-page-form__body {
    width: 100%;
    max-width: none;
    margin: 83px auto 0;
  }
}

.p-reserve-page-form__body.p-reserve-page-form__body--confirm {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-reserve-page-form__body.p-reserve-page-form__body--confirm {
    margin-top: 176px;
  }
}

.p-reserve-page-form__thanks {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-reserve-page-form__thanks {
    width: 100%;
    margin-top: 53px;
  }
}

.p-salonconcept {
  background-color: #D4CEBE;
  padding-top: 0.78125rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-salonconcept {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }
}

.p-salonconcept__breadcrumb {
  margin: 0 0 3.71875rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 2.5714285714;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-salonconcept__breadcrumb {
    margin: 0 0 5.1875rem 2.28125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-salonconcept__head {
  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;
}
@media screen and (min-width: 768px) {
  .p-salonconcept__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-salonconcept__head-text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-salonconcept__head-text {
    margin-top: 0;
    z-index: 1;
    position: relative;
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
    margin-right: -1em;
    white-space: nowrap;
  }
}

.p-salonconcept__head-image {
  max-width: 100%;
  height: auto;
}

.p-salonconcept__head-image img {
  aspect-ratio: 315/177;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-salonconcept__head-image img {
    aspect-ratio: 720/405;
  }
}

.p-salonconcept__body {
  margin-top: 1.4875rem;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-salonconcept__body {
    margin-top: 3.75rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-staff {
  background-color: #464646;
}

.p-staff__wrapper {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 3.75rem 1.875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-staff__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-staff__img {
  width: 100%;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-staff__img {
    width: 50%;
    margin-right: 3.75rem;
    padding: 0;
  }
}

.p-staff__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/240;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-staff__img img {
    aspect-ratio: 480/480;
  }
}

@media screen and (min-width: 768px) {
  .p-staff__info {
    width: 50%;
  }
}

.p-staff__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-staff__title {
    margin-top: 0;
  }
}

.p-staff__title h2 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-staff__title h2 {
    font-size: 3rem;
    margin-right: 1.5rem;
  }
}

.p-staff__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.p-staff__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-staff__text {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 3rem;
    font-weight: 300;
  }
}

.p-staff__name {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-staff__name {
    margin-top: 1.5rem;
  }
}

.p-staff__name h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-staff__name h3 {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
}

.p-staff__name p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.p-store {
  background-color: #D4CEBE;
}

.p-store__wrapper {
  margin: 0 auto;
  max-width: 67.5rem;
  padding: 3.75rem 1.875rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-store__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 5rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-store__detail {
  width: 100%;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-store__detail {
    width: 50%;
    border-collapse: collapse;
    max-width: 25rem;
    margin-top: 0;
  }
}

.p-store__detail th,
.p-store__detail td {
  border-bottom: 1px solid #CA7F13;
  padding: 1.25rem 0.5rem;
  text-align: left;
}

.p-store__detail th {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-store__detail th {
    font-size: 1.25rem;
  }
}

.p-store__detail td {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-store__detail td {
    font-size: 0.875rem;
  }
}

.p-store__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-store__map {
    width: 50%;
  }
}

.p-store__map iframe {
  width: 100%;
  aspect-ratio: 315/200;
}
@media screen and (min-width: 768px) {
  .p-store__map iframe {
    aspect-ratio: 540/360;
  }
}

.p-test {
  color: orange;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-slider {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-slider {
    width: 66.6666%;
  }
}

.p-slider__item {
  padding: 0 7px 0;
}
@media screen and (min-width: 768px) {
  .p-slider__item {
    padding: 0;
  }
}

.p-slider__img-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-slider__img-wrap {
    width: 50%;
  }
}

.p-slider__img {
  width: 100%;
}

.p-slider__content {
  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: 32px;
}
@media screen and (min-width: 768px) {
  .p-slider__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-slider__right {
  opacity: 0;
  padding-top: 0;
  width: 100%;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-slider__right {
    opacity: 1;
    padding-top: 13.6%;
    width: 46%;
  }
}

.p-slider__item.slick-active .p-slider__right {
  opacity: 1;
}

.p-slider__top {
  position: relative;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #CA7F13;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-slider__top {
    font-size: 1.125rem;
    padding-bottom: 21px;
  }
}

.p-slider__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 30%;
  top: 50%;
  height: 1px;
  background-color: #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-slider__top::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 24px;
    top: 100%;
  }
}

.p-slider__top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 30%;
  height: 1px;
  background-color: #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-slider__top::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 24px;
    height: 1px;
    top: 100%;
    background-color: #CA7F13;
  }
}

.p-slider__title {
  margin-top: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-slider__title {
    margin-top: 1.1875rem;
    font-size: 1.5rem;
  }
}

.p-slider__text {
  margin-top: 22px;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #CA7F13;
}
@media screen and (min-width: 1024px) {
  .p-slider__text {
    margin-top: 2.625rem;
    font-size: 1.125rem;
  }
}

.p-reserve-entry__field .p-reserve-entry__date.wpcf7-form-control {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  color: #333333;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: none;
  position: relative;
}
.p-reserve-entry__field .p-reserve-entry__date.wpcf7-form-control::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-reserve-entry__field .p-reserve-entry__date.wpcf7-form-control::after {
  content: "";
  display: block;
  width: 24px;
  height: 27px;
  background-image: url(../images/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.p-reserve-entry__field .p-reserve-entry__date.wpcf7-form-control::before {
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background-color: #CA7F13;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.p-reserve-entry__field .p-reserve-entry__date.wpcf7-form-control.is-empty {
  color: #fff;
}

.p-reserve-entry__checkbox {
  color: #333333;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 37px;
     -moz-column-gap: 37px;
          column-gap: 37px;
}
.p-reserve-entry__checkbox span.wpcf7-list-item {
  padding-right: 5px;
  margin: 0;
  position: relative;
}
.p-reserve-entry__checkbox .wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}
.p-reserve-entry__checkbox input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.p-reserve-entry__checkbox .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  content: "";
  display: inline-block;
  background-color: #fff;
  height: 30px;
  margin-right: 13px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 30px;
}
.p-reserve-entry__checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  display: block;
  width: 16px;
  height: 10px;
  border-bottom: 3px solid #CA7F13;
  border-left: 3px solid #CA7F13;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-reserve-entry__field.p-reserve-entry__field--type span.wpcf7-list-item {
  margin: 0;
  min-width: 250px;
  position: relative;
}

.p-reserve-entry__field.p-reserve-entry__field--time span.wpcf7-list-item {
  min-width: 125px;
}
.p-reserve-entry__field.p-reserve-entry__field--time .p-reserve-entry__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
.p-reserve-entry__field.p-reserve-entry__field--time .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-reserve-entry__checkbox-wrap:nth-child(2) {
  margin-top: 12px;
}

.p-reserve-entry__checkbox-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-reserve-entry__checkbox-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-reserve-entry__checkbox-cat {
  display: inline-block;
  padding-right: 20px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  color: #CA7F13;
  font-size: 0.875rem;
  margin-top: 8px;
}
.wpcf7 .wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}
.wpcf7 .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none !important;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
