@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input, select):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5189333333rem, 1.5173333333vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
body.menu-open {
  overflow: hidden;
}

.en {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

a:hover {
  color: #0092E6;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.4s ease-in;
  transition: clip-path 0.4s ease-in;
  transition: clip-path 0.4s ease-in, -webkit-clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.3s;
}

.inview.clip.delay02 {
  transition-delay: 0.6s;
}

.inview.clip.delay03 {
  transition-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }
  ._pcShowImportant {
    display: none !important;
  }
  ._spShowImportant {
    display: block !important;
  }
}
.slick-dots {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BFBFBF;
}

.slick-dots li.slick-active button:before {
  background-color: #133BA3;
}

.slash-title {
  display: inline-block;
  padding: 10px 50px 10px 20px;
  font-size: clamp(1.5189333333rem, 1.5173333333vw, 1.6rem);
  font-size: clamp(1.5189333333rem, 1.5173333333vw, 1.6rem);
  font-weight: bold;
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 33px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 33px) 100%, 0 100%);
  background: linear-gradient(90deg, #133BA3 0%, #3865DB 100%);
}
@media screen and (max-width: 767px) {
  .slash-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .slash-title {
    font-size: 1.6rem;
  }
}

a .zoom {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 6px;
}
a .zoom img {
  transform-origin: center;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

a.zoom:hover img,
a:hover .zoom img {
  transform: scale(1.05);
  opacity: 1;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.inner {
  max-width: calc(1160px + 6%);
  margin: auto;
  padding: 0 3%;
}

.btn {
  position: relative;
  background-color: #0092E6;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: clamp(1.3527111111rem, 1.3517777778vw, 1.4rem);
  font-weight: bold;
  padding: 15px 50px;
  line-height: 1;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.1rem;
    padding: 12px 30px 15px 15px;
  }
  .btn::after {
    margin-top: -3px;
    right: 15px;
  }
}
.btn:hover {
  background-color: rgb(0, 162, 255);
  color: #fff;
}

#header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
}
@media screen and (max-width: 767px) {
  #header .inner #head-logo {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  #header .inner #head-require {
    width: 150px;
  }
}

