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

.u-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-font-bold {
  font-weight: bold;
}

.u-vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

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

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

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #000000;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

.c-breadcrumb {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #9d9d9d;
}
.c-breadcrumb a {
  color: #9d9d9d;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb a:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb__current {
  color: #818181;
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Hina Mincho", serif;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.8125rem;
  }
}
.c-btn::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 36px;
  width: 2.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (any-hover: hover) {
  .c-btn:hover::after {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
}
.c-btn.--dark {
  color: #000000;
}
.c-btn.--dark::after {
  background-color: #000000;
}
.c-btn.--end {
  margin-left: auto;
}

/***************************************
ボタンコンポーネント
****************************************/
/***************************************
カードコンポーネント
****************************************/
.c-card {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  width: min(100%, 60rem);
  margin-inline: auto;
  min-height: 209px;
  min-height: 13.0625rem;
  padding: 46px 56px 47px;
  padding: 2.875rem 3.5rem 2.9375rem;
  background: url(../../assets/images/map/balloon-bg.webp) no-repeat center/100% 100%;
}
@media screen and (max-width: 480px) {
  .c-card {
    background-image: url(../../assets/images/map/balloon-bg-sp.webp);
    padding: 2.5rem 2.5rem 1.875rem;
  }
}
.c-card::before {
  content: "";
  position: absolute;
  top: 15px;
  top: 0.9375rem;
  left: 10px;
  left: 0.625rem;
  width: 64px;
  width: 4rem;
  height: 45px;
  height: 2.8125rem;
  background: url(../../assets/images/map/title-decoration.svg) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .c-card::before {
    top: 1.25rem;
    left: 0.9375rem;
    width: 2.5rem;
    height: 1.75rem;
  }
}
.c-card::after {
  content: "";
  position: absolute;
  bottom: 15px;
  bottom: 0.9375rem;
  right: 10px;
  right: 0.625rem;
  width: 64px;
  width: 4rem;
  height: 45px;
  height: 2.8125rem;
  background: url(../../assets/images/map/title-decoration02.svg) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-card::after {
    bottom: 1.25rem;
    right: 0.9375rem;
    width: 3.125rem;
    height: 2.1875rem;
  }
}

.c-card__label {
  font-family: "Hina Mincho", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.125em;
  color: #9a8060;
  position: relative;
}
.c-card__label .c-card__label-text {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .c-card__label {
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    letter-spacing: 0.1em;
  }
}

.c-card__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.65;
  letter-spacing: 0.082em;
  color: #2e2b24;
}
@media screen and (max-width: 480px) {
  .c-card__text {
    font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
    margin-top: 1rem;
    line-height: 2;
  }
}

.c-card__name {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.122em;
  text-align: right;
  color: #7a7060;
}
@media screen and (max-width: 480px) {
  .c-card__name {
    font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
    margin-top: 0.75rem;
    line-height: 1.3;
  }
}

/***************************************
雲＋縦書き見出し（サイト共通コンポーネント）
****************************************/
.c-cloud-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-cloud-heading {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

.c-cloud-heading__cloud {
  width: clamp(64px, 58.4px + 1.75vw, 92px);
  width: clamp(4rem, 3.65rem + 1.75vw, 5.75rem);
}
.c-cloud-heading__cloud img {
  width: 100%;
  height: auto;
  display: block;
}

.c-cloud-heading__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(8px, 6.8px + 0.375vw, 14px);
  gap: clamp(0.5rem, 0.425rem + 0.375vw, 0.875rem);
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-cloud-heading__title {
    margin-left: 0;
    margin-top: -0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-cloud-heading__title .sub {
  margin-top: clamp(50px, 45.8px + 1.3125vw, 71px);
  margin-top: clamp(3.125rem, 2.8625rem + 1.3125vw, 4.4375rem);
}
@media screen and (max-width: 767px) {
  .c-cloud-heading__title .sub {
    margin-top: 0;
  }
}
.c-cloud-heading__title:has(.sub) {
  margin-left: -10px;
  margin-left: -0.625rem;
}
@media screen and (max-width: 767px) {
  .c-cloud-heading__title:has(.sub) {
    margin-left: 0;
  }
}
.c-cloud-heading__title span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(18px, 17.6px + 0.125vw, 20px);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .c-cloud-heading__title span {
    font-size: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.15em;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-cloud-heading__title {
    gap: clamp(0.5rem, 0.425rem + 0.375vw, 0.875rem);
  }
  .c-cloud-heading__title span {
    font-size: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
  }
}

/* ハンバーガーボタン（Group 13839.svg に準拠）
------------------------------------------------ */
.c-hamburger {
  width: 37px;
  width: 2.3125rem;
  height: 24px;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 0.5px 0;
  padding: 0.03125rem 0; /* SVGの起点 0.5 に合わせる */
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 2.625rem;
    height: 1.5rem;
    padding: 0.01875rem 0;
  }
}
@media (any-hover: hover) {
  .c-hamburger:hover span:nth-child(1) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .c-hamburger:hover span:nth-child(2) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.c-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #FFFFFF;
  border-radius: 999px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: background 0.4s ease, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.4s ease, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.4s ease, transform 0.3s, opacity 0.3s;
  transition: background 0.4s ease, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.p-header.is-dark .c-hamburger span {
  background: #000000;
}

body.is-fixed .p-header.is-dark .c-hamburger span {
  background: #FFFFFF;
}

/* 1本目: 斜め下（左上→右下 \） */
.c-hamburger span:nth-child(1) {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}

/* 2本目: 斜め上（左下→右上 /） */
.c-hamburger span:nth-child(2) {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}

/* 3本目: 水平 */
.c-hamburger span:nth-child(3) {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

/* 開いた時 */
.c-hamburger.open span {
  position: absolute;
  top: 50%;
  left: 50%;
}

.c-hamburger.open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.open span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* アーカイブページのページ送り：前へ 1 2 3 ... 8 次へ */
.c-pagenation {
  margin-top: clamp(40px, 36px + 1.25vw, 60px);
  margin-top: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 12px;
  gap: 0.5rem 0.75rem;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #5f5b52;
}
.c-pagenation a,
.c-pagenation span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1c1a16;
}
.c-pagenation .page-numbers:not(.prev):not(.next):not(.dots) {
  min-width: 36px;
  min-width: 2.25rem;
  height: 36px;
  height: 2.25rem;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  border: 1px solid #5f5b52;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.c-pagenation .page-numbers.current {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
  font-weight: 600;
}
.c-pagenation .page-numbers.dots {
  min-width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #5f5b52;
  pointer-events: none;
}
@media (any-hover: hover) {
  .c-pagenation a.page-numbers:not(.prev):not(.next):hover {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
  }
}
.c-pagenation .prev,
.c-pagenation .next {
  min-width: auto;
  height: auto;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagenation .prev:hover,
  .c-pagenation .next:hover {
    background-color: transparent;
    color: #1c1a16;
    opacity: 0.7;
  }
}
.c-pagenation .prev {
  margin-right: 16px;
  margin-right: 1rem;
}
.c-pagenation .next {
  margin-left: 16px;
  margin-left: 1rem;
}

.c-single-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 86px;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 80px;
  margin-top: 5rem;
}

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

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

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

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

/* テキストコンポーネント
------------------------------------------------ */
.c-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: normal;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.8125rem;
  }
}

/***************************************
メインタイトル（セクションタイトル）
****************************************/
.c-section-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  color: inherit;
  letter-spacing: 0.25em;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.125rem;
  }
}

.c-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6px, 5.6px + 0.125vw, 8px);
  gap: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem);
  font-family: "Hina Mincho", serif;
  font-size: clamp(18px, 17.6px + 0.125vw, 20px);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: center;
  color: #000000;
}
.c-section-head::after {
  content: "";
  display: block;
  width: clamp(40px, 38.4px + 0.5vw, 48px);
  width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
  height: 4px;
  height: 0.25rem;
  background-color: #1a2026;
}

.l-inner {
  width: 100%;
  max-width: 1085px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-inner__section {
  width: 100%;
  max-width: 1180px;
  max-width: 73.75rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner__section {
    padding-inline: 1.25rem;
  }
}

/***************************************
ページ共通
****************************************/
.l-fv {
  width: 100%;
  position: relative;
}
.l-fv img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1440/560;
}
@media screen and (max-width: 767px) {
  .l-fv img {
    aspect-ratio: 750/998;
  }
}
.l-fv.--small {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(26, 32, 38)), to(rgba(0, 0, 0, .6)));
  background: linear-gradient(to top, rgb(26, 32, 38) 0%, rgba(0, 0, 0, .6) 100%);
  aspect-ratio: 1440/360;
}
@media screen and (max-width: 767px) {
  .l-fv.--small {
    aspect-ratio: 750/400;
  }
}
.l-fv.--small .l-fv__inner {
  bottom: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-fv__inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-fv__inner {
    bottom: 10%;
  }
}
@media screen and (max-width: 480px) {
  .l-fv__inner {
    bottom: 0;
  }
}

.l-fv__title {
  font-size: clamp(22px, 19.2px + 0.875vw, 36px);
  font-size: clamp(1.375rem, 1.2rem + 0.875vw, 2.25rem);
  line-height: 1.25;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Hina Mincho", serif;
}
.l-fv__title::before, .l-fv__title::after {
  content: "";
  display: block;
  width: 100px;
  width: 6.25rem;
  aspect-ratio: 100/145;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-fv__title::before, .l-fv__title::after {
    width: clamp(3.125rem, 2.875rem + 1.25vw, 4.375rem);
  }
}
.l-fv__title::before {
  background-image: url(../images/common/cloud-gold01.webp);
}
.l-fv__title::after {
  background-image: url(../images/common/cloud-gold02.webp);
}

.l-fv__text {
  margin-block: clamp(80px, 73.4px + 2.0625vw, 113px) clamp(30px, 28px + 0.625vw, 40px);
  margin-block: clamp(5rem, 4.5875rem + 2.0625vw, 7.0625rem) clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .l-fv__text {
    margin-block: clamp(3.75rem, 2.625rem + 5.625vw, 9.375rem) clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    text-align: left;
  }
}

/***************************************
アニメーションコンポーネント
****************************************/
/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/***************************************
about（本興寺について）詳細
****************************************/
.p-about-story-wrapper {
  width: 100%;
  padding-block: clamp(60px, 48px + 3.75vw, 120px);
  padding-block: clamp(3.75rem, 3rem + 3.75vw, 7.5rem);
  position: relative;
}
.p-about-story-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/about/section-bg01.webp) no-repeat top left/100%;
  pointer-events: none;
}

/* ----- 画像＋縦書き見出しの定型ブロック ----- */
.p-about-story {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1000px);
  width: min(100% - 2.5rem, 62.5rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(24px, 20.8px + 1vw, 40px);
  gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}
.p-about-story.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: clamp(80px, 60px + 6.25vw, 180px);
  margin-top: clamp(5rem, 3.75rem + 6.25vw, 11.25rem);
}
.p-about-story.--reverse .p-about-story__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-about-story.--chronicle {
  margin-top: clamp(60px, 48px + 3.75vw, 120px);
  margin-top: clamp(3.75rem, 3rem + 3.75vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .p-about-story {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  }
  .p-about-story.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-about-story__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(60%, 500px);
  width: min(60%, 31.25rem);
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-story__image {
    width: 100%;
    max-width: 26.25rem;
  }
}

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

.p-about-story__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: clamp(20px, 18px + 0.625vw, 30px);
  gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-about-story__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    display: contents;
  }
}

.p-about-story__text {
  font-family: "Hina Mincho", serif;
  font-size: clamp(15px, 15px + 0vw, 15px);
  font-size: clamp(0.9375rem, 0.9375rem + 0vw, 0.9375rem);
  line-height: 2;
  text-align: justify;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-about-story__text {
    width: 100%;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  }
}
.p-about-story__text p + p {
  margin-top: clamp(12px, 11.2px + 0.25vw, 16px);
  margin-top: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

/* ----- 沿革（タイムライン） ----- */
.p-about-chronicle {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(100vw, 1440px);
  width: min(100vw, 90rem);
}
@media screen and (max-width: 767px) {
  .p-about-chronicle {
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}

.p-about-chronicle__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 14.4px + 0.5vw, 24px);
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__head {
    padding-inline: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  }
}

.p-about-chronicle__title {
  font-family: "Hina Mincho", serif;
  font-size: clamp(18px, 17.6px + 0.125vw, 20px);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1;
  color: #000000;
  text-align: center;
}
.p-about-chronicle__title::after {
  content: "";
  display: block;
  width: clamp(40px, 36.8px + 1vw, 56px);
  width: clamp(2.5rem, 2.3rem + 1vw, 3.5rem);
  height: 4px;
  height: 0.25rem;
  margin-top: clamp(10px, 9.2px + 0.25vw, 14px);
  margin-top: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
  margin-inline: auto;
  background-color: #1A2026;
}

