@charset "UTF-8";
/* デザイントークン — 監査とブラウザ上書きの単一参照源として定義 */
:root {
  --color-text: #4a4241;
  --color-bg: #faf9f6;
  --color-primary: #7e6b80;
  --font-heading: "Zen Old Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --text-body: clamp(1rem, 0.5vw + 0.875rem, 1.0625rem);
  --text-h2: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
}

/* 前庭に配慮 — 動きに弱い利用者向けにトランジションを実質無効化 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

footer ul,
footer ol {
  padding: 0;
}

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

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

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

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

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

/* スキップリンク — キーボード利用者が本文へ直行できるようにするため */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.65rem 1.35rem;
  background-color: #FFFFFF;
  color: #7E6B80;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid #E2D5E3;
}
.skip-link:focus-visible {
  left: 1rem;
  top: 86px;
  outline: 2px solid #E1BEBA;
  outline-offset: 2px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4A4241;
  background-color: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.js-hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.js-hover-lift:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ヘッダー — スクロール中もナビの入口を固定し迷子を防ぐため */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2D5E3;
  transition: all 0.3s ease;
}
.l-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    padding: 0 32px;
  }
}
.l-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.l-header__logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.l-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}
.l-header__logo-link:hover {
  opacity: 0.85;
}
.l-header__logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .l-header__logo-img {
    height: 48px;
  }
}
.l-header__logo-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #7E6B80;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    font-size: 1.2rem;
  }
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav.md-flex {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}
.l-header__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.l-header__nav-link {
  position: relative;
  color: #4A4241;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #E1BEBA;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-header__nav-link:hover {
  color: #C8948D;
}
.l-header__nav-link:hover::after {
  width: 100%;
  left: 0;
}
.l-header__cta {
  margin-left: auto;
}
.l-header__sp-btn {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__sp-btn {
    display: none;
  }
}
.l-header__hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  color: #7E6B80;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.3s ease;
}
.l-header__hamburger:hover, .l-header__hamburger:focus-visible {
  background-color: #F0EAF1;
}
.l-header__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  transform-origin: center;
}
.l-header__hamburger.is-active {
  color: #A97068;
}
.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.l-header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .l-header__overlay {
    display: none;
  }
}
.l-header__drawer {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #FAF9F6;
  border-bottom: 1px solid #E2D5E3;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, visibility 0.35s ease;
}
.l-header__drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .l-header__drawer {
    display: none !important;
  }
}
.l-header__drawer-inner {
  padding: 12px 20px 28px;
}
.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.l-header__drawer-item {
  opacity: 0;
  transform: translateY(-8px);
}
.l-header__drawer.is-open .l-header__drawer-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(1) {
  transition-delay: 0.06s;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(2) {
  transition-delay: 0.12s;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(3) {
  transition-delay: 0.18s;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(4) {
  transition-delay: 0.24s;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(5) {
  transition-delay: 0.3s;
}
.l-header__drawer.is-open .l-header__drawer-item:nth-child(6) {
  transition-delay: 0.36s;
}
.l-header__drawer-link {
  display: block;
  padding: 14px 12px;
  text-align: center;
  color: #4A4241;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.l-header__drawer-link:hover, .l-header__drawer-link:focus-visible {
  color: #A97068;
  background-color: #F0EAF1;
}
.l-header__drawer-cta {
  padding-top: 20px;
  opacity: 0;
  transform: translateY(-8px);
}
.l-header__drawer.is-open .l-header__drawer-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease 0.35s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

body.is-drawer-open {
  overflow: hidden;
}

.l-main {
  padding-top: 80px;
}

.l-footer {
  background: linear-gradient(rgba(240, 234, 241, 0.88), rgba(240, 234, 241, 0.92)), url("../images/bg-soft-mandala.svg");
  background-size: cover;
  background-position: center bottom;
  margin-top: 96px;
}
.l-footer__instagram {
  padding: 64px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)), url("../images/ornament-lotus.svg") no-repeat right -160px center/420px auto, #FFFFFF;
}
.l-footer__instagram-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__instagram-inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__instagram-inner {
    padding: 0 32px;
  }
}
.l-footer__instagram-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #7E6B80;
  margin-bottom: 16px;
}
.l-footer__instagram-desc {
  color: #4A4241;
  margin-bottom: 40px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.l-footer__instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.l-footer__instagram-item {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  background-color: #FAF9F6;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.l-footer__instagram-item:hover .l-footer__instagram-overlay {
  background-color: rgba(126, 107, 128, 0.2);
}
.l-footer__instagram-item:hover .l-footer__instagram-overlay svg {
  opacity: 1;
}
.l-footer__instagram-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(126, 107, 128, 0);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__instagram-overlay svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-footer__instagram-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  color: transparent;
}
.l-footer__instagram-link-wrapper {
  margin-top: 32px;
}
.l-footer__instagram-link {
  display: inline-flex;
  align-items: center;
  color: #7E6B80;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.l-footer__instagram-link:hover {
  color: #C8948D;
}
.l-footer__instagram-link svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}
.l-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__main {
    padding: 64px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__main {
    padding: 64px 32px;
  }
}
.l-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .l-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}
.l-footer__logo-link:hover {
  opacity: 0.85;
}
.l-footer__logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}
.l-footer__logo-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #7E6B80;
}
.l-footer__brand-desc {
  font-size: 0.875rem;
  color: #4A4241;
  line-height: 1.625;
  max-width: 320px;
}
.l-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-footer__nav-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  color: #7E6B80;
  letter-spacing: 0.1em;
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.l-footer__nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #4A4241;
  transition: color 0.3s ease;
}
.l-footer__nav-link:hover {
  color: #C8948D;
}
.l-footer__copyright {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(226, 213, 227, 0.5);
  text-align: center;
}
.l-footer__copyright p {
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.7);
  letter-spacing: 0.1em;
}

