@charset "UTF-8";
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  /* color */
  --color-bk: #54483E;
  --color-bk-rgb: 84,72,62;
  --color-bk-shadow: #53473D;
  --color-bk-shadow-rgb: 83,71,61;
  --color-wh: #fff;
  --color-yl: #dfb444;
  --color-yl-rgb: 223, 180, 68;
  --color-rd: #CD4A18;
  --color-bl: #9ACACD;
  --color-gr: #ccc;
  /* font-family */
  --font-en: "Josefin Sans", sans-serif;
  /* z-index */
  --z-index-header: 10000;
  --z-index-header-inner: 1;
  --z-index-main: 1000;
  --z-index-main-lv3: 300;
  --z-index-main-lv3-1: 1;
  --z-index-main-lv3-2: 2;
  --z-index-main-lv3-3: 3;
  --z-index-main-lv3-4: 4;
  --z-index-main-lv3-5: 5;
  --z-index-main-lv2: 200;
  --z-index-main-lv2-1: 1;
  --z-index-main-lv2-2: 2;
  --z-index-main-lv2-3: 3;
  --z-index-main-lv2-4: 4;
  --z-index-main-lv2-5: 5;
  --z-index-main-lv1: 100;
  --z-index-main-lv1-1: 1;
  --z-index-main-lv1-2: 2;
  --z-index-main-lv1-3: 3;
  --z-index-main-lv1-4: 4;
  --z-index-main-lv1-5: 5;
  /* easing */
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-inOut-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quad: cubic-bezier(0.11, 0, 0.5, 0);
  --ease-out-quad: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-inOut-quad: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-in-cubic: cubic-bezier(0.32, 0, 0.67, 0);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-inOut-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-inOut-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-quint: cubic-bezier(0.64, 0, 0.78, 0);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inOut-quint: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inOut-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-in-circ: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
  --ease-inOut-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-in-back: cubic-bezier(0.36, 0, 0.66, -0.56);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-inOut-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
