@charset "UTF-8";
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* --- container --- */
  --container: min(1200px, 100%);
  --container-spacing: 2rem;
  /* --- inner --- */
  --inner: min(104rem, 100%);
  /* --- z-index --- */
  --z-index-header: 900;
  /* --- color --- */
  /* base */
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f0f0f0;
  --color-beige: #f2ede4;
  /* main */
  --color-primary: #a6705a;
  --color-secondary: #c7b59a;
  --color-tertiary: #79806c;
  --color-accent: #b5563a;
  /* gradation */
  --color-gradation-primary: var(--color-text), var(--color-primary);
  /* text */
  --color-text: #211d17;
  /* border */
  --color-border: #ccc;
  /* background */
  --color-bg: var(--color-beige);
  --color-bg-primary: var(--color-primary);
  --color-bg-secondary: var(--color-secondary);
  --color-bg-tertiary: var(--color-tertiary);
  --color-bg-accent: var(--color-accent);
  /* status */
  --color-success: #127e6b;
  --color-important: #cd2b31;
  --color-disabled: #ddd;
  /* input */
  --color-input-bg: #e7e7e7;
  --color-input-border: var(--color-primary);
  --color-input-text: var(--color-text);
  --color-input-placeholder: #9b9b9b;
  --color-input-focus: #3131fa;
  /* radius */
  --radius-xsmall: 0.8rem;
  --radius-small: 1.6rem;
  --radius-medium: 2.4rem;
  --radius-circle: 50%;
  --radius-max: 100vmax;
  /* shadow */
  --shadow-lv1: 0 0 0 0 rgba(0, 0, 0, 0.2);
  --shadow-lv2: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --family-sans:
    "Zen Kaku Gothic New", 遊ゴシック体, "Yu Gothic", yugothic,
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, meiryo,
    osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  --family-serif:
    "Shippori Mincho", "游明朝", yumincho, "ヒイラギ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  --family-english: "Cormorant Garamond", serif;
  --family-accent: "Jost", sans-serif;
  /* spacing */
  --spacing: 0.04em;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 7.5rem;
}
@media screen and (max-width: 767px) {
  :root {
    --radius-xsmall: 0.4rem;
    --radius-small: 0.8rem;
    --radius-medium: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 9.9rem;
  }
}

/* ----------------------------------------------------
settings
---------------------------------------------------- */
html {
  scroll-padding-top: calc(var(--header-height) + 4.8rem);
  font-size: 10px;
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 0.8064516129vw;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html.is-scroll-hide {
  overflow: hidden;
}

a[href*="tel:"] {
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:not([class]),
button:not([class]) {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:not([class]):hover,
  button:not([class]):hover {
    opacity: 0.7;
  }
}

img,
svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

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

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

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

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

body {
  font-family: var(--family-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  background-color: var(--color-white);
  font-feature-settings: "palt";
}
body.is-scroll-hide {
  overflow: hidden;
}

* {
  letter-spacing: var(--spacing);
}

html {
  box-sizing: border-box;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  height: 0;
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

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

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

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

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

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

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

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

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

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

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

button,
input,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  border: 0;
  /* Correct the text wrapping in Edge 18- and IE */
}

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

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* ---------- container ---------- */
.l-container {
  max-width: calc(var(--container) + var(--container-spacing) * 2);
  padding-inline: var(--container-spacing);
  margin-inline: auto;
}

/* ---------- header ---------- */
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: var(--header-height);
  top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 2rem;
  }
}

/* ---------- inner ----------*/
.l-inner {
  width: var(--inner);
  margin-inline: auto;
}

/* ---------- accordion ---------- */
.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-accordion {
    gap: 1.6rem;
  }
}

.c-accordion__col {
  background-color: var(--color-beige);
}

.c-accordion__details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .c-accordion__details::details-content {
    transition-duration: 300ms;
    transition-property: grid-template-rows;
  }
}
.c-accordion__details:not([open])::details-content {
  grid-template-rows: 0fr;
}
.c-accordion__details[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 3.4rem 9.2rem 3.4rem 4rem;
  text-align: justify;
  cursor: pointer;
  font-family: var(--family-sans);
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  font-weight: 400;
  min-height: 11.6rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary {
    padding: 1.6rem 6rem 1.6rem 2rem;
    gap: 0.8rem;
    min-height: 8rem;
    line-height: 1.6428571429;
  }
}
.c-accordion__summary::before {
  min-width: 3.8rem;
  display: inline-block;
  content: "Q.";
  font-size: 3.2rem;
  line-height: 0.84375;
  font-weight: 400;
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before {
    font-size: 2.4rem;
    min-width: 2.8rem;
  }
}

.c-accordion__btn {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: 2.8rem;
  aspect-ratio: 1;
  transition: opacity var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .c-accordion__btn {
    width: 2rem;
    right: 2rem;
  }
}
.c-accordion__btn::before, .c-accordion__btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 0.1rem;
  content: "";
  background-color: var(--color-text);
  translate: -50% -50%;
}
.c-accordion__btn::after {
  transition: rotate var(--duration) ease;
  rotate: 90deg;
}

.c-accordion__details[open] .c-accordion__summary .c-accordion__btn {
  opacity: 0.5;
}
.c-accordion__details[open] .c-accordion__summary .c-accordion__btn::after {
  rotate: 0deg;
}

.c-accordion__target {
  overflow: hidden;
  padding-inline: 4rem 9.2rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__target {
    padding-inline: 2rem;
  }
}

.c-accordion__contents {
  position: relative;
  padding-block: 3.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 11.6rem;
  border-top: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-accordion__contents {
    padding-block: 1.6rem;
    gap: 0.8rem;
    min-height: 8rem;
  }
}
.c-accordion__contents::before {
  display: inline-block;
  content: "A.";
  min-width: 3.8rem;
  color: var(--color-primary);
  font-size: 3.2rem;
  line-height: 0.84375;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-accordion__contents::before {
    font-size: 2.4rem;
    min-width: 2.8rem;
  }
}

.c-accordion__text {
  text-align: justify;
  font-family: var(--family-sans);
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-accordion__text {
    line-height: 1.6428571429;
  }
}

/* ---------- amenity ----------*/
.c-amenity__container {
  padding-block: 16rem;
}
@media screen and (max-width: 767px) {
  .c-amenity__container {
    padding-block: 8rem;
  }
}

.c-amenity__head {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .c-amenity__head {
    flex-direction: column;
  }
}

.c-amenity__title {
  width: 100%;
  max-width: 19.4rem;
  padding-right: 2rem;
  border-right: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-amenity__title {
    max-width: none;
    border-right: none;
    border-bottom: 0.1rem solid var(--color-text);
    padding-right: 0;
    padding-bottom: 3.8rem;
  }
}

.c-amenity__text {
  padding-left: 6.4rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-amenity__text {
    padding-top: 3.6rem;
    padding-left: 0;
  }
}

.c-amenity__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .c-amenity__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-amenity__list {
    gap: 2.8rem 2rem;
  }
}

.c-amenity__img {
  background-color: #f5f0f0;
}
.c-amenity__img img {
  aspect-ratio: 270/186;
  object-fit: cover;
}

.c-amenity__content {
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-amenity__content {
    margin-top: 1.8rem;
  }
}

.c-amenity__cat {
  display: block;
  font-family: var(--family-english);
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  font-weight: 500;
  padding-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-amenity__cat {
    padding-bottom: 1rem;
  }
}
.c-amenity__cat::before {
  content: "";
  display: inline-block;
  width: 4.3rem;
  height: 0.1rem;
  background-color: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-amenity__desc {
  margin-top: 1.2rem;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-amenity__desc {
    margin-top: 0.4rem;
  }
}
.c-amenity__desc > *:first-child {
  margin-top: 0;
}
.c-amenity__desc h2 {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.c-amenity__desc h2 strong {
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-amenity__desc h2 strong {
    letter-spacing: 0;
  }
}
.c-amenity__desc p {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-amenity__desc p {
    margin-top: 1.2rem;
  }
}

.c-amenity__btn {
  margin-top: 7.8rem;
}
@media screen and (max-width: 767px) {
  .c-amenity__btn {
    margin-top: 3.6rem;
  }
}

/* ---------- button ---------- */
.c-btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 32rem;
  height: 4.8rem;
  background-color: var(--color-text);
  font-family: var(--family-accent);
  padding-inline: 2.4rem;
  position: relative;
  transition: background-color var(--duration);
  /* --- size ---*/
  /* --- type ---*/
  /* --- color ---*/
}
@media screen and (max-width: 767px) {
  .c-btn-primary {
    height: 6.5rem;
    max-width: 33.5rem;
    padding-inline: 2rem;
  }
}
.c-btn-primary::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-gradation-primary));
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--duration);
}
.c-btn-primary::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  min-width: 2.6rem;
  aspect-ratio: 26/5;
  background: var(--color-beige);
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: relative;
  z-index: 2;
  transition: background var(--duration);
}
.c-btn-primary span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 300;
  color: var(--color-beige);
  position: relative;
  z-index: 2;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-btn-primary span {
    letter-spacing: 0;
  }
}
.c-btn-primary b {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  font-family: var(--family-serif);
}
@media (any-hover: hover) {
  .c-btn-primary:hover::before {
    opacity: 1;
  }
}
.c-btn-primary[data-size=small] {
  max-width: 20rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .c-btn-primary[data-size=small] {
    height: 6.5rem;
    max-width: 33.5rem;
  }
}
.c-btn-primary[data-type=line] {
  border: 0.1rem solid var(--color-beige);
}
.c-btn-primary[data-type=line]::before {
  content: none;
}
@media (any-hover: hover) {
  .c-btn-primary[data-type=line]:hover {
    background-color: var(--color-beige);
  }
  .c-btn-primary[data-type=line]:hover::after {
    background: var(--color-text);
  }
  .c-btn-primary[data-type=line]:hover span {
    color: var(--color-text);
  }
}
.c-btn-primary[data-type=line][data-color=beige] {
  border: 0.1rem solid var(--color-text);
}
.c-btn-primary[data-color=beige] {
  background-color: var(--color-beige);
}
bor .c-btn-primary[data-color=beige]::before {
  background-image: linear-gradient(to right, var(--color-gradation-primary));
}
.c-btn-primary[data-color=beige] span {
  color: var(--color-text);
}
.c-btn-primary[data-color=beige]::after {
  background: var(--color-text);
}
@media (any-hover: hover) {
  .c-btn-primary[data-color=beige]:hover {
    background-color: var(--color-text);
  }
  .c-btn-primary[data-color=beige]:hover span {
    color: var(--color-beige);
  }
  .c-btn-primary[data-color=beige]:hover::after {
    background: var(--color-beige);
  }
}
.c-btn-primary[data-color=accent] {
  background-color: var(--color-accent);
}
.c-btn-primary[data-color=accent]::before {
  background-image: linear-gradient(to right, var(--color-text), var(--color-accent));
}

.c-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-family: var(--family-english);
  position: relative;
}
.c-btn-link::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  aspect-ratio: 26/5;
  background: currentColor;
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: var(--duration);
}
.c-btn-link[data-color=primary]::after {
  background: var(--color-primary);
}
.c-btn-link[data-size=large] {
  font-size: 2.4rem;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn-link[data-size=large] {
    font-size: 2rem;
    gap: 0.8rem;
  }
}
@media (any-hover: hover) {
  .c-btn-link:hover::after {
    transform: translateX(0.4rem);
  }
}

/* ---------- card ----------*/
@media screen and (max-width: 767px) {
  .c-card[data-sp-layout=column] .c-card__link {
    flex-direction: column;
  }
}
.c-card[data-sp-layout=column] .c-card__img,
.c-card[data-sp-layout=column] .c-card__content {
  max-width: none;
}

.c-card__link {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-card__link {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media (any-hover: hover) {
  .c-card__link:hover .c-card__img img {
    transform: scale(1.05);
  }
  .c-card__link:hover .c-card__title span {
    background-size: 100% 0.1rem;
    background-position: bottom left;
  }
}

.c-card__img {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card__img {
    max-width: 15.7rem;
  }
}
.c-card__img img {
  width: 100%;
  aspect-ratio: 372/257;
  object-fit: cover;
  transition: transform var(--duration) ease;
}

@media screen and (max-width: 767px) {
  .c-card__content {
    flex: 1;
  }
}

.c-card__title {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    margin-top: 0.9rem;
  }
}
.c-card__title span {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: var(--family-sans);
  background-image: linear-gradient(currentColor, currentColor);
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  padding-bottom: 0.3rem;
  background-size: 0 0.1rem;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size var(--duration) ease-out;
}
@media screen and (max-width: 767px) {
  .c-card__title span {
    line-height: 1.9285714286;
  }
}

/* ---------- cat ----------*/
.c-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.c-cat {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  font-weight: 500;
  padding-inline: 1rem;
  border-radius: var(--radius-xsmall);
}

a.c-cat {
  transition: opacity var(--duration) ease;
}
@media (any-hover: hover) {
  a.c-cat:hover {
    opacity: 0.7;
  }
}

/* ---------- contact ----------*/
.c-contact__container {
  padding-top: 11.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact__container {
    padding-top: 5.6rem;
  }
}

.c-contact__wrap {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 6rem;
  border-bottom: 0.1rem solid var(--color-tertiary);
}
@media screen and (max-width: 767px) {
  .c-contact__wrap {
    flex-direction: column;
    padding-bottom: 4rem;
  }
}

.c-contact__content {
  width: 100%;
  max-width: 56rem;
  color: var(--color-beige);
}
@media screen and (max-width: 767px) {
  .c-contact__content {
    max-width: none;
  }
}

.c-contact__dl {
  margin-top: 5.4rem;
  width: 100%;
  max-width: 52rem;
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-contact__dl {
    margin-top: 3rem;
    max-width: none;
    gap: 1rem 1.6rem;
  }
}

.c-contact__dt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-family: var(--family-accent);
}
@media screen and (max-width: 767px) {
  .c-contact__dt {
    letter-spacing: 0.05em;
  }
}

.c-contact__dd {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-family: var(--family-sans);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-contact__dd {
    letter-spacing: 0.05em;
  }
}
.c-contact__dd a {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}

.c-contact__btn {
  margin-top: 4.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    margin-top: 3rem;
    padding-inline: 2rem;
    gap: 2rem;
    justify-content: center;
  }
}

.c-contact__map {
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 767px) {
  .c-contact__map {
    max-width: none;
  }
}

.c-contact__img {
  width: 100%;
  max-width: 55.4rem;
}
@media screen and (max-width: 767px) {
  .c-contact__img {
    max-width: 40rem;
    margin-inline: auto;
  }
}

/* ---------- date ----------*/
.c-date {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 400;
  color: var(--color-tertiary);
  font-family: var(--family-accent);
}

/* ---------- desc ----------*/
.c-desc {
  background-color: var(--color-beige);
  text-align: left;
}

.c-desc__head {
  text-align: center;
  max-width: 100%;
  min-width: 18rem;
  background-color: var(--color-secondary);
  min-height: 3.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-desc__head {
    max-width: none;
    width: auto;
    display: inline-flex;
    padding-inline: 1.2rem;
    height: 2.8rem;
  }
}

.c-desc__title {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.13em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-desc__title {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    letter-spacing: 0.065em;
  }
}

.c-desc__content {
  padding: 1.8rem 3.2rem 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-desc__content {
    padding: 1.6rem 2rem;
  }
}

/* ---------- dl ----------*/
.c-dl__col {
  display: flex;
  gap: 4rem;
  padding-block: 3.2rem;
  border-bottom: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-dl__col {
    flex-direction: column;
    gap: 1.6rem;
    padding-block: 2rem;
  }
}

.c-dl__dt,
.c-dl__dd {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-dl__dt,
  .c-dl__dd {
    line-height: 1.6428571429;
    letter-spacing: 0;
  }
}

.c-dl__dt {
  min-width: 16rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-dl__dt {
    min-width: auto;
    font-weight: 700;
  }
}

.c-dl__dd {
  flex: 1;
}

