@charset "UTF-8";@import "kiso.css";

:root {
  /* --- container --- */
  --container: min(1072px, 100%);
  --container-spacing: 1.2rem;
  /* --- color --- */
  /* base */
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #505050;
  /* main */
  --color-primary: #1a2b55;
  --color-secondary: #745828;
  --color-tertiary: #4a556f;
  /* text */
  --color-text: #222;
  --color-text-primary: #e2c56c, #b28f57;
  /* border */
  --color-border: #9398a3;
  --color-border-primary: #6c4e1b, #faf2ba 18%, #84632d 35%, #f8efb7 49%, #84632d 66%, #ede19d 83%, #63481d 100%;
  /* background */
  --color-bg: #0e1f47, #03102e;
  --color-bg-primary: #f6f2eb;
  --color-bg-secondary: #081129;
  --color-bg-tertiary: #ad6b00, #cead49;
  /* status */
  --color-success: #127e6b;
  --color-important: #cd2b31;
  --color-disabled: #9b9b9b;
  /* input */
  --color-input-bg: #f6f6f6;
  --color-input-border: #dcdcdc;
  --color-input-text: #222;
  --color-input-placeholder: #9c9c9c;
  --color-input-focus: #3131fa;
  /* radius */
  --radius-xsmall: 0.4rem;
  /* shadow */
  --shadow-lv1: 2rem 2rem 3.5rem 0 color-mix(in srgb, #483514 10%, transparent);
  --shadow-lv2: 0 0 5.1rem 0 color-mix(in srgb, #7a7162 14%, transparent);
  --shadow-btn: 1rem 1rem 0 0 color-mix(in srgb, #000 5%, transparent);
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --family-sans: 遊ゴシック体, "Yu Gothic", yugothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, meiryo, osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  --family-serif: "游明朝", yumincho, "ヒイラギ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  /* spacing */
  --spacing: 0.075em;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 8rem;
}
@media screen and (max-width: 767px) {
  :root {
    --shadow-lv1: 1rem 1rem 1.7rem 0 color-mix(in srgb, #483514 10%, transparent);
    --shadow-lv2: 0 0 2.5rem 0 color-mix(in srgb, #7a7162 14%, transparent);
    --shadow-btn: 0.5rem 0.5rem 0 0 color-mix(in srgb, #000 5%, transparent);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 6rem;
  }
}

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

textarea {
  field-sizing: content;
}

fieldset {
  border: none;
}

body {
  font-family: var(--family-sans);
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1;
  color: var(--color-text);
  background-color: var(--color-white);
}
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;
  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;
  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;
}

.l-container-lg {
  max-width: calc(min(1200px, 100%) + var(--container-spacing) * 2);
  padding-inline: var(--container-spacing);
  margin-inline: auto;
}

/* ---------- header ---------- */
.l-header {
  width: 100%;
  height: var(--header-height);
}

/* ---------- inner ---------- */
.l-inner {
  max-width: 99.2rem;
  margin-inline: auto;
}

/* ---------- button ---------- */
.c-btn-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 23.8rem;
  height: 6.4rem;
  border-radius: var(--radius-xsmall);
  box-shadow: var(--shadow-btn);
  transition: box-shadow var(--duration) ease-out;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn-primary {
    max-width: 32rem;
    height: 7rem;
    font-size: 2.4rem;
  }
}
.c-btn-primary::after {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  display: inline-block;
  width: 1rem;
  aspect-ratio: 10/16;
  content: "";
  background: currentcolor;
  mask-image: url("../img/icon_arrow.png");
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: transform var(--duration) ease-out;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn-primary::after {
    right: 2rem;
    width: 0.7rem;
  }
}
.c-btn-primary[data-color=gold] {
  color: var(--color-white);
  background: url("../img/btn_bg_gold.webp") no-repeat center/cover;
}
.c-btn-primary[data-color=white] {
  color: var(--color-secondary);
  background: url("../img/btn_bg_white.webp") no-repeat center/cover;
  border: 0.1rem solid currentcolor;
}
.c-btn-primary[data-color=gray] {
  color: var(--color-white);
  background-color: var(--color-gray);
}
@media (hover: hover) {
  .c-btn-primary:hover {
    box-shadow: 0 0 1rem 0 color-mix(in srgb, var(--color-white) 30%, transparent);
  }
  .c-btn-primary:hover::after {
    transform: translate(0.4rem, -50%);
  }
}

/* ---------- head ---------- */
.c-head-primary[data-position=center] {
  text-align: center;
}
.c-head-primary[data-position=left] {
  text-align: left;
}
.c-head-primary[data-position=right] {
  text-align: right;
}
.c-head-primary[data-color=white] span {
  color: var(--color-white);
}
.c-head-primary[data-color=primary] span {
  background: linear-gradient(to right, var(--color-bg));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-head-primary span {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 400;
  position: relative;
  display: inline-flex;
  gap: 4rem;
  align-items: center;
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .c-head-primary span {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.025em;
    gap: 1.2rem;
  }
}
.c-head-primary span::before, .c-head-primary span::after {
  display: inline-block;
  width: 2.8rem;
  aspect-ratio: 28/50;
  content: "";
  background: currentcolor;
  mask-image: url("../img/icon_head.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .c-head-primary span::before, .c-head-primary span::after {
    width: 1.4rem;
  }
}
.c-head-primary span::after {
  transform: scaleX(-1);
}

/* ---------- about ---------- */
.p-about__container {
  padding-block: 7.4rem 10.2rem;
}
@media screen and (max-width: 767px) {
  .p-about__container {
    padding-block: 3.5rem 5rem;
  }
}

.p-about__wrap {
  display: flex;
  gap: 6rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    flex-direction: column;
    gap: 3.2rem;
    padding-inline: 2rem;
  }
}

.p-about__content {
  width: 100%;
  max-width: 56rem;
}

.p-about__title {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.025em;
  }
}

.p-about__text {
  max-width: 52rem;
  margin-top: 3.8rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    margin-top: 3rem;
    line-height: 1.625;
  }
}

.p-about__sub {
  margin-top: 1.7rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__sub {
    margin-top: 1.8rem;
    line-height: 1.5555555556;
  }
}

.p-about__img {
  width: 100%;
  max-width: 40rem;
  box-shadow: var(--shadow-lv1);
}
@media screen and (max-width: 767px) {
  .p-about__img {
    max-width: 20rem;
  }
}
.p-about__img::before {
  top: 0;
  bottom: 0;
  transform: translate(-4rem, 4rem);
}
@media screen and (max-width: 767px) {
  .p-about__img::before {
    transform: translate(-2rem, 2rem);
  }
}

/* ---------- camp ---------- */
.p-camp__container {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-camp__container {
    padding-top: 2rem;
  }
}

.p-camp__wrap {
  padding: 1.5rem 1rem 1.8rem;
  background-image: linear-gradient(to right, var(--color-bg));
}
.p-camp__wrap::before {
  top: 0;
  left: 0;
}

.p-camp__title {
  font-family: var(--family-serif);
  color: var(--color-white);
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.875;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-camp__title {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
.p-camp__title b {
  font-size: 5.6rem;
  line-height: 0.8571428571;
  letter-spacing: -0.02em;
  font-weight: 400;
  display: inline-block;
  padding-inline: 0.4rem;
  background: linear-gradient(var(--color-text-primary));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-camp__title b {
    font-size: 3.2rem;
    line-height: 0.90625;
  }
}

.p-camp__sub {
  position: relative;
  display: inline-flex;
  gap: 2.2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-camp__sub {
    gap: 1rem;
    font-size: 1.6rem;
    line-height: 1.5625;
    letter-spacing: 0em;
    margin-bottom: 1.6rem;
  }
}
.p-camp__sub::before, .p-camp__sub::after {
  display: inline-block;
  width: 7.5rem;
  aspect-ratio: 75/28;
  content: "";
  background: linear-gradient(to left, var(--color-text-primary));
  mask-image: url("../img/icon_ribbon.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-camp__sub::before, .p-camp__sub::after {
    width: 2.3rem;
  }
}
.p-camp__sub::after {
  transform: scaleX(-1);
}

.p-camp__unit {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-camp__unit {
    font-size: 1.2rem;
  }
}

.p-camp__caution {
  font-family: var(--family-serif);
  color: var(--color-white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-camp__caution {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}

.p-camp__period {
  margin-top: 1.6rem;
  font-family: var(--family-serif);
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(var(--color-text-primary));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-camp__period {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

/* ---------- contact ---------- */
.p-contact {
  background-color: var(--color-bg-primary);
}

.p-contact__container {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    padding-block: 4rem 5rem;
  }
}

.p-contact__wrap {
  background-color: var(--color-white);
  box-shadow: var(--shadow-lv1);
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    overflow: hidden;
    border-radius: 0.2rem;
  }
}

.p-contact__title {
  position: relative;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  padding: 3.4rem 1rem 3.6rem;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(to right, var(--color-bg));
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    padding-block: 3.1rem;
  }
}
.p-contact__title::before, .p-contact__title::after {
  display: inline-block;
  width: 9.3rem;
  height: 0.5rem;
  content: "";
  background: url("../img/form_ttl_icon.webp") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact__title::before, .p-contact__title::after {
    content: none;
  }
}

.p-contact__content {
  padding: 0.1rem 4rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    padding: 0.3rem 2rem 3.2rem;
  }
}

.p-contact__col {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact__col {
    margin-top: 2rem;
  }
}

.p-contact__input {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}
.p-contact__input input[type=text],
.p-contact__input input[type=tel],
.p-contact__input input[type=email] {
  width: 100%;
  padding: 1.4rem 2.2rem;
  font-weight: 700;
  line-height: 2;
  background-color: var(--color-input-bg);
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=text],
  .p-contact__input input[type=tel],
  .p-contact__input input[type=email] {
    padding: 1.1rem 1.3rem;
    border-radius: 0.5rem;
  }
}
.p-contact__input input[type=text]::placeholder,
.p-contact__input input[type=tel]::placeholder,
.p-contact__input input[type=email]::placeholder {
  color: var(--color-input-placeholder);
}
.p-contact__input select {
  padding: 1.6rem 2.4rem;
  font-weight: 700;
  line-height: 2;
  cursor: pointer;
  background-color: var(--color-input-bg);
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input select {
    padding: 1rem 1.3rem;
    border-width: 0.1rem;
    border-radius: 0.5rem;
  }
}
.p-contact__input input[type=radio] {
  position: relative;
  width: 2.2rem;
  aspect-ratio: 1;
  margin-right: 1.5rem;
  cursor: pointer;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-input-border);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=radio] {
    width: 1.5rem;
    margin-right: 0.7rem;
    border-width: 0.1rem;
  }
}
.p-contact__input input[type=radio]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  aspect-ratio: 1;
  content: "";
  background: linear-gradient(to right, var(--color-bg));
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=radio]:checked::before {
    width: 0.9rem;
  }
}
.p-contact__input input[type=checkbox] {
  position: relative;
  width: 2.2rem;
  aspect-ratio: 1;
  margin-right: 1.3rem;
  cursor: pointer;
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-input-border);
  border-radius: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=checkbox] {
    width: 1.6rem;
    margin-right: 0.6rem;
    border-width: 0.1rem;
    border-radius: 0.1rem;
  }
}
.p-contact__input input[type=checkbox]:checked::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1.4rem;
  content: "";
  border-right: 0.3rem solid var(--color-primary);
  border-bottom: 0.3rem solid var(--color-primary);
  transform: translate(-50%, -60%) rotate(50deg);
}
@media screen and (max-width: 767px) {
  .p-contact__input input[type=checkbox]:checked::before {
    width: 0.6rem;
    height: 1rem;
    border-right: 0.2rem solid var(--color-primary);
    border-bottom: 0.2rem solid var(--color-primary);
  }
}

