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

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  font-size: 16px;
  scrollbar-gutter: stable;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  position: relative;
  background-color: #F8F6F2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

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

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

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

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

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

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

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

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

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

.c-arrow-btn {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background-color: #232321;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.c-arrow-btn::after {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  background-image: url("../images/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-arrow-btn--prev::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-hamburger {
    display: block;
    width: 2.1875rem;
    height: 1.875rem;
    padding: 0;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 21;
  }
}
@media (any-hover: hover) {
  .c-hamburger:hover {
    opacity: 0.7;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #232321;
  transition: 0.3s ease-in-out;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.5rem 0 0;
}
@media screen and (max-width: 1023px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0 0;
  }
}

.c-hamburger.open span:nth-child(1) {
  top: 0.3125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1023px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.28125rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  top: -0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 1023px) {
  .c-hamburger.open span:nth-child(2) {
    top: -0.28125rem;
  }
}

/* アーカイブページのページ送り */
.c-pagenation ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.c-pagenation .page-numbers li {
  display: block;
}

.c-pagenation a.page-numbers,
.c-pagenation span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 2.1875rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #232321;
}

.c-pagenation a.page-numbers {
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .c-pagenation a.page-numbers:hover {
    color: #DF6743;
  }
}

.c-pagenation span.page-numbers.current {
  width: 2.1875rem;
  min-width: 2.1875rem;
  border-radius: 50%;
  background-color: #DF6743;
  color: #fff;
}

.c-pagenation span.page-numbers.dots {
  min-width: 0.8125rem;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 650px;
    padding-inline: 25px;
  }
}

.l-main,
.p-news-archive,
.p-contact,
.p-news-single,
.p-shop-info {
  min-height: 100vh;
  min-height: 100dvh;
}
@media screen and (max-width: 1023px) {
  .l-main,
  .p-news-archive,
  .p-contact,
  .p-news-single,
  .p-shop-info {
    min-height: 0;
  }
}

.p-404 {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 10rem);
  padding: 8.125rem 1.5625rem 9.0625rem calc(74px + 1.5625rem);
}
@media screen and (max-width: 1023px) {
  .p-404 {
    min-height: auto;
    padding-left: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding-top: 6.1875rem;
    padding-bottom: 4.375rem;
  }
}

.p-404__inner {
  width: 100%;
  max-width: 40.9375rem;
  margin-inline: auto;
  text-align: center;
}

.p-404__heading {
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 16.875rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-404__heading {
    min-width: 15.875rem;
    margin-bottom: 1.375rem;
  }
}

.p-404__label {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #232321;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-404__label {
    font-size: 1.6875rem;
    line-height: 1.22;
  }
}

.p-404__title {
  margin-top: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-404__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 0.8125rem;
  }
}

.p-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.6875rem;
  min-height: 2.8125rem;
  margin-top: 2.25rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.3125rem;
  background-color: #232321;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #fff;
  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .p-404__button:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 767px) {
  .p-404__button {
    margin-top: 1.875rem;
  }
}

.p-404__button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(223, 103, 67, .48);
}

.p-about {
  padding-left: 74px;
  color: #232321;
}
@media screen and (max-width: 1023px) {
  .p-about {
    padding-left: 0;
  }
}

.p-about__hero {
  padding-top: 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__hero {
    padding-top: 6.1875rem;
  }
}

.p-about__heading {
  text-align: center;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about__heading {
    margin-bottom: 1.6875rem;
  }
}

.p-about__title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 3.8125rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #707070;
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.975;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    padding-inline: 2.75rem;
    padding-bottom: 0.4375rem;
    font-size: 1.6875rem;
    line-height: 1.2222222222;
  }
}

