@charset "UTF-8";
/* 使い方
・本体
.c-button {
  @include hover-scale(); // 初期値
  @include hover-scale(1.2); // 拡大率を上げる
  }

・子要素のimg
.p-card {
  @include hover-scale-img();
}
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

:root {
  --base-font-family: "Noto Sans JP", serif;
  --en-font-family: "Inter", sans-serif;
  --font-weight-regular: 500;
  --line-height-regular: 1.5;
  --letter-spacing-regular: 0.04em;
  --color-black: #111;
  --color-white: #fff;
  --color-main: #1c1f3b;
  --color-sub: #0036a6;
  --color-gray: #ccc
  --color-gray-bg: #f4f4f5;
  --color-yellow: #ffff00;
  --color-red: #c60000;
  --color-gradation: 17 17 17;
  --border-line:
    linear-gradient(to right,
      rgb(var(--color-gradation) / 1) 0,
      rgb(var(--color-gradation) / 1) 20%,
      rgb(var(--color-gradation) / 0.2) 20%,
      rgb(var(--color-gradation) / 0.2) 100%) bottom / 100% 2px no-repeat;
  --header-height: 8.125rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 5rem;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1420px) {
  html {
    font-size: 1.1267605634vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  font-size: max(1rem, 10px);
  font-family: var(--base-font-family);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-regular);
  letter-spacing: var(--letter-spacing-regular);
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  body {
    font-size: max(0.875rem, 10px);
  }
}

main {
  flex: 1;
}

html:has(body.is-fixed),
body.is-fixed {
  overflow: hidden;
}

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

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
img {
  overflow-clip-margin: unset;
}

button {
  color: inherit;
}

address,
em {
  font-style: normal;
}

.l-cta {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .l-cta {
    margin-top: 6.25rem;
  }
}

.l-cta-small {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-cta-small {
    margin-top: 3.75rem;
  }
}

.l-inner {
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.5625rem;
  max-width: 88.75rem;
}
@media screen and (max-width: 1440px) {
  .l-inner {
    max-width: 78.125rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.l-inner-l {
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.5625rem;
  max-width: 111.25rem;
}
@media screen and (max-width: 1440px) {
  .l-inner-l {
    max-width: 78.125rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner-l {
    max-width: 40rem;
    padding-inline: 1.25rem;
  }
}

.l-sub-content {
  margin-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-sub-content {
    margin-block: 3.125rem;
  }
}

.l-sub-content + .l-sub-content {
  margin-top: 3.125rem;
}

.l-sub-mv {
  margin-top: var(--header-height);
}

.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    transition: grid-template-rows 0.3s ease-in-out;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion {
  border: 1px solid var(--color-black);
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-accordion {
    border-radius: 0.3125rem;
    padding: 0.625rem;
  }
}

.c-accordion__summary {
  list-style: none;
  position: relative;
  cursor: pointer;
}

.c-accordion__summary::before,
.c-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-black);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before,
  .c-accordion__summary::after {
    right: 0.625rem;
    width: 0.9375rem;
  }
}

.c-accordion__summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.c-accordion[open] .c-accordion__summary::before {
  transform: translateY(-50%) rotate(0deg);
}

.c-accordion__body {
  overflow: hidden;
}

.c-accordion__wrap {
  padding-top: 1.25rem;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 26.25rem;
  padding-inline: 1.25rem;
  color: var(--color-white);
  font-size: max(1.5rem, 10px);
  font-weight: 900;
  line-height: 1;
  background-image: url(../images/button-bg.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  border: none;
  border-radius: 0;
  aspect-ratio: 234/52;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: max(1.125rem, 10px);
  }
}

.c-section-title__ja {
  font-size: max(3.75rem, 10px);
  font-weight: 900;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: max(1.875rem, 10px);
    line-height: 1.3;
  }
}

.c-section-title__en {
  margin-top: 0.625rem;
  font-size: max(2.4375rem, 10px);
  font-family: var(--en-font-family);
  font-weight: 700;
  color: #c6c7ce;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: max(1.125rem, 10px);
  }
}

.c-section-title[data-position=center] {
  text-align: center;
}

.p-404__contents {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-404__contents {
    gap: 1.875rem;
  }
}

.p-404__title {
  font-size: max(1.5625rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: max(1.25rem, 10px);
  }
}

.p-404__text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.8;
}

.p-404__btn {
  width: 100%;
  text-align: center;
}

.p-comparison {
  padding-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding-top: 3.125rem;
  }
}

.p-comparison__table {
  margin-block-start: 2.3125rem;
  width: 100%;
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-comparison__table {
    overflow-x: auto;
  }
}

.p-comparison__table img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-comparison__table img {
    min-width: 50rem;
  }
}

.p-contact[data-bg=true] {
  padding-block: 5.9375rem 6.875rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contact[data-bg=true] {
    padding-block: 3.125rem;
  }
}

.p-contact[data-bg=true]::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -12.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1200;
  background-image: url(../images/contact-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-contact[data-bg=true]::before {
    bottom: 0;
  }
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
}

.p-contact .c-section-title {
  text-align: center;
}

/* 会社概要 */
.p-contact__company {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__company {
    margin-top: 2.5rem;
  }
}