.p-contact__flex {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__flex {
    flex-direction: column;
    gap: 0;
  }
}
.p-contact__flex .p-contact__col {
  flex: 1;
}

.p-contact__caution {
  display: block;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__caution {
    margin-top: 0.9rem;
    font-size: 1.2rem;
  }
}

.p-contact__label {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    font-size: 1.4rem;
  }
}

.p-contact__input--flex {
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input--flex {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.p-contact__input-item input,
.p-contact__input-item select {
  width: 100%;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input-item input,
  .p-contact__input-item select {
    max-width: none;
  }
}

.p-contact__input--birth {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.p-contact__input--birth input {
  max-width: 17.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__input--birth input {
    max-width: 13.7rem;
  }
}
.p-contact__input--birth span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-contact__input--education .wpcf7-radio {
    gap: 2rem 3.8rem;
  }
  .p-contact__input--education .wpcf7-radio label {
    min-width: 9.7rem;
  }
}

.p-confirm-area__ttl {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-confirm-area__ttl {
    margin-top: 2rem;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
}

.p-confirm-area__txt {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-confirm-area__txt {
    font-size: 1.4rem;
  }
}

.p-confirm-area__input {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-confirm-area__input {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}

.p-confirm-area__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-confirm-area__btn-wrap {
    gap: 2rem;
    margin-top: 2.8rem;
  }
}
.p-confirm-area__btn-wrap .back_button::after {
  right: auto;
  left: 1.6rem;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-confirm-area__btn-wrap .back_button::after {
    left: 2rem;
  }
}
@media (hover: hover) {
  .p-confirm-area__btn-wrap .back_button:hover::after {
    transform: translate(-0.4rem, -50%) scale(-1, 1);
  }
}

.p-contact__btn {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-top: 2.8rem;
  }
}
.p-contact__btn .confirm_button {
  margin-inline: auto;
}
.p-contact__btn .confirm_button:disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: var(--color-disabled);
}

/* --- wpcf7 --- */
.wpcf7-radio,
.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio,
  .wpcf7-checkbox {
    gap: 2rem 4rem;
  }
}
.wpcf7-radio label,
.wpcf7-checkbox label {
  display: inline-flex;
  align-items: center;
  min-width: 10.6rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7-radio label,
  .wpcf7-checkbox label {
    min-width: auto;
  }
}

