@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

:root {
  --color-black: #222;
  --color-black-1: #111;
  --color-white: #FFFFFF;
  --color-gray-1: #777777;
  --color-gray-2: #eeee;
  --color-gray-3: #dfdfdf;
  --color-gray-4: #dddddd;
  --color-gray-5: #999999;
  --color-gray-6: #ccc;
  --color-success: #47AC59;
  --color-error: #FF0000;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 80px);
}

body {
  background-color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2;
}
body.of-hidden {
  overflow: hidden;
}
body h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 0.35s ease;
}

.container {
  display: block;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1170px;
  }
}

.section {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .section {
    padding-block: 40px;
  }
}

.error-msg {
  color: #FF0000;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .error-msg {
    font-size: 12px;
  }
}

.agree__error {
  text-align: center;
}

.animation {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.5s opacity ease-in, 0.5s transform ease-in;
}
.animation.animate {
  opacity: 1;
  transform: translateY(0);
}
.mv-main-txt.animation,
.mv__sub-t.animation,
.mv__sub-b.animation {
  transform: none;
}

.animation-d {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.5s opacity ease-in, 0.5s transform ease-in;
}
.animation-d.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.mv-main-txt .char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.07s * var(--char-index));
}

.mv-main-txt.is-active .char {
  transform: translateY(0);
}

.section__row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section__row {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .section__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.section__row .section__heading {
  margin-bottom: 0;
}
.section__heading-tagline {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.8px;
}
@media (max-width: 767px) {
  .section__heading-tagline {
    font-size: 14px;
  }
}
.section__heading-title {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  margin-top: 30px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .section__heading-title {
    line-height: 1;
    font-size: 36px;
  }
}
.section__desc p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .section__desc p {
    font-size: 14px;
  }
}

