:root {
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-en: "Josefin Sans", system-ui, sans-serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-text: #222;
  --color-brand: #e21a1a;
  --color-white: #fff;
  --color-yellow-highlight: #ffe945;
  --color-gray-ui: #f5f5f5;
  --space-unit: 1rem;
}

html {
  font-size: 2.5vw;
  scroll-behavior: smooth;
  scroll-padding-top: 7.8rem;
}
@media (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 11.4285714286px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 7rem;
    overflow-x: clip;
    max-width: 100vw;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 100%;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 100vh;
  background-image: url("../assets/images/common/bg-cross.jpg");
  background-size: 1.4rem 1.4rem;
}
@media (max-width: 767px) {
  body {
    overflow-x: clip;
    max-width: 100vw;
  }
}

a {
  color: #000;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

figure {
  padding: 0;
  margin: 0;
}

picture {
  display: block;
}

label {
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

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

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

button {
  background-color: none;
  border: none;
  border-radius: none;
  cursor: pointer;
}

.has-js-inview .js-inview:not(.is-inview) {
  opacity: 0;
  transform: translateY(2.4rem);
}

.has-js-inview .js-inview {
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.has-js-inview .js-inview.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-js-inview .js-inview:not(.is-inview),
  .has-js-inview .js-inview.is-inview {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-header {
  height: 7.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 3.4rem 1.6rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s;
}
.site-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: 0 4px 0.6rem rgba(0, 0, 0, 0.08);
}
.site-header.is-scrolled .site-header__logo {
  opacity: 1;
}
.site-header.is-scrolled .site-header__logo-white {
  opacity: 0;
}
.site-header.is-scrolled .site-header__link {
  color: var(--color-text);
}
@media (max-width: 767px) {
  .site-header.is-scrolled .site-header__link {
    color: white;
  }
}
@media (max-width: 767px) {
  .site-header {
    padding: 0;
    height: 7rem;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.site-header__logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
}
@media (max-width: 767px) {
  .site-header__logo-link {
    margin-left: 1.1rem;
  }
}
.site-header__logo {
  display: block;
  width: 24.4rem;
  max-width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .site-header__logo {
    width: 18.5rem;
  }
}
.site-header__logo-white {
  display: block;
  width: 24.4rem;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .site-header__logo-white {
    width: 18.5rem;
  }
}
.site-header__menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  aspect-ratio: 1/1;
  background-color: var(--color-text);
  border-radius: 0 0 0 0.4rem/0 0 0 0.4rem;
  border-left: solid 2px white;
  border-bottom: solid 2px white;
  position: relative;
  z-index: 10;
  gap: 0.8rem;
  transform: border-color 0.3s;
}
.site-header__menu-button.is-open {
  border-color: transparent;
}
.site-header__menu-button.is-open .in-line--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.site-header__menu-button.is-open .in-line--middle {
  opacity: 0;
}
.site-header__menu-button.is-open .in-line--bottom {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-30deg);
}
.site-header__menu-button-inner {
  display: block;
  width: 3rem;
  height: 2rem;
  position: relative;
}
.site-header__menu-button-inner > .in-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s, top 0.3s, botom 0.3s;
}
.site-header__menu-button-inner > .in-line--top {
  top: 0;
}
.site-header__menu-button-inner > .in-line--middle {
  top: 50%;
}
.site-header__menu-button-inner > .in-line--bottom {
  bottom: 0;
  transform: translate(-50%, 50%);
}
.site-header__menu-button-label {
  color: white;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .site-header__actions-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 31rem;
  }
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    width: 31rem;
    padding: 5.8rem 5rem;
    background-color: var(--color-text);
    border-radius: 0 0 0 0.8rem/0 0 0 0.8rem;
    border-left: solid 2px white;
    border-bottom: solid 2px white;
    gap: 3rem;
  }
}
.site-header__nav {
  flex-shrink: 0;
}
.site-header__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem 2.4rem;
  }
}
.site-header__item {
  margin: 0;
}
.site-header__link {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .site-header__link {
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.site-header__link:hover {
  opacity: 0.85;
}
.site-header__link > .in-angle {
  display: none;
}
@media (max-width: 767px) {
  .site-header__link > .in-angle {
    display: block;
  }
}
.site-header__link--current {
  color: var(--color-brand) !important;
}
.site-header__link--current > .in-angle path {
  fill: var(--color-brand) !important;
}
@media (max-width: 767px) {
  .site-header__link {
    white-space: normal;
  }
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  border: 2px solid var(--color-white);
  border-radius: 4rem;
  background-color: var(--color-brand);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.site-header__cta:hover {
  background-color: var(--color-white);
  color: var(--color-brand);
  border-color: var(--color-brand);
}
.site-header__cta:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .site-header__cta {
    justify-content: center;
    width: 100%;
    background-color: white;
    color: var(--color-brand);
  }
  .site-header__cta:hover {
    background-color: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-white);
  }
}

.fv {
  position: relative;
  overflow: hidden;
  min-height: 76.8rem;
  color: var(--color-white);
}
@media (max-width: 767px) {
  .fv {
    min-height: auto;
    height: 66rem;
  }
}
.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a2838;
  background-image: url("../assets/images/hero-bg.jpg");
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .fv__bg {
    background-image: url("../assets/images/sp-hero-bg.jpg");
  }
}
.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5rem;
  max-width: 140rem;
  height: 76.8rem;
  margin: 0 auto;
  padding: 5.6rem 4rem 5rem 6rem;
}
@media (max-width: 767px) {
  .fv__inner {
    padding: 1.5rem;
    padding-bottom: 10rem;
    justify-content: center;
    height: 66rem;
  }
}
.fv__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    gap: 1.5rem;
  }
}
.fv__service {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 0.7rem;
}
@media (max-width: 767px) {
  .fv__service {
    display: block;
    width: 100%;
    padding: 0.6rem;
  }
}
.fv__service-bracket {
  position: absolute;
  z-index: 2;
  display: block;
  width: 3.4rem;
  height: 5.862rem;
  pointer-events: none;
  filter: drop-shadow(0 0.25rem 0.45rem rgba(0, 0, 0, 0.22));
}
@media (max-width: 767px) {
  .fv__service-bracket {
    width: 2.6rem;
    height: 4.5rem;
  }
}
.fv__service-bracket--tl {
  top: 0;
  left: 0;
}
.fv__service-bracket--br {
  right: 0;
  bottom: 0;
}
.fv__service-box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 6.8rem;
  padding: 0 1.6rem;
  border: 2px solid var(--color-text);
  background-color: var(--color-white);
  position: relative;
  z-index: 3;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .fv__service-box {
    width: 100%;
    min-height: 0;
    padding: 1rem 1.2rem;
    font-size: 2.5rem;
  }
}
.fv__brand {
  position: relative;
  flex-shrink: 0;
  width: 56.8616rem;
  max-width: 100%;
  min-height: 12.9rem;
}
@media (max-width: 767px) {
  .fv__brand {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 1.2rem;
    width: 100%;
    min-height: 0;
  }
}
.fv__title-en {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  font-family: var(--font-en);
  font-size: 12.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.25728rem;
  color: var(--color-white);
  text-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  .fv__title-en {
    position: relative;
    font-size: 6.8rem;
    letter-spacing: -0.2rem;
    top: auto;
    left: auto;
  }
}
.fv__title-ruby {
  position: absolute;
  top: 5.278rem;
  left: 43.362rem;
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  white-space: nowrap;
  text-shadow: 0.28rem 0.28rem 0 rgba(0, 0, 0, 0.35);
}
@media (max-width: 767px) {
  .fv__title-ruby {
    position: relative;
    line-height: 1;
    margin: 0 0 0.6rem;
    font-size: 2rem;
    top: auto;
    left: auto;
  }
}
.fv__title-ruby-char {
  font-size: 2.9rem;
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .fv__title-ruby-char {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}
.fv__title-ruby-rest {
  font-size: 2.9099rem;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .fv__title-ruby-rest {
    font-size: clamp(1.6rem, 4vw, 2.9099rem);
  }
}
.fv__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3.2rem 4rem;
}
@media (max-width: 767px) {
  .fv__bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
.fv__features {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .fv__features {
    justify-content: center;
  }
}
.fv__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 19rem;
  max-width: 100%;
  z-index: 3;
  position: relative;
}
@media (max-width: 767px) {
  .fv__feature {
    width: 12rem;
  }
}
.fv__feature:nth-of-type(2) {
  z-index: 2;
}
.fv__feature:nth-of-type(3) {
  z-index: 1;
}
.fv__feature:nth-of-type(n + 2) {
  margin-left: -2rem;
}
.fv__feature-ring {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  min-height: 0;
  width: 19rem;
  aspect-ratio: 1/1;
  padding: 1rem 0.9rem 3.7rem;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background-color: var(--color-gray-ui);
  box-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.05), 0 0.45rem 1rem rgba(0, 0, 0, 0.09), 0 1rem 2.4rem rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .fv__feature-ring {
    width: 12rem;
    padding: 0.8rem 0.7rem 2rem;
  }
}
.fv__feature-art {
  position: absolute;
  bottom: 10.6rem;
  left: 50%;
  display: block;
  width: auto;
  max-width: 88%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .fv__feature-art {
    bottom: 6.3rem;
  }
}
.fv__feature-art--punch {
  width: 16.6rem;
}
@media (max-width: 767px) {
  .fv__feature-art--punch {
    width: 10.5rem;
  }
}
.fv__feature-art--2d3d {
  width: 13.5rem;
}
@media (max-width: 767px) {
  .fv__feature-art--2d3d {
    width: 8.5rem;
  }
}
.fv__feature-art--cad {
  width: 13rem;
}
@media (max-width: 767px) {
  .fv__feature-art--cad {
    width: 8.2rem;
  }
}
.fv__feature-caption {
  width: 100%;
  margin: 0;
  text-align: center;
}
.fv__feature-label-line {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .fv__feature-label-line {
    font-size: 1.4rem;
  }
}
.fv__feature-label-line--mark {
  display: inline-block;
  padding: 0 0.15em;
  line-height: 1.25;
  background: linear-gradient(transparent 50%, var(--color-yellow-highlight) 50%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.fv__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  width: 69.8rem;
  height: 18rem;
  background-image: url("../assets/images/mv-tag-bg.png");
  background-size: 100% 100%;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 6.4rem;
  padding-left: 23rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .fv__offer {
    width: 38.3rem;
    height: 9.6rem;
    padding-left: 12.5rem;
    gap: 0.5rem;
    bottom: 3rem;
  }
}
.fv__offer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: 1.2rem 2rem 1.2rem 1.2rem;
  border-radius: 10rem;
}
.fv__offer-badge-line1 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.37;
  letter-spacing: 0.09rem;
  text-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.45);
}
.fv__offer-badge-line2 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 2.76rem;
  font-weight: 700;
  line-height: 1.37;
  letter-spacing: -0.22rem;
  text-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.45);
}
.fv__offer-badge-line2 span:last-child {
  letter-spacing: 0;
}
.fv__offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.8rem;
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .fv__offer-price {
    justify-content: center;
    gap: 0.2rem;
  }
}
.fv__offer-price-num {
  font-size: 6.4rem;
  line-height: 1;
  color: var(--color-brand);
}
@media (max-width: 767px) {
  .fv__offer-price-num {
    font-size: 3.5rem;
  }
}
.fv__offer-price-yen {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-brand);
}
@media (max-width: 767px) {
  .fv__offer-price-yen {
    font-size: 1.7rem;
  }
}
.fv__offer-price-slash {
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .fv__offer-price-slash {
    font-size: 1.7rem;
  }
}
.fv__offer-price-one {
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .fv__offer-price-one {
    font-size: 2.2rem;
  }
}
.fv__offer-price-unit {
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .fv__offer-price-unit {
    font-size: 1.7rem;
  }
}
.fv__offer-tagline {
  margin: 0;
  padding: 1rem 0rem 1rem 1rem;
  white-space: nowrap;
  text-align: center;
  border-radius: 2px;
  background-color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.35);
  letter-spacing: -0.05rem;
}
@media (max-width: 767px) {
  .fv__offer-tagline {
    font-size: 1.55rem;
    padding: 0.5rem;
  }
}