@supports not (top: 1lh) {
  :root :root {
    --leading-trim: 0px;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

/**
 * 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;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden]:not([hidden=until-found]) {
  display: none;
}

/* reset.local */
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  border-width: 0;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

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

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

dl, dt, dd {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

dialog {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

[tabindex="-1"]:focus-visible {
  outline: none !important;
}

/* _typography.scss */
body {
  direction: ltr;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: var(--color-bk);
}

/* _base.scss */
body {
  background-color: var(--color-wh);
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

a, button {
  font-size: 1rem;
}

button {
  line-height: 1.5;
  text-align: unset;
  touch-action: manipulation;
}

label {
  display: inline-block;
}

input:-ms-input-placeholder {
  color: #c0c0c0;
  font-size: 1em;
}

input::placeholder {
  color: #c0c0c0;
  font-size: 1em;
}

textarea {
  field-sizing: content;
  overscroll-behavior-block: contain;
  resize: block;
}

textarea:-ms-input-placeholder {
  color: #c0c0c0;
  font-size: 1em;
}

textarea::placeholder {
  color: #c0c0c0;
  font-size: 1em;
}

/* layout */
.l-siteWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  z-index: 1;
}

.l-main {
  flex: 1;
}

/* menu */
.menu {
  max-height: 100%;
  translate: 0 -200%;
  transition: translate 0.6s var(--ease-in-back);
  width: 100%;
}
.menu::-ms-backdrop {
  background-color: rgba(var(--color-bk-rgb), 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  -ms-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.menu::backdrop {
  background-color: rgba(var(--color-bk-rgb), 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s;
}

.menu[data-active=true] {
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  translate: 0 0;
  transition: translate 0.6s var(--ease-inOut-cubic);
}
.menu[data-active=true]::-ms-backdrop {
  opacity: 1;
}
.menu[data-active=true]::backdrop {
  opacity: 1;
}
.menu[data-active=true] .menu__inner > * {
  opacity: 1;
  transition: opacity 0.4s;
  transition-delay: 0.8s;
}

.menu__inner {
  background-color: var(--color-bk);
  margin-block-start: -400px;
  padding-block-start: 400px;
  padding-inline: clamp(20px, 0px + 5.56vw, 80px);
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header" "main";
}
.menu__inner > * {
  opacity: 0;
  transition: opacity 0.4s;
}

.menu__outer {
  background-image: url(../img/common/menu_base.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: clamp(40px, 13.333px + 7.41vw, 120px);
  margin-block-end: 40px;
  width: 100%;
  z-index: -1;
}

/* menu__header */
.menu__header {
  align-items: center;
  background-color: var(--color-bk);
  display: flex;
  grid-area: header;
  inline-size: 100%;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1280px;
  padding-block: 20px;
  position: sticky;
  top: 0;
}

.menu__logo {
  width: clamp(150px, 115px + 9.72vw, 255px);
}

.menu__closeBtn {
  border-color: var(--color-wh);
  border-radius: 50%;
  border-style: solid;
  border-width: clamp(1px, 0.667px + 0.09vw, 2px);
  font-size: clamp(30px, 23.333px + 1.85vw, 50px);
  height: clamp(30px, 23.333px + 1.85vw, 50px);
  position: relative;
  transition: border-color 0.25s;
  width: clamp(30px, 23.333px + 1.85vw, 50px);
}
.menu__closeBtn > span {
  background-color: var(--color-wh);
  display: inline-block;
  height: clamp(1px, 0.667px + 0.09vw, 2px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: background-color 0.25s, opacity 0.25s, transform 0.25s;
  width: clamp(15px, 11.667px + 0.93vw, 25px);
}
.menu__closeBtn > ._top {
  top: 0.31667em;
  transform: translate(-50%, 0.1475em) rotate(-225deg) scaleX(1.35);
}
.menu__closeBtn > ._bottom {
  top: 0.63333em;
  transform: translate(-50%, -0.1675em) rotate(225deg) scaleX(1.35);
}

/* menu__main */
.menu__main {
  display: flex;
  flex-direction: column;
  grid-area: main;
  padding-block-end: 20px;
  margin-inline: auto;
  max-width: 1280px;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .menu__main {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.menu__primary {
  border-bottom: 2px solid var(--color-wh);
  margin-block-start: 20px;
  padding-block-end: 20px;
}
@media screen and (min-width: 744px) {
  .menu__primary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, -29.231px + 4.81vw, 40px);
    justify-content: center;
    margin-inline: auto;
    width: 100%;
  }
}

.menu__secondary {
  border-bottom: 2px solid var(--color-wh);
  margin-block-start: 20px;
  padding-block-end: 20px;
}
@media screen and (min-width: 744px) {
  .menu__secondary {
    border-bottom: none;
    border-right: 2px solid var(--color-wh);
    padding-block-end: 0;
    padding-right: clamp(20px, 13.333px + 1.85vw, 40px);
  }
}

.menu__priItem:not(:first-child) {
  margin-block-start: 20px;
}
@media screen and (min-width: 744px) {
  .menu__priItem:not(:first-child) {
    margin-block-start: 0;
  }
}

.menu__secItem:not(:first-child) {
  margin-block-start: 15px;
}

.menu__priItem > a,
.menu__secItem > a {
  color: var(--color-wh);
  transition: color 0.25s;
}
.menu__priItem > a:focus-visible,
.menu__secItem > a:focus-visible {
  color: var(--color-yl);
}
.menu__priItem > a:focus-visible .menu__itemImg > img,
.menu__secItem > a:focus-visible .menu__itemImg > img {
  transform: scale(1.1);
}
@media (any-hover: hover) {
  .menu__priItem > a:hover,
  .menu__secItem > a:hover {
    color: var(--color-yl);
  }
  .menu__priItem > a:hover .menu__itemImg > img,
  .menu__secItem > a:hover .menu__itemImg > img {
    transform: scale(1.1);
  }
}

.menu__priItem > a {
  align-items: baseline;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 744px) {
  .menu__priItem > a {
    flex-direction: column;
  }
}

.menu__itemImg {
  display: none;
}
@media screen and (min-width: 744px) {
  .menu__itemImg {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
}

.menu__itemImg > img {
  aspect-ratio: 49/25;
  object-fit: cover;
  transition: transform 0.25s;
  width: 100%;
}

.menu__text {
  display: inline-block;
  font-size: clamp(0.75rem, 0.429rem + 1.43vw, 1rem);
  letter-spacing: 0;
  line-height: 1.25;
}
@media screen and (min-width: 744px) {
  .menu__text {
    font-size: clamp(0.75rem, 0.5rem + 0.56vw, 1rem);
  }
}

.menu__text > span {
  display: inline-block;
}

.menu__text.--en {
  font-family: var(--font-en);
  font-weight: 700;
  text-transform: uppercase;
}

.menu__priItem .menu__text.--en {
  font-size: clamp(1.25rem, 0.929rem + 1.43vw, 1.5rem);
  width: 6em;
}
@media screen and (min-width: 744px) {
  .menu__priItem .menu__text.--en {
    font-size: clamp(1.125rem, 0.75rem + 0.83vw, 1.5rem);
    margin-block-start: 0.8em;
    width: 100%;
  }
}

.menu__secItem .menu__text.--en {
  font-size: clamp(1rem, 0.679rem + 1.43vw, 1.25rem);
  width: 7em;
}
@media screen and (min-width: 744px) {
  .menu__secItem .menu__text.--en {
    font-size: clamp(1rem, 0.75rem + 0.56vw, 1.25rem);
  }
}

.menu__cta {
  flex-grow: 1;
  margin-block-start: 20px;
  text-align: center;
}

.menu__ctaText {
  color: var(--color-wh);
  font-size: clamp(16px, 13.333px + 0.74vw, 24px);
}

.menu__ctaWrapper {
  color: var(--color-wh);
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block-start: clamp(20px, 13.333px + 1.85vw, 40px);
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .menu__ctaWrapper {
    flex-direction: row;
  }
}

/* header */
.header {
  background-color: #fff;
  padding-block: 20px;
  padding-inline: clamp(20px, 0px + 5.56vw, 80px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: var(--z-index-header);
}

.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1280px;
  width: 100%;
}

.header__logo {
  width: clamp(150px, 115px + 9.72vw, 255px);
}

.header__menuBtn {
  border-color: var(--color-bk);
  border-radius: 50%;
  border-style: solid;
  border-width: clamp(1px, 0.667px + 0.09vw, 2px);
  font-size: clamp(30px, 23.333px + 1.85vw, 50px);
  height: clamp(30px, 23.333px + 1.85vw, 50px);
  position: relative;
  transition: border-color 0.25s;
  width: clamp(30px, 23.333px + 1.85vw, 50px);
}

.header__menuBtn > span {
  background-color: var(--color-bk);
  display: inline-block;
  height: clamp(1px, 0.667px + 0.09vw, 2px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: background-color 0.25s, opacity 0.25s, transform 0.25s;
  width: clamp(15px, 11.667px + 0.93vw, 25px);
}

.header__menuBtn > ._top {
  top: 0.31667em;
}

.header__menuBtn > ._middle {
  top: 0.475em;
}

.header__menuBtn > ._bottom {
  top: 0.63333em;
}

.header:has(dialog[data-active=true]) .header__menuBtn {
  border-color: var(--color-wh);
}
.header:has(dialog[data-active=true]) .header__menuBtn > span {
  background-color: var(--color-wh);
}
.header:has(dialog[data-active=true]) .header__menuBtn > ._top {
  transform: translate(-50%, 0.1475em) rotate(-225deg) scaleX(1.35);
}
.header:has(dialog[data-active=true]) .header__menuBtn > ._middle {
  opacity: 0;
}
.header:has(dialog[data-active=true]) .header__menuBtn > ._bottom {
  transform: translate(-50%, -0.1675em) rotate(225deg) scaleX(1.35);
}

/* header --rd 下層ページ用header */
.header.--sub {
  background-color: var(--color-rd);
}
.header.--sub .header__menuBtn {
  border-color: var(--color-wh);
}
.header.--sub .header__menuBtn > span {
  background-color: var(--color-wh);
}

/* footer */
.footer {
  background-color: var(--color-bk);
  color: var(--color-wh);
}

.footer a {
  color: var(--color-wh);
  transition: color 0.25s;
}
.footer a:focus-visible {
  color: var(--color-yl);
}
@media (any-hover: hover) {
  .footer a:hover {
    color: var(--color-yl);
  }
}

.footer__inner {
  padding: 40px clamp(30px, 13.333px + 4.63vw, 80px);
  margin-inline: auto;
  max-width: 1440px;
}

.footer__pri {
  align-items: center;
  border-bottom: 2px solid var(--color-wh);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 10px + 2.78vw, 50px);
  padding-block-end: clamp(30px, 26.667px + 0.93vw, 40px);
}
@media screen and (min-width: 744px) {
  .footer__pri {
    flex-direction: row;
    justify-content: center;
  }
}

.footer__logo {
  display: flex;
  gap: 10px;
}

.footer__logoWrapper {
  width: clamp(80px, 66.667px + 3.7vw, 120px);
}

.footer__name {
  font-size: 1rem;
  font-weight: 700;
}
.footer__name > span {
  font-size: 0.75rem;
  font-weight: 400;
}

.footer__address {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-block-start: 10px;
}
.footer__address > span {
  display: block;
}

.footer__sns {
  display: flex;
  gap: 20px;
  margin-block-start: 15px;
}

.footer__snsIcon {
  height: 30px;
  width: 30px;
}

.footer__snsIcon .svg-base {
  fill: var(--color-wh);
  transition: fill 0.25s;
}

.footer__snsIcon .svg-path {
  fill: var(--color-bk);
}

.footer__snsIcon:focus-visible .svg-base {
  fill: var(--color-yl);
}
@media (any-hover: hover) {
  .footer__snsIcon:hover .svg-base {
    fill: var(--color-yl);
  }
}

.footer__sec {
  display: flex;
  flex-direction: column;
  margin-block-start: clamp(20px, 13.333px + 1.85vw, 40px);
}
@media screen and (min-width: 1024px) {
  .footer__sec {
    flex-direction: row;
    justify-content: center;
    gap: clamp(20px, -4.615px + 2.4vw, 30px);
  }
}

.footer__list {
  margin-block-start: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__list {
    margin-block-start: 0;
    border-right: 1px solid var(--color-wh);
    padding-right: clamp(20px, -4.615px + 2.4vw, 30px);
  }
}

.footer__list:last-child {
  border-right: none;
}

.footer__item {
  margin-block-start: 16px;
}

.footer__item:first-child {
  margin-block-start: 0;
}

.footer__text {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.footer__text.--en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  width: 70px;
}

/* contactSec 各ページ共通 */
.contactSec {
  background-image: url(../img/common/contact_base.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-wh);
  padding-block-start: 40px;
  padding-block-end: 80px;
}
@media screen and (min-width: 1440px) {
  .contactSec {
    background-size: 100% 100%;
  }
}

/* breadcrumb */
.breadcrumb {
  background-color: var(--color-bk);
}

.breadcrumb__list {
  border-block-end: 1px solid var(--color-wh);
  display: flex;
  flex-wrap: wrap;
  padding-block: 0.5em;
  padding-inline-start: clamp(30px, 13.333px + 4.63vw, 80px);
}

.breadcrumb__item {
  margin-inline-end: 0.5em;
}

.breadcrumb__item > * {
  color: var(--color-wh);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

.breadcrumb__item > a {
  display: inline-block;
  position: relative;
}
.breadcrumb__item > a::after {
  content: "";
  height: 1px;
  width: calc(100% - 0.2em);
  background-color: var(--color-wh);
  position: absolute;
  bottom: -0.2em;
  left: 0;
  scale: 0 1;
  transform-origin: right;
  transition: scale 0.25s;
}
.breadcrumb__item > a:focus-visible::after {
  scale: 1 1;
  transform-origin: left;
}
@media (any-hover: hover) {
  .breadcrumb__item > a:hover::after {
    scale: 1 1;
    transform-origin: left;
  }
}

.breadcrumb__item:not(:last-child):after {
  content: " 〉";
  color: var(--color-wh);
  font-size: 0.875rem;
  margin-inline-start: 0.5em;
}

/* pageHeader */
.pageHeader {
  background-image: url(../img/common/page-top_base.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  color: var(--color-wh);
  padding-block: 20px 30px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .pageHeader {
    background-size: 120% 100%;
  }
}
@media screen and (min-width: 744px) {
  .pageHeader {
    background-size: 110% 100%;
  }
}
@media screen and (min-width: 1024px) {
  .pageHeader {
    background-size: 100% 100%;
  }
}

.pageHeader__inner {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(20px, 0px + 5.56vw, 80px);
  text-align: center;
}

.pageHeader__title {
  font-size: 1rem;
  font-weight: 700;
  margin-block-start: 10px;
}

.pageHeader__title ._en {
  display: block;
  font-family: var(--font-en);
  font-size: 45px;
  margin-block-end: 10px;
  text-transform: uppercase;
}

.share {
  padding-block-start: 40px;
}

.share__inner {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(20px, 0px + 5.56vw, 80px);
}

.share__iconWrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.share__icon {
  height: 50px;
  width: 50px;
}

.share__icon .svg-base,
.share__icon .svg-path {
  fill: var(--color-bk);
  transition: fill 0.25s;
}

.share__icon:focus-visible .svg-base,
.share__icon:focus-visible .svg-path {
  fill: var(--color-yl);
}
@media (any-hover: hover) {
  .share__icon:hover .svg-base,
  .share__icon:hover .svg-path {
    fill: var(--color-yl);
  }
}

.recommend {
  padding-block-end: 40px;
  padding-block-start: 40px;
  overflow-x: hidden;
}

.recommend.--btnOnly {
  padding-block-start: 0;
}

.recommend__inner {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: clamp(20px, 0px + 5.56vw, 80px);
}

/* c-btnWrapper */
.c-btnWrapper {
  margin-inline: auto;
  margin-block-start: 40px;
  text-align: center;
}

.c-btnWrapper.--noneMargin {
  margin-block-start: 0;
}

.c-btnWrapper.--flex {
  align-items: center;
  display: flex;
  gap: clamp(60px, 46.667px + 3.7vw, 100px);
  justify-content: center;
}

/* c-btn */
.c-btn {
  background-color: transparent;
  border: 1px solid var(--color-wh);
  border-radius: 4px;
  color: var(--color-wh);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 300px;
  max-width: 100%;
  padding: 1.075em 3.2em 1.125em 1.6em;
  position: relative;
  text-align: center;
  transition: all 0.25s;
}

.c-btn.--rd {
  background-color: var(--color-wh);
  border-color: var(--color-rd);
  color: var(--color-rd);
}

.c-btn.--yl {
  background-color: var(--color-yl);
  border-color: var(--color-yl);
}

.c-btn.--simple {
  border: none;
  color: var(--color-rd);
  min-width: unset;
  padding: 1.075em 0 1.125em 0;
  text-align: left;
  width: 160px;
}

.c-btn.--simple.--blwh {
  color: var(--color-bl);
}
@media screen and (min-width: 744px) {
  .c-btn.--simple.--blwh {
    color: var(--color-wh);
  }
}

.c-btn.--form {
  padding: 1.075em 2.8em 1.125em 2.8em;
}

.c-btn svg {
  height: 30px;
  position: absolute;
  right: 1em;
  top: 50%;
  width: 30px;
}

.c-btn.--simple svg {
  right: 0;
}

.c-btn ._arrow {
  transform: translate(1px, -50%);
}

.c-btn ._circle {
  transform: translateY(-50%) rotate(135deg) scale(1, -1);
}

.svg-arrow {
  fill: transparent;
  stroke: var(--color-wh);
  stroke-dasharray: 60;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  transition: stroke 0.25s;
}

.svg-circle {
  fill: transparent;
  stroke: var(--color-wh);
  stroke-dasharray: 105;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  transition: stroke 0.25s;
}

.svg-arrow.--bk,
.svg-circle.--bk {
  stroke: var(--color-bk);
}

.c-btn.--rd .svg-arrow,
.c-btn.--rd .svg-circle {
  stroke: var(--color-rd);
}

.c-btn.--simple .svg-arrow,
.c-btn.--simple .svg-circle {
  stroke: var(--color-rd);
}

.c-btn.--simple.--blwh .svg-arrow,
.c-btn.--simple.--blwh .svg-circle {
  stroke: var(--color-bl);
}
@media screen and (min-width: 744px) {
  .c-btn.--simple.--blwh .svg-arrow,
  .c-btn.--simple.--blwh .svg-circle {
    stroke: var(--color-wh);
  }
}

.c-btnText {
  font-size: 0.75rem;
  line-height: 1.25;
  margin-block-start: 10px;
  text-align: center;
  width: 100%;
}

/* c-btn :hover/:focus */
.c-btn:focus-visible {
  border-color: var(--color-yl);
  color: var(--color-yl);
}
.c-btn:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-yl);
}
.c-btn:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-yl);
}
.c-btn:focus-visible .c-btnText {
  color: var(--color-wh);
}
@media (any-hover: hover) {
  .c-btn:hover {
    border-color: var(--color-yl);
    color: var(--color-yl);
  }
  .c-btn:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-yl);
  }
  .c-btn:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-yl);
  }
  .c-btn:hover .c-btnText {
    color: var(--color-wh);
  }
}

.c-btn.--rev:focus-visible {
  background-color: var(--color-wh);
  color: var(--color-rd);
}
.c-btn.--rev:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-rd);
}
.c-btn.--rev:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-rd);
}
@media (any-hover: hover) {
  .c-btn.--rev:hover {
    background-color: var(--color-wh);
    color: var(--color-rd);
  }
  .c-btn.--rev:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-rd);
  }
  .c-btn.--rev:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-rd);
  }
}