/* CTA — 操作の主従を明確にするためボタン形状を統一 */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.c-button:hover {
  transform: translateY(-3px) scale(1.03);
}
.c-button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}
.c-button--primary {
  background-color: #B5A5B6;
  color: #FFFFFF;
}
.c-button--primary:hover {
  background-color: #7E6B80;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(126, 107, 128, 0.25);
}
.c-button--outline {
  background-color: #FFFFFF;
  color: #7E6B80;
  border-color: #E2D5E3;
}
.c-button--outline:hover {
  background-color: #F0EAF1;
  border-color: #D4C4D7;
  box-shadow: 0 8px 20px rgba(181, 165, 182, 0.15);
}
.c-button--small {
  padding: 8px 24px;
  font-size: 0.875rem;
}
.c-button--large {
  padding: 16px 40px;
  font-size: 1rem;
}
.c-button--full {
  width: 100%;
  padding: 12px 16px;
}

.c-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.c-section-header__subtitle {
  color: #C8948D;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.c-section-header__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #7E6B80;
  letter-spacing: 0.1em;
}
.c-section-header__desc {
  margin-top: 16px;
  color: rgba(74, 66, 65, 0.7);
  letter-spacing: 0.05em;
}

.c-page-header {
  position: relative;
  background-color: #F0EAF1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.c-page-header__bg-layer {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 249, 246, 0.5);
  z-index: 1;
}
.c-page-header__shape-top {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 192px;
  height: 192px;
  background-color: #F2DFDD;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  z-index: 2;
}
.c-page-header__shape-bottom {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 192px;
  height: 192px;
  background-color: #E2D5E3;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  z-index: 2;
}
.c-page-header__inner {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .c-page-header__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .c-page-header__inner {
    padding: 0 32px;
  }
}
.c-page-header__subtitle {
  color: #C8948D;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.c-page-header__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #7E6B80;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .c-page-header__title {
    font-size: 3rem;
  }
}
.c-page-header__line {
  width: 64px;
  height: 1px;
  background-color: #E1BEBA;
  margin: 0 auto;
}