.wpcf7-form-control-wrap:has(select) {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:has(select) {
    display: block;
  }
}

.wpcf7-form-control-wrap:has(select)::before {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  z-index: 4;
  width: 0.9rem;
  height: 0.9rem;
  pointer-events: none;
  content: "";
  border-right: 0.2rem solid var(--color-black);
  border-bottom: 0.2rem solid var(--color-black);
  transform: translateY(-60%) rotate(45deg);
}

/* 確認画面と完了画面を非表示 */
.confirm-area {
  display: none;
}

/* デフォルトのサンクスメッセージを非表示 */
.wpcf7-response-output {
  display: none;
}

/* ---------- datepicker ---------- */
.ui-datepicker table,
.ui-datepicker thead,
.ui-datepicker tbody,
.ui-datepicker tr {
  display: revert;
}

.ui-datepicker .ui-datepicker-week-end:first-of-type {
  color: red;
}

.ui-datepicker .ui-datepicker-week-end:last-of-type {
  color: blue;
}

.ui-datepicker .ui-datepicker-current {
  display: none;
}

.ui-datepicker .ui-corner-all {
  cursor: pointer;
}

.ui-datepicker-calendar .day-sunday > a,
.ui-datepicker-calendar .day-holiday > a {
  background: #ffc0c0;
}

