@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: bottom;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  color: var(--text);
  line-height: 1.5;
}
body.is-active, body:has(dialog[open]) {
  overflow: hidden;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}

.kaisei {
  font-family: "Kaisei Opti", serif;
  font-style: normal;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1024px) {
  .inner {
    padding: 0 40px;
  }
}
@media (max-width: 820px) {
  .inner {
    padding: 0 20px;
  }
}

:root {
  /* Color (汎用) */
  --color-white: #fff;
  --color-gold: #917708;
  /* Text */
  --text: #1d201f;
  --text-accent: #A90E00;
  --text-subcolor: #917708;
  --text-blue: #001CA9;
  --text-white: #fff;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 99;
}
@media (max-width: 820px) {
  .l-header {
    padding: 0 20px;
  }
}
@media (max-width: 599px) {
  .l-header {
    min-height: 70px;
  }
}

.l-footer {
  position: relative;
  background-color: #474747;
  padding: 100px 0 0 0;
  overflow: hidden;
}
@media (max-width: 599px) {
  .l-footer {
    padding: 80px 0 0 0;
  }
}
.l-footer__bg-logo {
  position: absolute;
  bottom: 70px;
  right: -100px;
  width: 100%;
  max-width: 310px;
  opacity: 0.2;
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
}
@media (max-width: 599px) {
  .l-footer__content {
    flex-direction: column;
    padding-bottom: 30px;
  }
}
.l-footer__contact {
  margin-top: 20px;
}
.l-footer__address {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.05em;
  font-style: normal;
}
@media (max-width: 599px) {
  .l-footer__address {
    font-size: 15px;
  }
}
.l-footer__contact-list {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 0;
}
.l-footer__contact-term {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
.l-footer__contact-desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
@media (max-width: 599px) {
  .l-footer__contact-desc {
    font-size: 15px;
  }
}
.l-footer__contact-desc a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
@media (max-width: 599px) {
  .l-footer__contact-desc a {
    font-size: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__contact-desc a:hover {
    text-decoration: none;
  }
}
.l-footer__body {
  display: flex;
  flex-direction: column;
}
.l-footer__nav {
  margin-top: auto;
}
.l-footer__nav-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-decoration: none;
  transition: 0.3s;
}
.l-footer__nav-link::before {
  content: "";
  width: 8px;
  height: 12px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-link:hover {
    color: #ffa199;
  }
  .l-footer__nav-link:hover::before {
    background-color: #ffa199;
  }
}
.l-footer__nav-sublist {
  margin-left: 10px;
}
.l-footer__nav-sublink {
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-decoration: none;
}
.l-footer__nav-sublink::before {
  content: "・";
}
.l-footer__nav-sublink {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-sublink:hover {
    color: #ffa199;
  }
}
.l-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 20px;
  border-top: 0.5px solid var(--color-white);
}

.l-page-header {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.l-page-header__content {
  background-color: #474747;
}
.l-page-header__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .l-page-header__inner {
    padding: 100px 40px 40px;
  }
}
@media (max-width: 820px) {
  .l-page-header__inner {
    padding: 100px 20px 40px;
  }
}
@media (max-width: 599px) {
  .l-page-header__inner {
    padding: 70px 20px 40px;
    min-height: 300px;
  }
}
.l-page-header__bg-img {
  position: absolute;
  width: 100%;
  max-width: 380px;
  right: -80px;
  bottom: -50px;
  opacity: 0.7;
}
@media (max-width: 820px) {
  .l-page-header__bg-img {
    max-width: 350px;
  }
}
@media (max-width: 599px) {
  .l-page-header__bg-img {
    max-width: 260px;
  }
}
.l-page-header__title {
  margin: 0;
  font-size: 2.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-white);
}
@media (max-width: 599px) {
  .l-page-header__title {
    font-size: 2rem;
  }
}
.l-page-header__label {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
@media (max-width: 599px) {
  .l-page-header__label {
    font-size: 1.125rem;
  }
}
.l-page-header__nav {
  max-width: 1400px;
  margin: 10px auto 0;
  padding: 0 60px 10px;
}
@media (max-width: 1024px) {
  .l-page-header__nav {
    padding: 0 40px 10px;
  }
}
@media (max-width: 820px) {
  .l-page-header__nav {
    padding: 0 20px 10px;
  }
}
@media (max-width: 599px) {
  .l-page-header__nav {
    margin: 8px auto 0;
  }
}

.c-site-title {
  margin: 0;
  display: inline-block;
  line-height: 1;
  width: 100%;
  max-width: 174px;
}
@media (max-width: 599px) {
  .c-site-title {
    max-width: 174px;
  }
}
.c-site-title__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 599px) {
  .c-site-title__link {
    font-size: 1.5rem;
  }
}
.c-site-title__link svg {
  max-width: 60px;
}
@media (max-width: 599px) {
  .c-site-title__link svg {
    max-width: 46px;
  }
}
.c-site-title__subtext {
  font-size: 1.25rem;
}
@media (max-width: 599px) {
  .c-site-title__subtext {
    font-size: 1rem;
  }
}

