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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul:not([role=list]),
ol:not([role=list]) {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 1920px;
  color: #292929;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}
a:not([class]) {
  color: #0552a9;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

p {
  font-size: 15px;
  font-size: min(15px, 1.25vw);
  line-height: 1.8;
}
@media only screen and (max-width: 750px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

p + p {
  margin-top: 15px;
  margin-top: min(15px, 1.25vw);
}

mark {
  background: linear-gradient(transparent 60%, #fff457 60%);
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: min(14px, 0.7291666667vw);
  text-align: center;
  padding: 2rem 3rem;
  border-radius: 20px;
  cursor: pointer;
}
.btn.fill {
  background-color: #118fde;
  color: #fff;
  border: 1px solid #118fde;
}
.btn.outline {
  color: #118fde;
  border: 1px solid #118fde;
}
.btn.fill_black {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.btn.fill_black:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}
.btn.outline_black {
  color: #000;
  border: 1px solid #000;
}
.btn.outline_black:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}
.btn.arrow_right::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 750px) {
  .btn.arrow_right::before {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 750px) {
  .btn.arrow_left {
    text-align: center;
  }
}
.btn.arrow_left::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
@media only screen and (max-width: 750px) {
  .btn.arrow_left::before {
    width: 8px;
    height: 8px;
  }
}
.btn.icon::after {
  background: url(../img/external_link_line.svg) no-repeat center center/cover;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 960px) {
  .btn.icon::after {
    right: 12px;
  }
}
@media only screen and (max-width: 750px) {
  .btn.icon::after {
    right: 10px;
  }
}

.modal-container {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 2000;
}

.modal-body {
  position: relative;
  max-width: 1000px;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-open {
  cursor: pointer;
}
.modal-open:hover {
  opacity: 0.8;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #118fde;
  cursor: pointer;
}

.modal-content {
  background: #fff;
  border-radius: 6px;
}
.modal-content h3 {
  color: #118fde;
  font-size: 2rem;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.modal-content .modal-inner {
  padding: 30px;
}
@media only screen and (max-width: 750px) {
  .modal-content .modal-inner {
    padding: 20px;
  }
}

.floating {
  max-width: 300px;
  width: 100%;
  height: auto;
  text-align: right;
}
@media only screen and (max-width: 750px) {
  .floating {
    max-width: calc(100% - 40px);
    right: 0;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.floating .btn_topback {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .floating .btn_topback {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }
}

header {
  position: relative;
  background-color: #fff;
  z-index: 10;
}
header .inner {
  max-width: min(1200px, 100% - 40px);
  margin: auto;
  padding: 15px 0;
}
header .header_items {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media only screen and (max-width: 750px) {
  header .header_items {
    flex-direction: column;
    align-items: center;
  }
}
header .header_item.logo img {
  width: 145px;
  width: min(145px, 12.0833333333vw);
}
@media only screen and (max-width: 750px) {
  header .header_item.logo img {
    width: 38.6666666667vw;
  }
}
header .header_item.text p {
  color: #696969;
  font-size: 14px;
  font-size: min(14px, 1.1666666667vw);
  line-height: 1.4;
}
@media only screen and (max-width: 750px) {
  header .header_item.text p {
    font-size: 3.7333333333vw;
    text-align: center;
  }
}

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

.tablet {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .tablet {
    display: block !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 750px) {
  .sp {
    display: block !important;
  }
}

.video {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  .video {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
.video p {
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .video p {
    font-size: 3.7333333333vw;
  }
}

#fv {
  position: relative;
  background-color: #5ca7be;
}
#fv::before {
  content: "";
  background-color: #d9eaf0;
  position: absolute;
  top: 240px;
  top: min(240px, 20vw);
  left: 0;
  width: 100%;
  height: 134px;
  height: min(134px, 11.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #fv::before {
    top: 130px;
    top: 34.6666666667vw;
    height: 90px;
    height: 24vw;
  }
}
#fv .inner {
  position: relative;
  max-width: min(1200px, 100% - 40px);
  margin: auto;
  padding: 40px 0px 40px;
  padding: min(40px, 3.3333333333vw) min(0px, 0vw) min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #fv .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#fv .fv_img {
  position: absolute;
  bottom: 20px;
  bottom: min(20px, 1.6666666667vw);
  right: 0px;
  right: min(0px, 0vw);
  width: 558px;
  width: min(558px, 46.5vw);
}
@media screen and (max-width: 1240px) {
  #fv .fv_img {
    width: 530px;
    width: min(530px, 44.1666666667vw);
  }
}
@media only screen and (max-width: 750px) {
  #fv .fv_img {
    top: 190px;
    top: 50.6666666667vw;
    right: -20px;
    right: -5.3333333333vw;
    bottom: auto;
    width: 45.3333333333vw;
  }
}
#fv .fv_img01 {
  width: 100%;
}
#fv .fv_text_top p {
  color: #fff;
  font-size: 35px;
  font-size: min(35px, 2.9166666667vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_top p {
    font-size: 4.2666666667vw;
    line-height: 1.2;
  }
}
#fv .fv_text_top p span {
  color: #fff457;
  font-size: 55px;
  font-size: min(55px, 4.5833333333vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_top p span {
    font-size: 4.8vw;
  }
}
#fv .fv_text_middle {
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_middle {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#fv .fv_text_middle p {
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_middle p {
    font-size: 4.2666666667vw;
  }
}
#fv .fv_text_bottom {
  margin-top: 70px;
  margin-top: min(70px, 5.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_bottom {
    margin-top: 100px;
    margin-top: 26.6666666667vw;
  }
}
#fv .fv_text_bottom p {
  color: #fff;
  font-size: 26px;
  font-size: min(26px, 2.1666666667vw);
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_bottom p {
    font-size: 3.7333333333vw;
  }
}
#fv .fv_text_bottom p span {
  color: #fff457;
  font-size: 27px;
  font-size: min(27px, 2.25vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_bottom p span {
    font-size: 3.7333333333vw;
  }
}
#fv .fv_text_bottom p:nth-child(1) {
  background-color: #292929;
  display: inline-block;
  padding: 3px 10px;
  padding: min(3px, 0.25vw) min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_bottom p:nth-child(1) {
    display: block;
    padding: 3px 10px;
    padding: 0.8vw 2.6666666667vw;
  }
}
#fv .fv_text_bottom p:nth-child(2) {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #fv .fv_text_bottom p:nth-child(2) {
    font-size: 3.7333333333vw;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}

#intro .intro_text_top {
  background-color: #d9eaf0;
}
#intro .intro_text_inner {
  max-width: min(1200px, 100% - 40px);
  margin: auto;
  padding: 40px 0px;
  padding: min(40px, 3.3333333333vw) min(0px, 0vw);
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #intro .intro_text_inner {
    padding: 20px 0px;
    padding: 5.3333333333vw 0vw;
  }
}
#intro .intro_text_inner h2 {
  display: inline-block;
  color: #5ca7be;
  font-size: 35px;
  font-size: min(35px, 2.9166666667vw);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 750px) {
  #intro .intro_text_inner h2 {
    font-size: 4.8vw;
    line-height: 1.6;
  }
}
#intro .intro_text_inner p {
  color: #5ca7be;
  font-size: 24px;
  font-size: min(24px, 2vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #intro .intro_text_inner p {
    font-size: 3.7333333333vw;
    line-height: 1.6;
  }
}
#intro .inner {
  position: relative;
  max-width: min(1200px, 100% - 40px);
  margin: auto;
  padding: 60px 0px 180px;
  padding: min(60px, 5vw) min(0px, 0vw) min(180px, 15vw);
}
@media only screen and (max-width: 750px) {
  #intro .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#intro h3 {
  position: relative;
  width: 750px;
  width: min(750px, 62.5vw);
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-bottom: min(20px, 1.6666666667vw);
  padding-bottom: 20px;
  padding-bottom: min(20px, 1.6666666667vw);
  border-bottom: 2px solid #292929;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  #intro h3 {
    width: 100%;
    font-size: 5.8666666667vw;
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
    padding-bottom: 10px;
    padding-bottom: 2.6666666667vw;
  }
}
#intro h3::before {
  content: "";
  background: #5ca7be;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 17.3205080757px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: -1;
}
@media only screen and (max-width: 750px) {
  #intro h3::before {
    bottom: -10px;
    width: 10px;
    height: 8.6602540378px;
  }
}
#intro h3 span {
  color: #5ca7be;
}
#intro ul {
  width: 760px;
  width: min(760px, 63.3333333333vw);
  margin: 0 auto;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #intro ul {
    width: 100%;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#intro li {
  background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 10px no-repeat;
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  padding-left: 30px;
  padding-left: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #intro li {
    background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 5px no-repeat;
    background-size: 15px;
    font-size: 3.7333333333vw;
    padding-left: 25px;
    padding-left: 6.6666666667vw;
  }
}
#intro li:not(:last-of-type) {
  margin-bottom: 20px;
  margin-bottom: min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #intro li:not(:last-of-type) {
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
  }
}
#intro .img01 {
  position: absolute;
  right: 100px;
  right: min(100px, 8.3333333333vw);
  bottom: 20px;
  bottom: min(20px, 1.6666666667vw);
  width: 320px;
  width: min(320px, 26.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #intro .img01 {
    position: static;
    display: block;
    margin: auto;
    width: 53.3333333333vw;
    margin-top: 30px;
    margin-top: 8vw;
  }
}

