@charset "UTF-8";
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
:root {
  /* --- container --- */
  --container: min(1200px, 100%);
  --container-spacing: 1.6rem;
  /* --- inner --- */
  --inner: min(104rem, 100%);
  --inner-sm: min(96rem, 100%);
  /* --- z-index --- */
  --z-index-header: 900;
  /* --- color --- */
  /* base */
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #f2f2f2;
  /* main */
  --color-primary: #002956;
  --color-secondary: #ff4200;
  --color-tertiary: #4444b8;
  --color-accent: #408f95;
  /* text */
  --color-text: #000;
  --color-text-primary: ;
  /* border */
  --color-border: #ccc;
  --color-border-primary: #0b4484;
  /* gradation */
  --color-gradation-primary: #0a2b4e, #03659d;
  --color-gradation-secondary: #ff4200, #f60;
  --color-gradation-tertiary: #f00, #ac1c00;
  /* background */
  --color-bg: #f6f6f6;
  --color-bg-primary: #f1f8ff;
  --color-bg-secondary: #ffded2;
  --color-bg-tertiary: var(--color-tertiary);
  --color-bg-cta: #002956, #0b4584;
  /* status */
  --color-success: #127e6b;
  --color-important: #cd2b31;
  --color-disabled: #ddd;
  /* radius */
  --radius-xsmall: 0.5rem;
  --radius-small: 1rem;
  --radius-medium: 2rem;
  --radius-circle: 50%;
  --radius-max: 100vmax;
  /* shadow */
  --shadow-lv1: 0 0 0 0 rgb(0 0 0 / 20%);
  --shadow-lv2: 0 0 2rem 0 rgb(0 0 0 / 20%);
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  /* font-family */
  --family-sans:
    "Noto Sans JP", 遊ゴシック体, "Yu Gothic", yugothic, "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", メイリオ, meiryo, osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  --family-serif:
    "Noto Serif JP", "游明朝", 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: 9rem;
}
@media screen and (max-width: 767px) {
  :root {
    --radius-xsmall: 0.2rem;
    --radius-small: 0.5rem;
    --radius-medium: 1rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 5.5rem;
  }
}

/* ----------------------------------------------------
settings
---------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 10px;
}
@media screen and (max-width: 1232px) {
  html {
    font-size: 0.8116883117vw;
  }
}
@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 (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-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);
}

main {
  margin-top: var(--header-height);
}

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

/* ---------- header ---------- */
.l-header {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: var(--header-height);
}

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

.l-inner-sm {
  width: 100%;
  max-width: var(--inner-sm);
  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-gray);
  border-radius: var(--radius-small);
}

.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: block;
  padding: 3.7rem 10rem 3.7rem 11.2rem;
  color: var(--color-primary);
  text-align: justify;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    display: flex;
    align-items: center;
    min-height: 7rem;
    padding: 1.6rem 4.8rem 1.2rem 3.2rem;
  }
}
.c-accordion__summary::before {
  position: absolute;
  top: 3.6rem;
  left: 5.9rem;
  display: inline-block;
  content: "Q.";
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before {
    top: 1.5rem;
    left: 0.9rem;
  }
}

.c-accordion__btn {
  position: absolute;
  top: 3.1rem;
  right: 4rem;
  width: 4rem;
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
}
@media screen and (max-width: 767px) {
  .c-accordion__btn {
    top: 2rem;
    right: 0.8rem;
    width: 3rem;
  }
}
.c-accordion__btn::before,
.c-accordion__btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2.1rem;
  height: 0.3rem;
  content: "";
  background-color: var(--color-white);
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  .c-accordion__btn::before,
  .c-accordion__btn::after {
    width: 1.6rem;
    height: 0.2rem;
  }
}
.c-accordion__btn::after {
  transition: rotate var(--duration) ease;
  rotate: 90deg;
}

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

.c-accordion__target {
  overflow: hidden;
}

.c-accordion__contents {
  position: relative;
  padding: 0 10rem 3.4rem 11.2rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__contents {
    padding: 0 4.8rem 1.2rem 3.2rem;
  }
}
.c-accordion__contents::before {
  position: absolute;
  top: 0;
  left: 5.9rem;
  display: inline-block;
  font-weight: 700;
  content: "A.";
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-accordion__contents::before {
    font-size: 1.6rem;
    line-height: 1.5;
    left: 0.8rem;
  }
}

.c-accordion__text {
  margin-top: -0.6rem;
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-accordion__text {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

/* ---------- button ---------- */
.c-btn-primary {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 60rem;
  height: 8.8rem;
  padding-left: 2.8rem;
  color: var(--color-white);
  background-image: linear-gradient(var(--color-gradation-tertiary));
  border-radius: var(--radius-max);
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, 0.24);
  transition:
    transform var(--duration) ease,
    box-shadow var(--duration) ease;
  font-size: 4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn-primary {
    position: relative;
    max-width: 31.1rem;
    height: 5.4rem;
    padding-left: 0;
    font-size: 2.8rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.24);
  }
}
.c-btn-primary::after {
  display: inline-block;
  width: 1.4rem;
  aspect-ratio: 14/24;
  content: "";
  background: var(--color-white);
  mask-image: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/icon_arrow.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .c-btn-primary::after {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    width: 0.9rem;
    transform: translateY(-50%);
  }
}
@media (hover: hover) {
  .c-btn-primary:hover {
    box-shadow: none;
    transform: translate(1rem, 1rem);
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .c-btn-primary:hover {
    transform: translate(0.5rem, 0.5rem);
  }
}

/* ---------- cta ---------- */
.c-cta {
  max-width: 100.8rem;
  padding: 0.4rem;
  margin-inline: auto;
  border: 0.1rem solid var(--color-border-primary);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding: 0.2rem;
  }
}