/* ---------- single editor style ----------*/
.c-editor-body {
  /* --- basic ---*/
  /* --- head ---*/
  /* --- text ---*/
  /* --- image ---*/
  /* --- separator ---*/
  /* --- quote ---*/
  /* --- list ---*/
  /* --- table ---*/
  /* --- code ---*/
  /* --- button ---*/
  /* --- columns ---*/
  /* --- dl ---*/
}
.c-editor-body > *:first-child {
  margin-top: 0;
}
.c-editor-body h2 {
  margin-top: 9.6rem;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-editor-body h2 {
    margin-top: 5.6rem;
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.06em;
  }
}
.c-editor-body h3 {
  margin-top: 6.4rem;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-editor-body h3 {
    margin-top: 4.8rem;
  }
}
.c-editor-body h4 {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-editor-body h4 {
    margin-top: 3.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}
.c-editor-body h5 {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-editor-body h5 {
    margin-top: 3.2rem;
    font-size: 1.6rem;
    line-height: 1.125;
    letter-spacing: 0.06em;
  }
}
.c-editor-body p {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.03em;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-editor-body p {
    line-height: 1.6428571429;
    letter-spacing: 0;
  }
}
.c-editor-body > p {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body > p {
    margin-top: 1.6rem;
  }
}
.c-editor-body a:not([class]) {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-editor-body .wp-block-image {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-image {
    margin-top: 4.8rem;
  }
}
.c-editor-body .wp-block-image.size-full img {
  width: 100%;
}
.c-editor-body .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.c-editor-body .wp-element-caption {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-element-caption {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}
.c-editor-body .wp-block-separator {
  border-top: 0.1rem solid var(--color-primary);
  margin-block: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-separator {
    margin-block: 4rem;
  }
}
.c-editor-body .wp-block-quote {
  margin-top: 4rem;
  border-top: 0.1rem solid var(--color-primary);
  border-bottom: 0.1rem solid var(--color-primary);
  padding: 4rem 5rem 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-quote {
    padding: 5rem 1rem 3rem;
  }
}
.c-editor-body .wp-block-quote::before {
  content: "“";
  display: inline-block;
  color: var(--color-beige);
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  position: absolute;
  top: 1.4rem;
  left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-quote::before {
    top: 0.8rem;
  }
}
.c-editor-body .wp-block-quote p + p {
  margin-top: 1rem;
}
.c-editor-body .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: smaller;
}
.c-editor-body .wp-block-list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-list {
    margin-top: 3.2rem;
  }
}
.c-editor-body .wp-block-list .wp-block-list {
  margin-block: 0;
}
.c-editor-body .wp-block-list li {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-list li {
    line-height: 1.8571428571;
  }
}
.c-editor-body .wp-block-list li::marker {
  color: var(--color-primary);
}
.c-editor-body ul.wp-block-list {
  list-style-type: "・";
  margin-left: 1em;
}
.c-editor-body ol.wp-block-list {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.c-editor-body ol.wp-block-list .wp-block-list {
  margin-left: 1em;
  list-style-type: none;
  counter-reset: paren-counter;
}
.c-editor-body ol.wp-block-list .wp-block-list > li {
  counter-increment: paren-counter;
  padding-left: 1.5em;
  text-indent: -2em;
}
@media screen and (max-width: 767px) {
  .c-editor-body ol.wp-block-list .wp-block-list > li {
    padding-left: 1em;
  }
}
.c-editor-body ol.wp-block-list .wp-block-list > li::before {
  content: "(" counter(paren-counter) ")";
  color: var(--color-primary);
  margin-right: 0.5em;
}
.c-editor-body ol.wp-block-list .wp-block-list .wp-block-list {
  margin-left: 2em;
  list-style-type: katakana;
  counter-reset: none;
}
.c-editor-body ol.wp-block-list .wp-block-list .wp-block-list > li {
  padding-left: 0;
  text-indent: 0;
}
.c-editor-body ol.wp-block-list .wp-block-list .wp-block-list > li::before {
  content: none;
}
.c-editor-body table {
  margin-top: 6.4rem;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-editor-body table {
    margin-top: 4rem;
  }
}
.c-editor-body table thead {
  border-bottom: none;
}
.c-editor-body table thead th {
  height: 4.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.255em;
  font-weight: 400;
  padding: 0.8rem 1.6rem;
  background-color: var(--color-tertiary);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-editor-body table thead th {
    font-size: 1.4rem;
    height: 4rem;
  }
}
.c-editor-body table th,
.c-editor-body table td {
  border: 0.2rem solid var(--color-secondary);
  height: 6.4rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.255em;
  font-weight: 400;
  text-align: center;
  padding: 0.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body table th,
  .c-editor-body table td {
    border-width: 0.1rem;
    font-size: 1.2rem;
    height: 5.6rem;
  }
}
.c-editor-body table th {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-editor-body table td {
  background-color: var(--color-white);
}
.c-editor-body code {
  background-color: #f0f0f0;
  padding: 1rem;
  overflow: auto;
}
.c-editor-body .wp-block-buttons {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-buttons {
    margin-top: 4rem;
  }
}
.c-editor-body .wp-block-buttons .wp-block-button {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: 4.8rem;
  background-color: var(--color-text);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-buttons .wp-block-button {
    height: 6.5rem;
    max-width: 33.5rem;
  }
}
.c-editor-body .wp-block-buttons .wp-block-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-gradation-primary));
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--duration);
}
.c-editor-body .wp-block-buttons .wp-block-button:has(.wp-block-button__link:hover)::before {
  opacity: 1;
}
.c-editor-body .wp-block-buttons .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: transparent;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 300;
  font-family: var(--family-accent);
  padding-inline: 2.4rem;
  position: relative;
  border-radius: 0;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-buttons .wp-block-button__link {
    padding-inline: 2rem;
    letter-spacing: 0;
  }
}
.c-editor-body .wp-block-buttons .wp-block-button__link::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  min-width: 2.6rem;
  aspect-ratio: 26/5;
  background: var(--color-beige);
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: relative;
  z-index: 2;
  transition: background var(--duration);
}
.c-editor-body .wp-block-columns {
  margin-top: 6.4rem;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-columns {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2.8rem;
  }
}
.c-editor-body .wp-block-column *:first-child {
  margin-top: 0;
}
.c-editor-body .wp-block-column > * {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body .wp-block-column > * {
    margin-top: 1.6rem;
  }
}
.c-editor-body dl {
  margin-top: 4.8rem;
  border-top: 0.1rem solid var(--color-primary);
  display: grid;
  grid-template-columns: auto 1fr;
}
.c-editor-body dt {
  width: 20rem;
  font-weight: 700;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-editor-body dt {
    width: 12rem;
  }
}
.c-editor-body dt,
.c-editor-body dd {
  padding-block: 1.6rem;
  border-bottom: 0.1rem solid var(--color-primary);
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .c-editor-body dt,
  .c-editor-body dd {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

/* ---------- fixed ----------*/
.c-fixed {
  width: 80%;
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.c-fixed__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 6.4rem;
  background-color: var(--color-text);
  color: var(--color-beige);
  transition: background-color var(--duration), border var(--duration), border-color var(--duration);
  border: 0.1rem solid var(--color-text);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-fixed__btn a {
    height: 5.4rem;
  }
}
.c-fixed__btn a::before {
  content: "";
  display: block;
  width: calc(100% + 0.2rem);
  height: calc(100% + 0.2rem);
  background-image: linear-gradient(to right, var(--color-gradation-primary));
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  opacity: 0;
  transition: opacity var(--duration);
}
.c-fixed__btn a b {
  font-size: 1.8rem;
  font-family: var(--family-accent);
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.c-fixed__btn a p {
  font-family: var(--family-serif);
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}
@media (any-hover: hover) {
  .c-fixed__btn a:hover {
    opacity: 1;
  }
  .c-fixed__btn a:hover::before {
    opacity: 1;
  }
}

/* ---------- flex ----------*/
.c-flex {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-flex {
    max-width: 48rem;
    margin-inline: auto;
    gap: 1.6rem;
  }
}
.c-flex.c-flex--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-flex[data-sp-layout=column], .c-flex.c-flex--reverse[data-sp-layout=column] {
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flex[data-sp-layout=column-reverse], .c-flex.c-flex--reverse[data-sp-layout=column-reverse] {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.8rem;
  }
}

.c-flex-flex-wrap {
  flex-wrap: wrap;
}

.c-flex-justify-between {
  justify-content: space-between;
}

.c-flex-justify-evenly {
  justify-content: space-evenly;
}

.c-flex-justify-center {
  justify-content: center;
}

.c-flex-justify-start {
  justify-content: flex-start;
}

.c-flex-justify-end {
  justify-content: flex-end;
}

.c-flex-items-center {
  align-items: center;
}

.c-flex-items-start {
  align-items: flex-start;
}

.c-flex-items-end {
  align-items: flex-end;
}

.c-flex__col {
  flex: 1;
}

.c-flex__img {
  width: 100%;
  max-width: 32rem;
}

.c-flex__content {
  width: 100%;
  max-width: 68rem;
}
@media screen and (max-width: 767px) {
  .c-flex__content {
    max-width: none;
  }
}

/* ---------- form ----------*/
.c-form__body {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-small);
  padding: 6.2rem 7rem 10.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__body {
    padding: 3.2rem 2rem;
  }
}

.c-form__col {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-form__col {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.c-form__col + .c-form__col {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form__col + .c-form__col {
    margin-top: 2.8rem;
  }
}

.c-form__label {
  min-width: 15.2rem;
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-form__label {
    min-width: auto;
    line-height: 1.5714285714;
    gap: 1rem;
  }
}

.c-form__required {
  min-width: max-content;
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: var(--color-important);
  border-radius: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color-white);
}

.c-form__input {
  width: 100%;
  flex: 1;
}
.c-form__input input[type=text],
.c-form__input input[type=email],
.c-form__input input[type=tel],
.c-form__input input[type=number],
.c-form__input input[type=url],
.c-form__input select,
.c-form__input textarea {
  display: block;
  font-family: var(--family-sans);
  width: 100%;
  background-color: var(--color-input-bg);
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.12em;
  padding: 1.5rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=text],
  .c-form__input input[type=email],
  .c-form__input input[type=tel],
  .c-form__input input[type=number],
  .c-form__input input[type=url],
  .c-form__input select,
  .c-form__input textarea {
    letter-spacing: 0.04em;
    padding: 2rem;
  }
}
.c-form__input input[type=text]::placeholder,
.c-form__input input[type=email]::placeholder,
.c-form__input input[type=tel]::placeholder,
.c-form__input input[type=number]::placeholder,
.c-form__input input[type=url]::placeholder,
.c-form__input select::placeholder,
.c-form__input textarea::placeholder {
  color: var(--color-input-placeholder);
}
.c-form__input input[type=email],
.c-form__input input[type=tel],
.c-form__input input[type=number] {
  font-family: var(--family-accent);
}
.c-form__input input[type=number] {
  -moz-appearance: textfield;
}
.c-form__input input[type=number]::-webkit-outer-spin-button, .c-form__input input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-form__input select {
  padding-right: 2.4rem;
}
.c-form__input textarea {
  height: 14rem;
  resize: none;
}
.c-form__input .wpcf7-form-control-wrap:has(select) {
  position: relative;
}
.c-form__input .wpcf7-form-control-wrap:has(select)::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 5/7;
  background: var(--color-input-text);
  mask-image: url(../img/common/);
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(90deg);
  position: absolute;
  top: 1.8rem;
  right: 1.2rem;
  pointer-events: none;
}
.c-form__input input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--color-input-border);
  border-radius: 50%;
  background-color: var(--color-input-bg);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=radio] {
    width: 1.6rem;
    min-width: 1.6rem;
  }
}
.c-form__input input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-primary);
}
.c-form__input input[type=checkbox] {
  cursor: pointer;
  width: 2rem;
  min-width: 2rem;
  aspect-ratio: 1;
  border: 0.1rem solid var(--color-input-border);
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=checkbox] {
    width: 1.6rem;
    min-width: 1.6rem;
  }
}
.c-form__input input[type=checkbox]:checked:before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  aspect-ratio: 1;
  border-radius: inherit;
  background: url(../img/common/icon_checkbox.webp) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-form__input input[type=checkbox]:checked:before {
    width: 1rem;
  }
}
.c-form__input .wpcf7-radio,
.c-form__input .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.c-form__input .wpcf7-list-item:has(input[type=radio], input[type=checkbox]) {
  margin-left: 0;
}
.c-form__input label {
  font-size: 1.4rem;
  font-family: var(--family-sans);
}
.c-form__input label:has(input[type=radio], input[type=checkbox]) {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form__input label:has(input[type=radio], input[type=checkbox]) {
    gap: 1.3rem;
  }
}
.c-form__input .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-top: 0.4rem;
  color: var(--color-important);
}

.c-form__privacy {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .c-form__privacy {
    margin-top: 2.8rem;
  }
}

.c-form__privacy-checkbox {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form__privacy-checkbox {
    margin-top: 2rem;
  }
}

.c-form__text {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: center;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-form__text {
    text-align: justify;
  }
}
.c-form__text a,
.c-form__text u {
  letter-spacing: 0;
}

.c-form__btn {
  margin-top: 5.2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form__btn {
    margin-top: 3rem;
  }
}

/* --- confirm ---*/
.wpcf7cp-form-hide .c-form {
  display: none;
}

.p-contact-form__wrap #wpcf7cpcnf {
  position: static;
}
.p-contact-form__wrap #wpcf7cpcnf table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-contact-form__wrap #wpcf7cpcnf table th,
.p-contact-form__wrap #wpcf7cpcnf table td {
  word-break: break-all;
  padding: 1rem;
  border: 0.1rem solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact-form__wrap #wpcf7cpcnf table th,
  .p-contact-form__wrap #wpcf7cpcnf table td {
    padding: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-contact-form__wrap #wpcf7cpcnf table th {
  width: 24rem;
  background-color: var(--color-bg-primary);
}
@media screen and (max-width: 767px) {
  .p-contact-form__wrap #wpcf7cpcnf table th {
    width: 45%;
  }
}
.p-contact-form__wrap #wpcf7cpcnf table td {
  background-color: var(--color-white);
}
.p-contact-form__wrap .wpcf7cp-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__wrap .wpcf7cp-btns {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-contact-form__wrap .wpcf7cp-cfm-edit-btn,
.p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  width: 100%;
  max-width: 24rem;
  min-height: 5.2rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-white);
  border-radius: var(--radius-max);
  transition: background-color var(--duration) ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__wrap .wpcf7cp-cfm-edit-btn,
  .p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
    height: 4.8rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-inline: 1.6rem;
    max-width: 35rem;
    margin-inline: auto;
  }
}
.p-contact-form__wrap .wpcf7cp-cfm-edit-btn {
  background-color: var(--color-gray-1);
}
@media (any-hover: hover) {
  .p-contact-form__wrap .wpcf7cp-cfm-edit-btn:hover {
    background-color: var(--color-black);
  }
}
.p-contact-form__wrap .wpcf7cp-cfm-submit-btn {
  background-color: var(--color-primary);
}
@media (any-hover: hover) {
  .p-contact-form__wrap .wpcf7cp-cfm-submit-btn:hover {
    background-color: var(--color-accent);
  }
}

