@charset "utf-8";

/*--- reset */

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 62.5%; /*フォントサイズを10pxに設定*/
}

body,
html {
  height: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

caption {
  text-align: left;
}

q:before,
q:after {
  content: '';
}

object,
embed {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  width: 100%;
  height: auto;
  /*webpぼやけ対策*/
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

li {
  list-style-type: none;
}
li img {
  vertical-align: bottom;
}
p {
  text-justify: inter-ideograph;
}

a {
  color: #0a337f;
  text-decoration: none;
  transition: 0.2s;
}

.underline {
  text-decoration: underline;
}

/* clearfix */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.f-center {
  text-align: center !important;
}
.f-bold {
  font-weight: 700;
}
.f-line16 {
  line-height: 1.6;
}
.fc-bgrade {
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0273d5;
}

/*iphone reset*/
input[type='submit'],
input[type='button'] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type='submit']::-webkit-search-decoration,
input[type='button']::-webkit-search-decoration {
  display: none;
}
input[type='submit']::focus,
input[type='button']::focus {
  outline-offset: -2px;
}

/*====================================
 default
====================================*/
body {
  background: #fff;
  color: #334459;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6em; /*14px*/
  line-height: 2;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: normal;
}

.lang-en {
  font-family: 'Noto Sans', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  line-break: auto;
}
.lang-en p {
  text-justify: inter-word;
}

/* section*/
.container {
  padding: 5rem 0;
  margin: 0 5%;
  width: 90%;
  max-width: 1280px;
  position: relative;
  z-index: 20;
}

/* スクロール時のフェードイン演出 */
.js-scroll-init .container {
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js-scroll-init .container.fadeIn {
  opacity: 1;
  transform: none;
}
.js-scroll-init header .container,
.js-scroll-init footer .container {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }

  /*====================================
	 HEADER
	====================================*/
  .header {
    background: #fff;
    height: 56px;
    display: flex;
    align-items: center;
  }
  .header .container {
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .header .logo {
    width: auto;
  }
  .header .logo img {
    height: 30px;
    width: auto;
  }
  .sp-header-btn a {
    margin-right: 6rem;
    padding: 0.75rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    background: #39abff;
    color: #fff;
    border: 2px solid #39abff;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  #gnav ul li a {
    margin: 0;
    color: #fff;
    line-height: unset;
  }
  #gnav ul li:nth-of-type(5),
  #gnav ul li:nth-of-type(6) {
    margin: 4rem 0;
    width: 48%;
  }
  #gnav ul li:nth-of-type(5) {
    margin-left: 4%;
    order: 2;
  }
  #gnav ul li:nth-of-type(5) a,
  #gnav ul li:nth-of-type(6) a {
    font-size: 1.4rem;
    text-align: center;
    padding: 1rem;
  }
  #gnav ul li:nth-of-type(5) a {
    color: #fff;
    border: 2px solid #fff;
  }
  #gnav ul li:nth-of-type(6) a {
    color: #39abff;
    border: 2px solid #fff;
    background: #fff;
  }
  .sp-nav,
  .sp-nav a {
    color: #fff;
  }
  .navToggle {
    display: block;
    position: absolute; /*fixed bodyに対しての絶対位置指定 */
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 150;
    background: rgba(255, 255, 255, 0);
    text-align: center;
  }
  .navToggle.active {
    background: rgba(255, 255, 255, 0);
  }
  .navToggle span {
    display: block;
    position: absolute; /* .navToggleに対して */
    width: 26px;
    border-bottom: solid 2px #39abff;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
  }
  .navToggle span:nth-child(1) {
    top: 2rem;
  }
  .navToggle span:nth-child(2) {
    top: 3rem;
  }
  .navToggle span:nth-child(3) {
    top: 4rem;
  }
  .navToggle.active span:nth-child(1) {
    top: 3rem;
    left: 2rem;
    border-bottom: 2px solid #39abff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2) {
    top: 3rem;
    left: 2rem;
    border-bottom: 2px solid #39abff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navToggle.active span:nth-child(3) {
    display: none;
  }
  #nav {
    padding: 5rem 2rem;
    margin: 0;
    width: 100%;
    display: none;
    position: absolute;
    top: 6rem; /*headerの高さと統一*/
    left: 0;
    z-index: 40;
    box-sizing: border-box;
    background: linear-gradient(0deg, #3a8ad0 0%, #39abff 100%);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 50%);
    height: 100vh;
  }
  #gnav ul {
    max-width: 100%;
  }
  #gnav ul li {
    width: 100%;
  }
  #gnav a {
    position: relative;
    display: block;
    padding: 0 0 2rem 0;
    font-size: 1.6rem;
    text-align: left;
    color: #fff;
  }
}