.c-cta__inner {
  padding: 3.1rem 1.4rem 3.4rem;
  background-image: linear-gradient(to right, var(--color-bg-cta));
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .c-cta__inner {
    padding: 1rem 0.4rem 2rem;
  }
}

.c-cta__title {
  font-size: 4rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cta__title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
}

.c-cta__btn {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    padding-inline: 1rem;
    margin-top: 1.5rem;
  }
}

/* ---------- actually ---------- */
.p-actually {
  position: relative;
  z-index: 1;
}
.p-actually::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 50rem;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/actually_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-actually::before {
    height: 28rem;
  }
}

.p-actually__container {
  padding-block: 3rem 13.7rem;
}
@media screen and (max-width: 767px) {
  .p-actually__container {
    padding-block: 1.2rem 4.8rem;
  }
}

.p-actually__body {
  display: flex;
  flex-direction: column-reverse;
  gap: 6rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-actually__body {
    gap: 1rem;
  }
}

.p-actually__title {
  text-align: center;
}
.p-actually__title span {
  position: relative;
  display: inline-block;
  font-size: 4.8rem;
  line-height: 1.0416666667;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-actually__title span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-actually__title span {
    white-space: nowrap;
    font-size: 2.4rem;
    line-height: 1.7916666667;
  }
}
.p-actually__title span::before {
  position: absolute;
  bottom: -3.2rem;
  left: 0;
  display: inline-block;
  width: 96%;
  height: 1.6rem;
  content: "";
  background: linear-gradient(to right, #e25a00, #ff4200);
  mask-image: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/icon_line.webp");
  mask-repeat: repeat-x;
  mask-position: left;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-actually__title span::before {
    bottom: -0.9rem;
    height: 0.8rem;
  }
}
.p-actually__title b {
  font-size: 160%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-actually__title b {
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

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

.p-actually__text {
  width: 100%;
  max-width: 50rem;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-actually__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-actually__text b {
  font-weight: 500;
}

.p-actually__img {
  width: 100%;
  max-width: 45.5rem;
}
@media screen and (max-width: 767px) {
  .p-actually__img {
    max-width: 22.7rem;
  }
}
.p-actually__img img {
  border-radius: var(--radius-small);
}

/* ---------- assumption ---------- */
.p-assumption {
  position: relative;
}
.p-assumption::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 31.1rem;
  aspect-ratio: 311/82;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/assumption_arrow.webp") center/contain no-repeat;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-assumption::before {
    width: 15.5rem;
  }
}

.p-assumption__container {
  padding-block: 7.6rem 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-assumption__container {
    padding-block: 4rem 5.3rem;
  }
}

.p-assumption__wrap {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/assumption_bg.webp") no-repeat center/cover;
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .p-assumption__wrap {
    padding-block: 2.7rem 12.7rem;
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/assumption_bg_sp.webp") no-repeat center/cover;
  }
}
.p-assumption__wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(#0a2c4f, #04639a, #0a2c4f) border-box border-box;
  border: 0.4rem solid transparent;
  border-radius: inherit;
  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) {
  .p-assumption__wrap::before {
    border-width: 0.2rem;
  }
}

.p-assumption__title {
  font-size: 3.4rem;
  line-height: 1.4705882353;
  letter-spacing: 0em;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-assumption__title {
    width: 100%;
    max-width: max-content;
    margin-inline: auto;
    font-size: 2rem;
    line-height: 1.55;
    letter-spacing: 0em;
  }
}
.p-assumption__title b {
  font-size: 3.4rem;
  line-height: 1.1764705882;
  letter-spacing: 0em;
  font-weight: 500;
  display: inline-block;
  padding-inline: 1rem;
  color: var(--color-white);
  background-image: linear-gradient(to right, var(--color-gradation-primary));
}
@media screen and (max-width: 767px) {
  .p-assumption__title b {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    padding-inline: 0.5rem;
  }
}

.p-assumption__img {
  position: absolute;
  right: 4.8rem;
  bottom: 0.4rem;
  width: 23.2rem;
}
@media screen and (max-width: 1023px) {
  .p-assumption__img {
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-assumption__img {
    right: 1.1rem;
    width: 7.8rem;
  }
}

/* ---------- cta ---------- */
@media screen and (max-width: 767px) {
  .p-cta__container {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__container .c-cta {
    padding: 0.2rem 0;
    border-width: 0.1rem 0;
  }
}

/* ---------- faq ---------- */
.p-faq__container {
  padding-block: 9.8rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    padding-block: 4.2rem 4rem;
  }
}

.p-faq__title {
  font-size: 5.6rem;
  line-height: 1.0714285714;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

.p-faq__wrap {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-faq__wrap {
    margin-top: 2.8rem;
  }
}

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

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

.p-footer__copyright {
  color: var(--color-white);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 400;
}

/* ---------- form ---------- */
/* ---------- fv ---------- */
.p-fv {
  overflow: hidden;
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/fv_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-fv {
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/fv_bg_sp.webp") no-repeat center/cover;
  }
}

.p-fv__container {
  padding-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__container {
    padding-block: 1.5rem 4.3rem;
  }
}

.p-fv__wrap {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-fv__wrap {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

.p-fv__content {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__content {
    display: contents;
  }
}

.p-fv__title {
  width: 100%;
  max-width: 66.6rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__title {
    order: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    max-width: 33rem;
  }
}

.p-fv__desc {
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__desc {
    order: 2;
    margin-top: -1.7rem;
  }
}

.p-fv__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__list {
    justify-content: center;
  }
}

.p-fv__item {
  width: 24.3rem;
  padding: 0.4rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-fv__item {
    width: 10.8rem;
    font-size: 1.5rem;
    line-height: 1.4666666667;
    letter-spacing: 0em;
    padding: 1.2rem 0;
  }
}

.p-fv__text {
  margin-top: 2.9rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-top: 1.2rem;
  }
}
.p-fv__text span {
  font-size: 3.6rem;
  line-height: 1.3888888889;
  letter-spacing: 0.115em;
  font-weight: 700;
  background: linear-gradient(transparent 70%, var(--color-bg-secondary) 70%);
}
@media screen and (max-width: 767px) {
  .p-fv__text span {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.09em;
  }
}

.p-fv__img {
  width: 100%;
  max-width: 46rem;
  margin-right: -3rem;
}
@media screen and (max-width: 1023px) {
  .p-fv__img {
    order: 1;
    margin-top: 2.1rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    max-width: 23rem;
  }
}

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

.p-header__container {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-left: 8.4rem;
}
@media screen and (max-width: 1023px) {
  .p-header__container {
    padding-left: 1.3rem;
  }
}

.p-header__logo {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  width: 100%;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    gap: 0.6rem;
    height: 2.2rem;
  }
}
.p-header__logo p {
  font-size: 2.4rem;
  font-weight: 500;
  font-size: 1.5rem;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__logo-company {
  width: 100%;
  max-width: 23.4rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-company {
    max-width: 14.9rem;
  }
}

.p-header__logo-item {
  width: 100%;
  max-width: 15.8rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-item {
    max-width: 9.3rem;
  }
}

.p-header__nav {
  position: relative;
  display: flex;
  flex: 1;
  gap: 2.4rem;
  justify-content: flex-end;
  height: inherit;
}

.p-header__nav-btn {
  display: flex;
  align-items: center;
}
.p-header__nav-btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 20.3rem;
  height: 100%;
  padding-inline: 4rem;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(var(--color-gradation-tertiary));
  border-bottom-left-radius: 2rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, 0.08);
  transition:
    opacity var(--duration) ease,
    box-shadow var(--duration) ease;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.095em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-header__nav-btn a {
    width: 10.1rem;
    padding-inline: 0.8rem;
    border-bottom-left-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.08);
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }
}
.p-header__nav-btn a::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  display: inline-block;
  width: 1rem;
  aspect-ratio: 10/16;
  content: "";
  background: var(--color-white);
  mask-image: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/icon_arrow.webp");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-header__nav-btn a::after {
    content: none;
  }
}
@media (hover: hover) {
  .p-header__nav-btn a:hover {
    box-shadow: none;
  }
}

