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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #f5f5f5;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 320px) {
  body {
    min-width: 320px;
  }
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
textarea,
select {
  font: inherit;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

.l-inner {
  max-width: 1116px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0;
  }
}

.m-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #18759d;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.3s ease;
}
.m-arrow img {
  width: 24px;
  height: auto;
}
.m-arrow--prev img {
  transform: scaleX(-1);
}
@media (hover: hover) and (pointer: fine) {
  .m-arrow:hover {
    background-color: #2488b2;
  }
}

.m-link-arrow {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.m-link-arrow__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
  transition: 0.3s ease;
}
.m-link-arrow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-color: #18759d;
  border-radius: 50%;
  transition: 0.3s ease;
}
.m-link-arrow__icon img {
  width: 36px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .m-link-arrow__icon {
    width: 70px;
    height: 70px;
  }
  .m-link-arrow__icon img {
    width: 26px;
  }
  .m-link-arrow__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-link-arrow:hover > .m-link-arrow__text {
    color: #18759d;
  }
  .m-link-arrow:hover > .m-link-arrow__icon {
    background-color: #2488b2;
    transform: scale(1.1);
  }
}

.m-sec-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -45px;
}
.m-sec-title img {
  height: var(--sec-title-img-h);
  width: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .m-sec-title {
    margin-top: -35px;
  }
  .m-sec-title img {
    height: var(--sec-title-img-h-sp);
  }
}

.m-vertical-title {
  position: absolute;
  top: 5px;
  width: 40px;
}
.m-vertical-title img {
  width: 100%;
  display: block;
}

.m-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 2px solid #18759d;
  border-radius: 80px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #18759d;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .m-btn:hover {
    background-color: #18759d;
    color: #ffffff;
  }
}
.m-btn--primary {
  background-color: #18759d;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .m-btn--primary:hover {
    background-color: #2488b2;
    border: 2px solid #2488b2;
  }
}
.m-btn--outline {
  gap: 8px;
  border-color: #ffffff;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .m-btn--outline:hover {
    background-color: #ffffff;
    color: #333333;
  }
}
.m-btn--outline::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  font-size: 0.75rem;
}

.fadeIn {
  opacity: 0;
  transform: translate(0, 15%);
  transition: 1s;
}