.p-contact__company-heading {
  font-size: max(1.5rem, 10px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-contact__company-heading {
    font-size: max(1.25rem, 10px);
  }
}

.p-contact__company-list {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  border-radius: 0.625rem;
  padding: 0.625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__company-list {
    padding: 0.625rem;
  }
}

.p-contact__company-row {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  border-bottom: 1px solid #d5d5d5;
  padding-block: 1.25rem;
  padding-inline: 0.625rem;
}
.p-contact__company-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-contact__company-row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding-block: 0.875rem;
    padding-inline: 0;
  }
}

.p-contact__company-label {
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.3125;
}
@media screen and (max-width: 767px) {
  .p-contact__company-label {
    font-size: max(0.875rem, 10px);
  }
}

.p-contact__company-value {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.3125;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-contact__company-value {
    font-size: max(0.875rem, 10px);
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__company-separator {
    display: none;
  }
}

/* ビジュアルエリア */
.p-cta__visual {
  position: relative;
  z-index: 1;
  padding-block: 0 3.75rem;
  background-color: var(--color-white);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cta__visual {
    padding-block: 0 1.875rem;
  }
}

.p-cta__visual-inner {
  position: relative;
  z-index: 1;
}

.p-cta__text-wrap {
  text-align: center;
}

.p-cta__lead {
  font-size: max(1.875rem, 10px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-cta__lead {
    font-size: max(1.125rem, 10px);
  }
}

.p-cta__lead span {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-cta__lead span {
    font-size: max(0.75rem, 10px);
  }
}

.p-cta__heading {
  font-size: max(4.375rem, 10px);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-cta__heading {
    font-size: max(1.25rem, 10px);
    line-height: 2;
  }
}

.p-cta__visual[data-size=small] {
  padding-block: 3.125rem 2.1875rem;
  border-top: 1px solid #8d8f9d;
}
.p-cta__visual[data-size=small] .p-cta__lead {
  font-size: max(2.5rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-cta__visual[data-size=small] .p-cta__lead {
    font-size: max(1.25rem, 10px);
  }
}
.p-cta__visual[data-size=small] .p-cta__heading {
  font-size: max(3.75rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-cta__visual[data-size=small] .p-cta__heading {
    font-size: max(1.75rem, 10px);
    line-height: 1.3;
  }
}

/* コンタクトエリア */
.p-cta__contact {
  background-color: var(--color-sub);
  padding-block: 4.4270833333vw 3.3854166667vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact {
    padding-block: 5.3125rem 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__contact {
    padding-block: 3.125rem 2.5rem;
  }
}

@media screen and (max-width: 1440px) {
  .p-cta__contact-inner.l-inner {
    max-width: 88.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__contact-inner.l-inner {
    max-width: 40rem;
  }
}

.p-cta:has(.p-cta__visual) .p-cta__contact::before {
  content: "";
  position: absolute;
  top: -0.1041666667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5416666667vw;
  height: 1.7708333333vw;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 1440px) {
  .p-cta:has(.p-cta__visual) .p-cta__contact::before {
    top: -0.0625rem;
    width: 4.25rem;
    height: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta:has(.p-cta__visual) .p-cta__contact::before {
    width: 2.5rem;
    height: 1.25rem;
  }
}

.p-cta__image {
  position: absolute;
  z-index: -1;
  right: 4.4270833333vw;
  bottom: 0;
  width: 18.0208333333vw;
  pointer-events: none;
}
@media screen and (max-width: 1440px) {
  .p-cta__image {
    display: none;
  }
}

.p-cta__image img {
  height: auto;
  aspect-ratio: 346/556;
}

.p-cta__contact-item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-item-wrap {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__contact-item-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-cta__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1.0416666667vw;
  padding-block: 0 1.3020833333vw;
  text-align: center;
  color: var(--color-white);
  border: 0.15625vw solid var(--color-white);
  background-color: var(--color-sub);
  border-radius: 0.5208333333vw;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-item {
    padding-inline: 1.25rem;
    padding-block: 0 1.5625rem;
    border-width: 0.1875rem;
    border-radius: 0.625rem;
  }
}

.p-cta__contact-label {
  margin-top: -1.0416666667vw;
  font-size: 0.9375vw;
  font-weight: 900;
  color: var(--color-yellow);
  padding-inline: 1.4583333333vw;
  background-color: var(--color-sub);
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-label {
    margin-top: -1.25rem;
    font-size: max(1.125rem, 10px);
    padding-inline: 1.75rem;
  }
}

.p-cta__contact-label::before,
.p-cta__contact-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.1041666667vw;
  height: 1.0416666667vw;
  background-color: var(--color-white);
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-label::before,
  .p-cta__contact-label::after {
    width: 2px;
    height: 1.25rem;
  }
}

.p-cta__contact-label::before {
  left: 1.0416666667vw;
  transform: rotate(-30deg) translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-label::before {
    left: 1.25rem;
  }
}

.p-cta__contact-label::after {
  right: 1.0416666667vw;
  transform: rotate(30deg) translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-label::after {
    right: 1.25rem;
  }
}

.p-cta__contact-desc {
  margin-top: 1.0416666667vw;
  font-size: 0.9375vw;
  font-weight: 900;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-desc {
    margin-top: 1.25rem;
    font-size: max(1.125rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__contact-desc {
    font-size: max(1rem, 10px);
  }
}

.p-cta__tel {
  margin-block-start: 0.8333333333vw;
  display: flex;
  align-items: center;
  gap: 0.625vw;
  font-size: 2.34375vw;
  font-family: var(--en-font-family);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}
@media screen and (max-width: 1440px) {
  .p-cta__tel {
    margin-block-start: 1rem;
    gap: 0.75rem;
    font-size: max(2.8125rem, 10px);
  }
}
.p-cta__tel::before {
  content: "";
  display: block;
  width: 1.4583333333vw;
  height: 1.5625vw;
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .p-cta__tel::before {
    width: 1.75rem;
    height: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__tel {
    font-size: max(1.75rem, 10px);
  }
}

.p-cta__contact-hours {
  margin-block-start: 0.5208333333vw;
  font-size: 0.7291666667vw;
  font-weight: 900;
}
@media screen and (max-width: 1440px) {
  .p-cta__contact-hours {
    margin-block-start: 0.625rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__contact-hours {
    font-size: max(0.75rem, 10px);
  }
}

.p-cta__button {
  margin-block-start: 0.78125vw;
  width: 100%;
  max-width: 18.75vw;
  max-width: 22.5rem;
}
@media screen and (max-width: 1440px) {
  .p-cta__button {
    margin-block-start: 0.9375rem;
    max-width: 22.5rem;
  }
}

.p-download__contents {
  max-width: 50rem;
  margin-inline: auto;
}

.p-download__contents .wpdm-download-link,
.p-download__contents .btn.btn-primary {
  display: inline-block;
  max-width: 31.25rem;
  width: 100%;
  padding: 1.25rem 2.5rem;
  color: var(--color-white);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-main);
  border: none;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-download__contents .wpdm-download-link,
  .p-download__contents .btn.btn-primary {
    padding: 0.9375rem 1.25rem;
    font-size: max(0.9375rem, 10px);
  }
}

.p-download__contents .wpdm-download-link:hover,
.p-download__contents .btn.btn-primary:hover {
  opacity: 0.8;
}

.p-download__contents .package-title {
  font-size: max(1.375rem, 10px);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.p-download__contents .wpdm-download-link-wrap {
  margin-top: 1.875rem;
  text-align: center;
}

.p-flow {
  padding-block: 5.9375rem 5.9375rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: 3.125rem;
  }
}

.p-flow .c-section-title {
  text-align: center;
}

.p-flow__desc {
  margin-block-start: 1.6875rem;
  font-size: max(1.25rem, 10px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-flow__desc {
    font-size: max(1rem, 10px);
    text-align: left;
  }
}

.p-flow__image {
  margin-block-start: 2rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__image {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.p-flow__image picture {
  display: block;
}

.p-flow__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer {
  padding-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 1.875rem;
  }
}

.p-footer__inner {
  text-align: center;
}

.p-footer__logo a {
  display: block;
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-footer__logo a {
    font-size: max(1.375rem, 10px);
  }
}

.p-footer__domain {
  margin-top: 0.3125rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  font-family: var(--en-font-family);
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-footer__domain {
    font-size: max(1rem, 10px);
  }
}

.p-footer__address {
  margin-top: 1.0625rem;
  font-size: max(0.75rem, 10px);
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.p-footer__bottom {
  margin-top: 2.1875rem;
  background-color: var(--color-main);
  text-align: center;
  padding: 0.875rem 1.25rem;
}

.p-footer__copyright {
  display: block;
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.p-form__contents {
  margin-top: 1.875rem;
  background-color: #f2f2f2;
  border-radius: 0.625rem;
  padding: 3.125rem 1.25rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-form__contents {
    margin-top: 1.25rem;
    padding: 1.75rem 0.9375rem;
  }
}

.p-form__text {
  text-align: center;
  font-size: max(1.125rem, 10px);
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-form__text {
    font-size: max(0.9375rem, 10px);
    line-height: 1.7;
    text-align: left;
  }
}

.p-form__wrap {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  max-width: 66.625rem;
  margin-inline: auto;
  padding-block: 1.0625rem;
  border-bottom: 2px solid #d2d2d8;
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    gap: 0.625rem;
    flex-direction: column;
    align-items: stretch;
    padding-block: 1.375rem;
  }
}

.p-form__label {
  max-width: 17.1875rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    max-width: none;
    font-size: max(0.9375rem, 10px);
    line-height: 1.5;
  }
}

.u-required {
  display: inline-block;
  color: var(--color-white);
  background-color: #d20000;
  border-radius: 0.3125rem;
  padding: 0.625rem 1.25rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .u-required {
    padding: 0.375rem 0.5rem;
    font-size: max(0.75rem, 10px);
  }
}

@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__radio,
  .p-form__checkbox,
  .p-form__textarea {
    margin-top: 0;
  }
}

.p-form__input,
.p-form__textarea {
  flex-grow: 1;
  width: 100%;
}

.p-form__submit {
  margin-top: 2.1875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    margin-top: 2.5rem;
  }
}

.p-form__catalog {
  width: 100%;
}

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

.p-catalog__item {
  display: block;
  border: 2px solid #d2d2d8;
  border-radius: 0.5rem;
  background: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}

.p-catalog__item:has(input[type=checkbox]:checked) {
  border-color: #d20000;
}

.p-catalog__item input[type=checkbox] {
  display: none;
}

.p-catalog__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.9375rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-catalog__label {
    align-items: flex-start;
    padding: 0.75rem;
    font-size: max(0.875rem, 10px);
    line-height: 1.5;
  }
}

.p-catalog__label::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #d2d2d8;
  background: var(--color-white);
  display: inline-block;
  transition: background-color 0.2s, border-color 0.2s;
}

.p-catalog__item:has(input[type=checkbox]:checked) .p-catalog__label::before {
  border-color: #d20000;
  background-color: #d20000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 0.75rem 0.625rem;
  background-repeat: no-repeat;
  background-position: center;
}

.p-catalog__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 400/277;
  background-color: #f2f2f2;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-catalog__thumb {
    aspect-ratio: 16/9;
  }
}

.p-form__input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  min-height: 4.375rem;
  font-size: max(1rem, 16px);
  line-height: 1;
  border-radius: 0.625rem;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-form__input input {
    min-height: 3rem;
    padding: 0.75rem 0.9375rem;
    min-height: 3.125rem;
  }
}

.p-form__input .p-input--postal-code {
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__input .p-input--postal-code {
    max-width: 100%;
  }
}

.p-form__note {
  display: block;
  margin-top: 0.5rem;
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
  color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-form__note {
    font-size: max(0.75rem, 10px);
  }
}

.p-form__textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 16.5rem;
  font-size: max(0.9375rem, 10px);
  border-radius: 0.625rem;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-white);
  field-sizing: content;
}
@media screen and (max-width: 767px) {
  .p-form__textarea textarea {
    min-height: 8.75rem;
    padding: 0.75rem 0.9375rem;
    font-size: max(1rem, 16px);
  }
}

.p-form__textarea textarea:focus {
  border: 1px solid var(--color-gray);
  box-shadow: none;
  outline: none;
}

.p-form__select select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
  border-radius: 0;
  border: 1px solid var(--color-gray);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__select select {
    min-height: 3rem;
    font-size: max(1rem, 16px);
  }
}

.p-form__select select::-ms-expand {
  display: none;
}

.p-form__select select:focus {
  border: 1px solid var(--color-gray);
  box-shadow: none;
  outline: none;
}

.p-form__radio label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-form__radio label {
    display: block;
  }
}

