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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol,
fieldset, legend {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

fieldset {
  border: 0;
  min-width: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  background-color: #1a1714;
  color: #26221b;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.js-reveal-ready .js-reveal {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.8s ease, filter 0.8s ease;
}

.js-reveal-ready .js-reveal.is-inview {
  opacity: 1;
  filter: blur(0);
}

.js-reveal-ready .js-reveal--delay.is-inview {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready .js-reveal {
    opacity: 1;
    filter: none;
    transition: none;
  }
}
.l-stage {
  position: relative;
  min-height: 100vh;
}

.l-stage__bg {
  display: none;
}

.l-column {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
  background-color: #fbfaf6;
}

.p-top .l-column,
.p-policy .l-column {
  padding-bottom: 63px;
}

.l-side {
  display: none;
}

@media (min-width: 1024px) {
  .l-stage__bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #1a1714;
    background-image: url("../img/pc-bg.jpg");
    background-size: cover;
    background-position: center;
  }
  .l-stage__bg::before,
  .l-stage__bg::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .l-stage__bg::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .l-stage__bg::after {
    background-image: radial-gradient(31.25% 200% at 50% 192%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.35) 100%);
  }
  .l-side {
    display: block;
    position: fixed;
    z-index: 2;
  }
  .l-side--left {
    left: 20px;
    right: calc(50% + 195px + 34px);
    bottom: 67px;
  }
  .l-side--right {
    top: 119px;
    left: calc(50% + 195px + 22px);
    right: 20px;
    max-height: calc(100vh - 139px);
    overflow-y: auto;
  }
}
.c-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px 15px;
  background-color: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid #e8e4d8;
  backdrop-filter: blur(6px);
}

.c-header__inner {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.c-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-header__logo {
  width: 95px;
  height: auto;
}

.c-header__title {
  font-size: 20px;
  letter-spacing: 1px;
  color: #050504;
  white-space: nowrap;
}

.c-menu-toggle {
  position: fixed;
  top: 26.5px;
  right: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 19px;
  height: 14px;
  padding: 0;
}

@media (min-width: 390px) {
  .c-menu-toggle {
    right: calc(50% - 195px + 22px);
  }
}
.c-menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #050504;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease;
}

.c-menu-toggle.is-active .c-menu-toggle__bar {
  background-color: #fbfaf6;
}

.c-menu-toggle.is-active .c-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.c-menu-toggle.is-active .c-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.c-menu-toggle.is-active .c-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.c-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
  padding: 50px 0 20px;
  overflow-y: auto;
  background-color: #050504;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.c-menu__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: 22px;
}

.c-menu__logo {
  width: 47.576px;
  height: 91px;
}

.c-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px 30px;
}

.c-menu__link {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-block: 10px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.1);
}

.c-menu__link-ja {
  padding-top: 2px;
  padding-bottom: 3px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fbfaf6;
}

.c-menu__link-en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(251, 250, 246, 0.4);
}

.c-menu__link-en--tight,
.c-index__link-en--tight {
  letter-spacing: 2px;
}

.c-menu__cta {
  width: 100%;
  padding-inline: 30px;
}

.c-menu__policy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
}

.c-pc-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
}

.c-pc-brand__logo {
  width: 70px;
  height: 134px;
  margin-bottom: 40px;
}

.c-pc-brand__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.c-pc-brand__sns {
  display: block;
}

.c-pc-brand__sns img {
  width: 100%;
}

.c-pc-brand__sns--instagram {
  width: 28px;
}

.c-pc-brand__sns--tiktok {
  width: 28px;
}

.c-pc-brand__link {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fbfaf6;
  transition: color 0.2s ease;
}

.c-pc-brand__link:hover {
  color: #c9a86a;
}

.c-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 30px;
}

.c-index__label {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: #9b2d20;
}

.c-index__link {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 244px;
  max-width: 100%;
  min-height: 50px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(251, 250, 246, 0.1);
}

.c-index__link-ja {
  padding-top: 2px;
  padding-bottom: 3px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fbfaf6;
  transition: color 0.2s ease;
}

.c-index__link-en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(251, 250, 246, 0.4);
  transition: color 0.2s ease;
}