.statement {
  position: relative;
  z-index: 0;
  padding-block: 6.1rem 7rem;
}
@media (max-width: 767px) {
  .statement {
    padding-block: 5rem;
  }
}
.statement__inner {
  max-width: 116rem;
  margin: 0 auto;
}
.statement__title {
  margin-bottom: 3rem;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .statement__title {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}
.statement__title-accent {
  color: var(--color-brand);
  font-weight: 700;
}
.statement__bubble {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 112rem;
  max-width: calc(100% - 4rem);
  padding-block: 4.5rem 9.5rem;
  border-radius: 0.8rem;
  color: var(--color-text);
  background-image: url(../assets/images/bubble-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .statement__bubble {
    background-image: url(../assets/images/sp-bubble-bg.png);
    padding: 4rem 2.8rem 8.2rem;
  }
}
.statement__decoration {
  position: absolute;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
}
.statement__decoration--1 {
  top: -1.5rem;
  right: -1.9rem;
  width: 7.3rem;
}
@media (max-width: 767px) {
  .statement__decoration--1 {
    top: 1.8rem;
    right: 3.5rem;
    width: 4.3rem;
  }
}
.statement__decoration--2 {
  top: 2.2rem;
  left: -1.8rem;
  width: 12.3rem;
}
@media (max-width: 767px) {
  .statement__decoration--2 {
    top: auto;
    bottom: -7.5rem;
    left: 1rem;
    width: 6.4rem;
  }
}
.statement__decoration--3 {
  right: 1.5rem;
  bottom: -2.4rem;
  width: 14.3rem;
}
@media (max-width: 767px) {
  .statement__decoration--3 {
    right: 1rem;
    bottom: -4.4rem;
    width: 9.8rem;
  }
}
.statement__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 88rem;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .statement__list {
    gap: 2rem;
  }
}
.statement__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .statement__item {
    gap: 1rem;
    font-size: 1.3rem;
  }
}
.statement__item-icon {
  flex-shrink: 0;
  width: 2.6rem;
  aspect-ratio: 1/1;
  margin-top: 0.15em;
  background-image: url("../assets/images/common/ic-check.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .statement__item-icon {
    width: 3rem;
  }
}
.statement__item-body {
  flex: 1;
  min-width: 0;
}
.statement__highlight {
  font-weight: 700;
  background: linear-gradient(transparent 58%, var(--color-yellow-highlight) 58%, var(--color-yellow-highlight) 92%, transparent 92%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.statement__summary {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .statement__summary {
    margin-top: 4.5rem;
  }
}
.statement__summary-intro {
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .statement__summary-intro {
    font-size: 2rem;
    line-height: 2;
  }
}
.statement__summary-intro-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .statement__summary-intro-items {
    gap: 0.6rem;
    flex-wrap: wrap;
  }
}
.statement__summary-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 7rem;
  border-radius: 0.2rem;
  background-color: var(--color-white);
  color: var(--color-brand);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  box-shadow: 0.2rem 0.2rem 0 0.2rem rgba(0, 0, 0, 0.15);
  border: solid 2px var(--color-text);
}
@media (max-width: 767px) {
  .statement__summary-item {
    width: 12rem;
    height: 6rem;
    font-size: 1.55rem;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .statement__summary-intro-items-note {
    width: 100%;
  }
}
.statement__cta {
  margin-top: 6rem;
  font-weight: bold;
  width: 71.5rem;
  margin-inline: auto;
  font-size: 2.8rem;
  line-height: 1.9;
  max-width: 100%;
}
@media (max-width: 767px) {
  .statement__cta {
    margin-top: 3rem;
    padding-inline: 1.8rem;
    font-size: 1.6rem;
  }
}
.statement__cta-logo {
  width: auto;
  height: 6.4rem;
  border-radius: 0.4rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .statement__cta-logo {
    height: 4.5rem;
  }
}
.statement__cta-invite {
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .statement__cta-invite {
    font-size: 1.6rem;
  }
}
.statement__cta-slogan {
  font-size: 2.9rem;
  text-decoration: underline;
  text-decoration-color: var(--color-yellow-highlight);
  text-decoration-thickness: 0.55em;
  text-underline-offset: -0.38em;
  text-decoration-skip-ink: none;
}
@media (max-width: 767px) {
  .statement__cta-slogan {
    font-size: 1.9rem;
    margin-top: 1.5rem;
    line-height: 1.5;
    display: inline-block;
  }
}
.statement__cta-slogan-accent {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .statement__cta-slogan-accent {
    font-size: 2.4rem;
  }
}

.service-contents {
  padding-block: 6rem 7rem;
  color: var(--color-text);
  background-color: white;
}
@media (max-width: 767px) {
  .service-contents {
    padding: 4rem 0 5rem;
  }
}
.service-contents__inner {
  max-width: 116rem;
  margin: 0 auto;
  padding-inline: 2rem;
}
.contents-head {
  margin-bottom: 3rem;
  text-align: center;
}
.contents-head__label {
  margin-bottom: 0.8rem;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-brand);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contents-head__label {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.contents-head__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .contents-head__title {
    font-size: 3rem;
  }
}
.contents-head__label:has(.contents-head__char-clip) {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0;
  row-gap: 0;
}
.contents-head__title:has(.contents-head__char-clip) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  letter-spacing: normal;
  column-gap: 0.04em;
  row-gap: 0;
}
.contents-head__char-clip {
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: baseline;
}
.contents-head__char {
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--char-i, 0) * 0.042s);
}