#solution {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #solution {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#solution .solution_top {
  background-color: #5ca7be;
  padding: 60px 0px 40px;
  padding: min(60px, 5vw) min(0px, 0vw) min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #solution .solution_top {
    padding: 40px 20px 20px;
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
#solution .solution_top .img {
  display: grid;
  place-content: center;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #solution .solution_top .img {
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#solution .solution_top img {
  width: 500px;
  width: min(500px, 41.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #solution .solution_top img {
    width: 80vw;
  }
}
#solution h2 {
  position: relative;
  background-color: white;
  width: 765px;
  width: min(765px, 63.75vw);
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0px;
  padding: min(20px, 1.6666666667vw) min(0px, 0vw);
  border-radius: 10px;
}
@media only screen and (max-width: 750px) {
  #solution h2 {
    width: 100%;
    font-size: 4.8vw;
    padding: 10px 0px;
    padding: 2.6666666667vw 0vw;
  }
}
#solution h2::before {
  content: "";
  background: white;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 17.3205080757px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 750px) {
  #solution h2::before {
    bottom: -9px;
    width: 10px;
    height: 8.6602540378px;
  }
}
#solution h2 span {
  color: #5ca7be;
}
#solution .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #solution .inner {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#solution .solution_items {
  border: 1px solid #292929;
}
#solution .solution_items h3 {
  background-color: #5ca7be;
  color: white;
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  padding: 0px 20px;
  padding: min(0px, 0vw) min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #solution .solution_items h3 {
    font-size: 5.3333333333vw;
    text-align: center;
    padding: 10px 0px;
    padding: 2.6666666667vw 0vw;
  }
}
#solution .solution_item {
  padding: 20px 40px;
  padding: min(20px, 1.6666666667vw) min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #solution .solution_item {
    padding: 20px;
    padding: 5.3333333333vw;
  }
}
#solution li {
  background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 10px no-repeat;
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  padding-left: 30px;
  padding-left: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #solution li {
    background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 5px no-repeat;
    background-size: 15px;
    font-size: 3.7333333333vw;
    padding-left: 25px;
    padding-left: 6.6666666667vw;
  }
}
#solution li:not(:last-of-type) {
  margin-bottom: 20px;
  margin-bottom: min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #solution li:not(:last-of-type) {
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
  }
}
#solution .img02 {
  width: 280px;
  width: min(280px, 23.3333333333vw);
  margin: 0 auto;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
}

