@charset "UTF-8";
/**
* Foundation
* ========================== */
@import "https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Shippori+Mincho+B1:wght@400;500;600;700&family=Noto+Serif+JP&family=Sawarabi+Gothic&family=Jost:wght@400;500&family=Noto+Sans+JP:wght@100..900&display=swap";
:root {
  --ff-garamond: "EB Garamond", serif;
  --ff-mincho: "Shippori Mincho B1", serif;
  --ff-noto-serif: "Noto Serif JP", serif;
  --ff-gothic: "Sawarabi Gothic", sans-serif;
  --ff-jost: "Jost", sans-serif;
  --sans-serif:
    "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  --serif: "Noto Serif JP", serif;
  --base-color: #fff;
  --main-text-color: #111;
  --color-dark: #1b1b1b;
  --color-gold-dark: #785e3e;
  --color-gold-light: #e7c8a3;
  --color-gold-mid: #d1b994;
  --color-gray: #8f8f8f;
  --color-gray-light: #aeaeae;
  --color-gray-border: #414141;
  --color-footer-bg: #202020;
  --gradient-gold: linear-gradient(
    120deg,
    #785e3e,
    #e7c8a3 40%,
    #e7c8a3 60%,
    #785e3e
  );
  --gradient-text-light: linear-gradient(92deg, #111, #e7c8a3);
  --gradient-text-dark: linear-gradient(92deg, #ede4d5, #8f7f6c);
  --gradient-logo: linear-gradient(
    58.38deg,
    rgb(109 73 35) 16.48%,
    rgb(197 145 65) 50.76%,
    rgb(224 181 106) 85.05%
  );
  --header-h: 6.125rem;
  --container-w: 74.625rem;
  --container-space: 2.375rem;
}
@media screen and (min-width: 769px) {
  :root {
    --header-h: 6.875rem;
    --container-space: 5rem;
  }
}
:root {
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
  line-height: 1.5;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

img:not([alt]) {
  filter: blur(10px);
}

textarea {
  resize: vertical;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--ff-mincho);
  line-height: 1.8;
  color: var(--main-text-color);
  background: var(--base-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-resizing * {
  transition: none !important;
}

:focus-visible {
  outline: 2px solid blue;
}

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

img {
  height: auto;
  font-size: 12px;
  letter-spacing: 0;
}

a {
  color: inherit;
  word-break: break-all;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: normal;
}

/**
* vendor
* ========================== */
.splide__container {
  position: relative;
  box-sizing: border-box;
}

.splide__list {
  display: flex;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  list-style-type: none !important;
  backface-visibility: hidden;
  -ms-flex-negative: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  animation: splide-loading 1s linear infinite;
  contain: strict;
}

.splide__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  margin: 0 !important;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
  cursor: pointer;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.7;
  transform: translateY(-50%);
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #000;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  z-index: 1;
  padding: 0 1em;
}

.splide__pagination__page {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 3px;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.7;
  transition: transform 0.2s linear;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  height: 3px;
  background: #ccc;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid transparent;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  inset: 0 0.5em 0 auto;
  display: flex;
  flex-direction: column;
  padding: 1em 0;
}

/**
* JS
* ========================== */
.js-text-anime-up {
  visibility: hidden;
}
.js-text-anime-up.is-ready {
  visibility: visible;
}
.js-text-anime-up__main {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transform-origin: left center;
}
.js-text-anime-up__char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s var(--ease-in-out-sine);
  transition-delay: calc(var(--char-index, 0) * 0.025s);
}
.js-text-anime-up__sub {
  overflow: hidden;
}
.js-text-anime-up__sub-txt {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1s var(--ease-in-out-sine);
  transition-delay: 0.6s;
}
.js-text-anime-up.is-active .js-text-anime-up__char {
  opacity: 1;
}
.js-text-anime-up.is-active .js-text-anime-up__sub-txt {
  transform: translateY(0);
}

/* ========================================
  fade-in
======================================== */
.js-fade-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: 0.8s var(--ease-out-sine);
  transition-property: filter, opacity, transform;
}
.js-fade-in.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/**
* Layout
* ========================== */
/* ========================================
  wrapper（共通）
======================================== */
.l-wrapper {
  display: grid;
  grid-template: "header" var(--header-h) "main" 1fr "footer";
  min-height: 100vh;
}
.l-wrapper > .l-header {
  grid-area: header;
}
.l-wrapper > .l-main {
  grid-area: main;
  margin-top: calc(var(--header-h) * -1);
}
.l-wrapper > .l-footer {
  grid-area: footer;
}

/* ========================================
  header（共通）
======================================== */
.l-header {
  width: 100%;
  height: var(--header-h);
}
.l-header__inner {
  height: inherit;
}
.l-header__logo {
  position: fixed;
  top: calc((var(--header-h) - 2.5625rem) / 2);
  left: 1.25rem;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    left: 2.5rem;
  }
}
.l-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.l-header__logo-text {
  font-family: var(--ff-garamond);
  font-size: 1.5rem;
  font-weight: 400;
  background: var(--gradient-logo);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-header__nav-wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .l-header__nav, .l-header__nav-simple {
    position: fixed;
    top: calc((var(--header-h) - 1lh) / 2);
    right: 11.8125rem;
    z-index: 100;
  }
}
.l-header__nav-simple {
  color: #fff;
  pointer-events: none;
  mix-blend-mode: difference;
}
@media screen and (max-width: 1199px) {
  .l-header__nav-simple {
    display: none;
  }
}

/* ========================================
  main（共通）
======================================== */
.l-main__inner {
  padding-top: calc(var(--header-h) - 0.625rem);
}
@media screen and (min-width: 769px) {
  .l-main__inner {
    padding-top: calc(var(--header-h) + 0.9375rem);
  }
}