.p-about-chronicle__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  color: #000000;
}

.p-about-chronicle__map {
  container-type: inline-size;
  width: min(69.4444444444vw, 1000px);
  width: min(69.4444444444vw, 62.5rem);
  margin-top: clamp(40px, 32px + 2.5vw, 80px);
  margin-top: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  margin-inline: auto;
  aspect-ratio: 2880/2637;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__map {
    container-type: normal;
    width: min(100%, 31.25rem);
    margin-inline: auto;
    padding-inline: 1.875rem;
    aspect-ratio: auto;
  }
}

.p-about-chronicle__line {
  position: absolute;
  top: 14.5%;
  left: 67%;
  width: 60.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 612/588;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__line {
    display: none;
  }
}
.p-about-chronicle__line img {
  width: 100%;
  height: auto;
  display: block;
}

.p-about-chronicle__canvas {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__canvas {
    position: static;
  }
}

.p-about-chronicle__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.p-about-chronicle__bg img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-about-chronicle__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(1.75rem, 1.5rem + 1.25vw, 3rem);
    padding-left: 1.5rem;
    position: relative;
  }
  .p-about-chronicle__list::before {
    content: "";
    position: absolute;
    left: 0;
    top: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem);
    width: 0.3125rem;
    height: 41.25rem;
    background: url(../../assets/images/about/line.svg) no-repeat center top/contain;
    pointer-events: none;
  }
}

.p-about-chronicle__node {
  position: absolute;
  left: var(--l);
  top: var(--t);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1111111111cqw;
  font-family: "Hina Mincho", serif;
  font-size: 1.5625cqw;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__node {
    position: relative;
    left: auto;
    top: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    white-space: normal;
  }
  .p-about-chronicle__node::before {
    content: "";
    position: absolute;
    left: -1.8125rem;
    top: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem);
    width: 0.9375rem;
    height: 0.9375rem;
    background: url(../../assets/images/about/month02.svg) no-repeat center/contain;
  }
  .p-about-chronicle__node:first-child::before {
    left: -2rem;
  }
}

.p-about-chronicle__year {
  color: #5c4a2a;
  text-align: right;
}

.p-about-chronicle__connector {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12cqw;
  aspect-ratio: 120/15;
  background: url(../../assets/images/about/about-decoration-line.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-about-chronicle__connector {
    display: none;
  }
}

.p-about-chronicle__event {
  color: #1a2026;
}

/***************************************
access
****************************************/
.p-access {
  width: 100%;
  padding-block: 230px 214px;
  padding-block: 14.375rem 13.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-block: 6.25rem;
  }
}
.p-access::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 445px;
  height: 27.8125rem;
  background: url(../../assets/images/top/pattern02.webp) no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 1;
}

.p-access__inner {
  width: min(100% - 80px, 1050px);
  width: min(100% - 80px, 65.625rem);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    width: min(100% - 40px, 40rem);
  }
}

.p-access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-access__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-access__content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63%;
          flex: 0 0 63%;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-access__content-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    margin-top: -1.25rem;
  }
}

.p-access__content-image-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-access__content-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  gap: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access__content-body {
    display: contents;
    gap: 3.125rem;
  }
}
.p-access__content-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 167px;
  width: 10.4375rem;
  height: auto;
  aspect-ratio: 167/155;
  background: url(../../assets/images/top/month02.webp) no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-access__content-body::before {
    width: 5rem;
  }
}

.p-access__heading {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-right: 110px;
  margin-right: 6.875rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-access__heading {
    gap: 0.3125rem;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 1.875rem;
    margin-right: 3.125rem;
  }
}
.p-access__heading::before {
  content: "";
  display: block;
  width: 0.5px;
  width: 0.03125rem;
  height: 84px;
  height: 5.25rem;
  background-color: rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .p-access__heading::before {
    height: 2.625rem;
  }
}

.p-access__content-body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
}

.p-access__content-body-content-train {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
.p-access__content-body-content-train .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
}
.p-access__content-body-content-train .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-access__content-body-content-train .text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Hina Mincho", serif;
  line-height: normal;
}

.p-access__content-body-content-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Hina Mincho", serif;
}
.p-access__content-body-content-address > span {
  display: block;
}

.p-access__content-body-content-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  position: relative;
}
.p-access__content-body-content-tel .tel-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Hina Mincho", serif;
  line-height: normal;
}
.p-access__content-body-content-tel .tel-number {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Hina Mincho", serif;
  line-height: normal;
}
.p-access__content-body-content-tel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (any-hover: hover) {
  .p-access__content-body-content-tel:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-access__content-body-content-google-map {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  position: relative;
}
.p-access__content-body-content-google-map::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (any-hover: hover) {
  .p-access__content-body-content-google-map:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/***************************************
お問い合わせページ（page-contact.php）
****************************************/
.p-contact-page__fv.--small .l-fv__inner {
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  width: 100%;
  height: 100%;
}

.p-contact-page__fv .l-fv__inner {
  bottom: auto;
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  width: 100%;
  height: 100%;
}
.p-contact-page__fv picture,
.p-contact-page__fv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact-page__fv-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(100% - 40px, 1100px);
  width: min(100% - 2.5rem, 68.75rem);
  margin-inline: auto;
  padding-block: 36px 48px;
  padding-block: 2.25rem 3rem;
  padding-inline: 48px;
  padding-inline: 3rem;
  color: #FFFFFF;
  pointer-events: none;
}
.p-contact-page__fv-content a {
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-contact-page__fv-content {
    padding-inline: 1.25rem;
    padding-block: 1.5rem 2rem;
  }
}

.p-contact-page__fv-label {
  margin-top: auto;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, .6);
}
@media screen and (max-width: 767px) {
  .p-contact-page__fv-label {
    margin-top: 3rem;
  }
}

.p-contact-page__fv-title {
  margin-top: 14px;
  margin-top: 0.875rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: clamp(22px, 21.2px + 0.25vw, 26px);
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.28em;
  color: #f0ece2;
}

.p-contact-page__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 660px);
  width: min(100% - 2.5rem, 41.25rem);
  margin-inline: auto;
}

.p-contact-page__intro,
.p-contact-page__methods {
  position: relative;
  overflow: hidden;
}
.p-contact-page__intro::before,
.p-contact-page__methods::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../assets/images/top/pattern01.webp) no-repeat center center/cover;
  pointer-events: none;
}

.p-contact-page__intro {
  padding-block: 96px 64px;
  padding-block: 6rem 4rem;
}
.p-contact-page__intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .78);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact-page__intro {
    padding-block: 3rem 2.5rem;
  }
}

.p-contact-page__lead {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.9;
  letter-spacing: 0.07em;
  color: #2a2822;
}

.p-contact-page__methods {
  padding-block: 160px 80px;
  padding-block: 10rem 5rem;
}
.p-contact-page__methods .p-contact-page__inner {
  width: min(100% - 40px, 960px);
  width: min(100% - 2.5rem, 60rem);
}
@media screen and (max-width: 767px) {
  .p-contact-page__methods {
    padding-block: 4.375rem 3rem;
  }
}

.p-contact-page__form {
  position: relative;
  overflow: hidden;
  padding-block: 96px 120px;
  padding-block: 6rem 7.5rem;
  background-color: #FFFFFF;
}
.p-contact-page__form::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 572px;
  height: 35.75rem;
  background: url(../../assets/images/top/section-cloud02.svg) no-repeat center center/contain;
  pointer-events: none;
}
.p-contact-page__form::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 445px;
  height: 27.8125rem;
  background: url(../../assets/images/top/pattern02.webp) no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p-contact-page__form .p-contact-page__head-label {
  color: #b98d2d;
}
@media screen and (max-width: 767px) {
  .p-contact-page__form {
    padding-block: 3.5rem 5rem;
  }
  .p-contact-page__form::before {
    height: 17.5rem;
  }
}
.p-contact-page__form .p-contact-page__inner {
  width: min(100% - 40px, 960px);
  width: min(100% - 2.5rem, 60rem);
}

.p-contact-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-page__head-cloud {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(56px, 51.2px + 1.5vw, 80px);
          flex: 0 0 clamp(56px, 51.2px + 1.5vw, 80px);
  -ms-flex: 0 0 clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
      flex: 0 0 clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
  width: clamp(56px, 51.2px + 1.5vw, 80px);
  width: clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
  -ms-flex-item-align: center;
      align-self: center;
  position: relative;
  z-index: 0;
}
.p-contact-page__head-cloud img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact-page__head-cloud {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(2.75rem, 2.6rem + 0.75vw, 3.5rem);
            flex: 0 0 clamp(2.75rem, 2.6rem + 0.75vw, 3.5rem);
    width: clamp(2.75rem, 2.6rem + 0.75vw, 3.5rem);
  }
}

.p-contact-page__head-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  margin-left: -20px;
  margin-left: -1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-page__head-body {
    margin-left: -0.75rem;
  }
}

.p-contact-page__head-label {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #b98d2d;
}

.p-contact-page__head-title {
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #1c1a16;
}

.p-contact-page__methods-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
  max-width: 60rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact-page__methods-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }
}

.p-contact-page__method-card {
  height: 100%;
  background-color: rgba(255, 255, 255, .96);
  border: 1px solid #d8d4cb;
  border-left: 4px solid #b98d2d;
  border-left: 0.25rem solid #b98d2d;
  border-radius: 0.1875rem;
}

.p-contact-page__method-body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 36px 34px;
  padding: 2.25rem 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-page__method-body {
    padding: 1.875rem 1.5rem;
  }
}
.p-contact-page__method-body::before {
  content: none;
}

.p-contact-page__method-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  color: #b98d2d;
}
.p-contact-page__method-icon svg,
.p-contact-page__method-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-contact-page__method-icon img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.55 0.44999999999999996" /><feFuncG type="table" tableValues="0.55 0.44999999999999996" /><feFuncB type="table" tableValues="0.55 0.44999999999999996" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.7086399999999999 0.36912 0.09072 0 0 0.16751999999999997 0.84928 0.08064 0 0 0.13056 0.25632 0.5828800000000001 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="4.08504 -2.8028 -0.28223999999999994 0 0 -0.83496 2.1664 -0.28223999999999994 0 0 -0.83496 -2.8028 4.63776 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="5" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.94" /><feFuncG type="linear" slope="0.94" /><feFuncB type="linear" slope="0.94" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.87" intercept="0.065" /><feFuncG type="linear" slope="0.87" intercept="0.065" /><feFuncB type="linear" slope="0.87" intercept="0.065" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(55%) sepia(48%) saturate(492%) hue-rotate(5deg) brightness(94%) contrast(87%);
          filter: invert(55%) sepia(48%) saturate(492%) hue-rotate(5deg) brightness(94%) contrast(87%);
}

.p-contact-page__method-icon--mail svg {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  max-width: none;
}

.p-contact-page__method-title {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #e9e6de;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: #2a2822;
}

.p-contact-page__method-text {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.4;
  letter-spacing: 0.06em;
  color: #5f5b52;
}

.p-contact-page__method-tel {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  border-top: 1px solid #e9e6de;
}
.p-contact-page__method-tel .p-contact__content-body-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  color: #2a2822;
}
.p-contact-page__method-tel .p-contact__content-body-tel .tel-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
  -ms-flex: 0 0 1.375rem;
      flex: 0 0 1.375rem;
  width: 22px;
  width: 1.375rem;
}
.p-contact-page__method-tel .p-contact__content-body-tel .tel-icon img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.55 0.44999999999999996" /><feFuncG type="table" tableValues="0.55 0.44999999999999996" /><feFuncB type="table" tableValues="0.55 0.44999999999999996" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.7086399999999999 0.36912 0.09072 0 0 0.16751999999999997 0.84928 0.08064 0 0 0.13056 0.25632 0.5828800000000001 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="4.08504 -2.8028 -0.28223999999999994 0 0 -0.83496 2.1664 -0.28223999999999994 0 0 -0.83496 -2.8028 4.63776 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="5" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.94" /><feFuncG type="linear" slope="0.94" /><feFuncB type="linear" slope="0.94" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.87" intercept="0.065" /><feFuncG type="linear" slope="0.87" intercept="0.065" /><feFuncB type="linear" slope="0.87" intercept="0.065" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: invert(55%) sepia(48%) saturate(492%) hue-rotate(5deg) brightness(94%) contrast(87%);
          filter: invert(55%) sepia(48%) saturate(492%) hue-rotate(5deg) brightness(94%) contrast(87%);
}
.p-contact-page__method-tel .p-contact__content-body-tel .tel-number {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}
@media (any-hover: hover) {
  .p-contact-page__method-tel .p-contact__content-body-tel:hover .tel-icon {
    -webkit-animation: pulse 0.8s infinite;
            animation: pulse 0.8s infinite;
  }
}
.p-contact-page__method-tel .p-contact__content-body-tel-detail {
  color: #838383;
  letter-spacing: 0.1em;
}
.p-contact-page__method-tel .p-contact__content-body-tel-detail span + span {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.p-contact-page__method-link {
  margin-top: auto;
  padding-top: 22px;
  padding-top: 1.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #9a8060;
}
.p-contact-page__method-link::after {
  background-color: #9a8060;
}

.p-contact-form {
  width: 100%;
  max-width: 960px;
  max-width: 60rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-inline: auto;
  padding: 48px 56px;
  padding: 3rem 3.5rem;
  border: 1px solid #d8d4cb;
  border-radius: 0.1875rem;
  background-color: rgba(255, 255, 255, .96);
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 2rem 1.5rem;
  }
}
.p-contact-form .hidden-fields-container {
  display: none;
}