main {
  padding-top: 100px;
}
main #visual {
  position: relative;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 767px) {
  main #visual {
    height: auto;
  }
}
main #visual::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  border-radius: 0 0 0 30px;
  background-color: #F1F8FD;
}
@media screen and (max-width: 767px) {
  main #visual::after {
    content: none;
  }
}
main #visual .inner {
  display: flex;
  align-items: center;
  max-width: none;
  height: 100%;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  main #visual .inner {
    flex-direction: column-reverse;
  }
}
main #visual .inner .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text {
    width: 100%;
    padding-top: 50px;
  }
}
main #visual .inner .text .copy {
  max-width: 410px;
  text-align: center;
  margin: 0 auto 15px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .copy {
    width: 90%;
  }
}
main #visual .inner .text .copy p {
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 20px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
main #visual .inner .text .copy p b {
  color: #0092E6;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: bold;
  background-color: #F1F8FD;
  margin-right: 5px;
}
main #visual .inner .text h1 {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
}
main #visual .inner .text h1 img {
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text h1 {
    padding: 0 5%;
    margin-bottom: 20px;
  }
}
main #visual .inner .text .diagnosis h2 {
  color: #0092E6;
  text-align: center;
  line-height: 1;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .diagnosis h2 {
    margin-top: 25px;
  }
}
main #visual .inner .text .diagnosis h2 .wide {
  display: inline-block;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .diagnosis h2 .wide {
    font-size: 2rem;
  }
}
main #visual .inner .text .diagnosis h2 .wide::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #0092E6;
  left: -15px;
  bottom: 5px;
  transform: rotate(-40deg);
}
main #visual .inner .text .diagnosis h2 .wide::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #0092E6;
  right: -15px;
  bottom: 5px;
  transform: rotate(40deg);
}
main #visual .inner .text .diagnosis h2 .wide .big {
  font-size: clamp(3rem, 4vw, 4rem);
}
main #visual .inner .text .diagnosis ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 546px;
  margin: auto;
}
main #visual .inner .text .diagnosis ul li {
  width: 30%;
  display: inline-block;
  border: 3px solid #0092E6;
  border-radius: 60px;
  text-align: center;
  line-height: 1;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
  font-weight: 600;
  padding: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .diagnosis ul li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .diagnosis ul li {
    width: 31%;
    font-size: 1.6rem;
  }
}
main #visual .inner .text .diagnosis ul li:nth-child(1) {
  border-color: #F0285E;
  color: #F0285E;
  background-color: #FFF4F7;
}
main #visual .inner .text .diagnosis ul li:nth-child(2) {
  border-color: #BA49ED;
  color: #BA49ED;
  background-color: #FCF5FE;
}
main #visual .inner .text .diagnosis ul li:nth-child(3) {
  border-color: #6CBC00;
  color: #6CBC00;
  background-color: #F7FCF2;
}
main #visual .inner .text .diagnosis ul li:nth-child(4) {
  border-color: #FF7F00;
  color: #FF7F00;
  background-color: #FFF8F2;
}
@media screen and (max-width: 767px) {
  main #visual .inner .text .diagnosis ul li:nth-child(4) {
    font-size: 1.5rem;
  }
}
main #visual .inner .text .diagnosis ul li:nth-child(5) {
  border-color: #009AA0;
  color: #009AA0;
  background-color: #F2FAFA;
}
main #visual .inner .text .diagnosis ul li:nth-child(6) {
  border-color: #D6AD00;
  color: #D6AD00;
  background-color: #FEFCF2;
}
main #visual .inner .image {
  width: 50%;
  padding: 50px 5%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main #visual .inner .image {
    width: 80%;
    padding: 0;
    text-align: center;
    margin: auto;
  }
}
main #visual .inner .image img {
  max-width: 623px;
  width: 100%;
}
main .content-block .en-copy {
  text-align: center;
  font-size: clamp(7rem, 7vw, 10rem);
  color: #F1F8FD;
  line-height: 0.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .content-block .en-copy {
    font-size: clamp(4rem, 14vw, 6rem);
  }
}
main .content-block .bg {
  background-color: #0092E6;
  color: #fff;
}
main .content-block .cc {
  color: #0092E6;
}
main #first {
  padding: 180px 0 100px;
}
@media screen and (max-width: 767px) {
  main #first {
    padding-top: 80px;
  }
}
main #first .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main #first .inner {
    display: block;
  }
}
main #first .inner .text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main #first .inner .text {
    width: 100%;
    margin-bottom: 25px;
  }
}
main #first .inner .text h2 {
  font-size: clamp(3.2016rem, 3.174vw, 4.6rem);
  font-size: clamp(2.8rem, 3vw, 4.6rem);
  font-weight: 600;
  line-height: 1.7;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  main #first .inner .text h2 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #first .inner .text h2 {
    font-size: clamp(2.4rem, 7vw, 2.8rem);
  }
}
main #first .inner .text h2 .bg {
  display: inline-block;
  line-height: 1;
  padding: 2px 8px 6px;
}
main #first .inner .image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main #first .inner .image {
    width: 100%;
  }
}
main #first .inner .image img {
  max-width: 544px;
  width: 100%;
}
main #flow {
  position: relative;
  padding: 100px 0;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  main #flow {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}
