@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-size: 1rem;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  color: #101010;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* 背景カラー */
  z-index: 9999; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値では非表示 */ /* アニメーション時間は 0.8秒 */
  transition: opacity ease, 0.6s;
}

/* body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。 */
body.js-fade::after {
  opacity: 1;
}

.js-body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .js-drawer.is-active {
    pointer-events: inherit;
    transform: translateX(0);
  }
}

.js-parallax {
  overflow: hidden;
}

.js-parallax img {
  transform: scale(1.1);
  -o-object-position: top;
     object-position: top;
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 1.3s;
  transition-property: opacity, transform;
}

.js-fadeIn.is-scrollIn {
  opacity: 1;
}

.l-footer {
  background: #171717;
}

.l-footer__inner {
  width: 100%;
  max-width: 79.5rem;
  margin-inline: auto;
  padding: 5.875rem 1rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 3.75rem 1.25rem 1.6875rem;
  }
}

.l-footer__button-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-footer__button-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.l-footer__button-item {
  width: 100%;
  max-width: 31.25rem;
}

.l-footer__button-item a {
  width: 100%;
  height: 100%;
  padding-block: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .l-footer__button-item a {
    padding-block: 1.4375rem;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.l-footer__button-item--shop a {
  background: #ffffff;
}

.l-footer__button-item--online a {
  background: #dddddd;
}

@media (any-hover: hover) {
  .l-footer__button-item--shop a:hover {
    background: #a7958b;
    color: #ffffff;
  }
  .l-footer__button-item--online a:hover {
    background: #a7958b;
    color: #ffffff;
  }
}
.l-footer__nav-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 2.75rem;
  padding-left: 6.875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-wrapper {
    flex-direction: column;
    gap: 2.5625rem;
    margin-top: 3.125rem;
    padding-left: 0;
  }
}

.l-footer__nav:first-child {
  width: 16.125rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav:first-child {
    width: 100%;
  }
}

.l-footer__nav:nth-of-type(2) {
  margin-left: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav:nth-of-type(2) {
    margin-left: 0;
  }
}

.l-footer__nav:nth-of-type(3) {
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav:nth-of-type(3) {
    margin-left: 0;
  }
}

.l-footer__nav-title {
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-title {
    line-height: 1.2631578947;
  }
}

.l-footer__nav-title--lg {
  width: 17.4375rem;
}

.l-footer__nav-title a {
  width: 100%;
  overflow: hidden;
}

.l-footer__nav-title a span {
  position: relative;
  display: inline-block;
}

.l-footer__nav-title a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-footer__nav-title a:hover span::before {
    transform: translateX(0);
  }
}
.l-footer__nav-list__wrapper {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list__wrapper {
    margin-top: 0.9375rem;
  }
}

.l-footer__nav-list__wrapper--row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list__wrapper--row {
    flex-direction: column;
    gap: 2.75rem;
  }
}

.l-footer__nav-list {
  flex-shrink: 0;
}

.l-footer__nav-list--second {
  width: auto;
}

.l-footer__nav:nth-of-type(3) .l-footer__nav-list--first {
  width: 14.1875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav:nth-of-type(3) .l-footer__nav-list--first {
    width: 100%;
  }
}

.l-footer__nav:nth-of-type(3) .l-footer__nav-list--second {
  width: 14.1875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__nav:nth-of-type(3) .l-footer__nav-list--second {
    width: 100%;
  }
}

.l-footer__nav-item {
  width: 100%;
}

.l-footer__nav-item:not(:first-child) {
  margin-top: 0.25rem;
}

.l-footer__nav-item a {
  position: relative;
  width: 100%;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-item a {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.l-footer__nav-item a span {
  position: relative;
  display: inline-block;
}

.l-footer__nav-item a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-footer__nav-item a:hover span::before {
    transform: translateX(0);
  }
}
.l-footer__logo {
  margin-top: 6.4375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    margin-top: 4.8125rem;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__logo a {
    width: 16.25rem;
  }
}

.l-footer__logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-footer__logo-list {
    gap: 0.9375rem;
  }
}

.l-footer__logo_item img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__logo_item:first-child img {
  width: 8.5625rem;
}

.l-footer__logo_item:nth-of-type(2) img {
  width: 10.4375rem;
}

.l-footer__logo_item:last-child img {
  width: 8.5625rem;
}

.l-footer__copyright-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright-wrapper {
    margin-top: 2.9375rem;
  }
}

.l-footer__copyright {
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
  }
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
}

.l-header__inner {
  position: relative;
  padding-top: 2rem;
  padding-right: 1.75rem;
  padding-left: 2rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: auto;
    padding: 0.625rem;
  }
}

.l-header__nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    margin-top: 1.25rem;
  }
}

.l-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header__nav-list {
    gap: 1.0625rem;
  }
}

.l-header__nav-item {
  width: 100%;
}

.l-header__nav-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .l-header__nav-item a {
    font-size: 0.75rem;
  }
}

@media (any-hover: hover) {
  .l-header__nav-item a:hover {
    color: #a7958b;
  }
}
.l-header__drawer-button {
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-button {
    margin-top: 2.6875rem;
  }
}

.l-header__drawer-button__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-button__list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.l-header__drawer-button__item {
  width: 100%;
  max-width: 31.25rem;
}

.l-header__drawer-button__item a {
  width: 100%;
  height: 100%;
  padding-block: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-button__item a {
    padding-block: 1.4375rem;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

@media (any-hover: hover) {
  .l-header__drawer-button__item a:hover {
    opacity: 0.7;
  }
}
.l-header__drawer-button__item--shop a {
  background: #ffffff;
}

.l-header__drawer-button__item--online a {
  background: #dddddd;
}

.l-header__drawer {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(0);
  width: 100vw;
  height: 100svh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  transition: opacity 1.5s ease-out;
  transition: opacity 0.8s ease;
  padding: 6.4375rem 1.5rem 7.3125rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); /* 背景を10pxぶんぼかす */
  background: rgba(167, 149, 139, 0.8);
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: left center;
          mask-position: left center;
  will-change: backdrop-filter, opacity, transform;
}
@media screen and (max-width: 768px) {
  .l-header__drawer {
    padding: 6.625rem 2.0625rem 4.6875rem;
    overflow-y: scroll;
  }
}

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

.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.l-header__drawer-item a {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1.2;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-item a {
    font-size: 0.75rem;
  }
}

@media (any-hover: hover) {
  .l-header__drawer-item a:hover {
    color: #a7958b;
  }
}
.l-header__drawer-logo {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-logo {
    padding-left: 0.375rem;
    text-align: left;
  }
}

.l-header__drawer-logo a {
  transition: ease-in-out, 0.4s;
}

@media (any-hover: hover) {
  .l-header__drawer-logo a:hover {
    opacity: 0.7;
  }
}
.l-header__drawer-logo__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-logo__list {
    gap: 0.9375rem;
  }
}

.l-header__drawer-logo__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .l-header__drawer-logo__item:first-child img {
    max-width: 4.375rem;
    aspect-ratio: 70/11;
  }
}

@media screen and (max-width: 768px) {
  .l-header__drawer-logo__item:nth-of-type(2) img {
    max-width: 5.3125rem;
    aspect-ratio: 85/18;
  }
}

@media screen and (max-width: 768px) {
  .l-header__drawer-logo__item:last-child img {
    max-width: 4.375rem;
    aspect-ratio: 70/31;
  }
}

.l-header__drawer-nav__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 3.625rem;
    padding-left: 0.4375rem;
  }
}

.l-header__drawer-nav:nth-of-type(2) {
  margin-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav:nth-of-type(2) {
    margin-left: 0;
    margin-top: 2.5625rem;
  }
}

.l-header__drawer-nav:nth-of-type(3) {
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav:nth-of-type(3) {
    margin-left: 0;
    margin-top: 2.5625rem;
  }
}

.l-header__drawer-nav__title {
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__title {
    line-height: 1.2631578947;
  }
}

.l-header__drawer-nav__title--lg {
  width: 17.4375rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__title--lg {
    width: 100%;
  }
}

.l-header__drawer-nav__title a {
  width: 100%;
  overflow: hidden;
}

.l-header__drawer-nav__title a span {
  position: relative;
  display: inline-block;
}

.l-header__drawer-nav__title a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-header__drawer-nav__title a:hover span::before {
    transform: translateX(0);
  }
}
.l-header__drawer-nav__list-wrapper {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__list-wrapper {
    margin-top: 0.9375rem;
  }
}

.l-header__drawer-nav__list-wrapper--row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__list-wrapper--row {
    flex-direction: column;
    gap: 2.75rem;
  }
}

.l-header__drawer-nav__list {
  width: 17.4375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__list {
    width: 100%;
  }
}

.l-header__drawer-nav:nth-of-type(3) .l-header__drawer-nav__list--first {
  width: 14.1875rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav:nth-of-type(3) .l-header__drawer-nav__list--first {
    width: 100%;
  }
}

.l-header__drawer-nav:nth-of-type(3) .l-header__drawer-nav__list--second {
  width: 14.1875rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav:nth-of-type(3) .l-header__drawer-nav__list--second {
    width: 100%;
  }
}

.l-header__drawer-nav__list--second {
  width: auto;
}

.l-header__drawer-nav__item {
  width: 100%;
}

.l-header__drawer-nav__item:not(:first-child) {
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__item:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.l-header__drawer-nav__item a {
  position: relative;
  width: 100%;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-header__drawer-nav__item a {
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.l-header__drawer-nav__item a span {
  position: relative;
  display: inline-block;
}

.l-header__drawer-nav__item a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .l-header__drawer-nav__item a:hover span::before {
    transform: translateX(0);
  }
}
.l-inner {
  width: 100%;
  max-width: 74.375rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-inline: 1.25rem;
  }
}

.l-wrapper {
  padding-right: 6.25rem;
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    width: 100%;
    padding-right: 2.8125rem;
  }
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝
　ボタンの矢印
＝＝＝＝＝＝＝＝＝＝＝＝＝
*/
.c-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.1875rem;
  overflow: hidden;
  transition: 0.2s;
}

.c-arrow::before,
.c-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5625rem;
  height: 1.1875rem;
  background: #101010;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-arrow::before {
  transition: 0.4s;
}

.c-arrow::after {
  transition: 0.3s;
}

.c-arrow::before {
  transform: translateX(-200%);
}

.c-arrow::after {
  right: 0;
}

@media (any-hover: hover) {
  .p-btn a:hover .c-arrow::before {
    transform: translateX(0);
  }
  .p-btn a:hover .c-arrow::after {
    transform: translateX(100%);
  }
}
.c-bar {
  position: relative;
}

.c-bar::before {
  content: "";
  position: absolute;
  top: -1.4375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.125rem;
  height: 1px;
  background: #a7958b;
}
@media screen and (max-width: 768px) {
  .c-bar::before {
    top: -1.125rem;
  }
}

.c-detail-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-block: 1.375rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: color 0.4s ease, background-color 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-detail-btn a {
    padding-block: 1.1875rem;
    font-size: 1rem;
    letter-spacing: normal;
  }
}

@media (any-hover: hover) {
  .c-detail-btn a:hover {
    background: #a7958b;
    color: #ffffff;
  }
  .c-detail-btn a:hover::before {
    background: #ffffff;
  }
}
.c-lower-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .c-lower-text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.065em;
  }
}

.c-lower-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1.4666666667;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-lower-title {
    font-size: 1.75rem;
  }
}

.p-accordion__item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-accordion__item:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.p-accordion__item-q {
  position: relative;
  width: 100%;
  padding-inline: 3.0625rem;
  background: linear-gradient(135deg, #f4f4f4, #eae6e4);
  letter-spacing: 0.06em;
  text-align: left;
  z-index: 0;
  transition: ease-in-out, 0.2s;
}
@media screen and (max-width: 768px) {
  .p-accordion__item-q {
    padding-inline: 1.375rem;
  }
}

.p-accordion__item-q::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #eae6e4, #f4f4f4);
  transition: ease-in-out, 0.2s;
  opacity: 0;
}

@media (any-hover: hover) {
  .p-accordion__item-q:hover::after {
    opacity: 1;
  }
}
.p-accordion__item-q.is-active {
  background: linear-gradient(135deg, #eae6e4, #f4f4f4);
}

.p-accordion__item-q::before {
  content: "";
  position: absolute;
  transform: translateY(-50%) rotate(95deg);
  width: 0.5625rem;
  height: 1.1875rem;
  background: #a7958b;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.2s;
}

.p-accordion__item-q.is-active::before {
  transform: translateY(-50%) rotate(-90deg);
}

.p-accordion__item-a {
  max-height: 0; /* 初期状態は高さ0 */
  overflow: hidden;
  background: rgba(244, 244, 244, 0.3);
  transition: ease-in-out, 0.2s;
}

.p-accordion__item-a.is-open {
  margin-top: 0.375rem;
}

.p-accordion__item-a__inner {
  transition: ease-in-out, 0.2s;
  padding-inline: 3.0625rem;
  padding-block: 1rem;
}
@media screen and (max-width: 768px) {
  .p-accordion__item-a__inner {
    padding-block: 1.125rem;
    padding-inline: 1.375rem;
  }
}

.p-accordion__item-a__text {
  font-size: 1.375rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-accordion__item-a__text {
    font-size: 1rem;
  }
}

.p-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  background: #a7958b;
}

.p-announce__text {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-announce__text {
    font-size: 0.625rem;
  }
}

.p-announce__number {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-announce__number {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
  }
}

.p-application__fc {
  background: url(../images/jibunmakura_app/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-application__fc {
    background: url(../images/jibunmakura_app/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-application__layout {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-application__layout {
    margin-top: 2.1875rem;
  }
}

.p-application__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-application__list {
    gap: 0.625rem;
    margin-left: 0;
  }
}

.p-application__item a {
  width: 10.1875rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-application__item a {
    width: 8.0625rem;
  }
}

.p-application__item:last-child a {
  width: 11.6875rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-application__item:last-child a {
    width: 9.625rem;
  }
}

.p-application__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-breadcrumb__inner {
  padding: 0.875rem 1.6875rem 0;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__inner {
    padding: 0.6875rem 0.75rem 0;
  }
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__list {
    gap: 0.875rem;
  }
}

.p-breadcrumb__item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.3;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__item {
    font-size: 0.625rem;
  }
}

.p-breadcrumb__item:nth-of-type(2) {
  flex-shrink: 0;
}

.p-breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.4375rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 0.0625rem #101010;
  border-right: solid 0.0625rem #101010;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__item:not(:first-child)::before {
    width: 0.3125rem;
    height: 0.3125rem;
    left: -0.625rem;
  }
}

.p-breadcrumb__item a {
  position: relative;
  display: block;
  overflow: hidden;
}

.p-breadcrumb__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  width: 100%;
  height: 0.9px;
  background: #101010;
  transition: 0.4s;
}

@media (any-hover: hover) {
  .p-breadcrumb__item a:hover::before {
    transform: translateX(0);
  }
}
.p-btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-block: 0.75rem;
  border-bottom: 1px solid #101010;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: 0.3s;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .p-btn a {
    height: 2.4375rem;
    padding-block: 0.5625rem;
    font-size: 1.375rem;
  }
}

.p-btn--en a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-btn--en a {
    font-size: 1.1875rem;
    letter-spacing: -0.01em;
  }
}

.p-btn--ja a {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-btn--ja a {
    font-size: 1rem;
  }
}

.p-btn__text {
  display: block;
  position: relative;
  line-height: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  text-align: center;
}

.p-btn__text--before {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.4s;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-btn__text--before {
    padding-left: 0;
  }
}

.p-btn__text--after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  height: 100%;
  transition: 0.4s;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-btn__text--after {
    padding-left: 0;
  }
}