.p-contact-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  row-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__fields {
    row-gap: 1.625rem;
  }
}

.p-contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
}
.p-contact-form__field:first-child {
  grid-column: 1/-1;
}

.p-contact-form__label {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #4c4942;
}

.p-contact-form__required {
  display: inline-block;
  margin-left: 6px;
  margin-left: 0.375rem;
  padding: 1px 7px;
  padding: 0.0625rem 0.4375rem;
  border: 1px solid #b98d2d;
  background-color: #b98d2d;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  vertical-align: middle;
}

.p-contact-form__control,
.p-contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=tel],
.p-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  padding: 0.875rem 1.125rem;
  border: 1px solid #d8d4cb;
  border-radius: 0.375rem;
  background-color: #FFFFFF;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #2a2822;
}
.p-contact-form input[type=text]::-webkit-input-placeholder,
.p-contact-form input[type=email]::-webkit-input-placeholder,
.p-contact-form input[type=tel]::-webkit-input-placeholder,
.p-contact-form textarea::-webkit-input-placeholder {
  color: #2a2822;
  opacity: 0.45;
}
.p-contact-form input[type=text]::-moz-placeholder,
.p-contact-form input[type=email]::-moz-placeholder,
.p-contact-form input[type=tel]::-moz-placeholder,
.p-contact-form textarea::-moz-placeholder {
  color: #2a2822;
  opacity: 0.45;
}
.p-contact-form input[type=text]::-ms-input-placeholder,
.p-contact-form input[type=email]::-ms-input-placeholder,
.p-contact-form input[type=tel]::-ms-input-placeholder,
.p-contact-form textarea::-ms-input-placeholder {
  color: #2a2822;
  opacity: 0.45;
}
.p-contact-form input[type=text]::placeholder,
.p-contact-form input[type=email]::placeholder,
.p-contact-form input[type=tel]::placeholder,
.p-contact-form textarea::placeholder {
  color: #2a2822;
  opacity: 0.45;
}

.p-contact-form textarea {
  min-height: 243px;
  min-height: 15.1875rem;
  resize: vertical;
}

.p-contact-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 18px;
  gap: 0.625rem 1.125rem;
}

.p-contact-form .wpcf7-list-item {
  margin: 0;
}
.p-contact-form .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  position: relative;
  cursor: pointer;
}
.p-contact-form .wpcf7-list-item label::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  -ms-flex: 0 0 1rem;
      flex: 0 0 1rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border: 1px solid #d8d4cb;
  border-radius: 50%;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.p-contact-form .wpcf7-list-item label:has(input:checked)::before {
  border-color: #b98d2d;
  background-color: #b98d2d;
  -webkit-box-shadow: inset 0 0 0 0.1875rem #FFFFFF;
          box-shadow: inset 0 0 0 0.1875rem #FFFFFF;
}
.p-contact-form .wpcf7-list-item label:has(input:focus-visible)::before {
  outline: 2px solid #b98d2d;
  outline-offset: 2px;
}

.p-contact-form .wpcf7-list-item-label {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #2a2822;
}

.p-contact-form input[type=radio] {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.p-contact-form__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact-form__submit,
.p-contact-form input[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
  min-width: 222px;
  min-width: 13.875rem;
  min-height: 58px;
  min-height: 3.625rem;
  padding: 16px 40px;
  padding: 1rem 2.5rem;
  border: 1px solid #b98d2d;
  background-color: #b98d2d;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .p-contact-form__submit:hover,
  .p-contact-form input[type=submit]:hover {
    background-color: #FFFFFF;
    color: #b98d2d;
    opacity: 1;
  }
}

.p-contact-form__note,
.p-contact-form__fallback {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #838383;
}

.p-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #c0392b;
}

.p-contact-form .wpcf7-not-valid {
  border-color: #d8d4cb;
}

.p-contact-form .screen-reader-response {
  display: none !important;
}

.p-contact-form .wpcf7-response-output {
  display: none !important;
  margin: 24px 0 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border: none;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  color: #3a3428;
}

.p-contact-form .wpcf7-spinner {
  display: none;
}

.c-breadcrumb.--on-dark {
  color: rgba(255, 255, 255, .65);
}
.c-breadcrumb.--on-dark a,
.c-breadcrumb.--on-dark .c-breadcrumb__current {
  color: rgba(255, 255, 255, .65);
}

/***************************************
お問い合わせ 送信完了（page-thanks.php）
****************************************/
.p-contact-thanks {
  position: relative;
  overflow: hidden;
  padding-block: 120px 160px;
  padding-block: 7.5rem 10rem;
  background-color: #FFFFFF;
}
.p-contact-thanks::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 445px;
  height: 27.8125rem;
  background: url(../../assets/images/top/pattern02.webp) no-repeat top center/100% 100%;
  pointer-events: none;
  z-index: 0;
}
.p-contact-thanks .p-contact-page__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 800px);
  width: min(100% - 2.5rem, 50rem);
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding-block: 5rem 7.5rem;
  }
  .p-contact-thanks::before {
    height: 17.5rem;
  }
}

.p-contact-thanks__card {
  max-width: 800px;
  max-width: 50rem;
  margin-inline: auto;
}
.p-contact-thanks__card .p-contact-page__method-tel .p-contact__content-body-tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact-thanks__card .p-contact-page__method-tel .p-contact__content-body-tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact-thanks__body {
  padding: 48px 52px;
  padding: 3rem 3.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__body {
    padding: 2rem 1.5rem;
  }
}

.p-contact-thanks__label {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #9a8060;
}

.p-contact-thanks__title {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #1c1a16;
}

.p-contact-thanks__tel-heading {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: #1c1a16;
}

.p-contact-thanks__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-contact-thanks__actions .c-btn {
  color: #9a8060;
}
.p-contact-thanks__actions .c-btn::after {
  background-color: #9a8060;
}

/***************************************
contact
****************************************/
.p-contact {
  width: 100%;
  padding-block: 67px 120px;
  padding-block: 4.1875rem 7.5rem;
  position: relative;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 2.5rem 5rem;
  }
}
.p-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/contact-bg.webp) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-contact::before {
    background-size: 100% 100%;
    background-position: center;
  }
}

.p-contact__inner {
  width: min(100% - 80px, 800px);
  width: min(100% - 80px, 50rem);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    width: min(100% - 40px, 40rem);
  }
}

.p-contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 177px;
  gap: 11.0625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__content-heading .u-vertical-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: upright;
  }
}

.p-contact__content-body {
  margin-top: 62px;
  margin-top: 3.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content-body {
    margin-top: 0;
    gap: 1.25rem;
  }
}

.p-contact__content-body-tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}

.p-contact__content-body-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
.p-contact__content-body-tel .tel-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  -ms-flex: 0 0 1.5rem;
      flex: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content-body-tel .tel-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1rem;
            flex: 0 0 1rem;
  }
}
.p-contact__content-body-tel .tel-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-contact__content-body-tel .tel-number {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-contact__content-body-tel .tel-number {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-contact__content-body-tel:hover .tel-icon {
    -webkit-animation: pulse 0.8s infinite;
            animation: pulse 0.8s infinite;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-contact__content-body-tel-detail {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: normal;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-contact__content-body-tel-detail {
    font-size: 0.625rem;
  }
}

.p-contact__content-body-btn-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 30px;
  padding: 1.5rem 1.875rem;
  border: 1px solid #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: normal;
  font-family: "Hina Mincho", serif;
  display: grid;
  place-items: center;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__content-body-btn-link {
    font-size: 0.8125rem;
    padding: 0.9375rem 1.25rem;
  }
}
.p-contact__content-body-btn-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #FFFFFF;
  opacity: 0;
  pointer-events: none;
  will-change: inset, opacity;
}
@media (any-hover: hover) {
  .p-contact__content-body-btn-link:hover::after {
    -webkit-animation: btn-ripple 0.8s ease forwards;
            animation: btn-ripple 0.8s ease forwards;
  }
}

@-webkit-keyframes btn-ripple {
  0% {
    inset: 0;
    opacity: 1;
  }
  100% {
    inset: -0.625rem;
    opacity: 0;
  }
}

@keyframes btn-ripple {
  0% {
    inset: 0;
    opacity: 1;
  }
  100% {
    inset: -0.625rem;
    opacity: 0;
  }
}
/***************************************
ドロワーメニュー
****************************************/
.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #131B1E;
  color: #FFFFFF;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.45s ease, visibility 0s linear 0.45s;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
  z-index: 100;
}

.p-drawer__inner {
  width: 100%;
  height: 100%;
  padding-block: 120px;
  padding-block: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-drawer__inner {
    padding-block: 5rem;
  }
}
.p-drawer__inner::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 655px;
  width: 40.9375rem;
  height: auto;
  aspect-ratio: 655/382;
  background: url(../../assets/images/top/fv-cloud.svg) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__inner::before {
    left: 0;
    width: 80%;
  }
}
.p-drawer__inner::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 193px;
  width: 12.0625rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../../assets/images/top/month01.svg) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__inner::after {
    width: 20%;
  }
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.45s ease, visibility 0s linear 0s;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

body.is-fixed {
  overflow: hidden;
}

.p-drawer__wrap {
  width: min(100% - 80px, 1050px);
  width: min(100% - 80px, 65.625rem);
  height: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-drawer__wrap {
    width: min(100% - 40px, 40rem);
  }
}

.p-drawer__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  padding-block: 150px 100px;
  padding-block: 9.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding-block: 5rem;
  }
}