#selling_point {
  background-color: #eff7fa;
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #selling_point {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#selling_point .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#selling_point .title {
  background-color: #292929;
  display: inline-block;
  color: white;
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: min(30px, 2.5vw);
  padding: 15px 20px;
  padding: min(15px, 1.25vw) min(20px, 1.6666666667vw);
  transform: rotate(-8deg);
}
@media only screen and (max-width: 750px) {
  #selling_point .title {
    font-size: 4.8vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
    padding: 8px 10px;
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
#selling_point .selling_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  gap: min(35px, 2.9166666667vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .selling_items {
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#selling_point .selling_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  gap: min(15px, 1.25vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .selling_item {
    gap: 10px;
    gap: 2.6666666667vw;
  }
}
#selling_point .selling_item p {
  font-size: 40px;
  font-size: min(40px, 3.3333333333vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #selling_point .selling_item p {
    font-size: 4.2666666667vw;
  }
}
#selling_point .column {
  flex-direction: row;
}
@media only screen and (max-width: 750px) {
  #selling_point .column {
    flex-direction: column;
  }
}
#selling_point .first p {
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #selling_point .first p {
    font-size: 3.7333333333vw;
  }
}
#selling_point .first p mark {
  font-size: 40px;
  font-size: min(40px, 3.3333333333vw);
  margin: 0px 10px;
  margin: min(0px, 0vw) min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .first p mark {
    font-size: 4.8vw;
    margin: 0px 5px;
    margin: 0vw 1.3333333333vw;
  }
}
#selling_point .first img {
  width: 183px;
  width: min(183px, 15.25vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .first img {
    width: 32vw;
  }
}
#selling_point .third img {
  width: 270px;
  width: min(270px, 22.5vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .third img {
    width: 26.6666666667vw;
  }
}
#selling_point .system_items {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
  padding: 30px 40px;
  padding: min(30px, 2.5vw) min(40px, 3.3333333333vw);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (max-width: 750px) {
  #selling_point .system_items {
    margin-top: 20px;
    margin-top: 5.3333333333vw;
    padding: 10px;
    padding: 2.6666666667vw;
    border-radius: 10px;
  }
}
#selling_point .system_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px;
  gap: min(10px, 0.8333333333vw);
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #selling_point .system_item {
    gap: 10px;
    gap: 2.6666666667vw;
  }
}
#selling_point .system_item h3 {
  background-color: #292929;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  padding: 10px 10px;
  padding: min(10px, 0.8333333333vw) min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #selling_point .system_item h3 {
    font-size: 2.6666666667vw;
    line-height: 1.3;
    padding: 3px 5px;
    padding: 0.8vw 1.3333333333vw;
  }
}
#selling_point .system_item p {
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #selling_point .system_item p {
    font-size: 2.6666666667vw;
    line-height: 1.3;
  }
}
#selling_point .system_item.systage img {
  width: 145px;
  width: min(145px, 12.0833333333vw);
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #selling_point .system_item.systage img {
    width: 21.3333333333vw;
  }
}
#selling_point .system_item.img img {
  width: 248px;
  width: min(248px, 20.6666666667vw);
  margin: auto;
}
#selling_point .system_item.fileforce img {
  width: 145px;
  width: min(145px, 12.0833333333vw);
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #selling_point .system_item.fileforce img {
    width: 24vw;
  }
}