.c-btn.--rd:focus-visible {
  background-color: var(--color-rd);
  color: var(--color-wh);
}
.c-btn.--rd:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-wh);
}
.c-btn.--rd:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-wh);
}
@media (any-hover: hover) {
  .c-btn.--rd:hover {
    background-color: var(--color-rd);
    color: var(--color-wh);
  }
  .c-btn.--rd:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-wh);
  }
  .c-btn.--rd:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-wh);
  }
}

.c-btn.--yl:focus-visible {
  background-color: var(--color-wh);
  color: var(--color-yl);
}
.c-btn.--yl:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-yl);
}
.c-btn.--yl:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-yl);
}
@media (any-hover: hover) {
  .c-btn.--yl:hover {
    background-color: var(--color-wh);
    color: var(--color-yl);
  }
  .c-btn.--yl:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-yl);
  }
  .c-btn.--yl:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-yl);
  }
}

.c-btn.--simple:focus-visible {
  color: var(--color-yl);
}
.c-btn.--simple:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-yl);
}
.c-btn.--simple:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-yl);
}
@media (any-hover: hover) {
  .c-btn.--simple:hover {
    color: var(--color-yl);
  }
  .c-btn.--simple:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-yl);
  }
  .c-btn.--simple:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-yl);
  }
}