.p-form__radio label:not(:first-of-type) {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio label:not(:first-of-type) {
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.p-form__radio input {
  display: none;
}

.p-form__radio input + span {
  padding: 0 0 0 1.5625rem;
  position: relative;
  display: block;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__radio input + span {
    display: inline-block;
    line-height: 1.5;
  }
}

.p-form__radio input + span::before {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
}

.p-form__radio input + span::after {
  content: "";
  padding: 0.125rem;
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}

.p-form__radio input:checked + span::after {
  opacity: 1;
}

.p-form__checkbox label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox label {
    display: block;
  }
}

.p-form__checkbox label:not(:first-of-type) {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox label:not(:first-of-type) {
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.p-form__checkbox input {
  display: none;
}

.p-form__checkbox input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox input + span {
    line-height: 1.5;
  }
}

.p-form__checkbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.p-form__checkbox input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #000;
  border-left: 0.1875rem solid #000;
  transition: 0.3s;
  opacity: 0;
}

.p-form__checkbox input:checked + span::after {
  opacity: 1;
}

.p-contact__form-privacy {
  margin-top: 1.25rem;
  text-align: center;
}

.p-contact__form-checkbox-text.c-text {
  font-size: max(0.9375rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-contact__form-checkbox-text.c-text {
    max-width: 25.625rem;
    margin-inline: auto;
    font-size: max(0.75rem, 10px);
  }
}

.p-contact__form-checkbox-text.c-text a {
  text-decoration: underline;
  text-decoration-color: var(--color-black);
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
}

.p-contact__form-privacy label {
  margin-top: 1.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy label {
    margin-top: 0.625rem;
  }
}

.p-contact__form-privacy input + span {
  position: relative;
  padding-left: 1.875rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span {
    font-size: max(0.8125rem, 10px);
    padding-left: 1.5625rem;
    margin-left: 0.625rem;
  }
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span::before {
    top: 55%;
  }
}

.p-contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 60%;
  left: 0.25rem;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.8125rem;
  height: 0.4375rem;
  border-bottom: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition: 0.3s;
  opacity: 0;
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact__form-submit {
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__form-submit {
    margin-top: 3.125rem;
  }
}

.p-form__submit input {
  max-width: 37.5rem;
  margin-inline: auto;
  width: 100%;
  padding: 1.875rem 7.8125rem;
  color: var(--color-white);
  display: inline-block;
  font-size: max(1.875rem, 10px);
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-main);
  background-image: none;
  border: none;
  border-radius: 6.25rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form__submit input {
    max-width: 22.5rem;
    padding: 1.375rem 1.875rem;
    font-size: max(1.25rem, 10px);
  }
}

.p-form__submit input:hover,
.p-form__submit input:focus {
  outline: none;
}

.p-form__submit input:hover {
  opacity: 0.8;
}

.p-form__submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #FF003D;
  border-radius: 0.625rem;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1.875rem;
  text-align: center;
  font-size: max(1.25rem, 10px);
  color: #FF003D;
  line-height: 1;
  margin: 3.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .wpcf7 form .wpcf7-response-output {
    padding: 1.25rem;
    font-size: max(0.875rem, 10px);
    line-height: 1.6;
    margin-top: 1.875rem;
  }
}