.ui-datepicker-calendar .day-saturday > a {
  background: #c0d0ff;
}

.ui-datepicker td > span, .ui-datepicker td > a {
  line-height: 2;
}

/* ---------- cta ---------- */
.p-cta {
  background: url("../img/cta_bg.jpg") no-repeat center/cover;
}

.p-cta__container {
  padding-block: 6.4rem 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-cta__container {
    padding-block: 3.5rem 4rem;
  }
}

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

.p-cta__title {
  flex: 1;
  min-width: max-content;
  font-family: var(--family-serif);
  color: var(--color-white);
  font-size: 4rem;
  line-height: 1.55;
  letter-spacing: 0.155em;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .p-cta__title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 2rem;
    line-height: 1.55;
    min-width: auto;
  }
}

.p-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 62.3rem;
  padding: 4.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-cta__content {
    max-width: none;
    padding: 2rem;
    border: 0.1rem solid var(--color-white);
  }
}
.p-cta__content::before, .p-cta__content::after {
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border: 0.1rem solid var(--color-white);
}
.p-cta__content::before {
  top: 0;
  left: 0;
  transform: translate(-0.2rem, -0.2rem);
}
@media screen and (max-width: 767px) {
  .p-cta__content::before {
    content: none;
  }
}
.p-cta__content::after {
  right: 0;
  bottom: 0;
  transform: translate(0.3rem, 0.3rem);
}

.p-cta__btn {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}

.p-cta__cap {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__cap {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
  }
}

.p-cta__tel {
  font-size: 2.4rem;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--color-white);
}
.p-cta__tel::before {
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 15/19;
  content: "";
  background: var(--color-white);
  mask-image: url("../img/icon_tel.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta__tel::before {
    width: 1.6rem;
    font-size: 2.8rem;
  }
}

.p-cta__info {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: var(--color-white);
}

/* ---------- data ---------- */
.p-data__container {
  padding-block: 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-data__container {
    padding-block: 4rem 5rem;
  }
}

.p-data__wrap {
  padding: 5.2rem 4rem 8rem;
  color: var(--color-white);
  background-color: var(--color-bg-secondary);
}
@media screen and (max-width: 767px) {
  .p-data__wrap {
    padding: 3.5rem 2rem 1.2rem;
  }
}

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

.p-data__content {
  flex: 1;
}

.p-data__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-data__title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.06em;
  }
}

.p-data__text {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-data__text {
    margin-top: 2.2rem;
    line-height: 1.625;
  }
}

.p-data__img {
  display: flex;
  flex: 1;
  justify-content: center;
}
.p-data__img img {
  width: 100%;
  max-width: 41.2rem;
}
@media screen and (max-width: 767px) {
  .p-data__img img {
    max-width: 20.6rem;
  }
}