.p-drawer__menu-item {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 16px;
  font-size: 1rem;
  color: inherit;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-drawer__menu-item {
    font-size: 0.875rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}

.p-drawer.is-no-animation.open .p-drawer__inner,
.no-js .p-drawer.open .p-drawer__inner {
  visibility: visible;
  opacity: 1;
}

.p-drawer__menu-item a {
  position: relative;
  display: inline-block;
  padding-block: 15px;
  padding-block: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__menu-item a {
    padding-block: 0.9375rem 0.625rem;
  }
}
.p-drawer__menu-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background: currentColor;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-drawer__menu-item a::after {
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.0625rem;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.p-drawer__menu-item a:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
@media screen and (max-width: 767px) {
  .p-drawer__menu-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/***************************************
フッター
****************************************/
.p-footer {
  width: 100%;
  padding-block: 140px 170px;
  padding-block: 8.75rem 10.625rem;
  position: relative;
}
.p-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/footer-bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 5rem;
  }
}

.p-footer__inner {
  width: calc(100% - 80px);
  max-width: 1080px;
  max-width: 67.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: calc(100% - 40px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__inner {
    gap: 2.5rem;
  }
}

.p-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__logo {
  width: min(70%, 150px);
  width: min(70%, 9.375rem);
  height: auto;
}
.p-footer__logo img {
  width: 100%;
  aspect-ratio: 376/531;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__info-content {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: inherit;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-footer__info-content {
    letter-spacing: 0.1em;
  }
}

.p-footer__info-content > p > span {
  display: block;
}

.p-footer__info-time > :not(:first-child) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-footer__address-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-footer__address-text > :not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-footer__info-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative;
}
.p-footer__info-tel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (any-hover: hover) {
  .p-footer__info-tel:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.p-footer__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.p-footer__menu-item {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: inherit;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-item {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.12em;
  }
}

.p-footer__menu-item a {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-item a {
    padding-block: 0.9375rem 0.625rem;
  }
}
.p-footer__menu-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  left: -0.3125rem;
  width: 1px;
  width: 0.0625rem;
  height: 100%;
  background: currentColor;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__menu-item a::after {
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.0625rem;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.p-footer__menu-item a:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
@media screen and (max-width: 767px) {
  .p-footer__menu-item a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/***************************************
フロントページ共通
****************************************/
body.home .p-header {
  visibility: hidden;
  opacity: 0;
}

.p-fv {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p-fv__cover {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: #1A2026;
  pointer-events: none;
}

.p-fv__cloud {
  position: absolute;
  bottom: 80px;
  bottom: 5rem;
  left: 3.5%;
  width: 45%;
  pointer-events: none;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__cloud {
    bottom: 20%;
    left: 0;
    width: 80%;
  }
}
.p-fv__cloud img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__moon {
  position: absolute;
  top: 80px;
  top: 5rem;
  right: 21%;
  width: 13%;
  pointer-events: none;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__moon {
    top: 20%;
    right: 5%;
    width: 30%;
  }
}
.p-fv__moon img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__mv-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-fv__mv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-fv__mv-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(26, 32, 38)), color-stop(47%, rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .1)));
  background: linear-gradient(to top, rgb(26, 32, 38) 0%, rgba(0, 0, 0, .5) 47%, rgba(0, 0, 0, .1) 100%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__mv-slide {
    height: 100svh;
  }
  .p-fv__mv-slide img {
    height: 100svh;
  }
}

.p-fv__mv-img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 10s ease;
  transition: -webkit-transform 10s ease;
  transition: transform 10s ease;
  transition: transform 10s ease, -webkit-transform 10s ease;
}

.p-fv.is-swiper-start .swiper-slide-active .p-fv__mv-img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.p-fv__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 11;
}
@media screen and (max-width: 480px) {
  .p-fv__content {
    width: calc(100% - 40px);
    top: 25%;
    left: 65%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-fv__content-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.2em;
  line-height: normal;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 82px;
  gap: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content-text {
    font-size: 1rem;
    gap: 1.875rem;
  }
}
.p-fv__content-text span {
  display: block;
  opacity: 0;
}
.p-fv__content-text .text02 {
  margin-top: 89px;
  margin-top: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content-text .text02 {
    margin-top: 2.75rem;
  }
}
.p-fv__content-text .text03 {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content-text .text03 {
    margin-top: 1.25rem;
  }
}
.p-fv__content-text .text04 {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content-text .text04 {
    margin-top: 2.75rem;
  }
}
.p-fv__content-text .text05 {
  margin-top: 135px;
  margin-top: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content-text .text05 {
    margin-top: 4.1875rem;
  }
}

/***************************************
about
****************************************/
.p-about {
  width: 100%;
  margin-top: -1px;
  margin-top: -0.0625rem;
  padding-block: 130px 65px;
  padding-block: 8.125rem 4.0625rem;
  background-color: #131B1E;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 5rem 2.5rem;
  }
}

.p-about__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 150px;
  gap: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__content-wrapper {
    gap: 5rem;
  }
}

.p-about__content-inner {
  width: calc(100% - 80px);
  max-width: 1090px;
  max-width: 68.125rem;
  margin-inline: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 90px;
  gap: 5.625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-about__content-inner {
    width: calc(100% - 40px);
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.125rem;
  }
}

.p-about__content-img-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.p-about__content-img-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-about__content-img-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-about__content-img-text {
    margin-top: 1.25rem;
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 768px) {
  .p-about__content-img-text {
    white-space: nowrap;
  }
}

.p-about__content-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-family: "Hina Mincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.15em;
  gap: 15px;
  gap: 0.9375rem;
}
.p-about__content-text > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-about__content-text {
    font-size: 0.8125rem;
    gap: 0.625rem;
    letter-spacing: 0.12em;
  }
}

.p-about__content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Hina Mincho", serif;
  line-height: normal;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-about__content-link {
    font-size: 0.8125rem;
  }
}

.p-about__content.--first {
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
  position: relative;
}
.p-about__content.--first::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: auto;
  aspect-ratio: 1078/652;
  background: url(../../assets/images/top/section-cloud01.svg) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about__content.--first::before {
    top: 15%;
    bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-about__content.--first {
    padding-bottom: 5rem;
  }
}
.p-about__content.--first .p-about__content-item {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  gap: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-about__content.--first .p-about__content-item {
    gap: 1.875rem;
  }
}
.p-about__content.--first .p-about__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-about__content.--first .p-about__content-title-img {
  width: 42px;
  width: 2.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-about__content.--first .p-about__content-title-img {
    width: 1.875rem;
  }
}
.p-about__content.--first .p-about__content-text {
  margin-top: 70px;
  margin-top: 4.375rem;
}
.p-about__content.--first .p-about__content-link {
  margin-top: 145px;
  margin-top: 9.0625rem;
}
.p-about__content.--first .p-about__content-link::after {
  content: "";
  display: block;
  width: 1px;
  width: 0.0625rem;
  height: 40px;
  height: 2.5rem;
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
@media (any-hover: hover) {
  .p-about__content.--first .p-about__content-link:hover::after {
    -webkit-transform: scaleY(1.5);
            transform: scaleY(1.5);
  }
}
.p-about__content.--first .p-about__content-img-item {
  margin-top: 130px;
  margin-top: 8.125rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-about__content.--first .p-about__content-img-item {
    margin-top: 0;
  }
}
.p-about__content.--first .p-about__content-img-item img {
  width: calc(50% + 50vw);
  height: 474px;
  height: 29.625rem;
  max-width: none;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-about__content.--first .p-about__content-img-item img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

.p-about__content.--second {
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-inner {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-about__content.--second .p-about__content-img-item {
  overflow: visible;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.p-about__content.--second .p-about__content-img-item img {
  width: calc(50% + 50vw);
  height: 421px;
  height: 26.3125rem;
  max-width: none;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-img-item img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}
.p-about__content.--second .p-about__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-item {
    gap: 1.875rem;
  }
}
.p-about__content.--second .p-about__content-item::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -15%;
  width: 70%;
  height: auto;
  aspect-ratio: 1;
  background: url(../../assets/images/top/month01.svg) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-item::before {
    width: 55%;
    left: -10%;
  }
}
.p-about__content.--second .p-about__content-text-wrapper {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-text-wrapper {
    margin-top: 5rem;
  }
}
.p-about__content.--second .p-about__content-text {
  letter-spacing: 0.1em;
}
.p-about__content.--second .p-about__content-link {
  margin-top: 40px;
  margin-top: 2.5rem;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-link {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-link .text {
    font-size: 0.625rem;
  }
}
.p-about__content.--second .p-about__content-img-text {
  margin-top: 66px;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__content.--second .p-about__content-img-text {
    margin-top: 1.25rem;
  }
}

/*link*/
.p-about__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about__link-wrapper {
    gap: 3.125rem;
  }
}

.p-about__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1440/535;
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .p-about__link-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
  }
}
.p-about__link-item.--btn01 {
  background-image: url(../../assets/images/top/btn01-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .p-about__link-item.--btn01 .p-about__link-body-text {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-about__link-item.--btn01 .p-about__link-body-text .small-text {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn01 {
    background-position: top left;
  }
}
.p-about__link-item.--btn02 {
  background-image: url(../../assets/images/top/btn02-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 {
    background-position: top right;
  }
}
.p-about__link-item:hover .p-about__link-hover {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
  -ms-flex-preferred-size: 15.625rem;
      flex-basis: 15.625rem;
  opacity: 1;
}
.p-about__link-item:hover .p-about__link-images {
  gap: 0;
}

.p-about__link-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  -webkit-transition: -webkit-flex-basis 0.5s ease;
  transition: -webkit-flex-basis 0.5s ease;
  transition: flex-basis 0.5s ease;
  transition: flex-basis 0.5s ease, -webkit-flex-basis 0.5s ease, -ms-flex-preferred-size 0.5s ease;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-about__link-body {
    grid-row: 1;
    grid-column: 1;
  }
}

.p-about__link-body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__link-body-text {
    margin-bottom: 3.125rem;
  }
}
.p-about__link-body-text .big-text {
  font-size: 128px;
  font-size: 8rem;
  line-height: normal;
  letter-spacing: 0;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-about__link-body-text .big-text {
    font-size: 5rem;
  }
}
.p-about__link-body-text .small-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: 0.2em;
  font-family: "Hina Mincho", serif;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about__link-body-text .small-text {
    font-size: 0.75rem;
    margin-bottom: 1.875rem;
  }
}

.p-about__link-images {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-transition: -webkit-box-flex 0.5s ease;
  transition: -webkit-box-flex 0.5s ease;
  transition: flex 0.5s ease;
  transition: flex 0.5s ease, -webkit-box-flex 0.5s ease, -ms-flex 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-about__link-images {
    display: contents;
  }
}

.p-about__link-image--01 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-about__link-image--01 {
    grid-row: 1;
    grid-column: 2;
    aspect-ratio: 1;
  }
}
.p-about__link-image--01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-about__link-image--02 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}
@media screen and (max-width: 767px) {
  .p-about__link-image--02 {
    grid-row: 2;
    grid-column: 1;
  }
}
.p-about__link-image--02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-about__link-hover {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0%;
          flex: 0 0 0%;
  overflow: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
  padding: 2.5rem 0;
  -webkit-transition: 0.3s ease 0.15s, -webkit-flex-basis 0.5s ease;
  transition: 0.3s ease 0.15s, -webkit-flex-basis 0.5s ease;
  transition: flex-basis 0.5s ease, 0.3s ease 0.15s;
  transition: flex-basis 0.5s ease, 0.3s ease 0.15s, -webkit-flex-basis 0.5s ease, -ms-flex-preferred-size 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-about__link-hover {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    grid-row: 2;
    grid-column: 2;
  }
}

.p-about__link-hover-text {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
.p-about__link-hover-text .text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  font-family: "Hina Mincho", serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-about__link-hover-text .text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.p-about__link-hover-text .link-text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  display: block;
  font-family: "Hina Mincho", serif;
  letter-spacing: 0.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about__link-hover-text .link-text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}
.p-about__link-hover-text .link-text::after {
  content: "";
  display: block;
  width: 1px;
  width: 0.0625rem;
  height: 40px;
  height: 2.5rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-body {
    grid-column: 2;
    justify-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-hover {
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-image--01 {
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-image--02 {
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-body-text {
    margin-bottom: 0;
  }
}
.p-about__link-item.--btn02 .p-about__link-body-text .small-text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__link-item.--btn02 .p-about__link-body-text .small-text {
    margin-bottom: 0;
  }
}

/***************************************
information
****************************************/
.p-information {
  width: 100%;
  min-height: 760px;
  min-height: 47.5rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
  padding-block: 158px 100px;
  padding-block: 9.875rem 6.25rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.p-information::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/top/information-bg.webp) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-information {
    min-height: 34.375rem;
    padding-block: 5rem 2.5rem;
  }
}

.p-information__inner {
  width: min(100% - 80px, 1050px);
  width: min(100% - 80px, 65.625rem);
  height: 100%;
  min-height: 502px;
  min-height: 31.375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-information__inner {
    width: min(100% - 40px, 40rem);
    min-height: 24.375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-information__title {
    font-size: 1.25rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: upright;
  }
}

.p-information__content {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-information__content {
    gap: 0.9375rem;
  }
}

.p-information__content-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-information__content-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.p-information__content-text-en {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-information__content-text-en {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

/***************************************
shop
****************************************/
.p-shop {
  width: 100%;
  position: relative;
  padding-block: 270px 225px;
  padding-block: 16.875rem 14.0625rem;
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding-block: 6.25rem;
  }
}
.p-shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 612px;
  height: 38.25rem;
  background: url(../../assets/images/top/pattern01.webp) no-repeat bottom center/cover;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-shop::before {
    height: 23.875rem;
  }
}
.p-shop::after {
  content: "";
  position: absolute;
  bottom: -6%;
  right: 0;
  width: 74%;
  height: 652px;
  height: 40.75rem;
  background: url(../../assets/images/top/section-cloud02.svg) no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-shop::after {
    height: 25.4375rem;
  }
}

.p-shop__inner {
  width: min(100% - 80px, 1008px);
  width: min(100% - 80px, 63rem);
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-shop__inner {
    width: min(100% - 40px, 40rem);
  }
}

.p-shop__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-shop__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-shop__content-images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-shop__content-images {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
}

.p-shop__content-img-link {
  display: block;
}

.p-shop__content-img-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-shop__content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-shop__content-body {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-shop__title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: upright;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-shop__content-body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  gap: 2.8125rem;
}

.p-shop__content-body-content-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-shop__content-body-content-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.p-shop__content-body-content-link.c-btn::after {
  background-color: #000000;
}

.p-shop__content-body-content-text-en {
  margin-top: auto;
  justify-self: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.2;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-shop__content-body-content-text-en {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

/***************************************
news
****************************************/
.p-news__inner {
  width: min(100% - 80px, 1008px);
  width: min(100% - 80px, 63rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    width: min(100% - 40px, 40rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  gap: 0.8125rem;
}
.p-news__heading::before {
  content: "";
  display: block;
  width: 0.5px;
  width: 0.03125rem;
  height: 84px;
  height: 5.25rem;
  background-color: rgba(0, 0, 0, .5);
}
@media screen and (max-width: 767px) {
  .p-news__heading::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-news__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-news__heading .c-section-title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: upright;
  }
}

.p-news__content {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-news__content {
    gap: 1.25rem;
  }
}

.p-news__content-link.c-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.p-news__content-link.c-btn::after {
  background-color: #000000;
}

.p-news__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-news__content-list {
    gap: 0;
  }
}

.p-news__content-list-item {
  border-bottom: 0.5px solid rgba(0, 0, 0, .5);
}

.p-news__content-list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  padding: 24px 24px 31px;
  padding: 1.5rem 1.5rem 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-news__content-list-item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3125rem;
    padding: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .p-news__content-list-item-link:hover {
    background-color: #1B2028;
    color: #FFFFFF;
  }
}

.p-news__content-list-item-date {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Crimson Text", serif;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-news__content-list-item-date {
    font-size: 0.8125rem;
  }
}

.p-news__content-list-item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Hina Mincho", serif;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-news__content-list-item-text {
    font-size: 0.8125rem;
  }
}

/***************************************
ヘッダー
****************************************/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
}

