@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background-color: #2C2C2C;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  overflow-x: hidden;
  opacity: 0;
  transition: all 0.8s ease-out;
}
body.loaded {
  opacity: 1;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  width: 100%;
  vertical-align: baseline;
  -o-object-fit: cover;
     object-fit: cover;
}

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

li {
  list-style: none;
}

section {
  margin-top: 80px;
}

.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.bg__white {
  border-radius: 150px 150px 0 0;
  background: #fff;
  padding-bottom: 30%;
}
@media (max-width: 1024px) {
  .bg__white {
    border-radius: 80px 80px 0 0;
  }
}
@media (max-width: 768px) {
  .bg__white {
    border-radius: 40px 40px 0 0;
  }
}

.pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: inline-block;
    text-align: center;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed !important;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background-color: #2C2C2C;
  color: #fff;
  z-index: 1000;
  width: min(90%, 1200px);
  max-width: calc(100vw - 40px);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .header {
    background-color: transparent;
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
    border-radius: 0;
    padding: 15px 20px;
  }
  .header::before {
    display: none;
  }
}
.header__logo {
  max-width: 60px;
  z-index: 1001;
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav li a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header__nav li a {
    font-size: 1.2rem;
    font-weight: 600;
  }
}
.header__nav--btn a {
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  border-radius: 100px;
  padding: 12px 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header__nav--btn a {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 44, 44, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    z-index: 999;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  box-shadow: 2px 1px 2px #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.section__title {
  margin-bottom: 20px;
}
.section__title h2 {
  font-family: "Anton", sans-serif;
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  .section__title h2 {
    font-size: 3.2rem;
  }
}
.section__title p {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section__title p {
    font-size: 1.8rem;
  }
}
.section__title.title__center {
  text-align: center;
  color: #2C2C2C;
}

.btn {
  text-align: right;
  margin: 40px;
}
.btn a {
  color: #2C2C2C;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .btn a {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .btn a {
    font-size: 1.4rem;
  }
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: -30px;
  width: 100px;
  height: 20px;
  background-image: url("../img/btn-arrow.svg");
  background-size: contain;
  transition: 0.3s;
}
.btn a:hover::after {
  transform: translateX(10px);
}

.contact {
  width: 85%;
  background-image: url(../img/background.png);
  margin-left: auto;
  margin-top: -250px;
  border-radius: 50px 0 0 50px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .contact {
    width: 60%;
    background-repeat: repeat-x;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 30px;
  }
}
.contact__content {
  position: relative;
  z-index: 10;
}
.contact__content .contact__btn {
  display: inline-block;
  background-image: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  padding: 2% 5%;
  border-radius: 15px;
  box-shadow: 4px 4px 10px #2C2C2C;
  margin-top: 40px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .contact__content .contact__btn {
    border-radius: 10px;
  }
}
.contact__content .contact__btn:hover {
  transform: translate(2%, 5%);
  box-shadow: none;
}
.contact__content .contact__btn a {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .contact__content .contact__btn a {
    font-size: 1.6rem;
  }
}
.contact__bg-img {
  position: absolute;
  top: 0;
  z-index: 0;
}
.contact.other__contact {
  margin-top: 0;
}

.fv {
  height: 100vh;
  overflow: hidden;
  inset: 0;
  margin-top: 0;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}
.fv .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.fv .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #2C2C2C);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: all 0.2s ease;
}
.fv__text {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding: 20vh 3% 0 3%;
}
@media (max-width: 768px) {
  .fv__text {
    padding-top: 30vh;
  }
}
.fv__text .main-copy {
  font-family: "Zen Antique", serif;
  font-size: clamp(2rem, 8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 3.6rem;
  line-height: 1.8;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .fv__text .main-copy {
    letter-spacing: 2rem;
  }
}
.fv__text .main-copy span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.fv__text .main-copy span.appear {
  opacity: 1;
  transform: translateY(0);
}
.fv__text.shrink-out {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.6s ease;
}
.fv .scroll_down {
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
  position: absolute;
  z-index: 10;
}
.fv .scroll_down p {
  letter-spacing: 0.1vw;
}
.fv .scroll_down a {
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}
.fv .scroll_down .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 10px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 23px;
}
.fv .scroll_down .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
  animation: ani-mouse 2.5s linear infinite;
}
@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 70%;
  }
  40% {
    opacity: 0;
    top: 30%;
  }
  70% {
    opacity: 1;
    top: 30%;
  }
  100% {
    opacity: 1;
    top: 70%;
  }
}