#about {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #about {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#about .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
}
#about .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  gap: min(15px, 1.25vw);
}
#about h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #about h2 {
    font-size: 5.8666666667vw;
  }
}
#about .img01 {
  width: 278px;
  width: min(278px, 23.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #about .img01 {
    width: 53.3333333333vw;
  }
}
#about .lead_text {
  text-align: center;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .lead_text {
    text-align: left;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#about .about_list {
  display: grid;
  place-content: center;
  margin-top: 40px;
  margin-top: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .about_list {
    text-align: left;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#about .about_list ul li {
  background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 5px no-repeat;
  font-size: 15px;
  font-size: min(15px, 1.25vw);
  padding-left: 30px;
  padding-left: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #about .about_list ul li {
    background: url(../img/done_FILL0_wght400_GRAD0_opsz48.svg) left 0px top 5px no-repeat;
    background-size: 15px;
    font-size: 3.7333333333vw;
    padding-left: 25px;
    padding-left: 6.6666666667vw;
  }
}
#about .about_list ul li:not(:last-of-type) {
  margin-bottom: 10px;
  margin-bottom: min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .about_list ul li:not(:last-of-type) {
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
  }
}
#about .about_items {
  background-color: #cae4f0;
  margin-top: 60px;
  margin-top: min(60px, 5vw);
  padding: 30px;
  padding: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #about .about_items {
    gap: 30px;
    gap: 8vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
    padding: 20px 20px;
    padding: 5.3333333333vw 5.3333333333vw;
  }
}
#about h3 {
  color: #5ca7be;
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #about h3 {
    font-size: 4.8vw;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#about h4 {
  color: #5ca7be;
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-top: 30px;
  margin-top: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #about h4 {
    font-size: 4.8vw;
    text-align: center;
    line-height: 1.4;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#about .about_item {
  background-color: white;
  padding: 30px 60px;
  padding: min(30px, 2.5vw) min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item {
    padding: 30px 10px;
    padding: 8vw 2.6666666667vw;
  }
}
#about .about_item .body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  #about .about_item .body {
    flex-direction: column;
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#about .about_item .text {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
  gap: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item .text {
    grid-template-columns: 1fr;
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#about .about_item .system_flow_items {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
}
@media only screen and (max-width: 750px) {
  #about .about_item .system_flow_items {
    gap: 30px;
    gap: 8vw;
  }
}
#about .about_item .system_flow_item {
  position: relative;
  border-radius: 40px;
}
#about .about_item .system_flow_item.first {
  background-color: #4aa5dc;
}
#about .about_item .system_flow_item.second {
  background-color: #f89d1c;
}
#about .about_item .system_flow_item.third {
  background-color: #eb3d44;
}
#about .about_item .system_flow_item:not(:last-of-type)::after {
  content: "";
  background: url(../img/arrow_cool_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg) center no-repeat;
  position: absolute;
  bottom: -23px;
  bottom: min(-23px, -1.9166666667vw);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  width: min(20px, 1.6666666667vw);
  height: 30px;
  height: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item .system_flow_item:not(:last-of-type)::after {
    bottom: -25px;
    bottom: -6.6666666667vw;
    width: 15px;
    width: 4vw;
    height: 20px;
    height: 5.3333333333vw;
  }
}
#about .about_item .system_flow_item p {
  color: white;
  font-size: 14px;
  font-size: min(14px, 1.1666666667vw);
  text-align: center;
  padding: 0px 10px;
  padding: min(0px, 0vw) min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item .system_flow_item p {
    font-size: 3.7333333333vw;
    padding: 8px 10px;
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
#about .about_item .img {
  display: grid;
  place-content: center;
  width: 250px;
  width: min(250px, 20.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item .img {
    width: 100%;
  }
}
#about .about_item .img img {
  width: 150px;
  width: min(150px, 12.5vw);
}
@media only screen and (max-width: 750px) {
  #about .about_item .img img {
    width: 34.6666666667vw;
  }
}
#about .about_item ul {
  list-style: disc;
}
@media only screen and (max-width: 750px) {
  #about .about_item ul {
    padding-left: 20px;
    padding-left: 5.3333333333vw;
  }
}
#about .about_item li {
  font-size: 15px;
  font-size: min(15px, 1.25vw);
  margin-left: 10px;
}
@media only screen and (max-width: 750px) {
  #about .about_item li {
    font-size: 3.7333333333vw;
  }
}
#about .about_item li::marker {
  color: #5ca7be;
}
#about .ransomware {
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #about .ransomware {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#about .ransomware h2 {
  background-color: #cae4f0;
  color: #5ca7be;
  font-size: 30px;
  font-size: min(30px, 2.5vw);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: min(30px, 2.5vw);
  padding: 15px 20px;
  padding: min(15px, 1.25vw) min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #about .ransomware h2 {
    font-size: 4.8vw;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#about .ransomware .ransomware_img01 {
  width: 600px;
  width: min(600px, 50vw);
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  #about .ransomware .ransomware_img01 {
    width: 100%;
  }
}
#about .ransomware p {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  text-align: center;
  font-weight: bold;
  margin: 40px 0px;
  margin: min(40px, 3.3333333333vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #about .ransomware p {
    font-size: 3.7333333333vw;
    text-align: left;
    margin: 20px 0px;
    margin: 5.3333333333vw 0vw;
  }
}
#about .ransomware .ransomware_img02 {
  width: 800px;
  width: min(800px, 66.6666666667vw);
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  #about .ransomware .ransomware_img02 {
    width: 100%;
  }
}