.p-data__ratio {
  padding-top: 5.6rem;
  border-top: 0.1rem solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-data__ratio {
    padding-top: 2.9rem;
  }
}

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

.p-data__item {
  flex: 1;
}
.p-data__item:nth-of-type(1) .p-data__item-img {
  max-width: 23.4rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-data__item:nth-of-type(1) .p-data__item-img {
    max-width: 32rem;
  }
}
.p-data__item:nth-of-type(1) .p-data__caution {
  margin-top: 0.8rem;
}
.p-data__item:nth-of-type(2) .p-data__item-title {
  margin-inline: auto;
}
.p-data__item:nth-of-type(2) .p-data__item-img {
  max-width: 32.8rem;
  margin-left: -3.8rem;
  transform: translateX(-4%);
}
@media screen and (max-width: 1023px) {
  .p-data__item:nth-of-type(2) .p-data__item-img {
    margin-left: -2.4rem;
    transform: translateX(5%);
  }
}
@media screen and (max-width: 767px) {
  .p-data__item:nth-of-type(2) .p-data__item-img {
    max-width: 21.2rem;
    margin-inline: auto;
    transform: translateX(-2%);
  }
}
.p-data__item:nth-of-type(3) .p-data__item-title {
  margin-inline: auto 1rem;
}
@media screen and (max-width: 767px) {
  .p-data__item:nth-of-type(3) .p-data__item-title {
    margin-inline: auto;
  }
}
.p-data__item:nth-of-type(3) .p-data__item-img {
  max-width: 28rem;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .p-data__item:nth-of-type(3) .p-data__item-img {
    max-width: 18.2rem;
    margin-inline: auto;
  }
}

.p-data__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 23.4rem;
  background-image: linear-gradient(to right, var(--color-bg-tertiary));
  border-radius: 100vmax;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: 0.025em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-data__item-title {
    max-width: 16.7rem;
    margin-inline: auto;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.p-data__item-title sup {
  font-size: 1rem;
}

.p-data__item-img {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-data__item-img {
    margin-inline: auto;
    margin-top: 2rem;
  }
}

.p-data__caution {
  margin-top: 8rem;
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-data__caution {
    margin-top: 1.5rem;
  }
}

/* ---------- feature ---------- */
.p-feature__container {
  padding-top: 9.4rem;
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    padding-top: 4.6rem;
  }
}

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

.p-feature__item {
  color: var(--color-white);
  border: 0.1rem solid var(--color-white);
}
.p-feature__item:nth-of-type(2) .p-feature__item-title {
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .p-feature__item:nth-of-type(2) .p-feature__item-title {
    line-height: 1.25;
  }
}

.p-feature__item-inner {
  position: relative;
  height: 100%;
  padding: 3rem 3.6rem 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-inner {
    padding: 2.4rem 2rem;
  }
}
.p-feature__item-inner::before, .p-feature__item-inner::after {
  position: absolute;
  display: inline-block;
  width: 4.5rem;
  aspect-ratio: 1;
  content: "";
  background: var(--color-tertiary);
  mask-image: url("../img/icon_frame.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-feature__item-inner::before, .p-feature__item-inner::after {
    width: 2.2rem;
  }
}
.p-feature__item-inner::before {
  top: 1rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-inner::before {
    top: 0.5rem;
    right: 0.5rem;
  }
}
.p-feature__item-inner::after {
  bottom: 1rem;
  left: 1rem;
  transform: scale(-1, -1);
}
@media screen and (max-width: 767px) {
  .p-feature__item-inner::after {
    bottom: 0.5rem;
    left: 0.5rem;
  }
}

.p-feature__item-title {
  font-size: 2.4rem;
  line-height: 1.5833333333;
  letter-spacing: 0.025em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3.375em;
  font-family: var(--family-serif);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__item-title {
    min-height: auto;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.p-feature__item-img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-img {
    margin-top: 2.3rem;
  }
}

.p-feature__item-text {
  margin-top: 2.3rem;
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text {
    margin-top: 1.2rem;
    line-height: 1.625;
  }
}

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

.p-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.6rem;
  margin-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.4rem;
    margin-top: 3rem;
  }
}

.p-flow__item {
  position: relative;
  padding: 2.5rem 3.5rem 3rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lv2);
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 2rem;
  }
}
.p-flow__item::after {
  position: absolute;
  top: 50%;
  right: -1.9rem;
  display: inline-block;
  width: 1.8rem;
  aspect-ratio: 18/40;
  clip-path: var(--clip-triangle-right);
  content: "";
  background-image: linear-gradient(to right, var(--color-bg));
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .p-flow__item::after {
    inset: auto auto -1.2rem 50%;
    width: 4.5rem;
    height: 2rem;
    clip-path: var(--clip-triangle-bottom);
    transform: translate(-50%, 100%);
  }
}
.p-flow__item:last-of-type::after {
  content: none;
}