.section__heading {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section__heading {
    margin-bottom: 25px;
  }
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px 18px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .header-wrapper {
    padding: 15px 15px;
    gap: 20px;
  }
}
.header-options {
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .header-options {
    gap: 7.5px;
  }
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  background-color: var(--color-white);
  width: 220px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .header-btn {
    height: 40px;
    width: 80px;
  }
  .header-btn span {
    display: none;
  }
}
.header-btn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M4.16536 20.8327C3.59245 20.8327 3.10217 20.6289 2.69453 20.2212C2.28689 19.8136 2.08273 19.323 2.08203 18.7493V6.24935C2.08203 5.67643 2.2862 5.18615 2.69453 4.77852C3.10286 4.37088 3.59314 4.16671 4.16536 4.16602H20.832C21.4049 4.16602 21.8956 4.37018 22.3039 4.77852C22.7122 5.18685 22.9161 5.67713 22.9154 6.24935V18.7493C22.9154 19.3223 22.7115 19.8129 22.3039 20.2212C21.8963 20.6296 21.4056 20.8334 20.832 20.8327H4.16536ZM12.4987 13.541L4.16536 8.33268V18.7493H20.832V8.33268L12.4987 13.541ZM12.4987 11.4577L20.832 6.24935H4.16536L12.4987 11.4577ZM4.16536 8.33268V6.24935V18.7493V8.33268Z' fill='%23222222'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}
@media (max-width: 767px) {
  .header-btn::before {
    width: 20px;
    height: 20px;
  }
}
.header-btn:hover {
  opacity: 0.7;
}
.header-menu {
  display: flex;
  height: 50px;
  padding: 8px 40px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  background: #111;
  width: 110px;
  height: 50px;
}
@media (max-width: 767px) {
  .header-menu {
    width: 70px;
    height: 40px;
    padding: 8px 10px;
  }
}
.header-menu:hover {
  opacity: 0.7;
}
.header-menu-line {
  background-color: var(--color-white);
  width: 30px;
  height: 2px;
}
.header-menu.open {
  border-radius: 50px;
  border: 1px solid #FFF;
  gap: 0;
  position: relative;
}
.header-menu.open .header-menu-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-menu.open .header-menu-line:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-menu.open .header-menu-line:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-menu.open .header-menu-line:nth-of-type(3) {
  display: none;
}
.header__menu-list {
  position: absolute;
  right: 30px;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.header__menu-list.open {
  opacity: 1;
  visibility: visible;
}
.header__menu-list ul {
  border-radius: 10px;
  background: #FFF;
  padding: 30px;
  position: relative;
}
.header__menu-list ul::before {
  content: "";
  width: 17.089px;
  height: 17.089px;
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
  background: #FFF;
  position: absolute;
  right: 31px;
  top: -9px;
}
.header__menu-item:not(:last-of-type) {
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}
.header__menu-item:not(:first-of-type) {
  padding-top: 20px;
}
.header__menu-item.active .header__menu-t,
.header__menu-item.active .header__menu-b {
  color: #999999;
}
.header__menu-t {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #222;
  display: block;
}
.header__menu-b {
  font-size: 12px;
  font-weight: 500;
  color: #222;
  line-height: 1;
  display: block;
  margin-top: 10px;
}

.footer {
  background-color: var(--color-white);
}
.footer__container {
  padding: 40px 15px 31.5px;
  margin: 0 auto;
  max-width: 1370px;
}
@media (max-width: 757px) {
  .footer__container {
    padding: 25px 15px;
  }
}
.footer__wrap {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  max-width: 450px;
}
.footer__links li {
  width: calc(50% - 12.5px);
}
.footer__links li a {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__links li a {
    font-size: 14px;
  }
}
.footer__links li a::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #DDD;
  border-radius: 100%;
  display: block;
}
.footer__logo {
  display: flex;
  justify-content: end;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer__logo {
    justify-content: center;
  }
}
.footer__phone {
  text-align: end;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .footer__phone {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer__phone {
    text-align: start;
    font-size: 14px;
  }
}
.footer__phone .sm {
  line-height: 1;
  font-size: 14px;
}
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.footer__btn .btn-primary {
  width: 280px;
  height: 50px;
}
.footer__bottom {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding-top: 15px;
  }
}
.footer__bottom-wrp {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__bottom-wrp {
    flex-direction: column;
    gap: 15px;
  }
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer__bottom-left {
    flex-direction: column;
    gap: 15px;
  }
}
.footer__bottom-privacy {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__bottom-privacy .footer__bottom-txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__bottom-privacy .footer__bottom-txt::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.9987 4.9987H4.9987C4.55667 4.9987 4.13275 5.17429 3.82019 5.48685C3.50763 5.79941 3.33203 6.22334 3.33203 6.66536V14.9987C3.33203 15.4407 3.50763 15.8646 3.82019 16.1772C4.13275 16.4898 4.55667 16.6654 4.9987 16.6654H13.332C13.7741 16.6654 14.198 16.4898 14.5105 16.1772C14.8231 15.8646 14.9987 15.4407 14.9987 14.9987V9.9987M9.16536 10.832L16.6654 3.33203M16.6654 3.33203H12.4987M16.6654 3.33203V7.4987' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.footer__bottom-txt {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
@media (max-width: 767px) {
  .footer__bottom-txt {
    font-size: 12px;
    line-height: 19px;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reliability {
  background-color: #EEEEEE;
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  .reliability {
    padding: 40px 0;
  }
}
.reliability__block {
  position: relative;
  padding-bottom: 93px;
}
@media only screen and (max-width: 767px) {
  .reliability__block {
    padding-bottom: 14vw;
  }
}
.reliability__block-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
}
.reliability__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .reliability__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.reliability__left {
  max-width: 520px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .reliability__left {
    max-width: 100%;
  }
}
.reliability__right {
  flex-grow: 1;
}
.reliability__img {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .reliability__img {
    margin-bottom: 10px;
  }
}
.reliability__img img {
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .reliability__img img {
    width: 100%;
  }
}
.reliability__desc-text {
  color: var(--Text-primary, #000);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
@media only screen and (max-width: 991px) {
  .reliability__desc-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__desc-text {
    font-size: 12px;
  }
}
.reliability__media {
  border-radius: 20px;
  background: #FFF;
  /* height: 39.3055555556vw; */
  padding: 50px 85px;
}
@media only screen and (max-width: 767px) {
  .reliability__media {
    padding: 20px;
    border-radius: 10px;
    /* height: 45vw; */
  }
}
.reliability__media-title {
  color: #222;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .reliability__media-title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__media-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.reliability__media-imgs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  .reliability__media-imgs {
    gap: 10px;
  }
}
.reliability__name {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .reliability__name {
    margin-bottom: 10px;
  }
}
.reliability__name-text {
  color: #222;
  font-size: 28px;
  font-weight: 700;
  line-height: 140%;
}
@media only screen and (max-width: 991px) {
  .reliability__name-text {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__name-text {
    font-size: 20px;
  }
}
.reliability__name-text small {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .reliability__name-text small {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__name-text small {
    font-size: 16px;
  }
}
.reliability__detail-box {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .reliability__detail-box {
    gap: 10px;
  }
}
.reliability__detail-box p {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.7px;
}
@media only screen and (max-width: 991px) {
  .reliability__detail-box p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__detail-box p {
    font-size: 10px;
  }
}
.reliability__title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .reliability__title {
    margin-bottom: 15px;
  }
}
.reliability__title-text {
  color: #222;
  font-size: 30px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .reliability__title-text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__title-text {
    font-size: 18px;
    gap: 5px;
  }
}
.reliability__title-text span {
  background: #FFF;
  padding-left: 10px;
}
.reliability__desc-text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
@media only screen and (max-width: 991px) {
  .reliability__desc-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .reliability__desc-text {
    font-size: 12px;
  }
}
.reliability__images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .reliability__images {
    gap: 5px;
  }
}

.btn-primary {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
  letter-spacing: 2.2px;
  border-radius: 50px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .btn-primary {
    font-size: 16px;
  }
}
.btn-primary:hover {
  opacity: 0.7;
}
.btn-primary .arrow {
  width: 40px;
  height: 40px;
  background-color: var(--color-black);
  border-radius: 100%;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary .arrow::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2.5 11.6667H16.6667L12.5 7.5' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.btn-secondary {
  background-color: rgba(170, 170, 170, 0.15);
  padding: 19px 10px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: #fff;
  display: inline-block;
  max-width: 600px;
  width: 100%;
  line-height: 1;
}
.btn-secondary:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(114, 162, 181, 0.4), rgba(172, 136, 88, 0.6));
  z-index: -1;
  opacity: 0.3;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(175deg, rgba(114, 162, 181, 0.4), rgba(142, 99, 49, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-secondary .arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.15s ease;
}
.btn-secondary .arrow::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2.5 11.6667H16.6667L12.5 7.5' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: all 0.15s ease;
}
.btn-secondary .arrow::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2.5 11.6667H16.6667L12.5 7.5' stroke='black' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: all 0.15s ease;
  position: absolute;
  left: -30px;
}
.btn-secondary:hover .arrow {
  background-color: rgb(255, 255, 255);
}
.btn-secondary:hover .arrow::after {
  margin-right: -70px;
}
.btn-secondary:hover .arrow::before {
  left: 10px;
}
.mv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.mv .mv-main-txt {
  overflow: hidden;
}
.mv__img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoomIn 10s ease forwards;
}
.mv__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 3.47vw;
  padding-bottom: 2.08vw;
  padding-right: 2.08vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .mv__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 5.33vw;
    padding-bottom: 6.67vw;
  }
}
.mv__content__circles {
  display: flex;
  align-items: stretch;
  gap: 1.04vw;
  max-width: 43.75vw;
  width: 100%;
}
@media (max-width: 767px) {
  .mv__content__circles {
    gap: 7.23vw;
    max-width: 100%;
  }
}
.mv__content-circle {
  width: calc(33.3333333333% - 0.6933333333vw);
  background: linear-gradient(135deg, rgba(24, 85, 110, 0.36) 0%, rgba(142, 99, 49, 0.36) 100%), rgba(17, 17, 17, 0.2);
  stroke-width: 1px;
  stroke: rgba(81, 130, 150, 0.4);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  min-height: 13.89vw;
  border-radius: 100%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .mv__content-circle {
    min-height: 26.67vw;
  }
}
.mv__content-circle-t {
  text-align: center;
  font-size: 1.81vw;
  font-weight: 600;
  line-height: 1.6vw;
  letter-spacing: 0.25vw;
}
@media (max-width: 767px) {
  .mv__content-circle-t {
    font-size: 3.73vw;
    line-height: 1.25;
  }
}
.mv__content-circle-t.ls-minus {
  letter-spacing: -0.02vw;
}
.mv__content-circle-b {
  text-align: center;
  font-size: 4.86vw;
  font-weight: 600;
  line-height: 4.38vw;
  letter-spacing: 0.24vw;
  margin-top: 0.63vw;
}
@media (max-width: 767px) {
  .mv__content-circle-b {
    font-size: 7.2vw;
    line-height: 1;
    margin-top: 1.33vw;
  }
}
.mv__content-circle-b.mt-14 {
  margin-top: 0.97vw;
}
.mv__content-circle-b.mt-15 {
  margin-top: 1.04vw;
}
.mv__content-circle-b .fs-44 {
  font-size: 3.06vw;
}
@media (max-width: 767px) {
  .mv__content-circle-b .fs-44 {
    font-size: 5.33vw;
  }
}
.mv__content-circle-b .fs-40 {
  font-size: 2.78vw;
}
@media (max-width: 767px) {
  .mv__content-circle-b .fs-40 {
    font-size: 4.8vw;
  }
}
.mv__content-circle-b .fs-60 {
  font-size: 4.17vw;
}
@media (max-width: 767px) {
  .mv__content-circle-b .fs-60 {
    font-size: 8vw;
  }
}
.mv__content-circle-b .ls-6 {
  letter-spacing: 0.43vw;
}
.mv__content-circle-b .ls-minus-1 {
  letter-spacing: -0.08vw;
}
.mv__content-circle-b .ls-minus-4 {
  letter-spacing: -0.33vw;
}
.mv__content-circle-b .ls-1 {
  letter-spacing: 0.11vw;
}
.mv__main {
  font-family: "Roboto", sans-serif;
  color: #FFF;
}
.mv__main .no-ls {
  letter-spacing: 0;
}
.mv__main .ls-7 {
  letter-spacing: 0.52vw;
}
.mv__main-t {
  font-size: 3.47vw;
  font-weight: 700;
  line-height: 4.17vw;
  letter-spacing: 0.35vw;
}
@media (max-width: 767px) {
  .mv__main-t {
    font-size: 24px;
    line-height: 1;
  }
}
.mv__main-t .ls-2 {
  letter-spacing: 0.17vw;
}
.mv__main-m {
  font-size: 4.17vw;
  font-weight: 700;
  line-height: 5vw;
  letter-spacing: 0.21vw;
  text-transform: capitalize;
  margin-top: 1.04vw;
}
@media (max-width: 767px) {
  .mv__main-m {
    font-size: 8.53vw;
    line-height: 1;
    margin-top: 2.67vw;
  }
}
.mv__main-m .ls-12 {
  letter-spacing: 0.83vw;
}
.mv__main-m .ls6 {
  letter-spacing: 0.42vw;
}
.mv__main-b {
  font-size: 5.56vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.56vw;
  margin-top: 1.04vw;
}
@media (max-width: 767px) {
  .mv__main-b {
    font-size: 8.53vw;
    line-height: 1;
    margin-top: 2.67vw;
  }
}
.mv__sub {
  color: #fff;
  margin-top: 2.08vw;
}
@media (max-width: 767px) {
  .mv__sub {
    margin-top: 5.33vw;
  }
}
.mv__sub-t {
  font-size: 2.22vw;
  font-weight: 700;
  line-height: 2.64vw;
  letter-spacing: 0.22vw;
}
@media (max-width: 767px) {
  .mv__sub-t {
    font-size: 5.33vw;
    line-height: 1;
  }
}
.mv__sub-b {
  font-size: 2.22vw;
  font-weight: 700;
  line-height: 2.64vw;
  letter-spacing: 0.22vw;
  margin-top: 1.04vw;
}
@media (max-width: 767px) {
  .mv__sub-b {
    margin-top: 2.67vw;
    font-size: 5.33vw;
    line-height: 1;
  }
}
.mv__sub-b .ls-1 {
  letter-spacing: 0.11vw;
}
.mv__sub-b .ls-m-1 {
  letter-spacing: -0.11vw;
}
.mv__sub-b .ls-4 {
  letter-spacing: 0.33vw;
}
.mv__sm {
  color: #FFF;
  font-size: 1.11vw;
  font-weight: 400;
  line-height: 1.67vw;
  margin-top: 3.47vw;
}
@media (max-width: 767px) {
  .mv__sm {
    margin-top: 10.67vw;
    font-size: 3.47vw;
    line-height: 1;
  }
}