#choose {
  background-color: #eff7fa;
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #choose {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#choose .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #choose .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#choose .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  gap: min(20px, 1.6666666667vw);
}
#choose h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #choose h2 {
    font-size: 5.8666666667vw;
  }
}
#choose .img01 {
  width: 215px;
  width: min(215px, 17.9166666667vw);
}
@media only screen and (max-width: 750px) {
  #choose .img01 {
    width: 40vw;
  }
}
#choose .choose_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  gap: min(60px, 5vw);
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #choose .choose_items {
    gap: 110px;
    gap: 29.3333333333vw;
    margin-top: 110px;
    margin-top: 29.3333333333vw;
  }
}
#choose .choose_item {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#choose .choose_item .circle {
  position: absolute;
  top: -30px;
  top: min(-30px, -2.5vw);
  left: -30px;
  left: min(-30px, -2.5vw);
  background-color: #292929;
  display: grid;
  place-content: center;
  width: 70px;
  width: min(70px, 5.8333333333vw);
  height: 70px;
  height: min(70px, 5.8333333333vw);
  color: white;
  text-align: center;
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  font-weight: bold;
  line-height: 1;
  border-radius: 50%;
}
@media only screen and (max-width: 750px) {
  #choose .choose_item .circle {
    position: absolute;
    top: -80px;
    top: -21.3333333333vw;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    width: 18.6666666667vw;
    height: 70px;
    height: 18.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
#choose .choose_item .circle span {
  font-size: 30px;
  font-size: min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #choose .choose_item .circle span {
    font-size: 8vw;
  }
}
#choose .choose_item h3 {
  background-color: #5ca7be;
  color: white;
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  font-weight: bold;
  line-height: 1;
  padding: 10px 50px;
  padding: min(10px, 0.8333333333vw) min(50px, 4.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #choose .choose_item h3 {
    font-size: 4.8vw;
    text-align: center;
    line-height: 1.4;
    padding: 10px 20px;
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
#choose .choose_item .body {
  background-color: white;
  padding: 20px 50px;
  padding: min(20px, 1.6666666667vw) min(50px, 4.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #choose .choose_item .body {
    padding: 15px 20px;
    padding: 4vw 5.3333333333vw;
  }
}

