@charset "UTF-8";
:root {
  --ink: #222222;
  --text: #333333;
  --muted: #777777;
  --bg: #FFFFFF;
  --paper: #F5F5F3;
  --line: #DDDDDD;
  --accent: #555555;
  --serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --num: "Barlow", "Noto Sans JP", sans-serif;
  --grad-light: linear-gradient(180deg, #FFFCF8 0%, #A69F95 100%);
  --grad-dark: linear-gradient(180deg, #332B21 0%, #000000 50%, #332B21 100%);
  --sand-light: #FFFCF8;
  --sand-dark: #A69F95;
  --brown: #332B21;
  --black: #000000;
  --inner: 1120px;
  --gutter: 40px;
  --tr: .3s ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

@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;
  }
}
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

img,
picture,
video,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 13px;
  }
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@property --cta-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes cta_border_run {
  to {
    --cta-angle: 360deg;
  }
}
.container {
  max-width: calc(var(--inner) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: revert;
  }
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal--left {
  transform: translateX(-48px);
}

.js-reveal--right {
  transform: translateX(48px);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal--left,
  .js-reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.p-fv {
  position: relative;
  background-image: linear-gradient(90deg, var(--brown) 0%, var(--black) 50%, var(--brown) 100%);
}
.p-fv .container {
  max-width: none;
  padding-inline: 0;
}
.p-fv .inner {
  position: relative;
}
.p-fv .pic img {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv .logo {
  position: absolute;
  top: 3.69%;
  left: 3.5972222222vw;
  display: flex;
  align-items: center;
  gap: 1.5972222222vw;
  color: #fff;
}
.p-fv .logo img {
  width: 3.7152777778vw;
  height: auto;
}
.p-fv .logo .name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.13em;
}
.p-fv .hero-copy {
  position: absolute;
  top: 46.1%;
  left: 7.8402777778vw;
  color: #fff;
}
.p-fv .tag {
  display: inline-block;
  margin-left: -0.6805555556vw;
  padding: 0.7638888889vw 2.0833333333vw;
  border: 1px solid #fff;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-fv h1 {
  margin-top: 1.5277777778vw;
  color: #fff;
  font-family: var(--serif);
  font-size: 4.1388888889vw;
  font-weight: 400;
  line-height: 1.435;
  letter-spacing: 0.03em;
}
.p-fv .lead {
  margin-top: 1.875vw;
  color: #D1D1D1;
  font-size: 17px;
  line-height: 1.8;
}
.p-fv .hero-info {
  position: absolute;
  top: 35.3%;
  left: 69.3402777778vw;
  width: 25.2291666667vw;
  color: #fff;
  text-align: center;
}
.p-fv .event-box h2,
.p-fv .bonus-box h2 {
  width: 17.8125vw;
  margin-inline: auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.08em;
}
.p-fv .date {
  margin-top: 0.6944444444vw;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-fv .place {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6944444444vw;
  margin-top: 0.625vw;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.p-fv .place::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}
.p-fv .bonus-box {
  margin-top: 1.5972222222vw;
}
.p-fv .bonus-box h3 {
  margin-top: 1.1111111111vw;
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.04em;
}
.p-fv .bonus-box h3 strong {
  font-size: 38px;
  font-weight: 400;
}
.p-fv .hero-action {
  margin-top: 1.875vw;
}
.p-fv .cta-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6666666667vw;
  height: 6.7847222222vw;
  border: 3px solid transparent;
  border-radius: 6px;
  background-color: transparent;
  background-image: linear-gradient(#262626, #262626), conic-gradient(from var(--cta-angle), transparent 0 72%, #FFF6D0 100%), linear-gradient(135deg, #262626 0%, #F0E8B9 50%, #262626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box, border-box;
  animation: cta_border_run 3s linear infinite;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-decoration: none;
  transition: opacity var(--tr);
}
.p-fv .cta-button a::before {
  content: "\f1d8";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-fv .cta-button a:hover {
    opacity: 0.85;
  }
}
.p-fv .cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4861111111vw;
  margin-top: 1.0416666667vw;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.p-fv .cta-note::before {
  content: "\f252";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.p-fv .scroll {
  position: absolute;
  top: 86.5%;
  left: 51.9965277778vw;
  width: 1.3402777778vw;
}
.p-fv .scroll img {
  width: 100%;
  height: auto;
}
.p-fv .scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: -0.2291666667vw;
  width: 0.5069444444vw;
  height: 0.5069444444vw;
  border-radius: 50%;
  background-color: #fff;
  animation: fv_scroll_dot 2.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}
@media (max-width: 768px) {
  .p-fv .inner {
    display: flex;
    flex-direction: column;
  }
  .p-fv .pic {
    order: 1;
  }
  .p-fv .pic img {
    height: auto;
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-fv .logo {
    top: 20px;
    left: 20px;
    z-index: 2;
    gap: 12px;
  }
  .p-fv .logo img {
    width: 40px;
  }
  .p-fv .logo .name {
    font-size: 11px;
  }
  .p-fv .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    aspect-ratio: 3/4;
    padding: 0 20px 32px;
  }
  .p-fv .tag {
    margin-left: 0;
    padding: 7px 14px;
    font-size: 12px;
    display: inline-block;
  }
  .p-fv h1 {
    margin-top: 14px;
    font-size: 30px;
  }
  .p-fv .lead {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
  }
  .p-fv .hero-info {
    position: static;
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 14px 12px;
    width: auto;
    padding: 26px 20px 40px;
  }
  .p-fv .event-box h2,
  .p-fv .bonus-box h2 {
    width: auto;
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 0.06em;
  }
  .p-fv .date {
    margin-top: 8px;
    font-size: 19px;
    letter-spacing: 0.02em;
  }
  .p-fv .place {
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
  }
  .p-fv .place::before {
    font-size: 13px;
  }
  .p-fv .bonus-box {
    margin-top: 0;
  }
  .p-fv .bonus-box h3 {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.6;
  }
  .p-fv .bonus-box h3 br {
    display: none;
  }
  .p-fv .bonus-box h3 strong {
    font-size: 22px;
  }
  .p-fv .hero-action {
    grid-column: 1/-1;
    margin-top: 8px;
  }
  .p-fv .cta-button a {
    gap: 16px;
    height: 72px;
    font-size: 17px;
  }
  .p-fv .cta-button a::before {
    font-size: 20px;
  }
  .p-fv .cta-note {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
  }
  .p-fv .cta-note::before {
    font-size: 12px;
  }
  .p-fv .scroll {
    display: none;
  }
}

@keyframes fv_scroll_dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(11.6319444444vw);
    opacity: 0;
  }
}
.p-points {
  background-image: linear-gradient(90deg, var(--brown) 0%, var(--black) 50%, var(--brown) 100%);
}
.p-points .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 70px;
}
.p-points .inner {
  position: relative;
  margin-left: 6.4583333333vw;
  padding-top: 4.8611111111vw;
  padding-bottom: 7.1527777778vw;
  border-top-left-radius: 1.3888888889vw;
  background-color: #fff;
  overflow: hidden;
}
.p-points .head {
  position: relative;
  padding-left: 7.625vw;
}
.p-points .head h2 {
  color: #33302B;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-indent: -1.875vw;
}
.p-points .head h3 {
  margin-top: 1.7361111111vw;
  color: #000;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.468;
  letter-spacing: 0.1em;
}
.p-points .head h4 {
  position: absolute;
  top: 5.2083333333vw;
  left: 65.3125vw;
  color: #636363;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.p-points .slider {
  margin-top: 2.4027777778vw;
  margin-left: 0;
}
.p-points .swiper-slide {
  display: flex;
  gap: 3.8680555556vw;
  width: 72.6875vw;
  height: auto;
}
.p-points .pic {
  flex: none;
  width: 44.8611111111vw;
}
.p-points .pic img {
  width: 100%;
  aspect-ratio: 646/534.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-points .txt {
  flex: 1;
  min-width: 0;
}
.p-points .txt .num {
  display: block;
  margin-top: 0.3472222222vw;
  color: #2B2B2B;
  font-family: var(--num);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-points .txt h2 {
  margin-top: 2.3958333333vw;
  color: #000;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
}
.p-points .txt p {
  margin-top: 2.5555555556vw;
  color: #000;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.34;
}
.p-points .txt h3 {
  margin-top: 1.2777777778vw;
  color: #000;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 2.22;
}
.p-points .swiper-scrollbar {
  position: static;
  width: 73.0763888889vw;
  height: 3px;
  margin-top: 5.0416666667vw;
  margin-left: 6.875vw;
  border-radius: 0;
  background-color: transparent;
  background-image: linear-gradient(#949494, #949494);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 1px;
}
.p-points .swiper-scrollbar-drag {
  height: 3px;
  border-radius: 0;
  background-color: #03081F;
}
@media (max-width: 768px) {
  .p-points .inner {
    margin-left: 16px;
    padding-top: 40px;
    padding-bottom: 48px;
    border-top-left-radius: 16px;
  }
  .p-points .scroll {
    display: none;
  }
  .p-points .head {
    padding-left: 20px;
  }
  .p-points .head h2 {
    font-size: 12px;
    text-indent: -18px;
    padding-left: 18px;
  }
  .p-points .head h3 {
    margin-top: 16px;
    font-size: 22px;
    letter-spacing: 0.06em;
  }
  .p-points .head h4 {
    position: static;
    margin-top: 10px;
    font-size: 11px;
  }
  .p-points .slider {
    margin-top: 24px;
    margin-left: 0;
  }
  .p-points .swiper-slide {
    display: block;
    width: 82%;
  }
  .p-points .pic {
    width: auto;
  }
  .p-points .txt .num {
    margin-top: 14px;
    font-size: 36px;
  }
  .p-points .txt h2 {
    margin-top: 10px;
    font-size: 20px;
  }
  .p-points .txt h2 br {
    display: none;
  }
  .p-points .txt p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 2;
  }
  .p-points .txt h3 {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
  }
  .p-points .swiper-scrollbar {
    width: auto;
    margin-top: 28px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.p-target {
  background-image: linear-gradient(90deg, var(--brown) 0%, var(--black) 50%, var(--brown) 100%);
  overflow: hidden;
}
.p-target .container {
  position: relative;
  max-width: none;
  padding-inline: 0;
  padding-top: 8.4166666667vw;
  padding-bottom: 7.2708333333vw;
}
.p-target .slider {
  --loop-time: 50s;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.p-target .slider.is-loop {
  animation: target-loop var(--loop-time) linear infinite;
  animation-delay: calc(var(--loop-time) * -0.7355);
}
@media (prefers-reduced-motion: reduce) {
  .p-target .slider.is-loop {
    animation: none;
  }
}
.p-target .pic {
  flex: none;
  margin-right: 0.5555555556vw;
}
.p-target .pic img {
  width: auto;
  height: 24.3055555556vw;
}
.p-target h2 {
  position: absolute;
  top: 12.9097222222vw;
  right: 18.5763888889vw;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 1.3958333333vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 400;
}
.p-target h2 br {
  display: none;
}
.p-target h2 strong {
  writing-mode: vertical-rl;
  padding-top: 2.1527777778vw;
  padding-bottom: 0.8333333333vw;
  background-color: #fff;
  font-weight: 400;
  line-height: 1.64;
  letter-spacing: 0.12em;
}
.p-target .txt {
  margin-top: 4.4305555556vw;
  margin-left: 21.7569444444vw;
}
.p-target ul {
  width: 43.0347222222vw;
  list-style: none;
  border-top: 1px solid #6B6B6B;
}
.p-target li {
  position: relative;
  padding: 1.2986111111vw 0 1.5833333333vw 6.75vw;
  border-bottom: 1px solid #6B6B6B;
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-target li::before {
  content: "";
  position: absolute;
  top: 1.6180555556vw;
  left: 3.9652777778vw;
  width: 1.2847222222vw;
  height: 1.2847222222vw;
  border: 1px solid #fff;
}
.p-target h3 {
  margin-top: 2.0763888889vw;
  margin-left: 5.9027777778vw;
  color: #fff;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.94;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-target .container {
    padding-top: 32px;
    padding-bottom: 56px;
  }
  .p-target .pic {
    margin-right: 4px;
  }
  .p-target .pic img {
    height: 180px;
  }
  .p-target .txt {
    margin: -20px 20px 0;
  }
  .p-target h2 {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: column;
    gap: 6px;
    font-size: 20px;
  }
  .p-target h2 strong {
    writing-mode: horizontal-tb;
    padding: 4px 12px;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }
  .p-target ul {
    width: auto;
    margin-top: 28px;
  }
  .p-target li {
    padding: 16px 0 16px 34px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .p-target li::before {
    top: 20px;
    left: 6px;
    width: 15px;
    height: 15px;
  }
  .p-target h3 {
    margin-top: 28px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }
}

@keyframes target-loop {
  to {
    transform: translateX(-50%);
  }
}
.p-house {
  background-image: linear-gradient(90deg, var(--sand-light) 0%, var(--sand-dark) 100%);
  overflow: hidden;
}
.p-house .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 9.4236111111vw;
  padding-bottom: 4.5138888889vw;
}
.p-house .head {
  position: relative;
  padding-left: 11.2777777778vw;
}
.p-house .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-house .section-heading h2 {
  margin-top: 1.5208333333vw;
  color: #474747;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.12em;
}
.p-house .event-detail {
  position: absolute;
  top: 1.0347222222vw;
  right: 11.3680555556vw;
  color: #1C1C1C;
  font-family: var(--serif);
  text-align: right;
}
.p-house .event-detail h2 {
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.p-house .event-detail h3 {
  margin-top: 0.2361111111vw;
  margin-right: -0.6388888889vw;
  color: inherit;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}
.p-house .event-detail h4 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.0347222222vw;
  margin-top: 0.3333333333vw;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.p-house .event-detail h4::before {
  content: "\f279";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
}
.p-house .main-photo {
  margin-top: 4.6458333333vw;
}
.p-house .main-photo img {
  width: 100%;
  aspect-ratio: 1440/814;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-house .spec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.375vw;
  list-style: none;
  color: #0F0F0F;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.p-house .spec li + li::before {
  content: "／";
  margin-inline: 1.12em;
}
.p-house .house-section-1,
.p-house .house-section-2 {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.p-house .pic,
.p-house .txt h2,
.p-house .txt p {
  position: relative;
  z-index: 1;
}
.p-house .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.p-house .txt {
  flex: none;
}
.p-house .txt h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.p-house .txt p {
  width: 30.2777777778vw;
  color: #000;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.253;
  letter-spacing: 0.115em;
}
.p-house .txt p + p {
  margin-top: 2.3472222222vw;
}
.p-house .decor-text {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.p-house .decor-text img {
  width: 100%;
  height: auto;
}
.p-house .house-section-1 {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-top: 9.8055555556vw;
}
.p-house .house-section-1 .pic {
  flex: none;
  width: 28.0555555556vw;
  margin-left: 7.1666666667vw;
}
.p-house .house-section-1 .pic::after {
  content: "";
  position: absolute;
  top: -4.7152777778vw;
  left: 23.0555555556vw;
  width: 12.9861111111vw;
  height: 13.0555555556vw;
  background: url("../img/house_circle_txt.png") no-repeat center/contain;
  animation: house_circle_spin 16s linear infinite;
}
.p-house .house-section-1 .txt {
  width: 30.2777777778vw;
  margin-top: 3.1875vw;
  margin-left: 15.1944444444vw;
}
.p-house .house-section-1 .txt h2 {
  width: -moz-max-content;
  width: max-content;
  color: #2A261E;
}
.p-house .house-section-1 .txt h2 + p {
  margin-top: 2.7361111111vw;
}
.p-house .house-section-1 .decor-text {
  top: 22.1597222222vw;
  left: -0.4861111111vw;
  width: 53.0069444444vw;
}
.p-house .house-section-2 {
  margin-top: 2.7569444444vw;
}
.p-house .house-section-2 .pic {
  flex: none;
  width: 25.3680555556vw;
  margin-left: 19.7013888889vw;
  padding-bottom: 8.4305555556vw;
}
.p-house .house-section-2 .pic .photo-sub {
  position: absolute;
  top: 28.8194444444vw;
  left: -6.1666666667vw;
  width: 20.7430555556vw;
}
.p-house .house-section-2 .txt {
  margin-top: 5.2916666667vw;
  margin-left: 5.9444444444vw;
}
.p-house .house-section-2 .txt h2 {
  color: #262626;
}
.p-house .house-section-2 .txt p {
  margin-left: 0.4166666667vw;
}
.p-house .house-section-2 .txt h2 + p {
  margin-top: 3.0208333333vw;
}
.p-house .house-section-2 .decor-text {
  top: -5.9652777778vw;
  left: 51.0416666667vw;
  width: 49.7222222222vw;
}
@media (max-width: 768px) {
  .p-house .container {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .p-house .head {
    padding-inline: 20px;
  }
  .p-house .section-heading h3 {
    font-size: 12px;
  }
  .p-house .section-heading h2 {
    margin-top: 8px;
    font-size: 32px;
  }
  .p-house .event-detail {
    position: static;
    margin-top: 20px;
    text-align: left;
  }
  .p-house .event-detail h2 {
    font-size: 13px;
  }
  .p-house .event-detail h3 {
    margin-top: 2px;
    margin-right: 0;
    font-size: 22px;
  }
  .p-house .event-detail h4 {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 4px;
    font-size: 14px;
  }
  .p-house .event-detail h4::before {
    font-size: 14px;
  }
  .p-house .main-photo {
    margin-top: 28px;
  }
  .p-house .main-photo img {
    aspect-ratio: 4/3;
  }
  .p-house .spec {
    margin-top: 16px;
    padding-inline: 20px;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  .p-house .spec li + li::before {
    margin-inline: 0.6em;
  }
  .p-house .house-section-1,
  .p-house .house-section-2 {
    flex-direction: column;
    padding-inline: 20px;
  }
  .p-house .txt h2 {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
  .p-house .txt p {
    width: auto;
    font-size: 13px;
    line-height: 2;
  }
  .p-house .txt p + p {
    margin-top: 1em;
  }
  .p-house .house-section-1 {
    margin-top: 64px;
  }
  .p-house .house-section-1 .pic {
    width: 68%;
    margin-left: auto;
  }
  .p-house .house-section-1 .pic::after {
    top: -36px;
    left: auto;
    right: -12px;
    width: 96px;
    height: 97px;
  }
  .p-house .house-section-1 .txt h2 {
    position: absolute;
    top: 4px;
    right: calc(68% + 14px);
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.12em;
  }
  .p-house .house-section-1 .txt {
    width: auto;
    margin-top: 24px;
    margin-left: 0;
  }
  .p-house .house-section-1 .txt h2 + p {
    margin-top: 0;
  }
  .p-house .house-section-1 .decor-text {
    top: auto;
    bottom: -64px;
    left: -8px;
    width: 70%;
  }
  .p-house .house-section-2 {
    margin-top: 72px;
  }
  .p-house .house-section-2 .pic {
    width: 56%;
    margin-left: 10%;
    padding-bottom: 60px;
  }
  .p-house .house-section-2 .pic .photo-sub {
    top: auto;
    bottom: 0;
    left: -29%;
    width: 75%;
  }
  .p-house .house-section-2 .txt h2 {
    position: absolute;
    top: 4px;
    left: calc(72% + 8px);
    right: auto;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.12em;
  }
  .p-house .house-section-2 .txt {
    margin-top: 28px;
    margin-left: 0;
  }
  .p-house .house-section-2 .txt p {
    margin-left: 0;
  }
  .p-house .house-section-2 .txt h2 + p {
    margin-top: 16px;
  }
  .p-house .house-section-2 .decor-text {
    top: 240px;
    left: auto;
    right: -12px;
    width: 60%;
  }
}

@keyframes house_circle_spin {
  to {
    transform: rotate(360deg);
  }
}
.p-cta {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(90deg, var(--sand-light) 0%, var(--sand-dark) 100%);
}
.p-cta .container {
  position: relative;
  max-width: none;
  height: 38.9444444444vw;
  padding-inline: 0;
}
.p-cta .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6.1597222222vw;
  width: 87.8541666667vw;
  height: 31.6736111111vw;
  border-radius: 1.3888888889vw;
  background-color: #fff;
  box-shadow: 0 0 3.4722222222vw rgba(0, 0, 0, 0.12);
}
.p-cta .inner,
.p-cta .btn {
  position: relative;
  z-index: 2;
}
.p-cta .inner {
  padding-top: 9.6875vw;
  padding-left: 18.2569444444vw;
}
.p-cta .inner h2 {
  color: #121212;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.935;
  letter-spacing: 0.12em;
}
.p-cta .inner h3 {
  margin-top: 1.5416666667vw;
  color: #000;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.p-cta .btn {
  position: absolute;
  top: 10.2638888889vw;
  left: 43.4722222222vw;
  width: 39.2361111111vw;
  text-align: center;
}
.p-cta .btn h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8680555556vw;
  margin-top: 1.6527777778vw;
  color: #262626;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-cta .btn h3::before {
  content: "\f252";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
.p-cta .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8958333333vw;
  height: 10.1388888889vw;
  border: 3px solid transparent;
  border-radius: 6px;
  background-color: transparent;
  background-image: linear-gradient(#262626, #262626), conic-gradient(from var(--cta-angle), transparent 0 72%, #FFF6D0 100%), linear-gradient(135deg, #262626 0%, #F0E8B9 50%, #262626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box, border-box;
  animation: cta_border_run 3s linear infinite;
  color: #fff;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-decoration: none;
  transition: opacity var(--tr);
}
.p-cta .cta-button::before {
  content: "\f1d8";
  color: #E0E0E0;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-cta .cta-button:hover {
    opacity: 0.85;
  }
}
.p-cta .decor-text {
  position: absolute;
  top: 0;
  left: 6.1597222222vw;
  z-index: 1;
  width: 87.8541666667vw;
  height: 31.6736111111vw;
  border-radius: 1.3888888889vw;
  overflow: hidden;
  pointer-events: none;
}
.p-cta .decor-text img {
  position: absolute;
  top: 8.9444444444vw;
  left: 23.7013888889vw;
  width: 64.1666666667vw;
  max-width: none;
  height: auto;
}
.p-cta .scroll {
  position: absolute;
  top: 29.25vw;
  left: 48.8888888889vw;
  z-index: -1;
  width: 1.3402777778vw;
}
.p-cta .scroll img {
  width: 100%;
  height: auto;
}
.p-cta .scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1vw;
  width: 0.5138888889vw;
  height: 0.5138888889vw;
  border-radius: 50%;
  background-color: #1C1C1C;
  animation: cta_scroll_dot 2.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}
@media (max-width: 768px) {
  .p-cta .container {
    height: auto;
    padding: 0 16px 56px;
  }
  .p-cta .container::before {
    top: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: calc(100% - 56px);
    border-radius: 16px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  }
  .p-cta .inner {
    padding: 44px 20px 0;
    text-align: center;
  }
  .p-cta .inner h2 {
    font-size: 22px;
    line-height: 1.7;
  }
  .p-cta .inner h3 {
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
  .p-cta .btn {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 24px 20px 48px;
  }
  .p-cta .btn h3 {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .p-cta .btn h3::before {
    font-size: 12px;
  }
  .p-cta .cta-button {
    gap: 14px;
    height: 72px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }
  .p-cta .cta-button::before {
    font-size: 18px;
  }
  .p-cta .decor-text {
    left: 16px;
    right: 16px;
    width: auto;
    height: calc(100% - 56px);
    border-radius: 16px;
  }
  .p-cta .decor-text img {
    top: auto;
    bottom: -20px;
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
  }
  .p-cta .scroll {
    display: none;
  }
}

@keyframes cta_scroll_dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(15.9652777778vw);
    opacity: 0;
  }
}
.p-performance {
  background-color: #fff;
  overflow: hidden;
}
.p-performance .container {
  max-width: none;
  padding-inline: 0;
}
.p-performance .inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 7.3611111111vw;
  padding-bottom: 10.25vw;
}
.p-performance .col-left {
  flex: none;
  width: max(33.7361111111vw, 430px);
  margin-left: 10.5833333333vw;
}
.p-performance .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-performance .section-heading h2 {
  margin-top: 1.5vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.935;
  letter-spacing: 0.11em;
  white-space: nowrap;
}
.p-performance .col-right {
  margin-top: 6.3472222222vw;
}
.p-performance .spec-tags {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.8055555556vw;
       column-gap: 0.8055555556vw;
  width: 47.2222222222vw;
  list-style: none;
}
.p-performance .spec-tags::before, .p-performance .spec-tags::after {
  content: "";
  flex-basis: 100%;
  height: 0;
}
.p-performance .spec-tags::before {
  order: 2;
}
.p-performance .spec-tags::after {
  order: 4;
}
.p-performance .spec-tags li {
  order: 1;
}
.p-performance .spec-tags li:nth-child(n+4) {
  order: 3;
}
.p-performance .spec-tags li:nth-child(n+7) {
  order: 5;
}
.p-performance .spec-tags li:nth-child(n+4) {
  margin-top: 1.4652777778vw;
}
.p-performance .spec-tags li {
  padding-inline: 1.0416666667vw;
  background-color: #1C1C1C;
  color: #fff;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 38px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-performance .col-right p {
  margin-top: 2.0763888889vw;
  margin-left: 0.3680555556vw;
  color: #1C1C1C;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-performance .bottom-photo {
  position: absolute;
  top: 22.5694444444vw;
  left: 7.1527777778vw;
  width: 42.3125vw;
}
.p-performance .bottom-photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .p-performance .inner {
    flex-direction: column;
    padding: 56px 20px 0;
  }
  .p-performance .col-left {
    width: auto;
    margin-left: 0;
  }
  .p-performance .section-heading h3 {
    font-size: 12px;
  }
  .p-performance .section-heading h2 {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.06em;
    white-space: normal;
  }
  .p-performance .col-right {
    margin-top: 24px;
  }
  .p-performance .spec-tags {
    gap: 8px;
    width: auto;
  }
  .p-performance .spec-tags::before, .p-performance .spec-tags::after {
    display: none;
  }
  .p-performance .spec-tags li,
  .p-performance .spec-tags li:nth-child(n+4),
  .p-performance .spec-tags li:nth-child(n+7) {
    order: 0;
    margin-top: 0;
  }
  .p-performance .spec-tags li {
    padding-inline: 10px;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.02em;
  }
  .p-performance .col-right p {
    margin-top: 16px;
    margin-left: 0;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-performance .bottom-photo {
    position: static;
    width: 86%;
    margin-top: 32px;
    margin-bottom: -4%;
  }
}

.p-price {
  background-image: linear-gradient(90deg, var(--brown) 0%, var(--black) 50%, var(--brown) 100%);
}
.p-price .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 8.6180555556vw;
  padding-bottom: 6.2222222222vw;
}
.p-price .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 11.7430555556vw;
  padding-right: 11.3680555556vw;
}
.p-price .section-heading h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-price .section-heading h2 {
  margin-top: 1.3055555556vw;
  color: #fff;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.p-price .head > p {
  flex: none;
  width: 45.9027777778vw;
  margin-top: -0.2013888889vw;
  color: #fff;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.253;
  letter-spacing: 0.12em;
}
.p-price .price-table,
.p-price .memo {
  margin-left: 11.8263888889vw;
  margin-right: 11.3680555556vw;
  border: 1px solid #BABABA;
}
.p-price .price-table {
  display: flex;
  gap: 4.625vw;
  margin-top: 2.9375vw;
  padding: 5.0833333333vw 6.8472222222vw 0 6.2361111111vw;
  border-bottom: 0;
  border-radius: 1.0694444444vw 1.0694444444vw 0 0;
}
.p-price .col-left,
.p-price .col-right {
  flex: none;
  width: 29.4791666667vw;
}
.p-price .price-table h3 {
  padding-left: 0.5347222222vw;
  color: #BABABA;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.p-price table {
  width: 100%;
  margin-top: 1.6666666667vw;
  border-collapse: collapse;
  table-layout: fixed;
  color: #BABABA;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
}
.p-price tr {
  border-bottom: 1px solid #BABABA;
}
.p-price tr:first-child {
  border-top: 1px solid #BABABA;
  background-color: #363330;
}
.p-price tr:first-child th,
.p-price tr:first-child td {
  height: 3.2638888889vw;
  padding-bottom: 0;
  font-size: 15px;
}
.p-price th,
.p-price td {
  height: 3.6701388889vw;
  padding: 0 0 0.4861111111vw;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  vertical-align: middle;
}
.p-price th {
  width: 10.1388888889vw;
  padding-left: 2.7291666667vw;
}
.p-price td:nth-of-type(1) {
  width: 10.375vw;
}
.p-price td {
  font-size: 18px;
}
.p-price td em {
  margin-left: 0.8194444444vw;
  font-size: 15px;
  font-style: normal;
}
.p-price .memo {
  display: grid;
  grid-template-columns: 30.375vw 26.4583333333vw;
  padding: 2.6527777778vw 0 6.8611111111vw 8.4861111111vw;
  border-top: 0;
  border-radius: 0 0 1.0694444444vw 1.0694444444vw;
  color: #BABABA;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 2.238;
}
.p-price .memo li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-price .memo li::before {
  content: "※";
  margin-right: 0.23em;
}
.p-price .memo li:nth-child(2) {
  grid-column: 2;
  grid-row: 1/span 2;
}
.p-price .memo li:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
@media (max-width: 768px) {
  .p-price .container {
    padding-top: 64px;
    padding-bottom: 56px;
  }
  .p-price .head {
    display: block;
    padding-inline: 20px;
  }
  .p-price .section-heading h3 {
    font-size: 12px;
  }
  .p-price .section-heading h2 {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-price .head > p {
    width: auto;
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  .p-price .price-table,
  .p-price .memo {
    margin-inline: 16px;
  }
  .p-price .price-table {
    flex-direction: column;
    gap: 40px;
    margin-top: 32px;
    padding: 32px 16px 0;
    border-radius: 12px 12px 0 0;
  }
  .p-price .col-left,
  .p-price .col-right {
    width: auto;
  }
  .p-price .price-table h3 {
    padding-left: 0;
    font-size: 18px;
  }
  .p-price table {
    margin-top: 12px;
    font-size: 13px;
  }
  .p-price tr:first-child th,
  .p-price tr:first-child td {
    height: 40px;
    font-size: 12px;
  }
  .p-price th,
  .p-price td {
    height: 46px;
  }
  .p-price th {
    width: 26%;
    padding-left: 12px;
  }
  .p-price td:nth-of-type(1) {
    width: 37%;
  }
  .p-price td {
    font-size: 16px;
  }
  .p-price td em {
    margin-left: 4px;
    font-size: 12px;
  }
  .p-price .memo {
    display: block;
    padding: 24px 16px 32px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    line-height: 1.8;
  }
  .p-price .memo li + li {
    margin-top: 4px;
  }
}

.p-voice {
  background-image: linear-gradient(90deg, var(--brown) 0%, var(--black) 50%, var(--brown) 100%);
}
.p-voice .container {
  max-width: none;
  padding-inline: 0;
  padding-bottom: 7.4027777778vw;
}
.p-voice .inner {
  margin-left: 6.9166666667vw;
  padding: 7.6041666667vw 0 9.5694444444vw 8.8472222222vw;
  border-radius: 2.8055555556vw 0 0 2.8055555556vw;
  background-color: #fff;
}
.p-voice .section-heading {
  padding-left: 0.4375vw;
}
.p-voice .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-voice .section-heading h2 {
  margin-top: 1.3055555556vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.11em;
}
.p-voice article {
  display: flex;
  gap: 3.5833333333vw;
  margin-top: 3.6319444444vw;
}
.p-voice article + article {
  margin-top: 6.3611111111vw;
}
.p-voice .pic {
  flex: none;
  width: 15.0416666667vw;
}
.p-voice .pic img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice .txt {
  width: 59.375vw;
}
.p-voice .txt h3 {
  margin-top: 0.4305555556vw;
  color: #000;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-voice .txt p {
  color: #000;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2.123;
}
.p-voice .txt p + p {
  margin-top: 1.7951388889vw;
}
.p-voice .txt h3 + p {
  margin-top: 1.2638888889vw;
}
@media (max-width: 768px) {
  .p-voice .container {
    padding-bottom: 56px;
  }
  .p-voice .inner {
    margin-left: 16px;
    padding: 48px 20px 48px 24px;
    border-radius: 24px 0 0 24px;
  }
  .p-voice .section-heading {
    padding-left: 0;
  }
  .p-voice .section-heading h3 {
    font-size: 12px;
  }
  .p-voice .section-heading h2 {
    margin-top: 8px;
    font-size: 22px;
    letter-spacing: 0.06em;
  }
  .p-voice article {
    display: block;
    margin-top: 32px;
  }
  .p-voice article::after {
    content: "";
    display: block;
    clear: both;
  }
  .p-voice article + article {
    margin-top: 48px;
  }
  .p-voice .pic {
    float: left;
    width: 45%;
    margin: 4px 14px 8px 0;
  }
  .p-voice .txt {
    width: auto;
  }
  .p-voice .txt h3 {
    margin-top: 18px;
    font-size: 17px;
  }
  .p-voice .txt p {
    font-size: 13px;
    line-height: 2;
  }
  .p-voice .txt p + p {
    margin-top: 1em;
  }
  .p-voice .txt h3 + p {
    margin-top: 10px;
  }
}

.p-notice {
  background-color: #fff;
}
.p-notice .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 7.5694444444vw;
  padding-bottom: 0.2222222222vw;
}
.p-notice .inner {
  display: flex;
  align-items: flex-start;
  padding-left: 9.4861111111vw;
}
.p-notice .col-left {
  flex: none;
  width: 32.7222222222vw;
}
.p-notice .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-notice .section-heading h2 {
  margin-top: 1.9722222222vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.524;
  letter-spacing: 0.11em;
}
.p-notice .pic {
  width: 26.0069444444vw;
  margin-top: 3.1041666667vw;
}
.p-notice .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.p-notice .message {
  position: relative;
  width: 19.9930555556vw;
  margin-top: -5.2986111111vw;
  margin-left: 12.7291666667vw;
  padding: 1.2152777778vw 0 3.6388888889vw 1.5694444444vw;
  background-color: #fff;
}
.p-notice .message h4 {
  color: #262626;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.754;
  letter-spacing: 0.04em;
}
.p-notice .message .name {
  margin-top: 0.9930555556vw;
  margin-left: 1.2291666667vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.14em;
}
.p-notice .col-right {
  flex: none;
  width: 44.0069444444vw;
  margin-top: 0.3958333333vw;
  margin-left: 1.5625vw;
}
.p-notice article + article {
  margin-top: 2.3611111111vw;
}
.p-notice article h3 {
  padding-left: 1.1875vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-notice article h4 {
  margin-top: 0.75vw;
  padding: 0.9305555556vw 1.1111111111vw 1.1111111111vw 1.5vw;
  background-color: #F2F2F2;
  color: #171716;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-notice .container {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .p-notice .inner {
    flex-direction: column;
    padding-inline: 20px;
  }
  .p-notice .col-left,
  .p-notice .col-right {
    width: auto;
  }
  .p-notice .section-heading h3 {
    font-size: 12px;
  }
  .p-notice .section-heading h2 {
    margin-top: 12px;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .p-notice .pic {
    width: 78%;
    margin-top: 28px;
  }
  .p-notice .message {
    width: 67%;
    margin-top: -48px;
    margin-left: auto;
    padding: 14px 0 0 18px;
  }
  .p-notice .message h4 {
    font-size: 15px;
    line-height: 1.8;
  }
  .p-notice .message .name {
    margin-top: 10px;
    margin-left: 0;
    font-size: 12px;
  }
  .p-notice .col-right {
    margin-top: 40px;
    margin-left: 0;
  }
  .p-notice article + article {
    margin-top: 24px;
  }
  .p-notice article h3 {
    padding-left: 0;
    font-size: 15px;
    line-height: 1.6;
  }
  .p-notice article h4 {
    margin-top: 8px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.7;
  }
}

.p-outline {
  background-image: linear-gradient(90deg, var(--sand-light) 0%, var(--sand-dark) 100%);
}
.p-outline .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 4.3472222222vw;
  padding-bottom: 5.1944444444vw;
}
.p-outline .section-heading {
  text-align: center;
}
.p-outline .section-heading h3 {
  padding-left: 0.34em;
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-outline .section-heading h2 {
  margin-top: 1.2013888889vw;
  padding-left: 0.1em;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-outline .detail-table {
  width: 65.9722222222vw;
  margin-top: 2.6111111111vw;
  margin-left: 20.1666666667vw;
}
.p-outline .detail-table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #7D7D78;
}
.p-outline .detail-table th,
.p-outline .detail-table td {
  padding-top: 1.0555555556vw;
  padding-bottom: 1.2708333333vw;
  border-bottom: 1px solid #7D7D78;
  color: #000;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: top;
}
.p-outline .detail-table th {
  width: 13.7986111111vw;
  background-color: #EBEBEB;
  text-align: center;
}
.p-outline .detail-table td {
  padding-left: 3.0972222222vw;
  padding-right: 2.7777777778vw;
  background-color: #fff;
  text-align: left;
}
.p-outline .detail-table tr:first-child :is(th, td) {
  padding-top: 1.4305555556vw;
}
@media (max-width: 768px) {
  .p-outline .container {
    padding: 56px 20px;
  }
  .p-outline .section-heading h3 {
    font-size: 12px;
  }
  .p-outline .section-heading h2 {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-outline .detail-table {
    width: auto;
    margin-top: 28px;
    margin-left: 0;
  }
  .p-outline .detail-table th,
  .p-outline .detail-table td {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 13px;
    line-height: 1.7;
  }
  .p-outline .detail-table th {
    width: 92px;
    padding-inline: 6px;
  }
  .p-outline .detail-table td {
    padding-left: 14px;
    padding-right: 12px;
  }
  .p-outline .detail-table tr:first-child :is(th, td) {
    padding-top: 14px;
  }
}

.p-flow {
  background-color: #fff;
}
.p-flow .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 3.4236111111vw;
  padding-bottom: 4.8125vw;
}
.p-flow .section-heading {
  text-align: center;
}
.p-flow .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}
.p-flow .section-heading h2 {
  margin-top: 1.2013888889vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.p-flow .flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 23.4965277778vw);
  justify-content: center;
  margin-top: 2.4097222222vw;
}
.p-flow .flow-steps::before {
  content: "";
  position: absolute;
  top: 4.7222222222vw;
  left: 50%;
  width: 46.9930555556vw;
  height: 1px;
  background-color: #D6D6D6;
  transform: translateX(-50%);
}
.p-flow article {
  position: relative;
  text-align: center;
}
.p-flow .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.4444444444vw;
  height: 9.4444444444vw;
  margin-inline: auto;
  border-radius: 50%;
  background-color: #EBEBEB;
  color: #000;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}
.p-flow article h3 {
  margin-top: 1.3680555556vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-flow article p {
  margin-top: 0.8125vw;
  color: #000;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.723;
}
.p-flow .btn {
  margin-top: 4.1666666667vw;
  text-align: center;
}
.p-flow .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8958333333vw;
  width: 39.2361111111vw;
  height: 10.1388888889vw;
  margin-inline: auto;
  border: 3px solid transparent;
  border-radius: 6px;
  background-color: transparent;
  background-image: linear-gradient(#262626, #262626), conic-gradient(from var(--cta-angle), transparent 0 72%, #FFF6D0 100%), linear-gradient(135deg, #262626 0%, #F0E8B9 50%, #262626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box, border-box;
  animation: cta_border_run 3s linear infinite;
  color: #fff;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-decoration: none;
  transition: opacity var(--tr);
}
.p-flow .cta-button::before {
  content: "\f1d8";
  color: #E0E0E0;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-flow .cta-button:hover {
    opacity: 0.85;
  }
}
.p-flow .btn h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875vw;
  margin-top: 1.0069444444vw;
  color: #262626;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-flow .btn h3::before {
  content: "\f252";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .p-flow .container {
    padding: 56px 20px 56px;
  }
  .p-flow .section-heading h3 {
    font-size: 12px;
  }
  .p-flow .section-heading h2 {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-flow .flow-steps {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-top: 32px;
  }
  .p-flow .flow-steps::before {
    top: 36px;
    bottom: 36px;
    left: 36px;
    width: 1px;
    height: auto;
    transform: none;
  }
  .p-flow article {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto 1fr;
    -moz-column-gap: 18px;
         column-gap: 18px;
    text-align: left;
  }
  .p-flow .num {
    grid-row: 1/3;
    width: 72px;
    height: 72px;
    font-size: 22px;
  }
  .p-flow article h3 {
    align-self: end;
    margin-top: 4px;
    font-size: 16px;
  }
  .p-flow article p {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.7;
  }
  .p-flow article p br {
    display: none;
  }
  .p-flow .btn {
    margin-top: 36px;
  }
  .p-flow .cta-button {
    gap: 14px;
    width: 100%;
    height: 72px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }
  .p-flow .cta-button::before {
    font-size: 18px;
  }
  .p-flow .btn h3 {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
  }
  .p-flow .btn h3::before {
    font-size: 12px;
  }
}

.p-faq {
  background-image: linear-gradient(90deg, var(--sand-light) 0%, var(--sand-dark) 100%);
}
.p-faq .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 5.1388888889vw;
  padding-bottom: 5.2083333333vw;
}
.p-faq .inner {
  display: flex;
  align-items: flex-start;
}
.p-faq .head {
  flex: none;
  width: 33.125vw;
  margin-top: 1.2986111111vw;
  padding-left: 9.3958333333vw;
}
.p-faq .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
}
.p-faq .section-heading h2 {
  margin-top: 1.9930555556vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-faq .faq-items {
  flex: none;
  width: 58.1944444444vw;
  padding: 1.8194444444vw 3.8125vw 2.0972222222vw 3.7569444444vw;
  border-radius: 0.6944444444vw;
  background-image: linear-gradient(90deg, #FFFCF8 0%, #FFFFFF 100%);
}
.p-faq article {
  padding: 2.2083333333vw 0 2.5625vw;
}
.p-faq article + article {
  border-top: 1px solid #7D7D78;
}
.p-faq .q {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .p-faq .q:hover h3 {
    opacity: 0.7;
  }
}
.p-faq .q:focus-visible {
  outline: 2px solid #8A4D41;
  outline-offset: 4px;
}
.p-faq .q h3 {
  position: relative;
  padding-left: 3.8958333333vw;
  padding-right: 2.7777777778vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity var(--tr);
}
.p-faq .q h3::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 1.0416666667vw;
  color: #8A4D41;
}
.p-faq .q h3::after {
  content: "\f067";
  position: absolute;
  top: 50%;
  right: 0;
  color: #8A4D41;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.35s ease;
}
.p-faq .a {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.p-faq article.is-open .q h3::after {
  transform: translateY(-50%) rotate(45deg);
}
.p-faq .a p {
  margin-top: 2.2152777778vw;
  padding-left: 3.9166666667vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.641;
  margin-bottom: 0.3611111111vw;
}
@media (max-width: 768px) {
  .p-faq .container {
    padding: 56px 20px;
  }
  .p-faq .inner {
    display: block;
  }
  .p-faq .head {
    width: auto;
    margin-top: 0;
    padding-left: 0;
  }
  .p-faq .section-heading h3 {
    font-size: 12px;
  }
  .p-faq .section-heading h2 {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-faq .faq-items {
    width: auto;
    margin: 24px 0 0;
    padding: 8px 20px;
    border-radius: 8px;
  }
  .p-faq article {
    padding: 20px 0;
  }
  .p-faq .q h3 {
    padding-left: 28px;
    padding-right: 28px;
    font-size: 15px;
  }
  .p-faq .q h3::before {
    left: 2px;
  }
  .p-faq .q h3::after {
    font-size: 13px;
  }
  .p-faq .a p {
    margin-top: 10px;
    padding-left: 28px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
  }
  .p-faq .a p br {
    display: none;
  }
}

.p-reserve {
  background-color: #fff;
}
.p-reserve .container {
  max-width: none;
  padding-inline: 0;
  padding-top: 6.3263888889vw;
  padding-bottom: 4.6319444444vw;
}
.p-reserve .head {
  text-align: center;
}
.p-reserve .head p {
  color: #171716;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}
.p-reserve .head .section-heading + p {
  margin-top: 1.6527777778vw;
}
.p-reserve .head a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1736111111vw;
}
@media (hover: hover) and (pointer: fine) {
  .p-reserve .head a:hover {
    text-decoration: none;
  }
}
.p-reserve .section-heading h3 {
  color: #878787;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}
.p-reserve .section-heading h2 {
  margin-top: 2.1111111111vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}
.p-reserve .form-wrap {
  width: min(100%, max(45.2986111111vw, 660px));
  margin-top: 2.4027777778vw;
  margin-inline: auto;
}
.p-reserve .row {
  display: grid;
  grid-template-columns: max(9.5vw, 145px) max(4.9722222222vw, 72px) minmax(0, 1fr);
  align-items: start;
  padding-block: 1.3888888889vw;
  border-bottom: 1px solid #DDD9D2;
}
.p-reserve .row:first-of-type {
  border-top: 1px solid #DDD9D2;
}
.p-reserve .label {
  padding-top: 1.4583333333vw;
  padding-right: 1.0972222222vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}
.p-reserve .req,
.p-reserve .any {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1388888889vw;
  height: 2.2152777778vw;
  margin-top: 1.3194444444vw;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1;
}
.p-reserve .req {
  background-color: #615340;
  color: #FFFFF4;
}
.p-reserve .any {
  border: 1px solid #B5AFA4;
  background-color: #fff;
  color: #615340;
}
.p-reserve input[type=text],
.p-reserve input[type=email],
.p-reserve input[type=tel],
.p-reserve input[type=date],
.p-reserve select,
.p-reserve textarea {
  width: 100%;
  padding: 0 1.1111111111vw;
  border: 1px solid #171716;
  border-radius: 3px;
  background-color: #fff;
  color: #171716;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}
.p-reserve input[type=text],
.p-reserve input[type=email],
.p-reserve input[type=tel],
.p-reserve input[type=date],
.p-reserve select {
  height: 4.7222222222vw;
}
.p-reserve select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #171716 50%), linear-gradient(135deg, #171716 50%, transparent 50%);
  background-position: right max(1.5277777778vw, 22px) center, right max(1.1111111111vw, 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: max(2.7777777778vw, 40px);
}
.p-reserve textarea {
  min-height: 10.0833333333vw;
  padding: 1.1111111111vw;
  resize: vertical;
}
.p-reserve .is-required input,
.p-reserve .is-required select,
.p-reserve .is-required textarea {
  background-color: #FCF7EF;
}
.p-reserve .is-required select {
  background-color: #FCF7EF;
  background-image: linear-gradient(45deg, transparent 50%, #171716 50%), linear-gradient(135deg, #171716 50%, transparent 50%);
}
.p-reserve .field-datetime {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max(10.4166666667vw, 158px);
  gap: 0.8333333333vw;
}
.p-reserve input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.p-reserve input[type=date]::-webkit-date-and-time-value {
  flex: 1;
  min-width: 0;
  margin: 0;
  text-align: left;
}
.p-reserve input[type=date]::-webkit-datetime-edit {
  width: 100%;
  overflow: hidden;
}
.p-reserve input[type=date]::-webkit-calendar-picker-indicator {
  flex: none;
  margin-left: auto;
}
.p-reserve .contact-fields {
  display: grid;
  gap: 0.8333333333vw;
}
.p-reserve .contact-fields .line {
  display: grid;
  grid-template-columns: max(8.1944444444vw, 118px) minmax(0, 1fr);
  align-items: center;
  gap: 0.8333333333vw;
}
.p-reserve .contact-fields label {
  color: #171716;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
}
.p-reserve ::-moz-placeholder {
  color: #A8A29A;
  opacity: 1;
}
.p-reserve ::placeholder {
  color: #A8A29A;
  opacity: 1;
}
.p-reserve .field .note {
  margin-top: 0.5555555556vw;
  color: #615340;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
.p-reserve .field .error {
  margin-top: 0.5555555556vw;
  color: #B3261E;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
.p-reserve .is-error {
  border-color: #B3261E;
  background-color: #FFF6F5;
}
.p-reserve .row-checks .label {
  padding-top: 0.2777777778vw;
}
.p-reserve .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6944444444vw 1.1111111111vw;
}
.p-reserve .checks label {
  display: flex;
  align-items: center;
  gap: 0.5555555556vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
}
.p-reserve .checks li:first-child {
  grid-column: 1/-1;
}
.p-reserve .checks input {
  flex: none;
  width: 1.25vw;
  height: 1.25vw;
  accent-color: #615340;
}
.p-reserve .agree {
  margin-top: 2.3611111111vw;
  padding: 1.6666666667vw;
  border: 1px solid #DDD9D2;
  border-radius: 4px;
  background-color: #FCF7EF;
  text-align: center;
}
.p-reserve .agree label {
  display: inline-flex;
  align-items: center;
  gap: 0.8333333333vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.p-reserve .agree input {
  width: 1.5277777778vw;
  height: 1.5277777778vw;
  accent-color: #615340;
}
.p-reserve .agree a {
  text-decoration: underline;
}
.p-reserve .agree.is-error {
  border-color: #B3261E;
  background-color: #FFF6F5;
  color: #B3261E;
}
.p-reserve .submit {
  margin-top: 2.7777777778vw;
  text-align: center;
}
.p-reserve .submit button {
  position: relative;
  width: min(100%, max(33.3333333333vw, 400px));
  height: max(7.2222222222vw, 76px);
  border-radius: 0.8333333333vw;
  background-color: #000;
  color: #fff;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity var(--tr);
}
.p-reserve .submit button::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 1.9444444444vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .p-reserve .submit button:hover {
    opacity: 0.8;
  }
}
.p-reserve .submit-note {
  margin-top: 0.9027777778vw;
  color: #000;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
.p-reserve .hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.p-reserve .tel-block {
  margin-top: 5.5555555556vw;
  padding: 2.5vw 1.6666666667vw 2.2222222222vw;
  border: 1px solid #DDD9D2;
  border-radius: 4px;
  text-align: center;
}
.p-reserve .tel-block h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9722222222vw;
  color: #000;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-reserve .tel-block h3::before {
  content: "\f095";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #171716;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
}
.p-reserve .tel-block .tel-items {
  display: flex;
  justify-content: center;
  gap: 5vw;
  margin-top: 1.6666666667vw;
  list-style: none;
}
.p-reserve .tel-block .place {
  color: #615340;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-reserve .tel-block a {
  display: inline-block;
  margin-top: 0.2777777778vw;
  color: #000;
  font-family: var(--num);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-reserve .tel-block a:hover {
    opacity: 0.7;
  }
}
.p-reserve .tel-block .time {
  margin-top: 0.2777777778vw;
  color: #615340;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
.p-reserve .tel-block .tel-note {
  margin-top: 1.3888888889vw;
  color: #615340;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-reserve .container {
    padding: 56px 20px 48px;
  }
  .p-reserve .section-heading h3 {
    font-size: 12px;
  }
  .p-reserve .section-heading h2 {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-reserve .head p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
  .p-reserve .head .section-heading + p {
    margin-top: 16px;
  }
  .p-reserve .head a {
    text-underline-offset: 2px;
  }
  .p-reserve .form-wrap {
    width: auto;
    margin-top: 28px;
    margin-inline: 0;
  }
  .p-reserve .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding-block: 18px;
  }
  .p-reserve .label {
    display: block;
    padding: 0 0 6px;
    font-size: 14px;
    text-align: left;
    white-space: normal;
  }
  .p-reserve .label br {
    display: none;
  }
  .p-reserve .badge {
    padding-bottom: 6px;
  }
  .p-reserve .field {
    flex: 1 0 100%;
    min-width: 0;
  }
  .p-reserve .req,
  .p-reserve .any {
    width: 48px;
    height: 24px;
    margin-top: 0;
    font-size: 12px;
  }
  .p-reserve input[type=text],
  .p-reserve input[type=email],
  .p-reserve input[type=tel],
  .p-reserve input[type=date],
  .p-reserve select {
    height: 52px;
    font-size: 16px;
    padding: 0 12px;
  }
  .p-reserve select {
    padding-right: 32px;
    background-position: right 18px center, right 12px center;
  }
  .p-reserve textarea {
    min-height: 120px;
    padding: 12px;
    font-size: 16px;
  }
  .p-reserve .field-datetime {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .p-reserve .contact-fields {
    gap: 14px;
  }
  .p-reserve .contact-fields .line {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .p-reserve .contact-fields label {
    font-size: 13px;
  }
  .p-reserve .field .note,
  .p-reserve .field .error {
    margin-top: 6px;
    font-size: 12px;
  }
  .p-reserve .checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-reserve .checks label {
    font-size: 14px;
    gap: 8px;
    white-space: normal;
  }
  .p-reserve .checks input {
    width: 18px;
    height: 18px;
  }
  .p-reserve .agree {
    margin-top: 24px;
    padding: 16px;
    text-align: left;
  }
  .p-reserve .agree label {
    font-size: 14px;
    gap: 10px;
    align-items: flex-start;
  }
  .p-reserve .agree input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .p-reserve .submit {
    margin-top: 24px;
  }
  .p-reserve .submit button {
    width: 100%;
    height: 68px;
    border-radius: 10px;
    font-size: 17px;
  }
  .p-reserve .submit button::after {
    right: 16px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .p-reserve .submit-note {
    margin-top: 10px;
    font-size: 12px;
  }
  .p-reserve .tel-block {
    margin-top: 40px;
    padding: 24px 16px;
  }
  .p-reserve .tel-block h3 {
    gap: 10px;
    font-size: 14px;
  }
  .p-reserve .tel-block h3::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .p-reserve .tel-block .tel-items {
    display: block;
    margin-top: 18px;
  }
  .p-reserve .tel-block .tel-items li + li {
    margin-top: 18px;
  }
  .p-reserve .tel-block .place {
    font-size: 12px;
  }
  .p-reserve .tel-block a {
    margin-top: 2px;
    font-size: 30px;
  }
  .p-reserve .tel-block .time {
    margin-top: 2px;
    font-size: 12px;
  }
  .p-reserve .tel-block .tel-note {
    margin-top: 16px;
    font-size: 12px;
    text-align: left;
  }
}

.l-footer {
  background-color: #000;
  color: #fff;
}
.l-footer .container {
  max-width: none;
  padding-inline: 0;
}
.l-footer .col-left {
  display: flex;
  align-items: center;
  height: 13.4166666667vw;
  padding-left: 12.75vw;
  padding-right: 10.7638888889vw;
}
.l-footer .logo {
  flex: none;
  width: 3.7152777778vw;
}
.l-footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer .company {
  margin-left: 3.1944444444vw;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 2.054;
}
.l-footer .company .name {
  color: #fff;
}
.l-footer .company address {
  font-style: normal;
}
.l-footer .btn {
  margin-left: auto;
}
.l-footer .line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.9722222222vw;
  height: 5.7638888889vw;
  border-radius: 0.8333333333vw;
  background-image: linear-gradient(90deg, #F8C200 0%, #A4D40D 100%);
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--tr);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer .line-button:hover {
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .l-footer .col-left {
    flex-wrap: wrap;
    height: auto;
    padding: 32px 20px;
  }
  .l-footer .logo {
    width: 44px;
  }
  .l-footer .company {
    flex: 1;
    margin-left: 16px;
    font-size: 11px;
    line-height: 1.8;
  }
  .l-footer .btn {
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }
  .l-footer .line-button {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
  }
}

.p-fixed-cta {
  display: none;
}
@media (max-width: 768px) {
  .p-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: block;
    background-image: linear-gradient(90deg, #3C3529 0%, #2A2A28 45%, #171717 100%);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .p-fixed-cta.is-show {
    transform: translateY(0);
  }
  .p-fixed-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(90deg, transparent 0%, #FFF6D0 50%, transparent 100%), linear-gradient(#ABA583, #ABA583);
    background-size: 40% 100%, 100% 100%;
    background-repeat: no-repeat;
    animation: fixed_cta_line 3s linear infinite;
  }
  .p-fixed-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 62px;
    color: #fff;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
  }
  .p-fixed-cta a::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
  }
}

@keyframes fixed_cta_line {
  from {
    background-position: -40% 0, 0 0;
  }
  to {
    background-position: 140% 0, 0 0;
  }
}
.p-complete {
  min-height: 100vh;
  padding: 5.5555555556vw 0 4.1666666667vw;
  background-color: #FCF7EF;
}
.p-complete .container {
  max-width: none;
  padding-inline: 0;
}
.p-complete .inner {
  width: min(92%, 720px);
  margin-inline: auto;
  padding: 3.8888888889vw 3.3333333333vw 3.3333333333vw;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
}
.p-complete .brand {
  color: #615340;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
}
.p-complete h1 {
  margin-top: 2.5vw;
  color: #262626;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.p-complete .lead {
  margin-top: 1.6666666667vw;
  color: #171716;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
}
.p-complete .lead strong {
  font-weight: 700;
}
.p-complete .note {
  margin-top: 1.9444444444vw;
  padding: 1.25vw 1.3888888889vw;
  border: 1px solid #DDD9D2;
  border-radius: 4px;
  background-color: #FCF7EF;
}
.p-complete .note p {
  color: #615340;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
}
.p-complete .tel-block {
  margin-top: 2.7777777778vw;
  padding-top: 2.2222222222vw;
  border-top: 1px solid #DDD9D2;
}
.p-complete .tel-block h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #000;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.p-complete .tel-block h2::before {
  content: "\f095";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #171716;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}
.p-complete .tel-block .tel-items {
  display: flex;
  justify-content: center;
  gap: 4.1666666667vw;
  margin-top: 1.3888888889vw;
  list-style: none;
}
.p-complete .tel-block .place {
  color: #615340;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
.p-complete .tel-block a {
  display: inline-block;
  margin-top: 4px;
  color: #000;
  font-family: var(--num);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-complete .tel-block a:hover {
    opacity: 0.7;
  }
}
.p-complete .tel-block .time {
  margin-top: 4px;
  color: #615340;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
}
.p-complete .back {
  margin-top: 2.7777777778vw;
}
.p-complete .back a {
  color: #615340;
  font-family: var(--sans);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .p-complete .back a:hover {
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .p-complete {
    min-height: 0;
    padding: 40px 16px 48px;
  }
  .p-complete .inner {
    width: auto;
    padding: 36px 20px 32px;
  }
  .p-complete .brand {
    font-size: 13px;
  }
  .p-complete h1 {
    margin-top: 24px;
    font-size: 22px;
  }
  .p-complete .lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
  .p-complete .note {
    margin-top: 20px;
    padding: 14px 16px;
    text-align: left;
  }
  .p-complete .note p {
    font-size: 12px;
  }
  .p-complete .tel-block {
    margin-top: 28px;
    padding-top: 24px;
  }
  .p-complete .tel-block h2 {
    gap: 10px;
    font-size: 14px;
  }
  .p-complete .tel-block h2::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .p-complete .tel-block .tel-items {
    display: block;
    margin-top: 18px;
  }
  .p-complete .tel-block .tel-items li + li {
    margin-top: 18px;
  }
  .p-complete .tel-block .place {
    font-size: 12px;
  }
  .p-complete .tel-block a {
    font-size: 28px;
  }
  .p-complete .tel-block .time {
    font-size: 12px;
  }
  .p-complete .back {
    margin-top: 28px;
  }
}