@media screen and (max-width: 767px) {
  .p-flow__item-head {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-flow__item-img {
    width: 100%;
    max-width: 12.5rem;
  }
}

.p-flow__item-title {
  margin-top: 2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    margin-top: 0;
  }
}

.p-flow__item-text {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.6875;
    letter-spacing: 0.025em;
  }
}
.p-flow__item-text a {
  text-decoration: underline;
}

/* ---------- footer ---------- */
.p-footer {
  background-color: var(--color-secondary);
}

.p-footer__container {
  padding-block: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    padding-block: 1.4rem;
  }
}

.p-footer__copyright {
  font-size: 1.4rem;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 1.2rem;
  }
}

/* ---------- form ---------- */
/* ---------- fv ---------- */
.p-fv {
  position: relative;
  background-image: linear-gradient(to left, var(--color-bg));
}
@media screen and (max-width: 767px) {
  .p-fv::before {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 100%;
    height: 3rem;
    clip-path: var(--clip-triangle-bottom-right);
    content: "";
    background-color: var(--color-bg-primary);
  }
}

.p-fv__container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__container {
    padding-block: 4rem 6rem;
  }
}

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

.p-fv__content {
  padding-block: 6.6rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    display: contents;
  }
}

.p-fv__head {
  max-width: 60.4rem;
}
@media screen and (max-width: 767px) {
  .p-fv__head {
    order: 0;
    max-width: 30.2rem;
    margin-inline: auto;
  }
}
.p-fv__head img {
  width: 100%;
}

.p-fv__sub {
  max-width: 47.9rem;
  margin-inline: auto;
  margin-top: 4rem;
}

.p-fv__cta {
  max-width: 58rem;
  padding: 3.2rem 4rem 2rem;
  margin-top: 4.2rem;
  background-color: color-mix(in srgb, var(--color-white) 30%, transparent);
  border: 0.1rem solid var(--color-white);
  box-shadow: var(--shadow-lv2);
}
@media screen and (max-width: 767px) {
  .p-fv__cta {
    order: 2;
    max-width: none;
    padding: 2.8rem 2rem 2rem;
    margin-top: 3.2rem;
  }
}

.p-fv__btn {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}

.p-fv__cap {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-fv__cap {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
  }
}

.p-fv__tel {
  font-size: 2.4rem;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--color-white);
}
.p-fv__tel::before {
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 15/19;
  content: "";
  background: var(--color-white);
  mask-image: url("../img/icon_tel.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-fv__tel::before {
    width: 1.6rem;
    font-size: 2.8rem;
  }
}

.p-fv__info {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: var(--color-white);
}

.p-fv__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 48.7554904832vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    position: static;
    order: 1;
    width: 100vw;
    height: auto;
    margin-top: 1.1rem;
    margin-left: calc(var(--container-spacing) * -1);
  }
}
.p-fv__img img {
  width: 100%;
  height: 100%;
  object-position: left;
}

/* ---------- header ---------- */
.p-header {
  background-color: var(--color-white);
}

.p-header__container {
  display: flex;
  justify-content: space-between;
  height: inherit;
}

.p-header__wrap {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__wrap {
    gap: 2.9rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 17rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 10.5rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__text {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-header__text {
    font-size: 1.1rem;
    line-height: 1.4545454545;
  }
}

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

.p-message__container {
  padding-block: 6.6rem 7.4rem;
}
@media screen and (max-width: 767px) {
  .p-message__container {
    padding-block: 3.8rem 26.5rem;
  }
}

.p-message__content {
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-message__content {
    max-width: max-content;
    margin-inline: auto;
  }
}

.p-message__title {
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-message__title {
    text-align: center;
  }
}
.p-message__title span {
  font-size: 3.2rem;
  line-height: 1.875;
  font-weight: 400;
  padding-bottom: 1rem;
  background-image: linear-gradient(var(--color-text), var(--color-text));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 0.1rem;
  box-decoration-break: slice;
}
@media screen and (max-width: 767px) {
  .p-message__title span {
    font-size: 2rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
  }
}

.p-message__text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-weight: 700;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    padding-inline: 2rem;
    margin-top: 2.7rem;
    line-height: 1.625;
  }
}
.p-message__text + .p-message__text {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-message__text + .p-message__text {
    margin-top: 1.1rem;
  }
}