.p-top-hero {
  position: relative;
  padding: 0 0 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)), url("../images/bg-concept-lead.png") center/cover;
}
.p-top-hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(126, 107, 128, 0.14);
}
.p-top-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0.75) 80%, rgba(255, 255, 255, 0.92) 100%);
  pointer-events: none;
}
.p-top-hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.p-top-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(20px, 3.5vw, 56px) clamp(16px, 3.5vw, 56px) 0;
  pointer-events: none;
}
.p-top-hero__title-wrap {
  width: min(58%, 580px);
  margin-bottom: auto;
}
.p-top-hero__title-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(80, 50, 70, 0.25));
}
.p-top-hero__bottom {
  width: min(80%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(20px, 4vw, 56px);
}
.p-top-hero__subtitle {
  color: #3a2833;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.95rem, 1.7vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(14px, 2vw, 32px);
}
.p-top-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 23vw, 280px);
  min-height: clamp(42px, 5vw, 64px);
  padding: clamp(10px, 1vw, 14px) clamp(22px, 3vw, 42px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #c69491 0%, #b37d7a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 24px rgba(169, 112, 104, 0.3);
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.95rem, 1.35vw, 1.4rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.2s ease;
  pointer-events: auto;
}
.p-top-hero__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 16px 28px rgba(169, 112, 104, 0.35);
  filter: brightness(1.04);
}
@media screen and (max-width: 768px) {
  .p-top-hero {
    padding: 0 0 24px;
  }
  .p-top-hero__content {
    padding: 16px 12px 0;
  }
  .p-top-hero__title-wrap {
    width: min(65%, 420px);
  }
  .p-top-hero__bottom {
    width: min(88%, 520px);
    padding-bottom: clamp(14px, 3vw, 32px);
  }
  .p-top-hero__subtitle {
    font-size: clamp(0.7rem, 2.4vw, 0.95rem);
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

/* コンセプトリード — 旧診断枠の視覚資産を活かし本文へ誘導するため */
.p-top-concept-lead {
  padding: 96px 0;
  background: url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center;
}
.p-top-concept-lead__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-top-concept-lead__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-concept-lead__inner {
    padding: 0 32px;
  }
}
.p-top-concept-lead__box {
  background-color: #FFFFFF;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(126, 107, 128, 0.05);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-concept-lead__box {
    padding: 64px;
  }
}
.p-top-concept-lead__shape-tr {
  position: absolute;
  top: -96px;
  right: -96px;
  width: 192px;
  height: 192px;
  background-color: #F2DFDD;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}
.p-top-concept-lead__shape-bl {
  position: absolute;
  bottom: -96px;
  left: -96px;
  width: 192px;
  height: 192px;
  background-color: #E2D5E3;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}
.p-top-concept-lead__content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.p-top-concept-lead__eyebrow {
  color: #C8948D;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.p-top-concept-lead__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #7E6B80;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-concept-lead__title {
    font-size: 2.25rem;
  }
}
.p-top-concept-lead__body {
  max-width: 65ch;
  margin: 0 auto 28px;
  text-align: left;
  color: #4A4241;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-top-concept-lead__body p + p {
  margin-top: 1em;
}
.p-top-concept-lead__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #A97068;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
  border-bottom: 1px solid #E1BEBA;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.p-top-concept-lead__next:hover {
  color: #8A524A;
  border-color: #A97068;
}
.p-top-concept-lead__next:focus-visible {
  outline: 2px solid #E1BEBA;
  outline-offset: 4px;
}

.p-top-concept {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)), url("../images/ornament-lotus.svg") no-repeat right -120px top 40px/420px auto, #FFFFFF;
}
.p-top-concept__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-top-concept__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-concept__inner {
    padding: 0 32px;
  }
}
.p-top-concept__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .p-top-concept__wrapper {
    flex-direction: row;
  }
}
.p-top-concept__image-side {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-concept__image-side {
    width: 50%;
  }
}
.p-top-concept__image-box {
  aspect-ratio: 4/5;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
}
.p-top-concept__image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 213, 227, 0.5), rgba(242, 223, 221, 0.5));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.p-top-concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(0.85) contrast(0.95);
}
.p-top-concept__shape-circle {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 160px;
  height: 160px;
  background-color: #F2DFDD;
  border-radius: 50%;
  z-index: -10;
}
.p-top-concept__shape-outline {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 128px;
  height: 128px;
  border: 1px solid #E2D5E3;
  border-radius: 50%;
  z-index: -10;
}
.p-top-concept__text-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-concept__text-side {
    width: 50%;
  }
}
.p-top-concept__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #7E6B80;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-top-concept__title {
    font-size: 2.25rem;
  }
}
.p-top-concept__title span {
  color: #A97068;
}
.p-top-concept__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-top-concept__link {
  display: inline-flex;
  align-items: center;
  color: #A97068;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #E1BEBA;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}
.p-top-concept__link:hover {
  color: #8A524A;
  border-color: #A97068;
}
.p-top-concept__link svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

.p-top-profile {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.85)), url("../images/bg-concept-lead.png") center/cover;
  background-position: center;
}
.p-top-profile__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-top-profile__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-profile__inner {
    padding: 0 32px;
  }
}
.p-top-profile__card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #F0EAF1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-top-profile__card {
    padding: 48px;
    flex-direction: row;
  }
}
.p-top-profile__image-box {
  width: 192px;
  height: 192px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FAF9F6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}
.p-top-profile__image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 213, 227, 0.5), rgba(242, 223, 221, 0.5));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top-profile__image-box {
    width: 256px;
    height: 256px;
  }
}
.p-top-profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(0.85) contrast(0.95);
}
.p-top-profile__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-profile__content {
    text-align: left;
  }
}
.p-top-profile__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  color: #4A4241;
  letter-spacing: 0.1em;
}
.p-top-profile__name span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  color: #C8948D;
  margin-left: 16px;
}
.p-top-profile__desc {
  color: rgba(74, 66, 65, 0.8);
  line-height: 1.625;
  letter-spacing: 0.05em;
  text-wrap: balance;
}
.p-top-profile__btn-wrapper {
  padding-top: 16px;
}