#comparison {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#comparison .inner {
  max-width: min(1200px, 100% - 40px);
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #comparison .inner {
    max-width: 100%;
  }
}
#comparison .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  gap: min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison .title.pattern02 {
    flex-direction: column;
  }
}
#comparison .title.pattern02 h2 {
  font-size: 35px;
  font-size: min(35px, 2.9166666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison .title.pattern02 h2 {
    font-size: 4.8vw;
  }
}
#comparison .comparison_box + .title {
  margin-top: 120px;
  margin-top: min(120px, 10vw);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_box + .title {
    margin-top: 60px;
    margin-top: 16vw;
  }
}
#comparison h2 {
  font-size: 40px;
  font-size: min(40px, 3.3333333333vw);
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #comparison h2 {
    font-size: 5.8666666667vw;
  }
}
#comparison .img01 {
  width: 278px;
  width: min(278px, 23.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison .img01 {
    width: 40vw;
  }
}
#comparison .comparison_box {
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_box {
    margin-left: 20px;
    margin-left: 5.3333333333vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
    height: 400px;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_box.pattern02 {
    height: 760px;
  }
}
#comparison .comparison_items {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: repeat(7, 1fr);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_items {
    width: 1000px;
    padding: 0px 20px 0px 0px;
    padding: 0vw 5.3333333333vw 0vw 0vw;
  }
}
#comparison .comparison_items.pattern02 {
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: repeat(8, 1fr);
}
#comparison .comparison_item {
  position: relative;
  display: grid;
  place-content: center;
  border: 1px solid #292929;
  margin-bottom: -1px;
  margin-right: -1px;
  padding: 15px 10px;
  padding: min(15px, 1.25vw) min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_item {
    padding: 10px 10px;
    padding: 2.6666666667vw 2.6666666667vw;
  }
}
#comparison .comparison_item.item_title {
  font-weight: bold;
}
#comparison .comparison_item.highlight {
  background-color: #eff7fa;
  color: #5ca7be;
  font-weight: bold;
}
#comparison .comparison_item .img02 {
  width: 140px;
  width: min(140px, 11.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_item .img02 {
    width: 40vw;
  }
}
#comparison .comparison_item p {
  font-size: 14px;
  font-size: min(14px, 1.1666666667vw);
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_item p {
    font-size: 4.2666666667vw;
  }
}
#comparison .comparison_item h3 {
  background-color: #5ca7be;
  color: white;
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  font-weight: bold;
  line-height: 1;
  padding: 10px 50px;
  padding: min(10px, 0.8333333333vw) min(50px, 4.1666666667vw);
}
@media only screen and (max-width: 750px) {
  #comparison .comparison_item h3 {
    font-size: 4.2666666667vw;
    text-align: center;
    line-height: 1.4;
    padding: 10px 20px;
    padding: 2.6666666667vw 5.3333333333vw;
  }
}