.c-index__link.is-current .c-index__link-ja,
.c-index__link:hover .c-index__link-ja {
  color: #c9a86a;
}

.c-index__link.is-current .c-index__link-en,
.c-index__link:hover .c-index__link-en {
  color: rgba(201, 168, 106, 0.4);
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 44px 12px;
  min-height: 49px;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  transition: opacity 0.2s ease;
}

.c-btn:hover {
  opacity: 0.85;
}

.c-btn::after {
  content: "";
  flex: none;
  width: 4.756px;
  height: 8.647px;
  background-color: currentcolor;
  clip-path: polygon(100% 91.81%, 85.14% 100%, 4.12% 55.46%, 0% 50%, 1.07% 47.05%, 85.14% 0%, 99.99% 8.17%, 23.95% 50%);
  transform: rotate(180deg);
}

.c-btn--primary {
  background-color: #9b2d20;
  color: #fbfaf6;
}

.c-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 30;
  width: 100%;
  max-width: 390px;
  background-color: rgba(38, 34, 27, 0.95);
  transform: translate(-50%, 100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
}

.c-cta-fixed.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0s;
}

.c-cta-fixed .c-btn {
  min-height: 63px;
  padding: 10px 56px;
}

.c-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px 20px;
  background-color: #1a1714;
  text-align: center;
}

.c-footer__logo {
  width: 52px;
  height: 140px;
  object-fit: contain;
}

.c-footer__name {
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fbfaf6;
}

.c-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #a8a290;
}

.c-footer__policy {
  font-size: 14px;
  letter-spacing: 1px;
  color: #a8a290;
  transition: color 0.2s ease;
}

.c-footer__policy:hover {
  color: #fbfaf6;
}

.c-sec-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.c-sec-head--center {
  align-items: center;
  text-align: center;
}

.c-sec-en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: #9b2d20;
}

.c-sec-en--gold {
  color: #c9a86a;
}

.c-sec-title {
  padding-block: 2px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2px;
  color: #050504;
}

.c-body-text {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0;
  color: #4a463d;
}

.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 565px;
  padding: 55px 0 35px;
  overflow: hidden;
}

.p-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.p-hero__title {
  position: relative;
  z-index: 1;
  padding-inline: 21px;
  font-size: clamp(28px, 11vw - 6px, 36.522px);
  font-weight: 400;
  line-height: 1.5333;
  letter-spacing: -0.1em;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 0 4.87px rgba(0, 0, 0, 0.4);
}

.p-hero__comma {
  letter-spacing: -0.6em;
}

.p-hero__cta {
  position: relative;
  z-index: 1;
  width: calc(100% - 94px);
  margin-top: auto;
}

.p-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 74px 24px 64px;
  text-align: center;
}

.p-message__lead {
  font-size: 14px;
  line-height: 28px;
  color: #4a463d;
}

.p-message__photo {
  width: 100%;
  aspect-ratio: 334/292;
}

.p-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 99%;
}

.p-skill {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 74px 28px 64px;
  background-color: #f2efe6;
}

.p-skill__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
}

.p-skill__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.p-skill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61.6px;
  height: 61.6px;
  border: 0.592308px solid #9b2d20;
  border-radius: 50%;
  font-size: 30.8px;
  line-height: 1;
  color: #9b2d20;
}

.p-skill__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.p-skill__en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a8472;
}

.p-skill__name {
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #050504;
}

.p-workstyle {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 40px 0 64px;
}

.p-workstyle__head,
.p-workstyle__body {
  padding-inline: 28px;
}

.p-workstyle__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-workstyle__media {
  position: relative;
  width: 100%;
  aspect-ratio: 390/264;
}

.p-workstyle__media img {
  position: absolute;
  object-fit: cover;
}

.p-workstyle__media img:first-child {
  left: 0;
  top: 1.52%;
  width: 62%;
  height: 83.33%;
  z-index: 1;
}

.p-workstyle__media img:last-child {
  left: 55.13%;
  top: 13.97%;
  width: 42.05%;
  height: 92.05%;
}

.p-gallery {
  padding-top: 20px;
}

.p-gallery__head {
  padding: 0 28px 30px;
}

.p-gallery__row {
  display: flex;
  width: 100%;
}

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