.p-top-service {
  padding: 96px 0;
  background: url("../images/bg-service.png");
  background-size: cover;
  background-position: center;
}
.p-top-service__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-top-service__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-service__inner {
    padding: 0 32px;
  }
}
.p-top-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 0 auto 64px;
  max-width: 896px;
}
@media screen and (min-width: 768px) {
  .p-top-service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-top-service__card {
  background-color: #FAF9F6;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #F0EAF1;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.p-top-service__card:hover {
  border-color: #E2D5E3;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.p-top-service__card:hover .p-top-service__card-shape-tr, .p-top-service__card:hover .p-top-service__card-shape-tl {
  opacity: 0.5;
}
.p-top-service__card-shape-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background-color: #F2DFDD;
  border-bottom-left-radius: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.p-top-service__card-shape-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 128px;
  height: 128px;
  background-color: #E2D5E3;
  border-bottom-right-radius: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.p-top-service__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #7E6B80;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
}
.p-top-service__card-price {
  color: #A97068;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}
.p-top-service__card-price span {
  font-size: 0.875rem;
  color: #4A4241;
  font-weight: 400;
}
.p-top-service__card-desc {
  color: rgba(74, 66, 65, 0.8);
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}
.p-top-service__cta {
  text-align: center;
}
.p-top-service__note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.6);
  letter-spacing: 0.05em;
}

.p-about-toc {
  padding: 48px 0;
  background: linear-gradient(rgba(250, 249, 246, 0.9), rgba(250, 249, 246, 0.92)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center top;
  border-bottom: 1px solid #F0EAF1;
}
.p-about-toc__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-toc__inner {
    padding: 0 24px;
  }
}
.p-about-toc__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  color: #7E6B80;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.p-about-toc__list {
  margin: 0;
  padding-left: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: disc;
}
.p-about-toc__list a {
  color: #B5A5B6;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.p-about-toc__list a:hover {
  color: #A97068;
  text-decoration: underline;
}

.p-about-concept {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)), url("../images/ornament-lotus.svg") no-repeat right -150px top 24px/480px auto, #FFFFFF;
  position: relative;
}
.p-about-concept__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-about-concept__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-concept__inner {
    padding: 0 32px;
  }
}
.p-about-concept__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  color: #4A4241;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-about-concept__title {
    font-size: 2.25rem;
  }
}
.p-about-concept__desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-about-concept__desc-wrapper {
    text-align: center;
  }
}
.p-about-concept__desc {
  margin: 0;
}
.p-about-concept__highlight {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #7E6B80;
  font-size: 1.25rem;
  margin-top: 32px;
}

.p-about-features {
  padding: 96px 0;
  background: linear-gradient(to bottom, rgba(250, 249, 246, 0.9), rgba(240, 234, 241, 0.72)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center;
}
.p-about-features__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-features__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-features__inner {
    padding: 0 32px;
  }
}
.p-about-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-about-features__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #F0EAF1;
  transition: box-shadow 0.3s ease;
}
.p-about-features__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.p-about-features__card-number {
  width: 64px;
  height: 64px;
  background-color: #F0EAF1;
  color: #7E6B80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.p-about-features__card-number span {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
}
.p-about-features__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #4A4241;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.p-about-features__card-desc {
  color: rgba(74, 66, 65, 0.8);
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-about-flow {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)), url("../images/ornament-lotus.svg") no-repeat left -150px center/420px auto, #FFFFFF;
}
.p-about-flow__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-flow__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-flow__inner {
    padding: 0 32px;
  }
}
.p-about-flow__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-about-flow__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 20px;
  transform: translateX(-1px);
  background: linear-gradient(to bottom, #F0EAF1, #F2DFDD, #F0EAF1);
}
@media screen and (min-width: 768px) {
  .p-about-flow__timeline::before {
    left: 50%;
  }
}
.p-about-flow__step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-about-flow__step {
    justify-content: flex-start;
  }
  .p-about-flow__step:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.p-about-flow__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  background-color: #E2D5E3;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  font-family: "Zen Old Mincho", serif;
  z-index: 10;
}
.p-about-flow__step-number--final {
  background-color: #C8948D;
}
@media screen and (min-width: 768px) {
  .p-about-flow__step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-about-flow__step-content {
  width: calc(100% - 64px);
  background-color: #FAF9F6;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #F0EAF1;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-about-flow__step-content--final {
  background-color: #FFFFFF;
  border: 2px solid #E1BEBA;
}
@media screen and (min-width: 768px) {
  .p-about-flow__step-content {
    width: calc(50% - 40px);
  }
}
.p-about-flow__step-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  color: #7E6B80;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.p-about-flow__step-title--final {
  color: #A97068;
}
.p-about-flow__step-desc {
  font-size: 0.875rem;
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
}
.p-about-flow__cta {
  text-align: center;
  margin-top: 64px;
}