.p-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1001;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

body:not(.home) .p-header,
.p-header.is-scrolled {
  background-color: var(--color-white);
  color: var(--color-black);
  border-bottom: 1px solid #e0e0e0;
}

/* レイアウト */
.p-header__inner {
  padding-inline: 1.875rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 0.9375rem;
  }
}

/* ロゴ */
.p-header__logo {
  flex-shrink: 0;
}

.p-header__logo-link {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-decoration: none;
  color: inherit;
}

.p-header__logo-name {
  display: block;
  font-size: max(2.25rem, 10px);
  font-weight: 900;
  line-height: 1;
  color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-header__logo-name {
    font-size: max(1.25rem, 10px);
  }
}

.p-header__logo-domain {
  display: block;
  margin-top: 0.625rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1;
  font-family: var(--en-font-family);
  color: currentColor;
}
@media screen and (max-width: 1023px) {
  .p-header__logo-domain {
    font-size: max(0.75rem, 10px);
  }
}

/* 右エリア */
.p-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-header__right {
    display: none;
  }
}

/* CTAボタン群 */
.p-header__cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-header__cta-wrap .p-header__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 14.625rem;
  padding: 0.625rem 1.25rem;
  background-image: url(../images/button-bg.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  aspect-ratio: 234/52;
  color: var(--color-white);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}