.c-bg {
  position: fixed;
  width: 100vw;
  height: 100svh;
  background-image: url(../images/bg-parallax.webp);
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.c-bg__main {
  background-image: url(../images/bg1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
}
@media (max-width: 599px) {
  .c-bg__main {
    background-image: url(../images/bg1-sp.webp);
  }
}
.c-bg__inner {
  background-image: url(../images/bg-inner.png);
  background-size: contain;
  background-position: center;
  background-repeat: repeat-y;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .c-bg__inner {
    background-image: url(../images/bg-inner-sp.png);
  }
}
.c-bg__main--pink {
  background-blend-mode: multiply;
  background-color: rgba(255, 204, 204, 0.2);
}

.c-title {
  position: relative;
  margin: 0 0 0 0;
  padding: 0 0 8px 0;
  display: inline-flex;
  align-items: flex-end;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-accent);
}
@media (max-width: 599px) {
  .c-title {
    font-size: 1.75rem;
  }
}
.c-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(169, 14, 0) 0%, rgb(169, 14, 0) 70%, rgba(169, 14, 0, 0) 100%);
}
.c-title img {
  width: 100%;
  max-width: 50px;
  margin-right: 8px;
}
@media (max-width: 599px) {
  .c-title img {
    max-width: 40px;
  }
}
.c-title img img {
  width: 100%;
  aspect-ratio: 1;
}
.c-title__suffix {
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  color: var(--text-subcolor);
}
@media (max-width: 599px) {
  .c-title__suffix {
    font-size: 1.125rem;
  }
}
.c-title__concept {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .c-title__concept {
    font-size: 1.25rem;
  }
}
.c-title__page {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .c-title__page {
    font-size: 1.75rem;
    display: flex;
    flex-direction: column-reverse;
  }
}
.c-title__page-label {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .c-title__page-label {
    font-size: 1rem;
  }
}

.c-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.c-text--accent {
  color: var(--text-accent);
  font-weight: bold;
}
@media (max-width: 599px) {
  .c-text {
    font-size: 15px;
  }
}

.c-parallax-img {
  overflow: hidden;
}
.c-parallax-img img {
  display: block;
  width: 100%;
  transform: scale(1.2);
  transition: transform 0.1s ease-out;
}

.c-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 29px;
}
@media (max-width: 599px) {
  .c-breadcrumb__list {
    gap: 6px 24px;
  }
}
.c-breadcrumb__item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--text);
}
@media (max-width: 599px) {
  .c-breadcrumb__item {
    font-size: 0.875rem;
  }
}
.c-breadcrumb__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 5.83px;
  height: 11.67px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 0 0);
  background-color: #1d201f;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .c-breadcrumb__item::after {
    right: -15px;
    width: 5px;
    height: 11px;
  }
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .c-breadcrumb__link {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb__link:hover {
    color: var(--text-accent);
  }
}

.c-pagination {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 599px) {
  .c-pagination {
    margin-top: 40px;
  }
}
.c-pagination__list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 599px) {
  .c-pagination__list {
    gap: 6px;
  }
}
.c-pagination__list .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(145, 119, 8, 0.3);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .c-pagination__list .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}
.c-pagination__list .page-numbers.current {
  background-color: #474747;
  color: var(--text-white);
  border-color: #474747;
}
@media (max-width: 599px) {
  .c-pagination__list .page-numbers:not(.prev):not(.next):not(.current) {
    display: none;
  }
}
@media (max-width: 599px) {
  .c-pagination__list .page-numbers.current + li .page-numbers,
  .c-pagination__list .page-numbers li:has(+ li .page-numbers.current) .page-numbers {
    display: inline-flex;
  }
}
.c-pagination__list .page-numbers.dots {
  border: none;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 599px) {
  .c-pagination__list .page-numbers.dots {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__list .page-numbers:hover:not(.current):hover {
    background-color: var(--text-accent);
    color: var(--text-white);
    border-color: var(--text-accent);
  }
}
.c-pagination__list .page-numbers.prev, .c-pagination__list .page-numbers.next {
  width: auto;
  padding: 0 20px;
  gap: 10px;
  border-color: var(--color-gold);
  color: var(--color-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .c-pagination__list .page-numbers.prev, .c-pagination__list .page-numbers.next {
    padding: 0 12px;
    font-size: 0.75rem;
    width: auto;
    display: inline-flex;
  }
}
.c-pagination__list .page-numbers.prev.prev::before, .c-pagination__list .page-numbers.next.prev::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-gold);
  border-left: 1.5px solid var(--color-gold);
  transform: rotate(-45deg);
  transition: 0.3s;
  flex-shrink: 0;
}
.c-pagination__list .page-numbers.prev.next::after, .c-pagination__list .page-numbers.next.next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-gold);
  border-right: 1.5px solid var(--color-gold);
  transform: rotate(45deg);
  transition: 0.3s;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__list .page-numbers.prev:hover:hover, .c-pagination__list .page-numbers.next:hover:hover {
    background-color: var(--color-gold);
    color: var(--text-white);
    border-color: var(--color-gold);
  }
  .c-pagination__list .page-numbers.prev:hover:hover::before, .c-pagination__list .page-numbers.prev:hover:hover::after, .c-pagination__list .page-numbers.next:hover:hover::before, .c-pagination__list .page-numbers.next:hover:hover::after {
    border-color: var(--text-white);
  }
}