.p-gallery__row--1 {
  aspect-ratio: 390/230;
}

.p-gallery__row--2 {
  aspect-ratio: 390/170;
}

.p-gallery__row--3 {
  aspect-ratio: 390/150;
}

.p-gallery__cell {
  flex: 1 0 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.p-gallery__cell--w156 {
  flex: 0 0 40%;
}

.p-gallery__cell--w234 {
  flex: 0 0 60%;
}

.p-culture {
  position: relative;
  padding-top: 185px;
  padding-bottom: 49.5px;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.p-culture__title {
  position: absolute;
  top: 65px;
  left: 67.95%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.p-culture__title-ja {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.p-culture__title-en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: #9b2d20;
  writing-mode: vertical-rl;
}

.p-culture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(110px, auto) minmax(148px, auto) minmax(123px, auto);
  margin-inline: 28px;
}

.p-culture__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 8px;
}

.p-culture__cell:nth-child(odd) {
  border-right: 1px solid #fff;
}

.p-culture__cell:nth-child(-n+4) {
  border-bottom: 1px solid #fff;
}

.p-culture__icon {
  display: block;
  height: 27px;
  width: auto;
}

.p-culture__label {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -1px;
  text-align: center;
  color: #fff;
}

.p-culture__photo {
  display: block;
  width: 100%;
  aspect-ratio: 390/258;
  margin-top: 12.5px;
  object-fit: cover;
}

.p-recruit {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 74px 28px 64px;
  background-color: #f2efe6;
}

.c-accordion {
  width: 100%;
  border-top: 1px solid #ddd9cc;
}

.c-accordion__item {
  background-color: #fff;
  border-bottom: 1px solid #ddd9cc;
}

.c-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 16px 21px 2px;
  text-align: left;
}

.c-accordion__label {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-inline: 10px;
}

.c-accordion__name {
  padding-bottom: 2px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #050504;
}

.c-accordion__meta {
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #9b2d20;
}

.c-accordion__icon {
  position: relative;
  flex: none;
  width: 28.667px;
  height: 28.667px;
}

.c-accordion__icon::before,
.c-accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #000;
}

.c-accordion__icon::before {
  left: 10px;
  top: calc(50% - 0.5px);
  width: 8.667px;
  height: 1px;
}

.c-accordion__icon::after {
  left: calc(50% - 0.5px);
  top: 10px;
  width: 1px;
  height: 8.667px;
}

.c-accordion__item.is-open .c-accordion__icon::after {
  display: none;
}

.c-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.c-accordion__item.is-open .c-accordion__panel {
  grid-template-rows: 1fr;
}

.c-accordion__panel-inner {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}

.c-accordion__item.is-open .c-accordion__panel-inner {
  visibility: visible;
  transition-delay: 0s;
}

.c-accordion__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 23px 24px;
  border-top: 1px solid #ddd9cc;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

.c-accordion__intro {
  font-size: 13px;
  line-height: 24.7px;
  color: #4a463d;
  white-space: pre-line;
}

.c-accordion__dl {
  padding-top: 2px;
}

.c-accordion__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0 15px;
  border-bottom: 1px solid #ddd9cc;
}

.c-accordion__row:last-child {
  padding-bottom: 14px;
  border-bottom: 0;
}

.c-accordion__term {
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #9b2d20;
}

.c-accordion__desc {
  margin: 0;
  font-size: 13px;
  line-height: 23.4px;
  color: #4a463d;
  white-space: pre-line;
}

.c-accordion__note {
  display: block;
  margin: 0;
  font-size: 11px;
  line-height: 19.8px;
  color: #8a8472;
}

.c-accordion__cta {
  gap: 11px;
  padding: 10px 15px;
  min-height: 0;
  font-family: "Noto Serif JP", serif;
}

.p-career {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 74px 20px 64px;
}

.p-career__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-block: 40px;
}

.p-career__item {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: 100%;
}

.p-career__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
}

.p-career__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #9b2d20;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fbfaf6;
}

.p-career__badge img {
  width: 46px;
  height: 46px;
}

.p-career__line {
  flex: 1 0 0;
  width: 1px;
  min-height: 12px;
  margin-block: 6px;
  background-color: #ddd9cc;
}