.c-btn.--simple.--blwh:focus-visible {
  color: var(--color-rd);
}
.c-btn.--simple.--blwh:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-rd);
}
.c-btn.--simple.--blwh:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-rd);
}
@media (any-hover: hover) {
  .c-btn.--simple.--blwh:hover {
    color: var(--color-rd);
  }
  .c-btn.--simple.--blwh:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-rd);
  }
  .c-btn.--simple.--blwh:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-rd);
  }
}

@keyframes circle {
  0% {
    stroke-dashoffset: 105;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes arrow {
  to {
    stroke-dashoffset: 0;
  }
  from {
    stroke-dashoffset: 60;
  }
}
/* c-btnSmall */
.c-btnSmall {
  align-self: flex-end;
  background-color: transparent;
  border: 1px solid var(--color-wh);
  border-radius: 4px;
  color: var(--color-wh);
  font-size: 14px;
  font-weight: 700;
  padding: 0.5em 2em 0.5em 1em;
  position: relative;
  transition: all 0.25s;
}

.c-btnSmall::after {
  content: "";
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid var(--color-wh);
  border-right: 0;
  display: inline-block;
  height: 0;
  line-height: 1;
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.25s;
  width: 0;
}

.c-btnSmall:focus-visible {
  background-color: var(--color-wh);
  color: var(--color-rd);
}
.c-btnSmall:focus-visible::after {
  border-left-color: var(--color-rd);
}
@media (any-hover: hover) {
  .c-btnSmall:hover {
    background-color: var(--color-wh);
    color: var(--color-rd);
  }
  .c-btnSmall:hover::after {
    border-left-color: var(--color-rd);
  }
}

.c-btnSmall.--rd {
  border: 1px solid var(--color-rd);
  color: var(--color-rd);
}

.c-btnSmall.--rd::after {
  border-left-color: var(--color-rd);
}

.c-btnSmall.--rd:focus-visible {
  background-color: var(--color-rd);
  color: var(--color-wh);
}
.c-btnSmall.--rd:focus-visible::after {
  border-left-color: var(--color-wh);
}
@media (any-hover: hover) {
  .c-btnSmall.--rd:hover {
    background-color: var(--color-rd);
    color: var(--color-wh);
  }
  .c-btnSmall.--rd:hover::after {
    border-left-color: var(--color-wh);
  }
}

/* c-btnEvent */
.c-btnEvent {
  background-image: url(../img/common/btn_event.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  color: var(--color-wh);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  padding: clamp(15px, 11.667px + 0.93vw, 25px) 6em;
  position: relative;
  text-align: center;
  transition: all 0.25s;
  width: clamp(280px, 213.333px + 18.52vw, 480px);
}

.c-btnEvent svg {
  position: absolute;
  height: 30px;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.c-btnEvent ._arrow {
  transform: translate(1px, -50%);
}

.c-btnEvent ._circle {
  transform: translateY(-50%) rotate(135deg) scale(1, -1);
}

.c-btnEvent:focus-visible {
  color: var(--color-yl);
  filter: brightness(1.2);
}
.c-btnEvent:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-yl);
}
.c-btnEvent:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-yl);
}
.c-btnEvent:focus-visible .c-btnText {
  color: var(--color-wh);
}
@media (any-hover: hover) {
  .c-btnEvent:hover {
    color: var(--color-yl);
    filter: brightness(1.2);
  }
  .c-btnEvent:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-yl);
  }
  .c-btnEvent:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-yl);
  }
  .c-btnEvent:hover .c-btnText {
    color: var(--color-wh);
  }
}