.has-js-inview .js-inview:not(.is-inview) .contents-head__char {
  transform: translate3d(0, 120%, 0);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .contents-head__char {
    transform: none !important;
    transition: none !important;
  }
}
.contents-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contents-offers {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.contents-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 2.8rem;
  border-radius: 0.4rem;
  border: 2px solid var(--color-text);
  background: #F5F5F5;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .contents-offer {
    flex-direction: row;
    padding-block: 2rem;
    padding-inline: 1rem;
    gap: 1.2rem;
  }
}
.contents-offer__img-wrap {
  height: 18.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contents-offer__img-wrap {
    height: auto;
    width: 10rem;
    flex-shrink: 0;
  }
}
.contents-offer__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.contents-offer__img--punch {
  width: 16.6rem;
}
@media (max-width: 767px) {
  .contents-offer__img--punch {
    width: 10rem;
  }
}
.contents-offer__img--2d3d {
  width: 13.6rem;
}
@media (max-width: 767px) {
  .contents-offer__img--2d3d {
    width: 8.1rem;
  }
}
.contents-offer__img--cad {
  width: 13.9rem;
}
@media (max-width: 767px) {
  .contents-offer__img--cad {
    width: 8.1rem;
  }
}
.contents-offer__body {
  display: contents;
}
@media (max-width: 767px) {
  .contents-offer__body {
    display: block;
  }
}
.contents-offer__title {
  margin-bottom: 1.7rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(transparent 58%, var(--color-yellow-highlight) 58%, var(--color-yellow-highlight) 92%, transparent 92%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 767px) {
  .contents-offer__title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
    display: inline-block;
  }
}
.contents-offer__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(51, 51, 51, 0.95);
  width: 100%;
}
@media (max-width: 767px) {
  .contents-offer__text {
    font-size: 1.4rem;
  }
}