.p-header__inner {
  -webkit-padding-before: 45px;
          padding-block-start: 45px;
  -webkit-padding-before: 2.8125rem;
          padding-block-start: 2.8125rem;
  padding-inline: 61px 71px;
  padding-inline: 3.8125rem 4.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
    padding-inline: 1.25rem 1.25rem;
  }
}

body:not(.home) .p-header__inner {
  -webkit-padding-before: 0;
          padding-block-start: 0;
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo .p-header__logo-link {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__logo .p-header__logo-link:hover {
    opacity: 0.7;
  }
}
.p-header__logo .p-header__logo-img {
  width: min(100%, 253px);
  width: min(100%, 15.8125rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-header__logo .p-header__logo-img {
    width: min(100%, 8.9375rem);
  }
}

.p-header.is-dark .p-header__logo-img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.p-header.is-dark .p-header__logo-text {
  color: #000000;
}

body.is-fixed .p-header.is-dark .p-header__logo-img {
  -webkit-filter: none;
          filter: none;
}
body.is-fixed .p-header.is-dark .p-header__logo-text {
  color: #FFFFFF;
}

/***************************************
information（参拝・ご利用案内）
****************************************/
.p-information-detail {
  padding-bottom: clamp(80px, 64px + 5vw, 160px);
  padding-bottom: clamp(5rem, 4rem + 5vw, 10rem);
}

.p-information-section {
  width: min(100% - 40px, 710px);
  width: min(100% - 2.5rem, 44.375rem);
  margin-inline: auto;
}
.p-information-section.--wide {
  width: min(100% - 40px, 960px);
  width: min(100% - 2.5rem, 60rem);
}
.p-information-section.--narrow {
  width: min(100% - 40px, 585px);
  width: min(100% - 2.5rem, 36.5625rem);
}
@media screen and (max-width: 767px) {
  .p-information-section {
    width: calc(100% - 2.5rem);
  }
}

.p-information-section__lead {
  margin-top: clamp(20px, 19.2px + 0.25vw, 24px);
  margin-top: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  color: #2e2b24;
  text-align: justify;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-information-section__actions {
  margin-top: clamp(20px, 19.2px + 0.25vw, 24px);
  margin-top: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* ----- 参拝時間・開門時間 ----- */
.p-information-hours {
  position: relative;
  width: 100%;
  padding-block: 178px;
  padding-block: 11.125rem;
  overflow: hidden;
}
.p-information-hours::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../assets/images/information/informaition-section-bg.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-information-hours {
    padding-block: clamp(5rem, 4.125rem + 4.375vw, 9.375rem);
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.p-information-hours__inner {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  width: calc(100% - 2.5rem);
}

.p-information-hours__time {
  margin-top: clamp(20px, 19.2px + 0.25vw, 24px);
  margin-top: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 24px;
  padding: 0.625rem 1.5rem;
  border: 1px solid #1a2026;
  font-family: "Hina Mincho", serif;
  font-size: clamp(18px, 17.6px + 0.125vw, 20px);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #1c1a16;
  text-align: center;
}

.p-information-hours__image {
  margin-top: clamp(40px, 33.4px + 2.0625vw, 73px);
  margin-top: clamp(2.5rem, 2.0875rem + 2.0625vw, 4.5625rem);
  width: min(100%, 544px);
  width: min(100%, 34rem);
  margin-inline: auto;
  aspect-ratio: 544/314;
  overflow: hidden;
}
.p-information-hours__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ----- 年中行事 ----- */
.p-information-events {
  position: relative;
  padding-block: 105px 130px;
  padding-block: 6.5625rem 8.125rem;
  color: #FFFFFF;
  overflow: hidden;
  background-color: #1a2026;
}
@media screen and (max-width: 767px) {
  .p-information-events {
    padding-block: 5rem;
  }
}

.p-information-events__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-information-events__bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2%;
  width: min(60%, 657px);
  width: min(60%, 41.0625rem);
  aspect-ratio: 1314/875;
  background: url(../../assets/images/information/cloud.png) no-repeat right bottom/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-information-events__bg::after {
    width: min(85%, 26.25rem);
    bottom: 25%;
  }
}

.p-information-events__bg-rain {
  position: absolute;
  top: 9px;
  top: 0.5625rem;
  left: 0;
  width: 203px;
  width: 12.6875rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-information-events__bg-rain {
    width: 7.5rem;
  }
}

.p-information-events__bg-puddle {
  position: absolute;
  left: -5.1%;
  bottom: 5.3%;
  width: min(40%, 505px);
  width: min(40%, 31.5625rem);
  height: auto;
  display: block;
}

.p-information-events__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1000px);
  width: min(100% - 2.5rem, 62.5rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  -webkit-column-gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
     -moz-column-gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
          column-gap: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-information-events__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1.8rem + 1vw, 3rem);
  }
}

.p-information-events__list-wrap {
  padding: 52px 43px 60px;
  padding: 3.25rem 2.6875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-information-events__list-wrap {
    padding: 1.5rem 0.625rem;
  }
}

.p-information-events__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-information-events__item {
  display: grid;
  grid-template-columns: 7.5rem 0.9375rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
}
.p-information-events__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 3px;
  height: 0.1875rem;
  background-image: url(../../assets/images/information/line.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.p-information-events__item:last-child {
  padding-bottom: 0;
}
.p-information-events__item:last-child::before {
  display: none;
}

.p-information-events__date {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.31;
  text-align: right;
  color: #FFFFFF;
}

.p-information-events__moon {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: url(../../assets/images/information/informaition-moon-min.webp) no-repeat center/contain;
}

.p-information-events__name {
  font-family: "Hina Mincho", serif;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.31;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-information-events__name {
    font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  }
}

.p-information-events__cloud-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-information-events__cloud-wrap {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  }
}

.p-information-events__cloud {
  position: absolute;
  top: 60px;
  top: 3.75rem;
  left: 0;
  width: 383px;
  width: 23.9375rem;
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-information-events__cloud {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-width: 20rem;
    margin-inline: auto;
  }
}

.p-information-events__cloud-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 383/384;
}
@media screen and (max-width: 767px) {
  .p-information-events__cloud-img {
    aspect-ratio: auto;
  }
}

.p-information-events__side {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(16px, 13.2px + 0.875vw, 30px);
  gap: clamp(1rem, 0.825rem + 0.875vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-information-events__side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -5rem;
  }
}

.p-information-events__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 320px;
  min-height: 20rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-information-events__title {
    min-height: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
  }
}

.p-information-events__text {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-information-events__text {
    -ms-flex-item-align: auto;
        align-self: auto;
    text-align: center;
  }
}

/* ----- ご参拝にあたってのお願い ----- */
.p-information-notice {
  position: relative;
  padding-block: clamp(40px, 34px + 1.875vw, 70px);
  padding-block: clamp(2.5rem, 2.125rem + 1.875vw, 4.375rem);
  overflow: hidden;
}
.p-information-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/information/informaition-section-bg02.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-information-notice {
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}

.p-information-notice__box {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1330px);
  width: min(100% - 2.5rem, 83.125rem);
  margin-inline: auto;
  padding: clamp(32px, 27.2px + 1.5vw, 56px) clamp(24px, 8.8px + 4.75vw, 100px);
  padding: clamp(2rem, 1.7rem + 1.5vw, 3.5rem) clamp(1.5rem, 0.55rem + 4.75vw, 6.25rem);
  border: 1px solid rgba(0, 0, 0, .2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 19.2px + 0.25vw, 24px);
  gap: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  text-align: center;
}

.p-information-notice__title {
  font-family: "Hina Mincho", serif;
  font-size: clamp(18px, 17.6px + 0.125vw, 20px);
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1;
  letter-spacing: 0.11em;
  color: #1a2026;
}

.p-information-notice__text {
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  color: #1a2026;
  text-align: justify;
}
.p-information-notice__text p + p {
  margin-top: 0;
}

/* ----- 供養について ----- */
.p-information-memorial {
  padding-block: 164px 100px;
  padding-block: 10.25rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-information-memorial {
    padding-block: clamp(5rem, 4.75rem + 1.25vw, 6.25rem) clamp(3.75rem, 3.5rem + 1.25vw, 5rem);
  }
}

.p-information-memorial__cards {
  margin-top: clamp(32px, 30px + 0.625vw, 42px);
  margin-top: clamp(2rem, 1.875rem + 0.625vw, 2.625rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-information-memorial__cards {
    grid-template-columns: 1fr;
  }
}

.p-information-memorial-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
  overflow: hidden;
}
.p-information-memorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-information-memorial-card:hover::before {
    background-color: rgba(0, 0, 0, .15);
  }
  .p-information-memorial-card:hover .p-information-memorial-card__link.c-btn::after {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
}

.p-information-memorial-card__visual {
  position: relative;
  aspect-ratio: 472/320;
  overflow: hidden;
}
.p-information-memorial-card__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-information-memorial-card__title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-inline: 16px;
  padding-inline: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: clamp(22px, 20.8px + 0.375vw, 28px);
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
}

.p-information-memorial-card__body {
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  background-color: #1a2026;
  position: relative;
}
.p-information-memorial-card__body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-0.04deg, rgb(26, 32, 38) 6.34%, rgba(0, 0, 0, .5) 74.55%);
  pointer-events: none;
}

.p-information-memorial-card__text {
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.p-information-memorial-card__link.c-btn {
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

/***************************************
境内のご案内
****************************************/
.p-map__fv .l-fv__text {
  max-width: 440px;
  max-width: 27.5rem;
  margin-inline: auto;
}

/* ----- 各寺院のご案内 ----- */
.p-map-detail {
  position: relative;
}
.p-map-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/map/map-bg01.webp) no-repeat center/cover;
  z-index: 0;
  pointer-events: none;
}
.p-map-detail::after {
  content: "";
  position: absolute;
  bottom: -80px;
  bottom: -5rem;
  right: -10px;
  right: -0.625rem;
  width: min(35%, 310px);
  width: min(35%, 19.375rem);
  height: min(20%, 193px);
  height: min(20%, 12.0625rem);
  background: url(../../assets/images/map/pine02.webp) no-repeat center/contain;
  z-index: 3;
}

.p-map-detail__bg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.p-map-detail__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 414px;
  width: 25.875rem;
  height: 414px;
  height: 25.875rem;
  background: url(../../assets/images/map/pine01.webp) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-map-detail__bg::before {
    display: none;
  }
}

.p-map-detail__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 960px);
  width: min(100% - 2.5rem, 60rem);
  padding-block: 100px 158px;
  padding-block: 6.25rem 9.875rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-map-detail__inner {
    width: calc(100% - 2.5rem);
    gap: clamp(2.1875rem, 2rem + 0.9375vw, 3.125rem);
    padding-block: 5rem 7.5rem;
  }
}

.p-map-detail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(24px, 9.8px + 4.4375vw, 95px);
  gap: clamp(1.5rem, 0.6125rem + 4.4375vw, 5.9375rem);
}

.p-map-detail__head-cloud {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100px;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-map-detail__head-cloud {
    width: 4.375rem;
  }
}
.p-map-detail__head-cloud img {
  width: 100%;
  height: auto;
  display: block;
}