.c-btnPrev,
.c-btnNext {
  color: var(--color-bk);
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.875rem;
  left: unset;
  letter-spacing: 0.2em;
  margin-block-start: 20px;
  min-width: 108px;
  padding: 1em 0;
  position: relative;
  right: unset;
  text-transform: uppercase;
  top: unset;
}

.c-btnPrev > span,
.c-btnNext > span {
  display: inline-block;
}

.c-btnPrev > span {
  padding-left: 60px;
}

.c-btnNext > span {
  padding-right: 60px;
}

.c-btnPrev > svg,
.c-btnNext > svg {
  position: absolute;
  height: 40px;
  top: 50%;
  width: 40px;
}

.c-btnPrev > svg {
  left: 0;
}

.c-btnNext > svg {
  right: 0;
}

.c-btnNext ._arrow {
  transform: translate(1px, -50%);
}

.c-btnNext ._circle {
  transform: translateY(-50%) rotate(135deg) scale(1, -1);
}

.c-btnPrev ._arrow {
  transform: translate(-2px, -50%) rotateY(-180deg);
}

.c-btnPrev ._circle {
  transform: translateY(-55%) rotate(360deg) scale(1, -1);
}

.c-btnNext:focus-visible {
  color: var(--color-rd);
}
.c-btnNext:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-rd);
}
.c-btnNext:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  stroke: var(--color-rd);
}
@media (any-hover: hover) {
  .c-btnNext:hover {
    color: var(--color-rd);
  }
  .c-btnNext:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-rd);
  }
  .c-btnNext:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    stroke: var(--color-rd);
  }
}