.p-header__cta-wrap .p-header__cta[data-type=tel] a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.25rem;
  content: "";
  display: block;
  width: 1.0625rem;
  height: 1.1875rem;
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* ナビゲーション */
.p-header__nav {
  display: block;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding-inline: 0.8125rem;
  display: flex;
  align-items: center;
  font-size: max(0.9375rem, 10px);
  font-weight: 900;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    opacity: 0.7;
  }
}
/* ハンバーガー */
.p-header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 3.75rem;
  height: 3.75rem;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 3.75rem;
  height: 1px;
  background-color: currentColor;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 2.5rem;
  }
}

.p-header__hamburger span::before,
.p-header__hamburger span::after {
  position: absolute;
  content: "";
  display: block;
  width: 3.75rem;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span::before,
  .p-header__hamburger span::after {
    width: 2.5rem;
  }
}

.p-header__hamburger span::before {
  transform: translateY(-0.9375rem);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span::before {
    transform: translateY(-0.625rem);
  }
}

.p-header__hamburger span::after {
  transform: translateY(0.9375rem);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span::after {
    transform: translateY(0.625rem);
  }
}

.p-header__hamburger.is-open span {
  background-color: transparent;
}

.p-header__hamburger.is-open span::before {
  transform: translateY(0) rotate(45deg);
}

.p-header__hamburger.is-open span::after {
  transform: translateY(0) rotate(-45deg);
}

/* ドロワー */
.p-header__drawer {
  padding-top: calc(var(--header-height) + 3.125rem);
  padding-bottom: 5rem;
  display: none;
  position: fixed;
  z-index: 900;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-sub);
  color: var(--color-white);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-cta {
  max-width: 37.5rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.875rem 1.875rem 0;
}

.p-header__drawer-cta .p-header__cta {
  width: 100%;
  text-align: center;
}

.p-header__drawer-cta .p-header__cta a.c-button {
  font-size: max(1.125rem, 10px);
  width: 100%;
  position: relative;
}

.p-header__drawer-cta .p-header__cta[data-type=tel] a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3.125rem;
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.5625rem;
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-header__drawer-nav {
  max-width: 37.5rem;
  margin-inline: auto;
}

.p-header__drawer-item a {
  padding-inline: 1.25rem;
  padding-block: 1.875rem;
  display: block;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item a {
    font-size: max(0.9375rem, 10px);
    padding-block: 1.25rem;
  }
}