/* ---------- grid ----------*/
.c-grid {
  display: grid;
  gap: 4rem;
  /* --- layout ---*/
  /* --- line ---*/
}
@media screen and (max-width: 767px) {
  .c-grid {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-grid[data-layout=column-2] {
  grid-template-columns: repeat(2, 1fr);
}
.c-grid[data-layout=column-3] {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-grid[data-layout=column-3] {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-grid[data-layout=column-4] {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-grid[data-layout=column-2], .c-grid[data-layout=column-3], .c-grid[data-layout=column-4] {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-grid[data-type=line] {
  gap: 0;
}
.c-grid[data-type=line] .c-grid__item {
  border: 0.1rem solid var(--color-text);
}
.c-grid[data-type=line] .c-grid__item + .c-grid__item {
  border-left: none;
}
@media screen and (max-width: 767px) {
  .c-grid[data-type=line] .c-grid__item + .c-grid__item {
    border-left: 0.1rem solid var(--color-text);
    border-top: none;
  }
}

.c-grid__item {
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .c-grid__item {
    padding: 2rem;
  }
}

/* ---------- head ---------- */
.c-head-primary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-head-primary {
    gap: 2rem;
  }
}

.c-head-primary__ja {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.255em;
  font-weight: 400;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .c-head-primary__ja {
    letter-spacing: 0.13em;
  }
}

.c-head-secondary {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-head-secondary {
    gap: 1.6rem;
  }
}
.c-head-secondary::before, .c-head-secondary::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  aspect-ratio: 1;
  background-color: currentColor;
  border-radius: var(--radius-circle);
}

.c-head-tertiary {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- list ----------*/
.c-list-ul {
  list-style-type: "・";
  margin-left: 1em;
}
.c-list-ul li {
  font-size: 1.4rem;
  line-height: 2.8571428571;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-list-ul li {
    line-height: 2;
  }
}
.c-list-ul li::marker {
  color: var(--color-primary);
}

.c-list-ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.c-list-ol li {
  font-size: 1.4rem;
  line-height: 2.8571428571;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-list-ol li {
    line-height: 2;
  }
}
.c-list-ol li::marker {
  color: var(--color-primary);
}

/* ---------- low fv ----------*/
.c-low-fv {
  overflow: hidden;
  height: 50rem;
}
@media screen and (max-width: 767px) {
  .c-low-fv {
    height: auto;
  }
}

.c-low-fv__container {
  height: inherit;
}

.c-low-fv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .c-low-fv__inner {
    flex-direction: column;
  }
}

.c-low-fv__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
  height: inherit;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-low-fv__img {
    width: 100vw;
    margin-left: calc(var(--container-spacing) * -1);
    max-height: 36rem;
  }
}
.c-low-fv__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-low-fv__img img {
    max-height: 36rem;
  }
}

.c-low-fv__head {
  width: 50%;
  padding-block: 2rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .c-low-fv__head {
    text-align: center;
    padding-block: 13rem 5.6rem;
    padding-right: 0;
    width: 100%;
  }
}

.c-low-fv__head-en {
  display: block;
}

.c-low-fv__head-ja {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.315em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-low-fv__head-ja {
    margin-top: 0.8rem;
    letter-spacing: 0.2em;
  }
}

/* ---------- news ----------*/
.c-news__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-news__link {
    align-items: flex-start;
    gap: 2rem;
  }
}
@media (any-hover: hover) {
  .c-news__link:hover .c-news__img img {
    transform: scale(1.05);
  }
  .c-news__link:hover .c-news__title span {
    background-size: 100% 0.1rem;
    background-position: bottom left;
  }
}

.c-news__content {
  width: 100%;
  max-width: 30rem;
}
@media screen and (max-width: 767px) {
  .c-news__content {
    max-width: none;
    flex: 1;
  }
}

.c-news__title {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-news__title {
    margin-top: 1.2rem;
  }
}
.c-news__title span {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: var(--family-sans);
  background-image: linear-gradient(var(--color-text), var(--color-text));
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
  padding-bottom: 0.3rem;
  background-size: 0 0.1rem;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size var(--duration) ease-out;
}
@media screen and (max-width: 767px) {
  .c-news__title span {
    line-height: 1.9285714286;
  }
}

.c-news__img {
  width: 100%;
  max-width: 20.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-news__img {
    max-width: 15.7rem;
  }
}
.c-news__img img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--duration) ease;
}

.c-pagination {
  --_pagination-text: var(--color-text);
  --_pagination-text-hover: var(--color-tertiary);
  --_pagination-bg-hover: var(--color-primary);
  --_pagination-active-bg: var(--color-primary);
  --_pagination-active-text: var(--color-primary);
  --_pagination-border: var(--color-border);
  --_pagination-border-hover: var(--color-primary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 0.8rem;
  }
}

.c-pagination__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 4rem;
  aspect-ratio: 1;
  padding: 0 1.2rem;
  color: var(--_pagination-text);
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    min-width: 3.2rem;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .c-pagination__item:hover:not([data-state=current]) {
    color: var(--_pagination-active-text);
  }
}

.c-pagination__item[data-state=current] {
  color: var(--_pagination-active-text);
}

.c-pagination__item[data-state=dots] {
  width: auto;
  min-width: auto;
  padding-inline: 0.8rem;
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .c-pagination__item[data-state=dots] {
    padding-inline: 0.2rem;
  }
}
.c-pagination__item[data-state=dots]:hover {
  color: var(--_pagination-text);
  border-color: transparent;
  background-color: transparent;
}

.c-pagination__item[data-state=prev],
.c-pagination__item[data-state=next] {
  position: relative;
}
.c-pagination__item[data-state=prev]::before,
.c-pagination__item[data-state=next]::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  min-width: 2.6rem;
  aspect-ratio: 26/5;
  background: var(--_pagination-text);
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=prev]:hover::before,
  .c-pagination__item[data-state=next]:hover::before {
    background: var(--_pagination-active-text);
  }
}

.c-pagination__item[data-state=prev] {
  transform: scaleX(-1);
}

.c-pagination__item[data-state=disabled] {
  opacity: 0.6;
  cursor: default;
}
@media (any-hover: hover) {
  .c-pagination__item[data-state=disabled]:hover {
    border-color: var(--_pagination-border);
    color: var(--_pagination-text);
  }
}

/* ---------- step ----------*/
.c-step {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.c-step__item {
  padding: 4rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-step__item {
    padding: 3.2rem 2rem;
  }
}
.c-step__item + .c-step__item {
  position: relative;
}
.c-step__item + .c-step__item::before {
  content: "";
  display: inline-block;
  width: 12rem;
  aspect-ratio: 120/20;
  background-color: var(--color-primary);
  clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, -100%);
}

.c-step__inner {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-step__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.c-step__img {
  width: 100%;
  max-width: 23rem;
}

.c-step__content {
  flex: 1;
}

/* ---------- table ----------*/
.c-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-table th,
.c-table td {
  border: 0.2rem solid var(--color-secondary);
}
@media screen and (max-width: 767px) {
  .c-table th,
  .c-table td {
    border-width: 0.1rem;
  }
}

.c-table__head th {
  height: 4.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.255em;
  font-weight: 400;
  padding: 0.8rem 1.6rem;
  background-color: var(--color-tertiary);
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-table__head th {
    font-size: 1.4rem;
    height: 4rem;
  }
}
.c-table__head .c-table__none {
  background-color: var(--color-secondary);
}

.c-table__body th,
.c-table__body td {
  height: 6.4rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.255em;
  font-weight: 400;
  text-align: center;
  padding: 0.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-table__body th,
  .c-table__body td {
    font-size: 1.2rem;
    height: 5.6rem;
  }
}
.c-table__body th {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.c-table__body td {
  background-color: var(--color-white);
}

.c-table-scroll {
  overflow-x: scroll;
}
.c-table-scroll .c-table {
  min-width: 80rem;
}

/* ---------- tag ----------*/
.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.c-tag {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--color-gray);
}
.c-tag::before {
  content: "#";
}

a.c-tag {
  transition: color var(--duration) ease;
}
@media (any-hover: hover) {
  a.c-tag:hover {
    color: var(--color-text);
  }
}

/* ----------------------------------------------------
about
---------------------------------------------------- */
/* ---------- intro ----------*/
.p-about-intro__container {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__container {
    padding-block: 5rem;
  }
}

.p-about-intro__wrap {
  background: url(../img/about/intro_bg.webp) no-repeat center/cover;
  padding: 5.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-intro__wrap {
    background: url(../img/about/intro_bg_sp.webp) no-repeat center/cover;
    padding-block: 4rem 20.8rem;
  }
}

.p-about-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-about-intro__inner {
    align-items: center;
  }
}

.p-about-intro__title {
  font-size: 1.6rem;
  line-height: 2.625;
  letter-spacing: 0.335em;
  font-weight: 500;
  color: var(--color-white);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-about-intro__title {
    font-size: 1.4rem;
    line-height: 2.1428571429;
    letter-spacing: 0.255em;
    font-weight: 400;
  }
}

/* ---------- feature ----------*/
.p-about-feature__container {
  padding-block: 5.4rem 16rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature__container {
    padding-block: 1rem 8rem;
  }
}

.p-about-feature__list {
  display: flex;
  border: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-about-feature__list {
    flex-direction: column;
  }
}

.p-about-feature__item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 7rem 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item {
    padding: 3.2rem 2rem 2.8rem;
  }
}
.p-about-feature__item + .p-about-feature__item {
  border-left: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-about-feature__item + .p-about-feature__item {
    border-top: 0.1rem solid var(--color-text);
    border-left: none;
  }
}

.p-about-feature__item-num {
  position: absolute;
  top: 0.9rem;
  left: 2.7rem;
  display: inline-block;
  color: var(--color-tertiary);
  font-family: var(--family-english);
  font-size: 8rem;
  line-height: 0.4;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-num {
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
  }
}

.p-about-feature__item-title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--family-english);
  color: var(--color-tertiary);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-title {
    font-size: 2rem;
  }
}