/* ========================================
  footer（共通）
======================================== */
.l-footer {
  color: #fff;
  background: linear-gradient(to bottom, rgba(32, 32, 32, 0.9), #202020);
  border-top: 1px solid #b4b4b4;
}
.l-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 5rem 2.5rem;
}
@media screen and (min-width: 769px) {
  .l-footer__inner {
    grid-template-columns: auto 1fr;
    gap: 9.375rem 1.25rem;
    padding-block: 8rem 3.75rem;
  }
}
.l-footer__page-top {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: #000;
  border: none;
  border-radius: 50%;
}
.l-footer__page-top::after {
  position: absolute;
  inset: 0;
  display: block;
  width: 0.5625rem;
  height: 1.3125rem;
  margin-block: auto;
  margin-inline: auto;
  content: "";
  background: url("../img/common/icon/arrow_r.webp") no-repeat center/contain;
  transform: rotate(-90deg);
}
@media (hover: hover) {
  .l-footer__page-top {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-footer__page-top:hover {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 769px) {
  .l-footer__head {
    padding-top: 0.3125rem;
  }
}
.l-footer__logo {
  margin-bottom: 1.5625rem;
}
.l-footer__logo a {
  display: inline-block;
}
.l-footer__address {
  font-family: var(--ff-mincho);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
}
.l-footer__nav {
  display: flex;
  flex-flow: column wrap;
  gap: 2rem 2.5rem;
}
@media screen and (min-width: 769px) {
  .l-footer__nav {
    flex-direction: row;
    gap: 3.9375rem;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    height: 26.875rem;
    margin-top: 2.5rem;
  }
}
.l-footer__nav-col.-last {
  margin-top: 0.875rem;
}
@media screen and (min-width: 769px) {
  .l-footer__nav-col.-last {
    margin-top: 0;
  }
}
.l-footer__nav-col.-last a {
  font-family: var(--ff-garamond);
  font-size: 1rem;
}
.l-footer__nav-heading {
  margin-bottom: 0.625rem;
  font-family: var(--ff-garamond);
  line-height: 1.4;
  color: var(--color-gray-light);
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}
.l-footer__nav-list.-space-lg {
  gap: 1.125rem;
}
.l-footer__nav-item a {
  display: block;
  font-family: var(--ff-mincho);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (any-hover: hover) {
  .l-footer__nav-item a span {
    position: relative;
    background: linear-gradient(#fff, #fff) 100% 100%/0 1px no-repeat;
    transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .l-footer__nav-item a:hover span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
.l-footer__copyright {
  margin-top: 1.375rem;
  font-family: var(--ff-garamond);
  color: var(--color-gray-light);
}
@media screen and (min-width: 769px) {
  .l-footer__copyright {
    margin-top: 0;
  }
}
.l-footer__copyright small {
  font-size: 0.625rem;
  font-weight: 500;
}

/* ========================================
  サイドバーとコンテンツ
======================================== */
/**
/* Object
* ========================== */
/* Component ------------ */
/* ========================================
  コンテンツ幅
======================================== */
.c-container {
  width: min(100% - var(--container-space), var(--container-w));
  margin-inline: auto;
}

/* ========================================
  btn
======================================== */
.c-btn, .c-btn-outline-gradient-gold, .c-btn-gradient-gold, .c-btn-outline-primary, .c-btn-primary {
  --btn-w: auto;
  --btn-h: auto;
  --btn-padding-x: 1rem;
  --btn-padding-y: 0.5rem;
  --btn-border-width: 1px;
  --btn-border-color: transparent;
  --btn-bg-color: transparent;
  --btn-color: var(--main-text-color);
  --btn-hover-border-color: var(--primary-color);
  --btn-hover-bg: var(--primary-color);
  --btn-hover-color: #fff;
  --btn-border-radius: 100vmax;
  --btn-focus-ring-color: rgb(50 98 145 / 25%);
  --btn-focus-ring-width: 0.25rem;
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  gap: 0.5em;
  place-content: center;
  align-items: center;
  width: min(100%, var(--btn-w));
  height: var(--btn-h);
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  font-family: var(--ff-mincho);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--btn-color);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background: var(--btn-bg-color);
  border: var(--btn-border-width) solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
}

@media (any-hover: hover) {
  .c-btn:not([class*=gradient-]), .c-btn-outline-gradient-gold:not([class*=gradient-]), .c-btn-gradient-gold:not([class*=gradient-]), .c-btn-outline-primary:not([class*=gradient-]), .c-btn-primary:not([class*=gradient-]) {
    transition: border 0.5s, background-color 0.5s, color 0.5s;
  }
  .c-btn:not([class*=gradient-]):hover, .c-btn-outline-gradient-gold:not([class*=gradient-]):hover, .c-btn-gradient-gold:not([class*=gradient-]):hover, .c-btn-outline-primary:not([class*=gradient-]):hover, .c-btn-primary:not([class*=gradient-]):hover {
    --btn-border-color: var(--btn-hover-border-color);
    --btn-bg-color: var(--btn-hover-bg);
    --btn-color: var(--btn-hover-color);
  }
}
.c-btn[class*=gradient-], [class*=gradient-].c-btn-outline-gradient-gold, [class*=gradient-].c-btn-gradient-gold, [class*=gradient-].c-btn-outline-primary, [class*=gradient-].c-btn-primary {
  background-position: left center;
  background-size: 200% 100%;
}
@media (any-hover: hover) {
  .c-btn[class*=gradient-], [class*=gradient-].c-btn-outline-gradient-gold, [class*=gradient-].c-btn-gradient-gold, [class*=gradient-].c-btn-outline-primary, [class*=gradient-].c-btn-primary {
    transition: background-position 0.5s;
  }
  .c-btn[class*=gradient-]:hover, [class*=gradient-].c-btn-outline-gradient-gold:hover, [class*=gradient-].c-btn-gradient-gold:hover, [class*=gradient-].c-btn-outline-primary:hover, [class*=gradient-].c-btn-primary:hover {
    background-position: right center;
  }
}
.c-btn:focus-visible, .c-btn-outline-gradient-gold:focus-visible, .c-btn-gradient-gold:focus-visible, .c-btn-outline-primary:focus-visible, .c-btn-primary:focus-visible {
  outline: var(--btn-focus-ring-width) solid var(--btn-focus-ring-color);
  outline-offset: 2px;
}
.c-btn:active, .c-btn-outline-gradient-gold:active, .c-btn-gradient-gold:active, .c-btn-outline-primary:active, .c-btn-primary:active {
  transform: translateY(1px);
}
.c-btn:disabled, .c-btn-outline-gradient-gold:disabled, .c-btn-gradient-gold:disabled, .c-btn-outline-primary:disabled, .c-btn-primary:disabled, .c-btn[aria-disabled=true], [aria-disabled=true].c-btn-outline-gradient-gold, [aria-disabled=true].c-btn-gradient-gold, [aria-disabled=true].c-btn-outline-primary, [aria-disabled=true].c-btn-primary {
  pointer-events: none;
  opacity: 0.65;
}

.c-btn-primary {
  --btn-border-color: var(--primary-color);
  --btn-bg-color: var(--primary-color);
  --btn-color: #fff;
}
@media (any-hover: hover) {
  .c-btn-primary:not([class*=gradient-]) {
    --btn-hover-border-color: var(--primary-color);
    --btn-hover-bg: #fff;
    --btn-hover-color: var(--primary-color);
  }
}

.c-btn-outline-primary {
  --btn-border-color: var(--primary-color);
  --btn-bg-color: transparent;
  --btn-color: var(--primary-color);
}
@media (any-hover: hover) {
  .c-btn-outline-primary:not([class*=gradient-]) {
    --btn-hover-border-color: var(--primary-color);
    --btn-hover-bg: var(--primary-color);
    --btn-hover-color: #fff;
  }
}

.c-btn-gradient-gold {
  --btn-border-color: var(--gradient-gold);
  --btn-bg-color: var(--gradient-gold);
  --btn-color: #fff;
}
@media (any-hover: hover) {
  .c-btn-gradient-gold:not([class*=gradient-]) {
    --btn-hover-border-color: ;
    --btn-hover-bg: ;
    --btn-hover-color: ;
  }
}

.c-btn-outline-gradient-gold {
  --btn-border-color: var(--gradient-gold);
  --btn-bg-color: transparent;
  --btn-color: var(--gradient-gold);
}
@media (any-hover: hover) {
  .c-btn-outline-gradient-gold:not([class*=gradient-]) {
    --btn-hover-border-color: ;
    --btn-hover-bg: ;
    --btn-hover-color: ;
  }
}

.c-btn-size-default {
  --btn-w: 20.9375rem;
  --btn-h: 3.625rem;
}
@media screen and (min-width: 769px) {
  .c-btn-size-default {
    --btn-w: 20rem;
    --btn-h: 4.125rem;
  }
}

.c-btn-w-full {
  --btn-w: 100%;
}
@media screen and (min-width: 769px) {
  .c-btn-w-full {
    --btn-w: 100%;
  }
}

.c-btn-arrow-right::after {
  position: absolute;
  inset-block: 0;
  right: 1.25rem;
  width: 1.125rem;
  height: 0.25rem;
  margin-block: auto;
  content: "";
  background: url("../img/common/icon/arrow_solid_r.webp") no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .c-btn-arrow-right::after {
    width: 1.75rem;
    height: 0.4375rem;
  }
}

.c-btn-view-more {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-family: var(--ff-mincho);
}
@media screen and (min-width: 769px) {
  .c-btn-view-more {
    font-size: 1.125rem;
  }
}
.c-btn-view-more::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--main-text-color);
}
@media (any-hover: hover) {
  .c-btn-view-more {
    transition: 0.5s;
    transition-property: color;
  }
  .c-btn-view-more::after {
    transition: 0.5s;
    transition-property: transform, background-color;
  }
  .c-btn-view-more:hover {
    color: var(--color-gold-dark);
  }
  .c-btn-view-more:hover::after {
    background-color: var(--color-gold-dark);
    transform: translateY(0.125rem);
  }
}

/* ========================================
  icon
======================================== */
.c-icon-arrow-r, .c-icon-arrow-tri-r, .c-icon {
  position: relative;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.c-icon-arrow-tri-r {
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
}

.c-icon-arrow-r {
  aspect-ratio: 1;
  clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
}

/* ========================================
  link
======================================== */
a.no-link {
  pointer-events: none;
  cursor: default;
}

@keyframes line-ani {
  0% {
    transform: scale(1);
    transform-origin: top right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: top right;
  }
  51% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scale(1);
    transform-origin: top left;
  }
}
.c-link-underline {
  position: relative;
}
.c-link-underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
@media (hover: hover) {
  .c-link-underline:hover::after {
    animation-name: line-ani;
    animation-duration: 0.6s;
    animation-timing-function: ease;
  }
}

/* ========================================
  list
======================================== */
.c-list-disc > li {
  padding-left: 1em;
  text-indent: -1em;
}
.c-list-disc > li::before {
  content: "・";
}

.c-list-num {
  list-style: none;
  counter-reset: my-counter;
}
.c-list-num > li {
  position: relative;
  padding-left: 0.8em;
  text-indent: -0.8em;
}
.c-list-num > li::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
}

/* ========================================
  note
======================================== */
.c-note {
  padding-left: 1em;
  text-indent: -1em;
}
.c-note::before {
  content: "※";
}

/* Project ------------ */
/* ========================================
  accordion
======================================== */
.p-accordion > summary {
  position: relative;
  padding: 0.5em 3em 0.5em 1em;
  cursor: pointer;
  list-style: none;
}
.p-accordion > summary::-webkit-details-marker {
  display: none;
}
.p-accordion__icon {
  position: absolute;
  inset-block: 0;
  right: 1em;
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-block: auto;
  transition: transform 0.3s ease;
}
.p-accordion__icon::before, .p-accordion__icon::after {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  content: "";
  background-color: var(--main-text-color);
  transition: transform 0.3s ease;
}
.p-accordion__icon::after {
  transform: rotate(-90deg);
}
.p-accordion.is-pc > summary {
  padding: 0;
  cursor: default;
}
.p-accordion.is-pc .p-accordion__icon {
  display: none;
}
.p-accordion[open] .p-accordion__icon::after {
  transform: rotate(0);
}

.p-editor {
  font-family: var(--ff-gothic);
}
.p-editor h1,
.p-editor h2,
.p-editor h3,
.p-editor h4,
.p-editor h5,
.p-editor h6 {
  font-family: var(--ff-mincho);
  font-weight: 700;
  line-height: 1.6;
}
.p-editor h1 + p,
.p-editor h2 + p,
.p-editor h3 + p,
.p-editor h4 + p,
.p-editor h5 + p,
.p-editor h6 + p {
  margin-top: 0.625rem;
}
.p-editor h1 {
  margin-block: 1.875rem;
  font-size: 1.375rem;
}
@media screen and (min-width: 769px) {
  .p-editor h1 {
    font-size: 1.75rem;
  }
}
.p-editor h2 {
  padding-bottom: 0.9375rem;
  margin-block: 3.125rem 1.5625rem;
  font-size: 1.25rem;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 769px) {
  .p-editor h2 {
    font-size: 1.5rem;
  }
}
.p-editor h3 {
  padding-left: 1.0625rem;
  margin-block: 3.125rem 1.5625rem;
  font-size: 1.1875rem;
  border-left: 3px solid #9d8160;
}
@media screen and (min-width: 769px) {
  .p-editor h3 {
    font-size: 1.25rem;
  }
}
.p-editor h4 {
  margin-block: 3.125rem 1.5625rem;
  font-size: 1.125rem;
}
.p-editor h5 {
  margin-block: 3.125rem 1.5625rem;
  font-size: 1rem;
}
.p-editor h6 {
  margin-block: 3.125rem 1.5625rem;
  font-size: 1rem;
}
.p-editor p,
.p-editor ul,
.p-editor ol,
.p-editor table,
.p-editor dl,
.p-editor blockquote {
  margin-block: 0.9375rem;
}
.p-editor a {
  color: #9d8160;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
@media (hover: hover) {
  .p-editor a:hover {
    text-decoration: none;
  }
}
.p-editor blockquote {
  padding: 2em;
  margin-inline: 0;
  background-color: var(--color-gold-light);
}
.p-editor blockquote p {
  margin-block: 0;
}
.p-editor blockquote p + p {
  margin-top: 2.5rem;
}
.p-editor ul {
  padding-left: 0;
  list-style: none;
}
.p-editor ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}
.p-editor ul li::before {
  position: absolute;
  top: calc((1lh - 0.1875rem) / 2);
  left: 0;
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  background-color: #9d8160;
  border-radius: 50%;
}
.p-editor ul li > ul {
  margin-block: 0;
}
.p-editor ul li > ul li::before {
  background-color: transparent;
  border: 1px solid #9d8160;
}
.p-editor ol {
  padding-left: 0;
  list-style: none;
  counter-reset: num-counter;
}
.p-editor ol li {
  list-style: none;
}
.p-editor ol > li {
  position: relative;
  padding-left: 1.3em;
}
.p-editor ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-green);
  color: #9d8160;
  content: counter(num-counter) ".";
  counter-increment: num-counter;
}
.p-editor ol > li > ol {
  margin-block: 0;
  list-style: none;
  counter-reset: num-counter-sec;
}
.p-editor ol > li > ol > li {
  position: relative;
  padding-left: 2.2em;
}
.p-editor ol > li > ol > li::before {
  color: #9d8160;
  content: counter(num-counter) "-" counter(num-counter-sec) ".";
  counter-increment: num-counter-sec;
}
.p-editor ol > li > ul {
  margin-block: 0;
  list-style-position: inside;
  list-style-type: circle;
}
.p-editor table tbody tr {
  border-top: 1px solid var(--main);
}
.p-editor table tbody tr:last-of-type {
  border-bottom: 1px solid var(--main);
}
.p-editor table tbody tr th a,
.p-editor table tbody tr td a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (min-width: 769px) {
  .p-editor table tbody tr th a[href^="tel:"],
  .p-editor table tbody tr td a[href^="tel:"] {
    text-decoration: none;
  }
}
.p-editor table tbody tr th {
  font-weight: 700;
  vertical-align: top;
  text-align: left;
}
.p-editor .wp-block-image.size-full img {
  width: 100%;
}
.p-editor .wp-block-image .size-full img {
  width: 100%;
}
.p-editor .wp-block-image figcaption {
  font-size: 0.75rem;
  font-weight: 500;
}
.p-editor .wp-block-columns {
  gap: 2rem;
  margin-block: 2.5rem !important;
}
.p-editor .wp-block-columns .wp-block-image {
  margin-block: 0 !important;
}
.p-editor .has-black-color {
  color: #000 !important;
}
.p-editor .has-black-background-color {
  background-color: #000 !important;
}
.p-editor .has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}
.p-editor .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3 !important;
}
.p-editor .has-white-color {
  color: #fff !important;
}
.p-editor .has-white-background-color {
  background-color: #fff !important;
}
.p-editor .has-pale-pink-color {
  color: #f78da7 !important;
}
.p-editor .has-pale-pink-background-color {
  background-color: #f78da7 !important;
}
.p-editor .has-vivid-red-color {
  color: #cf2e2e !important;
}
.p-editor .has-vivid-red-background-color {
  background-color: #cf2e2e !important;
}
.p-editor .has-luminous-vivid-orange-color {
  color: #ff6900 !important;
}
.p-editor .has-luminous-vivid-orange-background-color {
  background-color: #ff6900 !important;
}
.p-editor .has-luminous-vivid-amber-color {
  color: #fcb900 !important;
}
.p-editor .has-luminous-vivid-amber-background-color {
  background-color: #fcb900 !important;
}
.p-editor .has-light-green-cyan-color {
  color: #7bdcb5 !important;
}
.p-editor .has-light-green-cyan-background-color {
  background-color: #7bdcb5 !important;
}
.p-editor .has-vivid-green-cyan-color {
  color: #00d084 !important;
}
.p-editor .has-vivid-green-cyan-background-color {
  background-color: #00d084 !important;
}
.p-editor .has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}
.p-editor .has-pale-cyan-blue-background-color {
  background-color: #8ed1fc !important;
}
.p-editor .has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}
.p-editor .has-vivid-cyan-blue-background-color {
  background-color: #0693e3 !important;
}
.p-editor .has-vivid-purple-color {
  color: #9b51e0 !important;
}
.p-editor .has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}
.p-editor .has-small-font-size {
  font-size: 0.8125rem !important;
}
.p-editor .has-medium-font-size {
  font-size: 1.25rem !important;
}
.p-editor .has-large-font-size {
  font-size: 2.25rem !important;
}
.p-editor .has-x-large-font-size {
  font-size: 2.625rem !important;
}