#voice {
  background-color: #eff7fa;
}
#voice .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #voice .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#voice h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #voice h2 {
    font-size: 5.8666666667vw;
  }
}
#voice .voice_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  gap: min(60px, 5vw);
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #voice .voice_items {
    gap: 40px;
    gap: 10.6666666667vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#voice .voice_item {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 40px;
  gap: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #voice .voice_item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#voice .voice_item.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 750px) {
  #voice .voice_item.reverse {
    flex-direction: column-reverse;
  }
}
#voice .voice_item.reverse .fukidashi::before {
  left: auto;
  right: -15px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media only screen and (max-width: 750px) {
  #voice .voice_item.reverse .fukidashi::before {
    top: auto;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#voice .img {
  width: 200px;
  width: min(200px, 16.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #voice .img {
    width: 150px;
    width: 40vw;
  }
}
#voice .fukidashi {
  position: relative;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  flex: 1;
}
#voice .fukidashi::before {
  content: "";
  background-color: white;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (max-width: 750px) {
  #voice .fukidashi::before {
    top: auto;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
#voice .fukidashi .body {
  padding: 30px 30px;
  padding: min(30px, 2.5vw) min(30px, 2.5vw);
}
@media only screen and (max-width: 750px) {
  #voice .fukidashi .body {
    padding: 20px;
    padding: 5.3333333333vw;
  }
}
#voice .fukidashi .body p {
  font-size: 16px;
  font-size: min(16px, 1.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #voice .fukidashi .body p {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
#voice .fukidashi .name {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 750px) {
  #voice .fukidashi .name {
    justify-content: center;
  }
}
#voice .fukidashi .name p {
  background-color: #5ca7be;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  font-weight: bold;
  line-height: 1;
  padding: 10px 10px;
  padding: min(10px, 0.8333333333vw) min(10px, 0.8333333333vw);
  border-radius: 0 0 10px 0;
}
@media only screen and (max-width: 750px) {
  #voice .fukidashi .name p {
    display: block;
    width: 100%;
    font-size: 3.2vw;
    text-align: center;
    padding: 10px 5px;
    padding: 2.6666666667vw 1.3333333333vw;
  }
}

#flow {
  background-color: #5ca7be;
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #flow {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#flow .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #flow .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#flow h2 {
  color: white;
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #flow h2 {
    font-size: 5.8666666667vw;
  }
}
#flow .voice_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: min(20px, 1.6666666667vw);
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #flow .voice_items {
    gap: 20px;
    gap: 5.3333333333vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#flow .voice_item {
  display: grid;
  grid-template-columns: auto 1fr;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (max-width: 750px) {
  #flow .voice_item {
    grid-template-columns: 1fr;
  }
}
#flow .img {
  width: 225px;
  width: min(225px, 18.75vw);
}
@media only screen and (max-width: 750px) {
  #flow .img {
    background-color: #eff7fa;
    width: 100%;
    display: grid;
    place-content: center;
  }
}
@media only screen and (max-width: 750px) {
  #flow .img img {
    width: 140px;
    width: 37.3333333333vw;
  }
}
#flow .text_box {
  background-color: white;
}
#flow .text_box .body {
  padding: 10px 20px 20px;
  padding: min(10px, 0.8333333333vw) min(20px, 1.6666666667vw) min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #flow .text_box .body {
    padding: 10px 20px 20px;
    padding: 2.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
#flow .text_box .body h3 {
  color: #5ca7be;
  font-size: 22px;
  font-size: min(22px, 1.8333333333vw);
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  #flow .text_box .body h3 {
    font-size: 4.8vw;
  }
}
#flow .text_box .body p {
  font-size: 16px;
  font-size: min(16px, 1.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #flow .text_box .body p {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}
#flow .text_box .name p {
  background-color: #292929;
  display: inline-block;
  color: white;
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  font-weight: bold;
  line-height: 1;
  padding: 10px 20px;
  padding: min(10px, 0.8333333333vw) min(20px, 1.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #flow .text_box .name p {
    font-size: 3.7333333333vw;
    padding: 5px 10px;
    padding: 1.3333333333vw 2.6666666667vw;
  }
}

#faq {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #faq {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#faq .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #faq .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#faq h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #faq h2 {
    font-size: 5.8666666667vw;
  }
}
#faq .faq_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  gap: min(40px, 3.3333333333vw);
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #faq .faq_items {
    gap: 40px;
    gap: 10.6666666667vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#faq .faq_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  gap: min(10px, 0.8333333333vw);
}
@media only screen and (max-width: 750px) {
  #faq .faq_item {
    grid-template-columns: 1fr;
    gap: 10px;
    gap: 2.6666666667vw;
  }
}
#faq .icon {
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  #faq .icon {
    font-size: 5.3333333333vw;
  }
}
#faq .question {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  gap: min(10px, 0.8333333333vw);
  padding-bottom: 10px;
  padding-bottom: min(10px, 0.8333333333vw);
  border-bottom: 1px solid #292929;
}
@media only screen and (max-width: 750px) {
  #faq .question {
    align-items: flex-start;
    gap: 10px;
    gap: 2.6666666667vw;
    padding-bottom: 10px;
    padding-bottom: 2.6666666667vw;
  }
}
#faq .question .icon {
  color: #1284bb;
}
#faq .question h3 {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  #faq .question h3 {
    font-size: 4.2666666667vw;
    margin-top: 5px;
    margin-top: 1.3333333333vw;
  }
}
#faq .answer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
#faq .answer .icon {
  color: #bb121f;
}
#faq .answer p {
  font-size: 16px;
  font-size: min(16px, 1.3333333333vw);
  margin-top: 0;
}
@media only screen and (max-width: 750px) {
  #faq .answer p {
    font-size: 3.7333333333vw;
  }
}