main #flow::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 1.5%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #F6F6F6;
}
main #flow .inner h2 {
  text-align: center;
  margin-bottom: 50px;
}
main #flow .inner h2 span {
  display: inline-block;
  border-bottom: 2px solid #000;
  font-size: clamp(2.3744rem, 2.366vw, 2.8rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  main #flow .inner h2 span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .inner h2 span {
    font-size: clamp(2rem, 6vw, 2.2rem);
  }
}
main #flow .inner .namely {
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  main #flow .inner .namely {
    margin: 15px 0;
    transform: translateX(26%);
  }
}
main #flow .inner .box {
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 5%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main #flow .inner .box {
    flex-direction: column;
  }
}
main #flow .inner .box .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  main #flow .inner .box .image {
    width: 100%;
    margin-top: 20px;
  }
}
main #flow .inner .box .text {
  width: 50%;
  text-align: center;
  line-height: 2;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
}
@media screen and (max-width: 767px) {
  main #flow .inner .box .text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .inner .box .text {
    width: 100%;
    font-size: 1.6rem;
  }
}
main #flow .inner .box .text .big {
  margin-top: 3rem;
}
main #flow .inner .box .text .big b {
  display: inline-block;
  padding: 2px 8px 6px;
  color: #fff;
  font-size: clamp(2.8096rem, 2.794vw, 3.6rem);
  font-size: clamp(2.2rem, 2.5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main #flow .inner .box .text .big b {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .inner .box .text .big b {
    font-size: 2.2rem;
  }
}
main #flow .inner #start {
  text-align: center;
}
main #flow .inner #start .wide {
  margin-bottom: 25px;
}
main #flow .inner #start .wide span {
  display: inline-block;
  position: relative;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  main #flow .inner #start .wide span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .inner #start .wide span {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
}
main #flow .inner #start .wide span::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #0092E6;
  left: -15px;
  bottom: 5px;
  transform: rotate(-40deg);
}
@media screen and (max-width: 767px) {
  main #flow .inner #start .wide span::before {
    height: 16px;
  }
}
main #flow .inner #start .wide span::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #0092E6;
  right: -15px;
  bottom: 5px;
  transform: rotate(40deg);
}
@media screen and (max-width: 767px) {
  main #flow .inner #start .wide span::after {
    height: 16px;
  }
}
main #flow .inner #start .btn {
  display: inline-block;
  font-size: clamp(2.1162666667rem, 2.1106666667vw, 2.4rem);
  padding: 25px;
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  main #flow .inner #start .btn {
    font-size: 2.4rem;
  }
}
main #problem h2 {
  text-align: center;
  font-size: clamp(3.2016rem, 3.174vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 90px;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  main #problem h2 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #problem h2 {
    font-size: clamp(2.4rem, 7vw, 2.8rem);
    margin-top: -1rem;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
main #problem h2 b {
  display: inline-block;
  line-height: 1;
  padding: 2px 8px 6px;
  margin: 0 8px;
}
main #problem ul {
  position: relative;
  padding-bottom: 180px;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  main #problem ul {
    padding-bottom: 0px;
  }
}
main #problem ul li {
  position: relative;
  border: 2px solid #E8E8E8;
  background-color: #fff;
  width: 33.33%;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  height: 198px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main #problem ul li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main #problem ul li {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.6rem;
    height: auto;
    width: 90%;
    padding: 20px 5%;
  }
}
main #problem ul li::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/image/kado.png) no-repeat center center;
  width: 26px;
  height: 26px;
  left: 50%;
  bottom: -25px;
}
main #problem ul li:nth-child(1) b {
  color: #7ED607;
}
main #problem ul li:nth-child(2) {
  position: absolute;
  left: 45%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  main #problem ul li:nth-child(2) {
    position: relative;
    left: 10%;
  }
}
main #problem ul li:nth-child(2) b {
  color: #FF7F00;
}
main #problem ul li:nth-child(3) {
  position: absolute;
  right: 45%;
  bottom: 0;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  main #problem ul li:nth-child(3) {
    position: relative;
    right: auto;
  }
}
main #problem ul li:nth-child(3) b {
  color: #0092E6;
}
main #problem ul li:nth-child(4) {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  main #problem ul li:nth-child(4) {
    position: relative;
    left: 10%;
  }
}
main #problem ul li:nth-child(4) b {
  color: #BA49ED;
}
main #problem ul li b {
  font-size: clamp(2.2487111111rem, 2.2417777778vw, 2.6rem);
}
@media screen and (max-width: 767px) {
  main #problem ul li b {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #problem ul li b {
    font-size: 2rem;
  }
}
main #problem .image {
  max-width: 790px;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  main #problem .image {
    margin-top: 40px;
  }
}
main #service {
  position: relative;
  background: #0092E6 url(/assets/image/service-bg.png) center center;
  padding: 280px 0 180px;
}
@media screen and (max-width: 767px) {
  main #service {
    padding: 80px 0 50px;
  }
}
main #service::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 160px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  main #service::before {
    height: 60px;
  }
}
main #service .en-copy {
  color: #2EA8EF;
}
main #service h2 {
  text-align: center;
  font-size: clamp(2.3744rem, 2.366vw, 2.8rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main #service h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  main #service h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 40px;
  }
}
main #service h2 .bg {
  display: inline-block;
  background-color: #fff;
  color: #0092E6;
  font-size: clamp(3.2016rem, 3.174vw, 4.6rem);
  margin-right: 5px;
  padding: 2px 8px 6px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main #service h2 .bg {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #service h2 .bg {
    font-size: clamp(2.4rem, 7vw, 2.4rem);
    margin-top: 10px;
    line-height: 1.3;
  }
}
main #service .layout {
  display: flex;
  gap: 2px;
}
main #service .layout figure {
  width: 50%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main #service .layout figure {
    font-size: 1.4rem;
  }
}
main #service .lead {
  text-align: center;
  color: #fff;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  main #service .lead {
    margin-bottom: 50px;
    font-size: 1.4rem;
  }
}
main #service #report {
  position: relative;
}
main #service #report h3 {
  text-align: center;
  font-size: clamp(2.9015111111rem, 2.8837777778vw, 3.8rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main #service #report h3 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  main #service #report h3 {
    font-size: clamp(2.2rem, 7vw, 2.6rem);
  }
}
main #service #report .layout {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  main #service #report .layout {
    display: block;
  }
}
main #service #report .layout .box {
  width: 33.333%;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 75px 3%;
}
@media screen and (max-width: 767px) {
  main #service #report .layout .box {
    width: 100%;
    padding: 40px 3%;
    margin-bottom: 10px;
  }
}
main #service #report .layout .box .image {
  max-width: 172px;
  margin: auto;
}
main #service #report .layout .box p {
  color: #646464;
  font-size: clamp(1.9770666667rem, 1.9726666667vw, 2.2rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  main #service #report .layout .box p {
    font-size: 2.2rem;
  }
}
main #service #report .report-image {
  position: absolute;
  max-width: 228px;
  right: -3%;
  bottom: -160px;
}
@media screen and (max-width: 767px) {
  main #service #report .report-image {
    max-width: 120px;
    bottom: -100px;
  }
}
main #flow .en-copy {
  color: #fff;
}
main #flow h2 {
  text-align: center;
  font-size: clamp(3.2016rem, 3.174vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 80px;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  main #flow h2 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow h2 {
    font-size: clamp(2.4rem, 7vw, 2.8rem);
    margin-top: -1rem;
  }
}
main #flow .row {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 5% 50px 0;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  main #flow .row {
    margin-bottom: 15px;
    padding: 25px 5% 25px 0;
  }
}
main #flow .row .step {
  text-align: center;
  border-right: 1px solid #F6F6F6;
  color: #0092E6;
  font-weight: 600;
  font-size: clamp(1.4366666667rem, 1.4354166667vw, 1.5rem);
  width: 20%;
}
@media screen and (max-width: 767px) {
  main #flow .row .step {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .row .step {
    width: 80px;
  }
}
main #flow .row .step span {
  display: block;
  line-height: 1;
  font-size: clamp(4rem, 4vw, 5.5rem);
}
main #flow .row .text {
  padding-left: 5%;
  flex: 1;
}
main #flow .row .text h3 {
  font-size: clamp(2.2487111111rem, 2.2417777778vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main #flow .row .text h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .row .text h3 {
    font-size: 1.6rem;
  }
}
main #flow .row .text p {
  font-size: clamp(1.6784rem, 1.676vw, 1.8rem);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  main #flow .row .text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  main #flow .row .text p {
    font-size: 1.4rem;
  }
}
main #flow .report-image {
  position: absolute;
  max-width: 228px;
  left: 3%;
  bottom: -160px;
}
@media screen and (max-width: 767px) {
  main #flow .report-image {
    max-width: 120px;
    bottom: -40px;
  }
}
main #list h2 {
  text-align: center;
  font-size: clamp(3.2016rem, 3.174vw, 4.6rem);
  font-weight: 600;
  margin-bottom: 80px;
  margin-top: -4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main #list h2 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  main #list h2 {
    font-size: clamp(2.4rem, 7vw, 2.8rem);
    margin-top: -1rem;
    margin-bottom: 30px;
  }
}
main #list h2 span {
  display: block;
  font-size: clamp(1.1797333333rem, 1.1793333333vw, 1.2rem);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  main #list h2 span {
    font-size: 1.2rem;
  }
}
main #list p {
  text-align: center;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  main #list p {
    margin-bottom: 50px;
  }
}
main #list .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 70px 6%;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  main #list .logos {
    margin-bottom: 50px;
    gap: 20px 4%;
    justify-content: center;
  }
}
main #list .logos li img {
  max-width: 136px;
  max-height: 72px;
}
@media screen and (max-width: 767px) {
  main #list .logos li img {
    max-width: 100px;
    max-height: 50px;
  }
}
main #contact {
  margin-bottom: 100px;
}
main #contact .inner {
  position: relative;
  background: #0092E6 url(/assets/image/service-bg.png) center center;
  border-radius: 30px;
  padding: 100px 6%;
  display: flex;
}
@media screen and (max-width: 767px) {
  main #contact .inner {
    display: block;
    padding: 50px 5%;
  }
}
main #contact .inner .text {
  width: 60%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main #contact .inner .text {
    width: 100%;
  }
}
main #contact .inner .text h2 {
  font-size: clamp(2.6055111111rem, 2.5937777778vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  main #contact .inner .text h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  main #contact .inner .text h2 {
    font-size: clamp(2rem, 6vw, 2.4rem);
    margin-bottom: 30px;
  }
}
main #contact .inner .text p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
main #contact .inner .text p.wide {
  display: inline-block;
  position: relative;
  font-size: clamp(1.8311111111rem, 1.8277777778vw, 2rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  main #contact .inner .text p.wide {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  main #contact .inner .text p.wide {
    font-size: 1.6rem;
  }
}
main #contact .inner .text p.wide::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #fff;
  left: -15px;
  bottom: 5px;
  transform: rotate(-40deg);
}
@media screen and (max-width: 767px) {
  main #contact .inner .text p.wide::before {
    height: 16px;
  }
}
main #contact .inner .text p.wide::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 26px;
  background-color: #fff;
  right: -15px;
  bottom: 5px;
  transform: rotate(40deg);
}
@media screen and (max-width: 767px) {
  main #contact .inner .text p.wide::after {
    height: 16px;
  }
}
main #contact .inner .text .btn {
  display: block;
  background-color: #fff;
  color: #0092E6;
  margin: auto;
  font-size: clamp(2.1162666667rem, 2.1106666667vw, 2.4rem);
  padding: 25px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  main #contact .inner .text .btn {
    font-size: 2.4rem;
  }
}
main #contact .inner .text .btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #0092E6;
  border-right: 2px solid #0092E6;
  transform: rotate(45deg);
}
main #contact .inner .text .btn:hover {
  background-color: rgb(255, 255, 255);
  color: #0092E6;
}
main #contact .inner .image {
  width: 40%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main #contact .inner .image {
    position: absolute;
    right: 5%;
    bottom: -80px;
  }
}
main #contact .inner .image img {
  max-width: 360px;
  width: 90%;
}

#footer {
  padding: 100px 0 60px;
}
#footer .inner {
  max-width: calc(1320px + 3%);
  margin: auto;
}
@media screen and (max-width: 767px) {
  #footer .inner {
    text-align: center;
  }
}
#footer #head-logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #footer #head-logo {
    margin-bottom: 30px;
  }
}
#footer #footer-layout {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #footer #footer-layout {
    display: block;
  }
}
#footer #footer-layout ul {
  display: flex;
  font-size: clamp(1.1797333333rem, 1.1793333333vw, 1.2rem);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #footer #footer-layout ul {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #footer #footer-layout ul {
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
  }
}
#footer #footer-layout #footer-copyright {
  font-size: clamp(1.1797333333rem, 1.1793333333vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-layout #footer-copyright {
    font-size: 1.2rem;
  }
}