.p-about-feature__item-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-inner {
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.p-about-feature__item-text {
  flex-grow: 1;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-text {
    flex: 1;
    margin-top: 0;
    text-align: justify;
  }
}
.p-about-feature__item-text span {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.19em;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-text span {
    font-size: 1.4rem;
    line-height: 2.2857142857;
    letter-spacing: 0.05em;
    text-align: justify;
  }
}

.p-about-feature__item-img {
  margin-top: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-feature__item-img {
    width: 100%;
    max-width: 14rem;
    margin-top: 1rem;
  }
}

/* ---------- trouble ----------*/
.p-about-trouble__container {
  padding-block: 16rem;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__container {
    padding-block: 8rem 7rem;
  }
}

.p-about-trouble__wrap {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__wrap {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-about-trouble__content {
  width: 100%;
  max-width: 35rem;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__content {
    max-width: none;
  }
}

.p-about-trouble__text {
  border-top: 0.1rem solid var(--color-text);
}

.p-about-trouble__img {
  flex: 1;
}

.p-about-trouble__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__list {
    gap: 2rem;
  }
}

.p-about-trouble__item {
  min-width: 15rem;
  width: calc(25% - 1.2rem);
  padding: 3.4rem 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__item {
    min-width: auto;
    width: calc(50% - 1rem);
    padding-block: 2.4rem 2.2rem;
  }
}

.p-about-trouble__item-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  min-height: 5.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__item-text {
    letter-spacing: 0.06em;
  }
}

.p-about-trouble__item-icon {
  margin-top: 3.2rem;
  width: 8.1rem;
  aspect-ratio: 81/69;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-trouble__item-icon {
    margin-top: 2rem;
    width: 6rem;
    aspect-ratio: 60/58;
  }
}
@media screen and (max-width: 767px) {
  .p-about-trouble__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* ---------- tuning ---------- */
.p-about-tuning__container {
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__container {
    padding-block: 4.7rem 5rem;
  }
}

.p-about-tuning__head {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__head {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-about-tuning__en {
  font-size: 8rem;
  line-height: 1;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-about-tuning__en {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-tuning__en {
    font-size: 4rem;
  }
}

.p-about-tuning__ja {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__ja {
    gap: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.p-about-tuning__ja::before {
  display: inline-block;
  width: 8.8rem;
  height: 0.1rem;
  content: "";
  background-color: currentcolor;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__ja::before {
    width: 3.5rem;
  }
}

.p-about-tuning__body {
  padding: 9.2rem 2rem 10rem;
  text-align: center;
  background: url("../img/about/tuning_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__body {
    padding-block: 4.4rem 5rem;
    background: url("../img/about/tuning_bg_sp.webp") no-repeat center/cover;
  }
}

.p-about-tuning__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__text {
    font-size: 1.6rem;
    line-height: 1.6875;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  .p-about-tuning__text > span:not([class]) {
    display: block;
    text-align: justify;
  }
}

.p-about-tuning__text-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__text-list {
    gap: 1rem;
    padding-block: 1.4rem;
  }
}
.p-about-tuning__text-list span {
  display: block;
  min-width: 9rem;
  padding-inline: 0.4rem;
  border: 0.1rem solid currentcolor;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__text-list span {
    font-size: 1.6rem;
    line-height: 1.5;
    max-width: 8.4rem;
    padding-inline: 0.4rem;
    text-align: center;
  }
}

.p-about-tuning__title {
  margin-top: 5.2rem;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.18em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__title {
    margin-top: 1.2rem;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.p-about-tuning__change {
  padding: 4.6rem 1.6rem 5.2rem;
  margin-top: 6rem;
  background-color: color-mix(in srgb, var(--color-white) 40%, transparent);
}
@media screen and (max-width: 767px) {
  .p-about-tuning__change {
    padding: 2.4rem 2rem 2.8rem;
    margin-top: 3.4rem;
  }
}

.p-about-tuning__sub {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.115em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__sub {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}

.p-about-tuning__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__list {
    gap: 2.8rem 2rem;
    max-width: 32rem;
    margin-top: 2.4rem;
    margin-inline: auto;
  }
}

.p-about-tuning__item {
  width: 13.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__item {
    width: calc(50% - 1rem);
    gap: 1.6rem;
  }
}

.p-about-tuning__item-text {
  white-space: nowrap;
  font-family: var(--family-sans);
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .p-about-tuning__item-text {
    letter-spacing: 0.06em;
  }
}

/* ---------- price ----------*/
.p-about-price__container {
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-price__container {
    padding-block: 8rem;
  }
}

.p-about-price__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-price__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-about-price__item {
  width: calc(33.3333333333% - 2.6666666667rem);
  padding: 5.6rem 2rem 5rem;
}
@media screen and (max-width: 1023px) {
  .p-about-price__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-about-price__item {
    padding: 3rem 2rem 3.2rem;
    width: 100%;
  }
}

.p-about-price__item-title {
  text-align: center;
}

.p-about-price__item-cap {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-price__item-cap {
    font-weight: 500;
    margin-top: 0.2rem;
  }
}

.p-about-price__item-cost {
  margin-top: 3.6rem;
  width: 100%;
  max-width: 23.6rem;
  margin-inline: auto;
  background-color: var(--color-beige);
  color: var(--color-text);
  text-align: center;
  padding: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-price__item-cost {
    margin-top: 2rem;
    max-width: 20rem;
    padding-block: 0.1rem 0;
  }
}

.p-about-price__item-text {
  margin-top: 3.4rem;
  padding-inline: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-price__item-text {
    margin-top: 2rem;
  }
}

.p-about-price__btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-price__btn {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

/* ---------- flow ----------*/
.p-about-flow__container {
  padding-block: 16rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__container {
    padding-block: 8rem;
  }
}

.p-about-flow__list {
  position: relative;
  margin-top: 12.6rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__list {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__list {
    margin-top: 6rem;
  }
}
.p-about-flow__list::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 0.1rem;
  height: calc(100% - 6.6rem);
  content: "";
  background-color: var(--color-tertiary);
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .p-about-flow__list::before {
    left: 2rem;
    transform: translateX(0);
  }
}
.p-about-flow__list::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 0.1rem;
  height: 6.6rem;
  content: "";
  background-image: linear-gradient(to bottom, var(--color-tertiary), color-mix(in srgb, var(--color-tertiary) 0%, transparent));
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .p-about-flow__list::after {
    left: 2rem;
    transform: translateX(0);
  }
}

.p-about-flow__item {
  position: relative;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item {
    gap: 2.7rem;
  }
}
.p-about-flow__item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-tertiary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
  }
}
.p-about-flow__item:nth-of-type(odd) .p-about-flow__item-content {
  padding-left: 3.1rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(odd) .p-about-flow__item-content {
    padding-inline: 2rem 0;
  }
}
.p-about-flow__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(even) {
    flex-direction: column;
  }
}
.p-about-flow__item:nth-of-type(even) .p-about-flow__item-img {
  padding-left: 7rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(even) .p-about-flow__item-img {
    padding-left: 0;
  }
}
.p-about-flow__item:nth-of-type(even) .p-about-flow__item-figure {
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item:nth-of-type(even) .p-about-flow__item-figure {
    max-width: 20rem;
  }
}
.p-about-flow__item:nth-of-type(even) .p-about-flow__item-content {
  padding-right: 3rem;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(even) .p-about-flow__item-content {
    padding-inline: 2rem 0;
    text-align: left;
  }
}
.p-about-flow__item:nth-of-type(even) .p-about-flow__item-num {
  top: -31%;
  right: -18%;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item:nth-of-type(even) .p-about-flow__item-num {
    top: -28%;
    right: -27%;
  }
}
.p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-img {
  padding-left: 9.2rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-img {
    padding-left: 0;
  }
}
.p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-figure {
  max-width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-figure {
    max-width: 20rem;
  }
}
.p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-num {
  top: -38%;
  right: -16%;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item:nth-of-type(4n + 1) .p-about-flow__item-num {
    right: -27%;
  }
}
.p-about-flow__item:nth-of-type(4n + 3) .p-about-flow__item-img {
  padding-left: 12.3rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:nth-of-type(4n + 3) .p-about-flow__item-img {
    padding-left: 0;
  }
}
.p-about-flow__item:nth-of-type(4n + 3) .p-about-flow__item-figure {
  max-width: 28.3rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item:nth-of-type(4n + 3) .p-about-flow__item-figure {
    max-width: 14.1rem;
  }
}
.p-about-flow__item[data-flow="02"] {
  margin-top: 12.1rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="02"] {
    margin-top: 7.4rem;
  }
}
.p-about-flow__item[data-flow="03"] {
  margin-top: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item[data-flow="03"] {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="03"] {
    margin-top: 4.2rem;
  }
}
.p-about-flow__item[data-flow="03"] .p-about-flow__item-num {
  top: 37%;
  right: -45%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="03"] .p-about-flow__item-num {
    right: -62%;
  }
}
.p-about-flow__item[data-flow="04"] {
  margin-top: 6.3rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item[data-flow="04"] {
    margin-top: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="04"] {
    margin-top: 7.6rem;
  }
}
.p-about-flow__item[data-flow="05"] {
  margin-top: 8.1rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item[data-flow="05"] {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="05"] {
    margin-top: 6rem;
  }
}
.p-about-flow__item[data-flow="06"] {
  margin-top: 10.8rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item[data-flow="06"] {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="06"] {
    margin-top: 8.8rem;
  }
}
.p-about-flow__item[data-flow="07"] {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="07"] {
    margin-top: 3.8rem;
  }
}
.p-about-flow__item[data-flow="07"] .p-about-flow__item-num {
  top: -13%;
  right: -52%;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item[data-flow="07"] .p-about-flow__item-num {
    right: -69%;
  }
}
.p-about-flow__item:first-of-type {
  align-items: flex-start;
}
.p-about-flow__item:first-of-type::after {
  top: 0;
  left: 50%;
  width: 3rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:first-of-type::after {
    left: 0;
    width: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item:last-of-type {
    padding-bottom: 3rem;
  }
}

.p-about-flow__item-img {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item-img {
    width: 100%;
  }
}

.p-about-flow__item-figure {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item-figure {
    margin-inline: auto;
  }
}

.p-about-flow__item-picture {
  overflow: hidden;
}

.p-about-flow__item-num {
  position: absolute;
  z-index: -1;
  display: inline-block;
  color: var(--color-white);
  font-size: 18rem;
  line-height: 0.7555555556;
  letter-spacing: -0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-num {
    font-size: 10.5rem;
    line-height: 0.4761904762;
    letter-spacing: 0em;
  }
}

.p-about-flow__item-content {
  width: 50%;
  margin-top: -0.8rem;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__item-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-content {
    margin-top: 0;
  }
}

.p-about-flow__item-title {
  color: var(--color-tertiary);
  font-size: 4.8rem;
  line-height: 1.0416666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-title {
    font-size: 3.2rem;
  }
}
.p-about-flow__item-title span {
  font-size: 2.4rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-title span {
    font-size: 1.5rem;
  }
}

.p-about-flow__item-menu {
  margin-top: 1.7rem;
  font-size: 2.4rem;
  line-height: 1.1666666667;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-menu {
    margin-top: 1.3rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    letter-spacing: 0em;
  }
}
.p-about-flow__item-menu span {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-menu span {
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.p-about-flow__item-text {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-text {
    margin-top: 1.1rem;
  }
}

.p-about-flow__item-caution {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.155em;
}
@media screen and (max-width: 767px) {
  .p-about-flow__item-caution {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.p-about-flow__end {
  position: relative;
  margin-top: 2rem;
}
.p-about-flow__end::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 3rem;
  aspect-ratio: 1;
  content: "";
  background-color: var(--color-tertiary);
  border-radius: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .p-about-flow__end::after {
    top: 1.2rem;
    left: 1.6rem;
    width: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-flow__end::after {
    top: 0.5rem;
  }
}

.p-about-flow__end-content {
  padding-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__end-content {
    padding-inline: 3.2rem 1.6rem;
    padding-top: 0;
    text-align: left;
  }
}
.p-about-flow__end-content .p-about-flow__item-text {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-about-flow__end-content .p-about-flow__item-text {
    text-align: justify;
  }
}
.p-about-flow__end-content .p-about-flow__item-menu {
  margin-top: 0;
}

/* ----------------------------------------------------
access
---------------------------------------------------- */
/* ---------- map ----------*/
.p-access-map__wrap {
  max-width: 80rem;
  margin-inline: auto;
}

/* ----------------------------------------------------
amenity
---------------------------------------------------- */
.p-amenity-summary__col + .p-amenity-summary__col {
  margin-top: 11.6rem;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__col + .p-amenity-summary__col {
    margin-top: 5.6rem;
  }
}

.p-amenity-summary__item + .p-amenity-summary__item {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__item + .p-amenity-summary__item {
    margin-top: 3.2rem;
  }
}

.p-amenity-summary__detail {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__detail {
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
  }
}

.p-amenity-summary__thumbnail {
  width: 100%;
  max-width: 32rem;
  background-color: #f5f0f0;
}
.p-amenity-summary__thumbnail img {
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__thumbnail img {
    aspect-ratio: auto;
  }
}

.p-amenity-summary__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-amenity-summary__editor {
    text-align: center;
  }
}
.p-amenity-summary__editor > *:first-child {
  margin-top: 0;
}
.p-amenity-summary__editor h2 {
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__editor h2 {
    margin-top: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0em;
  }
}
.p-amenity-summary__editor h2 strong {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__editor h2 strong {
    letter-spacing: 0;
  }
}
.p-amenity-summary__editor p {
  font-family: var(--family-sans);
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-amenity-summary__editor p {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}

.p-amenity-summary__comment {
  border: 0.1rem solid var(--color-text);
}

/* ---------- breadcrumbs ----------*/
.p-breadcrumbs {
  padding-block: 1rem;
  position: relative;
  z-index: 2;
}
.p-breadcrumbs .aioseo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-breadcrumbs .aioseo-breadcrumb {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 500;
  color: var(--color-gray);
}
.p-breadcrumbs .aioseo-breadcrumb a {
  color: var(--color-black);
}
/* ----------------------------------------------------
contact
---------------------------------------------------- */
.p-contact-form__body {
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
}

/* ----------------------------------------------------
facility
---------------------------------------------------- */
/* ---------- sauna ----------*/
.p-facility-sauna__col + .p-facility-sauna__col {
  margin-top: 15.6rem;
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__col + .p-facility-sauna__col {
    margin-top: 7.2rem;
  }
}

.p-facility-sauna__head {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__head {
    flex-direction: column;
  }
}

.p-facility-sauna__title {
  width: 100%;
  max-width: 30.6rem;
  padding-right: 0.4rem;
  border-right: 0.1rem solid var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__title {
    max-width: none;
    border-right: none;
    border-bottom: 0.1rem solid var(--color-text);
    padding-right: 0;
    padding-bottom: 3.8rem;
  }
}

.p-facility-sauna__ja {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__ja {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

.p-facility-sauna__text {
  padding-left: 6.4rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__text {
    padding-top: 3.6rem;
    padding-left: 0;
  }
}

.p-facility-sauna__list {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-facility-sauna__list {
    gap: 2rem;
    width: 100vw;
    margin-left: calc(var(--container-spacing) * -1);
  }
}

.p-facility-sauna__item {
  flex: 1;
}

/* ---------- room ----------*/
.p-facility-room__col + .p-facility-room__col {
  margin-top: 11.6rem;
}
@media screen and (max-width: 767px) {
  .p-facility-room__col + .p-facility-room__col {
    margin-top: 5.6rem;
  }
}

/* ---------- suite ----------*/
.p-facility-suite__detail {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-facility-suite__detail {
    flex-direction: column;
    gap: 2.8rem;
  }
}

.p-facility-suite__img {
  width: 100%;
  max-width: 32rem;
}

.p-facility-suite__content {
  flex: 1;
}

.p-facility-suite___list li {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-facility-suite___list li {
    line-height: 1.6428571429;
    letter-spacing: 0;
  }
}

/* ----------------------------------------------------
faq
---------------------------------------------------- */
.p-faq-main__wrap {
  max-width: 85.2rem;
  margin-inline: auto;
}

/* ---------- footer ---------- */
.l-footer {
  background-color: var(--color-text);
}

.l-footer__container {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    padding-block: 4.8rem 11.2rem;
  }
}

.l-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5.4rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    align-items: flex-end;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 2rem;
  }
}

.l-footer__logo {
  width: 23.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 100%;
    grid-area: 2/1/3/2;
  }
}
.l-footer__logo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 16.5rem;
  }
}

.l-footer__nav {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
    grid-area: 1/1/2/3;
    padding-inline: 2rem;
  }
}

.l-footer__list {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  color: var(--color-beige);
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.l-footer__item a {
  font-size: 1.4rem;
  font-family: var(--family-sans);
}
@media screen and (max-width: 767px) {
  .l-footer__item a {
    white-space: nowrap;
    letter-spacing: 0;
  }
}

.l-footer__copy {
  width: max-content;
  color: var(--color-beige);
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--family-accent);
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    grid-area: 2/2/3/3;
    margin-inline: auto 0;
  }
}

/* ---------- header ---------- */
.p-header.p-header-top .p-header__logo {
  position: relative;
}
.p-header.p-header-top .p-header__logo::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo_wh.png) center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--duration);
}
.p-header.p-header-top .p-header__logo img {
  opacity: 0;
  transition: opacity var(--duration);
}
.p-header.p-header-top .p-header__btn a {
  background-color: transparent;
  border-color: var(--color-beige);
}
.p-header.p-header-top .p-header__hamburger span {
  background-color: var(--color-beige);
}
.p-header:has(.p-header__hamburger.is-open) .p-header__logo::before, .p-header.is-active .p-header__logo::before {
  opacity: 0;
}
.p-header:has(.p-header__hamburger.is-open) .p-header__logo img, .p-header.is-active .p-header__logo img {
  opacity: 1;
}
.p-header:has(.p-header__hamburger.is-open) .p-header__btn a, .p-header.is-active .p-header__btn a {
  background-color: var(--color-text);
  border-color: var(--color-text);
}
.p-header:has(.p-header__hamburger.is-open) .p-header__hamburger span, .p-header.is-active .p-header__hamburger span {
  background-color: var(--color-text);
}

.p-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-header__container {
    gap: 2.4rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 23.1rem;
  height: inherit;
  position: relative;
  z-index: 901;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 15.5rem;
  }
}
.p-header__logo a {
  display: flex;
  height: inherit;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    filter: drop-shadow(0 0 5.1rem rgba(47, 67, 50, 0.49));
  }
}

.p-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 901;
}

.p-header__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 22.6rem;
  height: 6.4rem;
  background-color: var(--color-text);
  color: var(--color-beige);
  transition: background-color var(--duration), border var(--duration), border-color var(--duration);
  border: 0.1rem solid var(--color-text);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__btn a {
    width: 8rem;
    height: 5.4rem;
  }
}
.p-header__btn a::before {
  content: "";
  display: block;
  width: calc(100% + 0.2rem);
  height: calc(100% + 0.2rem);
  background-image: linear-gradient(to right, var(--color-gradation-primary));
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  opacity: 0;
  transition: opacity var(--duration);
}
.p-header__btn a b {
  font-size: 1.8rem;
  font-family: var(--family-accent);
  font-weight: 400;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-header__btn a b {
    font-size: 1.4rem;
  }
}
.p-header__btn a p {
  font-family: var(--family-serif);
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-header__btn a p {
    font-size: 1.2rem;
  }
}
@media (any-hover: hover) {
  .p-header__btn a:hover {
    opacity: 1;
  }
  .p-header__btn a:hover::before {
    opacity: 1;
  }
}

.p-header__hamburger {
  width: 4.8rem;
  aspect-ratio: 1;
  position: relative;
  z-index: 999;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 4.1rem;
  }
}
.p-header__hamburger span {
  width: 100%;
  position: relative;
  left: 50%;
  display: block;
  height: 0.1rem;
  background-color: var(--color-text);
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67), background-color var(--duration);
  translate: -50% 0;
}
.p-header__hamburger span:nth-of-type(1) {
  top: -1.2rem;
}
.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 1.2rem;
}
.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.2rem;
  rotate: 45deg;
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.2rem;
  rotate: -45deg;
}

.p-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-white);
  padding-top: 16rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding-top: 7.4rem;
  }
}