.p-main-visual {
  position: relative;
  width: 100vw;
  min-height: max(100svh, 770px);
  background-image: url(../images/top-mv.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) {
  .p-main-visual {
    min-height: max(100svh, 690px);
  }
}
@media (max-width: 599px) {
  .p-main-visual {
    min-height: max(100svh, 580px);
  }
}
.p-main-visual__title {
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .p-main-visual__title img {
    max-width: 80%;
  }
}
@media (max-width: 599px) {
  .p-main-visual__title img {
    max-width: 65%;
  }
}
.p-main-visual__subtitle {
  position: absolute;
  bottom: 0;
  left: -60px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-white);
  text-shadow: 1px 1px 0 #B60B3F, -1px -1px 0 #B60B3F, -1px 1px 0 #B60B3F, 1px -1px 0 #B60B3F, 0px 1px 0 #B60B3F, -1px 0 #B60B3F, -1px 0 0 #B60B3F, 1px 0 0 #B60B3F;
}
@media (max-width: 820px) {
  .p-main-visual__subtitle {
    font-size: 1.625rem;
    left: -40px;
  }
}
@media (max-width: 599px) {
  .p-main-visual__subtitle {
    font-size: 1.5rem;
    left: -18px;
  }
}
.p-main-visual__title-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 820px) {
  .p-main-visual__title-bg {
    max-width: 500px;
  }
}
@media (max-width: 599px) {
  .p-main-visual__title-bg {
    max-width: 350px;
  }
}
.p-main-visual__border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 94px;
  width: 100vw;
  background-image: url(../images/mv-border.png);
  background-repeat: repeat-x;
}