.p-career__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 26px;
}

.p-career__item:last-child .p-career__body {
  padding-bottom: 0;
}

.p-career__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #050504;
}

.p-career__desc {
  font-size: 14px;
  line-height: 30px;
  color: #8a8472;
  font-feature-settings: "palt";
}

.p-flow {
  display: flex;
  flex-direction: column;
  gap: 27.4px;
  padding: 64px 24px 74px;
  background-color: #f2efe6;
}

.p-flow__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: clamp(6px, 4vw, 15.3px);
  padding-top: 14.6px;
  width: 100%;
}

.p-flow__steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: calc(7.3px + 50%);
  height: 1px;
  background-color: #cfc9b8;
}

.p-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 72px;
  min-width: 0;
  aspect-ratio: 1/1;
  border: 1px solid #9b2d20;
  border-radius: 50%;
  background-color: #fbfaf6;
  color: #9b2d20;
}

.p-flow__step--current {
  background-color: #9b2d20;
  color: #fbfaf6;
}

.p-flow__step-no {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.p-flow__step--current .p-flow__step-no {
  opacity: 0.85;
}

.p-flow__step-name {
  padding-top: 3px;
  padding-bottom: 2px;
  font-size: 14px;
  letter-spacing: 1px;
}

.p-flow__note {
  width: 100%;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #8a8472;
}

.p-shop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 64px 28px;
}

.p-shop__photo {
  width: 100%;
  aspect-ratio: 334/230;
}

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

.p-shop__dl {
  width: 100%;
  padding-top: 21px;
  border-top: 1px solid #e0dccf;
}

.p-shop__row {
  display: flex;
  align-items: flex-start;
  padding: 16px 0 17px;
  border-bottom: 1px solid #e0dccf;
}

.p-shop__row:last-child {
  padding-bottom: 16px;
  border-bottom: 0;
}

.p-shop__term {
  flex: none;
  width: 88px;
  font-size: 14px;
  line-height: 30px;
  color: #9b2d20;
}

.p-shop__desc {
  flex: 1 0 0;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 30px;
  color: #4a463d;
}

.p-shop__map {
  width: 100%;
  height: 196px;
  border: 0;
}

.p-entry-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13.4px;
  padding: 60px 28px;
  background-color: #000;
  overflow: hidden;
  text-align: center;
}

.p-entry-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.p-entry-cta__en,
.p-entry-cta__title,
.p-entry-cta .c-btn {
  position: relative;
  z-index: 1;
}

.p-entry-cta__title {
  padding-bottom: 18.6px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2px;
  color: #fbfaf6;
}

.p-entry-cta .c-btn {
  max-width: 334px;
  min-height: 63px;
  padding: 10px 56px;
}

.c-btn--outline {
  padding: 15px 32px 16px;
  min-height: 0;
  border: 1px solid #9b2d20;
  background-color: transparent;
  font-size: 14px;
  line-height: 30px;
  color: #9b2d20;
}

.c-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 74px 20px 40px;
  background-color: #fbfaf6;
  text-align: center;
}

.c-page-title__en {
  width: 100%;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: #9b2d20;
}

.c-page-title__ja {
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2px;
  color: #050404;
}

.c-page-title__lead {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #4a463d;
}

.c-alert {
  margin: 0 28px 24px;
  padding: 12px 16px;
  border: 1px solid #9b2d20;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #9b2d20;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 28px 0;
  background-color: #fbfaf6;
}

.c-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.c-field__label-row,
.c-field__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0;
}

.c-field__label {
  padding: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1px;
  color: #050404;
}

.c-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding-inline: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
}

.c-badge--required {
  background-color: #9b2d20;
}

.c-badge--optional {
  background-color: #8a8472;
}

.c-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd9cc;
  border-radius: 0;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #050404;
  appearance: none;
  transition: border-color 0.2s ease;
}

.c-input::placeholder {
  color: #a8a290;
  opacity: 1;
}

.c-input:focus-visible {
  outline: none;
  border-color: #4a463d;
}

.c-input--textarea {
  min-height: 140px;
  resize: vertical;
}

.is-error .c-input {
  border-color: #9b2d20;
}

.c-field__error {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #9b2d20;
}

