@charset "utf-8";
/*-------common------*/
html {
  font-size: 62.5%;
}
body {
  font-size: var(--b-fs);
  color: var(--b-color);
  font-family: var(--b-font-family);
  letter-spacing: var(--b-ls);
  line-height: var(--b-lh);
  font-weight: var(--b-fw);
  margin: 0;
  /* 黒地。梅鉢紋は Figma の配置どおり個別に置く（.p-index-deco / .l-bg-ume） */
  background-color: var(--c-black);
  overflow-x: hidden;
  position: relative;
}
/* 見出しは明朝 */
h1,
h2,
h3,
h4 {
  font-family: var(--f-serif);
}
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* =====================
  背景：星のきらめき
===================== */
.l-bg-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.l-bg-stars__layer {
  position: absolute;
  inset: 0;
  display: block;
  background-repeat: repeat;
  will-change: opacity;
}
.l-bg-stars__layer--s {
  background-image: url("../img/common/bg-stars1.svg");
  background-size: 640px;
  animation: twinkle-s 3.4s ease-in-out infinite;
}
.l-bg-stars__layer--m {
  background-image: url("../img/common/bg-stars2.svg");
  background-size: 760px;
  animation: twinkle-m 5.6s ease-in-out 0.9s infinite;
}
.l-bg-stars__layer--l {
  background-image: url("../img/common/bg-stars3.svg");
  background-size: 900px;
  animation: twinkle-l 8s ease-in-out 1.8s infinite;
}
/* 背景より前面にコンテンツを置く */
.l-header,
main,
.l-footer,
.c-pagetop,
.c-footer-icons {
  position: relative;
  z-index: 1;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--b-color);
  transition: 0.25s ease-in-out;
}
a:hover {
  opacity: 0.6;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-size: var(--b-fs);
}
img {
  max-width: 100%;
  vertical-align: middle;
  width: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th {
  font-weight: 500;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
ol {
  padding: 0;
}
em {
  font-style: normal;
}
dl {
  margin: 0;
}
dt {
  margin: 0;
}
dd {
  margin: 0;
}
dl .row {
  display: flex;
}
.SP {
  display: none;
}
.TAB820 {
  display: none;
}
/* =====================
  Layout / Box
===================== */
.l-inner {
  padding-inline: 5.55%;
}
.u-w-fit {
  width: fit-content;
}
.u-mx-auto {
  margin-inline: auto;
}
.u-pos-rel {
  position: relative;
}
.u-z-1 {
  z-index: 1;
}
.u-z-2 {
  z-index: 2;
}
/* =====================
  Display
===================== */
.u-flex {
  display: flex;
}
.u-flex-re {
  flex-direction: row-reverse;
}
.u-flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.u-block {
  display: block;
}
.u-inline-block {
  display: inline-block;
}
/* =====================
  Flex Align
===================== */
.u-ai-center {
  align-items: center;
}
.u-ai-start {
  align-items: flex-start;
}
.u-ai-end {
  align-items: flex-end;
}
.u-jc-center {
  justify-content: center;
}
.u-jc-start {
  justify-content: flex-start;
}
.u-jc-between {
  justify-content: space-between;
}
.u-jc-end {
  justify-content: flex-end;
}
.u-flex-1 {
  flex: 1;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
/* =====================
  Grid
===================== */
.u-grid {
  display: grid;
}
.u-grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
/* =====================
  Typography
===================== */
.u-fw300 {
  font-weight: 300;
}
.u-fw400 {
  font-weight: 400;
}
.u-fw500 {
  font-weight: 500;
}
.u-fw600 {
  font-weight: 600;
}
.u-fw700 {
  font-weight: 700;
}
.u-fw900 {
  font-weight: 900;
}

.u-lh10 {
  line-height: 1;
}
.u-lh12 {
  line-height: 1.2;
}
.u-lh14 {
  line-height: 1.4;
}
.u-lh16 {
  line-height: 1.6;
}
.u-lh20 {
  line-height: 2;
}

.u-ls005 {
  letter-spacing: 0.05em;
}
.u-ls01 {
  letter-spacing: 0.1em;
}
.u-ls0 {
  letter-spacing: 0;
}

.u-tc {
  text-align: center;
}
.u-uppercase {
  text-transform: uppercase;
}

/* =====================
  Color
===================== */
.u-cwhite {
  color: #fff;
}
.u-cblack {
  color: #000;
}

.u-bwhite {
  background: #fff;
}
.u-bblack {
  background: #000;
}

/* =====================
  Spacing
===================== */
.u-mr-01 {
  margin-right: 1em;
}

/* =====================
  Page
===================== */
.u-page-404 {
  padding: 150px 0;
}

/* =====================
  Reset
===================== */
* {
  box-sizing: border-box;
}
/*-------common-end------*/
/* =====================================================
  ヘッダー / フッター（全ページ共通）
===================================================== */
/*-------hd------*/
.fixed-wrap.is-fixed {
  position: fixed;
  animation: slideDown 0.4s ease-out;
}
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.15);
}
.l-header.is-fixed {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, var(--px-40), 40px);
  min-height: clamp(64px, var(--px-100), 100px);
  padding-inline: clamp(16px, var(--px-33), 33px);
}
.c-logo {
  flex-shrink: 0;
}
.c-logo__link {
  display: block;
  width: clamp(200px, var(--px-343), 343px);
}
.c-logo__link img {
  width: 100%;
  height: auto;
}
.l-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(4px, var(--px-12), 12px);
}
/* TEL・お問い合わせ */
.l-header__contact {
  display: flex;
  align-items: center;
  gap: clamp(12px, var(--px-30), 30px);
}
.c-header-tel {
  display: flex;
  align-items: center;
  gap: clamp(6px, var(--px-12), 12px);
  font-family: var(--f-serif);
  font-weight: 700;
  line-height: 1;
}
.c-header-tel img {
  width: clamp(20px, var(--px-27), 27px);
  height: auto;
}
.c-header-tel__num {
  font-size: clamp(18px, var(--px-24), 24px);
}
.c-header-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, var(--px-12), 12px);
  width: clamp(130px, var(--px-166), 166px);
  min-height: clamp(36px, var(--px-44), 44px);
  padding-inline: 1em;
  border-radius: 999px;
  background: var(--c-red);
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(13px, var(--px-16), 16px);
  line-height: 1.2;
  white-space: nowrap;
}
.c-header-mail img {
  width: clamp(16px, var(--px-20), 20px);
  height: auto;
}
/* グロナビ */
.c-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, var(--px-40), 40px);
}
.c-nav__item a {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(13px, var(--px-16), 16px);
  line-height: 1.2;
  white-space: nowrap;
}
.c-nav__item a:hover {
  color: var(--c-gold-light);
  opacity: 1;
}
/*-------ft-----*/
.l-footer {
  padding-block: clamp(40px, var(--px-86), 86px) clamp(30px, var(--px-60), 60px);
}
.l-footer__inner {
  padding-inline: 5.55%;
  text-align: center;
}
.c-logo--footer .c-logo__link {
  width: clamp(240px, var(--px-435), 435px);
  margin-inline: auto;
}
.l-footer__address {
  line-height: 35px;
  letter-spacing: 0.21em;
  /* 行末に付く字間ぶんを相殺（Figmaと同じ位置で中央に来るように） */
  margin-right: -0.21em;
}
.c-footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, var(--px-40), 40px);
}
.c-footer-nav__list a {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(13px, var(--px-16), 16px);
  line-height: 1.4;
  white-space: nowrap;
}
.c-footer-nav__list a:hover {
  color: var(--c-gold-light);
  opacity: 1;
}
/*-------copyright------*/
.c-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(52px, var(--px-72), 72px);
  background: var(--c-gold-grad-bar);
}
.c-copyright__text {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(14px, var(--px-20), 20px);
  line-height: 1.4;
  color: var(--c-red-deep);
}
/*-------pagetop------*/
#page-top {
  position: fixed;
  right: 7.7%;
  bottom: 65px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 600;
}
#page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.c-pagetop__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-pagetop__link img {
  width: clamp(64px, var(--px-90), 90px);
  height: auto;
}
.c-pagetop__text {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(12px, var(--px-15), 15px);
  line-height: 1;
  /* 家紋の下部に重ねる */
  margin-top: max(-18px, -1.25vw);
}
/*-------SP 固定バー------*/
.c-footer-icons {
  display: none;
  justify-content: space-around;
  align-items: stretch;
  position: fixed;
  z-index: 701;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  /* padding-bottom: calc(env(safe-area-inset-bottom) / 2); */
}
.c-fixed-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: var(--c-red);
  font-family: var(--f-serif);
  font-weight: 700;
  line-height: 1;
  padding-block: 12px;
}
.c-fixed-btn--tel {
  flex: 177;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.c-fixed-btn--mail {
  flex: 117;
  font-size: 16px;
}
.c-fixed-btn img {
  width: 22px;
  height: auto;
}
/*-------hd SP------*/
@media screen and (max-width: 820px) {
  .c-nav__list {
    gap: clamp(12px, 2.4vw, 24px);
  }
  .c-header-tel__num {
    font-size: clamp(16px, 2vw, 20px);
  }
}
@media screen and (max-width: 680px) {
  .l-header__inner {
    min-height: 50px;
    padding-inline: 20px;
  }
  .c-logo__link {
    width: 184px;
  }
  /* SP は TEL／メールを画面下の固定バーに逃がす */
  .l-header__contact {
    display: none;
  }
}
/*-------ft SP------*/
@media screen and (max-width: 680px) {
  .l-footer__address {
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .c-footer-nav__list {
    flex-direction: column;
    gap: 14px;
  }
  /* 固定バーの右端に PAGE TOP を置く */
  .c-footer-icons {
    padding-right: 81px;
  }
  #page-top {
    right: 0;
    bottom: 0;
    width: 81px;
  }
  .c-pagetop__link img {
    width: 64px;
  }
  /* 固定バーに隠れないよう下に余白 */
  body {
    padding-bottom: 82px;
  }
}

/*-------contact-form------*/
.cs-contact-form {
  max-width: 950px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 80px;
}
.cs-contact-form .row {
  margin-bottom: 30px;
}
.cs-contact-form .row:last-child {
  margin-bottom: 0;
}
.cs-contact-form textarea,
.cs-contact-form input {
  border: none;
  background: #fff;
  font-size: max(1.111vw, 16px);
  width: 100%;
  padding: 0.5em 0 0.5em 1em;
}
.cs-contact-form input:focus-visible,
.cs-contact-form textarea:focus-visible {
  outline: none;
}
.cs-contact-form dt {
  width: 30%;
}
.cs-contact-form dd {
  width: 70%;
}
.cs-contact-form-btn-wrap {
  text-align: center;
}
.table-form input:focus-visible,
.table-form textarea:focus-visible {
  outline: none;
}
input[type="submit"] {
  font-family: "Noto Serif JP", serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
}
span.wpcf7-spinner {
  display: none;
}
/*lightbox*/
/* 記事本文の画像：拡大できることを示す */
.p-single__body img.is-zoomable {
  cursor: zoom-in;
}
.p-single__body img.is-zoomable:focus-visible {
  outline: 3px solid var(--c-gold-light);
  outline-offset: 2px;
}
/* 開いている間は背面をスクロールさせない */
body.is-lightbox-open {
  overflow: hidden;
}
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1.4vw, 20px);
  padding: clamp(48px, 6vw, 80px) clamp(8px, 3vw, 40px);
  background: rgba(0, 0, 0, 0.88);
}
#lightbox-overlay.is-open {
  display: flex;
}
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  max-height: 100%;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - clamp(120px, 18vw, 220px));
  width: auto;
  object-fit: contain;
}
.lightbox__caption {
  font-size: clamp(12px, var(--px-14), 14px);
  line-height: 1.6;
  text-align: center;
  color: var(--c-white);
}
/* 閉じる（×） */
.lightbox__close {
  position: absolute;
  top: clamp(12px, 2vw, 28px);
  right: clamp(12px, 2vw, 28px);
  width: clamp(36px, 3.5vw, 48px);
  height: clamp(36px, 3.5vw, 48px);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.lightbox__close::before,
.lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 3px;
  background: var(--c-white);
}
.lightbox__close::before {
  transform: rotate(45deg);
}
.lightbox__close::after {
  transform: rotate(-45deg);
}
/* 前後の送り */
.lightbox__nav {
  position: relative;
  flex-shrink: 0;
  width: clamp(32px, 3vw, 44px);
  height: clamp(32px, 3vw, 44px);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.lightbox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  border-top: 3px solid var(--c-white);
  border-right: 3px solid var(--c-white);
}
.lightbox__nav--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.lightbox__nav--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.lightbox__close:hover::before,
.lightbox__close:hover::after,
.lightbox__nav:hover::before {
  border-color: var(--c-gold-light);
  background: var(--c-gold-light);
}
.lightbox__nav:hover::before {
  background: none;
}
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--c-gold-light);
  outline-offset: 2px;
}
@media screen and (max-width: 680px) {
  .lightbox__nav {
    position: absolute;
    bottom: clamp(12px, 4vw, 24px);
  }
  .lightbox__nav--prev {
    left: 20%;
  }
  .lightbox__nav--next {
    right: 20%;
  }
}
/*-------ipad----*/
@media screen and (max-width: 1180px) {
}
/*-------ipad-air----*/
@media screen and (max-width: 820px) {
  body .TAB820 {
    display: none;
  }
}
/*-------iphone----*/
@media screen and (max-width: 680px) {
  .u-flex,
  .u-flex.u-flex-re,
  dl .row {
    flex-direction: column;
  }
  .u-grid {
    grid-template-columns: 1fr;
  }
  .u-grid.u-grid-col-2,
  .u-grid.u-grid-col-3,
  .u-grid.u-grid-col-4 {
    grid-template-columns: 1fr;
  }
  body .SP {
    display: block;
  }

  body .PC {
    display: none;
  }
  .c-footer-icons {
    display: flex;
  }
  .u-tc.u-SPtl {
    text-align: left;
  }
  .table-form tr {
    display: flex;
    flex-direction: column;
  }
  .table-form th {
    width: 100%;
  }
  .table-form td {
    padding: 0 0 1em;
  }
  .cs-contact-form dt {
    width: 100%;
  }
  .cs-contact-form dd {
    width: 100%;
  }
  .fixed-wrap {
    position: fixed;
    animation: none;
  }
}