.line-wrap {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.line-wrap .line-img {
  position: relative;
  width: 100%;
  animation: moveLine 5s linear infinite;
}

.page-view {
  background-image: url(../img/background.png);
  background-size: cover;
  height: 40vh;
  margin-top: -80px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-view__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.page-view .page__title {
  text-align: left;
}
.page-view .page__title h2 {
  font-family: "Anton", sans-serif;
  font-size: 6.4rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-view .page__title h2 {
    font-size: 4.8rem;
  }
}
.page-view .page__title p {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page-view .page__title p {
    font-size: 1.8rem;
  }
}

.page__nav {
  margin: 120px auto;
}
.page__nav ul {
  display: flex;
  justify-content: center;
}
.page__nav ul li {
  font-size: 2.4rem;
  padding: 30px 150px;
}
@media (max-width: 1024px) {
  .page__nav ul li {
    padding: 30px 80px;
  }
}
@media (max-width: 768px) {
  .page__nav ul li {
    font-size: 1.8rem;
    padding: 30px 45px 30px 10px;
  }
}
.page__nav ul li:first-child {
  border-right: 3px solid #fff;
}
@media (max-width: 768px) {
  .page__nav ul li:first-child {
    border-right: 1px solid #fff;
  }
}
.page__nav ul li a {
  position: relative;
}
.page__nav ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-40%);
  background-image: url(../img/NextPage.svg);
  height: 30px;
  width: 30px;
  background-size: contain;
  transition: 0.3s;
}
.page__nav ul li a:hover::after {
  right: -60%;
}

.footer {
  border-top: 1px solid #fff;
  padding: 80px 20px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__inner--right ul {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__inner--right ul {
    margin-top: 40px;
    flex-direction: column;
  }
}
.footer__inner--right ul li {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .footer__inner--right ul li {
    margin-bottom: 20px;
  }
}
.footer__inner--right ul li a {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__inner--right ul li a:hover {
  opacity: 0.7;
}

.service__content-item {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  z-index: 0;
  margin-top: 8%;
  position: relative;
}
.service__content-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1024px) {
  .service__content-item {
    width: 80%;
    margin: 8% auto 0 auto;
  }
}
@media (max-width: 576px) {
  .service__content-item {
    width: 100%;
  }
}
.service__content-item__title {
  background-image: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  color: #fff;
  padding: 30px 60px;
  font-size: 2.4rem;
  font-weight: 600;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.service__content-item__title img {
  display: inline-block;
  width: 10%;
}
@media (max-width: 1024px) {
  .service__content-item__title {
    padding: 15px 20px;
    font-size: 1.8rem;
  }
}
.service__content-item__text {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  color: #2C2C2C;
  padding: 30px 60px;
  margin-right: 10%;
}
@media (max-width: 1024px) {
  .service__content-item__text {
    flex-direction: column;
    margin-right: 0;
    padding: 15px 10px 60px 10px;
  }
}
@media (max-width: 768px) {
  .service__content-item__text {
    gap: 5px;
  }
}
.service__content-item__text .trouble li {
  list-style-type: disc;
  list-style-position: inside;
}
@media (max-width: 576px) {
  .service__content-item__text .solution {
    margin-left: 80px;
  }
}
.service__content-item__text img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .service__content-item__text img {
    transform: rotate(90deg);
    width: 15px;
  }
}
.service__content-item .service__img {
  position: absolute;
  width: 20%;
  z-index: 100;
  bottom: -20%;
  left: -20px;
}
@media (max-width: 1024px) {
  .service__content-item .service__img {
    bottom: 0;
  }
}
@media (max-width: 576px) {
  .service__content-item .service__img {
    width: 100px;
  }
}
.service__content-item .service__img.img-right {
  left: inherit;
  right: 0;
  top: -40%;
  width: 25%;
}
@media (max-width: 1024px) {
  .service__content-item .service__img.img-right {
    top: inherit;
    bottom: 0;
    left: -20px;
  }
}
@media (max-width: 576px) {
  .service__content-item .service__img.img-right {
    width: 100px;
  }
}
.service__content-item .btn {
  position: absolute;
  bottom: -5%;
  right: 5%;
}
.service__tabs {
  padding: 40px 0;
  color: #2C2C2C;
}
.service__tab-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
}
.service__tab-menu .service__tab {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #086D84;
  color: #fff;
  cursor: pointer;
  width: 30%;
}
@media (max-width: 768px) {
  .service__tab-menu .service__tab {
    width: 30%;
  }
}
.service__tab-menu .service__tab img {
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .service__tab-menu .service__tab img {
    width: 30px;
  }
}
.service__tab-menu .service__tab.is-active {
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  color: #fff;
  font-weight: bold;
  position: relative;
}
.service__tab-menu .service__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #3861C4;
}
@media (max-width: 450px) {
  .service__tab-menu .service__tab.is-active::after {
    bottom: -20%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #3861C4;
  }
}
.service__tab-contents {
  margin-top: 30px;
  background-color: #fff;
}
.service__tab-contents .service__tab-content {
  display: none;
  padding: 50px;
  border: 3px solid #3861C4;
}
@media (max-width: 768px) {
  .service__tab-contents .service__tab-content {
    padding: 10px;
  }
}
.service__tab-contents .service__tab-content.is-active {
  display: block;
}
.service__tab-contents .service__tab-content .text__top {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 768px) {
  .service__tab-contents .service__tab-content .text__top {
    display: block;
  }
}
.service__tab-contents .service__tab-content--text {
  font-size: 2.4rem;
  border-bottom: 2px solid #3861C4;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .service__tab-contents .service__tab-content--text {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .service__tab-contents .service__tab-content--text {
    font-size: 1.4rem;
  }
}
.service__tab-contents .service__tab-content--inner:not(:last-child) {
  border-bottom: 2px solid #3861C4;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.service__tab-contents .service__tab-content--inner h3 {
  font-family: "Anton", sans-serif;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  .service__tab-contents .service__tab-content--inner h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 576px) {
  .service__tab-contents .service__tab-content--inner h3 {
    font-size: 2.4rem;
  }
}
.service__tab-contents .service__tab-content--inner .tab-content__title {
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .service__tab-contents .service__tab-content--inner .tab-content__title {
    font-size: 1.8rem;
  }
}
.service__tab-contents .service__tab-content--inner p {
  margin-bottom: 20px;
}
.service__tab-contents .service__tab-content--inner li {
  list-style-type: disc;
  list-style-position: inside;
}