.c-radio-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.c-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd9cc;
  background-color: #fff;
  cursor: pointer;
}

.c-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.c-radio__mark {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  border: 2px solid #4a463d;
  border-radius: 50%;
  background-color: #fff;
}

.c-radio__input:checked + .c-radio__mark {
  border-color: #9b2d20;
}

.c-radio__input:checked + .c-radio__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: #9b2d20;
}

.c-radio__input:focus-visible + .c-radio__mark {
  outline: 2px solid #4a463d;
  outline-offset: 2px;
}

.c-radio__label {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.2px;
  color: #050404;
}

.c-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 28px 80px;
  background-color: #fbfaf6;
}

.c-agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-inline: 10px;
}

.c-agreement__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #9b2d20;
  text-decoration: underline;
}

.c-agreement__link::after {
  content: "";
  width: 6px;
  height: 9px;
  background-color: currentcolor;
  -webkit-mask-image: url("../img/icon-chevron.svg");
  mask-image: url("../img/icon-chevron.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: rotate(90deg);
}

.c-agreement__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.c-agreement__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.c-agreement__box {
  position: relative;
  flex: none;
  width: 15px;
  height: 15px;
  border: 2px solid #4a463d;
  background-color: #fff;
}

.c-agreement__input:checked + .c-agreement__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 5px;
  height: 10px;
  border: solid #9b2d20;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.c-agreement__input:focus-visible + .c-agreement__box {
  outline: 2px solid #4a463d;
  outline-offset: 2px;
}

.c-agreement__text {
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #050404;
}

.c-btn--submit {
  padding: 18px 32px;
  min-height: 0;
}

.c-btn--back {
  gap: 10px;
  padding: 16px 32px;
  min-height: 0;
  border: 1px solid #4a463d;
  background-color: transparent;
  color: #4a463d;
}

.c-btn--back::after {
  content: none;
}

.c-btn--back::before {
  content: "";
  flex: none;
  width: 4.756px;
  height: 8.647px;
  background-color: currentcolor;
  clip-path: polygon(100% 91.81%, 85.14% 100%, 4.12% 55.46%, 0% 50%, 1.07% 47.05%, 85.14% 0%, 99.99% 8.17%, 23.95% 50%);
}

.c-review {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 28px 0;
  background-color: #fbfaf6;
}

.c-review__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.c-review__en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9b2d20;
}

.c-review__ja {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #050404;
}

.c-review__list {
  width: 100%;
  border: 1px solid #ddd9cc;
  background-color: #fff;
}

.c-review__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px 19px;
  border-bottom: 1px solid #ddd9cc;
}

.c-review__row:last-child {
  border-bottom: 0;
}

.c-review__term {
  width: 100%;
  font-size: 13px;
  letter-spacing: 1px;
  color: #8a8472;
}

.c-review__desc {
  width: 100%;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #050404;
  overflow-wrap: anywhere;
}

.c-review__desc.is-empty {
  color: #8a8472;
}

.c-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 28px 0;
  background-color: #fbfaf6;
}

.c-actions--back {
  padding-top: 16px;
  padding-bottom: 60px;
}

.c-actions__note {
  width: 100%;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.5px;
  text-align: center;
  color: #8a8472;
}

.c-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.c-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 96px 28px;
  background-color: #fbfaf6;
  text-align: center;
}

.c-complete__mark {
  display: block;
  width: 88px;
  height: 88px;
  color: #9b2d20;
}

.c-complete__en {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 5px;
  color: #9b2d20;
}

.c-complete__ja {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2px;
  color: #050404;
}

.c-complete__lead {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 1px;
  color: #4a463d;
}

.c-complete .c-btn {
  margin-top: 0;
}

.c-page-title--policy {
  padding-bottom: 0;
}

.c-page-title--policy .c-page-title__en {
  letter-spacing: 4px;
}

.c-policy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 64px;
  background-color: #fbfaf6;
}

.c-policy__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.c-policy__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 22px 20px 23px;
  border-bottom: 1px solid #ddd9cc;
}

.c-policy__item:last-child {
  border-bottom: 0;
}

.c-policy__title {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #050404;
}

.c-policy__text {
  width: 100%;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: #4a463d;
}