@media (any-hover: hover) {
  .p-btn a:hover .p-btn__text--before {
    transform: translate(-50%, -150%);
  }
  .p-btn a:hover .p-btn__text--after {
    transform: translate(-50%, -50%);
  }
}
.p-btn__text--before .p-btn__text-img,
.p-btn__text--after .p-btn__text-img {
  width: 1.5625rem;
  height: 1.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-care__fv {
  background: url(../images/care/fv_pc.webp) center/cover no-repeat, url(../images/care/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-care__fv {
    background: url(../images/care/fv_sp.webp) center/cover no-repeat, url(../images/care/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-care__flow-layout {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-care__flow-layout {
    margin-top: 3.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-care__flow-inner.l-inner {
    padding-inline: 0.9375rem;
  }
}

.p-care__header .p-lower-content-lead {
  padding-left: 2.4375rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-care__header .p-lower-content-lead {
    padding-left: 0;
    text-align: center;
  }
}

.p-care__other {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-care__other {
    margin-top: 2.875rem;
  }
}

.p-care__other-inner.l-inner {
  padding-bottom: 7.0625rem;
}
@media screen and (max-width: 768px) {
  .p-care__other-inner.l-inner {
    padding-bottom: 3.75rem;
  }
}

.p-care__other-header {
  text-align: center;
}

.p-care__other-title--en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-care__other-title--en {
    font-size: 1.5rem;
    line-height: 1.8333333333;
  }
}

.p-care__other-title--ja {
  display: block;
  margin-top: 1.625rem;
  margin-right: 1.625rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-care__other-title--ja {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-care__other-lead {
  margin-top: 2.9375rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-care__other-lead {
    margin-top: 1.625rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-care__other-body {
  margin-top: 4.125rem;
}
@media screen and (max-width: 768px) {
  .p-care__other-body {
    margin-top: 2.125rem;
  }
}

.p-care__other-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1140/489;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-care__other-img {
    aspect-ratio: 290/124;
  }
}

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

.p-care__body {
  margin-top: 5.75rem;
  padding-top: 7.125rem;
}
@media screen and (max-width: 768px) {
  .p-care__body {
    margin-top: 2.8125rem;
    padding-top: 2.5rem;
  }
}

.p-care__flow-point__item {
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-care__flow-point__item {
    gap: 2.5rem;
  }
}

.p-care__flow-point__item:not(:first-child) {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-care__flow-point__item:not(:first-child) {
    margin-top: 3.25rem;
  }
}

.p-care__flow-point__item-img {
  aspect-ratio: 570/535;
}
@media screen and (max-width: 768px) {
  .p-care__flow-point__item-img {
    max-width: 100%;
  }
}

.p-care__maintenance {
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-care__maintenance {
    margin-top: 2.0625rem;
  }
}

.p-case__fv {
  background: url(../images/case/fv_pc.webp) center/cover no-repeat, url(../images/case/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-case__fv {
    background: url(../images/case/fv_sp.webp) center/cover no-repeat, url(../images/case/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-case__section-layout {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-case__section-layout {
    margin-top: 0;
  }
}

.p-case__case-inner.l-inner {
  max-width: 76.25rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-inner.l-inner {
    padding-top: 4.125rem;
    padding-inline: 1.25rem;
  }
}

.p-case__case-body {
  margin-top: 5.625rem;
  padding-top: 7.125rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-body {
    margin-top: 2.625rem;
    padding-top: 0;
    padding-bottom: 3.375rem;
  }
}

.p-case__case-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4.75rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-list {
    gap: 1.875rem;
  }
}

.p-case__case-item {
  width: calc((100% - 3.75rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-case__case-item {
    width: 100%;
  }
}

.p-case__case-item img {
  width: 100%;
  height: auto;
  max-width: 33.75rem;
  aspect-ratio: 540/340;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-case__case-item img {
    width: 100%;
  }
}

.p-case__case-item__body {
  display: flex;
  gap: 1.875rem;
  padding-top: 3.625rem;
  padding-left: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__body {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.9375rem;
    padding-left: 0;
  }
}

.p-case__case-item__tag {
  position: relative;
  padding-top: 1.1875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__tag {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    gap: 0.4375rem;
  }
}

.p-case__case-item__tag::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.1875rem;
  height: 11.1875rem;
  border-radius: 100vh;
  background: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__tag::before {
    top: 50%;
    width: 6.6875rem;
    height: 6.6875rem;
  }
}

.p-case__case-item__case {
  color: #a7958b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.625rem;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__case {
    font-size: 1.3125rem;
  }
}

.p-case__case-item__number {
  display: inline-block;
  margin-top: -1.4375rem;
  color: #a7958b;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.25rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__number {
    font-size: 3.3125rem;
  }
}

.p-case__case-item__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__title {
    font-size: 1.5rem;
  }
}

.p-case__case-item__text {
  margin-top: 1.5625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-case__case-item__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.03em;
  }
}

.p-case__case-service {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-service {
    margin-top: 4rem;
  }
}

.p-case__case-service__wrapper {
  position: relative;
  padding: 4.5rem 4.6875rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__wrapper {
    padding: 6.5rem 1.0625rem 1.9375rem;
  }
}

.p-case__case-service__title {
  position: absolute;
  top: -1.0625rem;
  left: 0;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__title {
    font-size: 1.5rem;
    line-height: 1.375;
  }
}

.p-case__case-service__body {
  position: relative;
  width: 100%;
  height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__body {
    height: 19.75rem;
  }
}

.p-case__case-service__img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__img {
    height: 100%;
  }
}

.p-case__case-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}

.p-case__case-service__content {
  position: absolute;
  top: 3.375rem;
  right: 2.625rem;
  width: 29.8125rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__content {
    top: 2rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-inline: 1.125rem;
  }
}

.p-case__case-service__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__heading {
    font-size: 1.5rem;
  }
}

.p-case__case-service__text {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-service__text {
    margin-top: 1.125rem;
  }
}

.p-case__case-maintenance {
  margin-top: 5.0625rem;
}
@media screen and (max-width: 768px) {
  .p-case__case-maintenance {
    margin-top: 2.625rem;
  }
}

.p-catchphrase {
  position: relative;
  overflow: hidden;
}

.p-catchphrase__inner.l-inner {
  width: 100%;
  height: 100%;
  padding-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-catchphrase__inner.l-inner {
    padding-top: 3.3125rem;
  }
}

.p-catchphrase img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-catchphrase__heading {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 2.25rem;
  line-height: 1;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-catchphrase__heading {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura__catchphrase--top .p-catchphrase__heading {
    padding-left: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura__catchphrase--bottom .p-catchphrase__heading {
    padding-left: 0.625rem;
  }
}

.p-catchphrase__text {
  margin-top: 0.5rem;
  position: relative;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-catchphrase__text {
    margin-top: 1.1875rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.065em;
  }
}

.p-catchphrase__text--lg {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-catchphrase__text--lg {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.065em;
  }
}

.p-catchphrase__blank {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-catchphrase__blank {
    display: inline-block;
  }
}

.p-company__body {
  margin-top: 2rem;
}
@media screen and (max-width: 375px) {
  .p-company__body {
    margin-top: 2.5rem;
  }
}

.p-company__table-th,
.p-company__table-td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__table-th,
  .p-company__table-td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.p-company__table-tr:first-child {
  border-top: 0.125rem solid #000;
}

.p-company__table-tr:last-child {
  border-bottom: 0.125rem solid #000;
}

.p-company__table-tr:not(:first-child) {
  border-top: 0.0625rem solid #000;
}

@media screen and (max-width: 375px) {
  .p-company__table-tr {
    display: flex;
    flex-direction: column;
  }
}

.p-company__table-th {
  width: 12.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  text-align: center;
  background: #eeeff2;
}
@media screen and (max-width: 375px) {
  .p-company__table-th {
    width: 100%;
  }
}

.p-company__table-th__txt {
  display: inline-block;
  width: 5.875rem;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.p-company__table-td {
  font-size: 1rem;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  padding-left: 2.5rem;
}
@media screen and (max-width: 375px) {
  .p-company__table-td {
    padding: 1rem 0 1rem;
    padding-left: 0;
    line-height: 1.9;
    text-align: center;
  }
}

.p-company__table--position {
  display: inline-block;
  width: 5.25rem;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.p-company__table--name {
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 375px) {
  .p-company__table--name {
    width: 5.5625rem;
    text-align: left;
  }
}

.p-consultation__fv {
  background: url(../images/consultation/fv_pc.webp) center/cover no-repeat, url(../images/consultation/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-consultation__fv {
    background: url(../images/consultation/fv_sp.webp) center/cover no-repeat, url(../images/consultation/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-consultation__inner.l-inner {
  padding-top: 3.3125rem;
  padding-bottom: 10.125rem;
}
@media screen and (max-width: 768px) {
  .p-consultation__inner.l-inner {
    padding-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-consultation .p-contact-announce__text {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .p-consultation .p-contact-note {
    padding: 1.8125rem 2.3125rem 2.125rem 1.25rem;
  }
}

.p-consultation__header {
  margin-top: 6.0625rem;
  text-align: center;
}

.p-consultation__body {
  margin-top: 3.5rem;
  padding-left: 2.9375rem;
}

.p-contact-announce__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact-announce__text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-contact-form__inner {
  width: 100%;
  max-width: 60.25rem;
}

.p-contact-form__dl {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dl {
    gap: 0.5625rem;
    flex-direction: column;
  }
}

.p-contact-form__dl--textarea {
  align-items: flex-start;
}

.p-contact-form__dl--textarea .p-contact-form__dt {
  margin-top: 0.8125rem;
}

.p-contact-form__dl:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dl:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-contact-form__dl.p-contact-form__dl--checkbox {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dl.p-contact-form__dl--checkbox {
    margin-top: 2.0625rem;
  }
}

.p-contact-form__dt {
  flex-shrink: 0;
  width: 14.1875rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dt {
    width: 100%;
  }
}

.p-contact-form__dt--radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-contact-form__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__label {
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
  }
}

.p-contact-form__dl:nth-child(2) .p-contact-form__label,
.p-contact-form__dl:nth-child(3) .p-contact-form__label,
.p-contact-form__dl:nth-child(6) .p-contact-form__label,
.p-contact-form__dl:nth-child(9) .p-contact-form__label,
.p-contact-form__dl:nth-child(10) .p-contact-form__label {
  padding-right: 4.625rem;
}

.p-contact-form__dd {
  display: flex;
  align-items: center;
  gap: 2.0625rem;
  width: 100%;
}

.p-contact-form__dt--required {
  display: inline-block;
  padding: 0.1875rem 0.8125rem;
  background: #a7958b;
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dt--required {
    font-size: 0.75rem;
    padding: 0.1875rem 0.625rem;
  }
}

.p-contact-form__dl--checkbox .p-contact-form__dd {
  justify-content: center;
  margin-left: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__dl--checkbox .p-contact-form__dd {
    margin-left: 0;
    justify-content: flex-start;
  }
}

.p-contact-form__text,
.p-contact-form__mail,
textarea {
  width: 100%;
  height: 3.75rem;
  padding: 0.5rem;
  font-size: 16px;
  line-height: 1.5;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  outline: none;
}
@media screen and (max-width: 768px) {
  .p-contact-form__text,
  .p-contact-form__mail,
  textarea {
    height: 3.25rem;
  }
}

.p-contact-form__text:focus,
.p-contact-form__mail:focus,
textarea:focus {
  border: 1px solid #a7958b;
}

.p-contact-form__text::-moz-placeholder, .p-contact-form__mail::-moz-placeholder, textarea::-moz-placeholder {
  color: #9f9f9f;
}

.p-contact-form__text::placeholder,
.p-contact-form__mail::placeholder,
textarea::placeholder {
  color: #9f9f9f;
}

textarea {
  height: 23.75rem;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 16.25rem;
  }
}

/* 非表示のチェックボックス */
input[type=checkbox] {
  display: none;
}

/* テキスト部分のスタイル */
.p-contact-form__checkbox-txt {
  display: inline-block;
  position: relative;
  padding-left: 2.8125rem;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  cursor: pointer; /* ポインターカーソル追加 */
}
@media screen and (max-width: 768px) {
  .p-contact-form__checkbox-txt {
    padding-left: 2.375rem;
    font-size: 0.9375rem;
  }
}

/* チェックボックスの枠を作成 */
.p-contact-form__checkbox-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #bab7b7;
  border-radius: 6px;
  background-color: #f5f5f5; /* チェックボックス背景色 */
}
@media screen and (max-width: 768px) {
  .p-contact-form__checkbox-txt::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

/* チェックマークのスタイル */
.p-contact-form__checkbox-txt::after {
  content: "";
  position: absolute;
  top: 35%;
  transform: translateY(-50%) rotate(45deg);
  left: 0.5625rem;
  width: 0.9375rem;
  height: 1.375rem;
  border-right: 2px solid #101010;
  border-bottom: 2px solid #101010;
  border-radius: 1px;
  opacity: 0; /* 非表示状態 */
  transition: opacity 0.2s; /* アニメーション */
}
@media screen and (max-width: 768px) {
  .p-contact-form__checkbox-txt::after {
    width: 0.8125rem;
    height: 1.25rem;
  }
}

/* チェック状態のスタイル */
input[type=checkbox]:checked + .p-contact-form__checkbox-txt::after {
  opacity: 1; /* チェックマークを表示 */
}

/* ホバー時のポインター */
@media (any-hover: hover) {
  .p-contact-form__checkbox-txt:hover {
    cursor: pointer;
  }
}
.p-contact-form__checkbox-txt a {
  border-bottom: 1px solid #101010;
  transition: 0.4s;
}

@media (any-hover: hover) {
  .p-contact-form__checkbox-txt a:hover {
    color: #a7958b;
    border-bottom: 1px solid #a7958b;
  }
}
.radio-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.p-contact-form__radio-txt {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.p-contact-form__radio-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #101010;
  border-radius: 50%;
}

.p-contact-form__radio-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.175rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #101010;
  opacity: 0;
}

.p-contact-form__radio:checked + .p-contact-form__radio-txt::after {
  opacity: 1;
}

.p-contact-form__radio-txt:hover {
  cursor: pointer;
}

.p-contact-form__select-wrapper {
  width: 31rem;
  height: 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact-form__select-wrapper {
    width: 100%;
    height: 3.375rem;
  }
}

.p-contact-form__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(90deg);
  width: 0.5625rem;
  height: 1.1875rem;
  background: #a7958b;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  cursor: pointer;
}

.p-contact-form__select {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  padding: 0.375rem 1.5rem;
  outline: none;
  background: #f5f5f5;
  border: 1px solid transparent;
  color: #101010;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__select {
    padding-left: 1.0625rem;
    letter-spacing: -0.1em;
  }
}

.p-contact-form__select:hover {
  cursor: pointer;
}

.p-contact-form__privacy {
  margin-top: 4rem;
}

.p-contact-form__privacy-txt {
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.p-contact-form__privacy-txt:not(:first-child) {
  margin-top: 2rem;
}

.p-contact-form__submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  margin-left: 4.75rem;
}
@media screen and (max-width: 768px) {
  .p-contact-form__submit-wrapper {
    margin-top: 3rem;
    margin-left: 0;
  }
}

.p-contact-form__submit {
  width: 18.3125rem;
  height: 3.875rem;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-size: 1.375rem;
  background: #a7958b;
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: 1px solid #a7958b;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.4s;
}

.p-contact-form__submit::-webkit-search-decoration {
  display: none;
}

.p-contact-form__submit-item {
  position: relative;
  cursor: pointer;
}

.p-contact-form__submit-item::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: -0.375rem;
  width: 18.3125rem;
  height: 3.875rem;
  border: 1px solid #a7958b;
  transition: 0.4s;
}

@media (any-hover: hover) {
  .p-contact-form__submit-item:hover::before {
    top: 0;
    left: 0;
  }
  .p-contact-form__submit-item:hover .p-contact-form__submit {
    letter-spacing: 0.2em;
    color: #ffffff;
    background: #a7958b;
  }
}
.p-contact-note {
  margin-top: 3.3125rem;
  padding: 2rem 2.625rem 2.75rem;
  border: 1px solid #a7958b;
}
@media screen and (max-width: 768px) {
  .p-contact-note {
    margin-top: 2.1875rem;
    padding: 2rem 2.0625rem 1.8125rem 2.5rem;
  }
}

.p-contact-note__title {
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-contact-note__title {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-contact-note__item {
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-contact-note__item {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-contact__fv {
  background: url(../images/contact/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-contact__fv {
    background: url(../images/contact/fv_sp.jpg) center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-contact .p-lower-fv .p-fv__inner {
    padding-top: 2.8125rem;
  }
}

.p-contact_inner.l-inner {
  padding-top: 3.125rem;
  padding-bottom: 10.125rem;
}
@media screen and (max-width: 768px) {
  .p-contact_inner.l-inner {
    padding-top: 1.8125rem;
    padding-bottom: 3.75rem;
  }
}

.p-contact__header {
  margin-top: 6.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__header {
    margin-top: 3.1875rem;
  }
}

.p-contact__header .c-lower-title {
  font-size: 1.375rem;
}

.p-contact__body {
  margin-top: 3.5rem;
  padding-left: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-contact__body {
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.p-contents {
  background: #f2f0ef;
}

.p-contents__inner.l-inner {
  padding-top: 4.625rem;
  padding-bottom: 6.125rem;
}
@media screen and (max-width: 768px) {
  .p-contents__inner.l-inner {
    padding-top: 3.5rem;
    padding-bottom: 3.875rem;
  }
}

.p-case .p-contents__inner.l-inner {
  max-width: 76.25rem;
  padding-top: 5.625rem;
  padding-bottom: 7.1875rem;
  padding-inline: 2.5rem;
}

.p-contents__subtitle {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-contents__subtitle {
    margin-top: 1.375rem;
  }
}

.p-contents__body {
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-contents__body {
    margin-top: 2.8125rem;
  }
}

.p-contents__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-contents__list {
    gap: 2.125rem;
  }
}

.p-contents__item {
  width: calc((100% - 1.25rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-contents__item {
    width: 100%;
  }
}

.p-contents__item-img {
  overflow: hidden;
}

.p-contents__item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 560/160;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .p-contents__item a:hover img {
    transform: scale(1.06);
  }
}
.p-contents__item-text {
  margin-top: 1.25rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-contents__item-text {
    margin-top: 0.8125rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-detail-btn-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-detail-btn-list {
    gap: 0.625rem;
  }
}

.p-detail-btn-list--bottom {
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-detail-btn-list--bottom {
    margin-top: 0.75rem;
  }
}

.p-detail-btn-list--top .p-detail-btn-item {
  width: calc((100% - 1.75rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-detail-btn-list--top .p-detail-btn-item {
    width: 100%;
  }
}

.p-detail-btn-list--bottom .p-detail-btn-item {
  width: calc((100% - 0.875rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-detail-btn-list--bottom .p-detail-btn-item {
    width: 100%;
  }
}

.p-detail-btn-item {
  background: #ffffff;
}

.p-detail-btn-item a .c-arrow {
  right: 0.625rem;
}

.p-detail-btn-item a .c-arrow::before,
.p-detail-btn-item a .c-arrow::after {
  background: #101010;
}

@media (any-hover: hover) {
  .p-detail-btn-item a:hover .c-arrow::before {
    background: #ffffff;
    transform: translateX(0);
  }
  .p-detail-btn-item a:hover .c-arrow::after {
    background: #ffffff;
    transform: translateX(100%);
  }
}
.p-discomfort__fv {
  background: url(../images/discomfort/fv_pc.webp) center/cover no-repeat, url(../images/discomfort/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-discomfort__fv {
    background: url(../images/discomfort/fv_sp.webp) center/cover no-repeat, url(../images/discomfort/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-discomfort__discomfort-layout {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-layout {
    margin-top: 3.125rem;
  }
}

.p-discomfort__discomfort .p-lower-content-lead {
  padding-left: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort .p-lower-content-lead {
    padding-left: 0;
  }
}

.p-discomfort__discomfort-body {
  margin-top: 5.6875rem;
  padding-top: 7.125rem;
  padding-bottom: 8.8125rem;
  background: url(../images/discomfort/bg.webp) center/cover no-repeat, url(../images/discomfort/bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-body {
    margin-top: 2.6875rem;
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
  }
}

.p-discomfort__discomfort-item {
  display: flex;
  gap: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}

.p-discomfort__discomfort-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item--reverse {
    flex-direction: column-reverse;
  }
}

.p-discomfort__discomfort-item:not(:first-child) {
  margin-top: 5.6875rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item:not(:first-child) {
    margin-top: 3.5625rem;
  }
}

.p-discomfort__discomfort-item img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  max-width: 35.625rem;
  aspect-ratio: 570/535;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item img {
    max-width: 100%;
  }
}

.p-discomfort__discomfort-item__content {
  position: relative;
  width: 31.5rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__content {
    width: 100%;
  }
}

.p-discomfort__discomfort-item:first-child .p-discomfort__discomfort-item__content {
  padding-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item:first-child .p-discomfort__discomfort-item__content {
    padding-top: 0;
  }
}

.p-discomfort__discomfort-item__title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__title {
    font-size: 1.5rem;
    line-height: 1.375;
  }
}

.p-discomfort__discomfort-item:last-child .p-discomfort__discomfort-item__title {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item:last-child .p-discomfort__discomfort-item__title {
    letter-spacing: 0.08em;
  }
}

.p-discomfort__discomfort-item__text__first {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__text__first {
    margin-top: 2.5rem;
  }
}

.p-discomfort__discomfort-item__text__second {
  margin-top: 1.6em;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__text__second {
    margin-top: 1.625rem;
  }
}

.p-discomfort__discomfort-item__text__first.c-bar::before {
  top: -2.4375rem;
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__text__first.c-bar::before {
    top: -1.1875rem;
  }
}

.p-discomfort__discomfort-item__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-discomfort__discomfort-item__btn {
    position: static;
    margin-top: 0.875rem;
  }
}

.p-discomfort__maintenance {
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-discomfort__maintenance {
    margin-top: 2.8125rem;
  }
}

.p-faq__fv {
  background: url(../images/faq/fv_pc.webp) center/cover no-repeat, url(../images/faq/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-faq__fv {
    background: url(../images/faq/fv_sp.webp) center/cover no-repeat, url(../images/faq/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-faq__body {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-faq__body {
    margin-top: 2.625rem;
  }
}

.p-faq__accordion {
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-faq__accordion {
    margin-top: 0.9375rem;
  }
}

.p-faq__block:nth-of-type(2),
.p-faq__block:nth-of-type(3) {
  margin-top: 4.25rem;
}
@media screen and (max-width: 768px) {
  .p-faq__block:nth-of-type(2),
  .p-faq__block:nth-of-type(3) {
    margin-top: 3.5rem;
  }
}

.p-faq__block-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-faq__block-title {
    font-size: 1.375rem;
    line-height: 1.1363636364;
  }
}

.p-faq__accordion-item__q {
  padding-block: 2.3125rem;
  font-size: 1.125rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-faq__accordion-item__q {
    min-height: 5.25rem;
    padding-block: 1.125rem;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

.p-faq__accordion-item__q::before {
  top: 50%;
  right: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-faq__accordion-item__q::before {
    right: 0.9375rem;
  }
}

.p-faq__accordion-item__a-text {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-faq__accordion-item__a-text {
    font-size: 1rem;
  }
}

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

.p-features__item {
  display: flex;
  justify-content: space-between;
  gap: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-features__item {
    justify-content: center;
    flex-direction: column;
    gap: 2.875rem;
  }
}

.p-features__item--reverse {
  flex-direction: row-reverse;
  gap: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-features__item--reverse {
    flex-direction: column;
    gap: 2.875rem;
  }
}

.p-features__item:not(:first-child) {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-features__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-features__item-content {
  position: relative;
  width: 31.5rem;
  padding-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-features__item-content {
    width: 100%;
    padding-top: 3.125rem;
  }
}

.p-features__item-header {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-features__item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.p-features__item-tag {
  position: absolute;
  top: -5.9375rem;
  left: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-features__item-tag {
    top: -4.0625rem;
  }
}

.p-features__item-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.1875rem;
  height: 11.1875rem;
  background: #ffffff;
  border-radius: 100vh;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-features__item-tag::before {
    width: 6.6875rem;
    height: 6.6875rem;
  }
}

.p-features__item-tag__text {
  display: inline-block;
  color: #a7958b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-features__item-tag__text {
    font-size: 1.3125rem;
  }
}

.p-features__item-tag__number {
  display: block;
  margin-top: -1.5625rem;
  color: #a7958b;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-features__item-tag__number {
    margin-top: -1rem;
    font-size: 3.3125rem;
  }
}

.p-features__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-features__item-title {
    position: relative;
    font-size: 1.5rem;
  }
}

.p-features__item-subtitle {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.p-features__item-text {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-features__item-text {
    margin-top: 2.25rem;
  }
}

.p-features__item-subtitle {
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-features__item-subtitle {
    margin-top: 3rem;
  }
}

.p-features__item-subtitle + .p-features__item-text {
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-features__item-subtitle + .p-features__item-text {
    margin-top: 1rem;
  }
}

.p-features__item-content .c-bar::before {
  top: -2.4375rem;
  left: 0;
  width: 2.4375rem;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-features__item-content .c-bar::before {
    top: -1.1875rem;
  }
}

.p-features__item-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-features__item-btn {
    position: static;
    margin-top: 0.875rem;
  }
}

.p-features__item-img {
  flex-shrink: 0;
  max-width: 35.625rem;
  height: auto;
  aspect-ratio: 570/500;
}
@media screen and (max-width: 768px) {
  .p-features__item-img {
    max-width: 100%;
  }
}

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

.p-home .p-fv {
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .p-home .p-fv {
    height: 34.375rem;
  }
}

.p-fv__inner {
  height: 50rem;
  position: relative;
  width: 100%;
  height: 100%;
}

.p-fv__logo {
  position: absolute;
  top: 3.125rem;
  left: 3.125rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-fv__logo {
    top: 1.375rem;
    left: 1.25rem;
  }
}

.p-fv__logo img {
  width: 7.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-fv__logo img {
    width: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .p-lower-fv .p-fv__logo img {
    width: 3.125rem;
  }
}

.p-fv__guinness {
  position: absolute;
  right: 0.9375rem;
  bottom: 2.875rem;
  width: 19.125rem;
  aspect-ratio: 306/91;
}
@media screen and (max-width: 768px) {
  .p-fv__guinness {
    right: 2.3125rem;
    bottom: 3.9375rem;
    width: 15rem;
  }
}

.p-fv__guinness img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-fv__scroll {
  position: absolute;
  bottom: 0;
  left: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll {
    display: none;
  }
}

.p-fv__scroll-text {
  position: absolute;
  bottom: 5.3125rem;
  left: 1.75rem;
  transform: translateX(-50%) rotate(180deg);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.035em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll-text {
    left: 0;
    bottom: 4.6875rem;
    font-size: 1rem;
  }
}

.p-fv__scroll-line {
  position: absolute;
  left: 1.875rem;
  bottom: 0;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll-line {
    left: 0;
  }
}

.p-fv__scroll-line::before {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 4.4375rem;
  margin: auto;
  right: 0;
  z-index: 2;
  animation: scroll 2s infinite;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll-line::before {
    height: 4rem;
  }
}

.p-fv__scroll-line::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 4.4375rem;
  background: #ffffff;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .p-fv__scroll-line::after {
    height: 4rem;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-fv__swiper {
  width: 100%;
  height: 100%;
}

.p-fv__swiper-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.p-fv__slide {
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-fv__slide {
    position: relative;
  }
}

.p-fv__slide--first {
  background: #5987b1;
}

.p-fv__slide--second {
  background: rgb(106, 171, 107);
}

.p-fv__slide--third {
  background: rgb(232, 160, 129);
}

.p-fv__slide img {
  width: 74%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-fv__slide img {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17.75rem;
    height: 19.125rem;
  }
}

/* 前へ次への矢印カスタマイズ */
.p-fv__swiper-prev,
.p-fv__swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2.6875rem;
  width: 2.6875rem;
  border-radius: 100vh;
  border: 1px solid #ffffff;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-fv__swiper-prev,
  .p-fv__swiper-next {
    top: auto;
    bottom: 1.875rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-fv__swiper-prev:hover,
  .p-fv__swiper-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
  }
}
.swiper-button-prev.p-fv__swiper-prev,
.swiper-rtl .swiper-button-next {
  right: auto;
  left: 2.75rem;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev.p-fv__swiper-prev,
  .swiper-rtl .swiper-button-next {
    left: 1.25rem;
  }
}

.swiper-button-next.p-fv__swiper-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: 2.75rem;
}
@media screen and (max-width: 768px) {
  .swiper-button-next.p-fv__swiper-next,
  .swiper-rtl .swiper-button-prev {
    right: 1.25rem;
  }
}

/* 前へ次への矢印カスタマイズ */
.p-fv__swiper-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 0.6875rem;
  height: 0.6875rem;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  .p-fv__swiper-prev::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-fv__swiper-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.6875rem;
  width: 0.6875rem;
  height: 0.6875rem;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  .p-fv__swiper-next::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

@media (any-hover: hover) {
  .p-fv__swiper-prev:hover::before,
  .p-fv__swiper-next:hover::before {
    border-top: solid 1px #a7958b;
    border-right: solid 1px #a7958b;
  }
}
.p-fv__swiper-next::after,
.p-fv__swiper-prev::after {
  content: none;
}

.p-greeting__fv {
  background: url(../images/greeting/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-greeting__fv {
    background: url(../images/greeting/fv.jpg) left 10%/cover no-repeat;
  }
}

.p-greeting__fv-title__bottom.p-lower-fv__title-bottom {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__fv-title__bottom.p-lower-fv__title-bottom {
    font-size: 0.875rem;
  }
}

.p-greeting__heading {
  margin-top: 3.4375rem;
  margin-left: 3.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-greeting__heading {
    margin-top: 3.125rem;
    margin-left: 0;
  }
}

.p-greeting__title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.3125rem;
  line-height: 1.1891891892;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-greeting__title {
    font-size: 1.625rem;
  }
}

.p-greeting__movie-layout {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__movie-layout {
    margin-top: 2.5rem;
  }
}

.p-greeting__movie .iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1140/641;
  -o-object-fit: contain;
     object-fit: contain;
  background: #c1c1c1;
}

.p-greeting__overview-layout {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__overview-layout {
    margin-top: 3.75rem;
  }
}

.p-greeting__overview-container {
  display: flex;
  gap: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__overview-container {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.p-greeting__overview-img {
  flex-shrink: 0;
}

.p-greeting__overview-img img {
  width: 100%;
  height: auto;
  max-width: 35.625rem;
  aspect-ratio: 570/500;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-greeting__overview-content {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__overview-content {
    padding-top: 0;
  }
}

.p-greeting__overview-title.c-lower-title {
  text-align: left;
}

.p-greeting__overview-text {
  margin-top: 1.6875rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-greeting__overview-text {
    line-height: 1.7;
  }
}

.p-greeting__message-layout {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-layout {
    margin-top: 3.75rem;
  }
}

.p-greeting__message-container {
  padding: 4.9375rem 5.125rem 8.125rem 4.5625rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-container {
    padding: 3.75rem 1rem 6.25rem 1rem;
  }
}

.p-greeting__message-body {
  display: flex;
  gap: 3.375rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-body {
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
  }
}

.p-greeting__message-ceo {
  flex-shrink: 0;
}

.p-greeting__message-ceo img {
  width: 100%;
  height: auto;
  max-width: 25rem;
  aspect-ratio: 400/500;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-greeting__message-ceo__box {
  margin-top: 1.3125rem;
  padding-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-ceo__box {
    margin-top: 1rem;
  }
}

.p-greeting__message-ceo__title {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.p-greeting__message-ceo__name {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-ceo__name {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-greeting__message-title {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-title {
    font-size: 1.625rem;
  }
}

.p-greeting__message-text {
  margin-top: 2.125rem;
  padding-right: 0.25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-greeting__message-text {
    padding-right: 0;
  }
}

.p-greeting__message-text + .p-greeting__message-text {
  margin-top: 2rem;
}

.p-greeting__history {
  background: url(../images/greeting/greeting_bg.webp) center/cover no-repeat, url(../images/greeting/greeting_bg.jpg) center/cover no-repeat;
}

.p-greeting__history-layout {
  margin-top: 9.75rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__history-layout {
    margin-top: 8.75rem;
  }
}

.p-greeting__history-body {
  position: relative;
  display: flex;
  gap: 3.5rem;
  margin-top: 5.375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__history-body {
    margin-top: 4.375rem;
  }
}

.p-home-flow__progress {
  position: absolute;
  top: 0;
  left: 29.875rem;
  margin-top: 0.9375rem;
  height: 92.125rem;
}

@media screen and (max-width: 768px) {
  .p-greeting__history-img__list {
    display: none;
  }
}

.p-greeting__history-img__item {
  width: 22.1875rem;
  height: 13.9375rem;
  aspect-ratio: 355/223;
}

.p-greeting__history-img__item:not(:first-child) {
  margin-top: 1.875rem;
}

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

.p-greeting__history-inner.l-inner {
  padding-top: 6.0625rem;
  padding-bottom: 5.75rem;
}

.p-greeting__history-outline {
  position: relative;
  display: flex;
  gap: 3.75rem;
}

.p-greeting__history-outline::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 3.9375rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100vh;
  background: #a7958b;
}

.p-greeting__history-outline + .p-greeting__history-outline {
  margin-top: 3.1875rem;
}

.p-greeting__history-dt,
.p-greeting__history-dd {
  flex-shrink: 0;
  font-size: 1.25rem;
}

.p-greeting__history-year__box {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
}

.p-greeting__history-year {
  display: flex;
  gap: 3.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__history-year {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
  }
}

.p-greeting__company-layout {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-layout {
    margin-top: 5rem;
  }
}

.p-greeting__company-body {
  max-width: 49rem;
  margin-top: 3.4375rem;
  margin-inline: auto;
}

.p-greeting__company-table {
  width: 100%;
}

.p-greeting__company-tr {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-tr {
    flex-direction: column;
    gap: 0;
  }
}

.p-greeting__company-tr:not(:last-child) {
  border-bottom: 1px solid #101010;
}

.p-greeting__company-tr:not(:first-child) .p-greeting__company-th,
.p-greeting__company-tr:not(:first-child) .p-greeting__company-td {
  padding-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-tr:not(:first-child) .p-greeting__company-th,
  .p-greeting__company-tr:not(:first-child) .p-greeting__company-td {
    padding-top: 0.5rem;
  }
}

.p-greeting__company-tr:not(:last-child) .p-greeting__company-th,
.p-greeting__company-tr:not(:last-child) .p-greeting__company-td {
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-tr:not(:last-child) .p-greeting__company-th,
  .p-greeting__company-tr:not(:last-child) .p-greeting__company-td {
    padding-bottom: 0.5rem;
  }
}

.p-greeting__company-tr:nth-child(8) .p-greeting__company-td {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-tr:nth-child(8) .p-greeting__company-td {
    padding-bottom: 0.5rem;
  }
}

.p-greeting__company-th {
  flex-shrink: 0;
  width: 7.1875rem;
  padding-left: 1.9375rem;
  color: #969696;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 3;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-th {
    width: 100%;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-greeting__company-td {
  font-size: 1.25rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-td {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-greeting .p-contents__layout {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-greeting .p-contents__layout {
    margin-top: 5rem;
  }
}

.p-guidance-table__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.p-guidance-table__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__list {
    gap: 2.375rem;
    grid-template-columns: 1fr;
  }
}

.p-guidance-table__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__item {
    display: block;
    width: 100%;
  }
}

.p-guidance-table__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 265/264;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__item img {
    aspect-ratio: 290/289;
  }
}

.p-guidance-table__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__item-title {
    margin-top: 1.6875rem;
    font-size: 1.375rem;
    line-height: 1.1363636364;
  }
}

.p-guidance-table__sublist {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__sublist {
    margin-top: 1.375rem;
  }
}

.p-guidance-table__subitem {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.125rem;
  border: 1px solid #a7958b;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__subitem {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-guidance-table__subitem:first-child {
  background: #a7958b;
  color: #ffffff;
}

.p-guidance-table__subitem:nth-of-type(2) {
  background: #ffffff;
  color: #a7958b;
}

.p-guidance-table__subitem:last-child {
  color: #a7958b;
  font-size: 1.375rem;
}

.p-guidance-table__subitem:not(:first-child) {
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-guidance-table__subitem:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.p-hamburger {
  width: 2.5rem;
  height: 1.5625rem;
  position: relative;
  z-index: 9999;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    width: 1.5rem;
    height: 1rem;
  }
}

.p-hamburger__bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #101010;
  border-radius: 2px;
  transition: 0.6s;
}

.p-hamburger__bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.p-hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-hamburger__bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.p-hamburger.is-active {
  width: 2.6875rem;
  height: 2.6875rem;
  top: 0.625rem;
  left: -1.5rem;
}
@media screen and (max-width: 768px) {
  .p-hamburger.is-active {
    left: -0.6875rem;
  }
}

.p-hamburger.is-active .p-hamburger__bar {
  width: 200%;
}

.js-hamburger.is-active .p-hamburger__bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg) rotateY(180deg);
  background: #ffffff;
}

.js-hamburger.is-active .p-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: translate(100%, -50%);
}

.js-hamburger.is-active .p-hamburger__bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg) rotateY(180deg);
  background: #ffffff;
}

.p-home-about {
  background: url(../images/home/about_bg.jpg) center/cover no-repeat;
}

.p-home-about__inner.l-inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner.l-inner {
    padding-top: 3rem;
    padding-bottom: 4.6875rem;
  }
}

.p-home-about__body {
  display: flex;
  align-items: flex-end;
  gap: 4.0625rem;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__body {
    flex-direction: column;
    gap: 2.0625rem;
    margin-top: 3.125rem;
  }
}

.p-home-about__img {
  flex-shrink: 0;
  width: 33.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__img {
    width: 18.125rem;
    height: 18.625rem;
  }
}

.p-home-about__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-home-about__img img {
    aspect-ratio: auto;
  }
}

.p-home-about__content {
  width: 30.4375rem;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__content {
    width: 100%;
    padding-bottom: 0;
  }
}

.p-home-about__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.6785714286;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-home-about__heading {
    font-size: 1.375rem;
    line-height: 1.5909090909;
  }
}

.p-home-about__text {
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-home-about__text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-home-about__text--first {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__text--first {
    margin-top: 0.875rem;
  }
}

.p-home-about__btn {
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__btn {
    margin-top: 0.375rem;
  }
}

.p-home-collection__inner.l-inner {
  max-width: none;
  padding-top: 4.8125rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-home-collection__inner.l-inner {
    padding-top: 2.9375rem;
    padding-bottom: 3.1875rem;
  }
}

.p-home-collection__body {
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-collection__body {
    margin-top: 0.5rem;
  }
}

.p-home-collection__swiper-btn {
  position: relative;
  margin-top: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9375rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-home-collection__swiper-btn {
    margin-top: 2.8125rem;
    gap: 1.75rem;
  }
}

/* 前へ次への矢印カスタマイズ */
.p-home-collection__swiper-prev,
.p-home-collection__swiper-next {
  position: relative;
  height: 2.6875rem;
  width: 2.6875rem;
  border-radius: 100vh;
  background: #101010;
  border: 1px solid #101010;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-home-collection__swiper-prev,
  .p-home-collection__swiper-next {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

@media (any-hover: hover) {
  .p-home-collection__swiper-prev:hover,
  .p-home-collection__swiper-next:hover {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
/* 前へ次への矢印カスタマイズ */
.p-home-collection__swiper-prev::before,
.p-home-collection__swiper-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 1.0625rem;
  background: #ffffff;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: 0.3s;
}

.p-home-collection__swiper-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.p-home-collection__swiper-next::after,
.p-home-collection__swiper-prev::after {
  content: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: auto;
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: auto;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  position: relative;
  background: transparent;
  opacity: 1;
}

.swiper-button-next.swiper-button-disabled::before,
.swiper-button-prev.swiper-button-disabled::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 1.0625rem;
  background: #101010;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: 0.3s;
}

.swiper-button-prev.swiper-button-disabled::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.p-home-feature {
  background: url(../images/home/featuer_bg.jpg) center/cover no-repeat;
}

.p-home-feature__inner.l-inner {
  padding-top: 4.375rem;
  padding-bottom: 6.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home-feature__inner.l-inner {
    padding-top: 3rem;
    padding-bottom: 5.3125rem;
  }
}

.p-home-feature__body {
  margin-top: 4.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-feature__body {
    margin-top: 3.125rem;
  }
}

.p-home-feature__article-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-wrapper {
    gap: 1.8125rem;
  }
}

.p-home-feature__article {
  position: relative;
  width: calc((100% - 1.875rem) / 2);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article {
    width: 100%;
  }
}

.p-home-feature__article a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article a {
    align-items: flex-start;
  }
}

.p-home-feature__article-body {
  position: relative;
  width: 100%;
  height: 14.375rem;
  padding: 0.6875rem 0.25rem 1.875rem 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-body {
    height: 100%;
    padding: 1.5625rem 0 0 1rem;
  }
}

.p-home-feature__article-img {
  flex-shrink: 0;
  width: 14.375rem;
  aspect-ratio: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-img {
    width: 6.875rem;
  }
}

.p-home-feature__article-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-img img {
    width: 100%;
    height: 100%;
  }
}

@media (any-hover: hover) {
  .p-home-feature__article a:hover .p-home-feature__article-img img {
    transform: scale(1.06);
  }
}
.p-home-feature__article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-title {
    -webkit-line-clamp: 2;
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}

.p-home-feature__article-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.8333333333;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-time {
    position: absolute;
    top: -0.5625rem;
    left: 1.1875rem;
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-home-feature__article-category {
  position: absolute;
  bottom: 1.875rem;
  left: 2.25rem;
  width: 7.125rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  color: #ffffff;
  background: #a7958b;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-home-feature__article-category {
    position: initial;
    width: 5.6875rem;
    margin-top: 0.875rem;
    font-size: 0.75rem;
  }
}

.p-home-selection .p-home-lineup__list {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home-selection .p-home-lineup__list {
    justify-content: center;
    flex-direction: column;
    gap: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-collection__swiper--pc {
    display: none;
  }
}

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

.p-home-lineup__item {
  width: calc((100% - 4.5rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-home-lineup__item-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-lineup__item-sp__box {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.p-home-lineup__item-body {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
}

.p-home-lineup__item a {
  transition: 0.3s;
}

.p-home-lineup__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-lineup__item-header {
  position: relative;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-header {
    margin-top: 1.125rem;
  }
}

.p-home-lineup__item-header--jibunmakura {
  padding-right: 0.6875rem;
}

.p-home-lineup__item-header--jibunhuton {
  padding-right: 2.5625rem;
}

.p-home-lineup__item-header--mattress {
  padding-right: 3rem;
}

.p-home-lineup__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-title {
    font-size: 1.375rem;
  }
}

.p-home-lineup__item:not(:first-child) .p-home-lineup__item-title {
  padding-left: 1.4375rem;
}

.p-home-lineup__item-category {
  position: absolute;
  top: -2.625rem;
  right: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  aspect-ratio: 1;
  background: #a7958b;
  border-radius: 100vh;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-category {
    top: -1.75rem;
    right: 0.5625rem;
    width: 3.625rem;
    font-size: 0.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-collection .p-home-lineup__item-category {
    right: 0.125rem;
  }
}

.p-home-lineup__item-body {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-body {
    margin-top: 1.25rem;
  }
}

.p-home-lineup__item-text {
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-text {
    font-size: 0.875rem;
  }
}

.p-home-lineup__item-btn {
  margin-top: 2.125rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-lineup__item-btn {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-collection__swiper .p-home-lineup__item-btn {
    margin-top: 2.125rem;
  }
}

.swiper-slide .p-home-lineup__item-text {
  letter-spacing: 0.06em;
  height: 8.75rem;
}
@media (min-width: 1318px) {
  .swiper-slide .p-home-lineup__item-text {
    height: 112px;
  }
}
@media (min-width: 2150px) {
  .swiper-slide .p-home-lineup__item-text {
    height: 84px;
  }
}
@media (max-width: 899px) {
  .swiper-slide .p-home-lineup__item-text {
    height: 5.375rem;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide .p-home-lineup__item-text {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-home-collection .p-home-lineup__item-header {
    margin-top: 1.375rem;
  }
  .p-home-collection .p-home-lineup__item:not(:first-child) .p-home-lineup__item-title {
    padding-left: 0;
  }
  .p-home-collection .p-home-lineup__item-category {
    top: -1.0625rem;
    width: auto;
    padding: 0.125rem 0.625rem;
    line-height: 1.2;
    aspect-ratio: auto;
  }
  .p-home-collection .p-home-lineup__item-title {
    font-size: 1.1875rem;
  }
  .p-home-collection .p-home-lineup__item-body {
    margin-top: 0.75rem;
  }
  .p-home-collection .p-home-lineup__item-text {
    font-size: 0.75rem;
  }
  .p-home-collection .p-home-collection__swiper .p-home-lineup__item-btn {
    margin-top: 1.5rem;
    margin-top: 0.75rem;
  }
  .p-home-collection .p-btn__text {
    font-size: 1.125rem;
  }
  .p-home-collection .p-btn__text--before,
  .p-home-collection .p-btn__text--after {
    gap: 0.5rem;
  }
  .p-home-collection .p-btn__text--before .p-btn__text-img,
  .p-home-collection .p-btn__text--after .p-btn__text-img {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-home-meister {
  background: url(../images/home/meister_bg.jpg) center/cover no-repeat;
}

.p-home-meister__inner.l-inner {
  padding-top: 4.5625rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__inner.l-inner {
    padding-top: 3.8125rem;
    padding-bottom: 5.125rem;
  }
}

.p-home-meister__body {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__body {
    margin-top: 2.75rem;
  }
}

.p-home-meister__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__list {
    gap: 3.75rem;
  }
}

.p-home-meister__item {
  width: calc((100% - 4.6875rem) / 4);
}
@media screen and (max-width: 768px) {
  .p-home-meister__item {
    width: 100%;
  }
}

.p-home-meister__item img {
  width: 16.625rem;
  height: 13.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 290/214;
  }
}

.p-home-meister__item-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.4375rem;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-header {
    justify-content: center;
    gap: 0.875rem;
    margin-top: 0.875rem;
  }
}

.p-home-meister__item-shop {
  font-family: "Shippori Mincho", serif;
  line-height: 1;
}

.p-home-meister__item-name--en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-name--en {
    color: #a7958b;
    line-height: 1;
  }
}

.p-home-meister__item-name--ja {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-name--ja {
    margin-top: 0.125rem;
    text-align: center;
  }
}

.p-home-meister__item-category {
  display: inline-block;
  margin-top: 1.75rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  width: 100%;
  background: #a7958b;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-home-meister__item-body {
  margin-top: 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-body {
    gap: 1.1875rem;
    margin-top: 1.1875rem;
  }
}

.p-home-meister__item-body--lg {
  margin-top: 5.125rem;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-body--lg {
    margin-top: 1.125rem;
  }
}

.p-home-meister__item-text {
  height: 29.5625rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-home-meister__item-text {
    height: 100%;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.04em;
  }
}

.p-home-meister__item-btn a {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}

.p-home-selection {
  background: #f4f4f4;
}

.p-home-selection__inner.l-inner {
  padding-top: 4.9375rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-home-selection__inner.l-inner {
    padding-top: 2.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-home-selection__body {
  margin-top: 4.125rem;
}
@media screen and (max-width: 768px) {
  .p-home-selection__body {
    margin-top: 2.1875rem;
  }
}

.p-home-selection__detail-btn {
  margin-top: 5.8125rem;
}
@media screen and (max-width: 768px) {
  .p-home-selection__detail-btn {
    margin-top: 3.625rem;
  }
}

.p-home .p-section__subtitle {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home .p-section__subtitle {
    margin-top: 2.0625rem;
  }
}

.p-important__fv {
  background: url(../images/important/fv_pc.webp) center/cover no-repeat, url(../images/important/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-important__fv {
    background: url(../images/important/fv_sp.webp) center/cover no-repeat, url(../images/important/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-important__announce {
  position: absolute;
  bottom: 2.375rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .p-important__announce {
    bottom: 1.0625rem;
    right: 0.625rem;
    width: 4.0625rem;
    height: 4.0625rem;
  }
}

.p-important__announce .p-announce__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .p-important__announce .p-announce__text {
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.p-important__important {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-important__important {
    margin-top: 4.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-p-important__important-header .p-lower-content-lead {
    margin-top: 2.1875rem;
    letter-spacing: 0.03em;
  }
}

.p-important__important-body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-important__important-body {
    margin-top: 3rem;
  }
}

.p-important__important--bottom {
  margin-top: 5.625rem;
  background: url(../images/important/bg.webp) center/cover no-repeat, url(../images/important/bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-important__important--bottom {
    margin-top: 3rem;
  }
}

.p-important__important-inner--bottom.l-inner {
  padding-top: 6.1875rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-important__important-inner--bottom.l-inner {
    padding-top: 3.125rem;
    padding-bottom: 3.25rem;
  }
}

.p-important__important-guidance__table__list {
  margin-top: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .p-important__important-guidance__table__list {
    margin-top: 3.125rem;
  }
}

.p-important__important-maintenance {
  margin-top: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .p-important__important-maintenance {
    margin-top: 2.375rem;
  }
}

.p-inspection-flow__inner {
  padding-top: 4.25rem;
  padding-inline: 4.875rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__inner {
    padding-top: 2.625rem;
    padding-bottom: 2.1875rem;
    padding-inline: 0.9375rem;
  }
}

.p-inspection-flow__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.p-inspection-flow__list {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__list {
    flex-direction: column;
    margin-top: 1.75rem;
  }
}

.p-inspection-flow__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.875rem;
  transform: translateY(-50%);
  width: 57.5rem;
  height: 4.9375rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__list::before {
    top: 2.5rem;
    left: 50%;
    width: 6.6875rem;
    height: 53.5625rem;
    transform: translateX(-50%);
  }
}

.p-inspection-flow__list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 59.375rem;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 4.9375rem;
  clip-path: polygon(60% 50%, 0 0, 0 100%);
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__list::after {
    top: auto;
    bottom: -9.5625rem;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 3.125rem;
    height: 6.6875rem;
  }
}

.p-inspection-flow__item {
  position: relative;
}

.p-inspection-flow__item:not(:first-child) {
  margin-left: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item:not(:first-child) {
    margin-left: 0;
    margin-top: 2.0625rem;
  }
}

.p-inspection-flow__item:nth-of-type(2) {
  margin-left: 10.25rem;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item:nth-of-type(2) {
    margin-top: 6.6875rem;
    margin-left: 0;
  }
}

.p-inspection-flow__item-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  width: 8.375rem;
  height: 8.375rem;
  border-radius: 100vh;
  background: #a7958b;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-main {
    gap: 0.25rem;
  }
}

.p-inspection-flow__item-title {
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-title {
    font-size: 1.375rem;
  }
}

.p-inspection-flow__item-sub {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-sub {
    top: auto;
    bottom: -2.3125rem;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
  }
}

.p-inspection-flow__item:first-child .p-inspection-flow__item-sub {
  right: -9rem;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item:first-child .p-inspection-flow__item-sub {
    right: 50%;
    bottom: -8.5rem;
    width: 100%;
  }
}

.p-inspection-flow__item-note__title {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-note__title {
    line-height: 1.4285714286;
  }
}

.p-inspection-flow__item-note__title-blank {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-note__title-blank {
    display: inline-block;
  }
}

.p-inspection-flow__item-note__text {
  display: inline-block;
  margin-top: 0.125rem;
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-note__text {
    margin-top: 0.3125rem;
    line-height: 1.4;
  }
}

.p-inspection-flow__item-period {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__item-period {
    font-size: 0.875rem;
  }
}

.p-inspection-flow__item-note__kome {
  font-size: 0.9375rem;
}

.p-inspection-flow__text {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-inspection-flow__text {
    margin-top: 3.3125rem;
  }
}

.p-jibunmakura-app__fv {
  background: url(../images/jibunmakura_app/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__fv {
    background: url(../images/jibunmakura_app/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-jibunmakura-app__fv .p-lower-fv__title--lg {
  top: 19.25rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__fv .p-lower-fv__title--lg {
    top: 10.6875rem;
    left: -1.1875rem;
    letter-spacing: -0.05em;
  }
}

.p-jibunmakura-app__fv .p-lower-fv__title-bottom {
  margin-top: 1.75rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__fv .p-lower-fv__title-bottom {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.p-jibunmakura-app__features-layout {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-layout {
    margin-top: 3.3125rem;
  }
}

.p-jibunmakura-app__features-header .c-lower-title {
  font-size: 1.375rem;
  line-height: 1.5909090909;
}

.p-jibunmakura-app__features-body {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-body {
    margin-top: 2.25rem;
  }
}

.p-jibunmakura-app__features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-jibunmakura-app__features-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  width: calc((100% - 2.5rem) / 3);
  aspect-ratio: 1;
  background: #f2f0ef;
  border-radius: 100vh;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item {
    width: 100%;
    gap: 1.25rem;
  }
}

.p-jibunmakura-app__features-item:first-child {
  padding-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item:first-child {
    justify-content: center;
    padding-top: 0;
  }
}

.p-jibunmakura-app__features-item:nth-of-type(2) {
  padding-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item:nth-of-type(2) {
    justify-content: center;
    padding-top: 0;
  }
}

.p-jibunmakura-app__features-item:last-child {
  padding-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item:last-child {
    justify-content: center;
    padding-top: 0;
  }
}

.p-jibunmakura-app__features-item__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.p-jibunmakura-app__features-item:nth-of-type(2) .p-jibunmakura-app__features-item__title {
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item:nth-of-type(2) .p-jibunmakura-app__features-item__title {
    line-height: 1.2777777778;
  }
}

.p-jibunmakura-app__features-item__text {
  width: 17.625rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__features-item__text {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.p-jibunmakura-app__features-item__note {
  font-size: 0.75rem;
}

.p-jibunmakura-app__guide {
  background: url(../images/jibunmakura_app/bg.webp) center/cover no-repeat, url(../images/jibunmakura_app/bg.jpg) center/cover no-repeat;
}

.p-jibunmakura-app__guide-layout {
  margin-top: 6.1875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-layout {
    margin-top: 3.5rem;
  }
}

.p-jibunmakura-app__guide-inner.l-inner {
  padding-top: 6.8125rem;
  padding-bottom: 7.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-inner.l-inner {
    padding-top: 3.375rem;
    padding-bottom: 4.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-title--pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-title--sp.c-lower-title {
    display: block;
    font-size: 1.375rem;
    line-height: 1.5909090909;
    letter-spacing: 0.08em;
  }
}

.p-jibunmakura-app__guide-body {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-body {
    margin-top: 1.75rem;
  }
}

.p-jibunmakura-app__guide-item {
  background: #ffffff;
}

.p-jibunmakura-app__guide-item:first-child {
  padding: 3.875rem 2.75rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item:first-child {
    padding: 2.125rem 1.5rem 2.4375rem 1.25rem;
  }
}

.p-jibunmakura-app__guide-item:not(:first-child) {
  margin-top: 1.25rem;
  padding: 3.375rem 3.6875rem 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item:not(:first-child) {
    padding: 2.125rem 2.125rem 1.75rem 1.25rem;
  }
}

.p-jibunmakura-app__guide-item__title {
  font-size: 1.625rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-jibunmakura-app__guide-item__text {
  margin-top: 0.9375rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item__text {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.06em;
  }
}

.p-jibunmakura-app__guide-item:first-child .p-jibunmakura-app__guide-item__title {
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item:first-child .p-jibunmakura-app__guide-item__title {
    padding-left: 0;
  }
}

.p-jibunmakura-app__guide-item:first-child .p-jibunmakura-app__guide-item__text {
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__guide-item:first-child .p-jibunmakura-app__guide-item__text {
    padding-left: 0;
    padding-right: 0.875rem;
  }
}

.p-jibunmakura-app__guide-item__text + .p-jibunmakura-app__guide-item__text {
  margin-top: 1.6em;
}

.p-jibunmakura-app__grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "carriermail  dokocomo" "freemail  dokocomo";
  gap: 2rem 2.375rem;
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-list {
    grid-template-columns: 1fr;
    grid-template-areas: "carriermail" "freemail" "dokocomo";
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-jibunmakura-app__grid-item {
  padding-top: 3.3125rem;
  border: 1px solid #a7958b;
}

.p-jibunmakura-app__grid-item--carriermail {
  grid-area: carriermail;
  padding-inline: 2.4375rem;
  padding-bottom: 4.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item--carriermail {
    padding: 1.8125rem 1.5625rem 1.6875rem 1.375rem;
  }
}

.p-jibunmakura-app__grid-item--freemail {
  grid-area: freemail;
  padding-top: 2.5625rem;
  padding-inline: 2.4375rem;
  padding-bottom: 4.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item--freemail {
    padding: 1.8125rem 1.5625rem 1.625rem 1.375rem;
  }
}

.p-jibunmakura-app__grid-item--dokocomo {
  grid-area: dokocomo;
  padding-inline: 2.0625rem;
  padding-bottom: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item--dokocomo {
    padding: 1.8125rem 1.5625rem 1.625rem 1.375rem;
  }
}

.p-jibunmakura-app__grid-item__title {
  font-size: 1.125rem;
  line-height: 1.2727272727;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item__title {
    line-height: 1.2222222222;
  }
}

.p-jibunmakura-app__grid-item__text {
  margin-top: 2.625rem;
  line-height: 1.6875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item__text {
    margin-top: 1.125rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.06em;
  }
}

.p-jibunmakura-app__grid-item__text + .p-jibunmakura-app__grid-item__text {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura-app__grid-item__text + .p-jibunmakura-app__grid-item__text {
    margin-top: 1.625rem;
  }
}

.p-jibunshikifuton__fv {
  background: url(../images/jibunshikifuton/fv_pc.webp) center/cover no-repeat, url(../images/jibunshikifuton/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__fv {
    background: url(../images/jibunshikifuton/fv_sp.webp) center/cover no-repeat, url(../images/jibunshikifuton/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-jibunshikifuton__goods-inner.l-inner {
  padding-top: 4.0625rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-inner.l-inner {
    padding-top: 3.3125rem;
    padding-bottom: 4.125rem;
  }
}

.p-jibunshikifuton__goods-body {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-body {
    margin-top: 3rem;
  }
}

.p-jibunshikifuton__goods-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-list {
    display: block;
  }
}

.p-jibunshikifuton__goods-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 7;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-jibunshikifuton__goods-item__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 265/264;
}
.p-jibunshikifuton__goods-item__title {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__title {
    margin-top: 1.1875rem;
  }
}

.p-jibunshikifuton__goods-item__lead {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__lead {
    margin-top: 0.875rem;
  }
}

.p-jibunshikifuton__goods-item__price {
  display: flex;
  flex-direction: column;
  margin-top: 1.4375rem;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__price {
    margin-top: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__price-top {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
  }
}

.p-jibunshikifuton__goods-item__price-bottom {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.p-jibunshikifuton__goods-item__tag {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__tag {
    margin-top: 1.25rem;
  }
}

.p-jibunshikifuton__goods-item__detail {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__detail {
    margin-top: 1.5625rem;
  }
}

.p-jibunshikifuton__goods-item__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__btn {
    margin-top: 1.3125rem;
  }
}

.p-jibunshikifuton__page-link__item:first-child {
  width: 32.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__page-link__item:first-child {
    width: 100%;
  }
}

.p-jibunshikifuton__page-link__item:last-child {
  width: 23.125rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__page-link__item:last-child {
    width: 100%;
  }
}

.p-jibunshikifuton__page-link__item a::before {
  right: 0.625rem;
  width: 0.75rem;
  height: 0.75rem;
}

.p-jibunshikifuton__page-link__item a {
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .p-jibunshikifuton__page-link__item:first-child a {
    letter-spacing: -0.1em;
  }
}

.p-jibunshikifuton__catchphrase {
  width: 100%;
  height: 35.9375rem;
  aspect-ratio: 1342/575;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__catchphrase {
    height: 28.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunshikifuton__catchphrase--top .p-catchphrase__heading {
    padding-left: 1.875rem;
  }
}

.p-jibunshikifuton__catchphrase--bottom {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__catchphrase--bottom {
    margin-top: 4.875rem;
  }
}

.p-jibunshikifuton__point-item-img img {
  aspect-ratio: 570/500;
}

.p-jibunshikifuton__specification-inner.l-inner {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__specification-inner.l-inner {
    padding-top: 3.125rem;
  }
}

.p-jibunshikifuton__specification-body {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__specification-body {
    margin-top: 1.8125rem;
  }
}

.p-jibunshikifuton__specification-point .p-jibunshikifuton__point-item:last-child .p-jibunshikifuton__point-item-img img {
  aspect-ratio: 570/527;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__specification-point .p-jibunshikifuton__point-item:last-child .p-jibunshikifuton__point-item-img img {
    aspect-ratio: 290/254;
  }
}

.p-jibunshikifuton__special-specification__inner.l-inner {
  padding-top: 3.8125rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__inner.l-inner {
    padding-top: 3.1875rem;
    padding-bottom: 4.8125rem;
  }
}

.p-jibunshikifuton__special-specification__heading {
  padding-top: 2.125rem;
  padding-bottom: 1.6875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__heading {
    padding-top: 1.375rem;
  }
}

.p-jibunshikifuton__special-specification__edition {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__edition {
    font-size: 1rem;
    line-height: 1.375;
  }
}

.p-jibunshikifuton__special-specification__itadaki {
  margin-top: 0.6875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__itadaki {
    margin-top: 0.3125rem;
    font-size: 1.875rem;
  }
}

.p-jibunshikifuton__special-specification__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__body {
    margin-top: 1.5625rem;
  }
}

.p-jibunshikifuton__special-specification__point .p-jibunshikifuton__point-item:last-child .p-jibunshikifuton__point-item-img img {
  aspect-ratio: 570/500;
}

.p-jibunshikifuton__special-specification__subtitle.c-bar::before {
  top: -1.875rem;
}

.p-jibunshikifuton__point-item:not(:first-child) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__point-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-jibunshikifuton__point-item--block.p-point__item {
  display: block;
}

.p-jibunshikifuton__point-item--block .p-point__item-content {
  width: 100%;
}

.p-jibunshikifuton__point-item--block .p-point__item-btn {
  position: static;
  margin-top: 1.5625rem;
  width: 31.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__point-item--block .p-point__item-btn {
    width: 100%;
  }
}

.p-jibunshikifuton__type {
  margin-top: 3.5rem;
  background: url(../images/jibunshikifuton/bg_3.webp) center/cover no-repeat, url(../images/jibunshikifuton/bg_3.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type {
    margin-top: 2.5rem;
  }
}

.p-jibunshikifuton__type-inner {
  padding-top: 5.3125rem;
  padding-bottom: 3.6875rem;
  padding-inline: 5.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-inner {
    padding-top: 1.75rem;
    padding-bottom: 2.3125rem;
    padding-inline: 1.25rem;
  }
}

.p-jibunshikifuton__type-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.875rem 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-list {
    gap: 1.625rem;
  }
}

.p-jibunshikifuton__type-item {
  width: calc((100% - 8.75rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-item {
    width: 100%;
  }
}

.p-jibunshikifuton__type-item img {
  aspect-ratio: 276/209;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-item img {
    aspect-ratio: 250/195;
  }
}

.p-jibunshikifuton__type-item__title {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-item__title {
    margin-top: 0.75rem;
    font-size: 1.25rem;
  }
}

.p-jibunshikifuton__type-item__text {
  margin-top: 0.3125rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__type-item__text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-jibunshikifuton__special-specification__point {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__special-specification__point {
    margin-top: 1.375rem;
  }
}

.p-jibunshikifuton__uniqueness-inner.l-inner {
  max-width: 79.25rem;
  padding-top: 5.0625rem;
  padding-bottom: 8.875rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__uniqueness-inner.l-inner {
    padding-top: 3.1875rem;
    padding-bottom: 3.1875rem;
    padding-inline: 1.25rem;
  }
}

.p-jibunshikifuton__uniqueness-body {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__uniqueness-body {
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunshikifuton__uniqueness-subtitle.p-section__subtitle {
    letter-spacing: 0.03em;
  }
}

.p-jibunshikifuton__catchphrase--bottom .p-catchphrase__inner.l-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__catchphrase--bottom .p-catchphrase__inner.l-inner {
    align-items: flex-start;
    padding-top: 3.4375rem;
  }
}

.p-jibunshikifuton__special-specification__layout {
  scroll-margin-top: 1000px;
}

.p-lineup-tag__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.125rem;
  background: #a7958b;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-lineup-tag__item {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-lineup-tag__item--gold {
  position: relative;
  background: #c7bfae;
  transition: 0.3s;
  overflow: hidden;
}

.p-lineup-tag__item--gold::after {
  content: "";
  height: 12.5rem;
  left: -8.125rem;
  background: #fff;
  opacity: 0.3;
  position: absolute;
  top: -3.3125rem;
  transform: rotate(41deg);
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 3.125rem;
  z-index: 1;
}

@media (any-hover: hover) {
  .p-lineup-tag__item--gold:hover::after {
    left: 120%;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media screen and (max-width: 768px) {
  .p-lineup-tag__item--gold:active {
    left: 120%;
    transition: all 100ms cubic-bezier(0.19, 1, 0.22, 1);
  }
}
.p-lineup-tag__item,
.p-lineup-tag__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-lineup-tag__item a {
  width: 100%;
  height: 100%;
}

.p-lineup-tag__item-text {
  line-height: 1.125;
}

.p-lineup-tag__item-underbar {
  position: relative;
}

.p-lineup-tag__item-underbar::before {
  content: "";
  position: absolute;
  bottom: 0.0625rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: #ffffff;
}

.p-lineup__item-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-lineup__item-title {
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lineup__item-title {
    font-size: 1.375rem;
    line-height: 1.1363636364;
  }
}

.p-lineup__item-lead {
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lineup__item-lead {
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-lineup__item-price {
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lineup__item-price {
    font-size: 0.875rem;
  }
}

.p-lineup__item-number {
  font-size: 1.5rem;
}

.p-lineup-tag__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-lineup__item-detail__title {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-lineup__item-detail__title + .p-lineup__item-detail__table {
  margin-top: 0.75rem;
}

.p-lineup__item-detail__table {
  display: flex;
  gap: 0.25rem;
}

.p-lineup__item-detail__table tbody {
  width: 100%;
}

.p-lineup__item-detail__tr {
  display: flex;
  gap: 0.25rem;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

.p-lineup__item-detail__tr:not(:first-child) {
  margin-top: 0.25rem;
}

.p-lineup__item-detail__th {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: #c1c1c1;
  color: #ffffff;
}
.p-makura__goods-item__detail .p-lineup__item-detail__th {
  height: 2.5rem;
  width: 7.5rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__detail .p-lineup__item-detail__th {
    width: 7.25rem;
    height: 2.3125rem;
  }
}

.p-jibunshikifuton__goods-item__detail .p-lineup__item-detail__th {
  height: 2.3125rem;
  width: 6.9375rem;
  padding-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunshikifuton__goods-item__detail .p-lineup__item-detail__th {
    width: 7.4375rem;
  }
}

.p-lineup__item-detail__td {
  display: flex;
  align-items: center;
  padding-left: 0.625rem;
  width: 100%;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-lineup__item-detail__td {
    padding-left: 1.375rem;
    letter-spacing: 0.01em;
  }
}

.p-lower-fv .p-fv__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21.8125rem;
}
@media screen and (max-width: 768px) {
  .p-lower-fv .p-fv__inner {
    height: 15.9375rem;
    padding-top: 0.8125rem;
  }
}

.p-lower-fv--lg .p-fv__inner {
  height: 50rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-lower-fv--lg .p-fv__inner {
    height: 30.3125rem;
  }
}

.p-lower-fv__title {
  text-align: center;
}

.p-lower-fv__title--lg {
  position: absolute;
  top: 18.75rem;
  right: 6.1875rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title--lg {
    width: 100%;
  }
}

.p-lower-fv__title-top {
  display: block;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-top {
    font-size: 2rem;
  }
}

.p-lower-fv__title-top--ja {
  font-family: "Shippori Mincho", serif;
  font-size: 2.875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-top--ja {
    font-size: 1.75rem;
    line-height: 1.2142857143;
  }
}

.p-lower-fv__title-top--en {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-top--en {
    font-size: 2.875rem;
  }
}

.p-lower-fv__title-top--lg {
  font-size: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-top--lg {
    font-size: 4rem;
  }
}

.p-lower-fv__title-bottom {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-bottom {
    line-height: 1.7142857143;
  }
}

.p-lower-fv__title-bottom.c-bar::before {
  top: -1.875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-bottom.c-bar::before {
    top: -1.3125rem;
  }
}

.p-lower-fv__title-bottom--lg {
  margin-top: 4.875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1.0909090909;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-bottom--lg {
    margin-top: 4rem;
    font-size: 0.875rem;
  }
}

.p-lower-fv__title-bottom--lg.c-bar::before {
  top: -3.5625rem;
  right: 0;
  left: auto;
  transform: translateX(0);
  width: 4.375rem;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-lower-fv__title-bottom--lg.c-bar::before {
    top: 2.6875rem;
  }
}

.p-lower-content__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lower-content__title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.p-lower-content-lead {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-lower-content-lead {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.065em;
  }
}

.p-lower-content-lead.c-bar::before {
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-lower-content-lead.c-bar::before {
    top: -0.875rem;
  }
}

.p-maintenance__text {
  position: relative;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-maintenance__text {
    padding-left: 0.625rem;
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

.p-maintenance__text::before,
.p-maintenance__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 8.75rem;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-maintenance__text::before,
  .p-maintenance__text::after {
    width: 3.0625rem;
  }
}

.p-maintenance__text::before {
  right: 0;
}

.p-maintenance__text::after {
  left: 0;
}

.p-maintenance__btn {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-maintenance__btn {
    margin-top: 1.875rem;
  }
}

.p-makura__fv {
  background: url(../images/makura/fv_pc.webp) center/cover no-repeat, url(../images/makura/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-makura__fv {
    background: url(../images/makura/fv_sp.webp) center/cover no-repeat, url(../images/makura/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-makura__announce {
  position: absolute;
  bottom: 2.375rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .p-makura__announce {
    bottom: 1.0625rem;
    right: 0.625rem;
    width: 4.0625rem;
    height: 4.0625rem;
  }
}

.p-makura__announce .p-announce__text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .p-makura__announce .p-announce__text {
    font-size: 0.625rem;
  }
}

.p-makura__goods-inner.l-inner {
  padding-top: 2.4375rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-inner.l-inner {
    padding-top: 4.4375rem;
    padding-bottom: 5.1875rem;
  }
}

.p-makura__goods-body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-body {
    margin-top: 2.8125rem;
  }
}

.p-makura__goods-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-list {
    display: block;
  }
}

.p-makura__goods-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 7;
  gap: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-makura__goods-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.p-makura__goods-item__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 356/264;
}
.p-makura__goods-item__title {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__title {
    margin-top: 1.375rem;
  }
}

.p-makura__goods-item__lead {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__lead {
    margin-top: 0.8125rem;
  }
}

.p-makura__goods-item__price {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__price {
    margin-top: 1.1875rem;
  }
}

.p-makura__goods-item__tag {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__tag {
    margin-top: 1.3125rem;
  }
}

.p-makura__goods-item__detail {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__detail {
    margin-top: 1.625rem;
  }
}

.p-makura__goods-item__btn {
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-makura__goods-item__btn {
    margin-top: 1.25rem;
  }
}

.p-makura__page-link__item {
  width: calc((100% - 0.875rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-makura__page-link__item {
    width: 100%;
  }
}

.p-makura__page-link__item a {
  letter-spacing: 0.05em;
}

.p-makura__page-link__item a::before {
  right: 0.625rem;
  width: 0.75rem;
  height: 0.75rem;
}

.p-makura__catchphrase {
  height: 35.9375rem;
}
@media screen and (max-width: 768px) {
  .p-makura__catchphrase {
    height: 28.6875rem;
  }
}

.p-makura__catchphrase--bottom {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-makura__catchphrase--bottom {
    margin-top: 4.875rem;
  }
}

.p-makura__specification-inner.l-inner {
  padding-top: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .p-makura__specification-inner.l-inner {
    padding-top: 2.875rem;
  }
}

.p-makura__specification-body {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-makura__specification-body {
    margin-top: 1.875rem;
  }
}

.p-makura__specification-subtitle.c-bar::before {
  top: -1.4375rem;
}

.p-makura__special-specification__inner.l-inner {
  padding-top: 4.4375rem;
  padding-bottom: 7.625rem;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__inner.l-inner {
    padding-top: 2.9375rem;
    padding-bottom: 5rem;
  }
}

.p-makura__special-specification__heading {
  padding-top: 2.125rem;
  padding-bottom: 1.6875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__heading {
    padding-top: 1.375rem;
    padding-bottom: 1.1875rem;
  }
}

.p-makura__special-specification__edition {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__edition {
    font-size: 1rem;
    line-height: 1.375;
  }
}

.p-makura__special-specification__itadaki {
  margin-top: 0.6875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__itadaki {
    margin-top: 0.3125rem;
    font-size: 1.875rem;
  }
}

.p-makura__special-specification__body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__body {
    margin-top: 1.5rem;
  }
}

.p-makura__special-specification__subtitle.c-bar {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__subtitle.c-bar {
    margin-top: 2.4375rem;
  }
}

.p-makura__special-specification__subtitle.c-bar::before {
  top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__subtitle.c-bar::before {
    top: -1.125rem;
  }
}

.p-makura__point-item:not(:first-child) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-makura__point-item:not(:first-child) {
    margin-top: 3.25rem;
  }
}

.p-makura__point-item:last-child .p-point__item-title {
  letter-spacing: 0.07em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-makura__point-item:last-child .p-point__item-title {
    white-space: normal;
  }
}

.p-makura__point-item-img img {
  aspect-ratio: 570/500;
}
@media screen and (max-width: 768px) {
  .p-makura__point-item-img img {
    aspect-ratio: 290/254;
  }
}

.p-makura__special-specification__point .p-makura__point-item:last-child .p-makura__point-item-img img {
  aspect-ratio: 570/527;
}

.p-makura__special-specification__point {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-makura__special-specification__point {
    margin-top: 2.0625rem;
  }
}

.p-makura__uniqueness-inner.l-inner {
  max-width: 79.25rem;
  padding-top: 5.0625rem;
  padding-bottom: 12.1875rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .p-makura__uniqueness-inner.l-inner {
    padding-top: 3.1875rem;
    padding-bottom: 4.375rem;
    padding-inline: 1.25rem;
  }
}

.p-makura__uniqueness-body {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-makura__uniqueness-body {
    margin-top: 2.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-makura__uniqueness-subtitle.p-section__subtitle {
    letter-spacing: normal;
  }
}

@media screen and (max-width: 768px) {
  .p-makura__uniqueness-subtitle.c-bar::before {
    top: -1rem;
  }
}

.p-meister__fv {
  background: url(../images/meister/fv.jpg) center/cover no-repeat, url(../images/meister/fv.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-meister__fv {
    background: url(../images/meister/fv_sp.webp) center/cover no-repeat, url(../images/meister/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-meister__fv .p-lower-fv__title--lg {
  top: 19.625rem;
}
@media screen and (max-width: 768px) {
  .p-meister__fv .p-lower-fv__title--lg {
    top: 10.625rem;
    right: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-meister__fv .p-lower-fv__title-bottom {
    margin-top: 1.75rem;
    padding-right: 0.4375rem;
    font-size: 0.875rem;
  }
}

.p-meister__fv .c-bar::before {
  left: auto;
  right: 0;
  transform: translateX(0);
  width: 4.375rem;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-meister__fv .c-bar::before {
    width: 2.3125rem;
  }
}

.p-meister__introduction {
  background: #f4f4f4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction {
    display: flex;
    flex-direction: column;
  }
}

.p-meister__introduction-inner.l-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-inner.l-inner {
    padding-bottom: 3.25rem;
  }
}

.p-meister__introduction-breadcrumb {
  position: absolute;
  top: 0.1875rem;
  left: -3.125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-breadcrumb {
    top: 0;
    left: 0;
  }
}

.p-meister__introduction-header.p-section__header {
  text-align: left;
}

.p-meister__introduction-subtitle {
  margin-top: 2.625rem;
}

.p-meister__introduction-subtitle.c-bar::before {
  top: -1.875rem;
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-subtitle.c-bar::before {
    top: -1.0625rem;
  }
}

.p-meister__introduction-content {
  padding-top: 10rem;
  width: 29.375rem;
  height: 47.6875rem;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-content {
    padding-top: 4.875rem;
    width: 100%;
    height: 100%;
  }
}

.p-meister__introduction-message {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-message {
    margin-top: 2.375rem;
  }
}

.p-meister__introduction-copy {
  font-size: 1.875rem;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-copy {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-meister__introduction-description {
  margin-top: 1.75rem;
}

.p-meister__introduction-description {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-description {
    margin-top: 0.6875rem;
  }
}

.p-meister__introduction-img {
  position: absolute;
  top: 0;
  right: 0;
  flex-shrink: 0;
  width: 50%;
  height: auto;
  max-height: 47.6875rem;
  aspect-ratio: 670/763;
}
@media screen and (max-width: 768px) {
  .p-meister__introduction-img {
    position: static;
    width: 100%;
    aspect-ratio: 331/336;
  }
}

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

.p-meister__certification-inner.l-inner {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-meister__certification-inner.l-inner {
    padding-top: 2.875rem;
  }
}

.p-meister__certification-body {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-meister__certification-body {
    margin-top: 2.1875rem;
  }
}

.p-jibunmakura__point-item__content.p-point__item-content {
  padding-top: 8.5625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__point-item__content.p-point__item-content {
    padding-top: 3.625rem;
  }
}

.p-meister__meister-layout {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-layout {
    margin-top: 3.75rem;
  }
}

.p-meister__meister-inner.l-inner {
  padding-top: 4.8125rem;
  padding-bottom: 7.4375rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-inner.l-inner {
    padding-top: 3.1875rem;
    padding-bottom: 3.0625rem;
  }
}

.p-meister__meister-body {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-body {
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-meister__meister-header .p-lower-content-lead {
    margin-top: 1.8125rem;
  }
}

.p-meister__meister-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list {
    gap: 1.25rem;
  }
}

.p-meister__meister-list:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list:not(:first-child) {
    margin-top: 1.5rem;
  }
}

.p-meister__meister-item {
  width: calc((100% - 4.5rem) / 3);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item {
    width: 100%;
  }
}

.p-meister__meister-item.is-active {
  transform: translateY(-4px);
  box-shadow: 6px 6px 26px 0px rgba(17, 17, 26, 0.1);
}

.p-meister__meister-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 356/246;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item img {
    aspect-ratio: 290/201;
  }
}

.p-meister__meister-item__content {
  position: relative;
  padding-top: 1.6875rem;
  padding-bottom: 2.5rem;
  padding-inline: 2.0625rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__content {
    padding-inline: 1.25rem;
    padding-bottom: 2.25rem;
  }
}

.p-meister__meister-item__tag {
  padding-block: 0.3125rem;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.p-meister__meister-item__tag--sm {
  padding-inline: 0.6875rem;
}

.p-meister__meister-item__tag--lg {
  padding-inline: 0.8125rem;
}

.p-meister__meister-item__tag--jibunmakura {
  background: rgba(167, 149, 139, 0.77);
}

.p-meister__meister-item__tag--nemuri {
  background: rgba(173, 133, 133, 0.77);
}

.p-meister__meister-item__tag--makura {
  background: rgba(173, 163, 133, 0.77);
}

.p-meister__meister-item__tag + .p-meister__meister-item__name {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__tag + .p-meister__meister-item__name {
    margin-top: 1.375rem;
  }
}

.p-meister__meister-item__name-ja {
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__name-ja {
    font-size: 1.5rem;
  }
}

.p-meister__meister-item__name-en {
  margin-left: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__name-en {
    margin-left: 0.125rem;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.p-meister__meister-item__shop {
  display: inline-block;
  margin-top: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__shop {
    font-size: 0.875rem;
  }
}

.p-meister__meister-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__body {
    gap: 1.375rem;
  }
}

.p-meister__meister-list--first .p-meister__meister-item__body {
  min-height: 36.125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list--first .p-meister__meister-item__body {
    min-height: auto;
  }
}

.p-meister__meister-list--second .p-meister__meister-item__content {
  min-height: 35.433125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list--second .p-meister__meister-item__content {
    min-height: auto;
  }
}

.p-meister__meister-list--third .p-meister__meister-item__body {
  min-height: 32.125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list--third .p-meister__meister-item__body {
    min-height: auto;
  }
}

.p-meister__meister-list--fourth .p-meister__meister-item__body {
  min-height: 28.125rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-list--fourth .p-meister__meister-item__body {
    min-height: auto;
  }
}

.p-meister__meister-item__text {
  margin-top: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-meister__meister-item__btn {
  position: absolute;
  bottom: 2.5rem;
  left: 2.0625rem;
  width: 17.9375rem;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__btn {
    position: static;
    width: 100%;
  }
}

.p-meister__meister-item__btn a {
  width: 100%;
  padding-block: 0.75rem;
  border-top: 1px solid #101010;
  border-bottom: 1px solid #101010;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-meister__meister-item__btn a {
    padding-block: 0.9375rem;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .p-meister__meister-item__btn a:hover {
    border-top: 1px solid #a7958b;
    border-bottom: 1px solid #a7958b;
    background: #a7958b;
    color: #ffffff;
  }
}
.p-menu__fv {
  background: url(../images/menu/fv_pc.webp) center/cover no-repeat, url(../images/menu/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-menu__fv {
    background: url(../images/menu/fv_sp.webp) center/cover no-repeat, url(../images/menu/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-menu__inspection {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-menu__inspection {
    margin-top: 3.125rem;
  }
}

.p-menu__guidance {
  margin-top: 5.625rem;
  background: url(../images/menu/bg.webp) center/cover no-repeat, url(../images/menu/bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance {
    margin-top: 3.1875rem;
  }
}

.p-menu__guidance-inner.l-inner {
  padding-top: 6.3125rem;
  padding-bottom: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-inner.l-inner {
    padding-top: 3rem;
    padding-bottom: 4.0625rem;
  }
}

.p-menu__guidance-top .p-menu__guidance-table__list {
  margin-top: 4.9375rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-top .p-menu__guidance-table__list {
    margin-top: 3.125rem;
  }
}

.p-menu__guidance-bottom {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-bottom {
    margin-top: 5rem;
  }
}

.p-menu__guidance-bottom .p-menu__guidance-table__list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-bottom .p-menu__guidance-table__list {
    margin-top: 3.75rem;
  }
}

.p-menu__guidance-bottom .p-guidance-table__item-title {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-bottom .p-guidance-table__item-title {
    margin-top: 1.125rem;
  }
}

.p-menu__guidance-bottom .p-guidance-table__item:nth-of-type(3) .p-guidance-table__item-title {
  letter-spacing: 0.05em;
}

.p-menu__guidance-bottom .p-guidance-table__sublist {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .p-menu__guidance-bottom .p-guidance-table__sublist {
    margin-top: 1.5625rem;
  }
}

.p-news__fv {
  background: url(../images/news/fv_pc.webp) center/cover no-repeat, url(../images/news/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-news__fv {
    background: url(../images/news/fv_sp.webp) center/cover no-repeat, url(../images/news/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-news__body {
  margin-top: 4.75rem;
}
@media screen and (max-width: 768px) {
  .p-news__body {
    margin-top: 3.25rem;
  }
}

.p-news__article {
  position: relative;
}

.p-news__article:not(:first-child) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-news__article:not(:first-child) {
    margin-top: 5rem;
  }
}

.p-news__article:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-news__article:not(:first-child)::before {
    top: -2.1875rem;
  }
}

.p-news__article-time {
  font-family: "Cormorant Garamond", serif;
  color: #b5b5b5;
  font-size: 1.875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-news__article-time {
    font-size: 1.5rem;
  }
}

.p-news__article-title {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-news__article-title {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-news__article-text a {
  position: relative;
  color: #a7958b;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-news__article-text a {
    font-size: 0.875rem;
    line-height: 1.5857142857;
  }
}

.p-news__article-text a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 1px;
  background: #a7958b;
  transition: 0.55s ease-in;
}

.p-news__article-text a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #a7958b;
  transition: 0.4s ease;
}

@media (any-hover: hover) {
  .p-news__article-text a:hover::before {
    transform: translateX(0);
  }
  .p-news__article-text a:hover::after {
    transform: translateX(100%);
  }
}
.p-news .p-contents__layout {
  margin-top: 12.3125rem;
}
@media screen and (max-width: 768px) {
  .p-news .p-contents__layout {
    margin-top: 6.625rem;
  }
}

.p-onnetsushikifuton__fv {
  color: #ffffff;
}

.p-onnetsushikifuton__lineup-layout {
  margin-top: 4.4375rem;
}

.p-onnetsushikifuton__lineup-body {
  margin-top: 5.375rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__lineup-body {
    margin-top: 5rem;
  }
}

.p-onnetsushikifuton__lineup-list {
  gap: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__lineup-list {
    gap: 5rem;
  }
}

.p-onnetsushikifuton__lineup-item {
  width: calc(100% - 1.5416666667rem);
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__lineup-item {
    width: 100%;
  }
}

.p-onnetsushikifuton__lineup-item img {
  max-width: 15rem;
  aspect-ratio: 240/140;
}

.p-onnetsushikifuton__btn {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__btn {
    margin-top: 2.625rem;
  }
}

.p-onnetsushikifuton__features-layout {
  margin-top: 5.75rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__features-layout {
    margin-top: 4.25rem;
  }
}

.p-onnetsushikifuton__features__inner.l-inner {
  padding-top: 6.6875rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__features__inner.l-inner {
    padding-top: 3.625rem;
    padding-bottom: 3.1875rem;
  }
}

.p-onnetsushikifuton__features-item:first-child .p-onnetsushikifuton__features-item__content {
  padding-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__features-item:first-child .p-onnetsushikifuton__features-item__content {
    padding-top: 0;
  }
}

.p-onnetsushikifuton__features-item:last-child .p-onnetsushikifuton__features-item__content {
  padding-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__features-item:last-child .p-onnetsushikifuton__features-item__content {
    padding-top: 0;
  }
}

.p-onnetsushikifuton__commitment__inner.l-inner {
  padding-top: 5.9375rem;
  padding-bottom: 7.25rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__commitment__inner.l-inner {
    padding-top: 3.3125rem;
    padding-bottom: 4.375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__commitment-table.p-order-commitment__table {
    margin-top: 2.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__commitment-table__img.p-order-commitment__table-img {
    margin-top: 1.875rem;
  }
}

.p-onnetsushikifuton__commitment-table__img img {
  width: 46.875rem;
}
@media screen and (max-width: 768px) {
  .p-onnetsushikifuton__commitment-table__img img {
    width: 100%;
  }
}

.p-order-commitment__header {
  text-align: center;
}

.p-order-commitment__subtitle {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__subtitle {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-order-commitment__title {
  font-family: "Shippori Mincho", serif;
  margin-top: 1.25rem;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__title {
    margin-top: 0.6875rem;
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.p-order-commitment__body {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__body {
    margin-top: 2.8125rem;
  }
}

.p-order-commitment__item {
  position: relative;
  padding-top: 6.375rem;
  padding-bottom: 4rem;
  padding-inline: 3.375rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item {
    padding-top: 3.875rem;
    padding-bottom: 1.875rem;
    padding-inline: 1rem;
  }
}

.p-order-commitment__item:not(:first-child) {
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item:not(:first-child) {
    margin-top: 1.9375rem;
  }
}

.p-order-commitment__item-tag {
  position: absolute;
  top: -1.25rem;
  left: 3.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-tag {
    top: -0.625rem;
    left: 0.75rem;
    gap: 0.625rem;
  }
}

.p-order-commitment__item-point {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-point {
    font-size: 1.3125rem;
  }
}

.p-order-commitment__item-number {
  margin-top: -1.625rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-number {
    font-size: 3.3125rem;
  }
}

.p-order-commitment__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-title {
    font-size: 1.375rem;
    line-height: 1.3636363636;
    letter-spacing: 0.06em;
  }
}

.p-order-commitment__item-text {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-text {
    margin-top: 0.875rem;
    padding-right: 0.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-order-commitment__item-text.c-lower-text {
    letter-spacing: 0.04em;
  }
}

.p-order-commitment__item-text__layout {
  margin-top: 1.6em;
}

.p-order-commitment__item-body {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__item-body {
    margin-top: 1.125rem;
  }
}

.p-order-commitment__item-img img {
  width: 100%;
  height: auto;
  max-width: 63.4375rem;
  aspect-ratio: 1015/472;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-order-commitment__table {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__table {
    margin-top: 3.3125rem;
  }
}

.p-order-commitment__table-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__table-title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-order-commitment__table-img {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-order-commitment__table-img {
    margin-top: 1.4375rem;
  }
}

.p-order-commitment__table-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-order-features__item {
  display: flex;
  gap: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .p-order-features__item {
    flex-direction: column;
    gap: 1.375rem;
  }
}

.p-order-features__item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-order-features__item-img {
  flex-shrink: 0;
}

.p-order-features__item-img img {
  width: 100%;
  height: auto;
  max-width: 33.75rem;
  aspect-ratio: 540/340;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-order-features__item-img img {
    width: 100%;
  }
}

.p-order-features__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-order-features__item-title {
    font-size: 1.375rem;
    line-height: 1.5909090909;
    letter-spacing: 0.06em;
  }
}

.p-order-features__item-text {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-order-features__item-text {
    margin-top: 1.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-order-features__item-text.c-lower-text {
    letter-spacing: 0.04em;
  }
}

.p-premium-order__commitment__inner.l-inner {
  padding-top: 6.0625rem;
  padding-bottom: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__commitment__inner.l-inner {
    padding-top: 3.0625rem;
    padding-bottom: 6.125rem;
  }
}

.p-order-lineup__title {
  position: relative;
  padding-left: 0.625rem;
}

@media screen and (max-width: 768px) {
  .p-order-lineup__title.c-lower-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    padding-left: 0.25rem;
  }
}

.p-order-lineup__title-tag {
  position: absolute;
  top: 0;
  left: 37.4%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__title-tag {
    left: 11%;
    top: -0.5625rem;
    font-size: 0.625rem;
    line-height: 1.3;
  }
}

.p-order-lineup__title-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5.25rem;
  height: 5.25rem;
  background: #a7958b;
  border-radius: 100vh;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__title-tag::before {
    width: 3.875rem;
    height: 3.875rem;
  }
}

.p-order-lineup__lead {
  margin-top: 2.3125rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__lead {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.065em;
  }
}

.p-order-lineup__list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__list {
    flex-direction: column;
  }
}

.p-order-lineup__item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}

.p-order-lineup__item-title {
  margin-top: 4.5625rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__item-title {
    margin-top: 1.25rem;
    font-size: 1.375rem;
    line-height: 1.1363636364;
    letter-spacing: 0.06em;
  }
}

.p-order-lineup__item-quality {
  margin-top: 2.25rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__item-quality {
    margin-top: 0.8125rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-order-lineup__item-price--basic {
  position: relative;
  margin-top: 2.5625rem;
  line-height: 2.125;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__item-price--basic {
    margin-top: 2.0625rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-order-lineup__item-price--basic::before {
  content: "";
  position: absolute;
  top: -1.5625rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__item-price--basic::before {
    top: -1.25rem;
  }
}

.p-order-lineup__item-price--other {
  margin-top: 0.3125rem;
  line-height: 2.125;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-order-lineup__item-price__number {
  font-size: 1.5rem;
  line-height: 0.7058823529;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__item-price__number {
    line-height: 0.8571428571;
    letter-spacing: 0.04em;
  }
}

.p-order-lineup__btn {
  width: 31.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-order-lineup__btn {
    width: 100%;
  }
}

.p-original__fv {
  position: relative;
  overflow: clip;
}

.p-original__fv::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 28.75rem;
  height: 50.3125rem;
  background: url(../images/original/fv_pc.webp) center/cover no-repeat, url(../images/original/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-original__fv::before {
    width: 26.0625rem;
    height: 10.3125rem;
    top: auto;
    bottom: -3.25rem;
    background: url(../images/original/fv_sp.webp) center/cover no-repeat, url(../images/original/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-original__fv .p-lower-fv__title--lg {
  top: 14.875rem;
}
@media screen and (max-width: 768px) {
  .p-original__fv .p-lower-fv__title--lg {
    top: 8.125rem;
    right: 1.1875rem;
  }
}

.p-original__fv .p-lower-fv__title-top {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-original__fv .p-lower-fv__title-top {
    font-size: 3.875rem;
  }
}

.p-original__fv .p-lower-fv__title-bottom {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-original__fv .p-lower-fv__title-bottom {
    font-size: 0.875rem;
  }
}

.p-original .p-lower-fv__title {
  color: #ffffff;
}

.p-original__anchor__layout {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-original__anchor__layout {
    margin-right: 0;
    margin-top: 1.75rem;
  }
}

.p-original__anchorlist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-original__anchorlist {
    gap: 0.25rem;
  }
}

.p-original__anchor-item {
  width: calc((100% - 1.875rem) / 6);
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .p-original__anchor-item {
    width: calc((100% - 0.25rem) / 2);
    height: 2.8125rem;
  }
}

.p-original__anchor-item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.02em;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-original__anchor-item a {
    font-size: 0.75rem;
  }
}

.p-original__anchor-item a::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 0.75rem;
  transform: translateY(-50%) rotate(135deg);
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 1px #101010;
  border-right: solid 1px #101010;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-original__anchor-item a::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-original__anchor-item:nth-of-type(2) a {
    font-size: 0.6875rem;
  }
}

.p-original__anchor-item:nth-of-type(3) a {
  padding-right: 0.5rem;
}

.p-original__anchor-item:nth-of-type(7) a {
  padding-right: 0.375rem;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-original__anchor-item:nth-of-type(7) a {
    font-size: 0.5625rem;
  }
}

.p-original__anchor-item:nth-of-type(9) a {
  padding-right: 0.875rem;
}

@media (any-hover: hover) {
  .p-original__anchor-item a:hover {
    background: #a7958b;
    color: #ffffff;
  }
  .p-original__anchor-item a:hover::before {
    top: 54%;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
  }
}
.p-original__detail {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail {
    margin-top: 3.125rem;
  }
}

.p-original__detail-bottom {
  margin-top: 6.625rem;
}

.p-original__detail-bottom .p-original__detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-bottom .p-original__detail-list {
    flex-direction: column;
  }
}

.p-original__detail-top .p-original__detail-item {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item {
    flex-direction: column;
  }
}

.p-original__detail-bottom .p-original__detail-item {
  width: calc((100% - 3.4375rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-original__detail-bottom .p-original__detail-item {
    width: 100%;
  }
}

.p-original__detail-item--reverse {
  flex-direction: row-reverse;
}

.p-original__detail-item picture {
  flex-shrink: 0;
}

.p-original__detail-top .p-original__detail-item img {
  width: 100%;
  height: auto;
  max-width: 41.875rem;
  aspect-ratio: 670/629;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-original__detail-bottom .p-original__detail-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 542/289;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-original__detail-item__content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-original__detail-item__content {
    padding-bottom: 3.25rem;
  }
}

.p-original__detail-top .p-original__detail-item__content {
  flex-shrink: 0;
  width: 41.875rem;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item__content {
    padding-top: 4.3125rem;
    width: 100%;
  }
}

.p-original__detail-bottom .p-original__detail-item__content {
  height: 19.375rem;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-bottom .p-original__detail-item__content {
    padding-top: 1.0625rem;
  }
}

.p-original__detail-top .p-original__detail-item .p-original__detail-item__content {
  padding-left: 4.0625rem;
  padding-right: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item .p-original__detail-item__content {
    padding-top: 2.4375rem;
    padding-inline: 1.5rem;
  }
}

.p-original__detail-top .p-original__detail-item--reverse .p-original__detail-item__content {
  padding-right: 4.0625rem;
  padding-left: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item--reverse .p-original__detail-item__content {
    padding-inline: 1.5rem;
  }
}

.p-original__detail-item__title {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}

.p-original__detail-top .p-original__detail-item__title {
  font-size: 2.125rem;
  line-height: 1.2941176471;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item__title {
    font-size: 1.375rem;
  }
}

.p-original__detail-bottom .p-original__detail-item__title {
  font-size: 2.1875rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-original__detail-bottom .p-original__detail-item__title {
    font-size: 1.375rem;
  }
}

.p-original__detail-item:nth-of-type(6) .p-original__detail-item__title {
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 1370px) {
  .p-original__detail-item:nth-of-type(6) .p-original__detail-item__title {
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .p-original__detail-item:nth-of-type(6) .p-original__detail-item__title {
    font-size: 1.375rem;
    white-space: normal;
  }
}

.p-original__detail-item__subtitle {
  margin-top: 3rem;
  font-size: 1.4375rem;
  line-height: 1.6086956522;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-original__detail-item__subtitle {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.p-original__detail-top .p-original__detail-item__text {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item__text {
    margin-top: 1rem;
  }
}

.p-original__detail-bottom .p-original__detail-item__text {
  width: 30.5625rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-bottom .p-original__detail-item__text {
    width: 100%;
    margin-top: 1.3125rem;
  }
}

.p-original__detail-top .p-original__detail-item__btn {
  position: absolute;
  bottom: 3.625rem;
  left: 4.0625rem;
  width: 31.5625rem;
}
@media screen and (max-width: 768px) {
  .p-original__detail-top .p-original__detail-item__btn {
    position: static;
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-original__detail-bottom .p-original__detail-item__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.p-original__detail-item__btn .p-btn__text--before .p-btn__text-img,
.p-original__detail-item__btn .p-btn__text--after .p-btn__text-img {
  width: 1.5625rem;
  height: 1.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-original .p-contents__layout {
  margin-top: 11.625rem;
}
@media screen and (max-width: 768px) {
  .p-original .p-contents__layout {
    margin-top: 6.9375rem;
  }
}

.p-page-link {
  padding-block: 4.375rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-page-link {
    padding-top: 2.4375rem;
    padding-bottom: 3.875rem;
  }
}

.p-page-link__list {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-page-link__list {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-page-link__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  height: 4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-page-link__item a {
    width: 100%;
    height: 3.375rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-page-link__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5625rem;
  transform: translateY(-50%) rotate(90deg);
  width: 0.5625rem;
  height: 1.1875rem;
  background: #101010;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-page-link__item a::before {
    top: 54%;
    right: 0.625rem;
    width: 0.4375rem;
    height: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .p-page-link__item a:hover {
    background: #a7958b;
    color: #ffffff;
  }
  .p-page-link__item a:hover::before {
    top: 56%;
    background: #ffffff;
  }
}
.p-point__item {
  display: flex;
  justify-content: space-between;
  gap: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-point__item {
    justify-content: center;
    flex-direction: column;
    gap: 2.125rem;
  }
}

.p-point__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-point__item--reverse {
    flex-direction: column;
  }
}

.p-point__item-content {
  position: relative;
  width: 31.5rem;
  padding-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-point__item-content {
    width: 100%;
    padding-top: 4.1875rem;
  }
}

.p-point__item-header {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.p-point__item-tag {
  position: absolute;
  top: -5.75rem;
  left: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-point__item-tag {
    position: absolute;
    top: -3.625rem;
  }
}

.p-point__item-tag__text {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-point__item-tag__text {
    font-size: 1.3125rem;
  }
}

.p-point__item-tag__number {
  display: inline-block;
  margin-top: -1.5625rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-point__item-tag__number {
    margin-top: -1.0625rem;
    font-size: 3.3125rem;
  }
}

.p-point__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-point__item-title {
    font-size: 1.5rem;
  }
}

.p-point__item-subtitle {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-point__item-text {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-point__item-text {
    margin-top: 2.5rem;
  }
}

.p-point__item-subtitle {
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .p-point__item-subtitle {
    margin-top: 3rem;
  }
}

.p-point__item-subtitle + .p-point__item-text {
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-point__item-subtitle + .p-point__item-text {
    margin-top: 1rem;
  }
}

.p-point__item-content .c-bar::before {
  top: -2.4375rem;
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-point__item-content .c-bar::before {
    top: -1.1875rem;
    width: 2.4375rem;
  }
}

.p-point__item-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-point__item-btn {
    position: static;
    margin-top: 0.875rem;
  }
}

.p-point__item-img {
  flex-shrink: 0;
  max-width: 35.625rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-point__item-img {
    max-width: 100%;
  }
}

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

.p-premium-order__fv {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-premium-order .p-fv__inner {
    padding-top: 0.9375rem;
  }
}

.p-premium-order__lineup-layout {
  margin-top: 3.8125rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__lineup-layout {
    margin-top: 4.125rem;
  }
}

.p-premium-order__lineup-body {
  margin-top: 7.625rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__lineup-body {
    margin-top: 5.625rem;
  }
}

.p-premium-order__lineup-list {
  gap: 1.625rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__lineup-list {
    gap: 5rem;
  }
}

.p-premium-order__lineup-item {
  width: calc((100% - 5.0625rem) / 4);
}
@media screen and (max-width: 768px) {
  .p-premium-order__lineup-item {
    width: 100%;
  }
}

.p-premium-order__lineup-item img {
  max-width: 12rem;
  aspect-ratio: 192/130;
}
@media screen and (max-width: 768px) {
  .p-premium-order__lineup-item img {
    max-width: 13.1875rem;
    aspect-ratio: 211/143;
  }
}

@media screen and (max-width: 768px) {
  .p-premium-order__lineup-item__title.p-order-lineup__item-title {
    margin-top: 5.1875rem;
  }
}

.p-premium-order__features-layout {
  margin-top: 5.875rem;
  background: url(../images/premium_order/bg.jpg) center/cover no-repeat, url(../images/premium_order/bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features-layout {
    margin-top: 5rem;
  }
}

.p-premium-order__features-item:first-child .p-premium-order__features-item__content {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features-item:first-child .p-premium-order__features-item__content {
    padding-top: 0;
  }
}

.p-premium-order__features-item:last-child .p-premium-order__features-item__content {
  padding-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features-item:last-child .p-premium-order__features-item__content {
    padding-top: 0;
  }
}

.p-premium-order__btn {
  margin-top: 3.1875rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__btn {
    margin-top: 2.625rem;
  }
}

.p-premium-order__features__inner.l-inner {
  padding-top: 5.5625rem;
  padding-bottom: 7.9375rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features__inner.l-inner {
    padding-top: 2.875rem;
    padding-bottom: 3rem;
  }
}

.p-premium-order__features__body {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features__body {
    margin-top: 2.125rem;
  }
}

.p-premium-order__features-header {
  text-align: center;
}

.p-premium-order__features__subtitle {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features__subtitle {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-premium-order__features__title {
  margin-top: 1.4375rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-premium-order__features__title {
    margin-top: 0.75rem;
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.p-premium-order__commitment-item__img {
  display: flex;
  gap: 3.6875rem;
}
@media screen and (max-width: 768px) {
  .p-premium-order__commitment-item__img {
    flex-direction: column;
    gap: 0.6875rem;
    padding-right: 0.5rem;
  }
}

.p-premium-order__commitment-item__img.p-order-commitment__item-img img {
  width: 100%;
  height: auto;
  max-width: 30.25rem;
  aspect-ratio: 484/472;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-premium-order__commitment-table__img {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-premium-order__commitment-table__img.u-md-none {
    display: none;
  }
}

.p-premium-order__commitment-table__img.u-md-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-premium-order__commitment-table__img.u-md-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}

.p-premium-order__commitment-table__img img {
  width: 51.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-premium-order__commitment-table__img img {
    width: 100%;
  }
}

.p-privacy__fv {
  background: url(../images/privacy/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-privacy__fv {
    background: url(../images/privacy/fv_sp.jpg) center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-privacy .p-lower-fv .p-fv__inner {
    padding-top: 2.8125rem;
  }
}

.p-privacy__wrapper {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-privacy__wrapper {
    margin-top: 4.0625rem;
  }
}

.p-privacy__inner.l-inner {
  padding-right: 2.0625rem;
  padding-bottom: 9.125rem;
}
@media screen and (max-width: 768px) {
  .p-privacy__inner.l-inner {
    padding-right: 1.25rem;
    padding-bottom: 5.9375rem;
  }
}

.p-privacy__announce-text {
  font-size: 0.875rem;
  line-height: 2.3571428571;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-privacy__announce-text {
    line-height: 1.9285714286;
  }
}

.p-privacy__list {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-privacy__list {
    margin-top: 1.4375rem;
  }
}

.p-privacy__item:not(:first-child) {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-privacy__item:not(:first-child) {
    margin-top: 1.6875rem;
  }
}

.p-privacy__item-title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8333333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-privacy__item-title {
    font-weight: 500;
    line-height: 1.5;
  }
}

.p-privacy__item-text {
  font-size: 0.875rem;
  line-height: 2.3571428571;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-privacy__item-text {
    line-height: 1.9285714286;
  }
}

.p-privacy__item-text + .p-privacy__item-text {
  margin-top: 2.3em;
}

.p-privacy__contact {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-privacy__contact {
    margin-top: 3.1875rem;
  }
}

.p-privacy__contact-text {
  font-size: 0.875rem;
  line-height: 2.3571428571;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-privacy__contact-text {
    line-height: 1.9285714286;
  }
}

.p-progress {
  flex-shrink: 0;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .p-progress {
    height: 62.1875rem;
  }
}

.p-progress__bar {
  width: 100%;
  height: 0;
  background: #a7958b;
  transform-origin: top;
}

.p-reform__fv {
  background: url(../images/reform/fv_pc.webp) center/cover no-repeat, url(../images/reform/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-reform__fv {
    background: url(../images/reform/fv_sp.webp) center/cover no-repeat, url(../images/reform/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-reform__fv .p-lower-fv__title--lg {
  top: 16.875rem;
}
@media screen and (max-width: 768px) {
  .p-reform__fv .p-lower-fv__title--lg {
    top: 10.6875rem;
    right: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-reform__fv .p-lower-fv__title-top--en {
    font-size: 3.875rem;
  }
}

.p-reform__fv .p-lower-fv__title-bottom--lg {
  display: inline-block;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__fv .p-lower-fv__title-bottom--lg {
    font-size: 0.875rem;
  }
}

.p-reform__fv .u-fv-margin-lg {
  margin-top: 5.125rem;
}
@media screen and (max-width: 768px) {
  .p-reform__fv .u-fv-margin-lg {
    margin-top: 1.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-reform__fv .c-bar::before {
    top: -1.375rem;
    right: 0.3125rem;
    width: 2.125rem;
  }
}

.p-reform__inner.l-inner {
  padding-top: 2.1875rem;
  padding-inline: 0;
  padding-bottom: 8.5625rem;
}

.p-reform__layout {
  margin-top: 1.25rem;
}

.p-reform__bg--white {
  background: #ffffff;
}

.p-reform__inner {
  padding: 5.4375rem 5rem 6.25rem;
  padding-inline: 5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__inner {
    padding: 4.25rem 1.25rem 3.75rem;
  }
}

.p-reform__header-wrapper {
  padding-inline: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__header-wrapper {
    padding-inline: 1.25rem;
  }
}

.p-reform__header {
  padding-bottom: 2.125rem;
  border-bottom: 1px solid #101010;
}
@media screen and (max-width: 768px) {
  .p-reform__header {
    padding-bottom: 1.25rem;
  }
}

.p-reform__title {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.p-reform__top .p-reform__title {
  gap: 0.625rem;
}

.p-reform__title-sub {
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reform__title-sub {
    font-size: 0.875rem;
  }
}

.p-reform__title-main {
  font-family: "Shippori Mincho", serif;
  font-size: 2.3125rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reform__title-main {
    font-size: 1.375rem;
  }
}

.p-reform__title-main.p-reform__title-main--sm {
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-reform__title-main.p-reform__title-main--sm {
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.p-reform__subtile {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__subtile {
    font-size: 1.375rem;
  }
}

.p-reform__subtext {
  margin-top: 1.625rem;
  padding-left: 0.3125rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__subtext {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    text-align: left;
    padding-left: 0;
  }
}

.p-reform__body {
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-reform__body {
    margin-top: 3rem;
    margin-top: 1.75rem;
  }
}

.p-reform__anchor-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-list {
    flex-direction: column;
    gap: 0.5rem;
    padding-inline: 1.25rem;
  }
}

.p-reform__anchor-item {
  width: 25.5625rem;
  height: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-item {
    width: 100%;
    height: 3.75rem;
  }
}

.p-reform__anchor-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-item a {
    gap: 0.375rem;
  }
}

.p-reform__anchor-item a::before {
  content: "";
  position: absolute;
  top: 47%;
  right: 1.25rem;
  transform: translateY(-50%) rotate(135deg);
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 1px #101010;
  border-right: solid 1px #101010;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-item a::before {
    top: 51%;
    right: 0.6875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-reform__anchor-item__text {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-item__text {
    font-size: 0.75rem;
  }
}

.p-reform__anchor-item__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-reform__anchor-item__title {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-reform__anchor-item a:hover {
    background: #a7958b;
    color: #ffffff;
  }
  .p-reform__anchor-item a:hover::before {
    top: 54%;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
  }
}
.p-reform__wrapper {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-reform__wrapper {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-reform__wrapper .l-inner {
    padding-inline: 0;
  }
}

.p-reform__bottom {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__bottom {
    margin-top: 1.25rem;
  }
}

.p-reform__inner.p-reform__bottom-inner {
  padding-top: 4.4375rem;
}

.p-reform__case-list {
  width: 36.0625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-reform__case-list {
    width: 100%;
  }
}

.p-reform__case-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-left: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__case-item {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding-left: 1.25rem;
  }
}

.p-reform__case-item::before {
  content: "";
  position: absolute;
  top: 0.53125rem;
  left: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 100vh;
  border: 1px solid #101010;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .p-reform__case-item::before {
    top: 0.34375rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.p-reform__benefit {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit {
    margin-top: 1.9375rem;
    padding-inline: 1.25rem;
  }
}

.p-reform__top .p-reform__benefit {
  padding-top: 4.4375rem;
  padding-bottom: 4.125rem;
  background: url(../images/reform/reform_bg.webp) center/cover no-repeat, url(../images/reform/reform_bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-reform__top .p-reform__benefit {
    padding-top: 2.6875rem;
    padding-bottom: 1.75rem;
  }
}

.p-reform__bottom .p-reform__benefit {
  padding-top: 4.3125rem;
  padding-bottom: 4rem;
  background: url(../images/reform/cleaning_bg.webp) center/cover no-repeat, url(../images/reform/cleaning_bg.jpg) center/cover no-repeat;
}
.p-reform__benefit-copy {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-copy {
    font-size: 1.375rem;
    line-height: 1.1363636364;
  }
}

.p-reform__benefit-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-list {
    flex-direction: column;
    gap: 1.1875rem;
  }
}

.p-reform__top .p-reform__benefit-list {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__top .p-reform__benefit-list {
    margin-top: 1.5rem;
  }
}

.p-reform__benefit-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 5.75rem;
  gap: 2.3125rem;
  width: 20.875rem;
  height: 20.875rem;
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-item {
    justify-content: center;
    gap: 1.125rem;
    width: 100%;
    height: auto;
    padding-top: 0;
  }
}

.p-reform__benefit-item__title {
  font-size: 1.375rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-item__title {
    font-size: 1.125rem;
  }
}

.p-reform__benefit-item__text {
  width: 16.3125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-item__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-reform__top .p-reform__benefit-item:first-child .p-reform__benefit-item__text {
  padding-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__top .p-reform__benefit-item:first-child .p-reform__benefit-item__text {
    padding-top: 0;
  }
}

.p-reform__benefit-text {
  margin-top: 2.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__benefit-text {
    margin-top: 1.75rem;
    text-align: left;
  }
}

.p-reform__reform-flow {
  padding-bottom: 2.875rem;
}

.p-reform__flow-subtext + .p-reform__flow-subtext {
  margin-top: 0.4375rem;
}

.p-reform__flow-inner {
  padding-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-inner {
    padding-top: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.p-reform__flow-standard .p-reform__flow-list_wrapper {
  padding-bottom: 4.3125rem;
}

.p-reform__flow-list {
  margin-top: 2.6875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.0625rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-list {
    flex-direction: column;
    gap: 3.4375rem;
    margin-top: 1.125rem;
  }
}

.p-reform__flow-item {
  position: relative;
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-reform__flow-item {
    width: 100%;
  }
}

.p-reform__flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 4.5625rem;
  right: -1.75rem;
  transform: rotate(45deg);
  width: 1.5rem;
  height: 1.5rem;
  border-top: solid 1px #101010;
  border-right: solid 1px #101010;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-item:not(:last-child)::before {
    top: auto;
    bottom: -1.875rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}

.p-reform__flow-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 264/173;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-reform__flow-item__title {
  margin-top: 1.0625rem;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-item__title {
    margin-top: 0.8125rem;
    font-size: 1.125rem;
  }
}

.p-reform__flow-item__text {
  margin-top: 1.1875rem;
  line-height: 1.625;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-item__text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.05em;
  }
}

.p-reform__flow-item__note {
  margin-top: 0.4375rem;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-item__note {
    margin-top: 0.75rem;
  }
}

.p-reform__flow-cleaning__inner {
  padding-top: 3.8125rem;
  padding-bottom: 5.1875rem;
}

.p-reform__flow-wrapper {
  padding-inline: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-wrapper {
    padding-inline: 1.25rem;
  }
}

.p-reform__flow-standard {
  margin-top: 3.875rem;
}

.p-reform__flow-premium {
  position: relative;
  margin-top: 9.25rem;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-premium {
    margin-top: 4.5625rem;
  }
}

.p-reform__flow-premium::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 55.25rem;
  height: 1px;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-premium::before {
    top: -2.625rem;
    width: 100%;
  }
}

.p-reform__flow-subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8333333333;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-subtitle {
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    line-height: 1.4444444444;
  }
}

.p-reform__flow-premium .p-reform__flow-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-premium .p-reform__flow-subtitle {
    justify-content: flex-start;
    padding-left: 0.625rem;
  }
}

.p-reform__flow-subtext {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-subtext {
    padding-inline: 0.5625rem;
    margin-top: 1.375rem;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-align: left;
  }
}

.p-reform__flow-tag__recommend {
  position: relative;
  margin-top: -1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-tag__recommend {
    margin-top: 0;
    font-size: 0.625rem;
    letter-spacing: 0.06em;
  }
}

.p-reform__flow-tag__recommend::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.875rem;
  height: 4.875rem;
  background: #a7958b;
  border-radius: 100vh;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-reform__flow-tag__recommend::before {
    width: 3.875rem;
    height: 3.875rem;
  }
}

.p-reform__course-inner {
  width: 39.25rem;
  margin-inline: auto;
  padding-top: 3.8125rem;
  padding-bottom: 2.875rem;
}
@media screen and (max-width: 768px) {
  .p-reform__course-inner {
    width: 100%;
    padding-inline: 1.25rem;
    padding-top: 2.375rem;
    padding-bottom: 1.8125rem;
  }
}

.p-reform__course-table {
  margin-top: 1.9375rem;
  padding-inline: 0.375rem;
}
@media screen and (max-width: 768px) {
  .p-reform__course-table {
    margin-top: 2.375rem;
    padding-inline: 0;
  }
}

.p-reform__course-table + .p-reform__course-table {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reform__course-table + .p-reform__course-table {
    margin-top: 2.375rem;
  }
}

.p-reform__course-table__title.c-lower-text {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-reform__course-table__title.c-lower-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}

.p-reform__course-table__img {
  aspect-ratio: 621/545;
}
@media screen and (max-width: 768px) {
  .p-reform__course-table__img {
    margin-top: 0.625rem;
    aspect-ratio: 238/461;
  }
}

.p-reform__course-table__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-reform__course-note__list {
  margin-top: 1.5625rem;
}

@media screen and (max-width: 768px) {
  .p-reform__washing-system {
    display: none;
  }
}

.p-reform__washing-system__inner {
  padding-top: 3.8125rem;
  padding-bottom: 3.875rem;
  padding-inline: 2.8125rem;
}

.p-reform__washing-system__flow {
  padding-block: 1.5rem;
  color: #ffffff;
  text-align: center;
}

.p-reform__washing-system__flow--regular {
  margin-top: 2.8125rem;
  background: #c7bfae;
}

.p-reform__washing-system__flow--specialty {
  position: relative;
  margin-top: 1.875rem;
  background: #a7958b;
}

.p-reform__washing-system__flow--specialty::before {
  content: "";
  position: absolute;
  top: -2.125rem;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  width: 1.5rem;
  height: 1.5rem;
  border-top: solid 1px #101010;
  border-right: solid 1px #101010;
}

.p-reform__washing-system__flow__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-reform__washing-system__flow__list {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-reform__confirm-inner {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__confirm-inner {
    padding: 2.875rem 1.25rem 1.875rem;
  }
}

.p-reform__confirm-img {
  margin-top: 2.25rem;
}

.p-reform__confirm-img img {
  width: 100%;
  height: auto;
  max-width: 44.25rem;
  aspect-ratio: 708/743;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-reform__confirm-title {
  padding-right: 0.9375rem;
}
.p-reform__confirm-list {
  width: 42.5rem;
  width: 45.625rem;
  margin-top: 3rem;
  margin-inline: auto;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reform__confirm-list {
    width: 100%;
    padding-left: 0;
  }
}

.p-reform__confirm-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.125rem;
  border-top: 1px solid #101010;
}
@media screen and (max-width: 768px) {
  .p-reform__confirm-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-reform__confirm-item:last-child {
  border-bottom: 1px solid #101010;
}

.p-reform__confirm-item__header {
  width: 18.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-reform__confirm-item__header {
    width: 100%;
  }
}

.p-reform__confirm-item__title {
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

.p-reform__confirm-item__text {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  text-indent: 0.6875rem;
  letter-spacing: 0.01em;
  line-height: 1.64;
}

.p-reform__confirm-item__text + .p-reform__confirm-item__text {
  margin-top: 0.25rem;
}

.p-reform__confirm-item__text::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 100vh;
  background: #101010;
}

.p-reform__store-search {
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-reform__store-search {
    margin-top: 1.625rem;
  }
}

.p-reform__store-search__text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__store-search__text {
    text-align: left;
  }
}

.p-reform__store-search__btn {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reform__store-search__btn {
    margin-top: 0.6875rem;
  }
}

.p-reform__store-search__btn a {
  width: 31.5rem;
}
@media screen and (max-width: 768px) {
  .p-reform__store-search__btn a {
    width: 100%;
  }
}

.p-jibunmakura__fv {
  background: url(../images/jibunmakura/fv_pc.webp) center/cover no-repeat, url(../images/jibunmakura/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__fv {
    background: url(../images/jibunmakura/fv_sp.webp) center/cover no-repeat, url(../images/jibunmakura/fv_sp.jpg) center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura__fv .p-lower-fv__title--lg {
    top: 10.5625rem;
    right: 1.125rem;
  }
}

.p-jibunmakura__fv .c-bar::before {
  left: auto;
  right: 0;
  transform: translateX(0);
  width: 4.375rem;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__fv .c-bar::before {
    width: 2.3125rem;
  }
}

.p-jibunmakura__introduction-layout {
  position: relative;
}

.p-jibunmakura__introduction-top {
  background: #f4f4f4;
}

.p-jibunmakura__introduction-header.p-section__header {
  text-align: left;
}

.p-jibunmakura__introduction-subtitle {
  margin-top: 2.625rem;
}

.p-jibunmakura__introduction-subtitle.c-bar::before {
  top: -1.875rem;
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-subtitle.c-bar::before {
    top: -1.125rem;
  }
}

.p-jibunmakura__introduction-content {
  padding-top: 6.4375rem;
  width: 29.375rem;
  height: 47.6875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-content {
    width: 100%;
    height: 100%;
    padding-top: 2.9375rem;
    padding-bottom: 3.75rem;
  }
}

.p-jibunmakura__introduction-message {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-message {
    margin-top: 2.0625rem;
  }
}

.p-jibunmakura__introduction-copy {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-copy {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-jibunmakura__introduction-description {
  margin-top: 1.75rem;
}

.p-jibunmakura__introduction-description--first {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-description--first {
    margin-top: 0.6875rem;
  }
}

.p-jibunmakura__introduction-description--second {
  margin-top: 1.5625rem;
}

.p-jibunmakura__introduction-img {
  position: absolute;
  top: 0;
  right: 0;
  flex-shrink: 0;
  width: 50%;
  height: auto;
  max-height: 47.6875rem;
  aspect-ratio: 670/763;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-img {
    position: static;
    width: 100%;
    aspect-ratio: 330/345;
  }
}

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

/* 
　reason
─────────────────────────────
*/
.p-jibunmakura__reason-header {
  text-align: center;
}

.p-jibunmakura__reason-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.p-jibunmakura__reason-lead {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-lead {
    margin-top: 1.25rem;
    text-align: left;
  }
}

.p-jibunmakura__reason-body {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-body {
    margin-top: 3.5rem;
  }
}

.p-jibunmakura__introduction-bottom__inner.l-inner {
  padding-top: 5.875rem;
  padding-bottom: 7.625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__introduction-bottom__inner.l-inner {
    padding-top: 3rem;
    padding-bottom: 4.6875rem;
  }
}

.p-jibunmakura__reason-item:not(:first-child) {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item:not(:first-child) {
    margin-top: 4.6875rem;
  }
}

.p-jibunmakura__reason-item {
  display: flex;
  gap: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-jibunmakura__reason-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item--reverse {
    flex-direction: column;
  }
}

.p-jibunmakura__reason-item__comment {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__comment {
    padding-top: 2rem;
    padding-top: 0;
  }
}

.p-jibunmakura__reason-item__category {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  background: #a7958b;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__category {
    padding: 0.5rem 0.9375rem;
    font-size: 1.375rem;
  }
}

.p-jibunmakura__reason-item__heading--sm {
  margin-top: 2.3125rem;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__heading--sm {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
  }
}

.p-jibunmakura__reason-item__heading--lg {
  margin-top: 1.375rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.3125rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__heading--lg {
    margin-top: 0.75rem;
    font-size: 1.8125rem;
    letter-spacing: normal;
    line-height: 1.2666666667;
  }
}

.p-jibunmakura__reason-item__heading--lg.c-bar::before {
  top: auto;
  left: 0;
  bottom: -2.375rem;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__heading--lg.c-bar::before {
    width: 2.4375rem;
    bottom: -1.5625rem;
  }
}

.p-jibunmakura__reason-item__body {
  margin-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__body {
    margin-top: 3.0625rem;
  }
}

.p-jibunmakura__reason-item__text {
  width: 32.1875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__reason-item__text {
    width: 100%;
  }
}

.p-jibunmakura__reason-item__img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  max-width: 35.625rem;
  aspect-ratio: 570/449;
}

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

/* 
　sequence
─────────────────────────────
*/
.p-jibunmakura__sequence-inner.l-inner {
  padding-top: 4.8125rem;
  padding-bottom: 8.4375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-inner.l-inner {
    padding-top: 3rem;
    padding-bottom: 4.0625rem;
  }
}

.p-jibunmakura__sequence-use {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-use {
    margin-top: 4rem;
  }
}

.p-jibunmakura__sequence-header {
  text-align: center;
}

.p-jibunmakura__sequence-subtitle {
  margin-top: 2.9375rem;
}
.p-jibunmakura__sequence-subtitle.c-bar::before {
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-subtitle.c-bar::before {
    top: -1.1875rem;
  }
}

.p-jibunmakura__sequence-lead {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-lead {
    margin-top: 1.8125rem;
    text-align: left;
  }
}

.p-jibunmakura__sequence-body {
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-body {
    margin-top: 2.0625rem;
  }
}

.p-jibunmakura__step {
  padding-top: 4.5625rem;
  padding-bottom: 5.625rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step {
    padding-top: 2.75rem;
    padding-bottom: 1rem;
  }
}

.p-jibunmakura__sequence-make {
  position: relative;
}

.p-jibunmakura__sequence-make::before {
  content: "";
  position: absolute;
  bottom: -3.5625rem;
  left: 0;
  width: 100%;
  height: 3.5625rem;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.p-jibunmakura__step-header {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-header {
    padding-inline: 1.25rem;
  }
}

.p-jibunmakura__step-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-title {
    width: 14.625rem;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-inline: auto;
  }
}

.p-jibunmakura__step-text {
  margin-top: 1.125rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-text {
    margin-top: 1.625rem;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-jibunmakura__step-body {
  margin-top: 4.9375rem;
  padding-right: 4.375rem;
  padding-left: 6rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-body {
    margin-top: 4rem;
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura__step .p-jibunmakura__step-body {
    margin-top: 2.1875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-jibunmakura__sequence-use .p-jibunmakura__step-body {
    padding-bottom: 1.5625rem;
  }
}

.p-jibunmakura__step-item {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item {
    flex-direction: column;
    gap: 1.125rem;
  }
}

.p-jibunmakura__step-item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item:not(:first-child) {
    margin-top: 2.75rem;
  }
}

.p-jibunmakura__step-item__thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  max-width: 20.5625rem;
  aspect-ratio: 329/225;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__thumbnail {
    max-width: 100%;
    aspect-ratio: 250/171;
  }
}

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

.p-jibunmakura__step-item__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  background: #ffffff;
  clip-path: polygon(100% 0, 0% 100%, 0 0);
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__thumbnail::before {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.p-jibunmakura__step-item__step {
  position: absolute;
  top: -1.875rem;
  left: -0.9375rem;
  color: #a7958b;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__step {
    top: -1rem;
    left: -0.3125rem;
  }
}

.p-jibunmakura__step-item--6 .p-jibunmakura__step-item__step {
  top: -1.75rem;
}

.p-jibunmakura__step-item--10 .p-jibunmakura__step-item__step {
  top: -1.4375rem;
}

.p-jibunmakura__step-item__step-number {
  display: block;
  margin-top: -0.9375rem;
  font-size: 4.375rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__step-number {
    font-size: 3.3125rem;
  }
}

.p-jibunmakura__step-item--6 .p-jibunmakura__step-item__step-number {
  margin-top: -0.125rem;
}

.p-jibunmakura__step-item__step-text {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__step-text {
    font-size: 1.3125rem;
  }
}

.p-jibunmakura__step-item__content {
  padding-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__content {
    padding-top: 0;
  }
}

.p-jibunmakura__step-item--9 .p-jibunmakura__step-item__content {
  padding-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item--9 .p-jibunmakura__step-item__content {
    padding-top: 0;
  }
}

.p-jibunmakura__step-item__note {
  position: relative;
  padding-left: 1.875rem;
  color: #a7958b;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__note {
    padding-left: 1.6875rem;
    font-size: 0.875rem;
    line-height: 2.2857142857;
  }
}

.p-jibunmakura__step-item__note::before {
  content: "";
  position: absolute;
  top: 57%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../images/jibunmakura/pillow.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__note::before {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-jibunmakura__step-item__title {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__title {
    font-size: 1.375rem;
    line-height: 1.3636363636;
    letter-spacing: 0.06em;
  }
}

.p-jibunmakura__step-item--9 .p-jibunmakura__step-item__title {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item--9 .p-jibunmakura__step-item__title {
    margin-top: 0.875rem;
  }
}

.p-jibunmakura__step-item__title::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: -1.875rem;
  width: 28.3125rem;
  height: 1px;
  background: #101010;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__title::before {
    bottom: -1.1875rem;
    left: 0;
    width: 100%;
  }
}

.p-jibunmakura__step-item__text {
  width: 38.3125rem;
  margin-top: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__step-item__text {
    width: 100%;
    margin-top: 2.125rem;
  }
}

.p-jibunmakura__completed-inner {
  padding-top: 4.875rem;
  padding-bottom: 10.4375rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__completed-inner {
    padding-top: 2.5rem;
    padding-bottom: 6.3125rem;
  }
}

.p-jibunmakura__completed-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__completed-title {
    padding-inline: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.p-jibunmakura__completed-text {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__completed-text {
    margin-top: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-jibunmakura__completed-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1340/500;
  margin-top: 3.125rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__completed-img {
    margin-top: 1.6875rem;
    aspect-ratio: 330/267;
  }
}

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

.p-jibunmakura__completed-btn {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-jibunmakura__completed-btn {
    margin-top: 1.6875rem;
  }
}

.p-jibunmakura__completed-btn a {
  background: #f4f4f4;
}

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

.p-section__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-section__title {
    font-size: 2.875rem;
    line-height: 1;
  }
}

.p-section__subtitle {
  margin-top: 2.1875rem;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-section__subtitle {
    margin-top: 2.0625rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-section__subtitle:nth-of-type(3) {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-section__subtitle span {
    font-size: 0.875rem;
  }
}

.p-section__lead {
  margin-top: 2.6875rem;
  line-height: 1;
  letter-spacing: 0.065em;
}
@media screen and (max-width: 768px) {
  .p-section__lead {
    margin-top: 2.25rem;
    padding-inline: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.p-shop__fv {
  background: url(../images/shop_list/fv_pc.webp) center/cover no-repeat, url(../images/shop_list/fv_pc.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-shop__fv {
    background: url(../images/shop_list/fv_sp.webp) center/cover no-repeat, url(../images/shop_list/fv_sp.jpg) center/cover no-repeat;
  }
}

.p-shop__header {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-shop__header {
    margin-top: 2.6875rem;
  }
}

.p-shop__text {
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-shop__text {
    font-size: 0.875rem;
    line-height: 1.7857142857;
    letter-spacing: 0.03em;
  }
}

.p-shop__subject {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-shop__subject {
    justify-content: space-between;
    gap: 0;
  }
}

.p-shop__subject-mark {
  width: 8.0625rem;
  padding-block: 0.375rem;
  border-radius: 5px;
  background: #a7958b;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-shop__subject-mark {
    width: 7.0625rem;
    font-size: 0.8125rem;
  }
}

.p-shop__subject-text {
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-shop__subject-text {
    font-size: 0.8125rem;
  }
}

.p-shop__body {
  margin-top: 4.625rem;
}
@media screen and (max-width: 768px) {
  .p-shop__body {
    margin-top: 2.1875rem;
  }
}

.js-shop-accordion {
  position: relative;
}

.js-shop-accordion::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 3rem;
  transform: translateY(-50%) rotate(95deg);
  width: 0.5625rem;
  height: 1.1875rem;
  background: #a7958b;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.2s;
}
@media screen and (max-width: 768px) {
  .js-shop-accordion::before {
    top: 53%;
    right: 1rem;
  }
}

.p-shop__accordion-item__prefecture.js-shop-accordion::before {
  top: 59%;
  right: 0.5625rem;
}

.p-shop__accordion-item__shop.js-shop-accordion::before {
  top: 48%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__shop.js-shop-accordion::before {
    top: 0.9375rem;
  }
}

.js-shop-accordion.is-open::before {
  transform: translateY(-50%) rotate(-90deg);
}

.p-shop__accordion-item:not(:first-child) {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

.p-shop__accordion-item__region.is-open {
  background: linear-gradient(135deg, #eae6e4, #f4f4f4);
}

.p-shop__accordion-item__region {
  position: relative;
  width: 100%;
  padding-inline: 3.0625rem;
  background: linear-gradient(135deg, #f4f4f4, #eae6e4);
  letter-spacing: 0.06em;
  text-align: left;
  z-index: 0;
  transition: ease-in-out, 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__region {
    padding-inline: 1.375rem;
  }
}

.p-shop__accordion-item__region::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #eae6e4, #f4f4f4);
  transition: ease-in-out, 0.2s;
  opacity: 0;
}

@media (any-hover: hover) {
  .p-shop__accordion-item__region:hover::after {
    opacity: 1;
  }
}
.p-shop__accordion-item__region {
  padding-block: 2.125rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__region {
    padding-block: 1.125rem;
    font-size: 1rem;
  }
}

.p-shop__accordion-item__region::before {
  top: 55%;
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__region::before {
    top: 53%;
    right: 1rem;
  }
}

.p-shop__accordion-item__region + .p-accordion__item-inner {
  margin-top: 0.21875rem;
  padding-top: 0.5625rem;
  padding-bottom: 3.1875rem;
  padding-left: 3.0625rem;
  padding-right: 2.375rem;
  background: rgba(248, 248, 248, 0.8);
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__region + .p-accordion__item-inner {
    padding-inline: 1.25rem;
  }
}

.p-shop__accordion-item__prefecture {
  position: relative;
  width: 100%;
  padding-top: 1.375rem;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #a7958b;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
  text-align: left;
  transition: ease-in-out, 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__prefecture {
    padding-right: 0.625rem;
    padding-block: 1.10625rem;
    font-size: 1rem;
  }
}

.p-accordion__item-inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}

.p-shop__accordion-item__shop-box {
  margin-top: 1.25rem;
  padding-inline: 1.4375rem;
  padding-bottom: 0.5rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__shop-box {
    padding-top: 0.625rem;
    padding-right: 1.5rem;
  }
}

.p-shop__accordion-item__shop-box + .p-shop__accordion-item__shop-box {
  margin-top: 0.375rem;
}

.p-shop__accordion-item__shop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 4.125rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__shop {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    height: auto;
  }
}

.p-shop__accordion-item__shop-img {
  flex-shrink: 0;
  max-width: 7.75rem;
  height: 2.5rem;
}

.p-shop__accordion-item__shop-img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: left;
}

.p-shop__accordion-item__shop-name {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__shop-name {
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.p-shop__accordion-item__text {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__text {
    line-height: 1.2142857143;
  }
}

.p-shop__accordion-item__text a {
  transition: ease-in-out, 0.3s;
  border-bottom: 1px solid transparent;
}

.p-shop__accordion-item__text a:hover {
  border-bottom: 1px solid #101010;
}

.p-shop__accordion-item__detail {
  padding-top: 0.5rem;
  padding-left: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__detail {
    margin-top: 1.4375rem;
    padding-left: 0;
  }
}

.p-shop__accordion-item__btn.p-btn--ja {
  max-width: 13.1875rem;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-shop__accordion-item__btn.p-btn--ja {
    max-width: 12.1875rem;
    margin-inline: auto;
  }
}

.p-shop__accordion-item__btn.p-btn--ja a {
  font-size: 0.875rem;
  height: 2.5rem;
  padding-block: 0;
}

.p-shop__accordion-item__btn.p-btn--ja .c-arrow {
  top: 52%;
  width: 0.3125rem;
  height: 0.625rem;
}

.p-shop__accordion-item__btn.p-btn--ja .c-arrow::before,
.p-shop__accordion-item__btn.p-btn--ja .c-arrow::after {
  width: 0.3125rem;
  height: 0.625rem;
}

.p-shop__bland {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-shop__bland {
    margin-top: 5.625rem;
  }
}

.p-shop__bland-title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-title {
    font-size: 1.375rem;
  }
}

.p-shop__bland-list {
  display: flex;
  justify-content: space-between;
  margin-top: 4.625rem;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-list {
    justify-content: flex-start;
    flex-direction: column;
    gap: 2.875rem;
    margin-top: 2.4375rem;
  }
}

.p-shop__bland-item {
  width: 16.5rem;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-item {
    width: 100%;
  }
}

.p-shop__bland-item__img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-item__img {
    display: flex;
    justify-content: center;
  }
}

.p-shop__bland-item__img--huton {
  padding-top: 0.0625rem;
}

.p-shop__bland-item__img--bdesign {
  padding-right: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-item__img--bdesign {
    padding-right: 0;
  }
}

.p-shop__bland-item__img--home {
  padding-top: 0.375rem;
}

.p-shop__bland-item__img img {
  width: 100%;
  height: auto;
  max-width: 12.5625rem;
  aspect-ratio: 201/58;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-shop__bland-item__text {
  margin-top: 2.9375rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-shop__bland-item__text {
    margin-top: 1.6875rem;
    font-size: 0.875rem;
    line-height: 1.7857142857;
  }
}

.p-shop .p-contents__layout {
  margin-top: 9.875rem;
}
@media screen and (max-width: 768px) {
  .p-shop .p-contents__layout {
    margin-top: 4.375rem;
  }
}

.u-bg-accent {
  background: #a7958b;
}

.u-bg-gold {
  background: #c7bfae;
}

.u-bg-gradation {
  background: linear-gradient(156deg, #cec6b8 27%, #a8968c 66%, #a7958b);
}
@media screen and (max-width: 768px) {
  .u-bg-gradation {
    background: linear-gradient(166deg, #cec6b8 0, #a8968c 94%, #a7958b);
  }
}

.u-bg-gray {
  background: #f4f4f4;
}

.u-bg-img {
  background: url(../images/common/bg.webp) center/cover no-repeat, url(../images/common/bg.jpg) center/cover no-repeat;
}

.u-fv-margin-lg {
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .u-fv-margin-lg {
    margin-top: 1.75rem;
  }
}

.u-fv-margin-sm {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .u-fv-margin-sm {
    margin-top: 1.125rem;
  }
}

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

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

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

.u-text-justify {
  text-align: justify;
}
/*# sourceMappingURL=style.css.map */