.p-map-detail__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.121em;
  text-align: center;
  color: #9a8060;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-map-detail__title {
    font-size: 1.125rem;
    white-space: normal;
  }
}

.p-map-detail__lead {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.161em;
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-map-detail__lead {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
  }
}

.p-map-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-map-detail__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-map-detail__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-map-detail__card-link {
  display: block;
  position: relative;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-map-detail__card-link:hover .p-map-detail__card-image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-map-detail__card-image {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-map-detail__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-map-detail__card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.217em;
  text-align: center;
  color: #FFFFFF;
  padding-block: 6.5px;
  padding-block: 0.40625rem;
}
@media screen and (max-width: 767px) {
  .p-map-detail__card-name {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}

/* ----- 寺院詳細 ----- */
.p-map-temple {
  padding-block: 120px 100px;
  padding-block: 7.5rem 6.25rem;
  position: relative;
}
.p-map-temple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-map-temple {
    padding-block: 5rem;
  }
}

.p-map-temple--bg02::before {
  background: url(../../assets/images/map/map-bg02.webp) no-repeat center/cover;
}

.p-map-temple--bg03::before {
  background: url(../../assets/images/map/map-bg03.webp) no-repeat center/cover;
}

.p-map-temple--bg04::before {
  background: url(../../assets/images/map/map-bg04.webp) no-repeat center/cover;
}

.p-map-temple--bg05::before {
  background: url(../../assets/images/map/map-bg05.webp) no-repeat center/cover;
}

.p-map-temple--bg06::before {
  background: url(../../assets/images/map/map-bg06.webp) no-repeat center/cover;
}

.p-map-temple--bg07::before {
  background: url(../../assets/images/map/map-bg07.webp) no-repeat center/cover;
}

.p-map-temple--bg04::after {
  content: "";
  position: absolute;
  top: -90px;
  top: -5.625rem;
  left: 0;
  width: min(35%, 310px);
  width: min(35%, 19.375rem);
  height: min(20%, 193px);
  height: min(20%, 12.0625rem);
  background: url(../../assets/images/map/pine03.webp) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-map-temple--bg04::after {
    top: -3.125rem;
    width: min(35%, 12.0625rem);
    height: min(20%, 7.5rem);
  }
}

.p-map-temple--bg06::after {
  content: "";
  position: absolute;
  top: -90px;
  top: -5.625rem;
  right: -10px;
  right: -0.625rem;
  width: min(35%, 310px);
  width: min(35%, 19.375rem);
  height: min(20%, 193px);
  height: min(20%, 12.0625rem);
  background: url(../../assets/images/map/pine04.webp) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-map-temple--bg06::after {
    width: min(35%, 12.0625rem);
    height: min(20%, 7.5rem);
  }
}

.p-map-temple--bg07::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  left: -2.5rem;
  width: min(35%, 310px);
  width: min(35%, 19.375rem);
  height: min(20%, 193px);
  height: min(20%, 12.0625rem);
  background: url(../../assets/images/map/pine05.webp) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-map-temple--bg07::after {
    width: min(35%, 12.0625rem);
    height: min(20%, 7.5rem);
  }
}

.p-map-temple__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1020px);
  width: min(100% - 2.5rem, 63.75rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-map-temple__inner {
    gap: clamp(3.125rem, 2.75rem + 1.875vw, 5rem);
  }
}

.p-map-temple__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
  gap: 2.9375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-map-temple__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    padding-left: 0;
  }
}

.p-map-temple--reverse .p-map-temple__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-map-temple--reverse .p-map-temple__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-map-temple__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-map-temple__content {
    gap: 2.5rem;
  }
}

.p-map-temple__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
}
@media only screen and (max-width: 1230px) {
  .p-map-temple__head {
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-map-temple__head {
    padding-inline: 1.25rem;
  }
}

@media only screen and (max-width: 1230px) {
  .p-map-temple--reverse .p-map-temple__head {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-map-temple--reverse .p-map-temple__head {
    padding-inline: 1.25rem;
  }
}

.p-map-temple__head-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  gap: 2.1875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-map-temple__head-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -112px;
  left: -7rem;
  width: 103px;
  width: 6.4375rem;
  height: 103px;
  height: 6.4375rem;
  background: url(../../assets/images/map/map-temple-title-decoration.svg) no-repeat center/contain;
  pointer-events: none;
}
.p-map-temple__head-title .c-section-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-map-temple__head-title::before {
    left: -2.5rem;
    width: 4rem;
    height: 4rem;
  }
}

.p-map-temple--reverse .p-map-temple__head-title::before {
  left: 89px;
  left: 5.5625rem;
  right: auto;
  background-image: url(../../assets/images/map/map-temple-title-decoration02.svg);
}
@media screen and (max-width: 767px) {
  .p-map-temple--reverse .p-map-temple__head-title::before {
    left: 3.125rem;
    width: 4rem;
    height: 4rem;
  }
}

.p-map-temple__label {
  font-family: "Hina Mincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #9a8060;
}
@media screen and (max-width: 767px) {
  .p-map-temple__label {
    letter-spacing: 0.25em;
  }
}

.p-map-temple__priest {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  font-family: "Hina Mincho", serif;
  text-align: right;
  white-space: nowrap;
}

.p-map-temple__priest-label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.188em;
  color: #9a8060;
}

.p-map-temple__priest-name {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.245em;
  color: #1c1a16;
}

.p-map-temple__lead {
  width: 100%;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  text-align: justify;
  color: #000000;
}

.p-map-temple__role {
  border-left: 1.133px solid #9a8060;
  border-left: 0.0708125rem solid #9a8060;
  padding-left: 30px;
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-map-temple__role {
    padding-left: 0.9375rem;
  }
}

.p-map-temple__role-label {
  font-family: "Hina Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #9a8060;
}

.p-map-temple__role-text {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  color: #000000;
}

.p-map-temple__photos {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  -ms-flex: 0 0 31.25rem;
      flex: 0 0 31.25rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-map-temple__photos {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

.p-map-temple__photo {
  overflow: hidden;
  margin: 0;
}
.p-map-temple__photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-map-temple__photo--01 img {
  aspect-ratio: 500/323;
}

.p-map-temple__photo--02 img {
  aspect-ratio: 500/305;
}

/***************************************
納骨堂・永代供養
****************************************/
/* ----- FV ----- */
.p-memorial__fv {
  position: relative;
  color: #f8f7f2;
}
.p-memorial__fv picture,
.p-memorial__fv img {
  display: block;
  width: 100%;
  aspect-ratio: 1536/964;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv picture,
  .p-memorial__fv img {
    min-height: 100svh;
    aspect-ratio: 750/998;
  }
}

.p-memorial__fv-inner {
  position: absolute;
  top: 15%;
  left: calc(50% - 38.75rem);
  z-index: 2;
  width: min(100% - 40px, 980px);
  width: min(100% - 2.5rem, 61.25rem);
  padding: 80px 44px 140px;
  padding: 5rem 2.75rem 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-inner {
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 2.5rem);
    padding: 0 0.625rem 0.625rem;
  }
}

.p-memorial__fv-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.p-memorial__fv-main {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 525px;
          flex: 0 1 525px;
  -ms-flex: 0 1 32.8125rem;
      flex: 0 1 32.8125rem;
  max-width: 525px;
  max-width: 32.8125rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-main {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    width: 100%;
  }
}

.p-memorial__fv-label {
  font-family: "Hina Mincho", serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b79a5b;
  position: relative;
}
.p-memorial__fv-label::before {
  content: "";
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: -15px;
  left: -0.9375rem;
  width: 100px;
  width: 6.25rem;
  height: 145px;
  height: 9.0625rem;
  background: url(../../assets/images/common/cloud-gold01.webp) no-repeat center/cover;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-label::before {
    top: -2.1875rem;
    left: -0.625rem;
    width: 3.75rem;
    height: 5.625rem;
  }
}

.p-memorial__fv-title {
  margin-top: 36px;
  margin-top: 2.25rem;
  font-family: "Hina Mincho", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.1875em;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-title {
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    letter-spacing: 0.12em;
    line-height: 1.5;
    margin-top: 0.625rem;
  }
}

.p-memorial__fv-lead {
  max-width: 460px;
  max-width: 28.75rem;
  margin-top: 44px;
  margin-top: 2.75rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-lead {
    margin-top: 1.25rem;
    max-width: none;
    line-height: 2;
  }
}

.p-memorial__fv-nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 128px;
  padding-top: 8rem;
  position: relative;
}
.p-memorial__fv-nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  width: 0.0625rem;
  height: 62%;
  background-color: rgba(248, 247, 242, .2);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-nav::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-nav {
    padding-top: 0;
  }
}

.p-memorial__fv-nav-list {
  width: 280px;
  width: 17.5rem;
  padding-left: 33px;
  padding-left: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-nav-list {
    width: 100%;
    padding-left: 0;
  }
}

.p-memorial__fv-nav-item {
  border-bottom: 1px solid rgba(248, 247, 242, .2);
}
.p-memorial__fv-nav-item:last-child {
  border-bottom: none;
}

.p-memorial__fv-nav-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  padding: 18px 0;
  padding: 1.125rem 0;
  font-family: "Hina Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(248, 247, 242, .82);
}
.p-memorial__fv-nav-text::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  width: 1.125rem;
  height: 1px;
  background-color: #b79a5b;
}

.p-memorial__fv-scroll {
  position: absolute;
  bottom: 3%;
  left: 50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(248, 247, 242, .32);
}
@media screen and (max-width: 480px) {
  .p-memorial__fv-scroll {
    display: none;
  }
}

.p-memorial__fv-scroll-line {
  width: 1px;
  height: 48px;
  height: 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 247, 242, .4)), to(rgba(248, 247, 242, 0)));
  background: linear-gradient(180deg, rgba(248, 247, 242, .4) 0%, rgba(248, 247, 242, 0) 100%);
  -webkit-animation: scroll 1s ease infinite;
          animation: scroll 1s ease infinite;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-scroll-line {
    height: 1.875rem;
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-memorial__fv-scroll-text {
  font-family: "EB Garamond", serif;
  font-size: 9px;
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-memorial__fv-scroll-text {
    font-size: 0.5rem;
  }
}

.p-memorial__label {
  font-family: "EB Garamond", serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b79a5b;
}

/* ----- Concerns ----- */
.p-memorial__concerns {
  position: relative;
  padding-block: 120px 175px;
  padding-block: 7.5rem 10.9375rem;
  background-color: #FFFFFF;
  overflow: hidden;
}
.p-memorial__concerns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/memorial/memorial-bg01.webp) no-repeat center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns {
    padding-block: 3.75rem 5rem;
  }
}

.p-memorial__concerns-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1050px);
  width: min(100% - 2.5rem, 65.625rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-memorial__concerns-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 803px;
  max-width: 50.1875rem;
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-content {
    padding-top: 0;
  }
}

.p-memorial__concerns-lead {
  font-family: "Hina Mincho", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
  color: #6b6b6b;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-lead {
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    line-height: 2;
  }
}

.p-memorial__concerns-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(17, 25, 29, .14);
  border-left: 1px solid rgba(17, 25, 29, .14);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-list {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

.p-memorial__concerns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  min-height: 84px;
  min-height: 5.25rem;
  padding: 15px 32px;
  padding: 0.9375rem 2rem;
  border-right: 1px solid rgba(17, 25, 29, .14);
  border-bottom: 1px solid rgba(17, 25, 29, .14);
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #1a2026;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-item {
    min-height: 3.75rem;
    padding: 1.25rem 1.25rem;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 1.5;
  }
}
.p-memorial__concerns-item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  width: 1rem;
  height: 1px;
  background-color: #b79a5b;
}

.p-memorial__concerns-side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-side {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.25rem 0.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-memorial__concerns-side .u-vertical-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}

.p-memorial__concerns-side-title {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 1em;
  color: #11191d;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-side-title {
    margin-top: 0;
    font-size: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    line-height: 1.8;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .p-memorial__concerns-side-title:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-memorial__concerns-side-title:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-memorial__concerns-side-label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 4px;
  margin-top: 0.25rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .p-memorial__concerns-side-label {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-top: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-align: center;
  }
}

/* ----- About ----- */
.p-memorial__section-bg {
  position: relative;
  overflow: hidden;
}
.p-memorial__section-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/memorial/memorial-bg02.webp) no-repeat center/cover;
  pointer-events: none;
  z-index: 0;
}

.p-memorial__about {
  padding-block: 120px;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__about {
    padding-block: 5rem 0;
  }
}