.p-about__subtitle {
  margin-top: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.2142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__subtitle {
    margin-top: 0.4375rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.p-about__hero-image {
  width: calc(100% - 4.4375rem);
  margin-left: auto;
  overflow: hidden;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__hero-image {
    width: calc(100% - 1.625rem);
    margin-left: 1.625rem;
  }
}

.p-about__hero-image img {
  display: block;
  width: 100%;
  height: 29.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about__hero-image img {
    height: 17rem;
  }
}

.p-about__hero-image picture {
  display: block;
}

.p-about__concept {
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .p-about__concept {
    margin-top: 3.75rem;
  }
}

.p-about__concept-inner {
  position: relative;
  width: 45.125rem;
  height: 28.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__concept-inner {
    width: 21.75rem;
    height: 50.25rem;
  }
}

.p-about__concept-divider {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-about__concept-divider {
    position: absolute;
    top: 29.125rem;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #707070;
  }
}

.p-about__concept-column {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #232321;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

.p-about__concept-quote {
  display: inline-block;
  -webkit-transform: translateX(0.35em);
          transform: translateX(0.35em);
}

.p-about__concept-column--lead-title {
  top: 0;
  left: 44rem;
  font-size: 1.125rem;
  line-height: 1.2777777778;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--lead-title {
    left: 18.75rem;
    font-size: 1.0625rem;
    line-height: 1.2941176471;
  }
}

.p-about__concept-column--lead-text {
  top: 0;
  left: 41.125rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--lead-text {
    left: 16.375rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--wear-self {
  top: 0;
  left: 34.75rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--wear-self {
    left: 11.125rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--wear-other {
  top: 0;
  left: 31.9375rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--wear-other {
    left: 8.75rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--wear-era {
  top: 0;
  left: 29.125rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--wear-era {
    left: 6.375rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--fashion {
  top: 0;
  left: 26.3125rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--fashion {
    left: 4rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--samon {
  top: 0;
  left: 23.75rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--samon {
    left: 1.875rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--concept-label {
  top: 0;
  left: 17.625rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--concept-label {
    top: 31.6875rem;
    left: 19rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--concept-title {
  top: 0;
  left: 14.8125rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--concept-title {
    top: 31.6875rem;
    left: 16.625rem;
    font-size: 1.0625rem;
    line-height: 1.2352941176;
  }
}

.p-about__concept-column--respect {
  top: 0;
  left: 8.4375rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--respect {
    top: 31.6875rem;
    left: 11.375rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--update {
  top: 0;
  left: 5.625rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--update {
    top: 31.6875rem;
    left: 9rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--personality {
  top: 0;
  left: 2.8125rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--personality {
    top: 31.6875rem;
    left: 6.625rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__concept-column--tailor {
  top: 0;
  left: 0;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-about__concept-column--tailor {
    top: 31.6875rem;
    left: 4.25rem;
    font-size: 0.8125rem;
    line-height: 1.3076923077;
  }
}

.p-about__message {
  width: min(53.75rem, 100% - 12.5rem);
  margin: 4rem auto 0;
  padding-top: 4.375rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-about__message {
    width: calc(100% - 3.125rem);
    margin-top: 4.0625rem;
    padding-top: 2.375rem;
  }
}

.p-about__message-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  text-align: center;
  color: #DF6743;
}
@media screen and (max-width: 767px) {
  .p-about__message-text {
    font-size: 0.625rem;
    line-height: 1.9;
  }
}

.p-about__gallery {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-about__gallery {
    margin-top: 7.125rem;
  }
}

.p-about__gallery-inner {
  width: min(66.5rem, 100% - 3.125rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__gallery-inner {
    width: calc(100% - 3.25rem);
  }
}

.p-about__gallery-item {
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__gallery-item {
    border-radius: 0.5rem;
  }
}

.p-about__gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 2126/812;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about__gallery-item img {
    aspect-ratio: 676/677;
  }
}

.p-about__gallery-item picture {
  display: block;
}

.p-about__reserve {
  margin-top: 8.125rem;
  padding: 0 1.5625rem 5.6875rem;
}
@media screen and (max-width: 767px) {
  .p-about__reserve {
    margin-top: 4.25rem;
    padding: 0 1.5625rem 4rem;
  }
}

.p-about__reserve-inner {
  max-width: 66.5rem;
  min-height: 21.375rem;
  margin-inline: auto;
  padding: 3.875rem 2.5rem 3.5625rem;
  border: 1px solid #707070;
  border-radius: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__reserve-inner {
    min-height: 30.125rem;
    padding: 3.3125rem 0.625rem 1.875rem;
  }
}

.p-about__reserve-logo {
  width: 10.625rem;
  margin-inline: auto;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__reserve-logo {
    margin-bottom: 1.25rem;
  }
}

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

.p-about__reserve-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.1538461538;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-about__reserve-text {
    font-size: 0.8125rem;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-about__reserve-paragraph + .p-about__reserve-paragraph {
    margin-top: 1.75rem;
  }
}

.p-about__reserve-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.3125rem;
  min-height: 3.625rem;
  margin: 2.625rem auto 0;
  padding: 0.625rem 3.375rem 0.625rem 2.625rem;
  border-radius: 0.5rem;
  background-color: #232321;
  color: #fff;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-about__reserve-btn {
    width: 100%;
    max-width: 17.5rem;
    margin-top: 1.875rem;
  }
}
@media (any-hover: hover) {
  .p-about__reserve-btn:hover {
    opacity: 0.85;
  }
}

.p-about__reserve-btn-text {
  display: block;
  text-align: left;
}

.p-about__reserve-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.1764705882;
  letter-spacing: 0.05em;
}

.p-about__reserve-jp {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.p-about__reserve-icon {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  background-color: #DF6743;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-about__reserve-icon::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icon-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-concept {
  padding-left: 74px;
  padding-top: 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-concept {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding-top: 3.75rem;
  }
}

.p-concept__header {
  display: flex;
  align-items: flex-start;
  gap: 7.5rem;
  padding-inline: 9.0625rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-concept__header {
    flex-direction: column;
    gap: 1rem;
    padding-inline: 25px;
    margin-bottom: 2.5rem;
  }
}

.p-concept__label {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #232321;
  white-space: nowrap;
  padding-top: 0.875rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-concept__label {
    font-size: 0.6875rem;
    padding-top: 0;
  }
}

.p-concept__text {
  flex: 1;
}

.p-concept__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #232321;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__title {
    margin-bottom: 1rem;
    white-space: nowrap;
  }
}

.p-concept__body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #232321;
}

.p-concept__image {
  display: block;
  width: 100%;
  padding-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-concept__image {
    padding-left: 25px;
  }
}

.p-concept__image img {
  width: 100%;
  height: 28.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-concept__image img {
    height: 18.125rem;
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

.p-contact {
  padding-left: 74px;
}
@media screen and (max-width: 1023px) {
  .p-contact {
    padding-left: 0;
  }
}

.p-contact__section {
  padding-top: 8.125rem;
  padding-bottom: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__section {
    padding-top: 6.1875rem;
    padding-bottom: 4.375rem;
  }
}

.p-contact__inner {
  width: 100%;
  max-width: 40.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    max-width: none;
    padding-inline: 1.625rem;
  }
}

.p-contact__heading {
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 16.875rem;
  margin-inline: auto;
  margin-bottom: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__heading {
    min-width: 15.875rem;
    margin-bottom: 1.9375rem;
  }
}

.p-contact__title {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #232321;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.6875rem;
    line-height: 1.22;
  }
}

.p-contact__subtitle {
  margin-top: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-contact__subtitle {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-contact__form {
  width: 100%;
}

.p-contact-form {
  display: grid;
  row-gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    row-gap: 0.9375rem;
  }
}

.p-contact-form p {
  margin: 0;
}

.p-contact-form__row {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  align-items: start;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row {
    display: block;
  }
}

.p-contact-form__row--message {
  align-items: start;
}

.p-contact-form__row--type {
  position: relative;
  display: block;
  min-height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row--type {
    min-height: 0;
  }
}

.p-contact-form__row--type .p-contact-form__term {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8.75rem;
  -webkit-transform: none;
          transform: none;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row--type .p-contact-form__term {
    position: static;
    top: auto;
    width: auto;
  }
}

.p-contact-form__row--type .p-contact-form__field {
  display: flex;
  align-items: flex-start;
  min-height: 2.5rem;
  padding-top: 0.5rem;
  margin-left: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row--type .p-contact-form__field {
    display: block;
    min-height: 0;
    padding-top: 0;
    margin-left: 0;
  }
}

.p-contact-form__row--message .p-contact-form__term {
  padding-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row--message .p-contact-form__term {
    padding-top: 0;
  }
}

.p-contact-form__term {
  padding-top: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #232321;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__term {
    padding-top: 0;
    margin-bottom: 0.4375rem;
    font-size: 0.875rem;
    line-height: 1.45;
    text-align: left;
  }
}

.p-contact-form__field {
  min-width: 0;
}

.p-contact-form__input,
.p-contact-form__textarea {
  width: 100%;
  border: 2px solid #d7d7d7;
  border-radius: 0.25rem;
  background-color: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #232321;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.p-contact-form__input:focus-visible,
.p-contact-form__textarea:focus-visible {
  border-color: #DF6743;
  background-color: rgba(223, 103, 67, .04);
  box-shadow: 0 0 0 0.1875rem rgba(223, 103, 67, .14);
}

.p-contact-form__input {
  height: 2.5rem;
  padding-inline: 0.625rem;
}

.p-contact-form__textarea {
  height: 13.4375rem;
  padding: 0.625rem;
  resize: vertical;
}

.p-contact-form__radio .wpcf7-list-item {
  margin: 0 1.8125rem 0 0;
}

.p-contact-form__radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio label {
    gap: 0.4375rem;
    font-size: 0.875rem;
  }
}

.p-contact-form__radio input[type=radio] {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #d7d7d7;
  border-radius: 50%;
  background-color: transparent;
  margin: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.p-contact-form__radio input[type=radio]:checked {
  background-image: radial-gradient(circle, #232321 0 0.375rem, transparent 0.4375rem);
}

.p-contact-form__radio input[type=radio]:focus-visible {
  border-color: #DF6743;
  box-shadow: 0 0 0 0.1875rem rgba(223, 103, 67, .14);
}

.p-contact-form__acceptance {
  margin-top: 2.8125rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-contact-form__acceptance {
    margin-top: 2.125rem;
  }
}

.p-contact-form__acceptance .wpcf7-list-item {
  margin: 0;
}

.p-contact-form__acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.p-contact-form__acceptance input[type=checkbox] {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #232321;
  background-color: transparent;
  margin: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.p-contact-form__acceptance input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.6 6.5L9 1' stroke='%23232321' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem 0.5rem;
}

.p-contact-form__acceptance input[type=checkbox]:focus-visible {
  border-color: #DF6743;
  box-shadow: 0 0 0 0.1875rem rgba(223, 103, 67, .14);
}

.p-contact-form__acceptance a {
  text-decoration: underline;
}

.p-contact-form__submit-wrap {
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit-wrap {
    margin-top: 1rem;
  }
}

.p-contact-form__submit-wrap p {
  position: relative;
  display: inline-block;
  margin: 0;
}

.p-contact-form__submit-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.75rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit-wrap .wpcf7-spinner {
    left: calc(100% + 0.5rem);
  }
}

.p-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15.6875rem;
  min-height: 2.8125rem;
  padding: 0.625rem 1.5rem;
  border: 0;
  border-radius: 0.3125rem;
  background-color: #232321;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .p-contact-form__submit:hover {
    opacity: 0.75;
  }
}

.p-contact-form__submit:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(223, 103, 67, .48);
}

.p-contact-form .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.75rem;
}

.p-contact-form + .wpcf7-response-output,
.p-contact__form .wpcf7-response-output {
  margin: 1.5rem 0 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form + .wpcf7-response-output,
  .p-contact__form .wpcf7-response-output {
    max-width: none;
    margin-inline: 0;
  }
}

.wpcf7-turnstile {
  text-align: center;
  margin-top: 1.5rem;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 23.625rem;
  height: 100vh;
  height: 100dvh;
  background-color: #232321;
  border-radius: 0 1.25rem 1.25rem 0;
  z-index: 200;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.4s, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, visibility 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0.4s, -webkit-transform 0.4s ease-in-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.p-drawer.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* 閉じるボタン（×）
------------------------------------------------ */
.p-drawer__close {
  position: absolute;
  top: 2.75rem;
  left: 1.9375rem;
  width: 1.6875rem;
  height: 1.6875rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-drawer__close:hover {
    opacity: 0.7;
  }
}

.p-drawer__close span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
}

.p-drawer__close span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.p-drawer__close span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/* ナビゲーション
------------------------------------------------ */
.p-drawer__nav {
  padding-top: 11.5625rem;
  padding-left: 3.625rem;
}

.p-drawer__nav-list {
  list-style: none;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 2rem;
}

.p-drawer__nav-link {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .p-drawer__nav-link:hover {
    opacity: 0.6;
  }
}

/* 予約ボタン
------------------------------------------------ */
.p-drawer__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 17.25rem;
  height: 3.5rem;
  margin-top: 5.25rem;
  margin-left: 3.625rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: #F8F6F2;
  border-radius: 0.5rem;
  text-decoration: none;
  position: relative;
}
@media (any-hover: hover) {
  .p-drawer__reserve:hover {
    opacity: 0.8;
  }
}

.p-drawer__reserve-body {
  text-align: left;
}

.p-drawer__reserve-title {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25rem;
  letter-spacing: 0.05em;
  color: #232321;
}

.p-drawer__reserve-sub {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #232321;
  margin-top: 0.125rem;
}

.p-drawer__reserve-icon {
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background-color: #DF6743;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-drawer__reserve-icon::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* ロゴ
------------------------------------------------ */
.p-drawer__logo {
  position: absolute;
  right: 1.875rem;
  bottom: 1.75rem;
}

.p-drawer__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
@media (any-hover: hover) {
  .p-drawer__logo-link:hover {
    opacity: 0.7;
  }
}

.p-drawer__logo-link img {
  width: 2.6875rem;
  height: 3.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__logo-text {
  font-family: "Lato", sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}

/* SP専用メニュー
------------------------------------------------ */
.p-drawer__nav-item--sp-only {
  display: none;
}

/* SP（0018: MENU SP）
------------------------------------------------ */
@media screen and (max-width: 1023px) {
  .p-drawer {
    width: 100%;
    background-color: #F8F6F2;
    border-radius: 0;
    -webkit-transform: none;
            transform: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3.75rem;
  }
  .p-drawer.open {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  .p-drawer__close,
  .p-drawer__sp-logo {
    display: none;
  }
  .p-drawer__nav {
    padding-top: 9.6875rem;
    padding-left: 3.5625rem;
  }
  .p-drawer__nav-item--sp-only {
    display: block;
  }
  .p-drawer__nav-item + .p-drawer__nav-item {
    margin-top: 2.25rem;
  }
  .p-drawer__nav-link {
    color: #232321;
  }
  .p-drawer__reserve {
    position: relative;
    justify-content: center;
    width: 17.1875rem;
    margin-inline: auto;
    padding: 0;
    background-color: #232321;
  }
  .p-drawer__reserve-body {
    flex: none;
    text-align: center;
  }
  .p-drawer__reserve-title {
    color: #fff;
    font-size: 1.0625rem;
  }
  .p-drawer__reserve-sub {
    color: #fff;
  }
  .p-drawer__reserve-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-drawer__logo {
    display: none;
  }
}
.p-footer {
  background-color: #232321;
  padding: 5.375rem 0rem 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.5rem;
  }
}

.p-footer__logo {
  display: block;
  width: 8.8125rem;
  margin-inline: auto;
  margin-bottom: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 6.875rem;
    margin-bottom: 2.25rem;
  }
}

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

.p-footer__nav {
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-bottom: 2.5rem;
  }
}

.p-footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    max-width: 16.25rem;
    margin-inline: auto;
    text-align: left;
  }
}

.p-footer__nav-item a {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.6;
  }
}

.p-footer__reserve {
  margin-bottom: 1.875rem;
}

.p-footer__reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.8125rem;
  padding: 1.125rem;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-footer__reserve-btn {
    width: calc(100% - 2.5rem);
    max-width: 17.5rem;
    padding: 0.625rem 0.875rem;
  }
}
@media (any-hover: hover) {
  .p-footer__reserve-btn:hover {
    opacity: 0.85;
  }
}

.p-footer__reserve-text {
  text-align: left;
}

.p-footer__reserve-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.4375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #232321;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-footer__reserve-en {
    font-size: 1.0625rem;
  }
}

.p-footer__reserve-jp {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #232321;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__reserve-jp {
    font-size: 0.625rem;
  }
}

.p-footer__reserve-icon {
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  background-color: #DF6743;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-footer__reserve-icon {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
.p-footer__reserve-icon::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("../images/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-footer__reserve-icon::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-footer__copy {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #fff;
  margin-top: 1rem;
}

.p-header {
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1023px) {
  .p-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    display: flex;
    align-items: center;
    padding-inline: 1rem;
    z-index: 300;
  }
}

.p-header__sp-logo-wrap {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.p-header__sp-logo {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-header__sp-logo {
    position: relative;
    display: block;
    width: 2.1875rem;
    height: 2.75rem;
    flex-shrink: 0;
    z-index: 310;
  }
}
@media (any-hover: hover) {
  .p-header__sp-logo:hover {
    opacity: 0.7;
  }
}

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

.p-header__hamburger {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 310;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
    top: 1.5rem;
  }
}

.p-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 74px;
}
@media screen and (max-width: 1023px) {
  .p-hero {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-hero {
    min-height: 100svh;
  }
}

.p-hero__visual {
  position: absolute;
  inset: 0;
  left: 74px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-hero__visual {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__visual {
    position: relative;
    inset: auto;
    left: auto;
    overflow: visible;
  }
}

.p-hero__video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-hero__video {
    width: auto;
    height: auto;
    max-width: 140vw;
    max-height: 50svh;
  }
}

.p-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: calc(50% + 37px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .p-hero__scroll {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__scroll {
    bottom: 2.5rem;
  }
}

.p-hero__scroll-text {
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #232321;
}

.p-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 2.1875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hero__scroll-line {
    height: 2.1875rem;
  }
}
.p-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232321;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: scroll-line 1.6s ease-in-out infinite;
          animation: scroll-line 1.6s ease-in-out infinite;
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
}
.p-instagram {
  padding-left: 74px;
  padding-top: 6.25rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1023px) {
  .p-instagram {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-instagram {
    padding-top: 7.5rem;
    padding-bottom: 3.125rem;
  }
}

.p-instagram__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-instagram__header {
    margin-bottom: 2.5rem;
  }
}

.p-instagram__title {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #232321;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-instagram__title {
    font-size: 1.75rem;
  }
}

.p-instagram__divider {
  width: 15.875rem;
  height: 1px;
  background-color: #707070;
  margin-inline: auto;
  margin-block: 0.875rem;
}

.p-instagram__account {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #232321;
}

.p-instagram__gallery {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  overflow: hidden;
}
.p-instagram__gallery .swiper {
  overflow: visible;
  padding-bottom: 7.5rem;
  clip-path: inset(-200px 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper {
    padding-bottom: 5rem;
    clip-path: inset(-200px 0px);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.p-instagram__gallery .swiper-wrapper .swiper-slide:has(+ .swiper-slide + .swiper-slide-prev) {
  -webkit-transform: scale(0.7) translateY(21.25rem) translateX(4.375rem) rotate(-36deg);
          transform: scale(0.7) translateY(21.25rem) translateX(4.375rem) rotate(-36deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide:has(+ .swiper-slide + .swiper-slide-prev) {
    -webkit-transform: scale(0.72) translateY(12.5rem) translateX(1.875rem) rotate(-30deg);
            transform: scale(0.72) translateY(12.5rem) translateX(1.875rem) rotate(-30deg);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide:has(+ .swiper-slide-prev) {
  -webkit-transform: scale(0.7) translateY(11.25rem) translateX(3.75rem) rotate(-26deg);
          transform: scale(0.7) translateY(11.25rem) translateX(3.75rem) rotate(-26deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide:has(+ .swiper-slide-prev) {
    -webkit-transform: scale(0.72) translateY(6.875rem) translateX(1.25rem) rotate(-20deg);
            transform: scale(0.72) translateY(6.875rem) translateX(1.25rem) rotate(-20deg);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide-prev {
  -webkit-transform: scale(0.7) translateY(5rem) rotate(-10deg);
          transform: scale(0.7) translateY(5rem) rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide-prev {
    -webkit-transform: scale(0.72) translateY(3.125rem) rotate(-8deg);
            transform: scale(0.72) translateY(3.125rem) rotate(-8deg);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide-active {
  -webkit-transform: scale(1) translateY(0) rotate(0deg);
          transform: scale(1) translateY(0) rotate(0deg);
  z-index: 2;
}

.p-instagram__gallery .swiper-wrapper .swiper-slide-next {
  -webkit-transform: scale(0.7) translateY(5rem) rotate(10deg);
          transform: scale(0.7) translateY(5rem) rotate(10deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide-next {
    -webkit-transform: scale(0.72) translateY(3.125rem) rotate(8deg);
            transform: scale(0.72) translateY(3.125rem) rotate(8deg);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide-next + .swiper-slide {
  -webkit-transform: scale(0.7) translateY(11.25rem) translateX(-3.75rem) rotate(26deg);
          transform: scale(0.7) translateY(11.25rem) translateX(-3.75rem) rotate(26deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide-next + .swiper-slide {
    -webkit-transform: scale(0.72) translateY(6.875rem) translateX(-1.25rem) rotate(20deg);
            transform: scale(0.72) translateY(6.875rem) translateX(-1.25rem) rotate(20deg);
  }
}

.p-instagram__gallery .swiper-wrapper .swiper-slide-next + .swiper-slide + .swiper-slide {
  -webkit-transform: scale(0.7) translateY(21.25rem) translateX(-4.375rem) rotate(36deg);
          transform: scale(0.7) translateY(21.25rem) translateX(-4.375rem) rotate(36deg);
}
@media screen and (max-width: 767px) {
  .p-instagram__gallery .swiper-wrapper .swiper-slide-next + .swiper-slide + .swiper-slide {
    -webkit-transform: scale(0.72) translateY(12.5rem) translateX(-1.875rem) rotate(30deg);
            transform: scale(0.72) translateY(12.5rem) translateX(-1.875rem) rotate(30deg);
  }
}

.p-instagram__item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-instagram__item a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-instagram__item a:hover {
    opacity: 0.8;
  }
}
.p-instagram__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-instagram__nav {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: -3.75rem;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .p-instagram__nav {
    margin-top: -2.5rem;
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-instagram__nav .c-arrow-btn {
    width: 2.625rem;
    height: 2.625rem;
  }
}
@media (any-hover: hover) {
  .p-instagram__nav .c-arrow-btn:hover {
    opacity: 0.7;
  }
}

.p-instagram__btn {
  display: block;
  width: 15.6875rem;
  padding: 0.8125rem 1.25rem;
  margin-inline: auto;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background-color: #232321;
  border-radius: 0.375rem;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-instagram__btn:hover {
    opacity: 0.7;
  }
}

.p-news-archive {
  padding-left: 74px;
}
@media screen and (max-width: 1023px) {
  .p-news-archive {
    padding-left: 0;
  }
}

.p-news-archive__section {
  padding-top: 8.25rem;
  padding-bottom: 8.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__section {
    padding-top: 6.1875rem;
    padding-bottom: 4.375rem;
  }
}

.p-news-archive__inner {
  width: 100%;
  max-width: 51.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-archive__inner {
    width: 100vw;
    max-width: none;
    padding-inline: 1.625rem;
  }
}

.p-news-archive__heading {
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 16.875rem;
  margin-inline: auto;
  margin-bottom: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-archive__heading {
    min-width: 15.875rem;
    margin-bottom: 1.6875rem;
  }
}

.p-news-archive__title {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #232321;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-news-archive__title {
    font-size: 1.6875rem;
    line-height: 1.22;
  }
}

.p-news-archive__subtitle {
  margin-top: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-archive__subtitle {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
}

.p-news-archive__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 2.4375rem;
     -moz-column-gap: 2.4375rem;
          column-gap: 2.4375rem;
  row-gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__list {
    display: block;
  }
}

.p-news-archive__item {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-news-archive__item {
    margin-top: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-news-archive__item:first-child {
    margin-top: 0;
  }
}

.p-news-archive__link {
  display: block;
}

.p-news-archive__thumb {
  aspect-ratio: 394/157;
  overflow: hidden;
  border-radius: 0.4375rem;
  background-color: #8b8b8b;
}
@media screen and (max-width: 767px) {
  .p-news-archive__thumb {
    aspect-ratio: 338/137;
  }
}

.p-news-archive__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

@media (any-hover: hover) {
  .p-news-archive__link:hover .p-news-archive__thumb img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.p-news-archive__body {
  position: relative;
  padding-top: 1.125rem;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__body {
    padding-top: 0.8125rem;
    padding-right: 2.0625rem;
  }
}

.p-news-archive__date {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: #232321;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-news-archive__date {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

@media (any-hover: hover) {
  .p-news-archive__link:hover .p-news-archive__date {
    color: #DF6743;
  }
}

.p-news-archive__post-title {
  position: relative;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.06em;
  color: #232321;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-news-archive__post-title {
    margin-top: 0.5rem;
    padding-top: 0.5625rem;
    font-size: 0.8125rem;
    line-height: 1.31;
  }
}

.p-news-archive__post-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 3.125rem);
  height: 1px;
  background-color: #707070;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-news-archive__post-title::before {
    width: calc(100% + 2.0625rem);
  }
}

@media (any-hover: hover) {
  .p-news-archive__link:hover .p-news-archive__post-title {
    color: #DF6743;
  }
}

.p-news-archive__icon {
  position: absolute;
  right: 0;
  bottom: 0.4375rem;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-archive__icon {
    top: -1.9375rem;
    bottom: auto;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.p-news-archive__icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5625rem;
  height: 0.5625rem;
  background-image: url("../images/icon-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-news-archive__icon::before {
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.p-news-archive__pager {
  margin-top: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive__pager {
    margin-top: 2.9375rem;
  }
}

.p-news-archive__empty {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #232321;
  text-align: center;
}

.p-news-blocks {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-blocks {
    line-height: 2;
  }
}

.p-news-blocks > * {
  margin-top: 1.75rem;
}

.p-news-blocks > *:first-child {
  margin-top: 0;
}

.p-news-blocks .wp-block-heading {
  margin-top: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-blocks .wp-block-heading {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.55;
  }
}

.p-news-blocks h2.wp-block-heading {
  position: relative;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(35, 35, 33, .2);
}

.p-news-blocks h2.wp-block-heading::before {
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  width: 3.5rem;
  height: 0.1875rem;
  border-radius: 62.4375rem;
  background-color: #DF6743;
  content: "";
}

.p-news-blocks h3.wp-block-heading {
  position: relative;
  padding-left: 1rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.p-news-blocks h3.wp-block-heading::before {
  position: absolute;
  left: 0;
  top: 0.1875rem;
  width: 0.25rem;
  height: calc(100% - 0.375rem);
  border-radius: 62.4375rem;
  background-color: #DF6743;
  content: "";
}

.p-news-blocks h4.wp-block-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.p-news-blocks h4.wp-block-heading::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #DF6743;
  content: "";
  flex-shrink: 0;
}

.p-news-blocks p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-blocks p {
    line-height: 2;
  }
}

.p-news-blocks ul,
.p-news-blocks ol,
.p-news-blocks .wp-block-list {
  padding-left: 1.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-blocks ul,
  .p-news-blocks ol,
  .p-news-blocks .wp-block-list {
    line-height: 2;
  }
}

.p-news-blocks ul,
.p-news-blocks .wp-block-list {
  list-style: disc;
}

.p-news-blocks ol {
  list-style: decimal;
}

.p-news-blocks li {
  padding-left: 0.25rem;
}

.p-news-blocks .wp-block-image {
  margin-top: 3rem;
}

.p-news-blocks .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4375rem;
}

.p-news-blocks .wp-block-button {
  margin-top: 3rem;
}

.p-news-blocks .wp-block-button__link,
.p-news-blocks .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.6875rem;
  min-height: 2.8125rem;
  padding: 0.75rem 1.875rem;
  border-radius: 0.375rem;
  background-color: #232321;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-news-blocks .wp-block-button__link:hover,
  .p-news-blocks .wp-element-button:hover {
    background-color: #DF6743;
  }
}

.p-news-blocks iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.p-news-single {
  padding-left: 74px;
}
@media screen and (max-width: 1023px) {
  .p-news-single {
    padding-left: 0;
  }
}

.p-news-single__article {
  padding-top: 8.25rem;
  padding-bottom: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__article {
    padding-top: 6.1875rem;
    padding-bottom: 10.9375rem;
  }
}

.p-news-single__mv {
  width: calc(100vw - 9.0625rem);
  margin-left: auto;
  aspect-ratio: 1135/452;
  overflow: hidden;
  border-radius: 1.25rem 0 0 1.25rem;
  background-color: #8b8b8b;
}
@media screen and (max-width: 767px) {
  .p-news-single__mv {
    width: calc(100vw - 1rem);
    aspect-ratio: 374/187;
  }
}

.p-news-single__mv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-single__inner {
  display: grid;
  grid-template-columns: 11.1875rem 41.875rem;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  width: 100%;
  max-width: 59.3125rem;
  margin-top: 5.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-single__inner {
    display: block;
    width: 100vw;
    max-width: none;
    margin-top: 3.125rem;
    padding-inline: 1.625rem;
  }
}

.p-news-single__date {
  display: block;
  padding-top: 0.875rem;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-single__date {
    padding-top: 0;
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

.p-news-single__body {
  min-width: 0;
}

.p-news-single__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.06em;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    margin-top: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-news-single__content {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    margin-top: 1.4375rem;
  }
}

.p-news-single__back {
  margin-top: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__back {
    margin-top: 3.375rem;
  }
}

.p-news-single__back a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.6875rem;
  min-height: 2.8125rem;
  margin-inline: auto;
  border-radius: 0.375rem;
  background-color: #232321;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #fff;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-news-single__back a:hover {
    background-color: #DF6743;
  }
}

.p-news-single__empty {
  padding: 10rem 1.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #232321;
  text-align: center;
}

.p-order-made {
  padding-left: 74px;
  color: #232321;
  background-color: #f8f7f4;
}
@media screen and (max-width: 1023px) {
  .p-order-made {
    padding-left: 0;
  }
}

.p-order-made__hero {
  padding-top: 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__hero {
    padding-top: 6.1875rem;
  }
}

.p-order-made__heading {
  text-align: center;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__heading {
    margin-bottom: 1.5625rem;
  }
}

.p-order-made__title {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 2.1875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #707070;
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.975;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__title {
    padding-inline: 1.25rem;
    padding-bottom: 0.5rem;
    font-size: 1.6875rem;
    line-height: 1.2222222222;
  }
}

.p-order-made__subtitle {
  margin-top: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.2142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__subtitle {
    margin-top: 0.4375rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.p-order-made__hero-image {
  width: calc(100% - 4.4375rem);
  margin-left: auto;
  overflow: hidden;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__hero-image {
    width: calc(100% - 1.875rem);
    margin-left: 1.875rem;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}

.p-order-made__hero-image picture {
  display: block;
}

.p-order-made__hero-image img {
  display: block;
  width: 100%;
  height: 29.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-order-made__hero-image img {
    height: 17rem;
  }
}

.p-order-made__features {
  margin-top: 7.25rem;
  padding-left: 7.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-order-made__features {
    margin-top: 5.375rem;
    padding-inline: 1.5625rem;
    overflow: hidden;
  }
}

.p-order-made__features-slider {
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .p-order-made__features-slider {
    width: min(35rem, 100%);
    margin-inline: auto;
  }
}
.p-order-made__features-slider .swiper {
  overflow: visible;
}

.p-order-made__feature-card.swiper-slide {
  width: 35rem;
  height: auto;
  min-height: 24.375rem;
  padding: 1.75rem 1.625rem 1.875rem;
  border: 1px solid #707070;
  border-radius: 0.9375rem;
  background-color: #f8f7f4;
}
@media screen and (max-width: 1023px) {
  .p-order-made__feature-card.swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-card.swiper-slide {
    height: auto;
    min-height: 22.5rem;
    padding: 1.75rem 1.375rem 1.625rem;
    border-radius: 0.5rem;
  }
}

.p-order-made__feature-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding-inline: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-head {
    align-items: baseline;
    padding-inline: 0;
  }
}

.p-order-made__feature-title {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5294117647;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-order-made__feature-number {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #DF6743;
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-number {
    font-size: 1.5625rem;
  }
}

.p-order-made__feature-text {
  margin-top: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.9230769231;
  letter-spacing: 0.06em;
  padding-inline: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.75;
    word-wrap: anywhere;
    padding-inline: 0;
  }
}

.p-order-made__feature-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.8125rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__feature-nav {
    justify-content: center;
    margin-top: 1.75rem;
    padding-right: 0;
  }
}

.p-order-made__slider-button {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background-color: #232321;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-order-made__slider-button:hover {
    opacity: 0.78;
  }
}

.p-order-made__slider-button.swiper-button-disabled {
  cursor: default;
  opacity: 0.28 !important;
  pointer-events: none;
}

.p-order-made__slider-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8125rem;
  height: 0.8125rem;
  background-image: url("../images/icon-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-order-made__slider-button:first-child::after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

.p-order-made__slider-button--small {
  width: 1.875rem;
  height: 1.875rem;
}

.p-order-made__slider-button--small::after {
  width: 0.5rem;
  height: 0.5rem;
}

.p-order-made__collection {
  margin-top: 9.625rem;
  padding: 0 0 7.25rem;
  color: #232321;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-order-made__collection {
    margin-top: 5.375rem;
    padding: 0 0 4.5rem;
  }
}

.p-order-made__collection-inner {
  display: grid;
  grid-template-columns: 2.625rem minmax(0, 56.84375rem);
  width: min(60.15625rem, 100% - 3.125rem);
  margin-inline: auto;
  gap: 0.65625rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__collection-inner {
    position: relative;
    display: block;
    width: min(21.125rem, 100%);
  }
}

.p-order-made__collection-title {
  position: relative;
  display: block;
  align-self: start;
  justify-self: start;
  width: 14.75rem;
  height: 2.625rem;
  font-family: "Lato", sans-serif;
  font-size: 2.1875rem;
  font-weight: 900;
  line-height: 2.4375rem;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translateY(14.75rem) rotate(-90deg);
          transform: translateY(14.75rem) rotate(-90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-order-made__collection-title {
    position: absolute;
    top: -0.625rem;
    left: -1.1875rem;
    z-index: 1;
    width: 10.5rem;
    height: 1.875rem;
    font-size: 1.5625rem;
    line-height: 2.4375rem;
    -webkit-transform: translateY(10.5rem) rotate(-90deg);
            transform: translateY(10.5rem) rotate(-90deg);
  }
}

.p-order-made__collection-list {
  display: grid;
  gap: 4.71875rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__collection-list {
    gap: 5rem;
  }
}

.p-order-made__collection-item {
  display: grid;
  grid-template-columns: 24.3125rem minmax(0, 26.125rem);
  align-items: start;
  gap: 6.40625rem;
  min-width: 0;
  height: 24.21875rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__collection-item {
    display: block;
    height: auto;
  }
}

.p-order-made__item-media {
  position: relative;
  width: 100%;
}

.p-order-made__item-media picture {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
}

.p-order-made__item-media img {
  display: block;
  width: 100%;
  aspect-ratio: 389/327;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-media img {
    aspect-ratio: 338/284;
  }
}

.p-order-made__item-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.66875rem;
  margin-top: 1.28125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-nav {
    gap: 0.66875rem;
    margin-top: 1.21875rem;
  }
}

.p-order-made__item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 24.21875rem;
  padding-top: 0.53125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-body {
    min-height: 0;
    margin-top: 1.21875rem;
    padding-top: 0;
  }
}

.p-order-made__item-heading {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  width: 100%;
  padding-left: 1.15625rem;
  padding-bottom: 1.03125rem;
  border-bottom: 1px solid #DF6743;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-heading {
    gap: 0.625rem;
    padding-left: 1.625rem;
    padding-bottom: 1.03125rem;
  }
}

.p-order-made__item-title {
  font-family: "Lato", sans-serif;
  font-size: 2.1875rem;
  font-weight: 900;
  line-height: 2.4375rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-title {
    font-size: 1.875rem;
    line-height: 2.4375rem;
  }
}

.p-order-made__item-subtitle {
  padding-bottom: 0.1875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-subtitle {
    padding-bottom: 0.375rem;
  }
}

.p-order-made__item-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin-top: 1.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.1875rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-text {
    height: auto;
    margin-top: 1.03125rem;
    font-size: 0.8125rem;
    line-height: 2.1875rem;
  }
}

.p-order-made__item-quote {
  display: inline-block;
  -webkit-transform: translateX(0.35em);
          transform: translateX(0.35em);
}

.p-order-made__item-price {
  position: absolute;
  right: 0;
  bottom: 4.0625rem;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: auto;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__item-price {
    position: static;
    width: 100%;
    margin-top: 1.125rem;
    text-align: right;
  }
}

.p-order-made__item-price span {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.p-order-made__pricing {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__pricing {
    margin-top: 4.5rem;
  }
}

.p-order-made__section-inner {
  width: min(59.6875rem, 100% - 5rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-order-made__section-inner {
    width: calc(100% - 3.125rem);
  }
}

.p-order-made__section-title {
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #707070;
  font-family: "Lato", sans-serif;
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-order-made__section-title {
    padding-bottom: 1rem;
    font-size: 1.875rem;
  }
}

.p-order-made__pricing-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__pricing-table {
    display: block;
    margin-top: 1.375rem;
  }
}

.p-order-made__pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9375rem 5rem 0.9375rem;
  border-bottom: 1px solid #D2D0CC;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__pricing-row {
    padding: 0.8125rem 1.25rem;
  }
}

.p-order-made__pricing-price {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

.p-order-made__pricing-note {
  margin-top: 0.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-order-made__pricing-note {
    text-align: left;
  }
}

.p-order-made__lead-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
  margin-top: 1.625rem;
  padding: 1.875rem;
  border: 1px solid #DF6743;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__lead-time {
    border-radius: 0.625rem;
    gap: 2.25rem;
    margin-top: 1.625rem;
  }
}

.p-order-made__lead-time-row {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__lead-time-row {
    gap: 0.5rem;
  }
}

.p-order-made__lead-label {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__lead-label {
    font-size: 1.125rem;
  }
}

.p-order-made__lead-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-order-made__lead-jp {
    font-size: 0.8125rem;
  }
}

.p-order-made__lead-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-order-made__lead-value > span {
  font-size: 1.25rem;
}

.p-order-made__notes {
  margin-top: 0.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-order-made__notes {
    text-align: left;
  }
}

.p-order-made__fabric {
  margin-top: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__fabric {
    margin-top: 8.125rem;
  }
}

.p-order-made__fabric-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__fabric-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem 1.25rem;
    margin-top: 1.5625rem;
  }
}

.p-order-made__fabric-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-order-made__fabric-logo img {
  display: block;
  width: 100%;
  max-width: 8.4375rem;
  height: auto;
}

.p-order-made__bottom-image {
  width: min(66.5rem, 100% - 5rem);
  margin: 10.625rem auto 0;
  padding-bottom: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__bottom-image {
    width: calc(100% - 3.125rem);
    margin-top: 5.625rem;
    padding-bottom: 3.25rem;
  }
}

.p-order-made__bottom-image picture {
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-order-made__bottom-image picture {
    border-radius: 0.25rem;
  }
}

.p-order-made__bottom-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1064/389;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-order-made__bottom-image img {
    aspect-ratio: 357/338;
  }
}

.p-photo-block {
  padding-left: 74px;
  padding-top: 9.375rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 1023px) {
  .p-photo-block {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-photo-block {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-photo-block__inner {
  padding-inline: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-photo-block__inner {
    padding-inline: 25px;
  }
}

.p-photo-block__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-photo-block__image {
    height: 19.375rem;
    border-radius: 0.625rem;
  }
}

.p-service {
  padding-left: 74px;
  padding-top: 12.5rem;
}
@media screen and (max-width: 1023px) {
  .p-service {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-top: 7.5rem;
  }
}

.p-service__inner {
  padding-inline: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-inline: 25px;
  }
}

.p-service__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-service__header {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
}

.p-service__title-wrap {
  flex-shrink: 0;
}

.p-service__en {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #232321;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-service__en {
    font-size: 1.6875rem;
  }
}

.p-service__jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #232321;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__jp {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
  }
}

.p-service__catch {
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #DE6744;
  text-align: right;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-service__catch {
    text-align: left;
  }
}

.p-service__divider {
  width: 100%;
  height: 1px;
  background-color: #707070;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__divider {
    margin-bottom: 1.25rem;
  }
}

/* コンテンツエリア
  PC: 左列（本文 + 小画像）/ 右列（大画像）の2カラムグリッド
  SP: 本文 → 大画像 → 小画像 の1カラム（orderで並び替え）
------------------------------------------------ */
.p-service__content {
  display: grid;
  grid-template-columns: 30.25rem 1fr;
  grid-template-rows: auto auto;
  gap: 2.9375rem 1.25rem;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.p-service__body {
  grid-column: 1;
  grid-row: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #232321;
}
@media screen and (max-width: 767px) {
  .p-service__body {
    order: 1;
  }
}

.p-service__images-small {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__images-small {
    order: 3;
    gap: 0.75rem;
  }
}

.p-service__content-right {
  grid-column: 2;
  grid-row: 1/3;
  align-self: end;
  display: block;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-service__content-right {
    order: 2;
    align-self: stretch;
  }
}
@media (any-hover: hover) {
  .p-service__content-right:hover .p-service__image--lg {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

/* 画像ラッパー
------------------------------------------------ */
.p-service__image-sm-wrap {
  flex: 1;
}

.p-service__image-sm-wrap picture {
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
}

.p-service__image--sm {
  width: 100%;
  height: 15.8125rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.625rem;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-service__image--sm {
    height: 10rem;
  }
}

.p-service__image-lg-wrap {
  position: relative;
}

.p-service__image-lg-wrap picture {
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
}

.p-service__image--lg {
  width: 100%;
  height: 22.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.625rem;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-service__image--lg {
    height: 16.875rem;
  }
}

.p-service__arrow-wrap {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.p-shop-info {
  padding-left: 74px;
  color: #232321;
  background-color: #f8f7f4;
}
@media screen and (max-width: 1023px) {
  .p-shop-info {
    padding-left: 0;
  }
}

.p-shop-info__section {
  padding-top: 8.25rem;
  padding-bottom: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .p-shop-info__section {
    padding-top: 6.1875rem;
    padding-bottom: 4.75rem;
  }
}

.p-shop-info__heading {
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 16.875rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop-info__heading {
    min-width: 15.875rem;
  }
}

.p-shop-info__title {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #707070;
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.975;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-shop-info__title {
    padding-bottom: 0.5rem;
    font-size: 1.6875rem;
    line-height: 1.2222222222;
  }
}

.p-shop-info__subtitle {
  margin-top: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.2142857143;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-shop-info__subtitle {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.p-shop-info__inner {
  display: grid;
  grid-template-columns: 26.5625rem 29.875rem;
  gap: 3.25rem;
  max-width: 59.6875rem;
  margin-top: 4.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-shop-info__inner {
    display: block;
    width: calc(100% - 3.25rem);
    margin-top: 3.375rem;
  }
}

.p-shop-info__details {
  padding-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-shop-info__details {
    padding-top: 0;
  }
}

.p-shop-info__logo {
  display: block;
  width: 9.625rem;
}
@media screen and (max-width: 767px) {
  .p-shop-info__logo {
    width: 6.8125rem;
    margin-left: 1.625rem;
  }
}

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

.p-shop-info__address {
  margin-top: 1.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.1538461538;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-shop-info__address {
    margin-top: 1rem;
    padding-inline: 1.625rem 0;
    line-height: 2;
  }
}

.p-shop-info__summary {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-shop-info__summary {
    gap: 0.5rem;
    margin-top: 1.125rem;
    padding-inline: 1.625rem 0;
  }
}

.p-shop-info__summary-row {
  display: grid;
  grid-template-columns: 3.5625rem 1fr;
  align-items: center;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
}

.p-shop-info__summary-label {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4615384615;
  letter-spacing: 0.06em;
}

.p-shop-info__summary-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 0.75rem;
  background-color: #707070;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-shop-info__summary-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4615384615;
  letter-spacing: 0.06em;
}

.p-shop-info__summary-value a {
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-shop-info__summary-value a:hover {
    opacity: 0.65;
  }
}

.p-shop-info__access {
  display: grid;
  grid-template-columns: 4.9375rem 1fr;
  -webkit-column-gap: 2.125rem;
     -moz-column-gap: 2.125rem;
          column-gap: 2.125rem;
  margin-top: 2.1875rem;
  padding-top: 2.0625rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .p-shop-info__access {
    display: block;
    margin-top: 1.9375rem;
    padding: 1.5rem 1.625rem 0;
  }
}

.p-shop-info__access-title {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-shop-info__access-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2.1538461538;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-shop-info__access-text {
    margin-top: 1.125rem;
    line-height: 2;
  }
}

.p-shop-info__map {
  width: 29.875rem;
  height: 23.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-shop-info__map {
    width: 100%;
    height: 16.625rem;
    margin-top: 1rem;
  }
}

.p-shop-info__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.p-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 74px;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-sidebar {
    display: none;
  }
}

.p-sidebar__line {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #707070;
}

.p-sidebar__logo-wrap {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.p-sidebar__logo-link {
  position: absolute;
  left: 1rem;
  bottom: 1.875rem;
  display: block;
  width: 2.6875rem;
  height: 3.375rem;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .p-sidebar__logo-link:hover {
    opacity: 0.7;
  }
}

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

.p-sidebar__copyright {
  position: absolute;
  left: 1.75rem;
  top: 50%;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #232321;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  white-space: nowrap;
}

.p-sidebar__arrow {
  position: absolute;
  top: 2.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-sidebar__arrow:hover {
    opacity: 0.7;
  }
}

.p-sidebar__arrow-bar {
  width: 0.125rem;
  height: 1.6875rem;
  background-color: #232321;
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
/*# sourceMappingURL=style.css.map */