.p-message__logo {
  width: 100%;
  max-width: 17rem;
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-message__logo {
    max-width: 12rem;
    margin-inline: auto;
    margin-top: 1.5rem;
  }
}

/* ---------- price ---------- */
.p-price {
  background-color: var(--color-bg-primary);
}

.p-price__container {
  padding-block: 9.2rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-price__container {
    padding-block: 5rem;
  }
}

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

.p-price__col {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lv1);
}
.p-price__col:nth-of-type(1) .p-price__title, .p-price__col:nth-of-type(2) .p-price__title {
  position: relative;
}
.p-price__col:nth-of-type(1) .p-price__title::before, .p-price__col:nth-of-type(1) .p-price__title::after, .p-price__col:nth-of-type(2) .p-price__title::before, .p-price__col:nth-of-type(2) .p-price__title::after {
  position: absolute;
  display: inline-block;
  width: 4.5rem;
  aspect-ratio: 1;
  content: "";
  background: var(--color-tertiary);
  mask-image: url("../img/icon_frame.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-price__col:nth-of-type(1) .p-price__title::before, .p-price__col:nth-of-type(1) .p-price__title::after, .p-price__col:nth-of-type(2) .p-price__title::before, .p-price__col:nth-of-type(2) .p-price__title::after {
    width: 2.2rem;
  }
}
.p-price__col:nth-of-type(1) .p-price__title::before, .p-price__col:nth-of-type(2) .p-price__title::before {
  top: 0.5rem;
  right: 0.5rem;
}
.p-price__col:nth-of-type(1) .p-price__title::after, .p-price__col:nth-of-type(2) .p-price__title::after {
  bottom: 0.5rem;
  left: 0.5rem;
  transform: scale(-1, -1);
}
.p-price__col:nth-of-type(3) {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 1023px) {
  .p-price__col:nth-of-type(3) {
    grid-area: auto;
  }
}
.p-price__col:nth-of-type(3) .p-price__body {
  padding-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-price__col:nth-of-type(3) .p-price__body {
    padding-bottom: 2.8rem;
  }
}

.p-price__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.6rem;
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 400;
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-price__title {
    height: 4rem;
    font-size: 2rem;
    line-height: 1.2;
  }
}

.p-price__icon {
  position: relative;
  display: inline-flex;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-price__icon {
    gap: 1.6rem;
  }
}
.p-price__icon::before, .p-price__icon::after {
  display: inline-block;
  width: 7.5rem;
  aspect-ratio: 75/28;
  content: "";
  background: linear-gradient(to left, var(--color-bg));
  mask-image: url("../img/icon_ribbon.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-price__icon::before, .p-price__icon::after {
    width: 3.7rem;
  }
}
.p-price__icon::after {
  transform: scaleX(-1);
}

.p-price__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 3.2rem;
  padding: 3.4rem 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-price__body {
    gap: 1.9rem;
    padding: 2.2rem 2rem 2.8rem;
  }
}

.p-price__text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__text {
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.025em;
  }
}

.p-price__list {
  flex: 1;
  margin-left: 1.5em;
  list-style: disc;
}

.p-price__item {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__item {
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.025em;
  }
}
.p-price__item + .p-price__item {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-price__item + .p-price__item {
    margin-top: 0;
  }
}

.p-price__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.p-price__table thead th:first-of-type {
  width: 13.2rem;
}
@media screen and (max-width: 767px) {
  .p-price__table thead th:first-of-type {
    width: 10.3rem;
  }
}
.p-price__table thead th:nth-of-type(2) {
  background-color: #020b20;
}
.p-price__table tbody tr:nth-of-type(6) td {
  letter-spacing: 0;
}
.p-price__table tbody tr:nth-of-type(6) td s,
.p-price__table tbody tr:nth-of-type(6) td b {
  letter-spacing: 0;
}
.p-price__table th,
.p-price__table td {
  height: 4rem;
  padding: 0.8rem 0.4rem;
  text-align: center;
  vertical-align: middle;
  border: 0.1rem solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__table th,
  .p-price__table td {
    font-size: 1.2rem;
  }
}
.p-price__table th {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.p-price__table th span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-price__table th span {
    font-size: 1.1rem;
  }
}

.p-price__camp b span {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-price__camp b span {
    font-size: 1.8rem;
  }
}