.p-about-gods {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.93)), url("../images/ornament-lotus.svg") no-repeat right -160px bottom -120px/460px auto, #FFFFFF;
}
.p-about-gods__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-gods__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-gods__inner {
    padding: 0 32px;
  }
}
.p-about-gods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-about-gods__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.p-about-gods__card {
  background-color: #FAF9F6;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #F0EAF1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.p-about-gods__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(126, 107, 128, 0.1);
  border-color: #E2D5E3;
}
.p-about-gods__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2D5E3;
}
.p-about-gods__card-number {
  width: 36px;
  height: 36px;
  background-color: #E2D5E3;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.p-about-gods__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  color: #7E6B80;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-about-gods__card-title {
    font-size: 1.125rem;
  }
}
.p-about-gods__card-sub {
  font-size: 0.8em;
  color: #B5A5B6;
  font-weight: normal;
}
.p-about-gods__card-body {
  margin: 0;
}
.p-about-gods__card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 8px;
  font-size: 0.8125rem;
}
.p-about-gods__card-row:last-child {
  margin-bottom: 0;
}
.p-about-gods__card-row dt {
  color: #A97068;
  font-weight: 700;
  min-width: 4em;
}
.p-about-gods__card-row dd {
  margin: 0;
  color: rgba(74, 66, 65, 0.85);
  line-height: 1.5;
}

.p-about-guardian {
  padding: 96px 0;
  background: linear-gradient(to bottom, rgba(250, 249, 246, 0.9), rgba(240, 234, 241, 0.72)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center;
}
.p-about-guardian__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-guardian__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-guardian__inner {
    padding: 0 32px;
  }
}
.p-about-guardian__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-about-guardian__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.p-about-guardian__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #F0EAF1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.p-about-guardian__card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 14px 28px rgba(126, 107, 128, 0.12);
  border-color: #E2D5E3;
}
@media screen and (min-width: 1024px) {
  .p-about-guardian__card:nth-child(4), .p-about-guardian__card:nth-child(5) {
    grid-column: span 1;
  }
}
.p-about-guardian__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E2D5E3, #E1BEBA);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.p-about-guardian__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  color: #7E6B80;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.p-about-guardian__card-day {
  font-size: 0.875rem;
  color: #A97068;
  margin-bottom: 12px;
}
.p-about-guardian__card-desc {
  font-size: 0.875rem;
  color: rgba(74, 66, 65, 0.85);
  line-height: 1.75;
  margin: 0;
}

.p-about-divination {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)), url("../images/ornament-lotus.svg") no-repeat left -160px top 80px/440px auto, #FFFFFF;
}
.p-about-divination__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-divination__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-divination__inner {
    padding: 0 32px;
  }
}
.p-about-divination__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-about-divination__block {
  background-color: #FAF9F6;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #F0EAF1;
}
.p-about-divination__block-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #7E6B80;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2D5E3;
}
.p-about-divination__list {
  margin: 0;
  padding-left: 1.25em;
  color: rgba(74, 66, 65, 0.9);
  line-height: 2;
  letter-spacing: 0.03em;
}
.p-about-divination__list li {
  margin-bottom: 8px;
}
.p-about-divination__list li:last-child {
  margin-bottom: 0;
}
.p-about-divination__table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #F0EAF1;
}
.p-about-divination__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.p-about-divination__table th, .p-about-divination__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #F0EAF1;
}
.p-about-divination__table tr:last-child th,
.p-about-divination__table tr:last-child td {
  border-bottom: none;
}
.p-about-divination__table th {
  background-color: rgba(240, 234, 241, 0.5);
  color: #7E6B80;
  font-weight: 700;
  width: 40%;
}
.p-about-divination__table td {
  color: rgba(74, 66, 65, 0.9);
}