.p-memorial__about-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 980px);
  width: min(100% - 2.5rem, 61.25rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.p-memorial__about-inner .p-memorial__label {
  font-family: "Hina Mincho", serif;
}

.p-memorial__about-title {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.18em;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__about-title {
    margin-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__about-lead {
  margin-top: 8px;
  margin-top: 0.5rem;
  width: min(83%, 960px);
  width: min(83%, 60rem);
  margin-inline: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.15;
  color: rgba(248, 247, 242, .65);
}
@media screen and (max-width: 767px) {
  .p-memorial__about-lead {
    margin-top: 1.875rem;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 2;
  }
}

.p-memorial__about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 80px;
  margin-top: 5rem;
  border-top: 1px solid rgba(248, 247, 242, .18);
  border-left: 1px solid rgba(248, 247, 242, .18);
}
@media screen and (max-width: 767px) {
  .p-memorial__about-cards {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
}

.p-memorial__about-card {
  padding: 45px 32px 36px;
  padding: 2.8125rem 2rem 2.25rem;
  border-right: 1px solid rgba(248, 247, 242, .18);
  border-bottom: 1px solid rgba(248, 247, 242, .18);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-memorial__about-card {
    padding: 1.875rem 1.25rem 1.875rem;
  }
}

.p-memorial__about-card-title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #f8f7f2;
}
.p-memorial__about-card-title::after {
  content: "";
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  margin-top: 24px;
  margin-top: 1.5rem;
  background-color: #b79a5b;
}

.p-memorial__about-card-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(248, 247, 242, .65);
}

/* ----- Features ----- */
.p-memorial__features {
  position: relative;
  padding-block: 120px;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__features {
    padding-block: 5rem;
  }
}

.p-memorial__features-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 980px);
  width: min(100% - 2.5rem, 61.25rem);
  margin-inline: auto;
}

.p-memorial__features-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.p-memorial__features-head-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 400px;
          flex: 0 1 400px;
  -ms-flex: 0 1 25rem;
      flex: 0 1 25rem;
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-head-title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    width: 100%;
  }
}

.p-memorial__features-title {
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #f8f7f2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-title {
    padding-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__features-lead {
  padding-top: 28px;
  padding-top: 1.75rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(248, 247, 242, .65);
}
@media screen and (max-width: 767px) {
  .p-memorial__features-lead {
    padding-top: 0;
  }
}

.p-memorial__features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  margin-top: 5.625rem;
  border-top: 1px solid #b79a5b;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-list {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
}

.p-memorial__features-item {
  padding: 49px 45px 0;
  padding: 3.0625rem 2.8125rem 0;
  border-right: 1px solid #b79a5b;
  text-align: left;
}
.p-memorial__features-item:nth-child(2), .p-memorial__features-item:nth-child(3) {
  padding-left: 44px;
  padding-left: 2.75rem;
}
.p-memorial__features-item:first-child {
  padding-left: 0;
}
.p-memorial__features-item:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-item {
    padding: 1.875rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid #b79a5b;
  }
  .p-memorial__features-item:nth-child(2), .p-memorial__features-item:nth-child(3) {
    padding-left: 0;
  }
}

.p-memorial__features-num {
  font-family: "EB Garamond", serif;
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #b79a5b;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-num {
    font-size: clamp(2.5rem, 2.3rem + 1vw, 3.5rem);
    line-height: 1;
  }
}

.p-memorial__features-item-title {
  margin-top: 28px;
  margin-top: 1.75rem;
  font-family: "Hina Mincho", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__features-item-title {
    margin-top: 0.625rem;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    line-height: 1.7;
  }
}

.p-memorial__features-item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1;
  color: rgba(248, 247, 242, .65);
}

/* ----- Pricing ----- */
.p-memorial__pricing {
  padding-block: 120px;
  padding-block: 7.5rem;
  background-color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing {
    padding-block: 5rem;
  }
}

.p-memorial__pricing-inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.p-memorial__pricing-head {
  padding-bottom: 41px;
  padding-bottom: 2.5625rem;
  border-bottom: 1px solid rgba(17, 25, 29, .14);
}

.p-memorial__pricing-title {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #1a2026;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-title {
    margin-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__pricing-lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.15;
  color: #6b6b6b;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-lead {
    margin-top: 1.875rem;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 1.7;
  }
}

.p-memorial__pricing-card {
  margin-top: 72px;
  margin-top: 4.5rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(17, 25, 29, .14);
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-card {
    margin-top: 3rem;
  }
}

.p-memorial__pricing-card-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  padding: 20px 48px;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid rgba(17, 25, 29, .14);
  font-family: "Hina Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #11191d;
}
.p-memorial__pricing-card-label::before {
  content: "";
  width: 16px;
  width: 1rem;
  height: 1px;
  background-color: #b79a5b;
}

.p-memorial__pricing-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  padding: 70px 40px 50px;
  padding: 4.375rem 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}

.p-memorial__pricing-card-text {
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #4f4f50;
}

.p-memorial__pricing-card-price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Hina Mincho", serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  color: #11191d;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-card-price {
    font-size: clamp(1.375rem, 1.35rem + 0.125vw, 1.5rem);
    line-height: 1;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.p-memorial__pricing-card-price-num {
  font-family: "EB Garamond", serif;
  font-size: 64px;
  font-size: 4rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-memorial__pricing-card-price-num {
    font-size: clamp(3.5rem, 3.4rem + 0.5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: right;
  }
}

.p-memorial__pricing-note {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 2px;
  padding-left: 0.125rem;
  font-family: "Hina Mincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #6b6b6b;
}

/* ----- Access & Temple ----- */
.p-memorial__access {
  position: relative;
  padding-block: 120px;
  padding-block: 7.5rem;
  border-top: 1px solid rgba(17, 25, 29, .14);
  background: #1a2026 url(../../assets/images/memorial/memorial-bg03.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-memorial__access {
    padding-block: 5rem;
  }
}

.p-memorial__access-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 980px);
  width: min(100% - 2.5rem, 61.25rem);
  margin-inline: auto;
}

.p-memorial__access-title {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-memorial__access-title {
    margin-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__access-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  gap: 4rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__access-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.p-memorial__access-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 458px;
          flex: 0 0 458px;
  -ms-flex: 0 0 28.625rem;
      flex: 0 0 28.625rem;
}
.p-memorial__access-image img {
  display: block;
  width: 100%;
  aspect-ratio: 458/344;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-memorial__access-image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

.p-memorial__access-lead {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.15;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-memorial__access-lead {
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 2;
  }
}

.p-memorial__access-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-memorial__access-list {
  margin-top: 48px;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.p-memorial__access-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  padding: 21px 0 20px;
  padding: 1.3125rem 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.p-memorial__access-term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  -ms-flex: 0 0 4rem;
      flex: 0 0 4rem;
  font-family: "Hina Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #b79a5b;
}

.p-memorial__access-desc {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-memorial__access-desc {
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  }
}

/* ----- Flow ----- */
.p-memorial__flow {
  position: relative;
  padding-block: 120px;
  padding-block: 7.5rem;
  border-top: 1px solid rgba(17, 25, 29, .14);
  background: #f8f7f2 url(../../assets/images/memorial/memorial-bg04.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-memorial__flow {
    padding-block: 5rem;
  }
}

.p-memorial__flow-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.p-memorial__flow-label {
  font-family: "Hina Mincho", serif;
}

.p-memorial__flow-title {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #11191d;
}
@media screen and (max-width: 767px) {
  .p-memorial__flow-title {
    margin-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__flow-lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.15;
  color: #6b6b6b;
}

.p-memorial__flow-list {
  margin-top: 72px;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(17, 25, 29, .14);
}

.p-memorial__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
  padding: 37px 0 36px;
  padding: 2.3125rem 0 2.25rem;
  border-bottom: 1px solid rgba(17, 25, 29, .14);
}
@media screen and (max-width: 767px) {
  .p-memorial__flow-item {
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}

.p-memorial__flow-num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
  -ms-flex: 0 0 3.5rem;
      flex: 0 0 3.5rem;
  font-family: "EB Garamond", serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #b79a5b;
}
@media screen and (max-width: 767px) {
  .p-memorial__flow-num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.5rem;
            flex: 0 0 2.5rem;
    font-size: clamp(2.1875rem, 2.125rem + 0.3125vw, 2.5rem);
    line-height: 1;
  }
}

.p-memorial__flow-item-title {
  padding-top: 4px;
  padding-top: 0.25rem;
  font-family: "Hina Mincho", serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: #11191d;
}

.p-memorial__flow-item-text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #6b6b6b;
}

/* ----- FAQ ----- */
.p-memorial__faq {
  padding-block: 120px;
  padding-block: 7.5rem;
  background-color: #1a2026;
}
@media screen and (max-width: 767px) {
  .p-memorial__faq {
    padding-block: 5rem;
  }
}

.p-memorial__faq-inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.p-memorial__faq-title {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Hina Mincho", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__faq-title {
    margin-top: 0;
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__faq-list {
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__faq-list {
    margin-top: 2.5rem;
  }
}

.p-memorial__faq-item {
  border-top: 1px solid rgba(248, 247, 242, .16);
}
.p-memorial__faq-item:last-child {
  border-bottom: 1px solid rgba(248, 247, 242, .16);
}

.p-memorial__faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
  width: 100%;
  padding: 28px 0;
  padding: 1.75rem 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-memorial__faq-question {
    padding: 1.25rem 0;
  }
}

.p-memorial__faq-q {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #b79a5b;
}

.p-memorial__faq-question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Hina Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__faq-question-text {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    line-height: 1.7;
  }
}

.p-memorial__faq-icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}
.p-memorial__faq-icon::before, .p-memorial__faq-icon::after {
  content: "";
  position: absolute;
  background-color: #b79a5b;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-memorial__faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-memorial__faq-icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.js-accordion.open .p-memorial__faq-icon::after {
  opacity: 0;
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
}

.p-memorial__faq-answer {
  display: none;
  padding: 0 0 28px 36px;
  padding: 0 0 1.75rem 2.25rem;
}

.p-memorial__faq-answer-text {
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1;
  color: rgba(248, 247, 242, .65);
}

/* ----- Contact ----- */
.p-memorial__contact {
  position: relative;
  padding-block: 120px;
  padding-block: 7.5rem;
  background: #11191d url(../../assets/images/memorial/memorial-bg05.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-memorial__contact {
    padding-block: 5rem;
  }
}

.p-memorial__contact-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 980px);
  width: min(100% - 2.5rem, 61.25rem);
  margin-inline: auto;
  text-align: center;
}

.p-memorial__contact-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
}

.p-memorial__contact-head-line {
  width: 40px;
  width: 2.5rem;
  height: 1px;
  background-color: #b79a5b;
}

.p-memorial__contact-title {
  margin-top: 56px;
  margin-top: 3.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-memorial__contact-title {
    margin-top: 1.25rem;
    font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    line-height: 1.7;
  }
}

.p-memorial__contact-lead {
  margin-top: 32px;
  margin-top: 2rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.15;
  color: rgba(248, 247, 242, .65);
}
@media screen and (max-width: 767px) {
  .p-memorial__contact-lead {
    margin-top: 1.875rem;
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 2;
    text-align: left;
  }
}

.p-memorial__contact-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-memorial__contact-actions {
    gap: 1rem;
    margin-top: 2.5rem;
  }
}
.p-memorial__contact-actions .p-contact__content-body-tel {
  color: #f8f7f2;
}

.p-memorial__contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
  min-width: 210px;
  min-width: 13.125rem;
  min-height: 54px;
  min-height: 3.375rem;
  padding: 16px 37px;
  padding: 1rem 2.3125rem;
  border: 1px solid rgba(248, 247, 242, .2);
  font-family: "Hina Mincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #f8f7f2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-memorial__contact-btn {
    min-width: 17.5rem;
    padding: 0.625rem 0.9375rem;
    font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    line-height: 1.5;
    gap: 0.3125rem;
  }
}
.p-memorial__contact-btn.--primary {
  background-color: #b79a5b;
  border-color: #b79a5b;
  color: #11191d;
}
@media (any-hover: hover) {
  .p-memorial__contact-btn:hover .p-memorial__contact-btn-arrow {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
}

.p-memorial__contact-btn-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

/***************************************
お知らせ一覧（home.php）
****************************************/
.p-news-archive {
  background-color: #FFFFFF;
  padding-block: 120px;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-archive {
    padding-block: 5rem;
  }
}

.p-news-archive__inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.p-news-archive__list {
  border-top: 1px solid #d4d4d4;
}

.p-news-archive__item {
  border-bottom: 1px solid #d4d4d4;
}

.p-news-archive__link {
  display: grid;
  grid-template-columns: 6.875rem 5.625rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  padding: 28px 16px;
  padding: 1.75rem 1rem;
  color: #1c1a16;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news-archive__link {
    grid-template-columns: 4.0625rem 1fr;
    row-gap: 0.5rem;
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    padding: 1.25rem 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-news-archive__link:hover {
    background-color: #1B2028;
    color: #FFFFFF;
  }
  .p-news-archive__link:hover .p-news-archive__date,
  .p-news-archive__link:hover .p-news-archive__category,
  .p-news-archive__link:hover .p-news-archive__text {
    color: #FFFFFF;
  }
  .p-news-archive__link:hover .p-news-archive__category {
    border-color: #FFFFFF;
  }
}

.p-news-archive__date {
  font-family: "Crimson Text", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #767676;
}
@media screen and (max-width: 767px) {
  .p-news-archive__date {
    font-size: 0.75rem;
  }
}

.p-news-archive__category {
  justify-self: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  border: 1px solid #c3c3c3;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.p-news-archive__text {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #1c1a16;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news-archive__text {
    grid-column: 1/-1;
    font-size: 0.875rem;
  }
}