.p-header__drawer-container {
  padding-block: 3.6rem 4rem;
  overflow-y: scroll;
  scrollbar-width: none;
  height: calc(100dvh - 16rem);
}
@media screen and (max-width: 767px) {
  .p-header__drawer-container {
    height: calc(100dvh - 7.4rem);
  }
}
.p-header__drawer-container::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer-nav {
    flex-direction: column;
    gap: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawer-nav {
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__drawer-item {
    border-bottom: 0.1rem solid var(--color-secondary);
  }
}
.p-header__drawer-item + .p-header__drawer-item {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item + .p-header__drawer-item {
    margin-top: 0;
  }
}

.p-header__drawer-item > a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item > a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    letter-spacing: 0.025em;
    padding-block: 1.2rem;
  }
}
.p-header__drawer-item > a span {
  font-size: 4.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: var(--family-english);
  display: inline-block;
  margin-right: 1.4rem;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item > a span {
    font-size: 2rem;
    line-height: 1.2;
    margin-right: 0;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-item > a:hover {
    opacity: 1;
  }
  .p-header__drawer-item > a:hover span {
    color: var(--color-primary);
  }
}

.p-header__drawer-other {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-other {
    margin-top: 4.6rem;
  }
}

.p-header__drawer-other-item + .p-header__drawer-other-item {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-other-item + .p-header__drawer-other-item {
    margin-top: 2rem;
  }
}

.p-header__drawer-other-item > a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-other-item > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    line-height: 1.3333333333;
    letter-spacing: 0.025em;
  }
}
.p-header__drawer-other-item > a span {
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: var(--family-english);
  display: inline-block;
  margin-right: 1.4rem;
  transition: color var(--duration);
}
@media screen and (max-width: 767px) {
  .p-header__drawer-other-item > a span {
    margin-right: 0;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
@media (any-hover: hover) {
  .p-header__drawer-other-item > a:hover {
    opacity: 1;
  }
  .p-header__drawer-other-item > a:hover span {
    color: var(--color-primary);
  }
}

/* ----------------------------------------------------
post
---------------------------------------------------- */
/* ---------- pickup ----------*/
.p-post-pickup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-post-pickup__list {
    gap: 3.2rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-post-pickup__list .p-post-pickup__item {
  color: var(--color-white);
}
.p-post-pickup__list .p-post-pickup__item .c-date {
  color: var(--color-white);
}

/* ---------- news ----------*/
.p-post-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-post-news__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}

/* ---------- column ----------*/
.p-post-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-post-column__list {
    gap: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- single ----------*/
.p-post-single__container {
  padding-block: 23.4rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-post-single__container {
    padding-block: 12rem 6rem;
  }
}

.p-post-single__wrap {
  max-width: 80rem;
  margin-inline: auto;
}

.p-post-single__header {
  text-align: center;
}

.p-post-single__title {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.p-post-single__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.p-post-single__prev,
.p-post-single__next {
  min-width: 10rem;
}
.p-post-single__prev a,
.p-post-single__next a {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  font-family: var(--family-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.p-post-single__prev a::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  min-width: 2.6rem;
  aspect-ratio: 26/5;
  background: var(--color-text);
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: relative;
  z-index: 2;
  transform: scaleX(-1);
  transition: background var(--duration);
}

.p-post-single__next {
  text-align: right;
}
.p-post-single__next a::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  min-width: 2.6rem;
  aspect-ratio: 26/5;
  background: var(--color-text);
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: relative;
  z-index: 2;
  transition: background var(--duration);
}

/* ----------------------------------------------------
price
---------------------------------------------------- */
.p-price-selection__body {
  position: relative;
}

.p-price-selection__cap {
  display: flex;
  justify-content: center;
  width: 12rem;
  aspect-ratio: 1;
  clip-path: var(--clip-triangle-top-right);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-price-selection__cap {
    display: none;
  }
}

.p-price-selection__detail {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-selection__detail {
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
  }
}

.p-price-selection__img {
  width: 100%;
  max-width: 32rem;
}

.p-price-selection__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-price-selection__content {
    text-align: center;
  }
}

.p-price-selection__title {
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 400;
}

.p-price-selection__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-price-selection__menu {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-price-selection__menu {
    align-items: center;
  }
}

.p-price-selection__col {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-price-selection__col {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.p-price-selection__col + .p-price-selection__col {
  padding-left: 4rem;
  margin-left: 4rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-price-selection__col + .p-price-selection__col {
    padding-left: 0;
    margin-left: 0;
    padding-top: 2rem;
    margin-top: 2rem;
  }
}
.p-price-selection__col + .p-price-selection__col::before {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 3.2rem;
  background-color: var(--color-text);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .p-price-selection__col + .p-price-selection__col::before {
    width: 2rem;
    height: 0.1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-price-selection__detail {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.13em;
  font-weight: 400;
}

/* ---------- detail ----------*/
.p-price-detail__item {
  display: flex;
  gap: 4.2rem;
  border-bottom: 0.1rem solid var(--color-text);
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-detail__item {
    padding-bottom: 4rem;
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
  }
}
.p-price-detail__item + .p-price-detail__item {
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-detail__item + .p-price-detail__item {
    padding-top: 4rem;
  }
}

.p-price-detail__item-img {
  width: 100%;
  max-width: 37.2rem;
}

.p-price-detail__item-content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-price-detail__item-content {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-price-detail__item-content .u-text-en-2 {
    letter-spacing: 0;
  }
}

.p-price-detail__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-price-detail__menu {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-price-detail__menu {
    align-items: center;
  }
}

.p-price-detail__price + .p-price-detail__price {
  padding-left: 6rem;
  margin-left: 6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-price-detail__price + .p-price-detail__price {
    padding-left: 0;
    margin-left: 0;
    padding-top: 2rem;
    margin-top: 2rem;
  }
}
.p-price-detail__price + .p-price-detail__price::before {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 8.2rem;
  background-color: var(--color-text);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .p-price-detail__price + .p-price-detail__price::before {
    width: 2rem;
    height: 0.1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ---------- program ----------*/
.p-price-program__anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 4.2rem;
}
@media screen and (max-width: 1023px) {
  .p-price-program__anchor {
    max-width: 72rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-price-program__anchor {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-price-program__item {
  width: calc(33.3333333333% - 2.8rem);
  height: 100%;
  position: relative;
  color: var(--color-beige);
}
@media screen and (max-width: 1023px) {
  .p-price-program__item {
    width: 100%;
  }
}

.p-price-program__item-link {
  width: 100%;
  min-height: 20.6rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__item-link {
    min-height: 12.4rem;
  }
}
.p-price-program__item-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  aspect-ratio: 1;
  border-bottom: 0.1rem solid var(--color-beige);
  border-right: 0.1rem solid var(--color-beige);
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}

.p-price-program__item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-price-program__item-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.p-price-program__item-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 5.6rem 4rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-price-program__item-content {
    min-height: 16.1rem;
    padding: 2.8rem 2rem 4.8rem;
    gap: 0.8rem;
  }
}
.p-price-program__item-content::before, .p-price-program__item-content::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  aspect-ratio: 1;
  border-top: 0.1rem solid var(--color-beige);
  border-right: 0.1rem solid var(--color-beige);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-price-program__item-content::before, .p-price-program__item-content::after {
    width: 1.5rem;
  }
}
.p-price-program__item-content::before {
  top: 0.4rem;
  right: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__item-content::before {
    top: 0.3rem;
    right: 0.3rem;
  }
}
.p-price-program__item-content::after {
  bottom: 0.4rem;
  left: 0.4rem;
  scale: -1 -1;
}
@media screen and (max-width: 767px) {
  .p-price-program__item-content::after {
    bottom: 0.3rem;
    left: 0.3rem;
  }
}

.p-price-program__detail {
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__detail {
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
  }
}

.p-price-program__img {
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
}

.p-price-program__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-price-program__content {
    text-align: center;
  }
}

.p-price-program__add {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__add {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
}

.p-price-program__plan-item {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__plan-item {
    gap: 2.8rem;
    padding: 1.6rem 2rem 1.6rem 2rem;
  }
}
.p-price-program__plan-item + .p-price-program__plan-item {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__plan-item + .p-price-program__plan-item {
    margin-top: 1.2rem;
  }
}
.p-price-program__plan-item b {
  display: inline-block;
}

.p-price-program__plan-en {
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-price-program__plan-en {
    font-size: 5rem;
  }
}

.p-price-program__benefits {
  border: 0.1rem solid var(--color-text);
  padding: 3.2rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-price-program__benefits {
    padding: 2.8rem 2rem;
  }
}

/* ----------------------------------------------------
sauna
---------------------------------------------------- */
/* ---------- service ----------*/
.p-sauna-service__container {
  padding-block: 10.8rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__container {
    padding-block: 5.2rem 6rem;
  }
}

.p-sauna-service__wrap {
  padding: 8rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__wrap {
    padding-block: 2rem 2.4rem;
  }
}

.p-sauna-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .p-sauna-service__list {
    max-width: 72rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-sauna-service__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-sauna-service__item {
  width: calc(33.3333333333% - 2.6666666667rem);
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-sauna-service__item {
    width: 100%;
  }
}
.p-sauna-service__item::before, .p-sauna-service__item::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  aspect-ratio: 1;
  border-top: 0.1rem solid var(--color-secondary);
  border-right: 0.1rem solid var(--color-secondary);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__item::before, .p-sauna-service__item::after {
    width: 1.5rem;
  }
}
.p-sauna-service__item::before {
  top: 0.4rem;
  right: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__item::before {
    top: 0.3rem;
    right: 0.3rem;
  }
}
.p-sauna-service__item::after {
  bottom: 0.4rem;
  left: 0.4rem;
  scale: -1 -1;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__item::after {
    bottom: 0.3rem;
    left: 0.3rem;
  }
}
.p-sauna-service__item.p-sauna-service__item--border {
  border: 0.1rem solid var(--color-text);
}

.p-sauna-service__item-link {
  height: 100%;
  min-height: 16.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.8rem 2rem 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__item-link {
    padding: 1.6rem 1.2rem 4.2rem;
    min-height: 12.4rem;
    gap: 0.8rem;
  }
}
.p-sauna-service__item-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  aspect-ratio: 1;
  border-bottom: 0.1rem solid var(--color-text);
  border-right: 0.1rem solid var(--color-text);
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  translate: -50% 0;
  rotate: 45deg;
}

.p-sauna-service__food {
  background-color: var(--color-beige);
  margin-left: 4.8rem;
  flex: 1;
  margin-bottom: -8rem;
  padding-inline: 4rem 8rem;
  margin-right: -8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6rem;
}
@media screen and (max-width: 1023px) {
  .p-sauna-service__food {
    background-color: transparent;
    margin-inline: 0;
    justify-content: center;
    padding-inline: 0;
    margin-bottom: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-sauna-service__food {
    gap: 1.6rem;
  }
}

.p-sauna-service__plus {
  display: block;
  width: 6.4rem;
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sauna-service__plus {
    width: 3.2rem;
  }
}
.p-sauna-service__plus::before, .p-sauna-service__plus::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-text);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.p-sauna-service__plus::after {
  rotate: 90deg;
}

/* ---------- detail ----------*/
.p-sauna-detail__container {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__container {
    padding-block: 6rem;
  }
}

.p-sauna-detail__wrap {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.p-sauna-detail__col {
  padding: 8rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__col {
    padding-block: 3rem 4rem;
  }
}

.p-sauna-detail__top {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__top {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-sauna-detail__content {
  margin-top: -1.2rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__content {
    margin-top: 0;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-sauna-detail__head {
    order: 0;
  }
}

.p-sauna-detail__title {
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__title {
    font-size: 2.7rem;
    line-height: 1.1481481481;
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 767px) {
  .p-sauna-detail__inner {
    order: 2;
  }
}

.p-sauna-detail__box {
  border: 0.1rem solid var(--color-text);
  padding: 2.6rem 2.4rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__box {
    order: 2;
    padding: 1.5rem 2rem;
  }
}

.p-sauna-detail__img {
  overflow: hidden;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__img {
    order: 1;
  }
}

.p-sauna-detail__desc + .p-sauna-detail__desc {
  margin-top: 5.6rem;
  padding-top: 5.6rem;
  border-top: 0.1rem dashed var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__desc + .p-sauna-detail__desc {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
  }
}
.p-sauna-detail__desc:nth-of-type(2) {
  border-top: 0.1rem solid var(--color-text);
}

.p-sauna-detail__list {
  display: flex;
  justify-content: center;
  gap: 4.2rem;
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__list {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-sauna-detail__item {
  width: calc(33.3333333333% - 2.8rem);
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__item {
    max-width: 64rem;
    margin-inline: auto;
    width: 100%;
  }
}
.p-sauna-detail__item[data-colspan="2"] {
  width: calc((33.3333333333% - 2.8rem) * 2 + 4.2rem);
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__item[data-colspan="2"] {
    width: 100%;
  }
}
.p-sauna-detail__item[data-colspan="3"] {
  width: 100%;
}

.p-sauna-detail__menu {
  flex: 1;
}

.p-sauna-detail__menu-wrap {
  display: flex;
  gap: 4.2rem;
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__menu-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-sauna-detail__menu-head {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__menu-head {
    line-height: 2.5714285714;
  }
}

.p-sauna-detail__time {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-sauna-detail__time {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__time {
    padding-bottom: 1.6rem;
  }
}

.p-sauna-detail__time-text {
  font-size: 2.4rem;
  line-height: 1.1666666667;
  font-weight: 400;
}
.p-sauna-detail__time-text b {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__time-text b {
    font-size: 3.2rem;
  }
}

.p-sauna-detail__price {
  background-color: var(--color-white);
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__price {
    padding: 2.8rem 2rem;
  }
}

.p-sauna-detail__price-title {
  text-align: center;
}

.p-sauna-detail__price-cap {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__price-cap {
    font-weight: 500;
    margin-top: 0.4rem;
  }
}

.p-sauna-detail__price-cost {
  margin-top: 2rem;
  width: 100%;
  max-width: 23.6rem;
  margin-inline: auto;
  background-color: var(--color-beige);
  color: var(--color-text);
  text-align: center;
  padding: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__price-cost {
    margin-top: 1.6rem;
    max-width: 20rem;
    padding-block: 0.1rem 0;
  }
}

.p-sauna-detail__price-text {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__price-text {
    margin-top: 1.6rem;
  }
}

.p-sauna-detail__recommend {
  border: 0.1rem solid var(--color-text);
  height: 100%;
  padding: 4.4rem 3.2rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__recommend {
    padding: 2.8rem 1.6rem;
  }
}

.p-sauna-detail__recommend-list {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__recommend-list {
    margin-top: 2rem;
  }
}
.p-sauna-detail__recommend-list li {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__recommend-list li {
    letter-spacing: 0;
  }
}
.p-sauna-detail__recommend-list li + li {
  margin-top: 1rem;
}

.p-sauna-detail__btn {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__btn {
    margin-top: 4rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.p-sauna-detail__banner {
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-sauna-detail__banner {
    max-width: 40rem;
  }
}
.p-sauna-detail__banner a {
  display: block;
}

/* ----------------------------------------------------
staff
---------------------------------------------------- */
/* ---------- summary ----------*/
.p-staff-summary__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-staff-summary__list {
    gap: 2rem;
  }
}

.p-staff-summary__link {
  display: block;
  position: relative;
}

.p-staff-summary__bg {
  min-height: 20.2rem;
}

.p-staff-summary__name {
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.055em;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.1rem 1.6rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-text);
}
.p-staff-summary__name::after {
  content: "";
  display: block;
  width: 1.1rem;
  aspect-ratio: 11/6;
  background: var(--color-text);
  mask-image: url(../img/common/icon_anchor.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
}

/* ---------- detail ----------*/
.p-staff-detail__list {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.p-staff-detail__item + .p-staff-detail__item {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__item + .p-staff-detail__item {
    margin-top: 6rem;
  }
}

.p-staff-detail__detail {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__detail {
    flex-direction: column;
    align-items: center;
    gap: 2.8rem;
  }
}

.p-staff-detail__thumbnail {
  width: 100%;
  max-width: 32rem;
}
.p-staff-detail__thumbnail img {
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__thumbnail img {
    aspect-ratio: auto;
  }
}

.p-staff-detail__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__content {
    width: 100%;
  }
}

.p-staff-detail__editor > *:first-child {
  margin-top: 0;
}
.p-staff-detail__editor h2 {
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__editor h2 {
    margin-top: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0em;
  }
}
.p-staff-detail__editor h2 strong {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__editor h2 strong {
    letter-spacing: 0;
  }
}
.p-staff-detail__editor p {
  font-family: var(--family-sans);
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__editor p {
    margin-top: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}

.p-staff-detail__career {
  padding: 3.6rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-staff-detail__career {
    padding: 2.8rem 2rem;
  }
}

/* ----------------------------------------------------
thanks
---------------------------------------------------- */
/* ----------------------------------------------------
top
---------------------------------------------------- */
/* ---------- fv ----------*/
.p-top-fv {
  height: 100vh;
  min-height: 60rem;
  position: relative;
  z-index: 1;
}

.p-top-fv__bg {
  height: 100%;
  min-height: inherit;
  z-index: -1;
}
.p-top-fv__bg img,
.p-top-fv__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-fv__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-top-fv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  color: var(--color-bg);
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.255em;
  font-weight: 400;
  text-shadow: 0 0 13.6rem rgba(35, 49, 37, 0.63);
  filter: drop-shadow(0 0 2.4rem rgba(35, 49, 37, 0.8));
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    font-size: 2.6rem;
    gap: 2.4rem;
    letter-spacing: 0.15em;
  }
}
.p-top-fv__title span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.315em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-fv__title span {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
}
.p-top-fv__title b {
  display: block;
  font-size: 4.8rem;
  line-height: 0.7291666667;
  letter-spacing: 0.095em;
  font-weight: 400;
  font-family: var(--family-english);
}
@media screen and (max-width: 767px) {
  .p-top-fv__title b {
    font-size: 4rem;
  }
}

/* ---------- about ----------*/
.p-top-about {
  padding-block: 8rem;
}

.p-top-about__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-about__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 2rem;
  }
}

.p-top-about__bg {
  display: flex;
  align-items: center;
  gap: 2.9282576867vw;
}
@media screen and (max-width: 1023px) {
  .p-top-about__bg {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg {
    gap: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg:nth-child(1 of .p-top-about__bg) {
    grid-area: 2/1/3/2;
    align-items: end;
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg:nth-child(2 of .p-top-about__bg) {
    margin-top: 5.8rem;
    grid-area: 2/2/3/3;
    align-items: start;
  }
}

.p-top-about__img {
  overflow: hidden;
  width: 17.5695461201vw;
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img.p-top-about__img--sm {
    width: 41.8666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__container {
    grid-area: 1/1/2/3;
  }
}

.p-top-about__title {
  width: 100%;
  min-width: 25rem;
  white-space: nowrap;
  max-width: max-content;
  font-size: 1.6rem;
  line-height: 2.625;
  letter-spacing: 0.335em;
  font-weight: 500;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-about__title {
    line-height: 2.5;
  }
}

/* ---------- intro ----------*/
.p-top-intro {
  overflow: hidden;
}

.p-top-intro__wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-intro__wrap {
    flex-direction: column;
  }
}

.p-top-intro__head {
  width: 35.3587115666vw;
  display: flex;
  align-items: center;
  margin-left: calc(50% - 50vw);
  padding-block: 2rem;
  padding-inline: clamp(var(--container-spacing), 50vw - 50%, (100vw - 1040px) / 2 + var(--container-spacing)) 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-intro__head {
    width: 100vw;
    margin-left: calc(var(--container-spacing) * -1);
    padding-block: 5.6rem;
  }
}

.p-top-intro__content {
  width: 64.6412884334vw;
  margin-right: calc(50% - 50vw);
  padding-block: 7.8rem 7.6rem;
  padding-inline: 8rem clamp(var(--container-spacing), 50vw - 50%, (100vw - 1040px) / 2 + var(--container-spacing));
  background-color: var(--color-secondary);
}
@media screen and (max-width: 1023px) {
  .p-top-intro__content {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__content {
    width: 100vw;
    margin-left: calc(var(--container-spacing) * -1);
    padding-block: 5.2rem 6rem;
    padding-inline: 4rem;
  }
}

/* ---------- service ----------*/
.p-top-service__container {
  padding-top: 7.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__container {
    padding-top: 5.6rem;
  }
}

.p-top-service__wrap {
  margin-top: 7rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-top-service__wrap {
    margin-top: 4.6rem;
    flex-direction: column;
  }
}

.p-top-service__col {
  flex: 1 0 50%;
  height: 63rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-top-service__col {
    height: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__col {
    flex: auto;
    height: 36rem;
  }
}
@media (any-hover: hover) {
  .p-top-service__col:hover .p-top-service__btn::after {
    transform: translateX(0.4rem);
  }
}

.p-top-service__bg {
  width: 100%;
  overflow: hidden;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-service__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-service__content {
  text-align: center;
  color: var(--color-beige);
  position: relative;
  z-index: 2;
}

.p-top-service__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 2.4rem;
  font-family: var(--family-english);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn {
    gap: 0.8rem;
  }
}
.p-top-service__btn::after {
  content: "";
  display: inline-block;
  width: 2.6rem;
  aspect-ratio: 26/5;
  background: currentColor;
  mask-image: url(../img/common/icon_arrow.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: transform var(--duration);
}

.p-top-service__text {
  margin-top: 2.8rem;
  font-size: 1.4rem;
  line-height: 2.2857142857;
  letter-spacing: 0.13em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-service__text {
    margin-top: 3.2rem;
    line-height: 2;
  }
}

/* ---------- space ----------*/
.p-top-space__container {
  padding-block: 14.2rem 14.9rem;
}
@media screen and (max-width: 767px) {
  .p-top-space__container {
    padding-block: 5.6rem;
  }
}

.p-top-space__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-space__list {
    margin-top: 3.1rem;
    gap: 3.6rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-top-space__item-link {
  display: block;
}
@media (any-hover: hover) {
  .p-top-space__item-link:hover .p-top-space__item-img img {
    transform: scale(1.05);
  }
  .p-top-space__item-link:hover .c-btn-link::after {
    transform: translateX(0.4rem);
  }
}

.p-top-space__item-img {
  overflow: hidden;
}
.p-top-space__item-img img {
  height: 53rem;
  object-fit: cover;
  transition: transform var(--duration);
}
@media screen and (max-width: 1023px) {
  .p-top-space__item-img img {
    height: 36rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-space__item-img img {
    height: auto;
    aspect-ratio: 355/139;
  }
}

.p-top-space__item-content {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-space__item-content {
    margin-top: 2.2rem;
  }
}

.p-top-space__item-text {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.255em;
}
@media screen and (max-width: 767px) {
  .p-top-space__item-text {
    margin-top: 0.8rem;
    letter-spacing: 0.13em;
  }
}

/* ---------- membership ----------*/
.p-top-membership {
  background: url(../img/top/price_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-membership {
    background: url(../img/top/price_bg_sp.webp) no-repeat center/cover;
  }
}

.p-top-membership__container {
  padding-block: 16rem;
}
@media screen and (max-width: 767px) {
  .p-top-membership__container {
    padding-block: 5.6rem 6rem;
  }
}

.p-top-membership__wrap {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-membership__wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 4.6rem;
  }
}

.p-top-membership__col {
  width: 100%;
  height: 18.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-block: 1.6rem;
  padding-inline: 8rem 4rem;
}
@media screen and (max-width: 1023px) {
  .p-top-membership__col {
    height: 21.2rem;
    padding-inline: 2rem;
    justify-content: flex-end;
  }
}
@media (any-hover: hover) {
  .p-top-membership__col:hover .c-btn-link::after {
    transform: translateX(0.4rem);
  }
}

.p-top-membership__bg {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-membership__bg img,
.p-top-membership__bg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-membership__content {
  color: var(--color-beige);
  position: relative;
  z-index: 2;
}

.p-top-membership__text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.255em;
}
@media screen and (max-width: 767px) {
  .p-top-membership__text {
    margin-top: 1.2rem;
    letter-spacing: 0.13em;
  }
}

/* ---------- news ----------*/
.p-top-news__container {
  padding-top: 15.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__container {
    padding-top: 5.6rem;
  }
}

.p-top-news__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.6rem 12rem;
  padding-bottom: 12rem;
  border-bottom: 0.1rem solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 4.6rem;
    padding-bottom: 5rem;
    gap: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- column ----------*/
.p-top-column__container {
  padding-block: 11.6rem 16rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__container {
    padding-block: 5.2rem 6rem;
  }
}

.p-top-column__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-column__list {
    margin-top: 4.6rem;
    gap: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- message ----------*/
.p-top-message {
  background: url(../img/top/message_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    background: url(../img/top/message_bg_sp.webp) no-repeat center/cover;
  }
}

.p-top-message__container {
  padding-block: 15.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__container {
    padding-block: 5.4rem 6rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-message__content {
    padding-inline: 2rem;
  }
}

.p-top-message__title {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.255em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-message__title {
    font-size: 2.4rem;
    line-height: 1.625;
    letter-spacing: 0.13em;
  }
}

.p-top-message__text {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.255em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-message__text {
    margin-top: 3.4rem;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.09em;
  }
}

.p-top-message__btn {
  margin-top: 3rem;
  width: 100%;
  max-width: 24rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__btn {
    margin-top: 2.4rem;
    max-width: none;
  }
}

/* ---------- animation ---------- */
.js-fv-brightness {
  filter: brightness(0);
}

.js-fv-blur {
  visibility: hidden;
  filter: blur(20px);
  opacity: 0;
  transform: translateY(10px);
}

.js-low-img {
  clip-path: inset(0 100% 0 0);
  filter: brightness(0.3);
  transform: scale(1.05);
}

.js-low-up {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.js-fade,
.js-fade-st-item {
  visibility: hidden;
  opacity: 0;
}

.js-fadeIn-up,
.js-fadeIn-up-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.js-fadeIn-down,
.js-fadeIn-down-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
}

.js-fadeIn-left,
.js-fadeIn-left-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

.js-fadeIn-right,
.js-fadeIn-right-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
}

.js-fade-up,
.js-fade-up-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.js-fade-down,
.js-fade-down-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
}

.js-fade-left,
.js-fade-left-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

.js-fade-right,
.js-fade-right-st-item {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
}

.js-slideIn-up,
.js-slideIn-up-st-item {
  clip-path: inset(100% 0 0 0);
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.js-slideIn-down,
.js-slideIn-down-st-item {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
}

.js-slideIn-left,
.js-slideIn-left-st-item {
  clip-path: inset(0 0 0 100%);
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
}

.js-slideIn-right,
.js-slideIn-right-st-item {
  clip-path: inset(0 100% 0 0);
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

.js-img-blur,
.js-img-blur-st-item {
  filter: brightness(0.3);
  transform: scale(1.05);
}

.js-img-slide {
  clip-path: inset(0 100% 0 0);
  filter: brightness(0.3);
  transform: scale(1.05);
}

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

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

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

.u-align-justify {
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .u-align-left-sp {
    text-align: left;
  }
  .u-align-center-sp {
    text-align: center;
  }
  .u-align-right-sp {
    text-align: right;
  }
  .u-align-justify-sp {
    text-align: justify;
  }
}
/* ---------- background color ---------- */
.u-bgcolor-base {
  background-color: var(--color-bg);
}

.u-bgcolor-primary {
  background-color: var(--color-bg-primary);
}

.u-bgcolor-secondary {
  background-color: var(--color-bg-secondary);
}

.u-bgcolor-tertiary {
  background-color: var(--color-bg-tertiary);
}

.u-bgcolor-accent {
  background-color: var(--color-bg-accent);
}

.u-bgcolor-white {
  background-color: var(--color-white);
}

.u-bgcolor-black {
  background-color: var(--color-black);
}

.u-bgcolor-text {
  background-color: var(--color-text);
}

.u-bgcolor-beige {
  background-color: var(--color-beige);
}

.u-bgcolor-texture-black {
  background: url("../img/common/bg_texture_black.webp") repeat center/4rem 4rem;
}

.u-bgcolor-texture-beige {
  background: url("../img/common/bg_texture_beige.webp") repeat center/4rem 4rem;
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-bottom-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-top-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-bottom-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-top-right: polygon(0 0, 100% 0, 100% 100%);
}

/* ---------- color ---------- */
.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color-accent {
  color: var(--color-accent);
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-color-beige {
  color: var(--color-beige);
}

.u-color-text {
  color: var(--color-text);
}

/* ---------- family ----------*/
.u-family-sans {
  font-family: var(--family-sans);
}

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

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

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

/* ---------- margin ---------- */
.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-my-0 {
  margin-block: 0;
}

.u-mt-4 {
  margin-top: 0.4rem;
}

.u-mb-4 {
  margin-bottom: 0.4rem;
}

.u-my-4 {
  margin-block: 0.4rem;
}

.u-mt-8 {
  margin-top: 0.8rem;
}

.u-mb-8 {
  margin-bottom: 0.8rem;
}

.u-my-8 {
  margin-block: 0.8rem;
}

.u-mt-12 {
  margin-top: 1.2rem;
}

.u-mb-12 {
  margin-bottom: 1.2rem;
}

.u-my-12 {
  margin-block: 1.2rem;
}

.u-mt-16 {
  margin-top: 1.6rem;
}

.u-mb-16 {
  margin-bottom: 1.6rem;
}

.u-my-16 {
  margin-block: 1.6rem;
}

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

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

.u-my-20 {
  margin-block: 2rem;
}

.u-mt-24 {
  margin-top: 2.4rem;
}

.u-mb-24 {
  margin-bottom: 2.4rem;
}

.u-my-24 {
  margin-block: 2.4rem;
}

.u-mt-28 {
  margin-top: 2.8rem;
}

.u-mb-28 {
  margin-bottom: 2.8rem;
}

.u-my-28 {
  margin-block: 2.8rem;
}

.u-mt-32 {
  margin-top: 3.2rem;
}

.u-mb-32 {
  margin-bottom: 3.2rem;
}

.u-my-32 {
  margin-block: 3.2rem;
}

.u-mt-36 {
  margin-top: 3.6rem;
}

.u-mb-36 {
  margin-bottom: 3.6rem;
}

.u-my-36 {
  margin-block: 3.6rem;
}

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

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

.u-my-40 {
  margin-block: 4rem;
}

.u-mt-44 {
  margin-top: 4.4rem;
}

.u-mb-44 {
  margin-bottom: 4.4rem;
}

.u-my-44 {
  margin-block: 4.4rem;
}

.u-mt-48 {
  margin-top: 4.8rem;
}

.u-mb-48 {
  margin-bottom: 4.8rem;
}

.u-my-48 {
  margin-block: 4.8rem;
}

.u-mt-52 {
  margin-top: 5.2rem;
}

.u-mb-52 {
  margin-bottom: 5.2rem;
}

.u-my-52 {
  margin-block: 5.2rem;
}

.u-mt-56 {
  margin-top: 5.6rem;
}

.u-mb-56 {
  margin-bottom: 5.6rem;
}

.u-my-56 {
  margin-block: 5.6rem;
}

.u-mt-60 {
  margin-top: 6rem;
}

.u-mb-60 {
  margin-bottom: 6rem;
}

.u-my-60 {
  margin-block: 6rem;
}

.u-mt-64 {
  margin-top: 6.4rem;
}

.u-mb-64 {
  margin-bottom: 6.4rem;
}

.u-my-64 {
  margin-block: 6.4rem;
}

.u-mt-68 {
  margin-top: 6.8rem;
}

.u-mb-68 {
  margin-bottom: 6.8rem;
}

.u-my-68 {
  margin-block: 6.8rem;
}

.u-mt-72 {
  margin-top: 7.2rem;
}

.u-mb-72 {
  margin-bottom: 7.2rem;
}

.u-my-72 {
  margin-block: 7.2rem;
}

.u-mt-76 {
  margin-top: 7.6rem;
}

.u-mb-76 {
  margin-bottom: 7.6rem;
}

.u-my-76 {
  margin-block: 7.6rem;
}

.u-mt-80 {
  margin-top: 8rem;
}

.u-mb-80 {
  margin-bottom: 8rem;
}

.u-my-80 {
  margin-block: 8rem;
}

.u-mt-84 {
  margin-top: 8.4rem;
}

.u-mb-84 {
  margin-bottom: 8.4rem;
}

.u-my-84 {
  margin-block: 8.4rem;
}

.u-mt-88 {
  margin-top: 8.8rem;
}

.u-mb-88 {
  margin-bottom: 8.8rem;
}

.u-my-88 {
  margin-block: 8.8rem;
}

.u-mt-92 {
  margin-top: 9.2rem;
}

.u-mb-92 {
  margin-bottom: 9.2rem;
}

.u-my-92 {
  margin-block: 9.2rem;
}

.u-mt-96 {
  margin-top: 9.6rem;
}

.u-mb-96 {
  margin-bottom: 9.6rem;
}

.u-my-96 {
  margin-block: 9.6rem;
}

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

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

.u-my-100 {
  margin-block: 10rem;
}

.u-mt-104 {
  margin-top: 10.4rem;
}

.u-mb-104 {
  margin-bottom: 10.4rem;
}

.u-my-104 {
  margin-block: 10.4rem;
}

.u-mt-108 {
  margin-top: 10.8rem;
}

.u-mb-108 {
  margin-bottom: 10.8rem;
}

.u-my-108 {
  margin-block: 10.8rem;
}

.u-mt-112 {
  margin-top: 11.2rem;
}

.u-mb-112 {
  margin-bottom: 11.2rem;
}

.u-my-112 {
  margin-block: 11.2rem;
}

.u-mt-116 {
  margin-top: 11.6rem;
}

.u-mb-116 {
  margin-bottom: 11.6rem;
}

.u-my-116 {
  margin-block: 11.6rem;
}

.u-mt-120 {
  margin-top: 12rem;
}

.u-mb-120 {
  margin-bottom: 12rem;
}

.u-my-120 {
  margin-block: 12rem;
}

.u-mt-124 {
  margin-top: 12.4rem;
}

.u-mb-124 {
  margin-bottom: 12.4rem;
}

.u-my-124 {
  margin-block: 12.4rem;
}

.u-mt-128 {
  margin-top: 12.8rem;
}

.u-mb-128 {
  margin-bottom: 12.8rem;
}

.u-my-128 {
  margin-block: 12.8rem;
}

.u-mt-132 {
  margin-top: 13.2rem;
}

.u-mb-132 {
  margin-bottom: 13.2rem;
}

.u-my-132 {
  margin-block: 13.2rem;
}

.u-mt-136 {
  margin-top: 13.6rem;
}

.u-mb-136 {
  margin-bottom: 13.6rem;
}

.u-my-136 {
  margin-block: 13.6rem;
}

.u-mt-140 {
  margin-top: 14rem;
}

.u-mb-140 {
  margin-bottom: 14rem;
}

.u-my-140 {
  margin-block: 14rem;
}

.u-mt-144 {
  margin-top: 14.4rem;
}

.u-mb-144 {
  margin-bottom: 14.4rem;
}

.u-my-144 {
  margin-block: 14.4rem;
}

.u-mt-148 {
  margin-top: 14.8rem;
}

.u-mb-148 {
  margin-bottom: 14.8rem;
}

.u-my-148 {
  margin-block: 14.8rem;
}

.u-mt-152 {
  margin-top: 15.2rem;
}

.u-mb-152 {
  margin-bottom: 15.2rem;
}

.u-my-152 {
  margin-block: 15.2rem;
}

.u-mt-156 {
  margin-top: 15.6rem;
}

.u-mb-156 {
  margin-bottom: 15.6rem;
}

.u-my-156 {
  margin-block: 15.6rem;
}

.u-mt-160 {
  margin-top: 16rem;
}

.u-mb-160 {
  margin-bottom: 16rem;
}

.u-my-160 {
  margin-block: 16rem;
}

.u-mx-left {
  margin-inline: 0 auto;
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-inline: auto 0;
}

@media screen and (max-width: 767px) {
  .u-mt-0-sp {
    margin-top: 0;
  }
  .u-mb-0-sp {
    margin-bottom: 0;
  }
  .u-my-0-sp {
    margin-block: 0;
  }
  .u-mt-4-sp {
    margin-top: 0.4rem;
  }
  .u-mb-4-sp {
    margin-bottom: 0.4rem;
  }
  .u-my-4-sp {
    margin-block: 0.4rem;
  }
  .u-mt-8-sp {
    margin-top: 0.8rem;
  }
  .u-mb-8-sp {
    margin-bottom: 0.8rem;
  }
  .u-my-8-sp {
    margin-block: 0.8rem;
  }
  .u-mt-12-sp {
    margin-top: 1.2rem;
  }
  .u-mb-12-sp {
    margin-bottom: 1.2rem;
  }
  .u-my-12-sp {
    margin-block: 1.2rem;
  }
  .u-mt-16-sp {
    margin-top: 1.6rem;
  }
  .u-mb-16-sp {
    margin-bottom: 1.6rem;
  }
  .u-my-16-sp {
    margin-block: 1.6rem;
  }
  .u-mt-20-sp {
    margin-top: 2rem;
  }
  .u-mb-20-sp {
    margin-bottom: 2rem;
  }
  .u-my-20-sp {
    margin-block: 2rem;
  }
  .u-mt-24-sp {
    margin-top: 2.4rem;
  }
  .u-mb-24-sp {
    margin-bottom: 2.4rem;
  }
  .u-my-24-sp {
    margin-block: 2.4rem;
  }
  .u-mt-28-sp {
    margin-top: 2.8rem;
  }
  .u-mb-28-sp {
    margin-bottom: 2.8rem;
  }
  .u-my-28-sp {
    margin-block: 2.8rem;
  }
  .u-mt-32-sp {
    margin-top: 3.2rem;
  }
  .u-mb-32-sp {
    margin-bottom: 3.2rem;
  }
  .u-my-32-sp {
    margin-block: 3.2rem;
  }
  .u-mt-36-sp {
    margin-top: 3.6rem;
  }
  .u-mb-36-sp {
    margin-bottom: 3.6rem;
  }
  .u-my-36-sp {
    margin-block: 3.6rem;
  }
  .u-mt-40-sp {
    margin-top: 4rem;
  }
  .u-mb-40-sp {
    margin-bottom: 4rem;
  }
  .u-my-40-sp {
    margin-block: 4rem;
  }
  .u-mt-44-sp {
    margin-top: 4.4rem;
  }
  .u-mb-44-sp {
    margin-bottom: 4.4rem;
  }
  .u-my-44-sp {
    margin-block: 4.4rem;
  }
  .u-mt-48-sp {
    margin-top: 4.8rem;
  }
  .u-mb-48-sp {
    margin-bottom: 4.8rem;
  }
  .u-my-48-sp {
    margin-block: 4.8rem;
  }
  .u-mt-52-sp {
    margin-top: 5.2rem;
  }
  .u-mb-52-sp {
    margin-bottom: 5.2rem;
  }
  .u-my-52-sp {
    margin-block: 5.2rem;
  }
  .u-mt-56-sp {
    margin-top: 5.6rem;
  }
  .u-mb-56-sp {
    margin-bottom: 5.6rem;
  }
  .u-my-56-sp {
    margin-block: 5.6rem;
  }
  .u-mt-60-sp {
    margin-top: 6rem;
  }
  .u-mb-60-sp {
    margin-bottom: 6rem;
  }
  .u-my-60-sp {
    margin-block: 6rem;
  }
  .u-mt-64-sp {
    margin-top: 6.4rem;
  }
  .u-mb-64-sp {
    margin-bottom: 6.4rem;
  }
  .u-my-64-sp {
    margin-block: 6.4rem;
  }
  .u-mt-68-sp {
    margin-top: 6.8rem;
  }
  .u-mb-68-sp {
    margin-bottom: 6.8rem;
  }
  .u-my-68-sp {
    margin-block: 6.8rem;
  }
  .u-mt-72-sp {
    margin-top: 7.2rem;
  }
  .u-mb-72-sp {
    margin-bottom: 7.2rem;
  }
  .u-my-72-sp {
    margin-block: 7.2rem;
  }
  .u-mt-76-sp {
    margin-top: 7.6rem;
  }
  .u-mb-76-sp {
    margin-bottom: 7.6rem;
  }
  .u-my-76-sp {
    margin-block: 7.6rem;
  }
  .u-mt-80-sp {
    margin-top: 8rem;
  }
  .u-mb-80-sp {
    margin-bottom: 8rem;
  }
  .u-my-80-sp {
    margin-block: 8rem;
  }
  .u-mt-84-sp {
    margin-top: 8.4rem;
  }
  .u-mb-84-sp {
    margin-bottom: 8.4rem;
  }
  .u-my-84-sp {
    margin-block: 8.4rem;
  }
  .u-mt-88-sp {
    margin-top: 8.8rem;
  }
  .u-mb-88-sp {
    margin-bottom: 8.8rem;
  }
  .u-my-88-sp {
    margin-block: 8.8rem;
  }
  .u-mt-92-sp {
    margin-top: 9.2rem;
  }
  .u-mb-92-sp {
    margin-bottom: 9.2rem;
  }
  .u-my-92-sp {
    margin-block: 9.2rem;
  }
  .u-mt-96-sp {
    margin-top: 9.6rem;
  }
  .u-mb-96-sp {
    margin-bottom: 9.6rem;
  }
  .u-my-96-sp {
    margin-block: 9.6rem;
  }
  .u-mt-100-sp {
    margin-top: 10rem;
  }
  .u-mb-100-sp {
    margin-bottom: 10rem;
  }
  .u-my-100-sp {
    margin-block: 10rem;
  }
  .u-mt-104-sp {
    margin-top: 10.4rem;
  }
  .u-mb-104-sp {
    margin-bottom: 10.4rem;
  }
  .u-my-104-sp {
    margin-block: 10.4rem;
  }
  .u-mt-108-sp {
    margin-top: 10.8rem;
  }
  .u-mb-108-sp {
    margin-bottom: 10.8rem;
  }
  .u-my-108-sp {
    margin-block: 10.8rem;
  }
  .u-mt-112-sp {
    margin-top: 11.2rem;
  }
  .u-mb-112-sp {
    margin-bottom: 11.2rem;
  }
  .u-my-112-sp {
    margin-block: 11.2rem;
  }
  .u-mt-116-sp {
    margin-top: 11.6rem;
  }
  .u-mb-116-sp {
    margin-bottom: 11.6rem;
  }
  .u-my-116-sp {
    margin-block: 11.6rem;
  }
  .u-mt-120-sp {
    margin-top: 12rem;
  }
  .u-mb-120-sp {
    margin-bottom: 12rem;
  }
  .u-my-120-sp {
    margin-block: 12rem;
  }
  .u-mt-124-sp {
    margin-top: 12.4rem;
  }
  .u-mb-124-sp {
    margin-bottom: 12.4rem;
  }
  .u-my-124-sp {
    margin-block: 12.4rem;
  }
  .u-mt-128-sp {
    margin-top: 12.8rem;
  }
  .u-mb-128-sp {
    margin-bottom: 12.8rem;
  }
  .u-my-128-sp {
    margin-block: 12.8rem;
  }
  .u-mt-132-sp {
    margin-top: 13.2rem;
  }
  .u-mb-132-sp {
    margin-bottom: 13.2rem;
  }
  .u-my-132-sp {
    margin-block: 13.2rem;
  }
  .u-mt-136-sp {
    margin-top: 13.6rem;
  }
  .u-mb-136-sp {
    margin-bottom: 13.6rem;
  }
  .u-my-136-sp {
    margin-block: 13.6rem;
  }
  .u-mt-140-sp {
    margin-top: 14rem;
  }
  .u-mb-140-sp {
    margin-bottom: 14rem;
  }
  .u-my-140-sp {
    margin-block: 14rem;
  }
  .u-mt-144-sp {
    margin-top: 14.4rem;
  }
  .u-mb-144-sp {
    margin-bottom: 14.4rem;
  }
  .u-my-144-sp {
    margin-block: 14.4rem;
  }
  .u-mt-148-sp {
    margin-top: 14.8rem;
  }
  .u-mb-148-sp {
    margin-bottom: 14.8rem;
  }
  .u-my-148-sp {
    margin-block: 14.8rem;
  }
  .u-mt-152-sp {
    margin-top: 15.2rem;
  }
  .u-mb-152-sp {
    margin-bottom: 15.2rem;
  }
  .u-my-152-sp {
    margin-block: 15.2rem;
  }
  .u-mt-156-sp {
    margin-top: 15.6rem;
  }
  .u-mb-156-sp {
    margin-bottom: 15.6rem;
  }
  .u-my-156-sp {
    margin-block: 15.6rem;
  }
  .u-mt-160-sp {
    margin-top: 16rem;
  }
  .u-mb-160-sp {
    margin-bottom: 16rem;
  }
  .u-my-160-sp {
    margin-block: 16rem;
  }
  .u-mx-left-sp {
    margin-inline: 0 auto;
  }
  .u-mx-center-sp {
    margin-inline: auto;
  }
  .u-mx-right-sp {
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 767px) {
  [data-only-device=md] {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  [data-only-device=sm] {
    display: none;
  }
}

/* ---------- padding ---------- */
.u-pt-0 {
  padding-top: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-py-0 {
  padding-block: 0;
}

.u-px-0 {
  padding-inline: 0;
}

.u-pt-4 {
  padding-top: 0.4rem;
}

.u-pb-4 {
  padding-bottom: 0.4rem;
}

.u-py-4 {
  padding-block: 0.4rem;
}

.u-px-4 {
  padding-inline: 0.4rem;
}

.u-pt-8 {
  padding-top: 0.8rem;
}

.u-pb-8 {
  padding-bottom: 0.8rem;
}

.u-py-8 {
  padding-block: 0.8rem;
}

.u-px-8 {
  padding-inline: 0.8rem;
}

.u-pt-12 {
  padding-top: 1.2rem;
}

.u-pb-12 {
  padding-bottom: 1.2rem;
}

.u-py-12 {
  padding-block: 1.2rem;
}

.u-px-12 {
  padding-inline: 1.2rem;
}

.u-pt-16 {
  padding-top: 1.6rem;
}

.u-pb-16 {
  padding-bottom: 1.6rem;
}

.u-py-16 {
  padding-block: 1.6rem;
}

.u-px-16 {
  padding-inline: 1.6rem;
}

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

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

.u-py-20 {
  padding-block: 2rem;
}

.u-px-20 {
  padding-inline: 2rem;
}

.u-pt-24 {
  padding-top: 2.4rem;
}

.u-pb-24 {
  padding-bottom: 2.4rem;
}

.u-py-24 {
  padding-block: 2.4rem;
}

.u-px-24 {
  padding-inline: 2.4rem;
}

.u-pt-28 {
  padding-top: 2.8rem;
}

.u-pb-28 {
  padding-bottom: 2.8rem;
}

.u-py-28 {
  padding-block: 2.8rem;
}

.u-px-28 {
  padding-inline: 2.8rem;
}

.u-pt-32 {
  padding-top: 3.2rem;
}

.u-pb-32 {
  padding-bottom: 3.2rem;
}

.u-py-32 {
  padding-block: 3.2rem;
}

.u-px-32 {
  padding-inline: 3.2rem;
}

.u-pt-36 {
  padding-top: 3.6rem;
}

.u-pb-36 {
  padding-bottom: 3.6rem;
}

.u-py-36 {
  padding-block: 3.6rem;
}

.u-px-36 {
  padding-inline: 3.6rem;
}

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

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

.u-py-40 {
  padding-block: 4rem;
}

.u-px-40 {
  padding-inline: 4rem;
}

.u-pt-44 {
  padding-top: 4.4rem;
}

.u-pb-44 {
  padding-bottom: 4.4rem;
}

.u-py-44 {
  padding-block: 4.4rem;
}

.u-px-44 {
  padding-inline: 4.4rem;
}

.u-pt-48 {
  padding-top: 4.8rem;
}

.u-pb-48 {
  padding-bottom: 4.8rem;
}

.u-py-48 {
  padding-block: 4.8rem;
}

.u-px-48 {
  padding-inline: 4.8rem;
}

.u-pt-52 {
  padding-top: 5.2rem;
}

.u-pb-52 {
  padding-bottom: 5.2rem;
}

.u-py-52 {
  padding-block: 5.2rem;
}

.u-px-52 {
  padding-inline: 5.2rem;
}

.u-pt-56 {
  padding-top: 5.6rem;
}

.u-pb-56 {
  padding-bottom: 5.6rem;
}

.u-py-56 {
  padding-block: 5.6rem;
}

.u-px-56 {
  padding-inline: 5.6rem;
}

.u-pt-60 {
  padding-top: 6rem;
}

.u-pb-60 {
  padding-bottom: 6rem;
}

.u-py-60 {
  padding-block: 6rem;
}

.u-px-60 {
  padding-inline: 6rem;
}

.u-pt-64 {
  padding-top: 6.4rem;
}

.u-pb-64 {
  padding-bottom: 6.4rem;
}

.u-py-64 {
  padding-block: 6.4rem;
}

.u-px-64 {
  padding-inline: 6.4rem;
}

.u-pt-68 {
  padding-top: 6.8rem;
}

.u-pb-68 {
  padding-bottom: 6.8rem;
}

.u-py-68 {
  padding-block: 6.8rem;
}

.u-px-68 {
  padding-inline: 6.8rem;
}

.u-pt-72 {
  padding-top: 7.2rem;
}

.u-pb-72 {
  padding-bottom: 7.2rem;
}

.u-py-72 {
  padding-block: 7.2rem;
}

.u-px-72 {
  padding-inline: 7.2rem;
}

.u-pt-76 {
  padding-top: 7.6rem;
}

.u-pb-76 {
  padding-bottom: 7.6rem;
}

.u-py-76 {
  padding-block: 7.6rem;
}

.u-px-76 {
  padding-inline: 7.6rem;
}

.u-pt-80 {
  padding-top: 8rem;
}

.u-pb-80 {
  padding-bottom: 8rem;
}

.u-py-80 {
  padding-block: 8rem;
}

.u-px-80 {
  padding-inline: 8rem;
}

.u-pt-84 {
  padding-top: 8.4rem;
}

.u-pb-84 {
  padding-bottom: 8.4rem;
}

.u-py-84 {
  padding-block: 8.4rem;
}

.u-px-84 {
  padding-inline: 8.4rem;
}

.u-pt-88 {
  padding-top: 8.8rem;
}

.u-pb-88 {
  padding-bottom: 8.8rem;
}

.u-py-88 {
  padding-block: 8.8rem;
}

.u-px-88 {
  padding-inline: 8.8rem;
}

.u-pt-92 {
  padding-top: 9.2rem;
}

.u-pb-92 {
  padding-bottom: 9.2rem;
}

.u-py-92 {
  padding-block: 9.2rem;
}

.u-px-92 {
  padding-inline: 9.2rem;
}

.u-pt-96 {
  padding-top: 9.6rem;
}

.u-pb-96 {
  padding-bottom: 9.6rem;
}

.u-py-96 {
  padding-block: 9.6rem;
}

.u-px-96 {
  padding-inline: 9.6rem;
}

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

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

.u-py-100 {
  padding-block: 10rem;
}

.u-px-100 {
  padding-inline: 10rem;
}

.u-pt-104 {
  padding-top: 10.4rem;
}

.u-pb-104 {
  padding-bottom: 10.4rem;
}

.u-py-104 {
  padding-block: 10.4rem;
}

.u-px-104 {
  padding-inline: 10.4rem;
}

.u-pt-108 {
  padding-top: 10.8rem;
}

.u-pb-108 {
  padding-bottom: 10.8rem;
}

.u-py-108 {
  padding-block: 10.8rem;
}

.u-px-108 {
  padding-inline: 10.8rem;
}

.u-pt-112 {
  padding-top: 11.2rem;
}

.u-pb-112 {
  padding-bottom: 11.2rem;
}

.u-py-112 {
  padding-block: 11.2rem;
}

.u-px-112 {
  padding-inline: 11.2rem;
}

.u-pt-116 {
  padding-top: 11.6rem;
}

.u-pb-116 {
  padding-bottom: 11.6rem;
}

.u-py-116 {
  padding-block: 11.6rem;
}

.u-px-116 {
  padding-inline: 11.6rem;
}

.u-pt-120 {
  padding-top: 12rem;
}

.u-pb-120 {
  padding-bottom: 12rem;
}

.u-py-120 {
  padding-block: 12rem;
}

.u-px-120 {
  padding-inline: 12rem;
}

.u-pt-124 {
  padding-top: 12.4rem;
}

.u-pb-124 {
  padding-bottom: 12.4rem;
}

.u-py-124 {
  padding-block: 12.4rem;
}

.u-px-124 {
  padding-inline: 12.4rem;
}

.u-pt-128 {
  padding-top: 12.8rem;
}

.u-pb-128 {
  padding-bottom: 12.8rem;
}

.u-py-128 {
  padding-block: 12.8rem;
}

.u-px-128 {
  padding-inline: 12.8rem;
}

.u-pt-132 {
  padding-top: 13.2rem;
}

.u-pb-132 {
  padding-bottom: 13.2rem;
}

.u-py-132 {
  padding-block: 13.2rem;
}

.u-px-132 {
  padding-inline: 13.2rem;
}

.u-pt-136 {
  padding-top: 13.6rem;
}

.u-pb-136 {
  padding-bottom: 13.6rem;
}

.u-py-136 {
  padding-block: 13.6rem;
}

.u-px-136 {
  padding-inline: 13.6rem;
}

.u-pt-140 {
  padding-top: 14rem;
}

.u-pb-140 {
  padding-bottom: 14rem;
}

.u-py-140 {
  padding-block: 14rem;
}

.u-px-140 {
  padding-inline: 14rem;
}

.u-pt-144 {
  padding-top: 14.4rem;
}

.u-pb-144 {
  padding-bottom: 14.4rem;
}

.u-py-144 {
  padding-block: 14.4rem;
}

.u-px-144 {
  padding-inline: 14.4rem;
}

.u-pt-148 {
  padding-top: 14.8rem;
}

.u-pb-148 {
  padding-bottom: 14.8rem;
}

.u-py-148 {
  padding-block: 14.8rem;
}

.u-px-148 {
  padding-inline: 14.8rem;
}

.u-pt-152 {
  padding-top: 15.2rem;
}

.u-pb-152 {
  padding-bottom: 15.2rem;
}

.u-py-152 {
  padding-block: 15.2rem;
}

.u-px-152 {
  padding-inline: 15.2rem;
}

.u-pt-156 {
  padding-top: 15.6rem;
}

.u-pb-156 {
  padding-bottom: 15.6rem;
}

.u-py-156 {
  padding-block: 15.6rem;
}

.u-px-156 {
  padding-inline: 15.6rem;
}

.u-pt-160 {
  padding-top: 16rem;
}

.u-pb-160 {
  padding-bottom: 16rem;
}

.u-py-160 {
  padding-block: 16rem;
}

.u-px-160 {
  padding-inline: 16rem;
}

@media screen and (max-width: 767px) {
  .u-pt-0-sp {
    padding-top: 0;
  }
  .u-pb-0-sp {
    padding-bottom: 0;
  }
  .u-py-0-sp {
    padding-block: 0;
  }
  .u-px-0-sp {
    padding-inline: 0;
  }
  .u-pt-4-sp {
    padding-top: 0.4rem;
  }
  .u-pb-4-sp {
    padding-bottom: 0.4rem;
  }
  .u-py-4-sp {
    padding-block: 0.4rem;
  }
  .u-px-4-sp {
    padding-inline: 0.4rem;
  }
  .u-pt-8-sp {
    padding-top: 0.8rem;
  }
  .u-pb-8-sp {
    padding-bottom: 0.8rem;
  }
  .u-py-8-sp {
    padding-block: 0.8rem;
  }
  .u-px-8-sp {
    padding-inline: 0.8rem;
  }
  .u-pt-12-sp {
    padding-top: 1.2rem;
  }
  .u-pb-12-sp {
    padding-bottom: 1.2rem;
  }
  .u-py-12-sp {
    padding-block: 1.2rem;
  }
  .u-px-12-sp {
    padding-inline: 1.2rem;
  }
  .u-pt-16-sp {
    padding-top: 1.6rem;
  }
  .u-pb-16-sp {
    padding-bottom: 1.6rem;
  }
  .u-py-16-sp {
    padding-block: 1.6rem;
  }
  .u-px-16-sp {
    padding-inline: 1.6rem;
  }
  .u-pt-20-sp {
    padding-top: 2rem;
  }
  .u-pb-20-sp {
    padding-bottom: 2rem;
  }
  .u-py-20-sp {
    padding-block: 2rem;
  }
  .u-px-20-sp {
    padding-inline: 2rem;
  }
  .u-pt-24-sp {
    padding-top: 2.4rem;
  }
  .u-pb-24-sp {
    padding-bottom: 2.4rem;
  }
  .u-py-24-sp {
    padding-block: 2.4rem;
  }
  .u-px-24-sp {
    padding-inline: 2.4rem;
  }
  .u-pt-28-sp {
    padding-top: 2.8rem;
  }
  .u-pb-28-sp {
    padding-bottom: 2.8rem;
  }
  .u-py-28-sp {
    padding-block: 2.8rem;
  }
  .u-px-28-sp {
    padding-inline: 2.8rem;
  }
  .u-pt-32-sp {
    padding-top: 3.2rem;
  }
  .u-pb-32-sp {
    padding-bottom: 3.2rem;
  }
  .u-py-32-sp {
    padding-block: 3.2rem;
  }
  .u-px-32-sp {
    padding-inline: 3.2rem;
  }
  .u-pt-36-sp {
    padding-top: 3.6rem;
  }
  .u-pb-36-sp {
    padding-bottom: 3.6rem;
  }
  .u-py-36-sp {
    padding-block: 3.6rem;
  }
  .u-px-36-sp {
    padding-inline: 3.6rem;
  }
  .u-pt-40-sp {
    padding-top: 4rem;
  }
  .u-pb-40-sp {
    padding-bottom: 4rem;
  }
  .u-py-40-sp {
    padding-block: 4rem;
  }
  .u-px-40-sp {
    padding-inline: 4rem;
  }
  .u-pt-44-sp {
    padding-top: 4.4rem;
  }
  .u-pb-44-sp {
    padding-bottom: 4.4rem;
  }
  .u-py-44-sp {
    padding-block: 4.4rem;
  }
  .u-px-44-sp {
    padding-inline: 4.4rem;
  }
  .u-pt-48-sp {
    padding-top: 4.8rem;
  }
  .u-pb-48-sp {
    padding-bottom: 4.8rem;
  }
  .u-py-48-sp {
    padding-block: 4.8rem;
  }
  .u-px-48-sp {
    padding-inline: 4.8rem;
  }
  .u-pt-52-sp {
    padding-top: 5.2rem;
  }
  .u-pb-52-sp {
    padding-bottom: 5.2rem;
  }
  .u-py-52-sp {
    padding-block: 5.2rem;
  }
  .u-px-52-sp {
    padding-inline: 5.2rem;
  }
  .u-pt-56-sp {
    padding-top: 5.6rem;
  }
  .u-pb-56-sp {
    padding-bottom: 5.6rem;
  }
  .u-py-56-sp {
    padding-block: 5.6rem;
  }
  .u-px-56-sp {
    padding-inline: 5.6rem;
  }
  .u-pt-60-sp {
    padding-top: 6rem;
  }
  .u-pb-60-sp {
    padding-bottom: 6rem;
  }
  .u-py-60-sp {
    padding-block: 6rem;
  }
  .u-px-60-sp {
    padding-inline: 6rem;
  }
  .u-pt-64-sp {
    padding-top: 6.4rem;
  }
  .u-pb-64-sp {
    padding-bottom: 6.4rem;
  }
  .u-py-64-sp {
    padding-block: 6.4rem;
  }
  .u-px-64-sp {
    padding-inline: 6.4rem;
  }
  .u-pt-68-sp {
    padding-top: 6.8rem;
  }
  .u-pb-68-sp {
    padding-bottom: 6.8rem;
  }
  .u-py-68-sp {
    padding-block: 6.8rem;
  }
  .u-px-68-sp {
    padding-inline: 6.8rem;
  }
  .u-pt-72-sp {
    padding-top: 7.2rem;
  }
  .u-pb-72-sp {
    padding-bottom: 7.2rem;
  }
  .u-py-72-sp {
    padding-block: 7.2rem;
  }
  .u-px-72-sp {
    padding-inline: 7.2rem;
  }
  .u-pt-76-sp {
    padding-top: 7.6rem;
  }
  .u-pb-76-sp {
    padding-bottom: 7.6rem;
  }
  .u-py-76-sp {
    padding-block: 7.6rem;
  }
  .u-px-76-sp {
    padding-inline: 7.6rem;
  }
  .u-pt-80-sp {
    padding-top: 8rem;
  }
  .u-pb-80-sp {
    padding-bottom: 8rem;
  }
  .u-py-80-sp {
    padding-block: 8rem;
  }
  .u-px-80-sp {
    padding-inline: 8rem;
  }
  .u-pt-84-sp {
    padding-top: 8.4rem;
  }
  .u-pb-84-sp {
    padding-bottom: 8.4rem;
  }
  .u-py-84-sp {
    padding-block: 8.4rem;
  }
  .u-px-84-sp {
    padding-inline: 8.4rem;
  }
  .u-pt-88-sp {
    padding-top: 8.8rem;
  }
  .u-pb-88-sp {
    padding-bottom: 8.8rem;
  }
  .u-py-88-sp {
    padding-block: 8.8rem;
  }
  .u-px-88-sp {
    padding-inline: 8.8rem;
  }
  .u-pt-92-sp {
    padding-top: 9.2rem;
  }
  .u-pb-92-sp {
    padding-bottom: 9.2rem;
  }
  .u-py-92-sp {
    padding-block: 9.2rem;
  }
  .u-px-92-sp {
    padding-inline: 9.2rem;
  }
  .u-pt-96-sp {
    padding-top: 9.6rem;
  }
  .u-pb-96-sp {
    padding-bottom: 9.6rem;
  }
  .u-py-96-sp {
    padding-block: 9.6rem;
  }
  .u-px-96-sp {
    padding-inline: 9.6rem;
  }
  .u-pt-100-sp {
    padding-top: 10rem;
  }
  .u-pb-100-sp {
    padding-bottom: 10rem;
  }
  .u-py-100-sp {
    padding-block: 10rem;
  }
  .u-px-100-sp {
    padding-inline: 10rem;
  }
  .u-pt-104-sp {
    padding-top: 10.4rem;
  }
  .u-pb-104-sp {
    padding-bottom: 10.4rem;
  }
  .u-py-104-sp {
    padding-block: 10.4rem;
  }
  .u-px-104-sp {
    padding-inline: 10.4rem;
  }
  .u-pt-108-sp {
    padding-top: 10.8rem;
  }
  .u-pb-108-sp {
    padding-bottom: 10.8rem;
  }
  .u-py-108-sp {
    padding-block: 10.8rem;
  }
  .u-px-108-sp {
    padding-inline: 10.8rem;
  }
  .u-pt-112-sp {
    padding-top: 11.2rem;
  }
  .u-pb-112-sp {
    padding-bottom: 11.2rem;
  }
  .u-py-112-sp {
    padding-block: 11.2rem;
  }
  .u-px-112-sp {
    padding-inline: 11.2rem;
  }
  .u-pt-116-sp {
    padding-top: 11.6rem;
  }
  .u-pb-116-sp {
    padding-bottom: 11.6rem;
  }
  .u-py-116-sp {
    padding-block: 11.6rem;
  }
  .u-px-116-sp {
    padding-inline: 11.6rem;
  }
  .u-pt-120-sp {
    padding-top: 12rem;
  }
  .u-pb-120-sp {
    padding-bottom: 12rem;
  }
  .u-py-120-sp {
    padding-block: 12rem;
  }
  .u-px-120-sp {
    padding-inline: 12rem;
  }
  .u-pt-124-sp {
    padding-top: 12.4rem;
  }
  .u-pb-124-sp {
    padding-bottom: 12.4rem;
  }
  .u-py-124-sp {
    padding-block: 12.4rem;
  }
  .u-px-124-sp {
    padding-inline: 12.4rem;
  }
  .u-pt-128-sp {
    padding-top: 12.8rem;
  }
  .u-pb-128-sp {
    padding-bottom: 12.8rem;
  }
  .u-py-128-sp {
    padding-block: 12.8rem;
  }
  .u-px-128-sp {
    padding-inline: 12.8rem;
  }
  .u-pt-132-sp {
    padding-top: 13.2rem;
  }
  .u-pb-132-sp {
    padding-bottom: 13.2rem;
  }
  .u-py-132-sp {
    padding-block: 13.2rem;
  }
  .u-px-132-sp {
    padding-inline: 13.2rem;
  }
  .u-pt-136-sp {
    padding-top: 13.6rem;
  }
  .u-pb-136-sp {
    padding-bottom: 13.6rem;
  }
  .u-py-136-sp {
    padding-block: 13.6rem;
  }
  .u-px-136-sp {
    padding-inline: 13.6rem;
  }
  .u-pt-140-sp {
    padding-top: 14rem;
  }
  .u-pb-140-sp {
    padding-bottom: 14rem;
  }
  .u-py-140-sp {
    padding-block: 14rem;
  }
  .u-px-140-sp {
    padding-inline: 14rem;
  }
  .u-pt-144-sp {
    padding-top: 14.4rem;
  }
  .u-pb-144-sp {
    padding-bottom: 14.4rem;
  }
  .u-py-144-sp {
    padding-block: 14.4rem;
  }
  .u-px-144-sp {
    padding-inline: 14.4rem;
  }
  .u-pt-148-sp {
    padding-top: 14.8rem;
  }
  .u-pb-148-sp {
    padding-bottom: 14.8rem;
  }
  .u-py-148-sp {
    padding-block: 14.8rem;
  }
  .u-px-148-sp {
    padding-inline: 14.8rem;
  }
  .u-pt-152-sp {
    padding-top: 15.2rem;
  }
  .u-pb-152-sp {
    padding-bottom: 15.2rem;
  }
  .u-py-152-sp {
    padding-block: 15.2rem;
  }
  .u-px-152-sp {
    padding-inline: 15.2rem;
  }
  .u-pt-156-sp {
    padding-top: 15.6rem;
  }
  .u-pb-156-sp {
    padding-bottom: 15.6rem;
  }
  .u-py-156-sp {
    padding-block: 15.6rem;
  }
  .u-px-156-sp {
    padding-inline: 15.6rem;
  }
  .u-pt-160-sp {
    padding-top: 16rem;
  }
  .u-pb-160-sp {
    padding-bottom: 16rem;
  }
  .u-py-160-sp {
    padding-block: 16rem;
  }
  .u-px-160-sp {
    padding-inline: 16rem;
  }
}
/* ---------- screen reader only ---------- */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}

/* ---------- text ---------- */
/* --- head --- */
.u-text-head-1 {
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-head-1 {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.06em;
  }
}

.u-text-head-2 {
  font-size: 2.8rem;
  line-height: 1.2857142857;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-head-2 {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.06em;
  }
}

.u-text-head-3 {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.135em;
  font-weight: 400;
}

.u-text-head-4 {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-head-4 {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}

.u-text-head-5 {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.135em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-head-5 {
    font-size: 1.6rem;
    line-height: 1.125;
    letter-spacing: 0.06em;
  }
}

/* --- body --- */
.u-text-body-1 {
  font-size: 1.4rem;
  line-height: 2.5714285714;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .u-text-body-1 {
    line-height: 2;
    letter-spacing: 0;
  }
}
.u-text-body-1 > * {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .u-text-body-1 > * {
    letter-spacing: 0;
  }
}
.u-text-body-1 + p.u-text-body-1 {
  margin-top: 2.5714285714em;
}
@media screen and (max-width: 767px) {
  .u-text-body-1 + p.u-text-body-1 {
    margin-top: 2em;
  }
}

.u-text-body-2 {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .u-text-body-2 {
    line-height: 1.6428571429;
    letter-spacing: 0;
  }
}
.u-text-body-2 > * {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .u-text-body-2 > * {
    letter-spacing: 0;
  }
}
.u-text-body-2 + p.u-text-body-2 {
  margin-top: 1.6428571429em;
}

.u-text-body-3 {
  font-size: 1.2rem;
  line-height: 2.1666666667;
}
@media screen and (max-width: 767px) {
  .u-text-body-3 {
    line-height: 1.5833333333;
  }
}
.u-text-body-3 + p.u-text-body-3 {
  margin-top: 2.1666666667em;
}
@media screen and (max-width: 767px) {
  .u-text-body-3 + p.u-text-body-3 {
    margin-top: 1.5833333333em;
  }
}

/* --- english --- */
.u-text-en-1 {
  font-family: var(--family-english);
  font-size: 4.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-en-1 {
    font-size: 3.2rem;
    line-height: 1.25;
    letter-spacing: 0.075em;
  }
}

.u-text-en-2 {
  font-family: var(--family-english);
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-en-2 {
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}

.u-text-en-3 {
  font-family: var(--family-english);
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.u-text-en-4 {
  font-family: var(--family-english);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.u-text-en-5 {
  font-family: var(--family-english);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* --- lead --- */
.u-text-lead-1 {
  font-size: 1.6rem;
  line-height: 2.625;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-lead-1 {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: -0.02em;
  }
}

.u-text-lead-2 {
  font-size: 1.4rem;
  line-height: 2.5714285714;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .u-text-lead-2 {
    line-height: 1.6428571429;
    letter-spacing: 0;
  }
}
.u-text-lead-2 + p.u-text-lead-2 {
  margin-top: 2.5714285714em;
}
@media screen and (max-width: 767px) {
  .u-text-lead-2 + p.u-text-lead-2 {
    margin-top: 1.6428571429em;
  }
}

/* --- price ---*/
.u-text-price-1 {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-price-1 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.u-text-price-1 b {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-price-1 b {
    font-size: 2.8rem;
  }
}
.u-text-price-1 span {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .u-text-price-1 span {
    font-size: 1.4rem;
    line-height: 2.8571428571;
  }
}

.u-text-price-2 {
  font-size: 2.4rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .u-text-price-2 {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.u-text-price-2 b {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .u-text-price-2 b {
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0em;
  }
}

.u-text-line {
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
@media screen and (max-width: 767px) {
  .u-text-line {
    text-underline-offset: 0.2em;
  }
}

.u-text-marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text-inline-block {
  display: inline-block;
}

.u-text-indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

.u-text-capitalize {
  text-transform: capitalize;
}

.u-text-uppercase {
  text-transform: uppercase;
}

.u-text-space-0 {
  letter-spacing: 0;
}

.u-text-space-25 {
  letter-spacing: 0.025em;
}

.u-text-space-50 {
  letter-spacing: 0.05em;
}

.u-text-space-75 {
  letter-spacing: 0.075em;
}

.u-text-space-100 {
  letter-spacing: 0.1em;
}

.u-text-space-125 {
  letter-spacing: 0.125em;
}