/* ========================================
  modal
======================================== */
.p-modal {
  position: fixed;
  width: 90%;
  max-width: 37.5rem;
  height: min(100vh - 5rem, 41.25rem);
  padding-block: 2.5rem;
  padding-inline: 1.5rem 2.5rem;
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-modal[open] {
  display: block;
  visibility: visible;
}
.p-modal::backdrop {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  will-change: opacity, background-color;
}
.p-modal.is-open {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
}
.p-modal.is-open::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.p-modal .simplebar-vertical {
  top: 2.5rem;
  right: 1rem;
  width: 0.6875rem;
  height: calc(100% - 3.125rem);
  background-color: #d9d9d9;
}
.p-modal .simplebar-scrollbar::before {
  background-color: #97531a;
}

.p-modal-close {
  position: fixed;
  top: 0.4375rem;
  right: 0.4375rem;
  display: grid;
  place-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  margin: 0;
  color: #fff;
  cursor: pointer;
  background: #000;
  border: none;
  border-radius: 50%;
}
.p-modal-close::before, .p-modal-close::after {
  position: absolute;
  inset: 0;
  width: 60%;
  height: 1px;
  margin: auto;
  content: "";
  background-color: #fff;
}
.p-modal-close::before {
  transform: rotate(45deg);
}
.p-modal-close::after {
  transform: rotate(-45deg);
}

/* ========================================
  nav
======================================== */
.p-nav.is-active .p-nav__btn {
  mix-blend-mode: normal;
}
.p-nav.is-active .p-nav__btn .p-nav__line.-line-01 {
  transform: rotate(45deg);
}
.p-nav.is-active .p-nav__btn .p-nav__line.-line-02 {
  transform: rotate(-45deg);
}
.p-nav.is-active .p-nav__menu {
  visibility: visible;
  opacity: 1;
}
.p-nav__btn {
  position: fixed;
  top: 1.9375rem;
  right: 1.25rem;
  z-index: 102;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  mix-blend-mode: difference;
}
@media screen and (min-width: 1200px) {
  .p-nav__btn {
    display: none;
  }
}
.p-nav__lines {
  position: relative;
  display: block;
  width: 100%;
  height: 30%;
}
.p-nav__line {
  position: absolute;
  inset-block: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin-block: auto;
  background-color: #fff;
  transition: 0.3s ease-in;
  transition-property: opacity, transform;
}
@media screen and (min-width: 769px) {
  .p-nav__line {
    height: 2px;
  }
}
.p-nav__line.-line-01 {
  transform: translateY(-0.25rem);
}
.p-nav__line.-line-02 {
  transform: translateY(0.25rem);
}
@media screen and (max-width: 1199px) {
  .p-nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    display: block;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    height: 100svh;
    padding: 6.125rem calc(var(--container-space) / 2);
    overflow: auto;
    overscroll-behavior-y: contain;
    background: linear-gradient(to bottom, rgba(32, 32, 32, 0.9), #202020);
    opacity: 0;
    transition: 0.3s ease-in;
  }
}
.p-nav__logo {
  position: absolute;
  top: calc((var(--header-h) - 2.5625rem) / 2);
  left: 1.25rem;
}
@media screen and (min-width: 1200px) {
  .p-nav__logo {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-nav__logo {
    left: 2.5rem;
  }
}
.p-nav__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .p-nav__list {
    flex-direction: row;
    gap: 1.8125rem;
    align-items: center;
    justify-content: start;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__list {
    width: min(100%, 31.25rem);
    margin-inline: auto;
  }
}
.p-nav__link-hover, .p-nav__link {
  position: relative;
  display: block;
  font-family: var(--ff-garamond);
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .p-nav__link-hover, .p-nav__link {
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-nav__link-hover::after, .p-nav__link::after {
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    z-index: 3;
    width: 2.5rem;
    height: 1px;
    margin-inline: auto;
    content: "";
    background-color: #c78624;
    opacity: 0;
    transition: 0.3s opacity;
  }
}
@media screen and (min-width: 1200px) {
  .p-nav__link-hover:hover::after, .p-nav__link-hover:focus-within::after, .p-nav__link:hover::after, .p-nav__link:focus-within::after {
    opacity: 1;
  }
}
.p-nav__link-hover {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .p-nav__link-hover {
    flex-direction: column;
    width: 100%;
  }
}
.p-nav__link-hover .p-nav__link {
  padding-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .p-nav__link-hover .p-nav__link {
    display: none;
  }
}
.p-nav__link-hover .p-nav__link::after {
  display: none;
}
@media screen and (min-width: 1200px) {
  .p-nav__link-hover:hover .p-nav__dropdown, .p-nav__link-hover:focus-within .p-nav__dropdown {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__link, .p-nav__toggle-btn {
    border-bottom: 1px solid #4a4949;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__link::after, .p-nav__toggle-btn::after {
    position: absolute;
    inset-block: 0;
    right: 0;
    display: block;
    width: 0.5rem;
    height: 0.875rem;
    margin-block: auto;
    content: "";
    background: url("../img/common/icon/arrow_r.webp") no-repeat center/contain;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__link {
    padding-block: 0.875rem;
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__nav .p-nav__link {
    color: transparent;
  }
}
.p-nav__toggle-btn {
  display: none;
}
@media screen and (max-width: 1199px) {
  .p-nav__toggle-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.875rem 0;
    color: #aeaeae;
    text-align: left;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #4a4949;
  }
}
.p-nav__toggle-btn::after {
  right: 0.25rem;
  transform: rotate(90deg);
  transition: transform 0.5s;
}
@media screen and (max-width: 1199px) {
  .p-nav__toggle-btn.is-open::after {
    transform: rotate(-90deg);
  }
}
.p-nav__dropdown {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .p-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 3;
    visibility: hidden;
    width: max-content;
    padding: 1.25rem;
    background-color: #000;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-50%);
    transition: 0.3s;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__dropdown {
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #1b1b1b;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.p-nav__dropdown-list {
  display: grid;
  gap: 0.5rem;
}
@media screen and (max-width: 1199px) {
  .p-nav__dropdown-list {
    gap: 0.75rem;
    padding-block: 0.875rem;
  }
}
.p-nav__dropdown-link {
  position: relative;
  display: block;
  padding-inline: 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .p-nav__dropdown-link {
    padding-inline: 0 3.25rem;
  }
}
.p-nav__dropdown-link::after {
  position: absolute;
  inset-block: 0;
  right: 1.0625rem;
  display: block;
  width: 1.75rem;
  height: 0.4375rem;
  margin-block: auto;
  content: "";
  background: url("../img/common/icon/arrow_solid_r.webp") no-repeat center/contain;
}
@media screen and (min-width: 1200px) {
  .p-nav__dropdown-link::after {
    right: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .p-nav__dropdown-link span {
    position: relative;
    background: linear-gradient(#fff, #fff) 100% 100%/0 1px no-repeat;
    transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .p-nav__dropdown-link::after {
    transition: right 0.3s;
  }
  .p-nav__dropdown-link:hover span {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
  .p-nav__dropdown-link:hover::after {
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-nav__contact {
    position: fixed;
    top: calc((var(--header-h) - 2.0625rem) / 2);
    right: 2.5rem;
    z-index: 100;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__contact {
    margin-top: 2.5rem;
    text-align: center;
  }
}
.p-nav__contact-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 7.3125rem;
  height: 2.0625rem;
  padding: 0.3125rem;
  font-family: var(--ff-garamond);
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  background-image: var(--gradient-gold);
  background-position: left center;
  background-size: 200% 100%;
  border-radius: 100vmax;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  .p-nav__contact-btn {
    width: min(100%, 20.9375rem);
    height: 3.625rem;
    font-size: 1.5rem;
  }
}
.p-nav__contact-btn::before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: "";
  background-image: linear-gradient(120deg, #785e3e, #e7c8a3);
  background-size: 100%;
  border-radius: 100vmax;
}
@media screen and (max-width: 1199px) {
  .p-nav__contact-btn::before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .p-nav__contact-btn::after {
    position: absolute;
    inset-block: 0;
    right: 1.25rem;
    width: 1.75rem;
    height: 0.4375rem;
    margin-block: auto;
    content: "";
    background: url("../img/common/icon/arrow_solid_r.webp") no-repeat center/contain;
  }
}
@media (any-hover: hover) {
  .p-nav__contact-btn {
    transition: background-position 0.3s;
  }
  .p-nav__contact-btn:hover {
    background-position: right center;
  }
}
.p-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s opacity, 0.3s visibility;
}
.p-nav__overlay.is-active {
  visibility: visible;
  opacity: 1;
}

.p-nav-page__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem 0.9375rem;
}
@media screen and (min-width: 769px) {
  .p-nav-page__list {
    gap: 1.5rem;
  }
}
.p-nav-page__list > li {
  flex: 0 0 calc(50% - 1.5rem);
}
@media screen and (min-width: 769px) {
  .p-nav-page__list > li {
    flex: 0 0 auto;
  }
}
.p-nav-page__link {
  position: relative;
  display: block;
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  font-family: var(--ff-gothic);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--main-text-color);
  text-decoration: none;
  border-bottom: 1px solid #d8d8d8;
  transition: border-color 0.3s;
}
@media screen and (min-width: 769px) {
  .p-nav-page__link {
    min-width: 10rem;
  }
}
.p-nav-page__link::after {
  position: absolute;
  inset-block: 0;
  right: 0.625rem;
  display: block;
  width: 0.625rem;
  height: 0.3125rem;
  margin-block: auto;
  content: "";
  background: url("../img/common/icon/arrow_b_brown.webp") no-repeat center/contain;
}
.p-nav-page__link.-active {
  border-bottom-color: var(--color-gold-dark);
}
@media (any-hover: hover) {
  .p-nav-page__link:hover {
    border-bottom-color: var(--color-gold-dark);
  }
}

.p-nav-article {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  margin-top: 5.9375rem;
}
.p-nav-article__prev, .p-nav-article__next, .p-nav-article__all {
  display: block;
  font-weight: 500;
}
.p-nav-article__all {
  font-size: 1.125rem;
  text-decoration: underline;
  text-underline-offset: 0.875rem;
}
@media (hover: hover) {
  .p-nav-article__all {
    transition: 0.3s;
    transition-property: text-underline-offset, color;
  }
  .p-nav-article__all:hover {
    color: var(--color-gold-dark);
    text-underline-offset: 1rem;
  }
}
.p-nav-article__prev, .p-nav-article__next {
  position: absolute;
  font-family: var(--ff-garamond);
  font-size: 1.25rem;
}
.p-nav-article__prev::before, .p-nav-article__next::before {
  position: absolute;
  inset-block: 0;
  display: block;
  width: 1.5rem;
  height: 0.4375rem;
  margin-block: auto;
  content: "";
  background: url("../img/common/icon/arrow_solid_r_black.webp") no-repeat center/contain;
}
@media (hover: hover) {
  .p-nav-article__prev, .p-nav-article__next {
    transition: 0.3s;
    transition-property: color;
  }
  .p-nav-article__prev::before, .p-nav-article__next::before {
    transition: 0.3s;
    transition-property: transform;
  }
  .p-nav-article__prev:hover, .p-nav-article__next:hover {
    color: var(--color-gold-dark);
  }
}
.p-nav-article__prev {
  left: -4.6875rem;
}
@media screen and (min-width: 769px) {
  .p-nav-article__prev {
    left: -7.1875rem;
  }
}
.p-nav-article__prev::before {
  left: -2.375rem;
  transform: scaleX(-1);
}
@media (hover: hover) {
  .p-nav-article__prev:hover::before {
    transform: scaleX(-1) translateX(0.25rem);
  }
}
.p-nav-article__next {
  right: -4.6875rem;
}
@media screen and (min-width: 769px) {
  .p-nav-article__next {
    right: -7.1875rem;
  }
}
.p-nav-article__next::before {
  right: -2.375rem;
}
@media (hover: hover) {
  .p-nav-article__next:hover::before {
    transform: translateX(0.25rem);
  }
}

/* ========================================
  page-top
======================================== */
.p-page-top {
  position: sticky;
  bottom: 3.125rem;
  z-index: 98;
  height: 0;
  padding-right: 1.25rem;
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-page-top.is-show {
  opacity: 1;
}
.p-page-top__btn {
  position: relative;
  top: -1.875rem;
  padding: 0;
  margin-bottom: -1.875rem;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 50%;
}
@media (any-hover: hover) {
  .p-page-top__btn {
    transition: 0.3s;
    transition-property: transform;
  }
  .p-page-top__btn:hover {
    transform: scale(1.1);
  }
}

.p-slide .splide__slide {
  display: grid;
  place-items: center;
  height: 31.25rem;
  color: #fff;
  background: #000;
}
.p-slide .splide__slide:nth-child(even) {
  background: gray;
}
.p-slide .splide__pagination {
  display: flex;
  flex-flow: row wrap;
  gap: 0.625rem;
  align-items: center;
  padding: 0;
  font-size: 0.625rem;
  text-align: center;
}
.p-slide .splide__pagination__page {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  margin: 0 0.2em;
  vertical-align: top;
  background: #000;
  border-radius: 100em;
}
.p-slide .splide__pagination__page[aria-selected=true] {
  background: blue;
}
.p-slide .thumbnail {
  width: 70px;
  height: auto;
  margin: 0 0.2rem;
  overflow: hidden;
  cursor: pointer;
  list-style: none;
  border: 2px solid #fff;
}
.p-slide .thumbnail img {
  width: 100%;
  height: auto;
}

/* ========================================
  tab
======================================== */
.p-tab {
  width: 100%;
}
.p-tab [role=tablist] {
  display: flex;
}
.p-tab [role=tab] {
  padding: 0.5em 1em;
  background-color: #ccc;
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
}
.p-tab [role=tab][aria-selected=true] {
  color: #fff;
  background-color: #000;
}
.p-tab [role=tab][aria-selected=false]:hover {
  cursor: pointer;
}
.p-tab [role=tabpanel] {
  height: auto;
  padding: 1em;
  background-color: #999;
  border-radius: 0 0.5rem 0.5rem 0;
  opacity: 1;
  transition: 0.5s opacity;
}
.p-tab [role=tabpanel]:not(.is-visible) {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* ========================================
  ttl
======================================== */
.p-ttl-a {
  display: inline-grid;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: fit-content;
}
.p-ttl-a__en {
  padding-bottom: 0.15em;
  font-family: var(--ff-garamond);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  background: var(--gradient-text-light);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 769px) {
  .p-ttl-a__en {
    font-size: 5.625rem;
  }
}
.p-ttl-a__ja {
  padding-left: 0.2em;
  font-family: var(--ff-noto-serif);
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .p-ttl-a__ja {
    font-size: 1rem;
  }
}
.p-ttl-a.-dark .p-ttl-a__en {
  background: var(--gradient-text-dark);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-ttl-a.-dark .p-ttl-a__ja {
  color: #fff;
}
.p-ttl-a.-lg .p-ttl-a__en {
  font-size: 4.5rem;
}
@media screen and (min-width: 769px) {
  .p-ttl-a.-lg .p-ttl-a__en {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .performance .p-ttl-a.-lg .p-ttl-a__en {
    letter-spacing: -0.028em;
  }
}
@media screen and (max-width: 768px) {
  .tax .p-ttl-a.-lg .p-ttl-a__en, .audit .p-ttl-a.-lg .p-ttl-a__en {
    font-size: 4.3125rem;
  }
}
.p-ttl-a.-lg .p-ttl-a__ja {
  font-size: 1.25rem;
}
.group .p-ttl-a.-lg .p-ttl-a__ja {
  margin-top: 0.625rem;
}
@media screen and (min-width: 769px) {
  .group .p-ttl-a.-lg .p-ttl-a__ja {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .tax .p-ttl-a.-lg .p-ttl-a__ja, .audit .p-ttl-a.-lg .p-ttl-a__ja {
    margin-top: 0.875rem;
  }
}

.p-ttl-b {
  margin-bottom: 0.5rem;
  font-family: var(--ff-mincho);
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-ttl-b {
    margin-bottom: 0.3125rem;
    font-size: 1.75rem;
  }
}

.p-content-loop-txt {
  --loop-txt-width: 354px;
  --loop-gap: 14px;
}
@media screen and (min-width: 769px) {
  .p-content-loop-txt {
    --loop-txt-width: 741px;
    --loop-gap: 40px;
  }
}
.p-content-loop-txt {
  position: relative;
  width: calc(100vw - var(--scrollbar-width));
  max-width: 100vw;
  overflow: hidden;
}
.p-content-loop-txt.-performance {
  --loop-txt-width: 220px;
  --loop-gap: 23px;
}
@media screen and (min-width: 769px) {
  .p-content-loop-txt.-performance {
    --loop-txt-width: 300px;
    --loop-gap: 24px;
  }
}
.p-content-loop-txt.-performance .p-content-loop-txt__items {
  animation: loop-left 30s linear infinite;
}

.p-content-loop-txt__items {
  display: flex;
  gap: 0 var(--loop-gap);
  align-items: center;
  transform: translateX(0);
  animation: loop-left 180s linear infinite;
  will-change: transform;
}
.p-content-loop-txt__items span {
  display: block;
  flex-shrink: 0;
  width: var(--loop-txt-width);
  height: auto;
  font-family: var(--ff-garamond);
  font-size: 5.375rem;
  font-weight: 400;
  color: #f4f4f4;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media screen and (min-width: 769px) {
  .p-content-loop-txt__items span {
    font-size: 11.25rem;
  }
}
.p-content-loop-txt__items.is-right {
  transform: translateX(calc((var(--loop-txt-width) + var(--loop-gap)) * -7));
  animation: loop-right 180s linear infinite;
}
.p-content-loop-txt__items + .p-content-loop-img__items {
  margin-top: var(--loop-gap);
}

@keyframes loop-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((var(--loop-txt-width) + var(--loop-gap)) * -7));
  }
}
@keyframes loop-right {
  0% {
    transform: translateX(calc((var(--loop-txt-width) + var(--loop-gap)) * -7));
  }
  100% {
    transform: translateX(0);
  }
}
.p-content-media__inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 0 5.9375rem;
}
@media screen and (min-width: 1025px) {
  .p-content-media__inner {
    grid-template-columns: 1fr 42%;
    gap: 5.625rem;
    align-items: end;
    padding-block: 3.75rem 9.375rem;
  }
}
.p-content-media__sub-ttl {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .p-content-media__sub-ttl {
    margin-top: 2.625rem;
    font-size: 1.75rem;
  }
}
.p-content-media__desc {
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  .p-content-media__desc {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.p-content-media__img {
  overflow: hidden;
  border-radius: 0.375rem;
  box-shadow: 8px 11px 11px 0 rgba(0, 0, 0, 0.1);
}
.p-content-media__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.global-network .p-content-media .p-content-media__inner {
  grid-template-columns: 1fr;
  align-items: start;
  padding-block: 1.25rem 5rem;
}
@media (1120px <= width) {
  .global-network .p-content-media .p-content-media__inner {
    grid-template-columns: 1fr 36.2%;
    gap: 4.375rem;
    padding-block: 6.5625rem 9.375rem;
  }
}
.global-network .p-content-media .p-content-media__desc {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .global-network .p-content-media .p-content-media__desc {
    font-size: 1.25rem;
  }
}

.p-content-stats__list {
  display: grid;
}
.p-content-stats__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding-block: 0;
  padding-inline: 0.5625rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-content-stats__item {
    padding-inline: 2.25rem;
    border-left: 1px solid #797979;
  }
}
@media screen and (min-width: 769px) {
  .p-content-stats__item:last-child {
    border-right: 1px solid #797979;
  }
}
@media screen and (max-width: 768px) {
  .p-content-stats__item + .p-content-stats__item {
    border-left: 1px solid #797979;
  }
}
.p-content-stats__label {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold-mid);
}
@media screen and (min-width: 769px) {
  .p-content-stats__label {
    font-size: 0.9375rem;
  }
}
.p-content-stats__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}
.p-content-stats__value {
  font-family: var(--ff-garamond);
  font-size: 2.375rem;
}
@media screen and (min-width: 769px) {
  .p-content-stats__value {
    font-size: 4rem;
  }
}
.p-content-stats__unit {
  font-family: var(--ff-mincho);
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) {
  .p-content-stats__unit {
    font-size: 1.5rem;
  }
}
.p-content-stats__note {
  padding-right: 0.3125rem;
  margin-top: 0.9375rem;
  font-family: var(--ff-gothic);
  font-size: 0.75rem;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .p-content-stats__note {
    padding-right: 0.625rem;
    font-size: 0.875rem;
  }
}
.global-network .p-content-stats {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .global-network .p-content-stats {
    margin-top: 3.4375rem;
  }
}
.global-network .p-content-stats .p-content-stats__list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 769px) {
  .global-network .p-content-stats .p-content-stats__list {
    grid-template-columns: repeat(3, auto);
  }
}

.p-content-strength {
  position: relative;
  overflow: hidden;
}
.tax .p-content-strength {
  background: url("../img/page/tax/strength_bg_sp.webp") no-repeat center center/cover;
}
@media screen and (min-width: 769px) {
  .tax .p-content-strength {
    background: url("../img/page/tax/strength_bg.webp") no-repeat center center/cover;
  }
}
.audit .p-content-strength {
  background: url("../img/page/audit/strength_bg_sp.webp") no-repeat center center/cover;
}
@media screen and (min-width: 769px) {
  .audit .p-content-strength {
    background: url("../img/page/audit/strength_bg.webp") no-repeat center center/cover;
  }
}
.p-content-strength__inner {
  display: flex;
  flex-flow: column wrap;
  gap: 2.1875rem;
  padding-block: 5.625rem 6.25rem;
}
@media screen and (min-width: 1025px) {
  .p-content-strength__inner {
    flex-direction: row;
    gap: 0rem;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: 8.75rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-content-strength__head {
    flex: 0 0 26.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-content-strength__list {
    flex: 1;
  }
}
.p-content-strength__item {
  padding-block: 1.4375rem 1.75rem;
  border-bottom: 1px solid #797979;
}
@media screen and (min-width: 769px) {
  .p-content-strength__item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    padding-block: 2.5rem 1.75rem;
  }
}
.p-content-strength__item:first-child {
  padding-block-start: 0;
}
.p-content-strength__item-num {
  display: inline-block;
  font-family: var(--ff-garamond);
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(120deg, #785e3e 8%, #e7c8a3 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 769px) {
  .p-content-strength__item-num {
    margin-top: 0.75rem;
  }
}
.p-content-strength__item-ttl {
  font-size: 1.375rem;
  color: #fff;
}
.p-content-strength__item-desc {
  padding-left: 0.3125rem;
  margin-top: 0.625rem;
  font-family: var(--ff-gothic);
  font-size: 1rem;
  color: #fff;
}

.p-content-service__inner {
  padding-block: 5.625rem 4.0625rem;
}
@media screen and (min-width: 769px) {
  .p-content-service__inner {
    padding-block: 9.375rem 8.125rem;
  }
}

.p-content-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.625rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .p-content-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.375rem;
  }
}
.global-crossborder .p-content-cards {
  margin-top: 2.5rem;
}
@media (1080px <= width) {
  .global-crossborder .p-content-cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4.6875rem;
  }
}

.p-content-card {
  position: relative;
  border-radius: 0.25rem;
  box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.08);
}
.p-content-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: "";
  background-image: linear-gradient(135deg, #eee, #afafaf 100%);
  border-radius: 0.25rem;
}
.p-content-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem 1.5625rem 1.875rem;
  background-color: #fff;
  border-radius: 0.25rem;
}
@media screen and (min-width: 769px) {
  .p-content-card__inner {
    gap: 0.625rem;
    padding: 2rem;
  }
}
.p-content-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-content-card__head {
    align-items: flex-start;
  }
}
.p-content-card__num {
  font-family: var(--ff-garamond);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(62deg, rgb(117, 103, 91) 15%, rgb(231, 200, 163) 81%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-content-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
}
.p-content-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-content-card__ttl {
  font-family: var(--ff-mincho);
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .p-content-card__ttl {
    font-size: 1.375rem;
  }
}
.p-content-card__desc {
  font-family: var(--ff-gothic);
  font-size: 1rem;
  text-align: justify;
}
.p-content-card.-bg-alpha {
  color: #fff;
}
.p-content-card.-bg-alpha .p-content-card__inner {
  background-color: rgba(255, 255, 255, 0.16);
}
.p-content-card.-bg-alpha::before {
  background-image: none;
}

.p-content-rep__inner {
  padding-block: 0 6.25rem;
}
@media screen and (min-width: 769px) {
  .p-content-rep__inner {
    padding-block: 0 9.375rem;
  }
}
.p-content-rep__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.25rem;
  background: linear-gradient(151deg, #eee 0%, #afafaf 100%);
  border-radius: 0.5rem;
  box-shadow: 0 14px 20px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 769px) {
  .p-content-rep__card {
    padding: 3.75rem;
  }
}
@media screen and (min-width: 1025px) {
  .p-content-rep__card {
    flex-direction: row;
    gap: 3.75rem;
    background: url("../img/common/logo_04.webp") no-repeat right -4rem top -5.625rem/25rem, linear-gradient(151deg, #eee 0%, #afafaf 100%);
  }
}
.p-content-rep__card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  content: "";
  background-image: linear-gradient(-151deg, #eee 0%, #afafaf 100%);
  border-radius: 0.5rem;
}
.p-content-rep__img {
  width: 100%;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 1025px) {
  .p-content-rep__img {
    flex: 0 0 16.25rem;
  }
}
.p-content-rep__img img {
  width: 100%;
  border-radius: 0.4375rem;
}
.p-content-rep__content {
  flex: 1;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .p-content-rep__content {
    margin-top: 0.9375rem;
  }
}
.p-content-rep__role {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(108deg, #75675b, #e7c8a3);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-content-rep__name-wrap {
  display: flex;
  gap: 0.625rem;
  align-items: flex-end;
  margin-top: 0.3125rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .p-content-rep__name-wrap {
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}
.p-content-rep__name-ja {
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) {
  .p-content-rep__name-ja {
    font-size: 1.75rem;
  }
}
.p-content-rep__name-en {
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) {
  .p-content-rep__name-en {
    font-size: 1rem;
  }
}
.p-content-rep__career-list {
  padding: 1.5rem;
  margin-top: 1.0625rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.25rem;
}
@media screen and (min-width: 769px) {
  .p-content-rep__career-list {
    padding: 2rem;
    margin-top: 1.875rem;
  }
}
.p-content-rep__career-list li {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
}
.p-content-rep__career-list li + li {
  margin-top: 0.375rem;
}
.p-content-rep__career-list li::before {
  position: absolute;
  top: calc((1lh - 0.1875rem) / 2);
  left: 0;
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  background-color: var(--main-text-color);
  border-radius: 50%;
}

/* ========================================
  contact
======================================== */
.p-contact__link {
  display: block;
  min-height: 10.5rem;
  background-color: rgba(32, 32, 32, 0.9);
  border-top: 1px solid transparent;
}
@media screen and (min-width: 769px) {
  .p-contact__link {
    min-height: 18.75rem;
  }
}
@media (hover: hover) {
  .p-contact__link {
    transition: 0.5s;
    transition-property: background-color, border-color;
  }
  .p-contact__link .p-contact__ttl-txt-gradient {
    transition: 0.5s;
    transition-property: color;
  }
  .p-contact__link .p-contact__contact::before {
    transition: 0.5s;
    transition-property: background, border-color, transform;
  }
  .p-contact__link .p-contact__contact::after {
    opacity: 0;
    transition: 0.5s;
    transition-property: opacity, transform;
  }
  .p-contact__link:hover {
    background-color: #f2f2f2;
    border-color: #b4b4b4;
  }
  .p-contact__link:hover .p-contact__ttl-txt-gradient {
    opacity: 1;
  }
  .p-contact__link:hover .p-contact__contact::before {
    border-color: #f2f2f2;
    transform: scale(0.86);
  }
  .p-contact__link:hover .p-contact__contact::after {
    opacity: 1;
    transform: scale(0.86);
  }
}
.p-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: inherit;
  padding-block: 2.9375rem;
}
@media screen and (min-width: 769px) {
  .p-contact__inner {
    padding-block: 4.6875rem;
  }
}
.p-contact__ttl {
  position: relative;
  font-family: var(--ff-garamond);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: #e6e6e6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 769px) {
  .p-contact__ttl {
    font-size: 5.625rem;
  }
}
.p-contact__ttl-txt > span, .p-contact__ttl-txt-gradient > span {
  margin-left: -0.1em;
}
.p-contact__ttl-txt-gradient {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gradient-text-light);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}
.p-contact__contact {
  position: relative;
  display: grid;
  place-content: center;
  width: 4.625rem;
  height: 4.625rem;
  font-family: var(--ff-garamond);
  color: #fff;
}
@media screen and (min-width: 769px) {
  .p-contact__contact {
    width: 9.375rem;
    height: 9.375rem;
    font-size: 1.75rem;
  }
}
.p-contact__contact::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent;
  border: 1px solid #777;
  border-radius: 50%;
  transition: 0.5s;
  transition-property: border-color, transform;
}
.p-contact__contact::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, #785e3e, #e7c8a3);
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s;
  transition-property: opacity, transform;
}
.p-contact__contact-txt {
  position: relative;
  z-index: 2;
}

.p-contact-b {
  margin-top: -8.4375rem;
}
@media screen and (min-width: 769px) {
  .p-contact-b {
    margin-top: -6.875rem;
  }
}
.p-contact-b__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  min-height: 14.1875rem;
  padding: 1.875rem;
  background: url("../img/common/contact_bg_01_sp.webp") no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 0.25rem;
  box-shadow: 0 14px 16px rgba(0, 0, 0, 0.14);
}
@media screen and (min-width: 769px) {
  .p-contact-b__inner {
    --container-w: 74.625rem;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
    min-height: 13rem;
    padding: 1.25rem 5.625rem;
    background-image: url("../img/common/contact_bg_01.webp");
  }
}
.p-contact-b__txt {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-contact-b__txt {
    font-size: 1.125rem;
    text-align: left;
  }
}

/* ========================================
  page-header
======================================== */
.p-page-header__inner {
  padding-block: 3.75rem;
}
@media screen and (min-width: 769px) {
  .p-page-header__inner {
    padding-block: 3.125rem 5rem;
  }
}
.news .p-page-header__inner {
  padding-block: 3.75rem 1.5rem;
}
@media screen and (min-width: 769px) {
  .news .p-page-header__inner {
    padding-block: 3.125rem 1.875rem;
  }
}
.p-page-header__line {
  width: 4rem;
  height: 0.0625rem;
  margin-block: 1.875rem;
  margin-left: 0;
  background-color: #797979;
}
@media screen and (min-width: 769px) {
  .p-page-header__line {
    margin-block: 2.3125rem;
  }
}
.p-page-header__caption {
  font-family: var(--ff-gothic);
}
.p-page-header__nav {
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .p-page-header__nav {
    margin-top: 4.25rem;
  }
}
.p-page-header__info {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 769px) {
  .p-page-header__info {
    margin-top: 0.8125rem;
  }
}
.p-page-header__tel {
  font-family: var(--ff-garamond);
  font-size: 2.5rem;
  line-height: 1;
}
.p-page-header__tel .hyphen {
  margin-inline: 0.3125rem;
  font-family: var(--sans-serif);
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1;
}
.p-page-header__tel-label {
  margin-right: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  background: var(--gradient-text-light);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-page-header__time {
  margin-top: 0.4375rem;
  font-family: var(--ff-gothic);
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) {
  .p-page-header__time {
    margin-top: 0.3125rem;
  }
}

.p-page-content__inner {
  padding-block: 6.25rem;
}
@media screen and (min-width: 769px) {
  .p-page-content__inner {
    padding-block: 8.75rem;
  }
}
.news .p-page-content__inner, .contact .p-page-content__inner {
  padding-block: 0 6.25rem;
}
@media screen and (min-width: 769px) {
  .news .p-page-content__inner, .contact .p-page-content__inner {
    padding-block: 0 8.75rem;
  }
}

/* ========================================
  fixed-bg
======================================== */
.p-fixed-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 120%;
  height: 100%;
  background: url("../img/common/fixed_bg_sp.webp") no-repeat center top/100%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .p-fixed-bg {
    background: url("../img/common/fixed_bg.webp") no-repeat center top/100%;
  }
}

/* ========================================
  breadcrumb
======================================== */
.p-breadcrumb {
  --container-w: 100%;
  font-family: var(--ff-gothic);
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .p-breadcrumb {
    font-size: 0.875rem;
  }
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-end;
}
.p-breadcrumb__item:not(:last-child)::after {
  margin-left: 0.3125rem;
  content: "/";
}
.p-breadcrumb__item a {
  color: #af7026;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
@media (hover: hover) {
  .p-breadcrumb__item a {
    transition: 0.5s;
    transition-property: text-underline-offset;
  }
  .p-breadcrumb__item a:hover {
    text-underline-offset: 12px;
  }
}

/* ========================================
  table
======================================== */
.p-table-a {
  width: 100%;
  font-family: var(--ff-gothic);
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .p-table-a tr {
    display: grid;
    gap: 0.625rem;
    padding-block: 1.25rem;
    border-bottom: 1px solid #d8d8d8;
  }
}
.p-table-a tr th,
.p-table-a tr td {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .p-table-a tr th,
  .p-table-a tr td {
    padding-block: 3.125rem;
    border-bottom: 1px solid #d8d8d8;
  }
}
.p-table-a tr th {
  font-size: 1.125rem;
  font-weight: 400;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .p-table-a tr th {
    width: 20%;
  }
}
.p-table-a tr td {
  font-size: 1rem;
}

/* ========================================
  related
======================================== */
.p-related__inner {
  display: grid;
  gap: 2.3125rem;
  padding-block: 5rem 6.25rem;
}
@media screen and (min-width: 1025px) {
  .p-related__inner {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: 10rem 9.375rem;
  }
}
.p-related__cards {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-related__cards {
    flex-direction: row;
    gap: 1.5rem;
    width: min(100%, 45.5rem);
  }
}
.p-related__card {
  flex: 1;
}
.p-related__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
  padding: 1.875rem 1.25rem;
  overflow: hidden;
  color: #fff;
  border-radius: 0.25rem;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .p-related__card-link {
    min-height: 21.875rem;
    padding: 2.5rem 1.875rem;
  }
}
@media (hover: hover) {
  .p-related__card-link {
    transition: 0.3s;
    transition-property: opacity;
  }
  .p-related__card-link:hover {
    opacity: 0.8;
  }
}
.p-related__card-link.-service {
  background: url("../img/common/related_bg_service.webp") no-repeat center/cover;
}
.p-related__card-link.-performance {
  background: url("../img/common/related_bg_performance.webp") no-repeat center/cover;
}
.p-related__card-link.-group {
  background: url("../img/common/related_bg_group.webp") no-repeat center/cover;
}
.p-related__card-category {
  position: relative;
  z-index: 1;
  font-family: var(--ff-garamond);
  font-size: 0.875rem;
  line-height: 1;
  background: linear-gradient(108deg, rgb(117, 103, 91) 0%, rgb(231, 200, 163) 26%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-related__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #fff;
}
.p-related__card-ttl {
  font-family: var(--ff-mincho);
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .p-related__card-ttl {
    font-size: 1.375rem;
  }
}
.p-related__card-desc {
  font-family: var(--ff-gothic);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.04em;
}

/* ========================================
  archive
======================================== */
.news .p-archive {
  margin-top: 1.125rem;
}
@media screen and (min-width: 769px) {
  .news .p-archive {
    margin-top: 4.0625rem;
  }
}
.p-archive__list {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.p-archive__item {
  border-bottom: 1px solid #e0e0e0;
}
.p-archive__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  padding-block: 2rem;
  padding-right: 2.5rem;
}
@media screen and (min-width: 769px) {
  .p-archive__link {
    flex-direction: row;
    gap: 1.875rem;
    align-items: center;
  }
}
.p-archive__link::after {
  position: absolute;
  inset-block: auto 2rem;
  right: 0;
  width: 1.5rem;
  height: 0.4375rem;
  content: "";
  background: url("../img/common/icon/arrow_solid_r_black.webp") no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .p-archive__link::after {
    inset-block: 0;
    right: 0.5rem;
    margin-block: auto;
  }
}
@media (any-hover: hover) {
  .p-archive__link::after {
    transition: 0.5s;
    transition-property: right;
  }
  .p-archive__link .p-archive__ttl {
    transition: 0.5s;
    transition-property: color;
  }
  .p-archive__link:hover::after {
    right: 0;
  }
  .p-archive__link:hover .p-archive__ttl {
    color: #9d8160;
  }
}
.p-archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem 0.625rem;
  margin-bottom: 0.875rem;
}
.p-archive__category {
  display: block;
  padding: 0.125rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background-color: #b09e88;
  border: 1px solid #b09e88;
  border-radius: 0.9375rem;
}
.p-archive__date {
  font-family: var(--ff-mincho);
}
@media screen and (min-width: 1025px) {
  .p-archive__date {
    flex: 0 0 6.8125rem;
    border-right: 1px solid #cdcdcd;
  }
}
.p-archive__ttl {
  flex: 1;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .p-archive__ttl {
    line-height: 1.6;
  }
}

/* ========================================
  category
======================================== */
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.p-category {
  display: block;
  padding: 0.125rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid #b09e88;
  border-radius: 0.9375rem;
}
.p-category.is-current {
  color: #fff;
  background-color: #b09e88;
}

/* ========================================
  pagination
======================================== */
.p-pagination {
  --item-size: 1.8125rem;
  width: fit-content;
  margin-inline: auto;
  margin-top: 4.8125rem;
}
@media screen and (min-width: 769px) {
  .p-pagination {
    --item-size: 2.375rem;
    margin-top: 5.8125rem;
  }
}
.p-pagination__numbers {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  align-items: center;
  justify-content: center;
}
.p-pagination__numbers a,
.p-pagination__numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-garamond);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--main);
  text-decoration: none;
  border-radius: 6px;
}
@media (any-hover: hover) {
  .p-pagination__numbers a,
  .p-pagination__numbers span {
    transition: 0.3s;
    transition-property: color, background;
  }
  .p-pagination__numbers a:hover,
  .p-pagination__numbers span:hover {
    color: #fff;
    background: var(--color-gold-dark);
  }
}
.p-pagination__numbers .numbers,
.p-pagination__numbers .current {
  width: var(--item-size);
  height: var(--item-size);
}
.p-pagination__numbers .dots {
  width: max-content;
}
@media (hover: hover) {
  .p-pagination__numbers .dots:hover {
    color: initial;
    cursor: default;
    background: initial;
  }
}
.p-pagination__numbers .current {
  color: #fff;
  background: var(--color-gold-dark);
}
.p-pagination__numbers .numbers-arrow__prev,
.p-pagination__numbers .numbers-arrow__next {
  position: absolute;
  font-size: 1.25rem;
}
.p-pagination__numbers .numbers-arrow__prev {
  left: calc(var(--item-size) * 1.45 * -1);
}
@media screen and (min-width: 769px) {
  .p-pagination__numbers .numbers-arrow__prev {
    left: calc(var(--item-size) * 1.95 * -1);
  }
}
.p-pagination__numbers .numbers-arrow__next {
  right: calc(var(--item-size) * 1.45 * -1);
}
@media screen and (min-width: 769px) {
  .p-pagination__numbers .numbers-arrow__next {
    right: calc(var(--item-size) * 1.95 * -1);
  }
}
.p-pagination__numbers .prev,
.p-pagination__numbers .next {
  position: relative;
  width: var(--item-size);
  height: var(--item-size);
  white-space: nowrap;
  background: var(--gray06);
  border: 1px solid var(--gray05);
  border: none;
}
.p-pagination__numbers .prev::before,
.p-pagination__numbers .next::before {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 0.4375rem;
  content: "";
  background: url("../img/common/icon/arrow_solid_r_black.webp") no-repeat center/contain;
}
@media (any-hover: hover) {
  .p-pagination__numbers .prev:hover::before,
  .p-pagination__numbers .next:hover::before {
    border-top-color: var(--base);
    border-right-color: var(--base);
  }
}
.p-pagination__numbers .prev::before {
  left: -2.3125rem;
  transform: scale(-1, 1);
}
.p-pagination__numbers .next::before {
  right: -2.3125rem;
}