.p-news-archive__empty {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  text-align: center;
  color: #767676;
}

/***************************************
お知らせ詳細（single.php）
****************************************/
.p-news-single {
  background-color: #FFFFFF;
}

.p-news-single__inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.p-news-single__head {
  padding-block: 200px 40px;
  padding-block: 12.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__head {
    padding-block: 6.25rem 2.5rem;
  }
}

.p-news-single__category {
  display: inline-block;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  border: 1px solid #cacaca;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.16em;
  color: #9d9d9d;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-news-single__category:hover {
    opacity: 0.7;
  }
}

.p-news-single__date {
  display: block;
  margin-top: 18px;
  margin-top: 1.125rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #818181;
}

.p-news-single__title {
  margin-top: 28px;
  margin-top: 1.75rem;
  font-family: "Hina Mincho", serif;
  font-size: clamp(20px, 19.2px + 0.25vw, 24px);
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  line-height: 1.9;
  letter-spacing: 0.16em;
  color: #1c1a16;
}

.p-news-single__divider {
  margin-top: 40px;
  margin-top: 2.5rem;
  border: none;
  border-top: 1px solid #d7d7d7;
}

.p-news-single__body {
  padding-block: 72px;
  padding-block: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__body {
    padding-block: 0 4.375rem;
  }
}

.p-news-single__content {
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2.9;
  letter-spacing: 0.07em;
  color: #2a2822;
}
.p-news-single__content p + p {
  margin-top: 1em;
}

.p-news-single__nav {
  background-color: #fbfbfb;
  border-top: 1px solid #d7d7d7;
}

.p-news-single__nav-inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 143px;
  min-height: 8.9375rem;
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-inner {
    grid-template-columns: 1fr auto 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    min-height: auto;
    padding-block: 1.25rem;
  }
}

.p-news-single__nav-prev,
.p-news-single__nav-next {
  padding-block: 36px;
  padding-block: 2.25rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__nav-prev,
  .p-news-single__nav-next {
    padding-block: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-prev,
  .p-news-single__nav-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
  }
}

.p-news-single__nav-prev {
  padding-right: 40px;
  padding-right: 2.5rem;
  border-right: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .p-news-single__nav-prev {
    padding-right: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-prev {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-right: 0.75rem;
    border-right: 1px solid #d7d7d7;
    border-bottom: none;
  }
}

.p-news-single__nav-next {
  padding-left: 40px;
  padding-left: 2.5rem;
  border-left: 1px solid #d7d7d7;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-news-single__nav-next {
    padding-left: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-next {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0.75rem;
    border-left: 1px solid #d7d7d7;
    border-top: none;
    text-align: right;
  }
}

.p-news-single__nav-link {
  display: block;
  color: #1c1a16;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-news-single__nav-link:hover {
    opacity: 0.7;
  }
}
.p-news-single__nav-link--next .p-news-single__nav-label {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-news-single__nav-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #9d9d9d;
}

.p-news-single__nav-arrow {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  border-left: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-news-single__nav-arrow--next {
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #9d9d9d;
  border-top: 1px solid #9d9d9d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-news-single__nav-title {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Hina Mincho", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #1c1a16;
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-title {
    display: none;
  }
}

.p-news-single__nav-date {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #9d9d9d;
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-date {
    display: none;
  }
}

.p-news-single__nav-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 40px;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 480px) {
  .p-news-single__nav-back {
    padding-inline: 1rem;
  }
}

.p-news-single__nav-back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  color: #9d9d9d;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-news-single__nav-back-link:hover {
    opacity: 0.7;
  }
}

.p-news-single__nav-list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  width: 20px;
  width: 1.25rem;
}
.p-news-single__nav-list-icon span {
  display: block;
  height: 1px;
  background-color: #9d9d9d;
}

.p-news-single__nav-back-text {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.p-news-single__empty {
  padding: clamp(60px, 48px + 3.75vw, 120px) 20px;
  padding: clamp(3.75rem, 3rem + 3.75vw, 7.5rem) 1.25rem;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  text-align: center;
  color: #767676;
}

/***************************************
授与品（page-shop.php）
****************************************/
/* ----- FV ----- */
.p-shop__fv {
  position: relative;
}
.p-shop__fv picture,
.p-shop__fv img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/592;
}
@media screen and (max-width: 767px) {
  .p-shop__fv picture,
  .p-shop__fv img {
    aspect-ratio: 750/998;
  }
}

.p-shop__fv-inner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
  margin-inline: auto;
  padding-block: 80px;
  padding-block: 5rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  top: 15%;
  left: 37%;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-shop__fv-inner {
    width: 100%;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 3.75rem;
    padding-inline: 1.25rem;
    text-align: center;
  }
}

.p-shop__fv-content {
  width: min(100%, 458px);
  width: min(100%, 28.625rem);
}
@media screen and (max-width: 767px) {
  .p-shop__fv-content {
    width: 100%;
  }
}

.p-shop__fv-title {
  color: #000000;
  font-size: 36px;
  font-size: 2.25rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-shop__fv-title {
    font-size: clamp(1.375rem, 1.2rem + 0.875vw, 2.25rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-shop__fv-text {
  margin-block: 15px 0;
  margin-block: 0.9375rem 0;
  margin-left: 20px;
  margin-left: 1.25rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-shop__fv-text {
    margin-block: 2rem 0;
    margin-left: 0;
    text-align: center;
  }
}

/* ----- Content ----- */
.p-shop-page__content {
  position: relative;
  padding-block: 175px 120px;
  padding-block: 10.9375rem 7.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-shop-page__content {
    padding-block: clamp(5rem, 4.125rem + 4.375vw, 9.375rem) clamp(5rem, 4.5rem + 2.5vw, 7.5rem);
  }
}
.p-shop-page__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../assets/images/shop/shop-bg01.webp) no-repeat top left/100%;
  pointer-events: none;
}
.p-shop-page__content::after {
  content: "";
  position: absolute;
  top: 34px;
  top: 2.125rem;
  left: 0;
  width: min(25%, 294px);
  width: min(25%, 18.375rem);
  aspect-ratio: 294/245;
  background: url(../../assets/images/shop/shop-decoration01.webp) no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-shop-page__content::after {
    top: 1.25rem;
    width: min(30%, 11.25rem);
    aspect-ratio: 180/150;
  }
}

.p-shop-page__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 960px);
  width: min(100% - 2.5rem, 60rem);
  margin-inline: auto;
}

.p-shop-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  text-align: center;
}

.p-shop-page__title {
  font-family: "Hina Mincho", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.11em;
  color: #000000;
}
.p-shop-page__title::after {
  content: "";
  display: block;
  width: 42px;
  width: 2.625rem;
  height: 3.5px;
  height: 0.21875rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
  margin-inline: auto;
  background-color: #000000;
}

.p-shop-page__lead {
  font-family: "Hina Mincho", serif;
  font-size: clamp(14px, 13.8px + 0.0625vw, 15px);
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  line-height: 2;
  color: #000000;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-shop-page__lead {
    margin-top: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
  }
}

.p-shop-page__category {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-shop-page__category-title {
  font-family: "Hina Mincho", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: left;
  color: #b79a5b;
}
@media screen and (max-width: 767px) {
  .p-shop-page__category-title {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  }
}

.p-shop-page__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 35rem;
  gap: 44px 34px;
  gap: 2.75rem 2.125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-shop-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 1.5rem 1rem;
    margin-top: 0.625rem;
  }
}
@media only screen and (max-width: 550px) {
  .p-shop-page__list {
    grid-template-columns: repeat(auto-fill, minmax(18.4375rem, 1fr));
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
}
.p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.p-shop-page__list.p-shop-page__list--head-spacer::after {
  content: "";
  grid-column: 3;
  grid-row: 1;
  min-height: 560px;
  min-height: 35rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(1),
  .p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(2),
  .p-shop-page__list.p-shop-page__list--head-spacer .p-shop-page__list-item:nth-child(3), .p-shop-page__list.p-shop-page__list--head-spacer::after {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
  .p-shop-page__list.p-shop-page__list--head-spacer::after {
    content: none;
  }
}

.p-shop-page__category:nth-of-type(2) {
  position: relative;
  isolation: isolate;
}
.p-shop-page__category:nth-of-type(2) .p-shop-page__category-title,
.p-shop-page__category:nth-of-type(2) .p-shop-page__list {
  position: relative;
  z-index: 1;
}
.p-shop-page__category:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: -120px;
  top: -7.5rem;
  right: calc(52% - 50vw);
  z-index: -1;
  width: min(25%, 292px);
  width: min(25%, 18.25rem);
  aspect-ratio: 292/261;
  background: url(../../assets/images/shop/shop-decoration02.webp) no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-shop-page__category:nth-of-type(2)::after {
    top: -3.75rem;
    width: min(30%, 11.25rem);
    aspect-ratio: 180/150;
  }
}

.p-shop-page__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 295px;
  max-width: 18.4375rem;
  height: 100%;
  min-height: 560px;
  min-height: 35rem;
  min-width: 0;
  justify-self: center;
  border: 1px solid #d4d4d4;
  background-color: #d4d4d4;
}
@media screen and (max-width: 767px) {
  .p-shop-page__list-item {
    height: auto;
    min-height: 0;
  }
}

/* ----- Card ----- */
.p-shop__card-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 262px;
  height: 16.375rem;
  background-color: #ececec;
  overflow: hidden;
}
.p-shop__card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 290/262;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: #FFFFFF;
}

.p-shop__card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 31px 20px 30px;
  padding: 1.9375rem 1.25rem 1.875rem;
  background-color: #efece6;
}
@media screen and (max-width: 767px) {
  .p-shop__card-body {
    gap: clamp(1.5625rem, 1.5rem + 0.3125vw, 1.875rem);
    padding: clamp(1.5625rem, 1.4875rem + 0.375vw, 1.9375rem) clamp(0.9375rem, 0.875rem + 0.3125vw, 1.25rem);
  }
}

.p-shop__card-title {
  font-family: "Hina Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.22em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-shop__card-title {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    letter-spacing: 0.16em;
  }
}
.p-shop__card-title::after {
  content: "";
  display: block;
  width: 28px;
  width: 1.75rem;
  height: 1px;
  margin-top: 6px;
  margin-top: 0.375rem;
  background-color: #b98d2d;
}

.p-shop__card-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Hina Mincho", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-shop__card-desc {
    font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  }
}

.p-shop__card-price {
  padding-top: 16px;
  padding-top: 1rem;
  border-top: 1px solid #dfdfdf;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  color: #b98d2d;
}
@media screen and (max-width: 767px) {
  .p-shop__card-price {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  }
}

/* ----- About（授与について） ----- */
.p-shop__about {
  position: relative;
  padding-block: 96px;
  padding-block: 6rem;
  overflow: hidden;
}
.p-shop__about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../assets/images/shop/shop-bg02.webp) no-repeat center/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-shop__about {
    padding-block: 3.5rem 5rem;
  }
}

.p-shop__about-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  gap: 3.125rem;
  width: min(100% - 40px, 800px);
  width: min(100% - 2.5rem, 50rem);
  margin-inline: auto;
}

.p-shop__about-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
  gap: 1.75rem;
}

.p-shop__about-head-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  gap: 1rem;
}

.p-shop__about-label {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #929292;
}

.p-shop__about-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.18em;
  color: #1c1a16;
}
@media screen and (max-width: 767px) {
  .p-shop__about-title {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  }
}

.p-shop__about-line {
  display: block;
  width: 48px;
  width: 3rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #929292;
}

.p-shop__about-text {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.7;
  color: #2e2b24;
}
@media screen and (max-width: 767px) {
  .p-shop__about-text {
    font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
    line-height: 2.4;
  }
}
/*# sourceMappingURL=style.css.map */