/* =====================================================
  下層ページ背景の梅鉢紋（Figmaの配置どおり／全ページ共通）
  縦位置は MV 下端（31.25vw＋金の帯）を起点にする
===================================================== */
.l-bg-ume {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.l-bg-ume__item {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  background: url("../img/common/umebachi-gold.svg") center / contain no-repeat;
  opacity: 0.18;
}
.l-bg-ume__item--1 {
  left: -6.573%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + max(-50.142px, -3.482vw));
  width: 30.716%;
  transform: rotate(-12deg);
}
.l-bg-ume__item--2 {
  left: 3.056%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(253.517px, 17.605vw));
  width: 14.964%;
  transform: rotate(18deg);
}
.l-bg-ume__item--3 {
  left: 90.486%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(417.517px, 28.994vw));
  width: 14.964%;
  transform: rotate(-8deg);
}
.l-bg-ume__item--4 {
  left: 6.458%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1051.416px, 73.015vw));
  width: 6.68%;
  transform: rotate(24deg);
}
.l-bg-ume__item--5 {
  left: 86.015%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1052.606px, 73.098vw));
  width: 11.203%;
  transform: rotate(-20deg);
}
.l-bg-ume__item--6 {
  left: 105.092%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1001.802px, 69.57vw));
  width: 27.257%;
  transform: rotate(10deg);
}
.l-bg-ume__item--7 {
  left: 9.097%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1211.497px, 84.132vw));
  width: 9.7%;
  transform: rotate(-6deg);
}
.l-bg-ume__item--8 {
  left: 4.79%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1328.511px, 92.258vw));
  width: 3.983%;
  transform: rotate(14deg);
}
.l-bg-ume__item--9 {
  left: 14.028%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(1826.063px, 126.81vw));
  width: 3.983%;
  transform: rotate(6deg);
}
.l-bg-ume__item--10 {
  left: 22.014%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(3700.497px, 256.979vw));
  width: 9.7%;
  transform: rotate(-14deg);
}
.l-bg-ume__item--11 {
  left: -0.809%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(4079.857px, 283.323vw));
  width: 30.716%;
  transform: rotate(16deg);
}
.l-bg-ume__item--12 {
  left: 87.64%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(4207.416px, 292.182vw));
  width: 6.68%;
  transform: rotate(-4deg);
}
.l-bg-ume__item--13 {
  left: 90.279%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(4367.497px, 303.298vw));
  width: 9.7%;
  transform: rotate(22deg);
}
.l-bg-ume__item--14 {
  left: 85.972%;
  top: calc(31.25vw + clamp(10px, 1.389vw, 20px) + min(4484.511px, 311.424vw));
  width: 3.983%;
  transform: rotate(-10deg);
}