.p-about-lifeflow {
  padding: 96px 0;
  background: linear-gradient(to bottom, rgba(240, 234, 241, 0.72), rgba(250, 249, 246, 0.9)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center bottom;
}
.p-about-lifeflow__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-about-lifeflow__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-lifeflow__inner {
    padding: 0 32px;
  }
}
.p-about-lifeflow__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .p-about-lifeflow__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-about-lifeflow__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #F0EAF1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.p-about-lifeflow__card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: #E2D5E3;
  box-shadow: 0 12px 24px rgba(126, 107, 128, 0.1);
}
.p-about-lifeflow__card-label {
  display: inline-block;
  font-size: 0.75rem;
  color: #A97068;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 4px 12px;
  background-color: rgba(242, 223, 221, 0.8);
  border-radius: 20px;
}
.p-about-lifeflow__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  color: #7E6B80;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.p-about-lifeflow__card-desc {
  font-size: 0.875rem;
  color: rgba(74, 66, 65, 0.85);
  line-height: 1.75;
  margin: 0;
}

.p-profile {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)), url("../images/ornament-lotus.svg") no-repeat right -150px top 80px/430px auto, #FFFFFF;
  position: relative;
}
.p-profile__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-profile__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-profile__inner {
    padding: 0 32px;
  }
}
.p-profile__wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-profile__wrapper {
    flex-direction: row;
  }
}
.p-profile__image-side {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-profile__image-side {
    width: 41.666667%;
    position: sticky;
    top: 128px;
  }
}
.p-profile__image-box {
  position: relative;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3/4;
}
.p-profile__image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 213, 227, 0.5), rgba(242, 223, 221, 0.5));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.p-profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) saturate(0.85) contrast(0.95);
}
.p-profile__image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(126, 107, 128, 0.05);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.p-profile__shape-circle {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
  background-color: #F0EAF1;
  border-radius: 50%;
  z-index: -10;
}
.p-profile__shape-outline {
  position: absolute;
  top: 40px;
  left: -24px;
  width: 64px;
  height: 64px;
  border: 1px solid #E1BEBA;
  border-radius: 50%;
  z-index: -10;
}
.p-profile__text-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-profile__text-side {
    width: 58.333333%;
  }
}
.p-profile__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  color: #4A4241;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.p-profile__title {
  color: #A97068;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.p-profile__catchphrase {
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  font-family: "Zen Old Mincho", serif;
  font-style: italic;
  text-wrap: balance;
}
.p-profile__desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-profile__achievements {
  background-color: #FAF9F6;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #F0EAF1;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.p-profile__achievements-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background-color: #E2D5E3;
  border-bottom-left-radius: 100%;
  opacity: 0.2;
}
.p-profile__achievements-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #7E6B80;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.p-profile__achievements-title svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #C8948D;
}
.p-profile__achievements-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(74, 66, 65, 0.8);
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.p-profile__achievements-list li {
  display: flex;
  align-items: flex-start;
}
.p-profile__achievements-dot {
  width: 6px;
  height: 6px;
  background-color: #E1BEBA;
  border-radius: 50%;
  margin-top: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

.p-profile-voice {
  padding: 96px 0;
  background: linear-gradient(rgba(240, 234, 241, 0.7), rgba(240, 234, 241, 0.52)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center;
}
.p-profile-voice__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-profile-voice__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-profile-voice__inner {
    padding: 0 32px;
  }
}
.p-profile-voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-profile-voice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-profile-voice__card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #F0EAF1;
}
.p-profile-voice__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.p-profile-voice__card-icon {
  width: 48px;
  height: 48px;
  background-color: #FAF9F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E1BEBA;
}
.p-profile-voice__card-icon svg {
  width: 24px;
  height: 24px;
}
.p-profile-voice__card-name {
  font-family: "Zen Old Mincho", serif;
  color: #7E6B80;
  letter-spacing: 0.1em;
  font-size: 1.125rem;
}
.p-profile-voice__card-meta {
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.6);
  letter-spacing: 0.1em;
}
.p-profile-voice__card-text {
  color: rgba(74, 66, 65, 0.8);
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-faq {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)), url("../images/ornament-lotus.svg") no-repeat right -150px top 80px/420px auto, #FFFFFF;
}
.p-faq__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq__inner {
    padding: 0 32px;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-faq__item {
  background-color: #FAF9F6;
  border: 1px solid #F0EAF1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.p-faq__item[open] {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.p-faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  padding: 24px;
  color: #7E6B80;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.p-faq__summary::-webkit-details-marker {
  display: none;
}
.p-faq__summary:hover {
  color: #A97068;
}
.p-faq__summary:hover .p-faq__toggle {
  color: #C8948D;
}
[open] .p-faq__summary .p-faq__toggle {
  transform: rotate(180deg);
}
.p-faq__summary-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-faq__icon-q {
  color: #C8948D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
}
.p-faq__toggle {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #E2D5E3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-faq__toggle svg {
  width: 24px;
  height: 24px;
}
.p-faq__answer {
  padding: 0 24px 24px;
  color: rgba(74, 66, 65, 0.8);
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  border-top: 1px solid rgba(240, 234, 241, 0.5);
  margin-top: 8px;
  background-color: #FFFFFF;
  display: flex;
  gap: 12px;
  padding-top: 24px;
}
.p-faq__icon-a {
  color: #D4C4D7;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  margin-top: 4px;
}
.p-faq__answer-text {
  margin-top: 8px;
}
.p-faq__cta {
  margin-top: 80px;
  text-align: center;
  background-color: rgba(240, 234, 241, 0.3);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #F0EAF1;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-faq__cta-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #7E6B80;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.p-faq__cta-desc {
  color: rgba(74, 66, 65, 0.8);
  font-size: 0.875rem;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.p-contact {
  padding: 96px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center top;
  position: relative;
}
.p-contact__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact__inner {
    padding: 0 32px;
  }
}
.p-contact__tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .p-contact__tabs {
    flex-direction: row;
  }
}
.p-contact__tab-btn {
  padding: 16px 32px;
  border-radius: 9999px;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E2D5E3;
  background-color: #FFFFFF;
  color: #7E6B80;
}
.p-contact__tab-btn:hover {
  background-color: #F0EAF1;
}
.p-contact__tab-btn.is-active {
  background-color: #B5A5B6;
  color: #FFFFFF;
}
.p-contact__tab-btn.is-active:hover {
  background-color: #B5A5B6;
}
.p-contact__form-panel {
  background-color: #FAF9F6;
  border-radius: 40px;
  padding: 32px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #F0EAF1;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.p-contact__form-panel.is-active {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__form-panel {
    padding: 48px;
  }
}
.p-contact__form-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  color: #7E6B80;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #F0EAF1;
  padding-bottom: 24px;
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 672px;
  margin: 0 auto;
}
.p-contact__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4241;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.p-contact__required {
  font-size: 0.75rem;
  color: #C8948D;
  margin-left: 8px;
}
.p-contact__optional {
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.5);
  margin-left: 8px;
}
.p-contact__input {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2D5E3;
  color: #4A4241;
  padding: 12px 16px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.1em;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-contact__input::placeholder {
  color: rgba(74, 66, 65, 0.4);
}
.p-contact__input:focus {
  outline: none;
  border-color: #E1BEBA;
  box-shadow: 0 0 0 2px rgba(225, 190, 186, 0.5);
}
.p-contact__input--date {
  text-align: center;
}
.p-contact__input--zip {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__input--zip {
    width: 50%;
  }
}
.p-contact__date-group {
  display: flex;
  gap: 16px;
}
.p-contact__date-group input {
  width: 33.333333%;
}
.p-contact__radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-contact__radio-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-contact__radio-label {
  position: relative;
  display: flex;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #E2D5E3;
  background-color: #FFFFFF;
  padding: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.p-contact__radio-label:hover {
  background-color: rgba(240, 234, 241, 0.5);
}
.p-contact__radio-label:has(.p-contact__radio-input:checked) {
  border-color: #7E6B80;
  background-color: rgba(240, 234, 241, 0.5);
}
.p-contact__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.p-contact__radio-content {
  display: flex;
  flex-direction: column;
}
.p-contact__radio-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7E6B80;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.p-contact__radio-desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.6);
  letter-spacing: 0.05em;
}
.p-contact__address-fields {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0EAF1;
}
.p-contact__address-fields.is-active {
  display: flex;
}
.p-contact__note {
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.6);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.p-contact__textarea {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2D5E3;
  color: #4A4241;
  padding: 12px 16px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.1em;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  resize: none;
}
.p-contact__textarea:focus {
  outline: none;
  border-color: #E1BEBA;
  box-shadow: 0 0 0 2px rgba(225, 190, 186, 0.5);
}
.p-contact__select {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2D5E3;
  color: #4A4241;
  padding: 12px 16px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.1em;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.p-contact__select:focus {
  outline: none;
  border-color: #E1BEBA;
  box-shadow: 0 0 0 2px rgba(225, 190, 186, 0.5);
}
.p-contact__submit-wrapper {
  text-align: center;
  padding-top: 32px;
}
.p-contact__submit {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    width: auto;
  }
}
.p-contact__submit-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.6);
  letter-spacing: 0.05em;
}