.c-btnPrev:focus-visible {
  color: var(--color-rd);
}
.c-btnPrev:focus-visible .svg-arrow {
  animation: arrow ease-out 1s;
  animation-delay: 0.5s;
  stroke: var(--color-rd);
}
.c-btnPrev:focus-visible .svg-circle {
  animation: circle ease-in-out 0.5s;
  animation-direction: reverse;
  stroke: var(--color-rd);
}
@media (any-hover: hover) {
  .c-btnPrev:hover {
    color: var(--color-rd);
  }
  .c-btnPrev:hover .svg-arrow {
    animation: arrow ease-out 1s;
    animation-delay: 0.5s;
    stroke: var(--color-rd);
  }
  .c-btnPrev:hover .svg-circle {
    animation: circle ease-in-out 0.5s;
    animation-direction: reverse;
    stroke: var(--color-rd);
  }
}

/* c-title */
.c-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
}

.c-title.--left {
  text-align: left;
}

.c-title > ._en {
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  margin-block-end: 20px;
  text-transform: uppercase;
}

.c-title > ._en.--lg {
  font-size: 1.5rem;
}

.c-title ._balloon {
  background-color: var(--color-yl);
  border-radius: 10px;
  color: var(--color-wh);
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin-block-end: 30px;
  min-width: 250px;
  padding: 0.6rem 1.5em;
  position: relative;
  text-align: center;
}