.p-top__about {
  padding: 160px 0 80px;
}
@media (max-width: 820px) {
  .p-top__about {
    padding: 120px 0 60px;
  }
}
@media (max-width: 599px) {
  .p-top__about {
    padding: 80px 0 50px;
  }
}
.p-top__about-content {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .p-top__about-content {
    gap: 30px;
  }
}
@media (max-width: 820px) {
  .p-top__about-content {
    flex-direction: column;
    margin-top: 20px;
  }
}
.p-top__about-info {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 820px) {
  .p-top__about-info {
    max-width: 100%;
  }
}
.p-top__about-info .c-text {
  margin-top: 20px;
}
.p-top__about-info .c-text + .c-text {
  margin-top: 16px;
}
.p-top__about-body {
  position: relative;
  width: 100%;
  max-width: 590px;
}
@media (max-width: 820px) {
  .p-top__about-body {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .p-top__about-body {
    flex-direction: column;
  }
}
.p-top__about-img {
  margin: 0;
  width: 100%;
  border: 6px solid var(--color-white);
  border-radius: 5px;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}
.p-top__about-img img {
  width: 100%;
}
.p-top__about-img:nth-of-type(1) {
  max-width: 480px;
  margin-left: auto;
}
@media (max-width: 820px) {
  .p-top__about-img:nth-of-type(1) {
    min-width: 320px;
  }
}
@media (max-width: 599px) {
  .p-top__about-img:nth-of-type(1) {
    min-width: 100%;
  }
}
.p-top__about-img:nth-of-type(1) img {
  aspect-ratio: 480/320;
}
.p-top__about-img:nth-of-type(2) {
  position: absolute;
  top: 190px;
  left: 0;
  max-width: 240px;
}
@media (max-width: 1024px) {
  .p-top__about-img:nth-of-type(2) {
    left: auto;
    right: 20px;
    top: 280px;
  }
}
@media (max-width: 820px) {
  .p-top__about-img:nth-of-type(2) {
    position: static;
    margin-top: 20px;
  }
}
@media (max-width: 599px) {
  .p-top__about-img:nth-of-type(2) {
    margin: 0 0 0 auto;
  }
}
.p-top__about-img:nth-of-type(2) img {
  aspect-ratio: 1;
}
.p-top__record {
  padding: 80px 0;
}
@media (max-width: 820px) {
  .p-top__record {
    padding: 60px 0;
  }
}
@media (max-width: 599px) {
  .p-top__record {
    padding: 50px 0;
  }
}
.p-top__record-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .p-top__record-title {
    font-size: 1.25rem;
  }
}
.p-top__record-subtitle {
  margin-top: 4px;
  display: block;
  font-size: 1.375rem;
}
@media (max-width: 599px) {
  .p-top__record-subtitle {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}
.p-top__record-list {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 820px) {
  .p-top__record-list {
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .p-top__record-list {
    margin-top: 20px;
    flex-direction: column;
  }
}
.p-top__record-img {
  margin: 0;
  width: 100%;
  max-width: 380px;
}
@media (max-width: 599px) {
  .p-top__record-img {
    max-width: 100%;
  }
}
.p-top__record-img img {
  width: 100%;
  aspect-ratio: 380/285;
}
.p-top__record-btn {
  text-align: right;
  margin-top: 16px;
  padding-right: 16px;
}
@media (max-width: 599px) {
  .p-top__record-btn {
    margin-top: 12px;
    padding-right: 0;
  }
}
.p-top__record-link {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .p-top__record-link {
    font-size: 15px;
  }
}
.p-top__record-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #1d201f;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-top__record-link:hover {
    color: var(--text-accent);
  }
  .p-top__record-link:hover::before {
    opacity: 0;
  }
}
.p-top__ushihiki {
  padding: 80px 0 120px;
}
@media (max-width: 820px) {
  .p-top__ushihiki {
    padding: 60px 0 120px;
  }
}
@media (max-width: 599px) {
  .p-top__ushihiki {
    padding: 50px 0 100px;
  }
}
.p-top__ushihiki-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media (max-width: 820px) {
  .p-top__ushihiki-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.p-top__ushihiki-header {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 820px) {
  .p-top__ushihiki-header {
    max-width: 100%;
  }
}
.p-top__ushihiki-body {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 820px) {
  .p-top__ushihiki-body {
    max-width: 100%;
  }
}
.p-top__ushihiki-body .c-text {
  margin-top: 20px;
}
.p-top__ushihiki-body .c-text + .c-text {
  margin-top: 16px;
}
.p-top__ushihiki-slider {
  position: relative;
  margin-top: 60px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
@media (max-width: 599px) {
  .p-top__ushihiki-slider {
    margin-top: 40px;
  }
}
.p-top__ushihiki-slider-list {
  display: grid;
  grid-auto-columns: 400px;
  grid-auto-flow: column;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: slider 32s linear infinite;
}
@media (max-width: 599px) {
  .p-top__ushihiki-slider-list {
    grid-auto-columns: 300px;
    animation: slider-sp 32s linear infinite;
  }
}
.p-top__parallax {
  width: 100vw;
  height: 400px;
}
.p-top__funatogyo {
  padding: 120px 0;
}
@media (max-width: 599px) {
  .p-top__funatogyo {
    padding: 100px 0;
  }
}
.p-top__funatogyo-content {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 820px) {
  .p-top__funatogyo-content {
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .p-top__funatogyo-content {
    flex-direction: column;
  }
}
.p-top__funatogyo-header-inner {
  position: sticky;
  top: 50px;
  width: 100%;
  max-width: 420px;
}
@media (max-width: 599px) {
  .p-top__funatogyo-header-inner {
    max-width: 100%;
  }
}
.p-top__funatogyo-header-inner .c-title__concept {
  margin-top: 32px;
}
@media (max-width: 820px) {
  .p-top__funatogyo-header-inner .c-title__concept {
    margin-top: 20px;
  }
}
.p-top__funatogyo-header-inner .c-text {
  margin-top: 20px;
}
.p-top__funatogyo-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 820px) {
  .p-top__funatogyo-body {
    max-width: 260px;
  }
}
@media (max-width: 599px) {
  .p-top__funatogyo-body {
    max-width: 100%;
    gap: 20px;
  }
}
.p-top__funatogyo-img {
  width: 100%;
  max-width: 480px;
  margin: 0;
}
@media (max-width: 599px) {
  .p-top__funatogyo-img {
    max-width: 100%;
  }
}
.p-top__funatogyo-img img {
  width: 100%;
  aspect-ratio: 480/320;
}
.p-top__boarding {
  padding: 120px 0;
  background-image: url(../images/bg2.webp);
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 599px) {
  .p-top__boarding {
    background-image: url(../images/bg2-sp.webp);
    background-position: bottom;
    background-size: cover;
    padding: 100px 0;
  }
}
.p-top__boarding .c-title {
  color: var(--color-white);
}
.p-top__boarding .c-title::before {
  background: linear-gradient(90deg, var(--text-blue) 0%, var(--text-blue) 70%, rgba(0, 28, 169, 0) 100%);
}
.p-top__boarding-content {
  margin: 60px auto 0;
  max-width: 1080px;
}
@media (max-width: 820px) {
  .p-top__boarding-content {
    max-width: 600px;
  }
}
@media (max-width: 599px) {
  .p-top__boarding-content {
    margin: 50px auto 0;
  }
}
.p-top__boarding-content-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .p-top__boarding-content-group {
    gap: 30px 20px;
  }
}
@media (max-width: 820px) {
  .p-top__boarding-content-group {
    display: block;
  }
}
.p-top__boarding-content-group:nth-of-type(1) {
  grid-template-rows: repeat(3, 1fr);
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
@media (max-width: 820px) {
  .p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(1) {
    grid-area: auto;
  }
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(2) {
  grid-area: 1/2/4/3;
}
@media (max-width: 820px) {
  .p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(2) {
    grid-area: auto;
  }
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(2) .p-top__boarding-img img {
  aspect-ratio: 440/195;
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(2) .c-text {
  margin-top: 16px;
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(3) {
  grid-area: 2/1/4/2;
}
@media (max-width: 820px) {
  .p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(3) {
    grid-area: auto;
  }
}
.p-top__boarding-content-group:nth-of-type(1) .p-top__boarding-item:nth-of-type(3) .p-top__boarding-img img {
  aspect-ratio: 440/325;
}
.p-top__boarding-content-group:nth-of-type(3) {
  grid-template-columns: 1fr;
}
@media (max-width: 599px) {
  .p-top__boarding-content-group:nth-of-type(3) .c-text {
    text-align: center;
  }
}
.p-top__boarding-content-group + .p-top__boarding-content-group {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .p-top__boarding-content-group + .p-top__boarding-content-group {
    margin-top: 30px;
  }
}
@media (max-width: 599px) {
  .p-top__boarding-text-center {
    display: block;
    text-align: center;
  }
}
.p-top__boarding-text-center br {
  display: none;
}
@media (max-width: 599px) {
  .p-top__boarding-text-center br {
    display: inline-block;
  }
}
.p-top__boarding-item {
  position: relative;
  background-color: #FCF7E0;
  padding: 36px 40px;
  text-align: left;
  z-index: 0;
}
@media (max-width: 1024px) {
  .p-top__boarding-item {
    padding: 20px;
  }
}
@media (max-width: 820px) {
  .p-top__boarding-item {
    padding: 20px 40px;
  }
}
@media (max-width: 599px) {
  .p-top__boarding-item {
    padding: 20px;
  }
}
.p-top__boarding-item::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid #B79268;
  z-index: -1;
}
@media (max-width: 820px) {
  .p-top__boarding-item + .p-top__boarding-item {
    margin-top: 30px;
  }
}
.p-top__boarding-title {
  position: relative;
  margin: 0;
  padding: 0 0 8px 0;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #5A6B99;
  text-align: center;
}
@media (max-width: 599px) {
  .p-top__boarding-title {
    font-size: 1.75rem;
  }
}
.p-top__boarding-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: radial-gradient(circle, rgb(183, 146, 104) 0%, rgba(183, 146, 104, 0) 100%);
}
.p-top__boarding-info {
  margin-top: 28px;
}
@media (max-width: 599px) {
  .p-top__boarding-info {
    margin-top: 20px;
  }
}
.p-top__boarding-text {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .p-top__boarding-text {
    font-size: 1.25rem;
  }
}
.p-top__boarding-address {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: normal;
}
@media (max-width: 599px) {
  .p-top__boarding-address {
    font-size: 15px;
  }
}
.p-top__boarding-map {
  margin: 16px auto 0;
  width: 100%;
  max-width: 440px;
}
@media (max-width: 820px) {
  .p-top__boarding-map {
    max-width: 100%;
  }
}
.p-top__boarding-map iframe {
  width: 100%;
}
@media (max-width: 599px) {
  .p-top__boarding-map iframe {
    height: 300px;
  }
}
.p-top__boarding-img {
  margin: 10px auto 0;
  max-width: 440px;
  width: 100%;
}
@media (max-width: 820px) {
  .p-top__boarding-img {
    max-width: 100%;
  }
}
.p-top__boarding-img img {
  width: 100%;
}
.p-top__boarding-text-note {
  margin: 2px 0 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: right;
}
.p-top__boarding-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-top__boarding-list-item {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .p-top__boarding-list-item {
    font-size: 15px;
  }
}
.p-top__boarding-list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #5A6B99;
}
.p-top__boarding-tel {
  color: #5A6B99;
}
@media (hover: hover) and (pointer: fine) {
  .p-top__boarding-tel:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
.p-top__news {
  padding: 120px 0 60px;
}
@media (max-width: 599px) {
  .p-top__news {
    padding: 100px 0 40px;
  }
}
.p-top__news-content {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 56px;
  background-color: var(--color-white);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 10px 56px;
}
@media (max-width: 820px) {
  .p-top__news-content {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}
@media (max-width: 599px) {
  .p-top__news-content {
    padding: 40px 20px;
  }
}
.p-top__news-head {
  display: flex;
  flex-direction: column;
  gap: 72px 0;
}
@media (max-width: 820px) {
  .p-top__news-head {
    display: contents;
  }
}
@media (max-width: 820px) {
  .p-top__news-head .c-title {
    order: 1;
  }
}
.p-top__news-btn {
  margin-top: auto;
}
@media (max-width: 820px) {
  .p-top__news-btn {
    margin-top: 24px;
    text-align: center;
    order: 3;
  }
}
.p-top__news-btn-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-decoration: none;
  background-color: #474747;
  padding: 14px 32px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .p-top__news-btn-link {
    padding: 12px 24px;
    font-size: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__news-btn-link:hover {
    background-color: #A90E00;
  }
}
@media (max-width: 820px) {
  .p-top__news-body {
    margin-top: 24px;
    order: 2;
  }
}
.p-top__news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-top__news-item:first-child .p-top__news-link {
  padding: 0 8px 28px;
}
.p-top__news-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 24px 8px 28px;
  border-bottom: 1px solid rgba(29, 32, 31, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .p-top__news-link:hover .p-top__news-title {
    color: var(--text-accent);
  }
}
@media (max-width: 599px) {
  .p-top__news-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 4px 20px;
  }
}
.p-top__news-meta {
  flex: 0 0 auto;
}
.p-top__news-date {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #1d201f;
}
@media (max-width: 599px) {
  .p-top__news-date {
    font-size: 0.875rem;
  }
}
.p-top__news-title {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0 0 0 28px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .p-top__news-title {
    margin: 0;
    font-size: 15px;
  }
}
.p-top__news-arrow {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  aspect-ratio: 1;
  border-top: 2px solid #1d201f;
  border-right: 2px solid #1d201f;
  transform: rotate(45deg);
  margin: 0 0 0 auto;
}
.p-top__flow {
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 599px) {
  .p-top__flow {
    padding: 100px 0;
  }
}
.p-top__flow .c-title {
  color: var(--text-subcolor);
}
.p-top__flow .c-title::before {
  background: linear-gradient(90deg, var(--text-subcolor) 0%, var(--text-subcolor) 70%, rgba(0, 28, 169, 0) 100%);
}
.p-top__flow-content {
  width: 100%;
  max-width: 1080px;
  margin: 60px auto 0;
}
@media (max-width: 599px) {
  .p-top__flow-content {
    margin: 50px auto 0;
  }
}
.p-top__flow-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-gold);
  padding: 30px 20px 30px 0;
  min-height: 220px;
}
@media (max-width: 820px) {
  .p-top__flow-item {
    grid-template-columns: 140px 1fr;
  }
}
@media (max-width: 599px) {
  .p-top__flow-item {
    grid-template-columns: 1fr;
    padding: 20px 20px 30px;
    min-height: auto;
  }
}
.p-top__flow-item + .p-top__flow-item {
  margin-top: 40px;
}
.p-top__flow-header {
  border-right: 1px solid var(--color-gold);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .p-top__flow-header {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid var(--color-gold);
    padding-left: 6px;
    align-self: auto;
  }
}
.p-top__flow-step {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-subcolor);
}
@media (max-width: 820px) {
  .p-top__flow-step {
    font-size: 1.375rem;
  }
}
@media (max-width: 599px) {
  .p-top__flow-step {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    font-size: 1.25rem;
    padding-bottom: 10px;
  }
}
.p-top__flow-step-num {
  display: block;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 820px) {
  .p-top__flow-step-num {
    font-size: 2.5rem;
  }
}
@media (max-width: 599px) {
  .p-top__flow-step-num {
    font-size: 2rem;
  }
}
.p-top__flow-body {
  text-align: left;
  padding-left: 40px;
}
@media (max-width: 820px) {
  .p-top__flow-body {
    padding-left: 20px;
  }
}
@media (max-width: 599px) {
  .p-top__flow-body {
    padding-left: 0;
    margin-top: 12px;
  }
}
.p-top__flow-body .c-text {
  margin-top: 16px;
}
@media (max-width: 599px) {
  .p-top__flow-body .c-text {
    margin-top: 8px;
  }
}
.p-top__flow-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-subcolor);
}
@media (max-width: 599px) {
  .p-top__flow-title {
    font-size: 1.5rem;
  }
}
.p-top__flow-title br {
  display: none;
}
@media (max-width: 599px) {
  .p-top__flow-title br {
    display: inline-block;
  }
}
.p-top__access {
  padding: 120px 0;
}
@media (max-width: 599px) {
  .p-top__access {
    padding: 100px 0;
  }
}
.p-top__access-content {
  width: 100%;
  max-width: 1080px;
  margin: 60px auto 0;
}
@media (max-width: 599px) {
  .p-top__access-content {
    margin: 50px auto 0;
  }
}
.p-top__access-map {
  width: 100%;
  max-width: 1080px;
}
.p-top__access-map iframe {
  width: 100%;
  aspect-ratio: 1080/540;
}
@media (max-width: 599px) {
  .p-top__access-map iframe {
    height: 300px;
  }
}
.p-top__access-info {
  margin: 20px 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) {
  .p-top__access-info {
    margin: 20px 0 0;
  }
}
@media (max-width: 599px) {
  .p-top__access-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-top__access-spot .c-text {
  margin-top: 24px;
}
.p-top__access-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .p-top__access-title {
    font-size: 1.25rem;
  }
}
.p-top__access-address {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: normal;
}
.p-top__access-schedule {
  margin: 4px 0 0 0;
  display: grid;
  grid-template-columns: 100px 1fr;
}
.p-top__access-term {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-top__access-desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-top__access-route {
  margin-top: auto;
}
.p-top__access-list {
  margin: 0 0 0 10px;
  padding: 0;
  list-style: none;
}
.p-top__access-list-item {
  position: relative;
  padding-left: 17px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-top__access-list-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  background-color: #5A6B99;
  border-radius: 50%;
}

@keyframes slider {
  to {
    transform: translateX(-2520px);
  }
}
@keyframes slider-sp {
  to {
    transform: translateX(-1920px);
  }
}
.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: max(100svh, 770px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
@media (max-width: 820px) {
  .p-opening {
    min-height: max(100svh, 690px);
  }
}
@media (max-width: 599px) {
  .p-opening {
    min-height: max(100svh, 580px);
  }
}
.p-opening__text {
  z-index: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(-20px);
}
@media (max-width: 820px) {
  .p-opening__text img {
    max-width: 80%;
  }
}
@media (max-width: 599px) {
  .p-opening__text img {
    max-width: 65%;
  }
}
.p-opening__bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  transform: translate(-50%, -50%) translate(-80px, 80px) scaleX(0) skewX(-12deg);
  transform-origin: left center;
}
@media (max-width: 820px) {
  .p-opening__bg-img {
    max-width: 500px;
  }
}
@media (max-width: 599px) {
  .p-opening__bg-img {
    max-width: 350px;
  }
}

.is-brush-active {
  animation: brushSlash 0.1s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}

.is-text-active {
  animation: textIn 0.5s ease-out forwards;
}

.is-end {
  animation: openingEnd 0.7s ease-out forwards;
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
    filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
  }
}
@keyframes brushSlash {
  0% {
    transform: translate(-50%, -50%) translate(-80px, 80px) scaleX(0) skewX(-14deg);
  }
  100% {
    transform: translate(-50%, -50%) translate(0, 0) scaleX(1) skewX(-12deg);
  }
}
@keyframes openingEnd {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.p-archive-gallery {
  padding: 20px 0 120px;
}
@media (max-width: 599px) {
  .p-archive-gallery {
    padding: 20px 0 100px;
  }
}
.p-archive-gallery__block {
  padding: 40px 0 50px;
}
.p-archive-gallery__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 820px) {
  .p-archive-gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .p-archive-gallery__list {
    grid-template-columns: 1fr;
  }
}
.p-archive-gallery__list-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: 0.3s;
}
.p-archive-gallery__list-link::before {
  content: "view archive";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.p-archive-gallery__list-link img {
  width: 100%;
  aspect-ratio: 380/285;
  transform: scale(1.1);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-archive-gallery__list-link:hover img {
    transform: scale(1);
  }
  .p-archive-gallery__list-link:hover::before {
    opacity: 1;
  }
}
.p-archive-gallery__btn {
  margin-top: 16px;
  text-align: right;
}
.p-archive-gallery__btn-link {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-archive-gallery__btn-link:hover {
    color: var(--text-accent);
  }
  .p-archive-gallery__btn-link:hover::before {
    opacity: 0;
  }
}
.p-archive-gallery__btn-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #1d201f;
  transition: 0.3s;
}