/* ========================================
  form
======================================== */
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.p-form {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 769px) {
  .p-form {
    margin-top: 1.25rem;
    border-radius: 16px;
  }
}

.p-form__inner {
  padding: 1.25rem;
}
@media screen and (min-width: 769px) {
  .p-form__inner {
    padding: 4.375rem 5rem;
  }
}

.p-form__desc {
  font-family: var(--ff-gothic);
}

.p-form__group {
  padding-top: 2.9375rem;
  margin-top: 2rem;
  border-top: 1px solid #cdcdcd;
}
@media screen and (min-width: 769px) {
  .p-form__group {
    padding-top: 3.9375rem;
    margin-top: 2.5rem;
  }
}

.p-form__row {
  display: grid;
  gap: 0.5rem 0;
}
.p-form__row + .p-form__row {
  margin-top: 2.5rem;
}

.p-form__label {
  display: grid;
  grid-auto-flow: column;
  gap: 0 0.625rem;
  align-items: center;
  justify-content: start;
  font-family: var(--ff-gothic);
  line-height: 1.5;
}

.p-form__required,
.p-form__any {
  padding: 0 0.5rem;
  font-size: 0.625rem;
  color: #fff;
}

.p-form__required {
  background-color: #b09e88;
}

.p-form__any {
  background-color: #858585;
}

