@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@media (max-width: 768px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media (max-width: 768px) {
  br.sp {
    display: inline;
  }
}

* {
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 1006px) {
  html {
    scroll-padding-top: 54px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
body.js-fixed02 {
  overflow: hidden;
}
@media (max-width: 1006px) {
  body {
    min-width: 100%;
  }
  body.js-fixed {
    overflow: hidden;
  }
}

.wrap {
  width: auto;
  margin: 0 auto;
  max-width: 1168px;
  padding: 0 20px;
}

img {
  display: block;
  width: revert-layer;
  height: auto;
}
a {
  transition: 0.3s ease-in-out;
}

.btn {
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn._01 {
  width: 236px;
  height: 44px;
  background: #3f54c1;
  background: linear-gradient(to right, #67c9e0 0%, #3f54c1 100%);
  border-radius: 2px;
  transition: none;
}
.btn._01:hover {
  background: #fff;
  color: #333;
}
.btn._02 {
  height: 74px;
  background: #000;
  width: 333px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  gap: 40px;
}
@media (max-width: 768px) {
  .btn._02 {
    text-align: center;
  }
}
.btn._02 p,
.btn._02 .dot {
  color: #fff;
}
.btn._02:after {
  content: "";
  mask: url(/assets/img/arrow01.svg) no-repeat center top/contain;
  background: #fff;
  display: block;
  width: 30px;
  height: 5px;
  transition: 0.3s ease-in-out;
}
.btn._02:hover {
  background: #fff;
}
.btn._02:hover p,
.btn._02:hover .dot {
  color: #333;
}
.btn._02:hover:after {
  background: #000;
  transform: translateX(50%);
}
.btn._03 {
  width: 176px;
  height: 44px;
  border: 1px solid #3F54C1;
  border-radius: 3px;
  background: #3F54C1;
  color: #fff;
  position: relative;
}
.btn._03:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
  right: 13px;
  transition: 0.3s ease-in-out;
}
.btn._03:hover {
  background: #fff;
  color: #3F54C1;
}
.btn._03:hover:after {
  border-color: #3F54C1;
}

.inview {
  opacity: 0;
  transition: 1s;
}
@media (max-width: 768px) {
  .inview {
    transition-delay: 0s !important;
  }
}
.inview.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up {
  transform: translate(0, 50%);
}

.fadeIn_down {
  transform: translate(0, -50%);
}

.fadeIn_left {
  transform: translate(-50%, 0);
}

.fadeIn_right {
  transform: translate(50%, 0);
}

.delay01 {
  transition-delay: 0.5s;
}

.delay02 {
  transition-delay: 1s;
}

.delay03 {
  transition-delay: 1.5s;
}

.delay04 {
  transition-delay: 2s;
}

.delay05 {
  transition-delay: 2.5s;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
header * {
  color: #fff;
}
header .header-inner {
  background: #000;
  display: flex;
  align-items: center;
  height: 80px;
}
@media (max-width: 1006px) {
  header .header-inner {
    height: 54px;
  }
}
header .header-inner > a,
header .header-inner img {
  width: auto;
  height: 100%;
}
header .header-inner nav {
  margin-left: auto;
  height: 100%;
  padding-right: 20px;
  position: relative;
  background: #000;
}
header .header-inner nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
header .header-inner nav ul a:not([class]):hover {
  text-decoration: underline;
}
@media (max-width: 1006px) {
  header .header-inner nav {
    display: flex;
    position: absolute;
    flex-direction: column;
    background: #000;
    top: 54px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 0 30px;
    transform: translateY(-200%);
    z-index: -1;
    transition: 0.3s ease-in-out;
  }
  header .header-inner nav ul {
    flex-direction: column;
    gap: 0;
  }
  header .header-inner nav ul li {
    width: 100%;
    text-align: center;
  }
  header .header-inner nav ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
  }
  header .header-inner nav ul li .btn {
    margin: 0 auto;
    margin-top: 15px;
  }
  header .header-inner nav.js-open {
    transform: translateY(0%);
  }
}
header .header-inner .nav-toggle {
  display: none;
}
@media (max-width: 1006px) {
  header .header-inner .nav-toggle {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 25px;
    height: 17px;
    position: relative;
    transition: 0.3s ease-in-out;
    margin: 18px;
    margin-left: auto;
  }
  header .header-inner .nav-toggle span {
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid #fff;
    transition: 0.3s ease-in-out;
  }
}
header .header-inner .nav-toggle.js-open {
  gap: 0;
}
header .header-inner .nav-toggle.js-open span {
  display: block;
}
header .header-inner .nav-toggle.js-open span:nth-child(1) {
  rotate: 45deg;
}
header .header-inner .nav-toggle.js-open span:nth-child(2) {
  transform: translateX(1000%);
}
header .header-inner .nav-toggle.js-open span:nth-child(3) {
  rotate: -45deg;
  margin-top: -1px;
}

footer {
  background: #000;
  padding-bottom: 20px;
}
footer * {
  color: #fff;
}
footer .footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
}
@media (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  footer .footer-inner > a {
    width: 151px;
    height: 54px;
  }
}
@media (max-width: 768px) {
  footer .footer-inner > a img {
    width: 100%;
  }
}
footer .footer-inner nav {
  margin-left: auto;
  height: 100%;
  padding-right: 20px;
}
@media (max-width: 768px) {
  footer .footer-inner nav {
    padding-right: 0;
    margin: 0 auto;
  }
}
footer .footer-inner nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  footer .footer-inner nav ul {
    flex-direction: column;
    gap: 0px;
  }
}
footer .footer-inner nav ul a:not([class]) {
  display: block;
  padding: 15px 0;
}
footer .footer-inner nav ul a:not([class]):hover {
  text-decoration: underline;
}
footer .footer-inner nav ul .btn {
  margin: 15px 0;
}
footer .copyright {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
}

main h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  main h2 {
    font-size: 28px;
  }
}
main h2 span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #3F54C1;
}
@media (max-width: 768px) {
  main h2 span {
    font-size: 18px;
  }
}
main h2 .dot {
  display: inline;
  font-size: inherit;
  color: #333;
}
@media (max-width: 768px) {
  main h2 .dot {
    display: none;
  }
}
main h2 + p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 40px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  main h2 + p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    text-align: left;
  }
}
main section {
  overflow: hidden;
}
main .mv {
  padding: 45px 0 208px;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/mv@2x.png);
  background-size: cover;
  background-position: left bottom;
  animation: changeBackground 10s infinite;
}
@keyframes changeBackground {
  0% {
    background-image: url(/assets/img/mv@2x.png);
  }
  50% {
    background-image: url(/assets/img/mv-alt@2x.png);
  }
  100% {
    background-image: url(/assets/img/mv@2x.png);
  }
}
@media (max-width: 768px) {
  main .mv {
    padding: 13px 0 180px;
  }
}
main .mv * {
  color: #fff;
}
main .mv h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 2.2;
  text-shadow: black 0px 2px 10px;
}
@media (max-width: 768px) {
  main .mv h1 {
    font-size: 22px;
    line-height: 1.8;
  }
}
main .mv .btn {
  margin-top: 30px;
}
@media (max-width: 768px) {
  main .mv .btn {
    margin-top: 65px;
    width: 217px;
    height: 74px;
    text-align: center;
    gap: 30px;
  }
}
main .mv .btn p {
  font-size: 18px;
}
@media (max-width: 768px) {
  main .mv .btn p {
    font-size: 16px;
  }
}
main .mv .btn p .dot {
  display: inline;
  font-size: inherit;
}
@media (max-width: 768px) {
  main .mv .btn p .dot {
    display: none;
  }
}
main .mv .copy {
  position: absolute;
  bottom: -24px;
  font-size: 125px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  main .mv .copy {
    bottom: -12px;
    font-size: 55px;
  }
}
main .mv .img-wrap {
  width: 178px;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media (max-width: 768px) {
  main .mv .img-wrap {
    width: 106px;
    height: 57px;
  }
}
@media (max-width: 768px) {
  main .mv .img-wrap img {
    transform: scale(0.6);
  }
}
main .mv .splide {
  position: absolute;
  bottom: 0;
  right: 47px;
}
@media (max-width: 768px) {
  main .mv .splide {
    right: calc(50% - 170px);
  }
}
main .mv .splide__arrow--prev {
  display: none;
}
main .mv .splide__arrow--next {
  position: absolute;
  background: url(/assets/img/splide-arrow.svg) no-repeat center top/contain;
  width: 196px;
  height: 178px;
  border-radius: 0;
  opacity: 1 !important;
  bottom: -12px;
}
@media (max-width: 768px) {
  main .mv .splide__arrow--next {
    width: 117px;
    height: 106px;
  }
}
main .bg-gradation {
  background: url(/assets/img/bg-gradation.svg) no-repeat center bottom/cover;
}
main .strengths {
  padding-top: 85px;
}
@media (max-width: 768px) {
  main .strengths {
    padding-top: 41px;
  }
}
main .strengths ol {
  display: flex;
  flex-direction: column;
  gap: 57px;
  margin-top: 74px;
}
main .strengths ol li {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  main .strengths ol li {
    flex-direction: column !important;
  }
}
main .strengths ol li .img-wrap {
  width: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  main .strengths ol li .img-wrap {
    width: calc(100% + 40px);
  }
}
main .strengths ol li .img-wrap img {
  width: 100%;
}
main .strengths ol li .txt {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  main .strengths ol li .txt {
    margin-top: -100px;
  }
}
main .strengths ol li .txt .num {
  font-family: "Montserrat", sans-serif;
  font-size: 77px;
  font-weight: bold;
  color: #FC8700;
  line-height: 1;
}
@media (max-width: 768px) {
  main .strengths ol li .txt .num {
    position: relative;
    top: -200px;
  }
}
main .strengths ol li .txt h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  main .strengths ol li .txt h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
main .strengths ol li .txt h3 + p {
  font-size: 18px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  main .strengths ol li .txt h3 + p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
main .strengths ol li .txt .btn {
  margin-top: auto;
  margin-left: auto;
}
main .strengths ol li:nth-of-type(even) {
  flex-direction: row-reverse;
}
main .solution {
  padding: 100px 0;
}
@media (max-width: 768px) {
  main .solution {
    padding-bottom: 70px;
  }
}
main .solution h2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  main .solution h2 {
    font-size: 25px;
  }
}
main .solution h2 span {
  content: "";
  position: absolute;
  font-size: 115px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  left: 50%;
  transform: translateX(-50%);
  top: -98px;
  color: #fff;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 768px) {
  main .solution h2 span {
    font-size: 52px;
    top: -35px;
  }
}
main .solution ol {
  display: flex;
  margin-top: 38px;
  gap: 48px;
}
@media (max-width: 768px) {
  main .solution ol {
    flex-direction: column;
  }
}
main .solution ol li {
  width: 100%;
  display: flex;
  flex-direction: column;
}
main .solution ol li .top {
  background: #707070;
  height: 220px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  main .solution ol li .top {
    height: 130px;
  }
}
main .solution ol li .top:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid #707070;
  border-bottom: 0;
  bottom: -13px;
}
main .solution ol li .top p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  main .solution ol li .top p {
    font-size: 18px;
  }
}
main .solution ol li .btm {
  background: #fff;
  padding: 30px;
  text-align: center;
  margin-top: 22px;
  border-radius: 3px;
  height: 100%;
}
main .solution ol li .btm span {
  font-size: 24px;
  font-weight: bold;
  color: #6A6A6A;
}
@media (max-width: 768px) {
  main .solution ol li .btm span {
    font-size: 20px;
  }
}
main .solution ol li .btm .num {
  font-size: 60px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #3F54C1;
  border-bottom: 2px solid rgba(63, 84, 193, 0.5);
  width: 132px;
  margin: 0 auto 14px;
  line-height: 1.4;
}
main .solution ol li .btm h3 {
  font-size: 32px;
  font-weight: bold;
}
main .solution ol li .btm .img-wrap {
  margin-bottom: 28px;
  height: 230px;
  display: flex;
  width: 100%;
  height: auto;
}
main .solution ol li .btm .img-wrap img {
  width: 100%;
}
main .solution ol li .btm .img-wrap + p {
  text-align: left;
}
@media (max-width: 768px) {
  main .solution ol li .btm .img-wrap + p {
    font-size: 16px;
  }
}
main .about {
  padding: 85px 0 100px;
  background: #f2f2f4;
}
@media (max-width: 768px) {
  main .about {
    padding: 44px 0 0;
  }
}
main .about .inner {
  margin-top: 80px;
  background: #fff;
  padding: 0 64px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  main .about .inner {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 40px;
  }
}
main .about .inner nav {
  background: #575757;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 5px;
  transform: translateY(-50%);
  margin-bottom: 20px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  main .about .inner nav {
    margin-bottom: 0;
  }
}
main .about .inner nav ul {
  display: flex;
  justify-content: center;
  gap: 1px;
}
@media (max-width: 768px) {
  main .about .inner nav ul {
    flex-wrap: wrap;
  }
}
main .about .inner nav ul li a {
  display: flex;
  font-weight: bold;
  color: #fff;
  padding: 18px 1.5em;
  position: relative;
}
@media (max-width: 768px) {
  main .about .inner nav ul li a {
    padding: 7px 1.5em;
  }
}
main .about .inner nav ul li a:hover {
  text-decoration: underline;
}
main .about .inner nav ul li:not(:first-child) a:after {
  content: "";
  position: absolute;
  border-left: 1px solid #fff;
  height: 1em;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  main .about .inner nav ul li:nth-child(4) a:after {
    display: none;
  }
}
main .about .inner h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  padding-top: 80px;
  padding-bottom: 15px;
  border-bottom: 3px solid #BDBDBD;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 5px 20px;
}
@media (max-width: 768px) {
  main .about .inner h3 {
    padding-top: 36px;
    font-size: 25px;
  }
}
main .about .inner h3:after {
  content: "";
  position: absolute;
  width: 20%;
  height: 3px;
  background: #4463c5;
  background: linear-gradient(to right, #67c9e0 0%, #4463c5 100%);
  left: 0;
  bottom: -3px;
}
@media (max-width: 768px) {
  main .about .inner h3:after {
    width: 50%;
  }
}
main .about .inner h3 span {
  font-family: "Montserrat", sans-serif;
  color: #3F54C1;
  position: relative;
  top: -3px;
}
@media (max-width: 768px) {
  main .about .inner h3 span {
    font-size: 14px;
  }
}
main .about .inner h3 + p {
  font-size: 23px;
  font-weight: bold;
  margin-top: 14px;
}
@media (max-width: 768px) {
  main .about .inner h3 + p {
    font-size: 19px;
  }
}
main .about .inner .h4-01 {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
}
@media (max-width: 768px) {
  main .about .inner .h4-01 {
    margin-top: 21px;
    font-size: 18px;
  }
}
main .about .inner .h4-01:before {
  content: "";
  border-radius: 100px;
  background: #3F54C1;
  width: 12px;
  height: 12px;
}
main .about .inner .list01 {
  display: grid;
  gap: 20px;
  padding: 30px 87px;
}
@media (max-width: 768px) {
  main .about .inner .list01 {
    padding: 13px 0;
    gap: 13px;
  }
}
main .about .inner .list01 li {
  display: flex;
}
main .about .inner .list01 li p:first-child {
  font-size: 19px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  width: 170px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  main .about .inner .list01 li p:first-child {
    width: 135px;
  }
}
main .about .inner .list01 li p:first-child span {
  display: block;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.1;
}
main .about .inner .list01 li p:first-child span::first-letter {
  color: #3F54C1;
}
main .about .inner .list01 li p:last-child {
  font-size: 18px;
  font-weight: 500;
  margin-top: 25px;
}
main .about .inner .list02 {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 30px 80px;
  justify-items: center;
}
@media (max-width: 768px) {
  main .about .inner .list02 {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
  }
}
main .about .inner .list02 li {
  max-width: 468px;
}
@media (max-width: 768px) {
  main .about .inner .list02 li {
    max-width: 100%;
  }
}
main .about .inner .list02 li .img-flex {
  display: flex;
}
main .about .inner .list02 li .img-flex img {
  width: auto;
}
@media (max-width: 768px) {
  main .about .inner .list02 li .img-flex img {
    width: 50%;
  }
}
main .about .inner .list02 li .img-flex .img-wrap {
  width: 237px;
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  main .about .inner .list02 li .img-flex .img-wrap {
    height: auto;
  }
}
@media (max-width: 768px) {
  main .about .inner .list02 li .img-flex .img-wrap img {
    width: 80%;
  }
}
main .about .inner .list02 li .txt {
  margin-top: 18px;
}
main .about .inner .list02 li .txt h4 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 16px;
}
main .about .inner .list02 li .txt h4 span {
  display: block;
  font-size: 16px;
}
main .about .inner .list02 li .txt p {
  font-weight: normal;
  line-height: 2;
}
main .about .inner .list03 {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 30px 80px;
  justify-items: center;
}
@media (max-width: 768px) {
  main .about .inner .list03 {
    display: flex;
    flex-direction: column;
  }
}
main .about .inner .list03 li {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  main .about .inner .list03 li {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  main .about .inner .list03 li .img-wrap {
    width: 50%;
  }
}
@media (max-width: 1006px) {
  main .about .inner .list03 li .img-wrap img {
    width: 100%;
  }
}
main .about .inner .list03 li .txt {
  max-width: 240px;
}
@media (max-width: 768px) {
  main .about .inner .list03 li .txt {
    max-width: 48%;
  }
}
main .about .inner .list03 li .txt p:first-child {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #bdbdbd;
}
main .about .inner .list03 li .txt p:first-child span {
  display: block;
  font-weight: 1.6rem;
}
main .about .inner .list03 li .txt p + p {
  padding-top: 15px;
  line-height: 2;
}
main .about .inner .list04 {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  main .about .inner .list04 {
    margin-top: 21px;
    gap: 30px;
  }
}
main .about .inner .list04 li {
  width: 220px;
}
@media (max-width: 768px) {
  main .about .inner .list04 li {
    width: 45%;
  }
}
main .about .inner .list04 li .img-wrap {
  width: 220px;
  height: 160px;
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  main .about .inner .list04 li .img-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  main .about .inner .list04 li .img-wrap img {
    width: 55%;
  }
}
main .about .inner .list04 li p {
  margin-top: 15px;
}
main .about .inner .list-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  main .about .inner .list-flex {
    gap: 0;
  }
}
main .about .inner table {
  margin-top: 26px;
  width: 100%;
}
@media (max-width: 768px) {
  main .about .inner table {
    margin-top: 2px;
  }
}
main .about .inner table tr {
  border-bottom: 1px solid #bdbdbd;
}
main .about .inner table tr * {
  padding: 16px 0;
}
@media (max-width: 768px) {
  main .about .inner table tr * {
    padding: 12px 0;
  }
}
main .about .inner table tr th {
  width: 20%;
}
@media (max-width: 768px) {
  main .about .inner table tr th {
    width: 30%;
  }
}
main .contact {
  padding: 75px 0;
  background: #3F54C1;
  background: linear-gradient(to right, #67C9E0 0%, #3F54C1 100%);
}
@media (max-width: 768px) {
  main .contact {
    padding: 35px 0 26px;
  }
}
main .contact * {
  color: #fff;
  max-width: 927px;
}
main .contact > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main .contact > * {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  main .contact h2 {
    font-size: 40px;
  }
}
main .contact h2 + p {
  margin: 0;
}
@media (max-width: 768px) {
  main .contact .btn {
    margin-top: 25px;
  }
}
main .casestudy {
  background: url(/assets/img/bg-casestudy.svg) no-repeat center top/cover;
  padding: 85px 0 120px;
}
@media (max-width: 768px) {
  main .casestudy {
    padding: 40px 0 60px;
  }
}
main .casestudy h2 {
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  main .casestudy h2 {
    margin-bottom: 36px;
  }
}
main .casestudy h2 + ul > li {
  background: #fff;
  margin-top: 60px;
  display: flex;
  position: relative;
  right: -120px;
  margin-left: -120px;
  padding: 50px 70px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li {
    margin-top: 30px;
    position: static;
    margin-left: 0;
    padding: 25px 20px;
    flex-direction: column;
  }
}
main .casestudy h2 + ul > li .side {
  position: relative;
  left: -140px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .side {
    position: static;
  }
}
main .casestudy h2 + ul > li .side p {
  font-size: 23px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: rgba(63, 84, 193, 0.5);
  position: relative;
  left: 140px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .side p {
    font-size: 19px;
    position: static;
  }
}
main .casestudy h2 + ul > li .side p span {
  font-size: 60px;
  font-weight: bold;
  font-style: italic;
  color: rgba(63, 84, 193, 0.5);
  position: relative;
  bottom: -20px;
  right: -0.25em;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .side p span {
    line-height: 1.2;
  }
}
main .casestudy h2 + ul > li .side img {
  margin-top: 30px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .side img {
    width: 100%;
  }
}
main .casestudy h2 + ul > li .main {
  position: relative;
  left: -80px;
  width: 544px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .main {
    position: static;
    width: 100%;
  }
}
main .casestudy h2 + ul > li .main h3 {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .main h3 {
    font-size: 20px;
    margin-top: 20px;
  }
}
main .casestudy h2 + ul > li .main h3 span {
  font-size: inherit;
  color: #3F54C1;
}
main .casestudy h2 + ul > li .main > ul {
  margin: 30px 0;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .main > ul {
    margin: 15px 0;
  }
}
main .casestudy h2 + ul > li .main > ul li {
  display: flex;
  line-height: 2;
}
main .casestudy h2 + ul > li .main > ul li:before {
  content: "・";
}
main .casestudy h2 + ul > li .main > ul li:first-child {
  font-weight: bold;
  gap: 8px;
}
main .casestudy h2 + ul > li .main > ul li:first-child:before {
  content: "";
  display: block;
  border-top: 4px solid #3F54C1;
  width: 16px;
  margin-top: 15px;
}
main .casestudy h2 + ul > li .main .flex-item {
  display: flex;
  gap: 22px;
}
main .casestudy h2 + ul > li .main .flex-item p {
  border-radius: 3px;
  font-weight: bold;
  width: 92px;
  height: 36px;
  background: #3F54C1;
  color: #fff;
}
main .casestudy h2 + ul > li .main .flex-item ul li {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .main .flex-item ul li {
    font-size: 16px;
  }
}
main .casestudy h2 + ul > li .main .flex-item ul li:before {
  content: "";
  background: url(/assets/img/check.svg) no-repeat center top/contain;
  display: block;
  width: 25px;
  height: 23px;
  margin-top: 9px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li .main .flex-item ul li:before {
    margin-top: 5px;
  }
}
main .casestudy h2 + ul > li:nth-child(even) {
  flex-direction: row-reverse;
  right: 120px;
  margin-left: 0;
  margin-right: -120px;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li:nth-child(even) {
    margin-right: 0;
    flex-direction: column;
  }
}
main .casestudy h2 + ul > li:nth-child(even) .side {
  left: 140px;
}
main .casestudy h2 + ul > li:nth-child(even) .side p {
  left: -140px;
  margin-left: auto;
  width: fit-content;
}
@media (max-width: 768px) {
  main .casestudy h2 + ul > li:nth-child(even) .side p {
    margin-left: 0;
  }
}
main .casestudy h2 + ul > li:nth-child(even) .main {
  left: 80px;
}
main .faq {
  padding: 85px 0 120px;
}
@media (max-width: 768px) {
  main .faq {
    padding: 40px 0 60px;
  }
}
main .faq h2 {
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  main .faq h2 {
    margin-bottom: 30px;
  }
}
main .faq details {
  background: #f8f8f8;
  margin-bottom: 20px;
}
main .faq details:last-child {
  margin-bottom: 0;
}
main .faq details span {
  font-size: 40px;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  color: #808080;
}
@media (max-width: 768px) {
  main .faq details span {
    font-size: 30px;
  }
}
main .faq details summary {
  position: relative;
  padding: 25px 40px;
  padding-right: 3.5em;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  main .faq details summary {
    padding: 20px;
    font-size: 20px;
    padding-right: 2em;
    gap: 15px;
  }
}
main .faq details summary:after {
  content: "";
  position: absolute;
  background: url(/assets/img/close.svg) no-repeat center top/contain;
  width: 28px;
  height: 28px;
  display: block;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  main .faq details summary:after {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}
main .faq details summary::marker {
  font-size: 0;
}
main .faq details summary::-webkit-details-marker {
  display: none;
}
main .faq details .content {
  margin: 0 40px;
  padding: 25px 0;
  border-top: 1px dotted #3F54C1;
}
@media (max-width: 768px) {
  main .faq details .content {
    margin: 0 20px;
    padding: 15px 0;
  }
}
main .faq details .content p {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 768px) {
  main .faq details .content p {
    font-size: 16px;
    gap: 20px;
  }
}
main .faq details .content p span {
  color: #3F54C1;
}
main .faq details[open] summary:after {
  background-image: url(/assets/img/open.svg);
}
main .contact-form {
  background: #3F54C1;
  background: linear-gradient(to right, rgba(103, 201, 224, 0.5), rgba(63, 84, 193, 0.5));
  padding: 85px 0 120px;
}
@media (max-width: 768px) {
  main .contact-form {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  main .contact-form h2 .dot {
    display: none;
  }
}
main .contact-form h2 + p {
  font-size: 16px;
}
@media (max-width: 768px) {
  main .contact-form h2 + p {
    text-align: center;
  }
}
main .contact-form form {
  margin-top: 48px;
}
@media (max-width: 768px) {
  main .contact-form form {
    margin-top: 30px;
  }
}
main .contact-form form .box {
  background: #fff;
  padding: 10px 40px;
}
@media (max-width: 768px) {
  main .contact-form form .box {
    padding: 0 20px;
  }
}
main .contact-form form .box > div {
  padding: 20px 0;
  display: flex;
  border-bottom: 1px solid #bdbdbd;
}
@media (max-width: 768px) {
  main .contact-form form .box > div {
    flex-direction: column;
    gap: 20px;
  }
}
main .contact-form form .box > div:last-child {
  border-bottom: none;
}
main .contact-form form .box > div p,
main .contact-form form .box > div label {
  font-weight: bold;
  width: 100%;
  max-width: 276px;
  display: flex;
  align-items: center;
  gap: 12px;
}
main .contact-form form .box > div p:before,
main .contact-form form .box > div label:before {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FC8700;
  color: #fff;
  border-radius: 2px;
  width: 44px;
  height: 22px;
  font-size: 12px;
}
main .contact-form form .box > div ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main .contact-form form .box > div ul li {
  display: flex;
  gap: 8px;
}
main .contact-form form .box > div input,
main .contact-form form .box > div textarea {
  background: #E6EDF7;
  width: 100%;
  padding: 20px;
}
@media (max-width: 768px) {
  main .contact-form form .box > div input,
  main .contact-form form .box > div textarea {
    padding: 15px;
  }
}
main .contact-form form .box > div input[type=radio] {
  background: none;
  width: auto;
  padding: 0;
  margin: 0;
}
main .contact-form form div + p {
  margin: 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  main .contact-form form div + p {
    margin: 30px 0;
  }
}
main .contact-form form div + p .open {
  color: #3F54C1;
  text-decoration: underline;
}
main .contact-form form div + p .open:hover {
  text-decoration: none;
}
main .contact-form form .btn {
  width: 100%;
  max-width: 380px;
  height: 72px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}
main .contact-form form .btn:hover {
  background: #fff;
  color: #000;
}

.modal {
  display: none;
}
.modal.js-open {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: calc(100vh - 80px);
  top: 80px;
  left: 0;
  position: fixed;
}
@media (max-width: 1006px) {
  .modal.js-open {
    top: 54px;
    height: calc(100vh - 54px);
  }
}
.modal.js-open .close {
  position: absolute;
  right: calc(50% - 420px);
  top: calc(50% - 320px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1006px) {
  .modal.js-open .close {
    top: calc(50% - 300px);
    right: 8%;
  }
}
.modal.js-open .close span {
  content: "";
  background: #f2f2f4;
  clip-path: polygon(10% 0, 0 10%, 40% 50%, 0 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0, 50% 40%);
  width: 40px;
  height: 40px;
}
@media (max-width: 1006px) {
  .modal.js-open .close span {
    width: 30px;
    height: 30px;
  }
}
.modal.js-open .content {
  width: 80%;
  max-width: 787px;
  height: 70%;
  max-height: 523px;
  background: #fff;
  overflow-y: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}
.modal.js-open .content p:first-child {
  text-align: center;
}
.modal.js-open .content a {
  color: #3F54C1;
  text-decoration: underline;
}
.modal.js-open .content a:hover {
  text-decoration: none;
}

.send main {
  text-align: center;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .send main {
    padding: 50px 10px;
  }
}
.send main h1,
.send main a {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .send main h1,
  .send main a {
    font-size: 20px;
  }
}
.send main p {
  font-size: 18px;
  font-weight: bold;
  margin: 50px 0 80px;
}
@media (max-width: 768px) {
  .send main p {
    font-size: 16px;
    margin: 25px 0 40px;
  }
}
.send main a {
  color: #3F54C1;
  font-weight: normal;
  border-bottom: 3px solid #3F54C1;
}
@media (max-width: 768px) {
  .send main a {
    border-width: 2px;
  }
}
.send main a + p {
  margin: 30px 0 0;
}
@media (max-width: 768px) {
  .send main a + p {
    margin-top: 15px;
  }
}
.send footer {
  position: fixed;
  width: 100%;
  bottom: 0;
}
@media (max-width: 768px) {
  .send footer {
    position: static;
  }
}