.contents-leadtime {
  padding: 0 5rem 4.8rem;
  border: 2px solid var(--color-text);
  border-radius: 0.4rem;
  background-color: var(--color-gray-ui);
}
@media (max-width: 767px) {
  .contents-leadtime {
    padding: 0 1.4rem 3rem;
  }
}
.contents-leadtime__title {
  display: block;
  width: fit-content;
  margin: 0 auto 3.2rem;
  padding: 1rem 3.2rem;
  border: 2px solid var(--color-text);
  border-top: none;
  border-radius: 0.2rem;
  background-color: var(--color-white);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (max-width: 767px) {
  .contents-leadtime__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem 2rem;
  }
}
.contents-leadtime__title-accent {
  color: var(--color-brand);
}
.contents-leadtime__lead {
  margin: 0 auto 3.4rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(102, 102, 102, 0.98);
}
@media (max-width: 767px) {
  .contents-leadtime__lead {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.contents-leadtime__tables {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 767px) {
  .contents-leadtime__tables {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.contents-leadtime__table {
  flex: 1 1 0;
  min-width: 0;
  max-width: 36rem;
}
@media (max-width: 767px) {
  .contents-leadtime__table {
    max-width: 100%;
  }
}

.leadtime-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: none;
  background-color: transparent;
}
.leadtime-table tr, .leadtime-table th, .leadtime-table td {
  border: none;
  border-radius: 0.2rem;
  border: solid 6px var(--color-white);
}
.leadtime-table tbody tr {
  height: 7.6rem;
}
.leadtime-table--2d3d tbody tr {
  height: 5.7rem;
}
.leadtime-table__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  background-color: var(--color-text);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100;
  height: 5rem;
  border-radius: 0.4rem 0.4rem 0 0;
}
@media (max-width: 767px) {
  .leadtime-table__title {
    font-size: 1.6rem;
    height: 4rem;
  }
}
.leadtime-table__body {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background-color: var(--color-white);
  border-radius: 0 0 0.4rem 0.4rem/0 0 0.4rem 0.4rem;
  overflow: hidden;
  padding: 0.2rem 0.1rem;
  border: solid 2px var(--color-text);
}
.leadtime-table__col {
  padding: 0.8rem 0.6rem;
  background-color: #F05151;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 0.2rem;
  overflow: hidden;
  width: 50%;
}
.leadtime-table__col--arrow {
  width: 18%;
  padding-inline: 0.2rem;
}
.leadtime-table tbody tr {
  background-color: #f0f0f0;
}
.leadtime-table__request {
  border: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.leadtime-table__request::after {
  content: "";
  position: absolute;
  width: 2.7rem;
  aspect-ratio: 1/1;
  background-image: url(../assets/images/common/ic-angle-circle.png);
  background-size: contain;
  left: calc(100% + 3px);
  top: 50%;
  transform: translate(-50%, -50%);
}
.leadtime-table__request-title {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.leadtime-table__request-note {
  color: #F05151;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.leadtime-table__arrow {
  width: 18%;
  padding: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  vertical-align: middle;
}
.leadtime-table__arrow-img {
  display: inline-block;
  width: 2.6rem;
  height: auto;
  vertical-align: middle;
}
.leadtime-table__period {
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
  vertical-align: middle;
}
.contents-consult {
  padding-top: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contents-consult {
    padding-top: 3rem;
  }
}
.contents-consult__lead {
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
}
.contents-consult__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1.2rem 2.4rem;
  position: relative;
}
.contents-consult__character {
  position: absolute;
  height: auto;
  width: 4.6rem;
  left: calc(50% - 22rem);
  bottom: 1.5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .contents-consult__character {
    width: 3rem;
    left: calc(50% - 15.5rem);
    bottom: 0.8rem;
  }
}
.contents-consult__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  height: 10rem;
  border-radius: 999rem;
  background-color: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 0.4rem 0 var(--color-brand);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: solid 2px white;
}
@media (max-width: 767px) {
  .contents-consult__button {
    width: 37rem;
    height: 8rem;
  }
}
.contents-consult__button:hover {
  transform: translate(0, 0.4rem);
  box-shadow: 0 0rem 0 var(--color-brand);
}
.contents-consult__button:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}
.contents-consult__button-label {
  font-size: 2.6rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .contents-consult__button-label {
    font-size: 2rem;
  }
}
.contents-consult__button-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 2.3rem;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .contents-consult__button-icon {
    width: 4.7rem;
    right: 1.6rem;
  }
}
.contents-consult__button-icon-img {
  display: block;
  width: 2rem;
  height: auto;
}
.reason {
  padding-block: 6rem 9rem;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .reason {
    padding-block: 5rem;
  }
}
.reason__inner {
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.reason__inner .contents-head {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .reason__inner .contents-head {
    margin-bottom: 2.4rem;
  }
}
.reason__title-accent {
  font-size: 5rem;
  color: var(--color-brand);
  letter-spacing: 0;
  font-family: var(--font-en);
}
.reason__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7rem;
  width: 100%;
}
@media (max-width: 767px) {
  .reason__list {
    gap: 3.6rem;
  }
}
.reason__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 112rem;
  max-width: 100%;
  min-height: 27rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 0.4rem;
  box-shadow: 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .reason__item {
    flex-direction: column-reverse;
    padding: 1.6rem;
  }
}
.reason__item--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
}
@media (max-width: 767px) {
  .reason__item--reverse {
    flex-direction: column-reverse;
  }
}
.reason__item--reverse .reason__media {
  margin-right: 0;
  margin-left: -4rem;
}
@media (max-width: 767px) {
  .reason__item--reverse .reason__media {
    margin: 0;
  }
}
.reason__tag {
  position: absolute;
  bottom: calc(100% - 1rem);
  left: 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .reason__tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 0.5rem);
  }
}
.reason__tag--end {
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .reason__tag--end {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.reason__tag-label {
  font-size: 3.4rem;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .reason__tag-label {
    font-size: 2rem;
  }
}
.reason__tag-num {
  font-size: 4.4rem;
  color: var(--color-brand);
}
@media (max-width: 767px) {
  .reason__tag-num {
    font-size: 2.8rem;
  }
}
.reason__copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 6rem;
  min-width: 0;
}
@media (max-width: 767px) {
  .reason__copy {
    padding: 1.4rem 0 0;
  }
}
.reason__name {
  position: relative;
  z-index: 0;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .reason__name {
    text-align: center;
  }
}
.reason__name-text {
  position: relative;
  display: inline;
  background-image: linear-gradient(180deg, transparent 0%, transparent calc(100% - 1.4rem), var(--color-yellow-highlight) calc(100% - 1.4rem), var(--color-yellow-highlight) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 767px) {
  .reason__name-text {
    font-size: 1.8rem;
  }
}
.reason__text {
  margin-top: 2rem;
  max-width: 52rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .reason__text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
.reason__media {
  position: relative;
  z-index: 1;
  width: 52rem;
  margin-top: -3rem;
  margin-right: -4rem;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 0.4rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .reason__media {
    margin: 0;
    aspect-ratio: 33/17;
  }
}
.reason__img {
  display: block;
  width: 100%;
  height: 27rem;
  object-fit: cover;
  border-radius: 0.4rem;
}
.plan {
  padding-block: 6rem 7rem;
  color: var(--color-text);
  background-color: white;
}
@media (max-width: 767px) {
  .plan {
    padding-block: 4rem;
  }
}
.plan__inner {
  width: 99rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.plan__inner .contents-head {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .plan__inner .contents-head {
    margin-bottom: 2.4rem;
  }
}
.plan__pricing {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .plan__pricing {
    margin-bottom: 3rem;
  }
}
.plan__pricing-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .plan__pricing-row {
    flex-direction: column;
    gap: 3rem;
  }
}
.plan__figure {
  flex-shrink: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .plan__figure {
    display: none;
  }
}
.plan__figure--left {
  width: 14rem;
}
@media (max-width: 767px) {
  .plan__figure--left {
    order: 2;
  }
}
.plan__figure--right {
  width: 13rem;
}
@media (max-width: 767px) {
  .plan__figure--right {
    order: 3;
  }
}
.plan__figure-img {
  display: block;
  width: 100%;
  height: auto;
}
.plan__main {
  flex: 1 1 auto;
  align-self: center;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .plan__main {
    order: 1;
    max-width: 100%;
  }
}
.plan__lead {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .plan__lead {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
}
.plan__price-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 47rem;
  height: 9rem;
  margin-bottom: 1rem;
  border: 4px solid #000;
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .plan__price-box {
    display: flex;
    width: 100%;
    height: 6.7rem;
    margin-bottom: 0.5rem;
  }
}
.plan__price-line {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .plan__price-line {
    font-size: 2.2rem;
    white-space: normal;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.plan__price-amount {
  font-size: 6.4rem;
  color: var(--color-brand);
  font-weight: bold;
}
@media (max-width: 767px) {
  .plan__price-amount {
    font-size: 4.6rem;
  }
}
.plan__price-tax {
  color: var(--color-brand);
}
.plan__price-yen, .plan__price-tail, .plan__price-duration {
  color: var(--color-text);
}
.plan__price-duration {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .plan__price-duration {
    font-size: 3rem;
  }
}
.plan__note {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 767px) {
  .plan__note {
    font-size: 1.2rem;
  }
}
.plan__assurance {
  position: relative;
  padding: 8.4rem 4rem 5rem;
  border: 2px solid #000;
  background-color: #ebf4ff;
  border-radius: 0.4rem;
  box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .plan__assurance {
    padding: 7rem 1.6rem 2rem;
  }
}
.plan__assurance-title {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin: 0;
  padding: 1.4rem 3rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: var(--color-white);
  border: 2px solid #000;
  border-top: 0;
  border-radius: 0 0 0.4rem 0.4rem;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .plan__assurance-title {
    padding: 1rem 2rem;
    font-size: 2rem;
  }
}
.plan__assurance-lead {
  margin: 0 auto 3.2rem;
  max-width: 88rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 767px) {
  .plan__assurance-lead {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.plan__assurance-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: 43rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 3rem;
  background-color: var(--color-white);
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  .plan__assurance-list {
    gap: 1.4rem;
    padding: 1.6rem 1rem;
  }
}
.plan__assurance-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .plan__assurance-item {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
}
.plan__assurance-item-icon {
  flex-shrink: 0;
  width: 1.85rem;
  aspect-ratio: 1/1;
  margin-top: 0.15em;
  background-image: url("../assets/images/common/ic-check.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .plan__assurance-item-icon {
    width: 2.2rem;
  }
}
.plan__assurance-item-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.software {
  padding-block: 6rem 7rem;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .software {
    padding-block: 5rem;
  }
}
.software__inner {
  width: 99rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.software__inner .contents-head {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .software__inner .contents-head {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .software__inner .contents-head__title {
    font-size: 2.85rem;
  }
}
.software__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 0 0 6rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .software__cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
  }
}
.software__card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 7rem 3rem 4rem;
  background-color: var(--color-white);
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  .software__card {
    padding: 5rem 1.5rem 1.5rem;
  }
}
.software__card-label {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  padding: 1rem 3rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-yellow-highlight);
  border: 2px solid #000;
  border-top: none;
  transform: translate(-50%, 0);
  width: max-content;
  max-width: calc(100% - 3rem);
  border-radius: 0 0 0.4rem 0.4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .software__card-label {
    font-size: 1.6rem;
  }
}
.software__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .software__card-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .software__card-list--2d-cad li:nth-of-type(odd) {
    width: 16.7rem;
  }
  .software__card-list--2d-cad li:nth-of-type(even) {
    width: calc(100% - 17.7rem);
  }
}
@media (max-width: 767px) {
  .software__card-list--3d-cad li:nth-of-type(odd) {
    width: 11.8rem;
  }
  .software__card-list--3d-cad li:nth-of-type(even) {
    width: calc(100% - 12.8rem);
  }
}
@media (max-width: 767px) {
  .software__card-list--interchange li:nth-of-type(odd) {
    width: 13.5rem;
  }
  .software__card-list--interchange li:nth-of-type(even) {
    width: calc(100% - 14.5rem);
  }
}
.software__card-item {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .software__card-item {
    font-size: 1.3rem;
  }
}
.software__card-item::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: var(--color-text);
}
.software__compliance {
  position: relative;
  margin: 0 0 1rem;
  padding: 7.5rem 3rem 4.5rem;
  background-color: #f7f7f7;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  .software__compliance {
    padding: 6.2rem 1.6rem 3rem;
    background-color: white;
  }
}
.software__compliance-title {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  padding: 1rem 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-white);
  border: 2px solid #000;
  border-top: none;
  transform: translate(-50%, 0);
  width: max-content;
  max-width: calc(100% - 4rem);
  border-radius: 0 0 0.4rem 0.4rem;
}
@media (max-width: 767px) {
  .software__compliance-title {
    font-size: 2rem;
    padding: 0.8rem 2rem;
  }
}
.software__compliance-body {
  text-align: center;
}
@media (max-width: 767px) {
  .software__compliance-body {
    text-align: left;
  }
}
.software__compliance-text {
  margin: 0 0 1.6rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .software__compliance-text {
    font-size: 1.3rem;
  }
}
.software__compliance-text--emphasis {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .software__compliance-text--emphasis {
    font-size: 1.6rem;
  }
}
.software__compliance-actions {
  margin: 0;
}
@media (max-width: 767px) {
  .software__compliance-actions {
    text-align: center;
  }
}
.software__compliance-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: underline;
}
.software__compliance-link:hover {
  text-decoration: none;
}
.software__compliance-link:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