.p-gallery {
  padding: 60px 0 120px;
}
@media (max-width: 599px) {
  .p-gallery {
    padding: 60px 0 100px;
  }
}
.p-gallery__list {
  margin-top: 24px;
  columns: 3;
  column-gap: 30px;
}
@media (max-width: 1024px) {
  .p-gallery__list {
    column-gap: 20px;
  }
}
@media (max-width: 820px) {
  .p-gallery__list {
    columns: 2;
  }
}
@media (max-width: 599px) {
  .p-gallery__list {
    columns: 1;
  }
}
.p-gallery__item {
  break-inside: avoid;
  margin-bottom: 40px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .p-gallery__item {
    margin-bottom: 30px;
  }
}
.p-gallery__modal {
  position: fixed;
  margin: auto;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-gallery__modal.is-show {
  opacity: 1;
}
.p-gallery__modal.is-show::backdrop {
  opacity: 1;
}
.p-gallery__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s;
}
.p-gallery__modal-content {
  padding: 80px 130px;
}
@media (max-width: 1024px) {
  .p-gallery__modal-content {
    padding: 80px;
  }
}
@media (max-width: 820px) {
  .p-gallery__modal-content {
    padding: 80px 40px 40px;
  }
}
@media (max-width: 820px) {
  .p-gallery__modal-content {
    padding: 40px 20px 30px;
  }
}
.p-gallery__modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  aspect-ratio: 1;
  background-color: #474747;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .p-gallery__modal-close {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 599px) {
  .p-gallery__modal-close {
    top: 6px;
    right: 6px;
    width: 30px;
  }
}
.p-gallery__modal-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 599px) {
  .p-gallery__modal-close::before {
    width: 16px;
  }
}
.p-gallery__modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 599px) {
  .p-gallery__modal-close::after {
    width: 16px;
  }
}
.p-gallery__modal-img {
  max-width: 820px;
}
.p-gallery__modal-img img {
  width: 100%;
}
.p-gallery__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 40px 32px 60px;
  border-top: 1px solid rgba(145, 119, 8, 0.3);
}
@media (max-width: 820px) {
  .p-gallery__nav {
    padding: 40px 20px 60px;
  }
}
@media (max-width: 599px) {
  .p-gallery__nav {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 40px 20px;
    gap: 16px;
  }
}
.p-gallery__nav-prev {
  text-align: left;
}
@media (max-width: 599px) {
  .p-gallery__nav-prev {
    grid-area: 1/1/2/2;
  }
}
.p-gallery__nav-next {
  text-align: right;
}
@media (max-width: 599px) {
  .p-gallery__nav-next {
    grid-area: 1/2/2/3;
  }
}
.p-gallery__nav-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-gallery__nav-link:hover {
    color: var(--text-accent);
  }
}
.p-gallery__nav-link--disabled {
  display: block;
}
.p-gallery__nav-arrow {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-subcolor);
  padding: 0 20px;
}
@media (max-width: 599px) {
  .p-gallery__nav-arrow {
    font-size: 13px;
    padding: 0 16px;
  }
}
.p-gallery__nav-link--prev .p-gallery__nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 599px) {
  .p-gallery__nav-link--prev .p-gallery__nav-arrow::before {
    width: 8px;
    height: 8px;
  }
}
.p-gallery__nav-link--next .p-gallery__nav-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 599px) {
  .p-gallery__nav-link--next .p-gallery__nav-arrow::after {
    width: 8px;
    height: 8px;
  }
}
.p-gallery__nav-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 0 0 20px;
}
@media (max-width: 820px) {
  .p-gallery__nav-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 599px) {
  .p-gallery__nav-title {
    font-size: 13px;
    padding: 0 0 0 16px;
  }
}
.p-gallery__nav-archive {
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .p-gallery__nav-archive {
    grid-area: 2/1/3/3;
  }
}
.p-gallery__nav-archive-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-decoration: none;
  background-color: #474747;
  padding: 14px 32px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .p-gallery__nav-archive-link {
    padding: 12px 24px;
    font-size: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-gallery__nav-archive-link:hover {
    background-color: #A90E00;
  }
}