.p-blog-archive {
  padding: 80px 0 96px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)), url("../images/bg-concept-lead.png");
  background-size: cover;
  background-position: center top;
}
.p-blog-archive__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-blog-archive__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog-archive__inner {
    padding: 0 32px;
  }
}
.p-blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.p-blog-archive__pagination {
  margin-top: 64px;
  text-align: center;
}
.p-blog-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.p-blog-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #4A4241;
  background-color: #FAF9F6;
  border: 1px solid #F0EAF1;
  transition: all 0.2s ease;
}
.p-blog-archive__pagination .page-numbers:hover {
  background-color: #F0EAF1;
  color: #7E6B80;
}
.p-blog-archive__pagination .page-numbers.current {
  background-color: #E2D5E3;
  color: #FFFFFF;
  border-color: #E2D5E3;
  pointer-events: none;
}
.p-blog-archive__empty {
  text-align: center;
  padding: 80px 0;
  color: rgba(74, 66, 65, 0.6);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.p-blog-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #FAF9F6;
  border: 1px solid #F0EAF1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.p-blog-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 14px 30px rgba(126, 107, 128, 0.12);
  border-color: #E2D5E3;
}
.p-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-blog-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #F0EAF1;
}
.p-blog-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-blog-card:hover .p-blog-card__img {
  transform: scale(1.04);
}
.p-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F0EAF1, #F2DFDD);
}
.p-blog-card__body {
  padding: 20px 24px 24px;
}
.p-blog-card__date {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(74, 66, 65, 0.55);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.p-blog-card__cat {
  display: inline-block;
  font-size: 0.6875rem;
  color: #A97068;
  background-color: rgba(242, 223, 221, 0.7);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-left: 8px;
  vertical-align: middle;
}
.p-blog-card__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  color: #4A4241;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 8px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-blog-card__excerpt {
  font-size: 0.8125rem;
  color: rgba(74, 66, 65, 0.7);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
}