.p-lease {
  padding-block: 8.125rem 10.3125rem;
  background-image: url(../images/lease-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-lease {
    padding-block: 3.125rem;
  }
}

.p-lease__inner {
  display: grid;
  grid-template-columns: 40.1408450704% 1fr;
  gap: 3.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-lease__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-lease__inner {
    gap: 1.875rem;
  }
}

.p-lease__content {
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-lease__content {
    padding-top: 0;
  }
}

.p-lease__text {
  margin-block-start: 2.5rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-lease__text {
    margin-block-start: 1.5rem;
    font-size: max(0.9375rem, 10px);
    line-height: 1.8;
  }
}

.p-lease__image {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-lease__image {
    max-width: 26.875rem;
    margin-inline: auto;
  }
}

.p-lease__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv {
  position: relative;
  min-height: 25rem;
}

.p-mv__bg {
  width: 100%;
  height: inherit;
  min-height: inherit;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-mv__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.p-mv__bg img {
  width: 100%;
  height: inherit;
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1920/924;
}

.p-mv__inner.l-inner {
  max-width: 117.5rem;
  position: absolute;
  inset: 49% 0 auto;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 1440px) {
  .p-mv__inner.l-inner {
    max-width: 78.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__inner.l-inner {
    max-width: 40rem;
  }
}

.p-mv__text-img {
  width: 50.5464480874%;
  max-width: 57.8125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__text-img {
    width: 90.6666666667%;
    max-width: 25rem;
  }
}

.p-mv__link {
  position: absolute;
  z-index: 2;
  bottom: -5.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 75rem;
  height: 12.5rem;
  background-color: #f5b817;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__link {
    width: 95%;
    max-width: 25rem;
    height: 9.375rem;
    margin-inline: auto;
  }
}

.p-mv__link a {
  height: inherit;
  padding: 1.25rem;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: max(5rem, 10px);
  font-weight: 900;
  line-height: 1;
  font-feature-settings: "palt";
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__link a {
    font-size: max(1.5625rem, 10px);
    line-height: 1.2;
    padding-bottom: 3.125rem;
  }
}

.p-mv__link a span {
  display: block;
  font-size: max(2.1875rem, 10px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-mv__link a span {
    font-size: max(1rem, 10px);
    line-height: 1.2;
  }
}

.p-mv__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.1875rem;
  width: 4.375rem;
  height: 4.375rem;
  background-image: url(../images/arrow-right.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-mv__link a::after {
    width: 1.875rem;
    height: 1.875rem;
    right: 0.9375rem;
    bottom: 0.9375rem;
    top: initial;
    transform: initial;
  }
}

.p-simulation {
  padding-block: 5.9375rem 6.875rem;
  background-image: url(../images/simulation-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-simulation {
    padding-block: 3.125rem;
  }
}

.p-simulation__inner {
  position: relative;
  z-index: 2;
}

.p-simulation .c-section-title {
  text-align: center;
}

.p-simulation__content {
  margin-block-start: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__content {
    margin-block-start: 1.875rem;
    gap: 1.875rem;
  }
}

.p-simulation__section-heading {
  display: inline-block;
  color: var(--color-white);
  font-size: max(1.5625rem, 10px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-simulation__section-heading {
    font-size: max(1.25rem, 10px);
  }
}

/* カード */
.p-simulation__card {
  margin-top: 0.375rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-simulation__table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden !important;
}

.p-simulation__table-wrap .scroll-hint-icon-wrap {
  top: -0.625rem;
}

/* 料率表 */
.p-simulation__rate-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-simulation__rate-table {
    min-width: 51.25rem;
  }
}

.p-simulation__rate-table th,
.p-simulation__rate-table td {
  padding-inline: 0.625rem;
  text-align: center;
  border: 1px solid #d0d0d0;
  font-size: max(1.25rem, 10px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-simulation__rate-table th,
  .p-simulation__rate-table td {
    padding-inline: 0.5rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-simulation__rate-table thead th {
  background-color: #f2f2f2;
  padding-block: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__rate-table thead th {
    padding-block: 0.75rem;
  }
}

.p-simulation__rate-table tbody th,
.p-simulation__rate-table tbody td {
  color: var(--color-sub);
  padding-block: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__rate-table tbody th,
  .p-simulation__rate-table tbody td {
    padding-block: 1.125rem;
  }
}

.p-simulation__unit-note {
  margin-block-start: 0.5rem;
  font-size: max(0.875rem, 10px);
  text-align: right;
  color: var(--color-white);
}

/* シミュレーションフォーム */
.p-simulation__form-inner {
  padding: 2rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-simulation__form-inner {
    padding: 1.25rem;
  }
}

.p-simulation__form-desc {
  font-size: max(1rem, 10px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-simulation__form-desc {
    font-size: max(0.875rem, 10px);
    line-height: 1.6;
  }
}

.p-simulation__row {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__row {
    grid-template-columns: 1fr;
  }
}

.p-simulation__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__group {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.375rem;
  }
}

.p-simulation__label {
  flex-shrink: 0;
  font-size: max(1.25rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-simulation__label {
    font-size: max(0.9375rem, 10px);
    width: 100%;
  }
}

.p-simulation__input-wrap {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-simulation__input-wrap {
    flex-basis: 100%;
  }
}

.p-simulation__input {
  width: 100%;
  max-width: 24rem;
  padding: 1.125rem 1.25rem;
  border-radius: 0.625rem;
  font-size: max(1.375rem, 10px);
  background-color: #f2f2f2;
  transition: border-color 0.2s, background-color 0.2s;
}
@media screen and (max-width: 767px) {
  .p-simulation__input {
    max-width: none;
    padding: 0.875rem 1rem;
    font-size: max(1.125rem, 10px);
  }
}

.p-simulation__input:focus {
  border-color: var(--color-sub);
  background-color: var(--color-white);
  outline: none;
}

.p-simulation__input-unit {
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  color: var(--color-black);
}

.p-simulation__select {
  flex: 1;
  width: 100%;
  height: 4.25rem;
  padding-inline: 1.125rem 2.75rem;
  border-radius: 0.625rem;
  font-size: max(1rem, 10px);
  font-weight: 900;
  color: var(--color-black);
  background-color: #f2f2f2;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpolygon points='0,0 12,0 6,8' fill='%23111'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
@media screen and (max-width: 767px) {
  .p-simulation__select {
    height: 3.5rem;
    font-size: max(0.9375rem, 10px);
  }
}

.p-simulation__select:focus {
  border-color: var(--color-sub);
  outline: none;
}

/* 結果エリア */
.p-simulation__result {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1.875rem;
  margin-block-start: 1.25rem;
  padding-block-start: 1.25rem;
  border-block-start: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-simulation__result {
    grid-template-columns: 1fr;
  }
}

.p-simulation__result-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__result-box {
    align-items: stretch;
  }
}

.p-simulation__result-box:first-child {
  padding-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__result-box:first-child {
    padding-right: 0;
  }
}

.p-simulation__result-label {
  flex-shrink: 0;
  font-size: max(1.25rem, 10px);
  font-weight: 900;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-simulation__result-label {
    display: flex;
    align-items: center;
    font-size: max(0.9375rem, 10px);
  }
}

.p-simulation__result-value {
  flex: 1;
  width: 100%;
  max-width: 24rem;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  padding-inline: 1.25rem;
  border-radius: 0.625rem;
  background-color: #f2f2f2;
  font-size: max(2.125rem, 10px);
  font-weight: 900;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-simulation__result-value {
    max-width: none;
    min-height: 3.5rem;
    padding-inline: 1rem;
    font-size: max(1.5rem, 10px);
  }
}

.p-simulation__result-value#totalPayment {
  max-width: 26.75rem;
}

.p-simulation__suffix {
  flex-shrink: 0;
  font-size: max(1.25rem, 10px);
  font-weight: 900;
  color: var(--color-black);
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-simulation__suffix {
    display: flex;
    align-items: center;
    margin-left: 0;
    font-size: max(0.9375rem, 10px);
  }
}

.p-strengths {
  padding-block: 7.8125vw 8.0729166667vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-strengths {
    padding-block: 9.375rem 9.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths {
    padding-block: 3.125rem;
  }
}

.p-strengths::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 42.96875vw;
  aspect-ratio: 1920/825;
  background-image: url(../images/strengths-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .p-strengths::before {
    max-height: 51.5625rem;
  }
}

@media screen and (max-width: 1440px) {
  .p-strengths__inner.l-inner-l {
    max-width: 88.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__inner.l-inner-l {
    max-width: 40rem;
  }
}

.p-strengths__list {
  margin-block-start: 4.9479166667vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (max-width: 1440px) {
  .p-strengths__list {
    margin-block-start: 5.9375rem;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__list {
    margin-block-start: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__list {
    grid-template-columns: 1fr;
  }
}

.p-strengths__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.25vw;
  background-color: var(--color-white);
  border-radius: 0.5208333333vw;
  padding-block: 0.7291666667vw 2.0833333333vw;
  padding-inline: 1.5625vw;
  position: relative;
  box-shadow: 0 0 0.5208333333vw 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .p-strengths__item {
    gap: 1.5rem;
    border-radius: 0.625rem;
    padding-block: 3.125rem 1.875rem;
    padding-inline: 0.625rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item {
    gap: 1rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

.p-strengths__badge {
  position: absolute;
  top: -0.5208333333vw;
  left: -0.5208333333vw;
  width: 3.6458333333vw;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1440px) {
  .p-strengths__badge {
    top: -0.625rem;
    left: -0.625rem;
    width: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__badge {
    top: -0.5rem;
    left: -0.5rem;
    width: 3.25rem;
  }
}

.p-strengths__item:nth-child(1) .p-strengths__badge {
  background-image: url(../images/strengths-01.webp);
}

.p-strengths__item:nth-child(2) .p-strengths__badge {
  background-image: url(../images/strengths-02.webp);
}

.p-strengths__item:nth-child(3) .p-strengths__badge {
  background-image: url(../images/strengths-03.webp);
}

.p-strengths__item:nth-child(4) .p-strengths__badge {
  background-image: url(../images/strengths-04.webp);
}

.p-strengths__item-heading {
  display: grid;
  place-items: center;
}

.p-strengths__item-heading-text {
  display: block;
  font-size: 2.0833333333vw;
  font-weight: 900;
  line-height: 1.175;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .p-strengths__item-heading-text {
    font-size: max(2rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item-heading-text {
    font-size: max(1.625rem, 10px);
    line-height: 1.3;
  }
}

.p-strengths__item-heading--large {
  font-size: 5.7291666667vw;
  font-family: var(--en-font-family);
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
}
@media screen and (max-width: 1440px) {
  .p-strengths__item-heading--large {
    font-size: max(6.875rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item-heading--large {
    font-size: max(4.375rem, 10px);
  }
}

.p-strengths__item-heading--medium {
  font-size: 1.5625vw;
}
@media screen and (max-width: 1440px) {
  .p-strengths__item-heading--medium {
    font-size: max(1.875rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item-heading--medium {
    font-size: max(1.25rem, 10px);
  }
}

.p-strengths__item-heading--small {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1440px) {
  .p-strengths__item-heading--small {
    font-size: max(1.125rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item-heading--small {
    font-size: max(1rem, 10px);
  }
}

.p-strengths__item-body {
  font-size: 0.9375vw;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1440px) {
  .p-strengths__item-body {
    font-size: max(1rem, 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__item-body {
    font-size: max(0.9375rem, 10px);
    line-height: 1.7;
  }
}

.p-sub-mv {
  width: 100%;
  height: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    height: 9.375rem;
  }
}

.p-sub-mv__inner.l-inner {
  height: inherit;
}

.p-sub-mv__title-wrap {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-sub-mv__title-en {
  margin-top: 0.625rem;
  font-size: max(2.4375rem, 10px);
  font-family: var(--en-font-family);
  font-weight: 700;
  color: #c6c7ce;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-en {
    font-size: max(1.25rem, 10px);
  }
}

.p-sub-mv__title-ja {
  font-size: max(3.75rem, 10px);
  font-weight: 900;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-ja {
    font-size: max(2.5rem, 10px);
  }
}

.p-works {
  padding-block: 5.9375rem 5.625rem;
  background-image: url(../images/works-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-works {
    padding-block: 3.125rem;
  }
}

@media screen and (max-width: 1440px) {
  .p-works__inner.l-inner-l {
    max-width: 88.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-works__inner.l-inner-l {
    max-width: 40rem;
  }
}

.p-works .c-section-title {
  text-align: center;
}

.p-works__desc {
  margin-block-start: 1.5rem;
  font-size: max(1.25rem, 10px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-works__desc {
    margin-block-start: 1.125rem;
    font-size: max(0.9375rem, 10px);
    line-height: 1.7;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-works__desc br {
    display: none;
  }
}

.p-works__list {
  margin-block-start: 2.6875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-works__list {
    margin-block-start: 1.875rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-works__list {
    grid-template-columns: 1fr;
  }
}

.p-works__item {
  border: 1px solid #e0e0e0;
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 0.625rem;
  padding-bottom: 1.25rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-works__item {
    padding-bottom: 1rem;
  }
}

.p-works__image {
  width: 100%;
  height: auto;
}

.p-works__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 397/190;
}

.p-works__body {
  margin-top: 0.9375rem;
  padding-inline: 0.625rem;
}

.p-works__title {
  font-size: max(1.125rem, 10px);
  font-weight: 900;
  line-height: 1.6666666667;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-works__title {
    font-size: max(1rem, 10px);
    line-height: 1.5;
  }
}

.p-works__title::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-red);
  border-radius: 50%;
}

.p-works__meta {
  margin-block-start: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-works__meta-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.5rem;
  border-bottom: 1px solid #d0d0d0;
  font-size: max(0.875rem, 10px);
  font-weight: 900;
  line-height: 2.1428571429;
}
@media screen and (max-width: 767px) {
  .p-works__meta-row {
    grid-template-columns: 4.5rem 1fr;
    font-size: max(0.8125rem, 10px);
    line-height: 1.6;
  }
}

.p-works__meta-row:last-child {
  border-bottom: none;
}

.p-works__meta-value {
  font-weight: 500;
}

/* バナー */
.p-works__banner {
  margin-block-start: 6.875rem;
  max-width: 85.3125rem;
  margin-inline: auto;
  border: 0.25rem solid var(--color-main);
  border-radius: 0.625rem;
  padding: 0 1.25rem 2.8125rem;
  background-color: var(--color-white);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-works__banner {
    margin-block-start: 3.75rem;
    padding: 0 1rem 1.75rem;
  }
}

.p-works__banner::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background-color: var(--color-white);
  width: 37.5rem;
  height: 0.625rem;
  margin-inline: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-works__banner::before {
    width: 17.5rem;
  }
}

.p-works__banner-heading {
  margin-top: -2.8125rem;
  padding-inline: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: max(3.125rem, 10px);
  font-weight: 900;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-works__banner-heading {
    margin-top: -1.75rem;
    padding-inline: 0.75rem;
    font-size: max(1.75rem, 10px);
  }
}

.p-works__banner-text {
  margin-block-start: 0.625rem;
  font-size: max(1.375rem, 10px);
  font-weight: 900;
  line-height: 1.9545454545;
}
@media screen and (max-width: 767px) {
  .p-works__banner-text {
    font-size: max(0.9375rem, 10px);
    line-height: 1.8;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-works__banner-text br {
    display: none;
  }
}

.p-worries {
  padding-block: 4.6875rem 5rem;
  background-image: url(../images/worries-01.webp);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-worries {
    padding-block: 1.875rem;
    background-position: center;
  }
}

@media screen and (max-width: 767px) {
  .p-worries::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.p-worries__contents {
  padding-left: 1.25rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-worries__contents {
    padding-left: 0;
  }
}

.p-worries__heading {
  font-size: max(4.375rem, 10px);
  font-weight: 900;
  line-height: 1.1428571429;
}
@media screen and (max-width: 767px) {
  .p-worries__heading {
    font-size: max(1.875rem, 10px);
    line-height: 1.3;
  }
}

.p-worries__list {
  margin-block-start: 2.1875rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding-block: 1.3125rem;
  padding-left: 1.0625rem;
  max-width: 59.6875rem;
}
@media screen and (max-width: 767px) {
  .p-worries__list {
    padding-left: 0;
    margin-block-start: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-worries__item + .p-worries__item {
    margin-top: 0.625rem;
  }
}

.p-worries__item {
  display: flex;
  gap: 0.8125rem;
  position: relative;
}

.p-worries__item::before {
  content: "";
  margin-top: 0.5rem;
  flex-shrink: 0;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--color-yellow);
  border-radius: 50%;
}

.p-worries__item-text {
  font-size: max(1.5625rem, 10px);
  font-weight: 900;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .p-worries__item-text {
    font-size: max(1rem, 10px);
    line-height: 1.5;
  }
}

.p-worries__conclusion {
  margin-block-start: 1.5625rem;
  font-size: max(3.75rem, 10px);
  font-weight: 900;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-worries__conclusion {
    margin-block-start: 0.625rem;
    font-size: max(1.5625rem, 10px);
    letter-spacing: -0.04em;
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 2s cubic-bezier(0.2, 0.6, 0.2, 1), transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.js-fadein.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.u-em {
  color: var(--color-yellow);
  font-style: normal;
}

.u-em--red {
  color: var(--color-red);
  font-style: normal;
}

.u-no-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