.fadeIn.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

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

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-tab-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-tab-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-tab-hide {
    display: none !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 40px 40px 0;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1360px) {
  .l-header {
    padding: 30px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    padding: 20px 20px 0;
  }
}
.l-header.is-scrolled {
  background-color: #f5f5f5;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .l-header.is-scrolled {
    padding: 20px 20px;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.l-header__logo {
  max-width: 180px;
  width: 100%;
  flex-shrink: 0;
  padding-right: 20px;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1360px) {
  .l-header__logo {
    max-width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 120px;
    position: relative;
    z-index: 102;
  }
}
.l-header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 1360px) {
  .l-header__right {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__right {
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    height: 100%;
    padding: 100px 6% 40px;
    background-color: #f5f5f5;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    opacity: 0;
  }
  .l-header__nav.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1360px) {
  .l-header__nav-list {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.l-header__nav-item a {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  padding-bottom: 4px;
  position: relative;
}
.l-header__nav-item a::after {
  background: #333333;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 1360px) {
  .l-header__nav-item a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__nav-item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  .l-header__nav-item a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 190px;
  height: 60px;
  background-color: #18759d;
  color: #ffffff;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: 80px;
  transition: 0.3s ease;
  z-index: 102;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__cta:hover {
    background-color: #2488b2;
    transform: scale(1.03);
  }
}
@media screen and (max-width: 1360px) {
  .l-header__cta {
    font-size: 14px;
    font-size: 0.875rem;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__cta {
    font-size: 12px;
    font-size: 0.75rem;
    width: 130px;
    height: 44px;
  }
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 101;
    cursor: pointer;
  }
}
.l-header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__hamburger.is-open .l-header__hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.l-header__overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.35s ease;
  }
}

body.is-nav-open {
  overflow: hidden;
}

.l-main {
  min-height: 60vh;
}

.mv {
  position: relative;
  height: 680px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
    padding: 50px 6%;
    overflow: visible;
  }
}
.mv__vertical-text {
  font-family: "Unbounded", sans-serif;
  position: absolute;
  left: 15px;
  top: 44%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #333333;
}
@media screen and (max-width: 1160px) {
  .mv__vertical-text {
    display: none;
  }
}
.mv__bg-img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -103%;
  width: 513px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv__bg-img {
    top: auto;
    right: auto;
    width: 80%;
    position: relative;
    transform: none;
    margin: 0 auto;
  }
}
.mv__sub-text {
  font-family: "Unbounded", sans-serif;
  position: absolute;
  right: -12.6%;
  top: 30%;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .mv__sub-text {
    font-size: 12px;
    font-size: 0.75rem;
    right: -0.6%;
  }
}
.mv__inner {
  position: relative;
  height: 100%;
}
.mv__content {
  position: absolute;
  top: 114px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .mv__content {
    position: relative;
    top: auto;
    left: auto;
    gap: 0;
    padding-left: 0;
  }
}
.mv__text-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__text-group {
    gap: 20px;
  }
}
.mv__catch-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mv__catch {
  animation: loading 1s;
  transform-origin: top center;
}
.mv__catch img {
  display: block;
  width: 659px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mv__catch img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mv__sub-catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .mv__sub-catch {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mv__body {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .mv__body {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.lead {
  --edge-before: 236px;
  --edge-after: 297px;
  position: relative;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .lead {
    --edge-before: 136px;
    --edge-after: 107px;
    margin-top: 100px;
  }
}
.lead__wrap {
  background-color: #333333;
  overflow: hidden;
}
.lead__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-before);
  top: calc(var(--edge-before) * -1);
  background: url("../img/lead_bg_before.png") no-repeat center top/cover;
}
.lead__wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-after);
  bottom: calc(var(--edge-after) * -1);
  background: url("../img/lead_bg_after.png") no-repeat center bottom/cover;
}
.lead__inner {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .lead__inner {
    padding: 20px 0;
  }
}
.lead__bg-text {
  position: absolute;
  top: -160px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lead__bg-text {
    top: -100px;
  }
}
.lead__bg-text-track {
  font-family: "Unbounded", sans-serif;
  display: inline-flex;
  white-space: nowrap;
  font-weight: 200;
  font-size: 110px;
  font-size: 6.875rem;
  color: #818182;
  animation: marquee-lead 25s linear infinite;
}
@media screen and (max-width: 767px) {
  .lead__bg-text-track {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.lead__bg-text-track span {
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .lead__bg-text-track span {
    padding-right: 30px;
  }
}
@keyframes marquee-lead {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.lead__chara {
  position: absolute;
  top: calc((var(--edge-before) + 57px) * -1);
  right: calc(50% - 367px);
  z-index: 1;
  width: 94px;
  animation: chara-guragura 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .lead__chara {
    width: 74px;
    top: calc((var(--edge-before) + 54px) * -1);
    right: calc(50% - 150px);
  }
}
.lead__chara img {
  width: 100%;
  height: auto;
  animation: lead-chara-jump 4s ease infinite;
}
@keyframes chara-guragura {
  0%, 100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
}
@keyframes lead-chara-jump {
  0%, 74%, 100% {
    transform: translateY(0);
  }
  78% {
    transform: translateY(-20px);
  }
  82% {
    transform: translateY(-3px);
  }
  86% {
    transform: translateY(-13px);
  }
  90% {
    transform: translateY(0);
  }
}
@keyframes lead-chara-jump-x {
  0%, 74%, 100% {
    transform: translateX(0);
  }
  78% {
    transform: translateX(20px);
  }
  82% {
    transform: translateX(3px);
  }
  86% {
    transform: translateX(13px);
  }
  90% {
    transform: translateX(0);
  }
}
.lead__deco {
  position: absolute;
}
.lead__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lead__deco--tl {
  top: -350px;
  left: 0;
  width: 294px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lead__deco--tl {
    width: 150px;
    top: -220px;
  }
}
.lead__deco--br {
  width: 346px;
  bottom: -240px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lead__deco--br {
    width: 160px;
    bottom: -140px;
  }
}
.lead__scroll {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 204px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .lead__scroll {
    height: 104px;
    width: 1px;
  }
}
.lead__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background-color: #818182;
}
@media screen and (max-width: 767px) {
  .lead__scroll::after {
    width: 1px;
  }
}
.lead__scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background-color: #e0e0e0;
  z-index: 2;
  animation: scroll-indicator 3s infinite;
}
@media screen and (max-width: 767px) {
  .lead__scroll::before {
    width: 1px;
  }
}
@keyframes scroll-indicator {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.problem {
  --sec-title-img-h: 48px;
  --sec-title-img-h-sp: 76px;
  padding: 240px 0 200px;
}
@media screen and (max-width: 767px) {
  .problem {
    padding: 130px 0 100px;
  }
}
.problem__head {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .problem__head {
    margin-bottom: 25px;
  }
}
.problem__bg-text {
  font-family: "Unbounded", sans-serif;
  font-weight: 200;
  font-size: 80px;
  font-size: 5rem;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .problem__bg-text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.problem__list {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .problem__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
.problem__item {
  flex-shrink: 0;
  width: 25%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__item--02 {
  margin-top: 15.6%;
}
.problem__item--01 {
  margin-left: -3px;
}
.problem__item--03 {
  margin-left: -3px;
  margin-top: 15.6%;
}
.problem__item--04 {
  margin-left: -3px;
}
@media screen and (max-width: 767px) {
  .problem__item {
    border: 1px solid #333333;
    width: 42vw;
  }
  .problem__item--01, .problem__item--02, .problem__item--03, .problem__item--04 {
    margin-top: 0;
    margin-left: 0;
  }
}
.problem__text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .problem__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .problem__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.problem__text strong {
  font-weight: 700;
}
.problem__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .problem__footer {
    margin-top: 20px;
  }
}
.problem__arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 50px solid #333333;
}
@media screen and (max-width: 767px) {
  .problem__arrow {
    border-left-width: 30px;
    border-right-width: 30px;
    border-top-width: 24px;
  }
}
.problem__resolve {
  text-align: center;
}
.problem__resolve img {
  height: 75px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .problem__resolve img {
    height: 123px;
  }
}

.strengths {
  --edge-before: 217px;
  --edge-after: 303px;
  --sec-title-img-h: 58px;
  --sec-title-img-h-sp: 38px;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .strengths {
    --edge-before: 117px;
    --edge-after: 203px;
    margin-top: 60px;
  }
}
.strengths__deco {
  position: absolute;
  z-index: 2;
}
.strengths__deco img {
  width: 100%;
  height: auto;
}
.strengths__deco--tl {
  top: -300px;
  left: 83px;
  width: 230px;
}
@media screen and (max-width: 767px) {
  .strengths__deco--tl {
    top: -150px;
    left: -10px;
    width: 140px;
  }
}
.strengths__deco--br {
  bottom: -240px;
  right: 0;
  width: 284px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .strengths__deco--br {
    bottom: -160px;
    width: 170px;
  }
}
.strengths__wrap {
  background-color: #333333;
  overflow: hidden;
}
.strengths__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-before);
  top: calc(var(--edge-before) * -1);
  background: url("../img/strengths_bg_before.png") no-repeat center top/cover;
}
.strengths__wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-after);
  bottom: calc(var(--edge-after) * -1);
  background: url("../img/strengths_bg_after.png") no-repeat center bottom/cover;
}
.strengths__inner {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .strengths__inner {
    padding: 0 0 20px;
  }
}
.strengths__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.strengths__bg-text {
  font-family: "Unbounded", sans-serif;
  font-weight: 200;
  font-size: 80px;
  font-size: 5rem;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .strengths__bg-text {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.strengths__list {
  display: flex;
  gap: 33px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .strengths__list {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.strengths__item {
  position: relative;
  flex: 0 0 350px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .strengths__item {
    width: 100%;
    padding: 0 6%;
    gap: 14px;
  }
}
.strengths__badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .strengths__badge {
    width: 60px;
    height: 60px;
    border: 1px solid #f5f5f5;
    left: 10px;
    top: -40px;
  }
}
.strengths__badge span {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  color: #f5f5f5;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .strengths__badge span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.strengths__img {
  border-radius: 10px;
  overflow: hidden;
  height: 197px;
}
.strengths__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .strengths__img {
    height: auto;
  }
  .strengths__img img {
    aspect-ratio: 3/2;
  }
}
.strengths__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  width: 310px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .strengths__body {
    width: 100%;
  }
}
.strengths__heading {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .strengths__heading {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.strengths__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.strengths__catch {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .strengths__catch {
    font-size: 16px;
    font-size: 1rem;
  }
}
.strengths__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .strengths__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.works {
  position: relative;
  margin-top: 380px;
}
@media screen and (max-width: 767px) {
  .works {
    margin-top: 200px;
  }
}
.works__inner {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .works__inner {
    flex-direction: column;
    gap: 50px;
    padding: 0 6%;
  }
}
.works__head {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  min-height: 400px;
}
@media screen and (max-width: 767px) {
  .works__head {
    width: 100%;
    min-height: auto;
  }
}
.works__bg-text {
  font-family: "Unbounded", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-weight: 200;
  font-size: 80px;
  font-size: 5rem;
  line-height: 1;
  color: #818182;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .works__bg-text {
    writing-mode: inherit;
    position: static;
    font-size: 50px;
    font-size: 3.125rem;
    text-align: right;
  }
}
.works__title {
  top: 0;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .works__title {
    width: 166px;
    top: 25px;
    right: 0;
  }
}
.works__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
.works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works__list {
    gap: 40px;
  }
}
.works__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(50% - 28px);
}
@media screen and (max-width: 767px) {
  .works__item {
    width: 100%;
    gap: 16px;
  }
}
.works__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/2;
  border: 1px solid #ddd;
}
.works__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333333;
}
.works__name {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .works__name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.works__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
.works__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 70px;
  border: 2px solid #18759d;
  border-radius: 80px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #18759d;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.works__btn::after {
  background-color: #18759d;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .works__btn:hover {
    color: #ffffff;
  }
  .works__btn:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 767px) {
  .works__btn {
    height: 56px;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0 auto;
  }
}
.works__chara {
  position: absolute;
  top: 400px;
  left: 0;
  width: 100px;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.works__chara.is-show {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .works__chara {
    width: 70px;
    top: -50px;
  }
}
.works__chara img {
  width: 100%;
  height: auto;
  animation: lead-chara-jump-x 3s ease infinite;
}

.voice {
  --edge-before: 236px;
  --edge-after: 250px;
  --sec-title-img-h: 54px;
  --sec-title-img-h-sp: 36px;
  margin-top: 250px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice {
    --edge-before: 136px;
    --edge-after: 150px;
    margin-top: 130px;
  }
}
.voice__deco {
  position: absolute;
  z-index: 2;
}
.voice__deco img {
  width: 100%;
  height: auto;
}
.voice__deco--tl {
  top: -268px;
  left: 137px;
  width: 218px;
}
@media screen and (max-width: 767px) {
  .voice__deco--tl {
    width: 126px;
    top: -124px;
    left: 12px;
  }
}
.voice__deco--br {
  bottom: -240px;
  right: 103px;
  width: 248px;
}
@media screen and (max-width: 767px) {
  .voice__deco--br {
    bottom: -100px;
    right: 12px;
    width: 140px;
  }
}
.voice__wrap {
  background-color: #333333;
  overflow: hidden;
}
.voice__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-before);
  top: calc(var(--edge-before) * -1);
  background: url("../img/voice_bg_before.png") no-repeat center top/cover;
}
.voice__wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-after);
  bottom: calc(var(--edge-after) * -1);
  background: url("../img/voice_bg_after.png") no-repeat center bottom/cover;
}
.voice__inner {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .voice__inner {
    padding: 20px 0 30px;
  }
}
.voice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice__bg-text {
  font-family: "Unbounded", sans-serif;
  font-weight: 200;
  font-size: 80px;
  font-size: 5rem;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice__bg-text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.voice__slider {
  position: relative;
}
.voice__slider .slick-list {
  margin: 0 -15px;
}
.voice__slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.voice__slider .slick-slide {
  margin: 0 15px;
  height: auto !important;
}
@media screen and (max-width: 767px) {
  .voice__slider .slick-slide {
    margin: 0 20px;
  }
}
.voice__slider .slick-slide > div {
  height: 100%;
}
.voice__item {
  width: 100%;
  height: 100%;
  display: flex !important;
  gap: 40px;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .voice__item {
    width: calc(100vw - 40px);
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
  }
}
.voice__img {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .voice__img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
.voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.voice__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .voice__body {
    align-items: center;
  }
}
.voice__text-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333333;
}
.voice__name {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .voice__name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.voice__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .voice__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.voice__btn {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .voice__btn {
    width: 80%;
    height: 44px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.voice__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.voice__arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
.voice__arrow--prev {
  left: calc(20% - 56px);
}
.voice__arrow--next {
  right: calc(20% - 56px);
}
@media screen and (max-width: 767px) {
  .voice__arrow {
    display: none !important;
  }
}
.voice__dots {
  padding: 30px 0 80px;
}
.voice__dots .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
}
.voice__dots .slick-dots li {
  margin: 0;
}
.voice__dots .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.voice__dots .slick-dots li button::before {
  display: none;
}
.voice__dots .slick-dots li.slick-active button {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .voice__dots {
    padding: 20px 0 60px;
  }
}

.service {
  --sec-title-img-h: 60px;
  --sec-title-img-h-sp: 36px;
  margin-top: 100px;
}
.service__inner {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .service__inner {
    gap: 30px;
    padding: 30px 6%;
  }
}
.service__head {
  position: relative;
  text-align: center;
}
.service__bg-text {
  font-family: "Unbounded", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 200;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__bg-text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .service__list {
    gap: 40px;
  }
}
.service__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .service__item {
    flex-direction: column;
    gap: 10px;
  }
}
.service__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service__item--reverse {
    flex-direction: column;
  }
}
.service__img {
  flex: 0 0 44.8%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service__img {
    flex: 1;
    width: 100%;
  }
}
.service__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}
.service__body {
  flex: 1;
  max-width: 574px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .service__body {
    gap: 10px;
  }
}
.service__name {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .service__name {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.service__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service__catch {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .service__catch {
    font-size: 16px;
    font-size: 1rem;
  }
}
.service__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.service__other {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.service__other-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
.service__other-list {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service__other-list {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.service__other-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc((100% - 80px) / 5);
  aspect-ratio: 1/1;
  border: 2px solid #333333;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .service__other-item {
    width: 42vw;
    border: 1px solid #333333;
  }
}
.service__other-name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .service__other-name {
    font-size: 16px;
    font-size: 1rem;
  }
}

.difference {
  --edge-before: 167px;
  --sec-title-img-h: 60px;
  --sec-title-img-h-sp: 40px;
  margin-top: 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .difference {
    --edge-before: 67px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .difference__title {
    margin-top: -30px;
  }
}
.difference__wrap {
  background-color: #fff;
  overflow: hidden;
}
.difference__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--edge-before) * -1);
  height: var(--edge-before);
  background: url("../img/difference_bg_before.png") no-repeat center top/cover;
}
.difference__inner {
  position: relative;
  padding: 60px 0 300px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .difference__inner {
    gap: 30px;
    padding: 40px 6% 200px;
  }
}
.difference__head {
  position: relative;
  text-align: center;
}
.difference__bg-text {
  font-family: "Unbounded", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 200;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .difference__bg-text {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.difference__chara {
  position: absolute;
  width: 100px;
  bottom: 114px;
  left: calc(50% - 580px);
  animation: chara-guragura 1.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .difference__chara {
    width: 70px;
    bottom: 64px;
    left: calc(50% - 170px);
  }
}
.difference__chara img {
  width: 100%;
  height: auto;
  animation: lead-chara-jump 4s ease infinite;
}
.difference__deco {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 293px;
}
@media screen and (max-width: 767px) {
  .difference__deco {
    bottom: -15px;
    width: 140px;
  }
}
.difference__table {
  width: 760px;
}
@media screen and (max-width: 767px) {
  .difference__table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.difference__cols {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.difference__col-spacer {
  flex: 0 0 180px;
}
@media screen and (max-width: 767px) {
  .difference__col-spacer {
    flex: 0 0 140px;
  }
}
.difference__col-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}
.difference__col-head--switch {
  flex: 0 0 280px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .difference__col-head--switch {
    flex: 0 0 240px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.difference__col-head--others {
  flex: 0 0 280px;
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .difference__col-head--others {
    flex: 0 0 240px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.difference__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.difference__row {
  display: flex;
  gap: 10px;
}
.difference__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .difference__cell {
    font-size: 14px;
    font-size: 0.875rem;
    height: 80px;
  }
}
.difference__cell--label {
  flex: 0 0 180px;
  background-color: #333333;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .difference__cell--label {
    flex: 0 0 140px;
  }
}
.difference__cell--switch {
  flex: 0 0 280px;
  background-color: #18759d;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .difference__cell--switch {
    flex: 0 0 240px;
  }
}
.difference__cell--others {
  flex: 0 0 280px;
  background-color: #e0e0e0;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .difference__cell--others {
    flex: 0 0 240px;
  }
}

.scroll-hint-text {
  font-weight: 500;
}

.flow {
  --edge-before: 264px;
  --edge-after: 206px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow {
    --edge-before: 164px;
    --edge-after: 106px;
  }
}
.flow__wrap {
  background-color: #333333;
  overflow: hidden;
}
.flow__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-before);
  top: calc(var(--edge-before) * -1);
  background: url("../img/flow_bg_before.png") no-repeat center top/cover;
}
.flow__wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-after);
  bottom: calc(var(--edge-after) * -1);
  background: url("../img/flow_bg_after.png") no-repeat center bottom/cover;
}
.flow__inner {
  padding: 100px 0 70px;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 40px 6%;
    flex-direction: column;
    gap: 50px;
  }
}
.flow__head {
  position: relative;
  width: 125px;
  height: 320px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .flow__head {
    width: 100%;
    height: auto;
  }
}
.flow__bg-text {
  font-family: "Unbounded", sans-serif;
  writing-mode: vertical-rl;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 200;
  color: #818182;
  opacity: 0.5;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__bg-text {
    writing-mode: inherit;
    position: static;
    font-size: 50px;
    font-size: 3.125rem;
    text-align: center;
  }
}
.flow__title {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .flow__title {
    width: 201px;
    height: auto;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.flow__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .flow__content {
    gap: 30px;
  }
}
.flow__lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .flow__lead {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.flow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .flow__list {
    gap: 30px;
  }
}
.flow__list::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 70px;
  bottom: 70px;
  width: 2px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .flow__list::before {
    left: 40px;
    top: 40px;
    bottom: calc(230px - 23vw);
    width: 1px;
  }
}
.flow__item {
  display: flex;
  gap: 43px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__item {
    gap: 20px;
    align-items: flex-start;
  }
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  gap: 4px;
  position: relative;
  z-index: 1;
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  background-color: #333333;
}
@media screen and (max-width: 767px) {
  .flow__step {
    width: 80px;
    height: 80px;
    border: 1px solid #ffffff;
  }
}
.flow__step-label {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .flow__step-label {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.flow__step-num {
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .flow__step-num {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.flow__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow__name {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .flow__name {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.flow__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.flow__deco {
  position: absolute;
  width: 335px;
  z-index: 2;
  bottom: -350px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .flow__deco {
    width: 156px;
    bottom: -156px;
  }
}

.faq {
  --sec-title-img-h: 54px;
  --sec-title-img-h-sp: 40px;
  margin-top: 160px;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 110px;
    padding: 60px 6% 100px;
  }
}
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    gap: 40px;
  }
}
.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.faq__bg-text {
  font-family: "Unbounded", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 200;
  color: #818182;
  opacity: 0.5;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__bg-text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.faq__list {
  border-top: 1px solid #333333;
}
.faq__item {
  border-bottom: 1px solid #333333;
}
.faq__btn {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 20px;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__btn {
    padding: 20px 10px;
  }
}
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .faq__q {
    gap: 5px;
  }
}
.faq__label {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  flex-shrink: 0;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .faq__label {
    font-size: 16px;
    font-size: 1rem;
  }
}
.faq__q-text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .faq__q-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #333333;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #333333;
}
.faq__icon::before {
  width: 18px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px;
  height: 18px;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 44px;
    height: 44px;
  }
  .faq__icon::before {
    width: 15px;
  }
  .faq__icon::after {
    height: 15px;
  }
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  display: none;
  padding: 0 0 40px 20px;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 0 0 20px 10px;
  }
}
.faq__a-inner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq__a-body {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}
.faq__a-body p + p {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .faq__a-body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.contact {
  position: relative;
}
.contact__connector {
  position: absolute;
  width: 2px;
  height: 140px;
  margin: 0 auto;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.contact__connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background-color: #333333;
  animation: contact-scroll 2s infinite;
}
@media screen and (max-width: 767px) {
  .contact__connector::before {
    width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .contact__connector {
    width: 1px;
    height: 100px;
    top: -50px;
  }
}
.contact__wrap {
  position: relative;
  width: calc(100% - 100px);
  margin: 0 auto;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    width: calc(100% - 40px);
    padding-bottom: 100px;
  }
}
.contact__box {
  background-color: #18759d;
  border-radius: 60px;
  padding: 80px 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contact__box {
    padding: 60px 24px;
    border-radius: 40px;
  }
}
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact__bg-text {
  font-family: "Unbounded", sans-serif;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 200;
  color: #ffffff;
  opacity: 0.1;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__bg-text {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.contact__title {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact__title {
    margin-top: -30px;
  }
}
.contact__title img {
  height: 51px;
  width: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .contact__title img {
    height: 88px;
  }
}
.contact__lead {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.contact__cta-list {
  display: flex;
  gap: 37px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact__cta-list {
    gap: 20px;
    margin-top: 0;
    flex-direction: column;
  }
}
.contact__cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(40px, 3.6vw) min(60px, 5.4vw);
  min-height: min(200px, 17.9vw);
  background-color: #f5f5f5;
  border-radius: 22px;
  gap: 42px;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__cta-item:hover > .m-link-arrow__icon {
    background-color: #2488b2;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .contact__cta-item {
    height: auto;
    padding: 24px;
    gap: 10px;
    border-radius: 18px;
  }
}
.contact__cta-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  line-height: 1.3;
  color: #333333;
}
.contact__cta-sub {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__cta-sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.contact__cta-main {
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contact__cta-main {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.contact__cta-item--tel {
  flex-direction: column;
  gap: 0;
}
.contact__tel-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .contact__tel-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.contact__tel {
  display: flex;
  align-items: baseline;
  color: #18759d;
  line-height: 1.3;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__tel:hover {
    color: #2488b2;
  }
}
.contact__tel-prefix {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__tel-prefix {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.contact__tel-num {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__tel-num {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.contact__tel-note {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact__tel-note {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.contact__chara {
  position: absolute;
  right: calc(50% - 452px);
  bottom: -93px;
  width: 138px;
  z-index: 1;
  animation: lead-chara-jump 3s ease infinite;
}
@media screen and (max-width: 767px) {
  .contact__chara {
    width: 100px;
    right: calc(50% - 113px);
    bottom: -20px;
  }
}

@keyframes contact-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.l-footer {
  --edge-before: 136px;
  position: relative;
  background-image: url(../img/footer_bg_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer {
    --edge-before: 66px;
  }
}
.l-footer__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--edge-before);
  top: 0;
  background: url("../img/footer_bg_before.png") no-repeat center top/cover;
}
.l-footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 220px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-top: 120px;
    padding-left: 6%;
    padding-right: 6%;
    gap: 60px;
  }
}
.l-footer__content {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
  }
}
.l-footer__info {
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    gap: 10px;
  }
}
.l-footer__logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 140px;
  }
}
.l-footer__address {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  font-style: normal;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer__address a {
  color: inherit;
}
.l-footer__cta {
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__btn {
  width: 100%;
  height: 70px;
  font-size: 17px;
  font-size: 1.0625rem;
}
.l-footer__copy {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 2;
  text-align: center;
}/*# sourceMappingURL=style.css.map */