.p-price__set {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 87rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .p-price__set {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
}

.p-price__plus {
  position: relative;
  display: block;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  margin-top: 12rem;
}
@media screen and (max-width: 1023px) {
  .p-price__plus {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-price__plus {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
  }
}
.p-price__plus::before, .p-price__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 100%;
  height: 0.3rem;
  content: "";
  background-color: var(--color-secondary);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-price__plus::before, .p-price__plus::after {
    height: 0.2rem;
  }
}
.p-price__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ---------- support ---------- */
.p-support {
  background: url("../img/support_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-support {
    background: url("../img/support_bg_sp.webp") no-repeat center bottom 20%/cover;
  }
}

.p-support__container {
  padding-block: 9.4rem;
}
@media screen and (max-width: 767px) {
  .p-support__container {
    padding-block: 4rem 29.6rem;
  }
}

.p-support__content {
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-support__content {
    max-width: max-content;
    margin-inline: auto;
  }
}

.p-support__title {
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-support__title {
    text-align: center;
  }
}
.p-support__title span {
  font-size: 4rem;
  line-height: 1.7;
  font-weight: 400;
  padding-bottom: 1rem;
  background-image: linear-gradient(var(--color-text), var(--color-text));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 0.1rem;
  box-decoration-break: slice;
}
@media screen and (max-width: 767px) {
  .p-support__title span {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    letter-spacing: 0.1em;
  }
}

.p-support__text {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-support__text {
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.025em;
    padding-inline: 2rem;
    margin-top: 3.2rem;
  }
}
.p-support__text + .p-support__text {
  margin-top: 1.7777777778em;
}
@media screen and (max-width: 767px) {
  .p-support__text + .p-support__text {
    margin-top: 1.625em;
  }
}

/* ---------- voice ---------- */
.p-voice__container {
  padding-block: 12rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-voice__container {
    padding-block: 5rem 5.5rem;
  }
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.p-voice__item::before {
  right: 0;
  bottom: 0;
  transform: translate(2rem, 2rem);
}
@media screen and (max-width: 767px) {
  .p-voice__item::before {
    transform: translate(0.5rem, 0.5rem);
  }
}

.p-voice__item-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5rem;
  align-items: center;
  padding: 4rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lv2);
}
@media screen and (max-width: 767px) {
  .p-voice__item-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2rem 2.7rem;
  }
}
.p-voice__item-inner::before, .p-voice__item-inner::after {
  position: absolute;
  z-index: -1;
  display: inline-block;
  width: 3.6rem;
  aspect-ratio: 1;
  content: "";
  background: url("../img/voice_frame.png") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-voice__item-inner::before, .p-voice__item-inner::after {
    width: 2.2rem;
  }
}
.p-voice__item-inner::before {
  top: 1rem;
  left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-inner::before {
    top: 0.5rem;
    left: 0.5rem;
  }
}
.p-voice__item-inner::after {
  right: 1rem;
  bottom: 1rem;
  transform: scale(-1, -1);
}
@media screen and (max-width: 767px) {
  .p-voice__item-inner::after {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

.p-voice__item-img {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 17.2rem;
}
.p-voice__item-img img {
  max-width: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-img img {
    max-width: 5.5rem;
  }
}

.p-voice__item-content {
  flex: 1;
}

.p-voice__item-col + .p-voice__item-col {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-col + .p-voice__item-col {
    margin-top: 2.3rem;
  }
}

.p-voice__item-name {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 400;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-family: var(--family-serif);
}
@media screen and (max-width: 767px) {
  .p-voice__item-name {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    gap: 0.8rem;
  }
}
.p-voice__item-name span {
  padding-inline: 0.7rem;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-voice__item-name span {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    padding-inline: 0.4rem;
  }
}

.p-voice__item-text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-voice__item-text {
    margin-top: 0.9rem;
    line-height: 1.625;
  }
}

/* ---------- animation ---------- */
.js-fv-slide {
  clip-path: inset(0 100% 0 0);
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

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

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

/* ---------- 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-image: linear-gradient(to right, 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-image: linear-gradient(to right, var(--color-bg-tertiary));
}

.u-bgcolor-text-primary {
  background-image: linear-gradient(to right, var(--color-text-primary));
}

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

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

/* ---------- border ---------- */
.u-border-gold {
  position: relative;
  z-index: 1;
}
.u-border-gold::before {
  position: absolute;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, var(--color-border-primary)) border-box border-box;
  border: 0.2rem solid transparent;
  mask: linear-gradient(var(--color-white) 0 0) padding-box, linear-gradient(var(--color-white) 0 0) border-box;
  mask-composite: destination-out;
  mask-composite: exclude;
}
@media screen and (max-width: 767px) {
  .u-border-gold::before {
    border-width: 0.1rem;
  }
}

: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-white {
  color: var(--color-white);
}

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

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

.u-color-bg-base {
  background: linear-gradient(to right, var(--color-bg));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ---------- 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 (width <= 767px) {
  [data-only-device=md] {
    display: none;
  }
}

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

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