.strengths__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .strengths__content {
    flex-direction: column;
    align-items: center;
  }
}
.strengths__content-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 30%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.strengths__content-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .strengths__content-item {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .strengths__content-item {
    width: 100%;
  }
}
.strengths__content-item .img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: absolute;
  top: 10%;
}
.strengths__content-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom-left-radius: 100% 30%;
  border-bottom-right-radius: 100% 30%;
}
.strengths__content-item .img__content {
  height: 150px;
}
.strengths__content-item .text {
  -webkit-clip-path: url(#clip-wave);
          clip-path: url(#clip-wave);
  background-image: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  padding: 50px 20px 20px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strengths__content-item .text h3 {
  font-size: 1.8rem;
  margin-bottom: 1em;
  line-height: 1.4;
  font-weight: bold;
}
.strengths__content-item .text p {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .strengths__content-item .text p {
    font-size: 1.2rem;
  }
}

.voice {
  padding-top: 80px;
}
.voice__content {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .voice__content {
    flex-direction: column;
    align-items: center;
  }
}
.voice__content--item {
  background-color: #202020;
  width: 45%;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.4);
}
.voice__content--item h3 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .voice__content--item {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .voice__content--item {
    width: 100%;
  }
}

.case {
  color: #2C2C2C;
}
.case__content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .case__content {
    flex-direction: column;
    align-items: center;
  }
}
.case__content--item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  position: relative;
  max-width: 450px;
  padding: 30px;
  border-radius: 24px;
}
.case__content--item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .case__content--item {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .case__content--item {
    width: 100%;
  }
}
.case__content--item h3 {
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.case__content--item .col-wrap {
  display: flex;
  gap: 10%;
}
@media (max-width: 576px) {
  .case__content--item .col-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.case__content--item .col-wrap img {
  width: 30%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .case__content--item .col-wrap img {
    width: 20%;
  }
}
.case__content--item .col-wrap .text p {
  font-weight: 600;
}
.case__content--item .col-wrap .text ul {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.case__content--item .col-wrap .text ul li {
  position: relative;
  padding-left: 20px;
}
.case__content--item .col-wrap .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 15px;
  height: 15px;
  background-size: contain;
}
.case__content--item .col-wrap .text .mark1 li::before {
  background-image: url(../img/case_1.svg);
}
.case__content--item .col-wrap .text .mark2 li::before {
  background-image: url(../img/case_2.svg);
}
.case__content--item .col-wrap .text .mark3 li::before {
  background-image: url(../img/case_3.svg);
}

.QA {
  background-image: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  width: 90%;
  margin: 0 auto;
  margin-top: -30%;
  border-radius: 60px;
  padding: 80px 160px 300px 160px;
}
@media (max-width: 768px) {
  .QA {
    padding: 80px 20px 300px 20px;
  }
}
.QA .section__title {
  color: #fff;
}
.QA .accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.QA .accordion__item {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  color: #fff;
  border-top: 2px solid #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .QA .accordion__item {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.QA .accordion__item:last-of-type {
  border-bottom: 2px solid #fff;
}
.QA .accordion__item--title {
  color: #fff;
  text-align: left;
}
.QA .accordion__item .icon {
  font-weight: bold;
  transition: transform 0.3s;
}
.QA .accordion__item--content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0 1em;
}
.QA .accordion__item--content .small {
  font-size: 1.4rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .QA .accordion__item--content .small {
    font-size: 1.2rem;
  }
}
.QA .accordion__item--content.open {
  max-height: 500px;
  opacity: 1;
  padding: 1em;
}

@media (max-width: 768px) {
  .process {
    margin-bottom: 20%;
  }
}
@media (max-width: 576px) {
  .process {
    margin-bottom: 35%;
  }
}
.process__chart {
  display: flex;
  justify-content: space-around;
  position: relative;
  margin-top: 10%;
}
@media (max-width: 768px) {
  .process__chart {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.process__chart .flow-arrow {
  position: absolute;
  z-index: 1;
  top: -20%;
  width: 37%;
}
@media (max-width: 768px) {
  .process__chart .flow-arrow {
    transform: rotate(90deg);
    width: 60%;
  }
}
@media (max-width: 576px) {
  .process__chart .flow-arrow {
    width: 130%;
  }
}
.process__chart .flow-arrow.arrow1 {
  left: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .process__chart .flow-arrow.arrow1 {
    top: 15%;
    left: 10%;
  }
}
.process__chart .flow-arrow.arrow2 {
  z-index: 2;
}
@media (max-width: 768px) {
  .process__chart .flow-arrow.arrow2 {
    top: 45%;
    left: 10%;
  }
}
.process__chart .flow-arrow.arrow3 {
  z-index: 1;
  right: 0;
}
@media (max-width: 768px) {
  .process__chart .flow-arrow.arrow3 {
    top: 80%;
    left: 10%;
  }
}
.process__chart-content {
  background: #fff;
  border-radius: 20px;
  color: #2C2C2C;
  width: 30%;
  padding: 15px;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.process__chart-content.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .process__chart-content {
    width: 80%;
  }
}
.process__chart-content .number {
  font-family: "Anton", sans-serif;
  font-size: 3.2rem;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process__chart-content .content__title {
  display: inline-block;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 5px;
}
.process__chart-content .sub__title {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}
.process__chart-content li {
  font-size: 1.2rem;
  list-style-type: disc;
  margin-bottom: 5px;
  list-style-position: outside;
  margin-left: 15px;
}

.benefits .section__title {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.benefits__content {
  margin-top: 100px;
  margin-bottom: 160px;
}
.benefits__content--item {
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
          clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
  padding: 8% 3%;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.benefits__content--item.slide-in-left {
  transform: translateX(-80px);
}
.benefits__content--item.slide-in-right {
  transform: translateX(80px);
}
.benefits__content--item.show {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .benefits__content--item {
    padding-bottom: 8%;
  }
}
@media (max-width: 768px) {
  .benefits__content--item {
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
            clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  }
}
.benefits__content--item:nth-child(even) {
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}
@media (max-width: 768px) {
  .benefits__content--item:nth-child(even) {
    -webkit-clip-path: polygon(0 -5%, 100% 0, 100% 95%, 0 100%);
            clip-path: polygon(0 -5%, 100% 0, 100% 95%, 0 100%);
  }
}
.benefits__content--item:nth-child(even) .inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .benefits__content--item:nth-child(even) .inner {
    flex-direction: column;
  }
}
.benefits__content--item .inner {
  display: flex;
  position: relative;
  justify-content: center;
  gap: 5%;
  z-index: 1;
}
@media (max-width: 768px) {
  .benefits__content--item .inner {
    flex-direction: column;
  }
}
.benefits__content--item .inner .number {
  font-family: "Anton", sans-serif;
  font-size: 3.2rem;
}
.benefits__content--item .inner .content__title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  white-space: pre-wrap;
  word-break: keep-all;
}
.benefits__content--item .inner p {
  line-height: 1.8;
}
.benefits__content--item img {
  width: 30%;
  position: relative;
  z-index: 100;
  -o-object-fit: contain;
     object-fit: contain;
}

.company-page .wrapper {
  margin-top: 160px;
}
.company-page .value__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .company-page .value__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.company-page .value__content--text {
  width: 50%;
}
@media (max-width: 768px) {
  .company-page .value__content--text {
    width: 100%;
  }
}
.company-page .value__content--text h3 {
  margin-bottom: 20px;
}
.company-page .value__content--img {
  width: 30%;
}
@media (max-width: 768px) {
  .company-page .value__content--img {
    width: 80%;
  }
}
.company-page .vision__content {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .company-page .vision__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
}
.company-page .vision__content--img {
  width: 30%;
}
@media (max-width: 768px) {
  .company-page .vision__content--img {
    width: 80%;
  }
}
.company-page .vision__content--text {
  width: 50%;
}
@media (max-width: 768px) {
  .company-page .vision__content--text {
    width: 100%;
  }
}
.company-page .vision__content--text h3 {
  margin-bottom: 20px;
}
.company-page .company__content {
  max-width: 700px;
  margin: 0 auto;
}
.company-page .company__content dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .company-page .company__content dl {
    flex-direction: column;
  }
}
.company-page .company__content dl dt {
  width: 30%;
  padding: 30px;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .company-page .company__content dl dt {
    width: 100%;
    border-bottom: none;
    padding: 10px;
  }
}
.company-page .company__content dl dd {
  width: 70%;
  padding: 30px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .company-page .company__content dl dd {
    width: 100%;
    padding: 0 10px 10px 10px;
  }
}
.company-page .access {
  margin-bottom: 120px;
}
.company-page .access .gmap {
  width: 100%;
  height: 300px;
  text-align: center;
}
.company-page .contact {
  margin-bottom: 120px;
}

.works .section__title {
  color: #fff;
}
.works .voice {
  margin-bottom: 120px;
}
.works .contact {
  margin-bottom: 120px;
}

.contact-form {
  max-width: 800px;
  margin: 80px auto 120px auto;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 40px 20px;
    margin: 20px 10px;
  }
}
.contact-form__title {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form__title p {
  color: #fff;
  text-align: left;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .form-group {
    margin-bottom: 25px;
  }
}
.form-group.required .form-label::after {
  content: "*";
  color: #fff;
  margin-left: 4px;
  font-weight: bold;
}
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.form-group.error .error-message {
  display: block;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 1.6rem;
}

.form-textarea, .form-select, .form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  font-family: "Noto Sans JP", sans-serif;
}
.form-textarea:focus, .form-select:focus, .form-input:focus {
  outline: none;
  border-color: #3861C4;
  box-shadow: 0 0 0 3px rgba(56, 97, 196, 0.1);
  transform: translateY(-2px);
}
.form-textarea:hover, .form-select:hover, .form-input:hover {
  border-color: #c1c7cd;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.custom-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox input[type=checkbox]:checked ~ .checkmark {
  background: #3861C4;
  border-color: #3861C4;
}
.custom-checkbox input[type=checkbox]:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox:hover .checkmark {
  border-color: #3861C4;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  background: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-text {
  font-size: 1.2rem;
  color: #fff;
}
.checkbox-text a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.checkbox-text a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 6px;
  display: none;
}

.submit-button {
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56, 97, 196, 0.3);
}
.submit-button:active {
  transform: translateY(0);
}
.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.submit-button.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #f8fcf9;
  display: none;
}
.success-message.show {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes moveLine {
  from {
    left: -50%;
  }
  to {
    left: 0%;
  }
}
.fade-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.show {
  opacity: 1;
  transform: scale(1);
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* 任意の背景色 */
  pointer-events: none;
  z-index: 9999;
  transform: scale(0) rotate(0deg);
  transition: transform 1s ease-in-out;
}

.transition-overlay.active {
  transform: scale(10) rotate(720deg);
  pointer-events: auto;
}

.gradient-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
}
.gradient-title.is-white {
  color: #fff;
}
.gradient-title.is-black {
  color: #000;
}
.gradient-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: transparent;
  background: linear-gradient(90deg, rgb(113, 99, 182), rgb(56, 97, 196) 50%, rgb(99, 113, 182));
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  pointer-events: none;
  font: inherit;
  opacity: 0;
}
.gradient-title.animate::after {
  animation: gradientFlow 2s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 1;
}

@keyframes gradientFlow {
  0% {
    background-position: -150% center;
    opacity: 1;
  }
  100% {
    background-position: 100% center;
    opacity: 0;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal__content {
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal__content p {
  color: #2C2C2C;
}
.modal__content img {
  max-width: 200px;
}

.modal__close {
  margin-top: 1em;
  padding: 0.5em 1em;
}

.wpcf7-response-output {
  display: none !important;
}/*# sourceMappingURL=style.css.map */