.tr {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #111;
  color: var(--color-white);
  padding-block: 50px;
  text-align: center;
}
.tr__line {
  margin-block: 30px;
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .tr__line {
    margin-block: 15px;
  }
}
.tr__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 3.36px;
}
@media (max-width: 767px) {
  .tr__lead {
    font-size: 16px;
  }
}
.tr__title {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  letter-spacing: 12px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tr__title {
    font-size: 20px;
    letter-spacing: 6.7px;
  }
}
.tr__desc {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2.24px;
}
@media (max-width: 767px) {
  .tr__desc {
    font-size: 14px;
  }
}
.tr__cta-label {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .tr__cta-label {
    margin-bottom: 10px;
    font-size: 18px;
    margin-top: 25px;
  }
}
.tr .btn-secondary {
  max-width: 600px;
  width: 100%;
  text-align: center;
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .tr .btn-secondary {
    font-size: 14px;
    text-align: left;
  }
}

.strongths {
  background-color: rgb(238, 238, 238);
  position: relative;
}
.strongths::after {
  content: "";
  display: block;
  background-image: url(../img/strongths-pattern.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.strongths .container {
  position: relative;
  z-index: 2;
}
.strongths__wrap {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
}
.strongths__top {
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, rgba(24, 85, 110, 0.18) 0%, rgba(142, 99, 49, 0.18) 100%), #222;
  padding: 15px;
  text-align: center;
  color: var(--color-white);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .strongths__top {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 1px;
  }
}
.strongths__desc {
  line-height: 1.8;
  letter-spacing: 0.32px;
  text-align: center;
  max-width: 752px;
  width: 100%;
  margin: 30px auto;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 767px) {
  .strongths__desc {
    margin: 15px auto;
    padding: 0 15px;
    font-size: 13px;
  }
}
.strongths__feature {
  position: relative;
  padding: 10px;
  border-radius: 15px;
  margin: 0 50px 50px 50px;
  background-color: rgba(223, 223, 223, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .strongths__feature {
    margin: 10px;
    padding: 5px;
  }
}
.strongths__feature::after {
  content: "";
  display: block;
  width: 530px;
  height: 530px;
  border: 21px solid var(--color-gray-3);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .strongths__feature::after {
    display: none;
  }
}
.strongths__feature-cornorBorder {
  width: 110px;
  height: 110px;
  position: absolute;
  border-radius: 10px 0 0 0;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
}
.strongths__feature-cornorBorder.-top-left {
  top: 0;
  left: 0;
}
.strongths__feature-cornorBorder.-top-right {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.strongths__feature-cornorBorder.-bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.strongths__feature-cornorBorder.-bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.strongths__feature-inner {
  padding: 90px 30px 70px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .strongths__feature-inner {
    padding: 20px 10px;
  }
}
.strongths__feature-title {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 2.8px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .strongths__feature-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.strongths__featureSlide-tab {
  padding-bottom: 30px;
}
.strongths__featureSlide-tab .swiper-slide {
  background-color: var(--color-white);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 32px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .strongths__featureSlide-tab .swiper-slide {
    padding: 20px 10px;
  }
}
.strongths__featureSlide-tab .swiper-slide span {
  display: block;
  line-height: 10px;
  font-size: 14px;
}
.strongths__featureSlide-tab .swiper-slide__tabcount {
  font-size: 14px;
  display: inline-block;
}
.strongths__featureSlide-tab .swiper-slide__tabtitle {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-block: 10px;
  line-height: 26px;
}
@media only screen and (max-width: 991px) {
  .strongths__featureSlide-tab .swiper-slide__tabtitle {
    font-size: 18px;
  }
}
.strongths__featureSlide-tab .swiper-slide__tabsubtitle {
  text-transform: uppercase;
}
.strongths__featureSlide-tab .swiper-slide-thumb-active, .strongths__featureSlide-tab .swiper-slide:hover {
  background-color: var(--color-gray-5);
  color: var(--color-white);
}
.strongths__featureSlide-content .swiper-slide {
  padding-inline: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .strongths__featureSlide-content .swiper-slide {
    flex-direction: column;
    padding-inline: 15px;
  }
}
.strongths__featureSlide-content .swiper-slide__contenticon {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strongths__featureSlide-content .swiper-slide__contentcount {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.strongths__featureSlide-content .swiper-slide__contentcount span {
  font-size: 12px;
  color: var(--color-gray-5);
  font-weight: normal;
}
.strongths__featureSlide-content .swiper-slide__contenttitle {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .strongths__featureSlide-content .swiper-slide__contenttitle {
    font-size: 22px;
  }
}
.strongths__featureSlide-content .swiper-slide__contenttitlejp {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .strongths__featureSlide-content .swiper-slide__contenttitlejp {
    font-size: 16px;
  }
}
.strongths__featureSlide-content .swiper-slide__contenttext {
  letter-spacing: 0.02em;
  font-size: 16px;
}
@media (max-width: 767px) {
  .strongths__featureSlide-content .swiper-slide__contenttext {
    font-size: 13px;
    line-height: 20px;
  }
}
.strongths__featureSlide .swiper-button {
  background-color: var(--color-white);
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
}
.strongths__featureSlide .swiper-button svg {
  display: none;
}
.strongths__featureSlide .swiper-button-icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.strongths__featureSlide .swiper-button-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.strongths__featureSlide .swiper-button-prev .swiper-button-icon::after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='7' viewBox='0 0 18 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5809 5.58097H2.41421L6.58088 1.41431' stroke='%23999999' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}
.strongths__featureSlide .swiper-button-next .swiper-button-icon::after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='7' viewBox='0 0 18 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.58097H15.1667L11 1.41431' stroke='%23999999' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.sevenArrows {
  overflow-x: hidden;
}
.sevenArrows__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(50% + 570px);
  margin-left: auto;
  gap: 50px;
}
@media (max-width: 767px) {
  .sevenArrows__block {
    gap: 20px;
    flex-direction: column;
  }
}
.sevenArrows__block:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .sevenArrows__block:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .sevenArrows__list {
    padding-left: 15px;
  }
}
.sevenArrows__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.sevenArrows__tag {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 10px;
  border: 1px solid var(--color-black);
  display: block;
  border-radius: 5px;
  min-width: 60px;
  text-align: center;
}
.sevenArrows__info {
  max-width: 550px;
  width: 100%;
}
@media (max-width: 991px) {
  .sevenArrows__info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sevenArrows__info {
    max-width: 100%;
  }
}
.sevenArrows__info-subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  display: inline-block;
}
.sevenArrows__info-subtitle:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--color-gray-6);
  margin-right: 10px;
}
.sevenArrows__info-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .sevenArrows__info-heading {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .sevenArrows__info-heading {
    font-size: 24px;
  }
}
.sevenArrows__info-desc {
  font-size: 18px;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .sevenArrows__info-desc,
  .sevenArrows__infoBox-text {
    font-size: 16px;
  }
}
.sevenArrows__infoBox {
  background-color: #f0f0f0;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 20px;
}
.sevenArrows__infoBox-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 9px;
}
.sevenArrows__infoBox-text {
  font-size: 1.8rem;
  line-height: 1.8;
}
.sevenArrows__img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .sevenArrows__img {
    max-width: 100%;
  }
}
.sevenArrows__img img {
  width: 100%;
  height: 100%;
}