/*====================================
 MAIN
====================================*/
.mv .container {
  padding: 2rem 0 5rem;
}
.mv .mv-bdr {
  border-radius: 4rem;
  padding: 0.8rem;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mv .mv-bg {
  padding-top: 3rem;
  border-radius: 3rem;
  background: url('../images/mv_bg_sp.webp') no-repeat center top;
  background-size: cover;
}
.mv h2 {
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  text-align: left;
  letter-spacing: 0.1rem;
  font-feature-settings: 'palt';
}
.mv h2 .w-bg {
  padding: 0.5rem;
  border-bottom: 3px solid;
  background: #fff;
  border-image: linear-gradient(90deg, #26aee8 0%, #0273d5 100%) 1;
}
.mv h2 .w-bg2 {
  padding: 1.8rem 0.5rem 0.5rem;
}
.mv h2 .fc-bgrade {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 2;
}
.mv h2 .dot {
  padding-top: 1rem;
  background: url('../images/dot.svg') no-repeat center top 0.75rem;
  background-size: 5px auto;
}
/*
.mv h2 .dot{
	position: relative;
}
.mv h2 .dot::before{
	font-size: 25%;
	left: 50%;
	transform: translateX(-50%);
	top:-0.5rem;
	position: absolute;
	content: '●';
	-webkit-text-fill-color:#0273D5;
}
*/
.mv p {
  padding: 0 1.5rem 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.mv figure {
  width: 90%;
  margin: 0 auto;
}

/*====================================
 cta
====================================*/
.cta {
  margin-bottom: -5rem;
  background: linear-gradient(180deg, #ffb302 0%, #ff9602 100%);
}
.cta .container {
  padding: 4rem 0 9rem;
}
.cta .container::before {
  width: 70px;
  height: 124px;
  left: 0;
  top: 4rem;
  background: url('../images/cta_robot.webp') no-repeat left top;
  background-size: cover;
  position: absolute;
  content: '';
}
.cta ul {
  padding-left: 7.5rem;
  text-align: center;
  line-height: 1.4;
}
.cta li:nth-of-type(1) {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.cta li:nth-of-type(2) {
  margin: 2.5rem auto;
}
.cta li:nth-of-type(2) a {
  padding: 1.5rem 2.5rem;
  line-height: 1;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #d7d7d7;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(143, 143, 143, 0.25);
}
.cta li:nth-of-type(2) a span {
  padding-right: 2rem;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(0deg, #ff9602 0%, #ffb302 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.cta li:nth-of-type(2) a span::before {
  width: 13px;
  height: 18px;
  margin-top: 0.3rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 100%, 100% 50%, 0 0);
  background: linear-gradient(180deg, #ffb302 0%, #ff9602 100%);
  position: absolute;
  content: '';
}
.cta li:nth-of-type(3) a {
  color: #fff;
  text-decoration: underline;
}

/*====================================
 contents
====================================*/

/*H2*/
h2,
h3,
h4 {
  line-height: 1.4;
  position: relative;
  text-align: center;
}
h2 {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}
h2 .f-en {
  font-size: 2rem;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0273d5;
  display: block;
}
h3 {
  font-size: 2.4rem;
}

/*trouble*/
.trouble {
  border-radius: 5rem 5rem 0 0;
  background: #f5f5f5;
}
.trouble h2 {
  font-size: 2.4rem;
}
.trouble h2 .fuki {
  margin-bottom: 4rem;
}
.trouble h2 .fuki span {
  padding: 1.25rem 3rem;
  color: #fff;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  position: relative;
  border-radius: 2rem;
}
.trouble h2 .fuki span::after {
  width: 30px;
  height: 15px;
  bottom: -14px;
  background: #0273d5;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  content: '';
}
.trouble ul {
  margin-top: 4rem;
}
.trouble li {
  margin-top: 2rem;
  padding: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 98, 204, 0.2);
}
.trouble li::before {
  font-size: 3.2rem;
  left: 2rem;
  top: -2rem;
  content: '“ ';
  position: absolute;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0273d5;
  font-weight: 700;
}

/*robot*/
.robot {
  margin-bottom: -5rem;
  background: linear-gradient(180deg, #0273d5 0%, #26aee8 50%, #0273d5 100%);
  position: relative;
}
.robot::before {
  width: 66px;
  height: 26px;
  background: #f5f5f5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: '';
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.robot h2 {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  color: #fff;
  font-feature-settings: 'palt';
}
.robot h2 .fc-bgrade {
  font-size: 3.2rem;
}
.robot h2 .txt-bg {
  margin-right: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  background: #fff;
}
.robot figure {
  margin: 4rem auto;
  width: 75%;
  position: relative;
}
.robot figure::before {
  width: 138px;
  height: 200px;
  left: -5rem;
  bottom: -2.5rem;
  background: url('../images/robot_img.webp') no-repeat left top;
  background-size: cover;
  position: absolute;
  content: '';
}
.robot ul {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
}
.robot li {
  padding: 1.5rem 0.5rem;
  width: calc(31% - 1rem);
  text-align: center;
  line-height: 1.3;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.robot li h3 {
  font-size: 1.6rem;
}
.robot li span {
  font-size: 2rem;
}
.robot li::before {
  width: 34px;
  height: 34px;
  top: -2rem;
  background: url('../images/crown.webp') no-repeat 0 0;
  background-size: cover;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: '';
}

/*service*/
.service {
  border-radius: 5rem 5rem 0 0;
  background: #fff;
  counter-reset: number 0;
  box-shadow: 0 -20px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
.service dl {
  margin-top: 3rem;
  background: #fff;
  border-radius: 3rem;
  box-shadow: 0 0 16px rgba(0, 98, 204, 0.2);
  position: relative;
  z-index: 30;
}
.service h3 {
  padding-left: 5rem;
  font-size: 2rem;
  text-align: left;
}
.service h3 span {
  font-size: 2.4rem;
}
.service dt {
  padding: 1.5rem;
  background: #334459;
  color: #fff;
  border-radius: 3rem 3rem 0 0;
  position: relative;
}
.service dt::before {
  left: 2rem;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  counter-increment: number 1;
  content: '0' counter(number);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.service dd {
  padding: 2rem;
}

/*reason*/
.reason .box {
  margin-top: 2rem;
  padding: 0rem 2rem;
  background: #f5f5f5;
  border-radius: 15px;
}
.reason dl {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d7d7d7;
  gap: 1rem;
}
.reason dl:last-child {
  border-bottom: none;
}
.reason dt {
  min-width: 44px;
  max-width: 16%;
}
.reason dd {
  flex: 1;
  font-weight: 700;
}

/*voice*/
.voice h2 {
  margin-bottom: 0;
}
.voice .container {
  width: 100%;
  margin: 0 auto;
}
.voice .swiper {
  padding: 5%;
}
.voice .box {
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 3rem;
  box-shadow: 0 0 16px rgba(0, 98, 204, 0.2);
}
main .swiper-horizontal .swiper-button-next {
  background: url('../images/arrow_next.svg') no-repeat right center;
  background-size: 20px auto;
  right: 4px;
}
main .swiper-horizontal .swiper-button-prev {
  background: url('../images/arrow_prev.svg') no-repeat left center;
  background-size: 20px auto;
  left: 4px;
}
main .swiper-button-next svg,
main .swiper-button-prev svg {
  display: none;
}
.voice p {
  padding-top: 5rem;
  position: relative;
}
.voice p::before {
  font-size: 5rem;
  top: -2rem;
  left: 0;
  font-weight: 700;
  content: '“ ';
  position: absolute;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0273d5;
}
.voice ul {
  margin-top: 1rem;
  gap: 1rem;
  line-height: 1.5;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.voice li figure {
  max-width: 100px;
  height: auto;
}

/*flow*/
.reason,
.flow {
  border-radius: 5rem 5rem 0 0;
  background: #f5f5f5;
  counter-reset: number 0;
}
.flow ul {
  position: relative;
}
.flow ul::after {
  width: 6px;
  height: 90%;
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #8dd1ee 0%, #7cb4e5 100%);
}
main .reason li {
  margin-bottom: 3rem;
  padding: 3rem 2rem 2rem;
}
.reason li,
.flow li {
  margin-bottom: 6rem;
  padding: 4rem 2rem 2rem;
  background: #fff;
  border-radius: 3rem;
  box-shadow: 0 0 16px rgba(0, 98, 204, 0.2);
  position: relative;
  z-index: 30;
}
.flow li:last-child {
  margin-bottom: 0;
}
.reason li::before {
  width: 66px;
  height: 66px;
  top: -16px;
  right: 10px;
  background: url('../images/medal.webp') no-repeat right top;
  background-size: cover;
  position: absolute;
  content: '';
}
.flow li::before {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 2.4rem;
  top: -3rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  counter-increment: number 1;
  content: '0' counter(number);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
}
.reason li h3 {
  margin-top: 1.5rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  text-align: left;
}
.reason li h3::before {
  width: 30px;
  height: 2px;
  left: 0;
  top: 0;
  position: absolute;
  content: '';
  background: #26aee8;
}
.reason li h3::after {
  left: 4rem;
  top: -1rem;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0273d5;
  counter-increment: number 1;
  content: '0' counter(number);
  position: absolute;
}
.flow li h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.flow figure {
  width: 82px;
  height: auto;
  margin: 0 auto 1rem;
}

/*faq*/
.faq dl {
  margin-bottom: 2rem;
}
.faq dt {
  margin-bottom: 1rem;
  padding: 15px 35px 15px 25px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: block;
  background: linear-gradient(180deg, #26aee8 0%, #0273d5 100%);
  cursor: pointer;
  transition: 0.2s;
  border-radius: 15px;
}
.faq dt::after {
  font-size: 2rem;
  right: 10px;
  font-weight: 700;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  content: '＋';
  position: absolute;
  transition: 0.2s;
}
.faq dt.mouseover::after,
.faq dt.is-open::after {
  content: '－';
}
.faq dt.mouseover::after {
  content: '＋';
}
.faq dd {
  padding: 15px 25px;
  border-radius: 15px;
  background: #f5f5f5;
  position: relative;
  display: none;
}

/*====================================
 FOOTER
====================================*/
footer {
  font-size: 1.4rem;
  text-align: center;
  border-top: 1px solid #d7d7d7;
  background: #fff;
}
footer .container {
  padding: 3rem 0 2rem;
}
footer nav ul {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 25px;
}
footer nav ul li a {
  text-decoration: underline;
  color: #334459;
}

/*pagescroll*/
#scrollUp {
  bottom: 2%;
  right: 2%;
}
#scrollUp img {
  width: 60px;
  height: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