#area {
  background-color: #eff7fa;
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #area {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#area .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  #area .inner {
    padding: 40px 0px;
    padding: 10.6666666667vw 0vw;
  }
}
#area h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #area h2 {
    font-size: 5.8666666667vw;
  }
}
#area p {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #area p {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
#area .area_items {
  background-color: white;
  padding: 40px;
  padding: min(40px, 3.3333333333vw);
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #area .area_items {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}

#company {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #company {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#company .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
}
#company h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #company h2 {
    font-size: 5.8666666667vw;
  }
}
#company h3 {
  font-size: 22px;
  font-size: min(22px, 1.8333333333vw);
  font-weight: bold;
  padding-left: 10px;
  padding-left: min(10px, 0.8333333333vw);
  border-left: 5px solid #5ca7be;
}
@media only screen and (max-width: 750px) {
  #company h3 {
    font-size: 4.8vw;
    padding-left: 10px;
    padding-left: 2.6666666667vw;
  }
}
#company p {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  margin-top: 20px;
  margin-top: min(20px, 1.6666666667vw);
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  #company p {
    font-size: 3.7333333333vw;
  }
}
#company img {
  width: 250px;
  width: min(250px, 20.8333333333vw);
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  #company img {
    width: 40vw;
  }
}
#company .company_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #company .company_items {
    grid-template-columns: 1fr;
    gap: 40px;
    gap: 10.6666666667vw;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#company .company_item.img {
  display: flex;
  align-items: center;
}
#company .company_item.text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  gap: min(40px, 3.3333333333vw);
}
@media only screen and (max-width: 750px) {
  #company .company_item.text {
    gap: 40px;
    gap: 10.6666666667vw;
  }
}

#license {
  background-color: #ededed;
  display: grid;
  place-content: center;
  padding: 60px 0px;
  padding: min(60px, 5vw) min(0px, 0vw);
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #license {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#license img {
  width: 350px;
  width: min(350px, 29.1666666667vw);
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  #license img {
    width: 53.3333333333vw;
  }
}
#license p {
  font-size: 25px;
  font-size: min(25px, 2.0833333333vw);
  text-align: center;
  margin-top: 20px;
  margin-top: min(20px, 1.6666666667vw);
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  #license p {
    font-size: 3.7333333333vw;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
  }
}

#contact {
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #contact {
    margin-bottom: 40px;
    margin-bottom: 10.6666666667vw;
  }
}
#contact .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #contact .inner {
    max-width: 100%;
  }
}
#contact h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #contact h2 {
    font-size: 5.8666666667vw;
  }
}
#contact .form_area {
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #contact .form_area {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}

#thanks {
  margin-top: 80px;
  margin-top: min(80px, 6.6666666667vw);
}
@media only screen and (max-width: 750px) {
  #thanks {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#thanks .inner {
  max-width: min(1000px, 100% - 40px);
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #thanks .inner {
    max-width: 100%;
  }
}
#thanks h2 {
  font-size: 45px;
  font-size: min(45px, 3.75vw);
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  #thanks h2 {
    font-size: 5.8666666667vw;
  }
}
#thanks .form_area {
  margin-top: 60px;
  margin-top: min(60px, 5vw);
}
@media only screen and (max-width: 750px) {
  #thanks .form_area {
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
#thanks p {
  font-size: 20px;
  font-size: min(20px, 1.6666666667vw);
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #thanks p {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}

footer {
  background-color: #5ca7be;
  color: white;
  padding: 10px 0px;
  padding: min(10px, 0.8333333333vw) min(0px, 0vw);
}
@media only screen and (max-width: 750px) {
  footer {
    padding: 10px 0px;
    padding: 2.6666666667vw 0vw;
  }
}