.solution {
  background-image: url("../../assets/img/solution-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.solution .section__heading {
  color: #fff;
  margin-bottom: 0;
}
.solution__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .solution__top {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.solution-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.solution-swiper .swiper-slide-next,
.solution-swiper .swiper-slide-prev {
  opacity: 0.7;
}
.solution-swiper .swiper-pagination-bullet {
  transition: width 0.4s ease, height 0.4s ease, background 0.4s ease;
}
.solution .hero-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
.solution .hero-dots {
  display: flex;
  align-items: center;
  gap: 15px;
}
.solution .hero-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.solution .hero-dots .swiper-pagination-bullet-active {
  width: 50px;
  height: 10px;
  border-radius: 50px;
  background: #FFF;
}
.solution .hero-next {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.solution .hero-next::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M21 19L25 15M25 15L21 11M25 15L5 15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.solution .hero-next:hover {
  opacity: 0.5;
}
.solution-box {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .solution-box {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .solution-box {
    gap: 20px;
    flex-direction: column;
  }
}
.solution-img img {
  width: 100%;
}
.solution-content {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 991px) {
  .solution-content {
    max-width: 100%;
  }
}
.solution-ttl {
  color: #FFF;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.3px;
}
@media (max-width: 767px) {
  .solution-ttl {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}
.solution-ttl .ls {
  letter-spacing: 2.6px;
}
.solution__txt {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .solution__txt {
    font-size: 15px;
    line-height: 22px;
  }
}
.solution__emphasize {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  padding: 20px;
  border-radius: 10px;
  background: #383838;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .solution__emphasize {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
  }
}

.company {
  background-color: var(--color-black);
}
.company .section__heading {
  color: var(--color-white);
}
.company__block {
  padding-inline: 60px;
}
@media (max-width: 767px) {
  .company__block {
    padding-inline: 0;
  }
}
.company__maps {
  background-color: #FFF;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .company__maps {
    border-radius: 10px;
    flex-direction: column;
    padding: 20px 10px;
  }
}
.company__maps-box {
  width: 50%;
}
@media (max-width: 767px) {
  .company__maps-box {
    width: 100%;
  }
}
.company__maps-iframe {
  border-radius: 10px;
  overflow: hidden;
}
.company__maps-iframe iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 480/250;
  vertical-align: middle;
}
.company__maps-ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .company__maps-ttl {
    font-size: 18px;
    line-height: 27px;
    margin-top: 10px;
  }
}
.company__maps-txt {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
@media (max-width: 767px) {
  .company__maps-txt {
    font-size: 16px;
    margin-top: 5px;
    line-height: 24px;
  }
}
.company__info {
  margin-top: 50px;
}
.company__info-tr {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 19.5px 0;
  border-top: 1px solid #DDD;
}
@media (max-width: 767px) {
  .company__info-tr {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
}
.company__info-tr:last-of-type {
  border-bottom: 1px solid #DDD;
}
.company__info-th {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  width: 260px;
}
@media (max-width: 767px) {
  .company__info-th {
    width: 100%;
    font-size: 18px;
  }
}
.company__info-td {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: calc(100% - 260px);
}
@media (max-width: 767px) {
  .company__info-td {
    width: 100%;
    font-size: 14px;
  }
}

.contact {
  background: #EEE;
}
.contact__top-txt {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.9px;
  margin-bottom: 50px;
}
.contact__block {
  padding-inline: 60px;
}
@media (max-width: 991px) {
  .contact__block {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .contact__block {
    padding-inline: 0;
  }
}
.contact__process {
  padding: 50px 130px;
  background-color: var(--color-white);
  border-radius: 20px;
}
@media (max-width: 991px) {
  .contact__process {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .contact__process {
    border-radius: 10px;
    padding: 25px 15px;
  }
}
.contact__process-ttl {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 1.4px;
  margin-bottom: 51px;
  position: relative;
}
@media (max-width: 767px) {
  .contact__process-ttl {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 25px;
  }
}
.contact__process-ttl::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .contact__process-ttl::after {
    bottom: -10px;
    width: 40px;
  }
}
.contact__process-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__process-row {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.contact__process-num {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .contact__process-num {
    font-size: 35px;
    line-height: 1;
    letter-spacing: 1px;
  }
}
.contact__process-txt {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .contact__process-txt {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .contact__process-txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
.contact__process-img {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .contact__process-img {
    margin-top: 10px;
  }
}
.contact__process-col {
  width: 100%;
}
.contact__form-required-note {
  color: #FF0000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
}
.contact__form-required {
  color: #FF0000;
  margin-left: 2px;
}
.contact__form-errors {
  background-color: #FFF5F5;
  border: 1px solid #FF0000;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px 20px;
}
.contact__form-errors-title {
  color: #FF0000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact__form-errors-list {
  color: #FF0000;
  font-size: 14px;
  line-height: 1.6;
  list-style: disc;
  padding-left: 1.4em;
}
.contact__form-errors-list li + li {
  margin-top: 4px;
}
.contact__form-privacy-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: center;
}
.contact__form {
  padding: 50px;
  background-color: var(--color-white);
  margin-top: 50px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .contact__form {
    border-radius: 10px;
    margin-top: 25px;
    padding: 25px 15px;
  }
}
.contact__form-tr {
  padding: 20px 0;
  border-bottom: 1px solid #DDD;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0.7;
}
.contact__form-tr:has(.error-msg) {
  opacity: 1;
}
@media (max-width: 767px) {
  .contact__form-tr {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
  }
}
.contact__form-tr:first-of-type {
  border-top: 1px solid #DDD;
}
.contact__form-tr.checkboxes {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .contact__form_input {
    flex-grow: 1;
    width: 100%;
  }
}
.contact__form-th {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.8px;
  width: 289px;
}
@media (max-width: 991px) {
  .contact__form-th {
    width: 210px;
  }
}
@media (max-width: 767px) {
  .contact__form-th {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    width: 100%;
  }
}
.contact__form-td {
  width: calc(100% - 289px);
  min-width: 0;
}
@media (max-width: 991px) {
  .contact__form-td {
    width: calc(100% - 210px);
  }
}
@media (max-width: 767px) {
  .contact__form-td {
    width: 100%;
    min-width: 0;
  }
}
.contact__form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #555;
  border-radius: 3px;
  flex-shrink: 0;
}
.contact__form-checkbox label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  line-height: 24px;
  gap: 8px;
}
@media (max-width: 767px) {
  .contact__form-checkbox label {
    font-size: 14px;
    line-height: 1.25;
  }
}
.contact__form-checkbox label:not(:last-of-type) {
  margin-bottom: 16px;
}
.contact__form-input input {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 10px 40px 10px 15px;
  width: 100%;
  border-radius: 5px;
  outline: 0;
  border: 1px solid #222;
  height: 44px;
}
@media (max-width: 767px) {
  .contact__form-input input {
    font-size: 14px;
    padding: 5px 40px 5px 15px;
  }
}
.contact__form-input.date {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.contact__form-input.date input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  max-width: 100%;
  padding-right: 15px;
  display: block;
  -webkit-min-logical-width: 0;
}
@supports (-webkit-touch-callout: none) {
  .contact__form-input.date input[type=date] {
    -webkit-appearance: none;
    appearance: none;
    -webkit-min-logical-width: calc(100% - 16px);
    background-color: var(--color-white);
  }
}
.contact__form-btm-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.7px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact__form-btm-txt {
    font-size: 12px;
    line-height: 19px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.contact__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.7px;
}
@media (max-width: 767px) {
  .contact__agree {
    font-size: 12px;
    letter-spacing: 0.35px;
    gap: 5px;
  }
}
.contact__agree a {
  color: #222;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.contact__agree a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath d='M9.375 3.1875H12.8125M12.8125 3.1875V6.625M12.8125 3.1875L7.8125 8.1875' stroke='%23222222' stroke-width='0.625'/%3E%3Cpath d='M7.1875 4.4375H4.6875C4.35598 4.4375 4.03804 4.5692 3.80362 4.80362C3.5692 5.03804 3.4375 5.35598 3.4375 5.6875V11.3125C3.4375 11.644 3.5692 11.962 3.80362 12.1964C4.03804 12.4308 4.35598 12.5625 4.6875 12.5625H10.3125C10.644 12.5625 10.962 12.4308 11.1964 12.1964C11.4308 11.962 11.5625 11.644 11.5625 11.3125V8.8125' stroke='%23222222' stroke-width='0.625' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}
.contact__agree input[type=checkbox] {
  width: 18px;
  height: 18px;
}
.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.contact__submit button {
  width: 500px;
  height: 60px;
  border-radius: 100px;
  background: #222;
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .contact__submit button {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
.contact__submit button::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M10.415 14.5833L21.8733 3.125M10.415 14.5833L14.0608 21.875C14.1065 21.9747 14.1799 22.0592 14.2722 22.1185C14.3645 22.1777 14.4719 22.2092 14.5816 22.2092C14.6913 22.2092 14.7987 22.1777 14.8911 22.1185C14.9834 22.0592 15.0568 21.9747 15.1025 21.875L21.8733 3.125M10.415 14.5833L3.1233 10.9375C3.02357 10.8918 2.93906 10.8184 2.87981 10.7261C2.82056 10.6338 2.78906 10.5264 2.78906 10.4167C2.78906 10.307 2.82056 10.1996 2.87981 10.1072C2.93906 10.0149 3.02357 9.94154 3.1233 9.89583L21.8733 3.125' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}
@media (max-width: 767px) {
  .contact__submit button::before {
    width: 20px;
    height: 20px;
  }
}
.contact__submit button:hover {
  background: #fff;
  color: #222;
}
.contact__submit button:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M10.415 14.5833L21.8733 3.125M10.415 14.5833L14.0608 21.875C14.1065 21.9747 14.1799 22.0592 14.2722 22.1185C14.3645 22.1777 14.4719 22.2092 14.5816 22.2092C14.6913 22.2092 14.7987 22.1777 14.8911 22.1185C14.9834 22.0592 15.0568 21.9747 15.1025 21.875L21.8733 3.125M10.415 14.5833L3.1233 10.9375C3.02357 10.8918 2.93906 10.8184 2.87981 10.7261C2.82056 10.6338 2.78906 10.5264 2.78906 10.4167C2.78906 10.307 2.82056 10.1996 2.87981 10.1072C2.93906 10.0149 3.02357 9.94154 3.1233 9.89583L21.8733 3.125' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ==========================
   Lower Page - Site Policy
   ========================== */
.lower-page {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .lower-page {
    padding-top: 80px;
  }
}

.lower-page__header {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .lower-page__header {
    padding: 40px 0;
  }
}

.lower-page__header-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .lower-page__header-title {
    font-size: 2.8rem;
  }
}

.lower-page__header-subtitle {
  font-size: 1.4rem;
  color: var(--color-gray-5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.policy {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .policy {
    padding: 50px 0;
  }
}

.policy__intro {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-black);
  margin-bottom: 50px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .policy__intro {
    font-size: 1.4rem;
    padding: 20px;
    margin-bottom: 40px;
  }
}

.policy__section {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .policy__section {
    margin-bottom: 40px;
  }
}

.policy__section:last-child {
  margin-bottom: 0;
}

.policy__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--color-black);
}
@media (max-width: 767px) {
  .policy__section-title {
    font-size: 1.8rem;
    padding-left: 15px;
    margin-bottom: 15px;
  }
}

.policy__section-text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .policy__section-text {
    font-size: 1.4rem;
  }
}

.policy__company-info {
  margin-top: 60px;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .policy__company-info {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

.policy__company-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .policy__company-name {
    font-size: 1.8rem;
  }
}

.policy__company-detail {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .policy__company-detail {
    font-size: 1.4rem;
  }
}

.policy__back-link {
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .policy__back-link {
    margin-top: 40px;
  }
}

.policy__back-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-black);
  padding: 15px 40px;
  border: 2px solid var(--color-black);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.policy__back-link a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.policy__back-link a::before {
  content: "←";
}
/*# sourceMappingURL=app.css.map */