* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  color: #000000;
}

html {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 499px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  html {
    font-size: calc(16 / 375 * 500 * 1px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1439px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

button {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

body.is-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 110;
  height: 3.75rem;
  background-color: #fff;
  border-bottom: 1px solid #c9c9c9;
}
@media screen and (max-width: 768px) {
  .header {
    height: 66px;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 2.375rem;
}

.header__logo {
  width: 12.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__nav {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 0.5rem;
  padding-inline: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  color: #3B4043;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__nav-link .fa-chevron-right {
  font-size: 0.970625rem;
  color: #3B4043;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #d45718;
  }
  .header__nav-link:hover .fa-chevron-right {
    color: #d45718;
  }
}
.header__nav-item--point {
  position: relative;
}

.header__mega-menu {
  position: absolute;
  top: 100%;
  left: 1.25rem;
  padding: 0.875rem 0;
  background-color: #0f1f5b;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.header__nav-item--point:hover .header__mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__nav-item--point.is-menu-closed:hover .header__mega-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (any-hover: hover) {
  .header__nav-item--point:hover .header__nav-link {
    color: #d45718;
  }
  .header__nav-item--point:hover .header__nav-link .fa-chevron-right {
    color: #d45718;
  }
}
.header__mega-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__mega-menu-item {
  padding: 0.625rem 0;
}

.header__mega-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  padding-inline: 1.5rem 2.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__mega-menu-link::before {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 0.8125rem;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (any-hover: hover) {
  .header__mega-menu-link:hover {
    opacity: 0.7;
  }
}
.drawer__icon {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  width: 66px;
  height: 66px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  background-color: #0f1f5b;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.drawer__icon-bar {
  display: block;
  width: 2rem;
  height: 0.125rem;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer__icon.js-show .drawer__icon-bar:nth-child(1) {
  -webkit-transform: translateY(0.75rem) rotate(45deg);
          transform: translateY(0.75rem) rotate(45deg);
}

.drawer__icon.js-show .drawer__icon-bar:nth-child(2) {
  opacity: 0;
}

.drawer__icon.js-show .drawer__icon-bar:nth-child(3) {
  -webkit-transform: translateY(-0.75rem) rotate(-45deg);
          transform: translateY(-0.75rem) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  height: calc(100% - 66px);
  z-index: 101;
  background-color: #d7e2e7;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 769px) {
  .drawer {
    display: none;
  }
}

.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__item {
  border-bottom: 1px solid #fff;
}

.drawer__heading,
.drawer__subitem:not(:last-child) {
  position: relative;
}

.drawer__heading::after,
.drawer__subitem:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 3.25rem;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
}

.drawer__link,
.drawer__sublink,
.drawer__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.75rem;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #0f1f5b;
  text-decoration: none;
}

.drawer__link {
  padding-left: 2.375rem;
}

.drawer__sublink {
  padding-left: 3.25rem;
}

.drawer__heading {
  padding-left: 3.25rem;
}

.drawer__link::before,
.drawer__sublink::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.6875rem;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #0f1f5b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer__bottom {
  padding-block: 3.125rem 3.75rem;
  text-align: center;
}

.drawer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #d45718;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.drawer__tel-icon {
  width: 2.25rem;
  aspect-ratio: 46/34;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer__line {
  margin-top: 1.25rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #3ea337;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #3ea337;
  text-decoration: none;
  white-space: nowrap;
}

.drawer__line-icon {
  display: block;
  width: 2.0625rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

body.is-drawer-open {
  overflow: hidden;
  height: 100%;
}

.footer {
  padding: 6.875rem 0 11.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 4.125rem 0 5.875rem;
  }
}

.footer__logo {
  width: 16.25rem;
  margin-inline: auto;
}
.footer__info {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .footer__info {
    margin-top: 2.125rem;
  }
}

.footer__company {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .footer__company {
    font-size: 1rem;
    line-height: 2;
  }
}

.footer__address {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 1rem;
    line-height: 2;
  }
}

.footer__contact {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    font-size: 1rem;
    line-height: 2;
  }
}
.footer__contact a {
  color: #000000;
}

.footer__business {
  width: 100%;
  max-width: 37.5rem;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 768px) {
  .footer__business {
    max-width: 100%;
    margin: 1rem auto 0;
  }
}

.footer__business-title {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__business-title {
    font-size: 0.875rem;
    line-height: 1.9285714286;
  }
}

.footer__business-list {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__business-list {
    font-size: 0.875rem;
    line-height: 1.9285714286;
  }
}

.footer__business-license {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__business-license {
    font-size: 0.875rem;
    line-height: 1.9285714286;
  }
}

.top-fv__top {
  position: relative;
  z-index: 1;
  aspect-ratio: 1440/900;
}
@media screen and (max-width: 768px) {
  .top-fv__top {
    aspect-ratio: auto;
  }
}

.top-fv__top picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-fv__line {
  width: 25.2083333333vw;
  aspect-ratio: 709/409;
  position: absolute;
  top: 3.4722222222vw;
  right: 2.9166666667vw;
  display: block;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-fv__line {
    width: 18.6875rem;
    aspect-ratio: 601/363;
    top: 33.875rem;
    right: calc(50% - 8.1875rem);
  }
}

@media (any-hover: hover) {
  .top-fv__line:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
.top-fv__text {
  width: 37.0731707317vw;
  position: absolute;
  top: 3.1944444444vw;
  left: 3.8888888889vw;
}
.top-fv__text img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-fv__text {
    width: 21.0625rem;
    margin-inline: auto;
    top: 2.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-fv-bottom {
  position: relative;
  z-index: 2;
  margin-top: -7.2916666667vw;
}
@media screen and (max-width: 768px) {
  .top-fv-bottom {
    margin-top: -3.6875rem;
  }
}

.top-fv-bottom__text {
  width: 20.625vw;
  position: absolute;
  top: 15.8333333333vw;
}
@media screen and (max-width: 768px) {
  .top-fv-bottom__text {
    display: none;
  }
}

.top-fv-bottom__text.text01 {
  right: calc(50% + 13.4027777778vw);
}

.top-fv-bottom__text.text02 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top-fv-bottom__text.text03 {
  left: calc(50% + 12.9166666667vw);
}

.top-works {
  padding: 9.375rem 0 4.25rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-works {
    padding: 4rem 0 3.125rem;
  }
}

.inner.top-works__inner {
  max-width: 77.25rem;
}

.top-works__head {
  text-align: center;
}

.top-works__en {
  width: 15.75rem;
  aspect-ratio: 252/84;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-works__en {
    width: 11.875rem;
  }
}

.top-works__ja {
  margin-top: 0.6875rem;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0f1f5b;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-works__ja {
    font-size: 1.25rem;
    letter-spacing: -0.06em;
  }
}

.top-works__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5.625rem;
     -moz-column-gap: 5.625rem;
          column-gap: 5.625rem;
  row-gap: 2.875rem;
}
@media screen and (max-width: 768px) {
  .top-works__list {
    max-width: 500px;
    margin: 2.5rem auto 0;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 1.25rem;
  }
}

.top-works__link {
  display: block;
}

.top-works__station {
  margin-top: 0.875rem;
  font-size: 1rem;
  color: #000000;
  line-height: 1.625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-works__station {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.top-works__desc {
  font-size: 1rem;
  color: #000000;
  line-height: 1.625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-works__desc {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.top-works__desc span {
  letter-spacing: -0.02em;
}

.top-works__btn-wrap {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-works__btn-wrap {
    margin-top: 3.375rem;
  }
}

.top-works__btn {
  width: 14.8125rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.875rem 2.5rem;
  border: 1px solid #0f1f5b;
  color: #0f1f5b;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (any-hover: hover) {
  .top-works__btn:hover {
    background-color: #0f1f5b;
    color: #fff;
  }
  .top-works__btn:hover .top-works__btn-icon {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.top-works__btn-icon {
  width: 0.3125rem;
  aspect-ratio: 5/10;
  position: absolute;
  left: 1.25rem;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.top-voice {
  padding: 4.25rem 0 7.25rem;
}
@media screen and (max-width: 768px) {
  .top-voice {
    padding: 3.125rem 0 4.125rem;
  }
}

.top-voice__head {
  text-align: center;
}

.top-voice__en {
  width: 15.75rem;
  aspect-ratio: 252/84;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-voice__en {
    width: 11.4375rem;
  }
}

.top-voice__ja {
  margin-top: 0.6875rem;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0f1f5b;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-voice__ja {
    font-size: 1.25rem;
  }
}

.top-voice__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3.375rem;
     -moz-column-gap: 3.375rem;
          column-gap: 3.375rem;
  row-gap: 2.875rem;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .top-voice__list {
    max-width: 500px;
    margin: 1.25rem auto 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.top-voice__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border: 1px solid #0f1f5b;
}

.top-voice__item-head {
  padding: 1.5rem 0.75rem 1rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.375rem;
}
@media screen and (max-width: 768px) {
  .top-voice__item-head {
    padding: 1.25rem 0.75rem 1rem 0.875rem;
    gap: 1rem;
  }
}

.top-voice__img {
  width: 7.375rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-voice__img {
    width: 6.5rem;
  }
}

.top-voice__name {
  font-size: 1rem;
  font-weight: 500;
  color: #0f1f5b;
}

.top-voice__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #0f1f5b;
  line-height: 1.7777777778;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .top-voice__title {
    font-size: 1rem;
  }
}

.top-voice__text {
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  font-size: 1rem;
  color: #000000;
  line-height: 1.75;
  background-color: #ebf1f3;
}
@media screen and (max-width: 768px) {
  .top-voice__text {
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
  }
}

.top-point {
  padding: 6.75rem 0 0;
  margin-top: -2.75rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top-point {
    padding: 3.125rem 0 0;
    margin-top: -1.25rem;
  }
}

.top-point__head {
  padding-bottom: 6rem;
  text-align: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-point__head {
    padding-bottom: 3.75rem;
  }
}

.top-point__head::after {
  content: "";
  background: #0f1f5b;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-357deg);
          transform: rotate(-357deg);
}

.top-point__title {
  width: 35.625rem;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-point__title {
    width: 18.8125rem;
  }
}

.top-point__item {
  position: relative;
  z-index: 1;
  padding: 4.375rem 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .top-point__item {
    padding: 2.375rem 0 3.75rem;
  }
}

.top-point__item:nth-child(2) {
  padding: 3.375rem 0 12.125rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(2) {
    padding: 3.375rem 0 3.375rem;
  }
}

.top-point__item:nth-child(3) {
  padding: 3.75rem 0 12.125rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(3) {
    padding: 2.75rem 0 2.75rem;
  }
}

.top-point__item:nth-child(4) {
  padding: 2.875rem 0 5.875rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(4) {
    padding: 3.375rem 0 3.375rem;
  }
}

.top-point__item:nth-child(5) {
  padding: 3.5rem 0 12.125rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(5) {
    padding: 2.75rem 0 2.75rem;
  }
}

.top-point__item:nth-child(6) {
  padding: 3.375rem 0 4.75rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(6) {
    padding: 3.375rem 0 3.375rem;
  }
}

.top-point__item::after {
  content: "";
  background: #0f1f5b;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.top-point__item:nth-child(odd)::after {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.top-point__item:nth-child(even)::after {
  -webkit-transform: rotate(-357deg);
          transform: rotate(-357deg);
}

.top-point__item-inner.inner {
  max-width: 80rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-point__item-inner.inner {
    max-width: 500px;
  }
}

.top-point__item-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-point__item-inner::before {
    display: none;
  }
}

.top-point__item:nth-child(1) .top-point__item-inner::before {
  background: url(../img/top/point01-img.jpg) no-repeat center center/contain;
  width: 37rem;
  aspect-ratio: 1184/790;
  right: 0;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(1) .top-point__item-inner::before {
    top: 13.4375rem;
    bottom: auto;
  }
}

.top-point__item:nth-child(2) .top-point__item-inner::before {
  background: url(../img/top/point02-img.jpg) no-repeat center center/contain;
  width: 41.5625rem;
  aspect-ratio: 1330/886;
  left: 0;
  bottom: -10rem;
  right: auto;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(2) .top-point__item-inner::before {
    top: 6.5625rem;
    bottom: auto;
  }
}

.top-point__item:nth-child(3) .top-point__item-inner::before {
  background: url(../img/top/point03-img.jpg) no-repeat center center/contain;
  width: 41.5625rem;
  aspect-ratio: 1330/886;
  right: 0;
  bottom: -7.75rem;
  right: auto;
}

.top-point__item:nth-child(3) .top-point__item-inner::before {
  background: url(../img/top/point03-img.jpg) no-repeat center center/contain;
  width: 41.5625rem;
  aspect-ratio: 1310/872;
  right: 0;
  bottom: -8.375rem;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(3) .top-point__item-inner::before {
    top: 6.5625rem;
    bottom: auto;
  }
}

.top-point__item:nth-child(4) .top-point__item-inner::before {
  background: url(../img/top/point04-img.jpg) no-repeat center center/contain;
  width: 40.9375rem;
  aspect-ratio: 1330/886;
  left: 0;
  right: auto;
  bottom: -0.5rem;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(4) .top-point__item-inner::before {
    top: 6.5625rem;
    bottom: auto;
  }
}

.top-point__item:nth-child(5) .top-point__item-inner::before {
  background: url(../img/top/point05-img.jpg) no-repeat center center/contain;
  width: 39.0625rem;
  aspect-ratio: 1250/834;
  right: 0;
  bottom: -8.125rem;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(5) .top-point__item-inner::before {
    top: 9.0625rem;
    bottom: auto;
  }
}

.top-point__item:nth-child(6) .top-point__item-inner::before {
  background: url(../img/top/point06-img.jpg) no-repeat center center/contain;
  width: 39.8125rem;
  aspect-ratio: 1274/850;
  left: 0;
  right: auto;
  bottom: -1.25rem;
}
@media (min-width: 769px) {
  .top-point__item:nth-child(6) .top-point__item-inner::before {
    top: 7.8125rem;
    bottom: auto;
  }
}

.top-point-item__head {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  row-gap: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .top-point-item__head {
    width: 100%;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.top-point__item:nth-child(odd) .top-point-item__head {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.top-point__item:nth-child(even) .top-point-item__head {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(even) .top-point-item__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.top-point__num {
  height: 10.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .top-point__num {
    height: 3.5rem;
    grid-row: 1/2;
    grid-column: 1/2;
    margin-bottom: 1rem;
  }
}

.top-point__item:nth-child(even) .top-point__num {
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(even) .top-point__num {
    grid-column: 1/2;
  }
}

.top-point__item:nth-child(1) .top-point__num {
  aspect-ratio: 76/161;
}

.top-point__item:nth-child(2) .top-point__num {
  aspect-ratio: 112/161;
}

.top-point__item:nth-child(3) .top-point__num {
  aspect-ratio: 106/161;
}

.top-point__item:nth-child(4) .top-point__num {
  aspect-ratio: 100/161;
}

.top-point__item:nth-child(5) .top-point__num {
  aspect-ratio: 106/161;
}

.top-point__item:nth-child(6) .top-point__num {
  aspect-ratio: 98/165;
}

.top-point-item__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.625rem;
  font-weight: bold;
  color: #0f1f5b;
  line-height: 1.2;
  padding: 0 0.125rem 0.75rem;
  border-bottom: 2px solid #0f1f5b;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .top-point-item__title {
    font-size: 1.625rem;
    border: none;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.top-point__item:nth-child(odd) .top-point-item__title {
  grid-column: 2/3;
  grid-row: 1/2;
}

.top-point__item:nth-child(even) .top-point-item__title {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(even) .top-point-item__title {
    grid-column: 2/3;
  }
}

.top-point-item__title .accent {
  color: #d45718;
}

.top-point__sub {
  margin-top: 1.125rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .top-point__sub {
    margin-top: 0;
    font-size: 1.125rem;
    letter-spacing: -0.06em;
    border-top: 1px solid #0f1f5b;
    padding-top: 1rem;
  }
}

.top-point__item:nth-child(odd) .top-point__sub {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(odd) .top-point__sub {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.top-point__item:nth-child(even) .top-point__sub {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(even) .top-point__sub {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.top-point__body {
  margin-top: 3.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0f1f5b;
  line-height: 1.7222222222;
}
@media screen and (max-width: 768px) {
  .top-point__body {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.top-point__item:nth-child(2) .top-point__body {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(2) .top-point__body {
    margin-top: 1.5rem;
  }
}

.top-point__item:nth-child(3) .top-point__body {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(3) .top-point__body {
    margin-top: 1.5rem;
  }
}

.top-point__item:nth-child(4) .top-point__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(4) .top-point__body {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .top-point__item:nth-child(4) .top-point__body.middle {
    margin-top: 1.5rem;
  }
}

.top-point__item:nth-child(4) .top-point__body.last {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(4) .top-point__body.last {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-point__item:nth-child(5) .top-point__body {
    margin-top: 0.75rem;
  }
}

.top-point__item:nth-child(6) .top-point__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-point__item:nth-child(6) .top-point__body {
    margin-top: 2.5rem;
  }
}

.top-point__body .large {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-point__body .large {
    font-size: 1.3125rem;
    letter-spacing: -0.08em;
  }
}

.top-point__body .narrow {
  letter-spacing: -0.4em;
}

.top-point__tags {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .top-point__tags {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .top-point__item:nth-child(4) .top-point__tags {
    margin-top: 1.25rem;
  }
}

.top-point__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background-color: #d45718;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.9545454545;
  font-weight: 400;
  padding: 0 0.875rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .top-point__tag {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2;
    padding: 0 0.875rem;
  }
}

.top-point__foot {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: #0f1f5b;
  line-height: 1.7222222222;
}
@media screen and (max-width: 768px) {
  .top-point__foot {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.top-point__foot--accent {
  margin-top: 1.75rem;
  color: #d45718;
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-point__foot--accent {
    margin-top: 0.75rem;
    font-size: 1.5rem;
    line-height: 1.375;
    letter-spacing: -0.06em;
  }
}

@media screen and (max-width: 768px) {
  .top-point__item:nth-child(5) .top-point__foot--accent {
    margin-top: 1.5rem;
  }
}

.top-point__item:nth-child(5) .top-point__foot--accent .narrow {
  letter-spacing: -0.1em;
}

.top-point__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-point__img--sp {
    display: block;
    margin-top: 1.875rem;
  }
}

.top-point__fee {
  display: block;
  width: 31.75rem;
  margin-left: auto;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .top-point__fee {
    width: 16.625rem;
    margin: 1.875rem auto 0;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(2) .top-point__item-inner {
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(2) .top-point-item__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(2) .top-point__body,
  .top-point__item:nth-child(2) .top-point__foot,
  .top-point__item:nth-child(2) .top-point__sub {
    text-align: right;
  }
}

.top-point__highlight {
  margin-top: 2.5rem;
  color: #d45718;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.7692307692;
}
@media screen and (max-width: 768px) {
  .top-point__highlight {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 1.375;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(4) .top-point__item-inner {
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(4) .top-point-item__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(4) .top-point__highlight,
  .top-point__item:nth-child(4) .top-point__body,
  .top-point__item:nth-child(4) .top-point__sub {
    text-align: right;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(4) .top-point__tags {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.top-point__sub--serif {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
}

@media (min-width: 769px) {
  .top-point__item:nth-child(6) .top-point__item-inner {
    margin-left: auto;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(6) .top-point-item__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(6) .top-point__highlight,
  .top-point__item:nth-child(6) .top-point__body,
  .top-point__item:nth-child(6) .top-point__sub {
    text-align: right;
  }
}

@media (min-width: 769px) {
  .top-point__item:nth-child(even) .btn-more {
    margin-left: auto;
  }
}

.contact {
  padding: 2.75rem 0 6.25rem;
  background-color: #faede6;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 2rem 0 5rem;
  }
}

.contact__lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1f5b;
  line-height: 1.7916666667;
}
@media screen and (max-width: 768px) {
  .contact__lead {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.contact__cards {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.25rem;
}
@media screen and (max-width: 768px) {
  .contact__cards {
    max-width: 500px;
    margin: 2.5rem auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.contact__card {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .contact__card {
    padding: 1rem 1.25rem 1.25rem;
  }
}

.contact__card--tel,
.contact__card--line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__card--form {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact__card--form {
    margin-top: 1rem;
  }
}

.contact__card-title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #0f1f5b;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #0f1f5b;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__card-title {
    font-size: 1.0625rem;
    padding-bottom: 0.875rem;
  }
}

.contact__tel-wrap {
  margin-top: 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .contact__tel-wrap {
    margin-top: 1.125rem;
    gap: 0.1875rem;
  }
}

.contact__tel-icon {
  width: 2.875rem;
  aspect-ratio: 46/34;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .contact__tel-icon {
    width: 2.25rem;
  }
}

.contact__tel-num {
  font-size: 3.125rem;
  font-weight: 500;
  color: #d45718;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact__tel-num {
    font-size: 2.5rem;
    white-space: nowrap;
  }
}

.contact__tel-hours {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .contact__tel-hours {
    margin-top: 1.125rem;
  }
}

.contact__line-body {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .contact__line-body {
    margin-top: 0.625rem;
  }
}

.contact__line-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  color: #0f1f5b;
  line-height: 1.4444444444;
}
@media screen and (max-width: 768px) {
  .contact__line-text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    letter-spacing: -0.04em;
  }
}

.contact__line-qr {
  width: 8.3125rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact__line-qr {
    display: none;
  }
}

@media (any-hover: hover) {
  .contact__line-qr:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
.contact__line-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact__line-btn {
    display: block;
    margin-top: 0.75rem;
    border-radius: 6px;
    padding: 0.5rem;
    border: 1px solid #3ea337;
  }
}

@media screen and (max-width: 768px) {
  .contact__line-top {
    display: block;
    background-color: #3ea337;
    color: #fff;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .contact__line-bottom {
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4375rem;
    color: #3ea337;
    font-size: 1.1875rem;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .contact__line-icon {
    display: block;
    width: 2.1875rem;
    aspect-ratio: 1/1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact__card--form {
  border-radius: 17px;
  padding: 3.625rem 1.375rem 6.875rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .contact__card--form {
    max-width: 500px;
    margin-inline: auto;
    padding: 1rem 1.25rem 4.125rem;
  }
}

.contact__error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: #fff5f3;
  border: 1px solid #d45718;
  color: #0f1f5b;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form {
  margin-top: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .contact-form {
    margin-top: 1rem;
  }
}

.contact-form__row {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .contact-form__row {
    margin-bottom: 1rem;
  }
}

.contact-form__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0f1f5b;
  margin-bottom: 0.375rem;
}

.contact-form__label--static {
  margin-bottom: 0.5rem;
}

.contact-form__req {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background-color: #d45718;
  border-radius: 0.1875rem;
  vertical-align: 0.1em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0f1f5b;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 0.5rem;
  line-height: 1.5;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #0f1f5b;
  -webkit-box-shadow: 0 0 0 2px rgba(15, 31, 91, 0.15);
          box-shadow: 0 0 0 2px rgba(15, 31, 91, 0.15);
}

.contact-form__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.contact-form__radio-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  color: #0f1f5b;
  cursor: pointer;
}
.contact-form__radio-label input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #0f1f5b;
}

.contact-form__submit-wrap {
  margin-top: 2rem;
  text-align: center;
}

.contact-form__submit {
  display: inline-block;
  min-width: 12rem;
  padding: 1rem 2.5rem;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background-color: #d45718;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
@media (any-hover: hover) {
  .contact-form__submit:hover {
    background-color: #b84a14;
  }
}
.contact-form__submit:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.thanks-body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.thanks-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.thanks {
  padding: 4rem 0 3rem;
  background-color: #faede6;
}

.thanks__inner {
  text-align: center;
  max-width: 40rem;
}

.thanks__logo {
  margin: 0 0 2rem;
}
.thanks__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.thanks__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1f5b;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.thanks__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #0f1f5b;
  line-height: 1.75;
}

.thanks__btn-wrap {
  margin-top: 2.5rem;
}

.thanks__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background-color: #d45718;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .thanks__btn:hover {
    background-color: #b84a14;
  }
}

.footer.thanks-footer {
  padding: 2rem 0;
  background-color: #0f1f5b;
  text-align: center;
}
.footer.thanks-footer .footer__info {
  margin-top: 0;
  text-align: center;
}
.footer.thanks-footer .footer__company,
.footer.thanks-footer .footer__address,
.footer.thanks-footer .footer__contact {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0.25rem 0;
}
.footer.thanks-footer .footer__contact a {
  color: #fff;
}

.sub-mv.design-mv {
  margin-block: 5rem;
}
@media screen and (max-width: 768px) {
  .sub-mv.design-mv {
    text-align: center;
    margin-block: 3.75rem;
  }
}

.sub-mv__textwrap.design-mv__textwrap::after {
  background: url(../img/design/sub-designmv.png) no-repeat center center/contain;
  max-width: 36.5625rem;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -8%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.design-mv__textwrap::after {
    bottom: -90%;
    right: 0;
  }
}

.design-main .sub-mv__text {
  width: 100%;
  max-width: 37.125rem;
}

.sub-maind.design-maind {
  margin-block: 7rem;
}
@media screen and (max-width: 768px) {
  .sub-maind.design-maind {
    -webkit-margin-before: 21.25rem;
            margin-block-start: 21.25rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}

.design-maind__circle-text {
  padding-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .sub-merit.design-merit {
    max-width: 500px;
    margin-inline: auto;
  }
}

.design-merit__titlewrap {
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .design-merit__titlewrap {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}

.sub-merit__wrap.--design {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__wrap.--design {
    line-height: 1.6;
  }
}

.design-merit__listbg,
.design-merit__messagebox {
  background-color: #e8f1f1;
  padding-block: 2.5rem;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 768px) {
  .design-merit__listbg,
  .design-merit__messagebox {
    padding-block: 1.75rem;
    padding-inline: 1rem;
  }
}

.design-main .sub-merit__list {
  row-gap: 1.375rem;
}

@media screen and (max-width: 768px) {
  .design-main .sub-merit__text-sub {
    margin-top: 0.5rem;
  }
}

.design-imgbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-block: 3.75rem;
}
@media screen and (max-width: 768px) {
  .design-imgbox {
    max-width: 500px;
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}

.design-imgbox__item img {
  display: block;
  width: 100%;
  height: auto;
}

.design-merit__messagebg {
  background-color: #fff;
  color: #0f1f5b;
  text-align: center;
  line-height: 1.6;
  padding: 1.875rem 1.25rem 2.125rem;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 768px) {
  .design-merit__messagebg {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .design-main .sub-merit__list {
    margin-top: 1.75rem;
  }
}

.design-merit__messsage-text2 {
  -webkit-padding-before: 1.5rem;
          padding-block-start: 1.5rem;
}
@media screen and (max-width: 768px) {
  .design-merit__messsage-text2 {
    -webkit-padding-before: 0.625rem;
            padding-block-start: 0.625rem;
    text-align: left;
  }
}

.sub-flexcard.design-reason {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard.design-reason {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
}

.design-reason__cardwrap {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 768px) {
  .design-reason__cardwrap {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.design-main .sub-flexcard__message {
  margin-top: 3.75rem;
}

.sub-strength.design-strength {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .sub-strength.design-strength {
    margin-top: 6.25rem;
    -webkit-margin-after: 9.375rem;
            margin-block-end: 9.375rem;
  }
}

.design-strength__wrap::after {
  -webkit-transform: translate(50% 50%);
          transform: translate(50% 50%);
  top: 25%;
}
@media screen and (max-width: 768px) {
  .design-strength__wrap::after {
    top: 80%;
    height: 16.25rem;
  }
}

.sub-strength__wrap.design-strength__wrap {
  position: relative;
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.design-strength__wrap {
    height: 100%;
  }
}
.sub-strength__wrap.design-strength__wrap::after {
  top: 25%;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.design-strength__wrap::after {
    top: 80%;
    height: 16.25rem;
  }
}

@media screen and (max-width: 768px) {
  .directsale-mv__inner.inner {
    max-width: 500px;
  }
}

.directsale-mv__textwrap {
  width: 100%;
  position: relative;
}

.sub-mv__textwrap.directsale-mv__textwrap::after {
  background: url(../img/top/point01-img.jpg) no-repeat center center/contain;
  max-width: 37rem;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.directsale-mv__textwrap::after {
    bottom: -100%;
    right: 0;
  }
}

.directsale-mv {
  margin-block: 3.75rem;
}
@media screen and (max-width: 768px) {
  .directsale-mv {
    text-align: center;
  }
}

.directsale-mv__textwrap::after {
  background: url(../img/top/point01-img.jpg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .directsale-mv__textwrap::after {
    bottom: -90%;
    right: 0;
  }
}

.directsale-main .sub-mv__text {
  max-width: 36.8125rem;
}

@media screen and (max-width: 768px) {
  .directsale-about__inner.inner {
    max-width: 500px;
  }
}

.directsale-about__textsec {
  display: grid;
  gap: 1.875rem;
  text-align: center;
  padding-inline: 2.5rem;
  background-color: #e8f1f1;
  max-width: 1200px;
  width: 100%;
  padding-block: 3.375rem;
}
@media screen and (max-width: 768px) {
  .directsale-about__textsec {
    -webkit-margin-before: 25rem;
            margin-block-start: 25rem;
    padding: 1.875rem 1rem;
    gap: 0.875rem;
  }
}

.directsale-about__text-text {
  color: #0f1f5b;
  font-size: 1.375rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .directsale-about__text-text {
    font-size: 1.25rem;
    text-align: left;
  }
}

.sub-maind.directsale-maind {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .sub-maind.directsale-maind {
    margin-block: 5rem;
  }
}

.directsale-merit {
  width: 100%;
  margin-inline: auto;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit {
    margin-top: 1.875rem;
  }
}

.directsale-merit__titlewrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .directsale-merit__titlewrap {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}

.directsale-merit__title-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #0f1f5b;
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit__title-sub {
    font-size: 1rem;
    text-align: left;
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}

.directsale-merit__wrap {
  background-color: #e8f1f1;
  -webkit-margin-before: 4.875rem;
          margin-block-start: 4.875rem;
  padding-block: 3.75rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit__wrap {
    padding: 1.875rem 0;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    line-height: 1.6;
  }
}

.directsale-merit__inner.inner {
  width: 100%;
  height: 100%;
  max-width: 74.375rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .directsale-merit__inner.inner {
    padding-inline: 1rem;
    max-width: 500px;
  }
}

.directsale-merit__list {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit__list {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.directsale-merit__box {
  padding: 2rem 1.875rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  background-color: #fff;
  margin-inline: 2.875rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit__box {
    gap: 1rem;
    padding: 1.5rem 0.9375rem 1.375rem;
    margin-inline: 1rem;
  }
}

.directsale-merit__text {
  color: #d45718;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  padding-left: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .directsale-merit__text {
    padding-left: 2.25rem;
  }
}
.directsale-merit__text::before {
  content: "1";
  position: absolute;
  left: 0;
  top: 0.5lh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.6875rem;
  height: 2.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d45718;
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .directsale-merit__text::before {
    -webkit-transform: translateY(-43%);
            transform: translateY(-43%);
    font-size: 1rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.directsale-merit__text.__dir-me-2::before {
  content: "2";
}

.directsale-merit__text.__dir-me-3::before {
  content: "3";
}

.directsale-merit__text.__dir-me-4::before {
  content: "4";
}

.directsale-merit__text.__dir-me-5::before {
  content: "5";
}

.directsale-merit__text-sub {
  color: #0f1f5b;
  font-size: 1rem;
  line-height: 1.6;
}

.directsale-commit {
  -webkit-margin-before: 8.125rem;
          margin-block-start: 8.125rem;
}
@media screen and (max-width: 768px) {
  .directsale-commit {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.directsale-commit__title {
  text-align: center;
}

.directsale-commit__cardwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .directsale-commit__cardwrap {
    max-width: 500px;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}

.directsale-commit__card {
  width: 21.375rem;
}
@media screen and (max-width: 768px) {
  .directsale-commit__card {
    width: 100%;
  }
}

.directsale-commit__card-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #0f1f5b;
  text-align: center;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.directsale-commit__card-text {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.04em;
  color: #0f1f5b;
  -webkit-margin-before: 1.75rem;
          margin-block-start: 1.75rem;
}
@media screen and (max-width: 768px) {
  .directsale-commit__card-text {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.directsale-reason {
  -webkit-margin-before: 8.75rem;
          margin-block-start: 8.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .directsale-reason {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.directsale-reason__cardwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 768px) {
  .directsale-reason__cardwrap {
    max-width: 500px;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    gap: 1.75rem;
  }
}

.directsale-reason__card-title {
  color: #fff;
  background-color: #0f1f5b;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  padding-block: 1rem;
}

.directsale-reason__card {
  width: 100%;
  max-width: 21.5625rem;
  height: auto;
  border: 1px solid #0f1f5b;
  text-align: center;
}

.directsale-reason__card-textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  padding-block: 2.1875rem;
  padding-inline: 1.25rem;
}

.directsale-reason__card-text {
  text-align: left;
  line-height: 1.6;
  color: #0f1f5b;
}

.directsale-reason__card img {
  width: 100%;
  height: 6.25rem;
}

.directsale-reason__message-text {
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .directsale-reason__message-text {
    max-width: 500px;
    margin-inline: auto;
    font-size: 1rem;
  }
}

.directsale-reason__message {
  background-color: #fef2ed;
  text-align: center;
  height: auto;
  width: 100%;
  padding-block: 1.875rem;
  padding-inline: 1.25rem;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 768px) {
  .directsale-reason__message {
    padding-inline: 0.9375rem;
  }
}

.directsale-reason__message-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .directsale-reason__message-text {
    text-align: left;
    font-size: 1rem;
  }
}

.sub-strength.directsale-strength {
  margin-top: 8.125rem;
}
@media screen and (max-width: 768px) {
  .sub-strength.directsale-strength {
    -webkit-margin-after: 11.25rem;
            margin-block-end: 11.25rem;
  }
}

.sub-strength__wrap.directsale-strength__wrap {
  height: 43.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.directsale-strength__wrap {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.directsale-strength__wrap::after {
    top: 80%;
    height: 16.25rem;
  }
}

.directsale-strength__text02 {
  -webkit-padding-after: 20rem;
          padding-block-end: 20rem;
}
@media screen and (max-width: 768px) {
  .directsale-strength__text02 {
    -webkit-padding-after: 3.125rem;
            padding-block-end: 3.125rem;
  }
}

.tokyo-mv {
  margin-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .tokyo-mv {
    text-align: center;
    margin-block: 0rem;
  }
}

.sub-mv__textwrap.tokyo-sv__textwrap {
  position: relative;
}

.sub-mv__textwrap.tokyo-sv__textwrap::after {
  background: url(../img/tokyo/tok_imgfv.jpg) no-repeat center center/contain;
  max-width: 35.4375rem;
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.tokyo-sv__textwrap::after {
    bottom: -80%;
    right: 0;
  }
}

.tokyo-main .sub-mv__text {
  max-width: 35.3125rem;
}

@media screen and (max-width: 768px) {
  .sub-maind {
    -webkit-margin-before: 18.75rem;
            margin-block-start: 18.75rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-maind.--tokyo {
    -webkit-margin-before: 18.75rem;
            margin-block-start: 18.75rem;
  }
}

.tokyo-merit {
  width: 100%;
  margin-inline: auto;
}

.sub-merit__wrap.tokyo-merit__wrap {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}

.sub-merit__wrap.tokyo-merit__wrap.--01 {
  -webkit-margin-before: 4.6875rem;
          margin-block-start: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__wrap.tokyo-merit__wrap.--01 {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.sub-s-text.--tokyo-merit {
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
}

.sub-merit__whitebg {
  margin-inline: auto;
  background-color: #fff;
  padding-block: 2.5rem;
  text-align: center;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__whitebg {
    padding: 0.9375rem;
  }
}

.tokyo-merit__img {
  width: 100%;
  height: auto;
  aspect-ratio: 583/322;
  max-width: 36.4375rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  -webkit-padding-before: 2.8125rem;
          padding-block-start: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .tokyo-merit__img {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}

.tokyo-graf.sub-section {
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tokyo-graf.sub-section {
    margin-top: 5rem;
  }
}

.sub-title.--tokyo-graf {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-title.--tokyo-graf {
    text-align: left;
    letter-spacing: -0.02em;
  }
}

@media screen and (max-width: 768px) {
  .sub-title.--tokyo-graf span {
    letter-spacing: -0.8em;
  }
}

.sub-r-text.--tokyo-graf {
  padding-top: 3.125rem;
}

.graf-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  height: auto;
  margin-block: 3rem;
}
@media screen and (max-width: 768px) {
  .graf-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-block: 2rem;
  }
}

.tokyo-graf__box {
  max-width: 33.75rem;
}

.tokyo-graf__box {
  width: 100%;
  max-width: 33.75rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 2.1875rem;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .tokyo-graf__box {
    padding: 1rem;
  }
}

.tokyo-graf__box img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}

.sub-s-text.--tokyo-graf {
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-s-text.--tokyo-graf {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .tokyo-graf__wrap {
    max-width: 500px;
    margin-inline: auto;
  }
}

.graf-textbox {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .graf-textbox {
    text-align: center;
  }
}

.sub-r-text.--graf-text {
  font-size: 1.1875rem;
  background-color: #faede6;
  border-radius: 50px;
  padding-block: 0.625rem;
  width: 100%;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sub-r-text.--graf-text {
    text-align: center;
  }
}

.tokyo-sv.sub-sv {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .tokyo-sv.sub-sv {
    text-align: center;
    margin-top: 5rem;
  }
}

.tokyo-sv__textwrap2 {
  position: relative;
}

.tokyo-sv__textwrap2::after {
  background: url(../img/tokyo/tok_img01.jpg) no-repeat center center/contain;
  max-width: 29rem;
  content: "";
  position: absolute;
  right: -4%;
  bottom: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .tokyo-sv__textwrap2::after {
    bottom: -93%;
    right: 0;
  }
}

.tokyo-sv__textbox {
  width: 100%;
  max-width: 40.3125rem;
}

.tokyo-sv__text {
  -webkit-margin-before: 2.625rem;
          margin-block-start: 2.625rem;
  font-size: 1.125rem;
  color: #0f1f5b;
  line-height: 1.6;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .tokyo-sv__text {
    font-size: 1rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .sub-section.--large.--tokyo {
    -webkit-margin-before: 21.875rem;
            margin-block-start: 21.875rem;
  }
}

.sub-strength.tokyo-strength {
  margin-top: 11.875rem;
}
@media screen and (max-width: 768px) {
  .sub-strength.tokyo-strength {
    margin-top: 5rem;
    -webkit-margin-after: 9.375rem;
            margin-block-end: 9.375rem;
  }
}

.tokyo-strength__wrap::after {
  -webkit-transform: translate(50% 50%);
          transform: translate(50% 50%);
  top: 25%;
}
@media screen and (max-width: 768px) {
  .tokyo-strength__wrap::after {
    top: 80%;
    height: 16.25rem;
  }
}

.sub-strength__wrap.tokyo-strength__wrap {
  height: 35rem;
  position: relative;
}
.sub-strength__wrap.tokyo-strength__wrap::after {
  top: 25%;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.tokyo-strength__wrap::after {
    top: 80%;
    height: 16.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.tokyo-strength__wrap {
    height: 100%;
  }
}

.warranty-main .sub-fv__title.--bottom {
  margin-top: 0.625rem;
}

.sub-mv__inner.warranty-mv__inner.inner {
  padding-inline: 1.25rem;
}

.sub-mv__textwrap.--warranty {
  position: relative;
}

.sub-mv__textwrap.--warranty::after {
  background: url(../img/warranty/war-img02.jpg) no-repeat center center/contain;
  content: "";
  max-width: 37.125rem;
  position: absolute;
  height: auto;
  aspect-ratio: 1330/887;
  bottom: auto;
  right: -2%;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.--warranty::after {
    top: auto;
    bottom: -100%;
    right: 0;
  }
}

.warranty-main .sub-mv__text {
  width: 35.625rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-mv__text {
    width: 100%;
  }
}

.sub-mv__textwrap.--warranty2 {
  width: 35rem;
  margin-top: 11.875rem;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.--warranty2 {
    width: 100%;
    margin-left: 0;
    margin-top: 18.125rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.sub-mv__textwrap.--warranty2::after {
  background: url(../img/warranty/war-img01.jpg) no-repeat center center/contain;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1330/886;
  bottom: auto;
  top: -3.125rem;
  max-width: 37.5rem;
  position: absolute;
  left: -110%;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.--warranty2::after {
    top: auto;
    bottom: -104%;
    left: 0;
    height: 18.75rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.sub-mv__title.--warranty {
  margin-top: 0.75rem;
  font-size: 1.8125rem;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .sub-mv__title.--warranty {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}

.warranty-main .sub-maind {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-maind {
    margin-top: 18.75rem;
  }
}

.warranty-main .sub-maind__circle-inner {
  margin-bottom: 1.875rem;
}

.sub-merit__inner.inner.--warrnty {
  padding-inline: 0;
}

.warranty-meritwrap {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.warranty-merit-box {
  max-width: 31.5625rem;
  text-align: center;
  background-color: #fff;
}

.sub-title-blue.--warranty-bluebg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .warranty-main .sub-title.--min-small {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .warranty-main .sub-merit__list {
    gap: 1rem;
  }
}

.warranty-main .sub-merit__text {
  font-size: 1.125rem;
}

.sub-merit__wrap.--warranty-merit {
  -webkit-margin-before: 8.125rem;
          margin-block-start: 8.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-merit__wrap.--warranty-merit {
    -webkit-margin-before: 7.5rem;
            margin-block-start: 7.5rem;
  }
}

.sub-merit__wrap.--warranty-merit::before {
  content: "";
  position: absolute;
  top: -6.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.6875rem;
  aspect-ratio: 1/1;
  background-image: url(../img/warranty/war-mark2.png);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sub-merit__wrap.--warranty-merit::before {
    width: 3.75rem;
    top: -5.625rem;
  }
}

.sub-r-text.--warranty-merit {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.sub-title-blue.--warranty-bluebg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  border-radius: 1rem;
  padding: 2.5rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-title-blue.--warranty-bluebg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 24px 16px;
    border-radius: 12px;
  }
}

.warranty-merit-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 1.875rem;
}
.warranty-merit-box img {
  width: 100%;
  max-width: 12.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .warranty-merit-box {
    gap: 12px;
  }
}

.warranty-merit-title {
  font-size: 1.4375rem;
  font-weight: 700;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .warranty-merit-title {
    font-size: 1.125rem;
  }
}

.warranty-merit-text {
  font-size: 1.125rem;
  color: #0f1f5b;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .warranty-merit-text {
    font-size: 1rem;
  }
}

.warranty-merit-box img {
  width: 100%;
  height: 100%;
  max-width: 135px;
  aspect-ratio: 135/80;
}

.warranty-merit-box.--box2 img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  aspect-ratio: 240/54;
}

.warranty-main .sub-flexcard.sub-section {
  margin-top: 14.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-flexcard.sub-section {
    margin-top: 10rem;
  }
}

.warranty-main .sub-flexcard.sub-section::before {
  content: "";
  position: absolute;
  top: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8.5rem;
  aspect-ratio: 136/80;
  background-image: url(../img/warranty/war-mark.png);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-flexcard.sub-section::before {
    width: 7.5rem;
    top: -5.625rem;
  }
}

.warranty-flexcard-title {
  position: relative;
}

.sub-r-text.--warranty-card {
  margin-top: 2.5rem;
  line-height: 2.1;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .sub-r-text.--warranty-card {
    margin-top: 0.75rem;
  }
}

.warranty-main .sub-flexcard__message {
  margin-top: 2.625rem;
}

.warranty-main .sub-flexcard__wrap.--large.warranty02 {
  margin-top: 13.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-flexcard__wrap.--large.warranty02 {
    margin-top: 10rem;
  }
}

.warranty-main .sub-flexcard__wrap.--large.warranty02::before {
  content: "";
  position: absolute;
  top: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 23.5rem;
  aspect-ratio: 376/86;
  background-image: url(../img/warranty/war-logo.png);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .warranty-main .sub-flexcard__wrap.--large.warranty02::before {
    width: 80%;
    max-width: 17.5rem;
    top: -5.625rem;
  }
}

.sub-strength.warranty-strength {
  margin-top: 7.5rem;
}

.sub-strength__wrap.warranty-strength__wrap {
  height: 35rem;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.warranty-strength__wrap {
    height: 100%;
  }
}

.inner-purchase {
  max-width: 74.375rem;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner-purchase {
    padding: 0 1rem;
  }
}

.sub-section.--pur-textbox1 {
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
}

.sub-lr-text.--purchase {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  font-size: 1.125rem;
  line-height: 2;
}

.sub-mv__textwrap.--purchase {
  position: relative;
}

.sub-mv__textwrap.--purchase::after {
  background: url(../img/top/point06-img.jpg) no-repeat center center/contain;
  content: "";
  width: 100%;
  height: 100%;
  max-width: 37.5rem;
  position: absolute;
  right: -8%;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap.--purchase::after {
    top: auto;
    bottom: -90%;
    right: 0;
  }
}

.sub-mv__text.--purchase {
  max-width: 37.3125rem;
}

.sub-merit.--pur-textbox2 {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}

.sub-text-box.--pur-textbox2 {
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sub-text-box.--pur-textbox2 {
    -webkit-margin-before: 18.75rem;
            margin-block-start: 18.75rem;
    max-width: 500px;
    margin-inline: auto;
  }
}

.sub-text-box.--pur-textbox3 {
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sub-text-box.--pur-textbox3 {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
  }
}

.sub-m-text.purchase-text {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  font-size: 1.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-m-text.purchase-text {
    text-align: left;
    padding: 0;
  }
}

.sub-merit__wrap.--purchase {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}

.sub-flexcard__inner.--purchase {
  width: 100%;
  height: 100%;
  max-width: 74.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__inner.--purchase {
    padding-inline: 1rem;
  }
}

.sub-flexcard__card-title.--purchase.purchase-blue {
  background: none;
  -webkit-padding-before: 1.875rem;
          padding-block-start: 1.875rem;
  -webkit-padding-after: 0;
          padding-block-end: 0;
}

.sub-flexcard__card-title.--purchase {
  background-color: none;
}

.sub-section.--purchase-flex {
  margin-top: 5.625rem;
}

.sub-flexcard__pretitle {
  font-size: 1.5rem;
  color: #0f1f5b;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__pretitle {
    font-size: 1.25rem;
  }
}

.sub-flexcard__pretitle + .sub-flexcard__title.sub-title {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__pretitle + .sub-flexcard__title.sub-title {
    margin-top: 0.5rem;
  }
}

.sub-flexcard.--purchase-flex .sub-flexcard__card img {
  height: 10.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 312/175;
}

.sub-flexcard.--purchase-flex .sub-flexcard__card-textwrap {
  gap: 1.25rem;
  padding-block: 1.5rem;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard.--purchase-flex .sub-flexcard__card-textwrap {
    gap: 1rem;
    padding-block: 1.25rem;
  }
}

.sub-flexcard.--purchase-flex .sub-flexcard__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub-flexcard.--purchase-flex .sub-flexcard__card-textwrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sub-flexcard__card-title.purchase-blue {
  color: #fff;
  text-align: center;
  font-size: 1.6875rem;
  padding-block: 1rem;
}

.purchase-flexcard__card {
  max-width: none;
}

.sub-flexcard__card-textwrap.--purchase {
  gap: 3.125rem;
}

.sub-flexcard__message.--purchase {
  margin-top: 2.5rem;
}

.sub-flexcard__card-text.--purchase {
  font-size: 1.125rem;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #0f1f5b;
  border-bottom: 1px solid #0f1f5b;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  color: #0f1f5b;
  table-layout: fixed;
}
.comparison__table th:nth-child(1),
.comparison__table td:nth-child(1) {
  width: 17rem;
  padding-right: 7.9375rem;
}
@media screen and (max-width: 768px) {
  .comparison__table th:nth-child(1),
  .comparison__table td:nth-child(1) {
    padding-right: 2.5rem;
  }
}
.comparison__table th:nth-child(2),
.comparison__table td:nth-child(2) {
  width: 26.8125rem;
}
.comparison__table th:nth-child(3),
.comparison__table td:nth-child(3) {
  width: 26.8125rem;
}

.comparison__table td:nth-child(2) {
  text-align: left;
  padding-left: 4.375rem;
}

.comparison__head,
.comparison__cell,
.comparison__row-label {
  padding: 1.25rem 1.5rem;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ddd), color-stop(50%, transparent));
  background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
  background-size: 0.625rem 0.0625rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.comparison__head {
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
}

.comparison__cell {
  text-align: left;
  font-size: 1.125rem;
}

.comparison {
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
}
@media screen and (max-width: 768px) {
  .comparison {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    margin-inline: auto;
  }
}

.comparison__head--active,
.comparison__cell--active {
  background-color: #d45718;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
}

.comparison__head--active {
  font-size: 1.5625rem;
}

.comparison__cell--active {
  font-size: 1.25rem;
  text-align: left;
  padding-left: 5.625rem;
}
@media screen and (max-width: 768px) {
  .comparison__cell--active {
    padding-left: 2.5rem;
  }
}

.comparison__row-label {
  text-align: center;
  font-weight: 500;
  color: #0f1f5b;
  font-size: 1.125rem;
}

.comparison__table tbody tr:last-child .comparison__cell,
.comparison__table tbody tr:last-child .comparison__row-label {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .comparison__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.comparison__inner.inner {
  max-width: 70.625rem;
  padding-inline: 1.25rem;
  text-align: center;
}

.sub-strength.--purchase {
  -webkit-margin-before: 8.125rem;
          margin-block-start: 8.125rem;
}

.sub-strength__wrap.--purchase {
  top: 50%;
}

.sub-strength__wrap.purchase-strength__wrap {
  height: 46.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap.purchase-strength__wrap {
    height: 100%;
  }
}

.dot {
  margin-inline: -0.2em;
}

.small {
  letter-spacing: -0.4em;
}

.small.special {
  letter-spacing: -0.1em;
}

.sub-section {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sub-section {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.sub-title {
  font-size: 2.125rem;
  color: #d45718;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 1.625rem;
    line-height: 1.6;
    text-align: center;
  }
}

.sub-title-blue {
  color: #0f1f5b;
  font-size: 2.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sub-title-blue {
    font-size: 1.5625rem;
  }
}

.sub-title.--small {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .sub-title.--small {
    font-size: 1.25rem;
  }
}

.sub-title.--min-small {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #0f1f5b;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-title.--min-small {
    font-size: 1.375rem;
  }
}

.sub-title.--small-orange {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #d45718;
}
@media screen and (max-width: 768px) {
  .sub-title.--small-orange {
    font-size: 1.25rem;
  }
}

.sub-lr-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #0f1f5b;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-lr-text {
    font-size: 1.125rem;
    text-align: left;
  }
}

.sub-m-text {
  margin-top: 2.1875rem;
  font-size: 1.125rem;
  line-height: 2;
  color: #0f1f5b;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-m-text {
    margin-top: 1.25rem;
    padding-inline: 1rem;
    font-size: 1rem;
    text-align: left;
  }
}

.sub-r-text {
  font-size: 1.125rem;
  font-size: 400;
  color: #0f1f5b;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .sub-r-text {
    font-size: 1rem;
    text-align: left;
  }
}

.sub-s-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #0f1f5b;
}

.sub-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 2765/950;
}
@media screen and (max-width: 768px) {
  .sub-fv {
    overflow: hidden;
    aspect-ratio: auto;
    height: 29.375rem;
  }
}

.sub-fv::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/sub-fv.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 100%;
  aspect-ratio: 2765/950;
  top: 0;
  right: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .sub-fv::before {
    background-image: url("../img/common/sub-fv_sp.png");
    aspect-ratio: auto;
    background-position: right bottom;
    background-size: cover;
    right: -0.0625rem;
    width: calc(100% + 0.0625rem);
    height: 29.375rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-fv::after {
    content: "";
    position: absolute;
    background-image: url("../img/common/sub-fvimg.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -2;
    aspect-ratio: 480/458;
    bottom: -2.6041666667vw;
    right: -5%;
    width: 65%;
    max-width: 20.3125rem;
  }
}
@media screen and (max-width: 540px) {
  .sub-fv::after {
    bottom: -2.6041666667vw;
  }
}
@media screen and (max-width: 500px) {
  .sub-fv::after {
    bottom: -0.625rem;
  }
}

.sub-fv__wrap {
  width: 100%;
  height: 100%;
  -webkit-padding-before: 4.875rem;
          padding-block-start: 4.875rem;
}
@media screen and (max-width: 768px) {
  .sub-fv__wrap {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
  }
}

.sub-fv__inner.inner {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding-inline: 7.5rem;
}
@media screen and (max-width: 768px) {
  .sub-fv__inner.inner {
    padding-inline: 1rem;
  }
}

.sub-fv__title.--whitebg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2916666667vw;
  color: #0f1f5b;
  background-color: #fff;
  padding: 0.625rem;
}
@media screen and (max-width: 545px) {
  .sub-fv__title.--whitebg {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv__title.--whitebg {
    font-size: 1.5rem;
  }
}

.sub-fv__title-nowrap {
  white-space: nowrap;
}

.sub-fv__title.--bluebg {
  font-size: 2.2916666667vw;
  color: #fff;
  font-weight: 500;
  -webkit-margin-before: 2.5694444444vw;
          margin-block-start: 2.5694444444vw;
}
@media screen and (max-width: 768px) {
  .sub-fv__title.--bluebg {
    font-size: 1.5rem;
    line-height: 1.6;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.sub-fv__title.--bottom {
  margin-top: 1.6666666667vw;
}

.sub-fv__title {
  font-size: 4.6527777778vw;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .sub-fv__title {
    font-size: 2.25rem;
    line-height: 1.6;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-mv__inner.inner, .sub-sv__inner.inner {
    max-width: 500px;
  }
}

.sub-mv__textwrap, .sub-sv__textwrap {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sub-mv {
    margin-top: 2.5rem;
  }
}

.sub-mv__textwrap::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-mv__textwrap::after {
    bottom: -80%;
    right: 0;
  }
}

.sub-mv__title {
  color: #d45718;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sub-mv__title {
    font-size: 1.625rem;
    text-align: left;
  }
}

.sub-mv__text {
  -webkit-margin-before: 2.625rem;
          margin-block-start: 2.625rem;
  font-size: 1.25rem;
  color: #0f1f5b;
  line-height: 1.8;
  max-width: 37.5rem;
}
@media screen and (max-width: 768px) {
  .sub-mv__text {
    font-size: 1rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    text-align: left;
  }
}

.sub-mv__text.--orangebg {
  color: #fff;
  font-size: 1.4375rem;
  line-height: 1;
  background-color: #d45718;
  padding: 0.625rem 0.75rem 0.75rem;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sub-mv__text.--orangebg {
    font-size: 1.25rem;
  }
}

.sub-maind {
  margin-inline: auto;
  width: 100%;
  height: 100%;
  text-align: center;
}

.sub-maind__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  gap: 2.5rem;
  width: 100%;
  -webkit-margin-before: 2.75rem;
          margin-block-start: 2.75rem;
}
@media screen and (max-width: 768px) {
  .sub-maind__wrap {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-block: 1.875rem;
  }
}

.sub-maind__circle {
  background-color: #0f1f5b;
  border-radius: 50%;
  width: 100%;
  max-width: 21.875rem;
  aspect-ratio: 350/350;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub-maind__circle .dot {
  margin-inline: -0.2em;
}

.sub-maind__circle-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.5rem;
}

.sub-maind__circle-title {
  width: 15.625rem;
  margin-inline: auto;
  padding-bottom: 1.625rem;
  font-size: 1.6875rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.sub-maind__circle-text {
  padding-top: 1.75rem;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1.8;
  min-height: calc(5.4em + 1.75rem);
}
@media screen and (max-width: 768px) {
  .sub-maind__circle-text {
    font-size: 1rem;
    min-height: auto;
  }
}

.sub-merit__titlewrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-merit__titlewrap {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}

.sub-merit__wrap {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__wrap {
    line-height: 1.6;
  }
}

.sub-merit__listbg {
  background-color: #e8f1f1;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__listbg {
    padding-block: 1.75rem;
    padding-inline: 1rem;
  }
}

.sub-merit__list {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__list {
    max-width: 500px;
    margin-inline: auto;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    grid-template-columns: 1fr;
  }
}

.sub-merit__list.warranty-merit {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__list.warranty-merit {
    max-width: 500px;
    margin-inline: auto;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    grid-template-columns: 1fr;
  }
}

.sub-merit__list-title.--small {
  font-size: 1.375rem;
  font-weight: 500;
  color: #0f1f5b;
  text-align: center;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__list-title.--small {
    font-size: 1.25rem;
  }
}

.sub-merit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-merit__box {
    gap: 0.625rem;
  }
}

.sub-merit__text {
  color: #0f1f5b;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  padding-left: 3.75rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .sub-merit__text {
    padding-left: 2.5rem;
    font-size: 1.125rem;
  }
}

.sub-merit__text::before {
  content: "1";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0f1f5b;
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-merit__text::before {
    font-size: 1rem;
    width: 1.875rem;
    height: 1.875rem;
    top: 0.5lh;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
}

.sub-merit__text.__merit2::before {
  content: "2";
}

.sub-merit__text.__merit3::before {
  content: "3";
}

.sub-merit__text.__merit4::before {
  content: "4";
}

.sub-merit__text.__merit5::before {
  content: "5";
}

.sub-merit__text.__merit6::before {
  content: "6";
}

.sub-merit__text.__merit7::before {
  content: "7";
}

.sub-merit__text-sub {
  color: #0f1f5b;
  font-size: 1rem;
  line-height: 1.6;
}

.sub-flexcard {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-flexcard {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.sub-flexcard__wrap {
  width: 100%;
}

.sub-flexcard__wrap.--large {
  -webkit-margin-before: 8.75rem;
          margin-block-start: 8.75rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__wrap.--large {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
  }
}

.sub-flexcard__cardwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__cardwrap {
    max-width: 500px;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    gap: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sub-flexcard__card-title {
  color: #fff;
  text-align: center;
  background-color: #0f1f5b;
  font-size: 1.5rem;
  font-weight: 500;
  padding-block: 1rem;
}

.sub-flexcard__card {
  width: 100%;
  max-width: 21.5625rem;
  height: auto;
  border: 1px solid #0f1f5b;
  text-align: center;
}

.sub-flexcard__card.--blue {
  border-radius: 32px;
  border: none;
  background-color: #0f1f5b;
  max-width: 21.9375rem;
  aspect-ratio: 351/351;
}

.sub-flexcard__card-textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  padding: 2.1875rem 1.4375rem 2.875rem;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__card-textwrap {
    padding: 1.625rem 1rem 1.25rem;
  }
}

.sub-flexcard__card-text {
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #0f1f5b;
}

.sub-flexcard__card-text.--white {
  background-color: #0f1f5b;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__card-text.--white {
    background: none;
    text-align: left;
  }
}

.sub-flexcard__card img {
  width: 100%;
  height: 6.25rem;
}

.sub-flexcard__message-text {
  text-align: center;
  line-height: 1.6;
  letter-spacing: -0.09em;
  font-size: 1.125rem;
  color: #0f1f5b;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__message-text {
    max-width: 500px;
    margin-inline: auto;
    font-size: 1rem;
    letter-spacing: -0.02em;
    text-align: left;
  }
}

.sub-flexcard__message {
  background-color: #fef2ed;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-block: 1.875rem;
  max-width: 69.375rem;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-flexcard__message {
    padding-inline: 0.9375rem;
  }
}

.sub-text__wrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-text__wrap {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.sub-text-box {
  margin-top: 3.125rem;
}

.sub-r-text.--sub-text {
  margin-top: 2.5rem;
}

.sub-text__wrap.--right-blue {
  background-color: #ebf1f3;
  padding-block: 3.125rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-text__wrap.--right-blue {
    max-width: 500px;
    padding: 1.875rem 1rem;
  }
}

.sub-m-text.--sub-text {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-m-text.--sub-text {
    text-align: left;
  }
}

.sub-text__box {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}

.sub-strength {
  margin-block: 6.25rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sub-strength {
    margin-block: 2.5rem;
    -webkit-margin-after: 9.375rem;
            margin-block-end: 9.375rem;
  }
}

.sub-text-box2 {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sub-text-box2 {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
  }
}

.sub-strength__wrap {
  width: 100%;
  height: 41.25rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap {
    height: auto;
  }
}
@media screen and (min-width: 1441px) {
  .sub-strength__wrap {
    height: 45.8333333333vw;
  }
}
.sub-strength__wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 2777/1165;
  left: 0;
  bottom: -6.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(10%, rgba(255, 255, 255, 0.9)), color-stop(25%, rgba(255, 255, 255, 0.5)), color-stop(45%, rgba(255, 255, 255, 0))), url(../img/common/sub-bg.png);
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0) 45%), url(../img/common/sub-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .sub-strength__wrap::after {
    height: 37.75rem;
    background-position: bottom;
  }
}
@media screen and (max-width: 768px) {
  .sub-strength__wrap::after {
    background-position: bottom;
    background-size: cover;
  }
}

.sub-strength__inner.inner {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-strength__inner.inner {
    padding-inline: 1rem;
  }
}

.sub-strength__title {
  display: inline-block;
  width: 100%;
  max-width: 69.375rem;
  background-color: #0f1f5b;
  color: #fff;
  padding-block: 1.375rem;
  font-size: 2.3125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-strength__title {
    font-size: 1.5rem;
    line-height: 1.6;
    padding-block: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-strength__textbox {
    max-width: 500px;
    margin-inline: auto;
    padding: 1rem;
  }
}

.sub-strength__text {
  width: 100%;
  max-width: 75rem;
  font-size: 1.3125rem;
  line-height: 2.1;
  color: #0f1f5b;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-strength__text {
    font-size: 1rem;
    text-align: left;
    -webkit-margin-before: 1.375rem;
            margin-block-start: 1.375rem;
  }
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 74.375rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 1rem;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #d45718;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.375rem;
  }
}

.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #d45718;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

.cta-bar.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.cta-bar__inner {
  max-width: 66rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.625rem 0;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta-bar__inner {
    padding: 0.375rem 0;
    gap: 0.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-bar__brand {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cta-bar__brand-text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3125;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-bar__brand-text {
    display: none;
  }
}

.cta-bar__logo {
  margin-top: 0.25rem;
  width: 14.5rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .cta-bar__logo {
    width: 9.4375rem;
    margin-top: 0;
  }
}

.cta-bar__sp-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta-bar__sp-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    border-radius: 6px;
    padding: 0.1875rem 1.375rem 0.25rem 0.625rem;
    color: #d45718;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3125;
    white-space: nowrap;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .cta-bar__sp-arrow {
    -webkit-mask-image: url(../img/common/arrow.svg);
            mask-image: url(../img/common/arrow.svg);
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #d45718;
    width: 0.25rem;
    aspect-ratio: 1/2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.cta-bar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .cta-bar__items {
    display: none;
  }
}

.cta-bar__item {
  display: block;
  width: 15.3125rem;
  background-color: #fff;
  border-radius: 6px;
  padding: 0.5rem 0.625rem 0.625rem;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

@media (any-hover: hover) {
  .cta-bar__item:hover {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
}
.cta-bar__item-label {
  display: block;
  padding: 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4375;
  text-align: center;
}

.cta-bar__item--tel .cta-bar__item-label,
.cta-bar__item--form .cta-bar__item-label {
  background-color: #0f1f5b;
}

.cta-bar__item--line .cta-bar__item-label {
  background-color: #3ea337;
}

.cta-bar__tel-inner {
  margin-top: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}

.cta-bar__tel-icon {
  width: 1.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-bar__tel-num {
  font-size: 1.6875rem;
  font-weight: 700;
  color: #d45718;
  white-space: nowrap;
}

.cta-bar__form-text {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #d45718;
  text-align: center;
}

.cta-bar__line-inner {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
}

.cta-bar__line-icon {
  display: block;
  width: 2.0625rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-bar__line-text {
  font-size: 1.0625rem;
  font-weight: bold;
  color: #3ea337;
  white-space: nowrap;
}

.btn-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24.125rem;
  height: 4.875rem;
  margin-top: 2.5rem;
  border: 1px solid #0f1f5b;
  background-color: #0f1f5b;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn-more {
    width: 100%;
    height: 3.75rem;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.btn-more::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  display: block;
  width: 0.375rem;
  height: 0.6875rem;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: #fff;
    color: #0f1f5b;
  }
  .btn-more:hover::before {
    background-color: #0f1f5b;
  }
}