/* ---------- key ---------- */
.p-key__container {
  padding-block: 9.4rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-key__container {
    padding-block: 3rem 4.5rem;
  }
}

.p-key__title {
  text-align: center;
  font-size: 4.8rem;
  line-height: 2.1041666667;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-key__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-key__title {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.p-key__title b {
  font-size: 160%;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-key__title b {
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}

.p-key__aboout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-key__aboout {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.p-key__aboout-img {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-key__aboout-img {
    gap: 2rem;
    justify-content: center;
  }
}

.p-key__aboout-picture {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 25.7rem;
}
@media screen and (max-width: 767px) {
  .p-key__aboout-picture {
    max-width: 12.8rem;
  }
}
.p-key__aboout-picture::before {
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/key_shadow.webp") center/contain no-repeat;
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .p-key__aboout-picture::before {
    right: -0.4rem;
    bottom: -0.4rem;
  }
}
.p-key__aboout-picture:nth-of-type(2) {
  margin-top: 13.5rem;
}
@media screen and (max-width: 767px) {
  .p-key__aboout-picture:nth-of-type(2) {
    margin-top: 6.7rem;
  }
}
.p-key__aboout-picture img {
  border-radius: var(--radius-small);
}

.p-key__aboout-content {
  width: 100%;
  max-width: 58rem;
  padding: 3rem 4rem;
  margin-top: 3.6rem;
  background-color: var(--color-white);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .p-key__aboout-content {
    padding: 1.5rem 1.6rem 1.3rem;
    margin-top: 0;
  }
}

.p-key__aboout-text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-key__aboout-text {
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
.p-key__aboout-text b {
  font-weight: 500;
}

.p-key__solution {
  padding: 1rem;
  margin-top: 9rem;
  border: 0.4rem solid var(--color-secondary);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .p-key__solution {
    padding: 0.3rem;
    margin-top: 2.4rem;
    border-width: 0.2rem;
  }
}

.p-key__solution-inner {
  position: relative;
  padding: 4.8rem 2rem 5.6rem;
  background-color: var(--color-white);
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .p-key__solution-inner {
    padding: 1.7rem 0.8rem 2rem;
  }
}
.p-key__solution-inner::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 31.1rem;
  aspect-ratio: 311/48;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/key_arrow.webp") center/contain no-repeat;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 767px) {
  .p-key__solution-inner::before {
    bottom: -0.5rem;
    width: 15.5rem;
  }
}

.p-key__solution-sub {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5625;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-key__solution-sub {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    letter-spacing: 0.025em;
  }
}
.p-key__solution-sub > span {
  font-size: 4rem;
}
.p-key__solution-sub b {
  font-size: 6.4rem;
  line-height: 1.3125;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-key__solution-sub b {
    font-size: 2.8rem;
    line-height: 1.7857142857;
    letter-spacing: 0.05em;
  }
  .p-key__solution-sub b span {
    font-size: 3.2rem;
    line-height: 1.5625;
    letter-spacing: 0em;
  }
}
.p-key__solution-sub u {
  text-decoration: none;
  background: linear-gradient(transparent 75%, var(--color-bg-secondary) 75%);
}
@media screen and (max-width: 767px) {
  .p-key__solution-sub u {
    letter-spacing: 0.025em;
  }
}

.p-key__solution-wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 4.2rem;
  background-color: var(--color-bg);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 767px) {
  .p-key__solution-wrap {
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.5rem 1.6rem 2rem;
    margin-top: 2rem;
  }
}

.p-key__solution-text {
  width: 100%;
  max-width: 41.6rem;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-key__solution-text {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-key__solution-img {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 41.6rem;
  padding-left: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-key__solution-img {
    gap: 1rem;
    justify-content: center;
    padding-left: 0;
  }
}

.p-key__solution-picture {
  width: 100%;
  max-width: 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-key__solution-picture {
    max-width: 8.7rem;
  }
}
.p-key__solution-picture:nth-of-type(2) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-key__solution-picture:nth-of-type(2) {
    margin-top: 1rem;
  }
}
.p-key__solution-picture img {
  border-radius: var(--radius-small);
  box-shadow: 1rem 0.5rem 2.4rem rgba(0, 0, 0, 0.21);
}

/* ---------- point ---------- */
.p-point {
  margin-block: 6rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-point {
    margin-block: 2rem 3.5rem;
  }
}

.p-point__head {
  display: flex;
  flex-direction: column;
  gap: 3.7rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-point__head {
    gap: 1.8rem;
  }
}
.p-point__head:has(.p-point__title-num) {
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-point__head:has(.p-point__title-num) {
    gap: 1.7rem;
  }
}

.p-point__num {
  width: 100%;
  max-width: 37.4rem;
  font-size: 3.2rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_head.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-point__num {
    max-width: 18.8rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-point__title {
  font-size: 5.6rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-point__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
.p-point__title b {
  font-size: 160%;
  font-weight: 500;
  line-height: 1;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-point__title b {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-point__title span {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
  }
}
.p-point__title .p-point__title-num {
  font-size: 180%;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-point__title .p-point__title-num {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}

.p-point__text {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-point__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

/* --- 01 --- */
.p-point-01 {
  position: relative;
  z-index: 1;
}
.p-point-01::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 40.6rem;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg01.webp") center top/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-point-01::before {
    height: 21.8rem;
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg01_sp.webp") center top/cover no-repeat;
  }
}

.p-point-01__container {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__container {
    padding-bottom: 2.1rem;
  }
}

.p-point-01__wrap {
  display: flex;
  gap: 4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__wrap {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
    margin-top: 2.5rem;
  }
}

.p-point-01__content {
  flex: 1;
  padding-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__content {
    padding-top: 0;
  }
}

.p-point-01__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-point-01__img {
    max-width: 21rem;
  }
}
.p-point-01__img img {
  display: block;
  width: 100%;
  max-width: 42.1rem;
  margin-inline: auto 0;
  border-radius: var(--radius-small);
}

.p-point-01__list {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__list {
    gap: 0.4rem;
    margin-top: 2.4rem;
  }
}

.p-point-01__item {
  width: 100%;
  max-width: 15.3rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__item {
    max-width: 7.6rem;
  }
}

/* --- support --- */
.p-point-support {
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/support_bg.webp") no-repeat center right 30% /
    cover;
}
@media screen and (max-width: 767px) {
  .p-point-support {
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/support_bg_sp.webp") no-repeat center/cover;
  }
}

.p-point-support__container {
  padding-block: 7.4rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-point-support__container {
    padding-block: 3.5rem 21.1rem;
  }
}

.p-point-support__title {
  color: var(--color-white);
  text-align: center;
  text-shadow: 0.6rem 0.6rem 0 rgba(127, 36, 0, 0.2);
  font-size: 4rem;
  line-height: 1.55;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-point-support__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point-support__title {
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1.55;
    letter-spacing: 0em;
  }
}

/* --- 02 --- */
.p-point-02 {
  overflow: hidden;
}

.p-point-02__container {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-point-02__container {
    padding-top: 4rem;
  }
}

.p-point-02__wrap {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 6rem 4rem;
}
@media screen and (max-width: 1023px) {
  .p-point-02__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point-02__wrap {
    padding-block: 0;
    margin-top: 2.4rem;
  }
}
.p-point-02__wrap::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: inline-block;
  width: 100vw;
  height: 100%;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg02.webp") right/cover no-repeat;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-point-02__wrap::before {
    top: 55%;
    height: 32.2rem;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg02_sp.webp") right/cover no-repeat;
  }
}

.p-point-02__img {
  width: 100%;
  max-width: 29.9rem;
  margin-left: -2rem;
}
@media screen and (max-width: 1023px) {
  .p-point-02__img {
    grid-area: 2/1/3/2;
    max-width: none;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-point-02__img {
    gap: 2.2rem 2rem;
  }
}

.p-point-02__sub {
  width: 100%;
  max-width: max-content;
  padding-bottom: 4.8rem;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-point-02__sub {
    grid-area: 1/1/2/3;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-point-02__sub {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    padding-bottom: 0;
    text-align: justify;
  }
}

.p-point-02__achieve {
  width: 100%;
  max-width: 29.9rem;
  margin-right: -2rem;
}
@media screen and (max-width: 1023px) {
  .p-point-02__achieve {
    grid-area: 2/2/3/3;
    max-width: none;
    margin-right: 0;
  }
}
.p-point-02__achieve img {
  display: block;
  width: 100%;
  max-width: 18rem;
}
@media screen and (max-width: 1023px) {
  .p-point-02__achieve img {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-point-02__achieve img {
    max-width: 9rem;
  }
}

/* --- 03 --- */
.p-point-03 {
  position: relative;
  z-index: 1;
}
.p-point-03::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 36.6rem;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg03.webp") center top/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-point-03::before {
    height: 25.4rem;
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/point_bg03_sp.webp") center top/cover no-repeat;
  }
}

.p-point-03__container {
  padding-block: 9.6rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-point-03__container {
    padding-block: 5.8rem 0;
  }
}

.p-point-03__wrap {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-point-03__wrap {
    flex-direction: column;
    gap: 1.7rem;
    align-items: center;
    margin-top: 2.8rem;
  }
}

.p-point-03__content {
  flex: 1;
  padding-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-point-03__content {
    padding-top: 0;
  }
}

.p-point-03__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-point-03__img {
    max-width: 23rem;
    margin-bottom: -1.2rem;
  }
}
.p-point-03__img img {
  display: block;
  width: 100%;
  max-width: 34.6rem;
  margin-inline: auto 4rem;
}
@media screen and (max-width: 767px) {
  .p-point-03__img img {
    max-width: none;
    margin-inline: 0;
  }
}

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

.p-subscription__body {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-small);
}
.p-subscription__body::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to left, var(--color-gradation-secondary)) border-box border-box;
  border: 0.4rem solid transparent;
  border-radius: inherit;
  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) {
  .p-subscription__body::before {
    border-width: 0.2rem;
  }
}

.p-subscription__title {
  padding: 1rem;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(to left, var(--color-gradation-secondary)) border-box border-box;
  font-size: 5.6rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-subscription__title {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
  }
}

.p-subscription__inner {
  padding: 6rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-subscription__inner {
    padding: 3.2rem 1.6rem 3.8rem;
  }
}

.p-subscription__desc {
  position: relative;
  padding-block: 3.1rem 3.9rem;
}
@media screen and (max-width: 767px) {
  .p-subscription__desc {
    padding-block: 1.7rem 1.9rem;
  }
}
.p-subscription__desc::before,
.p-subscription__desc::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.4rem;
  content: "";
  background: linear-gradient(to left, var(--color-gradation-secondary)) border-box border-box;
}
@media screen and (max-width: 767px) {
  .p-subscription__desc::before,
  .p-subscription__desc::after {
    height: 0.2rem;
  }
}
.p-subscription__desc::before {
  top: 0;
}
.p-subscription__desc::after {
  bottom: 0;
}

.p-subscription__sub {
  font-size: 4.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(to left, var(--color-gradation-secondary));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-subscription__sub {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}

.p-subscription__text {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  text-align: center;
}
.p-subscription__text::before {
  content: "※";
}
@media screen and (max-width: 767px) {
  .p-subscription__text {
    width: calc(100% - 3.2rem);
    padding-left: 1em;
    margin-inline: auto;
    margin-top: 1.4rem;
    text-align: justify;
    text-indent: -1.3em;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}

.p-subscription__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 6.8rem;
}
@media screen and (max-width: 1023px) {
  .p-subscription__wrap {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-subscription__wrap {
    margin-top: 2.8rem;
  }
}

.p-subscription__cap {
  display: block;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subscription__cap {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    text-align: center;
  }
}

.p-subscription__price {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subscription__price {
    font-size: 3.8rem;
  }
}
.p-subscription__price b {
  position: relative;
  display: inline-block;
  font-size: 220%;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-subscription__price b::before {
  position: absolute;
  top: -0.8rem;
  left: -6rem;
  display: inline-block;
  width: 8.5rem;
  aspect-ratio: 85/42;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/subscription_cap.webp") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-subscription__price b::before {
    left: -4rem;
    width: 5.7rem;
  }
}

.p-subscription__caution {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-subscription__caution {
    width: calc(100% - 3.2rem);
    padding-left: 1em;
    margin-inline: auto;
    text-align: justify;
    text-indent: -1.3em;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}
.p-subscription__caution::before {
  content: "※";
}

.p-subscription__img {
  padding-right: 6rem;
}
@media screen and (max-width: 1023px) {
  .p-subscription__img {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-subscription__img {
    width: 100%;
    max-width: 21.7rem;
  }
}
.p-subscription__img img {
  width: 100%;
  max-width: 31.7rem;
}
@media screen and (max-width: 767px) {
  .p-subscription__img img {
    max-width: none;
  }
}

.p-subscription__cta {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  margin-top: -4.8rem;
}
@media screen and (max-width: 767px) {
  .p-subscription__cta {
    margin-top: -3.8rem;
  }
}
.p-subscription__cta .c-cta {
  padding: 0;
  border: none;
}

/* ---------- supplement ---------- */
.p-supplement {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(#ff4200, #f06000);
}
.p-supplement::before {
  position: absolute;
  top: -0.1rem;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 10rem;
  clip-path: var(--clip-triangle-top-left);
  content: "";
  background-color: var(--color-bg-primary);
}
@media screen and (max-width: 767px) {
  .p-supplement::before {
    height: 4rem;
  }
}
.p-supplement::after {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 10rem;
  clip-path: var(--clip-triangle-bottom-left);
  content: "";
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-supplement::after {
    height: 4rem;
  }
}

.p-supplement__container {
  padding-block: 15.3rem 16.4rem;
}
@media screen and (max-width: 767px) {
  .p-supplement__container {
    padding-block: 8.2rem 7.7rem;
  }
}

.p-supplement__title {
  color: var(--color-white);
  text-align: center;
  text-shadow: 0.4rem 0.4rem 0 rgba(127, 36, 0, 0.2);
  font-size: 5.6rem;
  line-height: 2.1785714286;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-supplement__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__title {
    font-size: 1.8rem;
    line-height: 2.2222222222;
    letter-spacing: 0em;
    white-space: nowrap;
  }
}
.p-supplement__title b {
  font-size: 180%;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-supplement__title b {
    font-size: 3.2rem;
    line-height: 1.25;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__title span {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
  }
}

.p-supplement__body {
  padding: 9.2rem 2rem 9.4rem;
  margin-top: 12rem;
  background-color: var(--color-white);
  border-radius: var(--radius-small);
}
@media screen and (max-width: 1023px) {
  .p-supplement__body {
    padding-block: 4rem;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__body {
    padding: 1.8rem 1.6rem 3.8rem;
    margin-top: 1.6rem;
  }
}

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

.p-supplement__text {
  width: 100%;
  max-width: 46rem;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 1023px) {
  .p-supplement__text {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    letter-spacing: 0.05em;
  }
}
.p-supplement__text b {
  font-weight: 500;
}

.p-supplement__img {
  width: 100%;
  max-width: 55rem;
  margin-inline: -1.2rem -8.4rem;
  margin-top: -20rem;
}
@media screen and (max-width: 1023px) {
  .p-supplement__img {
    margin-inline: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__img {
    max-width: 20rem;
  }
}

.p-supplement__detail {
  margin-top: -14.2rem;
}
@media screen and (max-width: 1023px) {
  .p-supplement__detail {
    margin-top: -3.1rem;
  }
}

.p-supplement__end {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 7.6rem;
}
@media screen and (max-width: 1023px) {
  .p-supplement__end {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__end {
    gap: 2.8rem;
    margin-top: 1.9rem;
  }
}

.p-supplement__nutrient {
  width: 100%;
  max-width: 46rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-supplement__nutrient {
    max-width: 18.7rem;
    padding-left: 0;
  }
}
.p-supplement__nutrient img {
  width: 100%;
  max-width: 39.4rem;
}
@media screen and (max-width: 767px) {
  .p-supplement__nutrient img {
    max-width: none;
  }
}

.p-supplement__desc {
  width: 100%;
  max-width: 46rem;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-supplement__desc {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-supplement__desc {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-supplement__sub {
  margin-top: 8.2rem;
  color: var(--color-white);
  text-align: center;
  font-size: 4rem;
  line-height: 1.65;
  letter-spacing: 0.13em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-supplement__sub {
    margin-top: 3.2rem;
    text-align: justify;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
}
.p-supplement__sub b {
  font-size: 5.6rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-supplement__sub b {
    font-size: 2.8rem;
    line-height: 1.3928571429;
    letter-spacing: 0.075em;
  }
}

.p-supplement__attention {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 91.7rem;
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/supplement_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-supplement__attention {
    height: 45.6rem;
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/supplement_bg_sp.webp") no-repeat center/cover;
  }
}

/* ---------- trouble ---------- */
.p-trouble {
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/trouble_bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-trouble {
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/trouble_bg_sp.webp") no-repeat center/cover;
  }
}

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

.p-trouble__title {
  text-align: center;
}
.p-trouble__title span {
  position: relative;
  display: inline-block;
  padding-bottom: 2rem;
  font-size: 5.6rem;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-trouble__title span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__title span {
    font-size: 2.4rem;
    line-height: 2;
    padding-bottom: 1rem;
  }
}
.p-trouble__title span::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 100%;
  max-width: 86.3rem;
  height: 0.2rem;
  content: "";
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgb(0, 0, 0) 25% 75%,
    rgba(0, 0, 0, 0)
  );
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-trouble__title span::before {
    bottom: 0.4rem;
    max-width: 24.9rem;
    height: 0.1rem;
  }
}
.p-trouble__title b {
  font-size: 160%;
  font-weight: 500;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 767px) {
  .p-trouble__title b {
    line-height: 1;
  }
}

.p-trouble__img {
  position: relative;
  width: 100%;
  max-width: 115rem;
  margin-inline: auto;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-trouble__img {
    width: 100vw;
    margin-top: 0.4rem;
    margin-left: calc(var(--container-spacing) * -1);
  }
}

.p-trouble__sub {
  padding-block: 0.7rem 1rem;
  margin-top: 2.5rem;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgb(0, 0, 0) 7% 93%,
    rgba(0, 0, 0, 0)
  );
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-trouble__sub {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__sub {
    min-width: 100vw;
    padding-block: 1.5rem;
    margin-top: -0.6rem;
    margin-left: calc(var(--container-spacing) * -1);
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgb(0, 0, 0) 4% 96%,
      rgba(0, 0, 0, 0)
    );
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
  }
}
.p-trouble__sub b {
  display: inline-block;
  margin-left: -1rem;
  font-size: 180%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-trouble__sub b {
    line-height: 1;
  }
}

/* ---------- voice ---------- */
.p-voice {
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/voice_bg.webp") no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-voice {
    background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/voice_bg_sp.webp") no-repeat center
      bottom/cover;
  }
}

.p-voice__container {
  padding-block: 10rem 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-voice__container {
    padding-block: 3.2rem 12.7rem;
  }
}

.p-voice__head {
  display: flex;
  gap: 4.8rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-voice__head {
    gap: 2.8rem;
  }
}
.p-voice__head::before,
.p-voice__head::after {
  display: inline-block;
  width: 2.4rem;
  aspect-ratio: 24/139;
  content: "";
  background: url("https://d2w53g1q050m78.cloudfront.net/wwwhosendoonline/uploads/power-life/icon_frame.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-voice__head::before,
  .p-voice__head::after {
    width: 1.2rem;
  }
}
.p-voice__head::after {
  scale: -1 1;
}

.p-voice__title {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    gap: 0.3rem;
  }
}
.p-voice__title span {
  font-size: 4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-voice__title span {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.p-voice__title b {
  font-size: 5.6rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: linear-gradient(to right, var(--color-bg-cta));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-voice__title b {
    font-size: 2.8rem;
    line-height: 1.1428571429;
  }
}

.p-voice__caution {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice__caution {
    margin-top: 1.5rem;
  }
}

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

.p-voice__item {
  padding: 3.2rem 4rem 3.4rem;
  background-color: var(--color-white);
  box-shadow: 0 1.4rem 4.8rem 0.3rem rgba(75, 72, 50, 0.29);
}
@media screen and (max-width: 1023px) {
  .p-voice__item {
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    padding: 1.6rem;
  }
}

.p-voice__item-head {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-voice__item-head {
    gap: 1.6rem;
  }
}

.p-voice__item-icon {
  width: 8rem;
}

.p-voice__item-name {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-voice__item-name {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.p-voice__item-content {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-content {
    margin-top: 1rem;
  }
}

.p-voice__item-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.p-voice__sub {
  margin-top: 6.9rem;
  text-align: center;
  font-size: 4rem;
  line-height: 1.65;
  letter-spacing: 0.18em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-voice__sub {
    margin-top: 2.2rem;
    font-size: 2.4rem;
    line-height: 1.4583333333;
    letter-spacing: 0.05em;
  }
}

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

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

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

: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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-py-160 {
  padding-block: 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-pt-4-sp {
    padding-top: 0.4rem;
  }
  .u-pb-4-sp {
    padding-bottom: 0.4rem;
  }
  .u-py-4-sp {
    padding-block: 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-pt-12-sp {
    padding-top: 1.2rem;
  }
  .u-pb-12-sp {
    padding-bottom: 1.2rem;
  }
  .u-py-12-sp {
    padding-block: 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-pt-20-sp {
    padding-top: 2rem;
  }
  .u-pb-20-sp {
    padding-bottom: 2rem;
  }
  .u-py-20-sp {
    padding-block: 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-pt-28-sp {
    padding-top: 2.8rem;
  }
  .u-pb-28-sp {
    padding-bottom: 2.8rem;
  }
  .u-py-28-sp {
    padding-block: 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-pt-36-sp {
    padding-top: 3.6rem;
  }
  .u-pb-36-sp {
    padding-bottom: 3.6rem;
  }
  .u-py-36-sp {
    padding-block: 3.6rem;
  }
  .u-pt-40-sp {
    padding-top: 4rem;
  }
  .u-pb-40-sp {
    padding-bottom: 4rem;
  }
  .u-py-40-sp {
    padding-block: 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-pt-48-sp {
    padding-top: 4.8rem;
  }
  .u-pb-48-sp {
    padding-bottom: 4.8rem;
  }
  .u-py-48-sp {
    padding-block: 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-pt-56-sp {
    padding-top: 5.6rem;
  }
  .u-pb-56-sp {
    padding-bottom: 5.6rem;
  }
  .u-py-56-sp {
    padding-block: 5.6rem;
  }
  .u-pt-60-sp {
    padding-top: 6rem;
  }
  .u-pb-60-sp {
    padding-bottom: 6rem;
  }
  .u-py-60-sp {
    padding-block: 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-pt-68-sp {
    padding-top: 6.8rem;
  }
  .u-pb-68-sp {
    padding-bottom: 6.8rem;
  }
  .u-py-68-sp {
    padding-block: 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-pt-76-sp {
    padding-top: 7.6rem;
  }
  .u-pb-76-sp {
    padding-bottom: 7.6rem;
  }
  .u-py-76-sp {
    padding-block: 7.6rem;
  }
  .u-pt-80-sp {
    padding-top: 8rem;
  }
  .u-pb-80-sp {
    padding-bottom: 8rem;
  }
  .u-py-80-sp {
    padding-block: 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-pt-88-sp {
    padding-top: 8.8rem;
  }
  .u-pb-88-sp {
    padding-bottom: 8.8rem;
  }
  .u-py-88-sp {
    padding-block: 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-pt-96-sp {
    padding-top: 9.6rem;
  }
  .u-pb-96-sp {
    padding-bottom: 9.6rem;
  }
  .u-py-96-sp {
    padding-block: 9.6rem;
  }
  .u-pt-100-sp {
    padding-top: 10rem;
  }
  .u-pb-100-sp {
    padding-bottom: 10rem;
  }
  .u-py-100-sp {
    padding-block: 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-pt-108-sp {
    padding-top: 10.8rem;
  }
  .u-pb-108-sp {
    padding-bottom: 10.8rem;
  }
  .u-py-108-sp {
    padding-block: 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-pt-116-sp {
    padding-top: 11.6rem;
  }
  .u-pb-116-sp {
    padding-bottom: 11.6rem;
  }
  .u-py-116-sp {
    padding-block: 11.6rem;
  }
  .u-pt-120-sp {
    padding-top: 12rem;
  }
  .u-pb-120-sp {
    padding-bottom: 12rem;
  }
  .u-py-120-sp {
    padding-block: 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-pt-128-sp {
    padding-top: 12.8rem;
  }
  .u-pb-128-sp {
    padding-bottom: 12.8rem;
  }
  .u-py-128-sp {
    padding-block: 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-pt-136-sp {
    padding-top: 13.6rem;
  }
  .u-pb-136-sp {
    padding-bottom: 13.6rem;
  }
  .u-py-136-sp {
    padding-block: 13.6rem;
  }
  .u-pt-140-sp {
    padding-top: 14rem;
  }
  .u-pb-140-sp {
    padding-bottom: 14rem;
  }
  .u-py-140-sp {
    padding-block: 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-pt-148-sp {
    padding-top: 14.8rem;
  }
  .u-pb-148-sp {
    padding-bottom: 14.8rem;
  }
  .u-py-148-sp {
    padding-block: 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-pt-156-sp {
    padding-top: 15.6rem;
  }
  .u-pb-156-sp {
    padding-bottom: 15.6rem;
  }
  .u-py-156-sp {
    padding-block: 15.6rem;
  }
  .u-pt-160-sp {
    padding-top: 16rem;
  }
  .u-pb-160-sp {
    padding-bottom: 16rem;
  }
  .u-py-160-sp {
    padding-block: 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 ---------- */
.u-text-marker-secondary {
  display: inline;
  padding-inline: 0.4rem;
  color: var(--color-white);
  background-image: linear-gradient(to left, var(--color-gradation-secondary));
  box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .u-text-marker-secondary {
    padding-inline: 0.2rem;
  }
}

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

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