@keyframes site-footer-top-arrow-reveal {
  from {
    transform: translateY(110%);
    opacity: 0;
    color: var(--color-text);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    color: var(--color-text);
  }
}
.site-footer {
  background-color: #212121;
  color: var(--color-white);
  padding-block: 6rem;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 5rem 2rem 3rem;
  }
}
.site-footer__inner {
  width: 120rem;
  max-width: 100%;
  margin: 0 auto;
}
.site-footer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .site-footer__head {
    margin-bottom: 0;
  }
}
.site-footer__logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
  transition: opacity 0.2s;
}
.site-footer__logo-link:hover {
  opacity: 0.85;
}
.site-footer__logo {
  display: block;
  width: 24.6rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .site-footer__logo {
    width: 23rem;
  }
}
.site-footer__top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  padding: 0;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 500;
  width: 10rem;
  aspect-ratio: 1/1;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background-color: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.28s ease, border-color 0.28s ease;
}
.site-footer__top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background-color: var(--color-white);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.site-footer__top > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .site-footer__top {
    width: 8rem;
  }
}
.site-footer__top:hover {
  color: var(--color-text);
  border-color: var(--color-text);
  transition: color 0.28s ease 0.45s, border-color 0.28s ease 0.45s;
}
.site-footer__top:hover::before {
  transform: scaleY(1);
}
.site-footer__top:hover .site-footer__top-arrow {
  animation: site-footer-top-arrow-reveal 0.42s cubic-bezier(0.33, 1, 0.68, 1) 0.45s both;
}
.site-footer__top:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 0.3rem;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__top::before {
    transition: none;
  }
  .site-footer__top:hover::before {
    transform: scaleY(1);
  }
  .site-footer__top:hover .site-footer__top-arrow {
    animation: none;
    transform: translateY(0);
    opacity: 1;
    color: var(--color-text);
  }
}
.site-footer__top-arrow-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 2.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.site-footer__top-arrow {
  display: block;
  width: 0.8rem;
  height: auto;
  flex-shrink: 0;
  transform: translateY(0);
  opacity: 1;
  color: inherit;
  animation: none;
  transition: transform 0.32s ease, opacity 0.28s ease, color 0.28s ease;
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__top-arrow {
    transition: none;
  }
}
.site-footer__top-label {
  display: block;
  font-size: 1.5rem;
}
.site-footer__info {
  font-size: 1.5rem;
  line-height: 2;
  font-style: normal;
}
@media (max-width: 767px) {
  .site-footer__info {
    font-size: 1.4rem;
    margin-top: -1rem;
  }
}
.site-footer__contact {
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}
.site-footer__contact a {
  color: #fff !important;
  font-size: 1.5rem;
  text-decoration: none;
}
.site-footer__contact a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .site-footer__contact a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (max-width: 767px) {
  .site-footer__contact {
    font-size: 1.4rem;
    color: #fff;
  }
}
.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__bottom {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
  }
}
.site-footer__copyright {
  margin: 0;
  min-width: min(100%, 32rem);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 767px) {
  .site-footer__copyright {
    text-align: center;
    font-size: 1.05rem;
  }
}
.site-footer__nav {
  flex-shrink: 0;
}
.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .site-footer__nav-list {
    gap: 0 1.8rem;
  }
}
.site-footer__nav-item {
  margin: 0;
}
.site-footer__nav-sep {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}
.site-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (max-width: 767px) {
  .site-footer__nav-link {
    font-size: 1.2rem;
  }
}
.site-footer__nav-link:hover {
  opacity: 0.8;
}
.site-footer__external-icon {
  display: block;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  margin-left: 1rem;
}