.p-404 {
  padding: 80px 0 160px;
}
@media (max-width: 599px) {
  .p-404 {
    padding: 60px 0 120px;
  }
}
.p-404__content {
  text-align: center;
}
.p-404__num {
  margin: 0;
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(145, 119, 8, 0.15);
  line-height: 1;
}
@media (max-width: 599px) {
  .p-404__num {
    font-size: 6rem;
  }
}
.p-404__text {
  margin: 24px 0 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 599px) {
  .p-404__text {
    font-size: 15px;
    margin: 20px 0 0;
  }
}
.p-404__btn {
  margin-top: 40px;
}
@media (max-width: 599px) {
  .p-404__btn {
    margin-top: 32px;
  }
}
.p-404__btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-decoration: none;
  background-color: #474747;
  padding: 16px 48px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .p-404__btn-link {
    padding: 14px 32px;
    font-size: 15px;
  }
}
.p-404__btn-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--text-white);
  border-right: 1.5px solid var(--text-white);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-404__btn-link:hover {
    background-color: #A90E00;
  }
}

.p-page {
  padding: 80px 0 160px;
}
@media (max-width: 599px) {
  .p-page {
    padding: 60px 0 120px;
  }
}
.p-page__content {
  max-width: 800px;
  margin: 0 auto;
}
.p-page__content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 40px 0 16px;
}
.p-page__content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 32px 0 12px;
}
.p-page__content p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
@media (max-width: 599px) {
  .p-page__content p {
    font-size: 15px;
  }
}
.p-page__content a {
  color: var(--text-accent);
}

.p-archive {
  min-height: calc(100svh - 318px);
}

.u-fade-up {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.u-fade-up.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}