.p-blog-single {
  padding: 64px 0 96px;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url("../images/ornament-lotus.svg") no-repeat right -160px top 80px/430px auto, #FFFFFF;
}
.p-blog-single__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog-single__inner {
    padding: 0 32px;
  }
}
.p-blog-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.p-blog-single__date {
  font-size: 0.8125rem;
  color: rgba(74, 66, 65, 0.6);
  letter-spacing: 0.06em;
}
.p-blog-single__cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.p-blog-single__cat {
  display: inline-block;
  font-size: 0.6875rem;
  color: #A97068;
  background-color: rgba(242, 223, 221, 0.7);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.p-blog-single__cat:hover {
  background-color: #F2DFDD;
}
.p-blog-single__thumbnail {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
}
.p-blog-single__thumbnail-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-blog-single__content {
  margin-bottom: 64px;
}
.p-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.p-blog-single__content blockquote {
  border-left: 3px solid #E2D5E3;
  padding: 16px 20px;
  margin: 24px 0;
  background-color: #FAF9F6;
  border-radius: 0 8px 8px 0;
  color: rgba(74, 66, 65, 0.85);
  font-style: italic;
}
.p-blog-single__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid #F0EAF1;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-blog-single__nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-blog-single__nav-item {
  min-height: 0;
}
.p-blog-single__nav-item--next {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-blog-single__nav-item--next {
    text-align: left;
  }
}
.p-blog-single__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #FAF9F6;
  border: 1px solid #F0EAF1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.p-blog-single__nav-link:hover {
  background-color: #F0EAF1;
  border-color: #E2D5E3;
}
.p-blog-single__nav-label {
  font-size: 0.75rem;
  color: #C8948D;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.p-blog-single__nav-title {
  font-size: 0.875rem;
  color: #4A4241;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.p-blog-single__back {
  text-align: center;
}

.p-page {
  padding: 64px 0;
  background-color: #FFFFFF;
}
.p-page__inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-page__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-page__inner {
    padding: 0 32px;
  }
}
.p-page__content {
  color: #4A4241;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-page__content h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  color: #7E6B80;
  margin-top: 48px;
  margin-bottom: 24px;
  border-bottom: 1px solid #F0EAF1;
  padding-bottom: 8px;
}
.p-page__content h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  color: #4A4241;
  margin-top: 32px;
  margin-bottom: 16px;
}
.p-page__content p {
  margin-bottom: 24px;
}
.p-page__content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.p-page__content ul li {
  margin-bottom: 8px;
}
.p-page__content ol {
  list-style-type: decimal;
  padding-left: 24px;
  margin-bottom: 24px;
}
.p-page__content ol li {
  margin-bottom: 8px;
}
.p-page__content a {
  color: #A97068;
  text-decoration: underline;
}
.p-page__content a:hover {
  color: #8A524A;
}

/*# sourceMappingURL=style.css.map */