.c-title ._balloon::after {
  border: 0.5em solid transparent;
  border-top: 0.5em solid var(--color-yl);
  content: "";
  left: 50%;
  margin-left: -0.5em;
  position: absolute;
  top: 100%;
}

.c-title ._balloon.--rd {
  background-color: var(--color-rd);
}

.c-title ._balloon.--rd::after {
  border-top: 0.5em solid var(--color-rd);
}

/* c-modal */
.c-modal {
  --duration: .4s;
  --gutter: max(5vi, 20px);
  inline-size: min(100% - var(--gutter) * 2, 960px);
  block-size: min(100svb - var(--gutter) * 2, 960px);
  margin: auto;
  box-shadow: 0 0 0 100vmax rgba(var(--color-bk-shadow-rgb), 0.9);
  transition: opacity var(--duration), scale var(--duration);
}
.c-modal:not([data-active=true]) {
  opacity: 0;
  scale: 0.95;
}
.c-modal::-ms-backdrop {
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.c-modal::backdrop {
  transition: opacity 0.5s;
}
.c-modal:not([data-active=true])::-ms-backdrop {
  opacity: 0;
}
.c-modal:not([data-active=true])::backdrop {
  opacity: 0;
}

/* utility */
.mb-only {
  display: block;
}
@media screen and (min-width: 744px) {
  .mb-only {
    display: none;
  }
}

.bg-rd {
  background-color: var(--color-rd);
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
  pointer-events: none !important;
}