.p-form__input input[type=text],
.p-form__input input[type=email],
.p-form__input input[type=tel] {
  width: 100%;
  height: 2.875rem;
  padding: 0.5em 1em;
  font-family: var(--ff-gothic);
  font-size: 0.875rem;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  border-radius: 0.25rem;
}
.p-form__input textarea {
  width: 100%;
  height: 15rem;
  padding: 0.5em 1em;
  font-family: var(--ff-gothic);
  resize: vertical;
  border: 1px solid #cdd6dd;
}
.p-form__input input[type=checkbox],
.p-form__input input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.p-form__input input[type=checkbox] + label,
.p-form__input input[type=radio] + label {
  cursor: pointer;
}
.p-form__input input[type=checkbox]:focus + label,
.p-form__input input[type=radio]:focus + label {
  text-decoration: underline;
}
.p-form__input input[type=checkbox]:disabled + label,
.p-form__input input[type=radio]:disabled + label {
  color: #ccc;
  cursor: not-allowed;
}
.p-form__input.zip-code {
  display: flex;
  gap: 0.3125rem;
  align-items: center;
}
.p-form__input.zip-code input[type=text] {
  width: 6.75rem;
}

.p-form__privacy-policy {
  margin-top: 6.25rem;
}

.p-form__policy-content {
  max-height: 25rem;
  padding: 1.875rem;
  overflow-y: scroll;
  overscroll-behavior: contain;
  font-family: var(--ff-gothic);
  border: 1px solid #cdcdcd;
}
.p-form__policy-content section {
  counter-reset: ttl-counter;
}
.p-form__policy-content section + section {
  margin-top: 5rem;
}
.p-form__policy-content section h2 {
  margin-bottom: 1em;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
.p-form__policy-content section h3 {
  margin-block: 2em 1em;
  font-size: 1.25rem;
  font-weight: 500;
  counter-increment: ttl-counter;
}
.p-form__policy-content section h3::before {
  margin-right: 0.5em;
  content: counter(ttl-counter) "." attr(title);
}
.p-form__policy-content section h4 {
  margin-block: 1em 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.p-form__policy-content section ol,
.p-form__policy-content section ul {
  padding-left: 1.4em;
  margin-bottom: 0.75rem;
}
.p-form__policy-content section ol li + li,
.p-form__policy-content section ul li + li {
  margin-top: 0.25rem;
}
.p-form__policy-content section ol {
  counter-reset: my-counter;
}
.p-form__policy-content section ol li {
  position: relative;
  padding-left: 1.4em;
}
.p-form__policy-content section ol li::before {
  position: absolute;
  top: calc(1lh - 0.45em);
  left: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3em;
  height: 1.3em;
  font-size: 0.8em;
  line-height: 1;
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid;
  border-radius: 50%;
}
.p-form__policy-content .p-form__policy-address {
  margin: 0.75rem 0;
  font-style: normal;
  line-height: 1.6;
}

.p-form__policy-checkbox {
  display: grid;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.875rem;
  font-family: var(--ff-gothic);
  font-size: 1rem;
  font-weight: 500;
}
.p-form__policy-checkbox label {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  align-items: start;
}
.p-form__policy-checkbox label input[type=checkbox] {
  position: relative;
  top: 0.2em;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  vertical-align: -0.2em;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #9d8160;
}
.p-form__policy-checkbox label input[type=checkbox]::before {
  transition: 0.3s;
}
.p-form__policy-checkbox label input[type=checkbox]:checked {
  background-color: #fff;
}
.p-form__policy-checkbox label input[type=checkbox]:checked::before {
  position: absolute;
  top: 0.25em;
  left: 0.15em;
  display: block;
  width: 1.0625rem;
  height: 0.5625rem;
  font-size: 1rem;
  content: "";
  border-bottom: 2px solid #9d8160;
  border-left: 2px solid #9d8160;
  transform: rotate(-45deg);
}
.p-form__policy-checkbox a {
  color: #9d8160;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
@media (hover: hover) {
  .p-form__policy-checkbox a:hover {
    text-decoration: none;
  }
}

.p-form__btn {
  width: min(100%, 20rem);
  margin-inline: auto;
  margin-top: 40px;
}
.p-form__btn.is-disabled {
  cursor: not-allowed;
}
.p-form__btn input[type=submit] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #fff;
  background-color: transparent;
  border: none;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  margin-top: 0.625rem;
  font-family: var(--ff-gothic);
}
.wpcf7-radio label {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3125rem;
  align-items: center;
}
.wpcf7-radio label input[type=radio] {
  position: relative;
  top: 0.05em;
  width: 1em;
  height: 1em;
  margin: 0;
  appearance: none;
  background-color: #fff;
  border: 1px solid #999899;
  border-radius: 50%;
  transition: 0.3s;
}
.wpcf7-radio label input[type=radio]::before {
  transition: 0.3s;
}
.wpcf7-radio label input[type=radio]:checked {
  background-color: #fff;
}
.wpcf7-radio label input[type=radio]:checked::before {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  display: block;
  width: 0.625em;
  height: 0.625em;
  margin: auto;
  content: "";
  background-color: var(--color-gold-dark);
  border-radius: 50%;
}
.wpcf7-radio label a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-spinner {
  position: absolute !important;
  left: 50%;
  margin: 45px 0 0 !important;
  transform: translateX(-50%);
}

.wpcf7-file {
  font-size: 18px;
}

.wpcf7-not-valid-tip {
  font-family: var(--ff-gothic);
}

/* ========================================
  access
======================================== */
.p-access {
  margin-top: 5rem;
}
@media screen and (min-width: 769px) {
  .p-access {
    margin-top: 6.25rem;
  }
}
.p-access__inner {
  display: grid;
  gap: 2.5rem;
  width: min(100%, 63.4375rem);
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-access__inner {
    grid-template-columns: 52% 1fr;
    gap: 5.4375rem;
  }
}
.p-access__info {
  font-family: var(--ff-gothic);
}
@media screen and (min-width: 1025px) {
  .p-access__info {
    grid-row: 1;
    grid-column: 2;
  }
}
@media screen and (min-width: 1025px) {
  .p-access__map {
    grid-row: 1;
    grid-column: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-access__map {
    height: 13.9375rem;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__txt {
  margin-top: 2.25rem;
}
@media screen and (min-width: 769px) {
  .p-access__txt {
    margin-top: 3.125rem;
  }
}

/* ========================================
  article
======================================== */
.p-article {
  padding: 2rem 1.25rem;
  margin-top: 3.4375rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #f5f5f5;
  border-radius: 0.5rem;
}
@media screen and (min-width: 769px) {
  .p-article {
    padding: 5rem 5.625rem;
    border-radius: 1rem;
  }
}
.p-article__ttl {
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .p-article__ttl {
    font-size: 1.75rem;
  }
}
.p-article__meta {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  .p-article__meta {
    gap: 1.125rem;
    margin-top: 2rem;
  }
}
.p-article__time {
  line-height: 1.3;
}
.p-article__content {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .p-article__content {
    margin-top: 3rem;
  }
}

/* Utility ------------ */
/* ========================================
  bg-color
======================================== */
.u-bg-color-main {
  background-color: var(--main-color);
}

/* ========================================
  color
======================================== */
.u-color-main {
  background-color: var(--main-color);
}

/* ========================================
  hidden
======================================== */
@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .u-hidden-tab {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none;
  }
}

/* ========================================
  margin
======================================== */
.u-mt-5 {
  margin-top: 0.3125rem;
}

.u-mb-5 {
  margin-bottom: 0.3125rem;
}

.u-mt-10 {
  margin-top: 0.625rem;
}

.u-mb-10 {
  margin-bottom: 0.625rem;
}

.u-mt-15 {
  margin-top: 0.9375rem;
}

.u-mb-15 {
  margin-bottom: 0.9375rem;
}

.u-mt-20 {
  margin-top: 1.25rem;
}

.u-mb-20 {
  margin-bottom: 1.25rem;
}

.u-mt-25 {
  margin-top: 1.5625rem;
}

.u-mb-25 {
  margin-bottom: 1.5625rem;
}

.u-mt-30 {
  margin-top: 1.875rem;
}

.u-mb-30 {
  margin-bottom: 1.875rem;
}

.u-mt-35 {
  margin-top: 2.1875rem;
}

.u-mb-35 {
  margin-bottom: 2.1875rem;
}

.u-mt-40 {
  margin-top: 2.5rem;
}

.u-mb-40 {
  margin-bottom: 2.5rem;
}

.u-mt-45 {
  margin-top: 2.8125rem;
}

.u-mb-45 {
  margin-bottom: 2.8125rem;
}

.u-mt-50 {
  margin-top: 3.125rem;
}

.u-mb-50 {
  margin-bottom: 3.125rem;
}

.u-mt-1lh {
  margin-top: 1lh;
}

/* ========================================
  padding
======================================== */
.u-pt-5 {
  padding-top: 0.3125rem;
}

.u-pb-5 {
  padding-bottom: 0.3125rem;
}

.u-pt-10 {
  padding-top: 0.625rem;
}

.u-pb-10 {
  padding-bottom: 0.625rem;
}

.u-pt-15 {
  padding-top: 0.9375rem;
}

.u-pb-15 {
  padding-bottom: 0.9375rem;
}

.u-pt-20 {
  padding-top: 1.25rem;
}

.u-pb-20 {
  padding-bottom: 1.25rem;
}

.u-pt-25 {
  padding-top: 1.5625rem;
}

.u-pb-25 {
  padding-bottom: 1.5625rem;
}

.u-pt-30 {
  padding-top: 1.875rem;
}

.u-pb-30 {
  padding-bottom: 1.875rem;
}

.u-pt-35 {
  padding-top: 2.1875rem;
}

.u-pb-35 {
  padding-bottom: 2.1875rem;
}

.u-pt-40 {
  padding-top: 2.5rem;
}

.u-pb-40 {
  padding-bottom: 2.5rem;
}

.u-pt-45 {
  padding-top: 2.8125rem;
}

.u-pb-45 {
  padding-bottom: 2.8125rem;
}

.u-pt-50 {
  padding-top: 3.125rem;
}

.u-pb-50 {
  padding-bottom: 3.125rem;
}

/* ========================================
  screen-reader
======================================== */
.u-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  overflow-wrap: normal;
  clip: rect(1px, 1px, 1px, 1px);
}

/* ========================================
  text-align
======================================== */
.u-ta-left {
  text-align: left;
}

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

.u-ta-right {
  text-align: right;
}

@layer utilities {
  .u-txt-uppercase {
    text-transform: uppercase;
  }
}
.u-br {
  display: block;
}

@media screen and (min-width: 1025px) {
  .u-br-pc {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .u-br-tab {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-br-sp {
    display: block;
  }
}

/* ========================================
  font-family
======================================== */
.u-ff-garamond {
  font-family: var(--ff-garamond);
}

.u-ff-mincho {
  font-family: var(--ff-mincho);
}

.u-ff-noto-serif {
  font-family: var(--ff-noto-serif);
}

.u-ff-gothic {
  font-family: var(--ff-gothic);
}

.u-ff-jost {
  font-family: var(--ff-jost);
}