@charset "UTF-8";
.ham {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ham span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.ham span:first-child {
  top: 0;
}
.ham span:nth-child(2) {
  top: calc(50% - 3px / 2);
}
.ham span:nth-child(3) {
  bottom: 0;
}

.ham.open span:first-child {
  top: 40%;
  transform: rotate(-45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  top: 40%;
  bottom: auto;
  transform: rotate(45deg);
}

/* common */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #2a424b;
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.robot {
  font-family: "Roboto", sans-serif;
}

body.open {
  overflow-y: hidden;
}

a {
  color: #2a424b;
}

img {
  width: 100%;
}

hr {
  background-color: #2a424b;
  width: 100%;
  height: 1px;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

*:focus {
  outline: none;
}

.u-line {
  text-decoration: underline;
}

.xl-con {
  width: 90%;
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
}
.xl-con .l-con,
.xl-con .con {
  width: 100%;
}

.l-con {
  width: 90%;
  max-width: 1270px;
  margin-right: auto;
  margin-left: auto;
}
.l-con .con {
  width: 100%;
}

.con {
  width: 90%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.m-con {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.fs-70 {
  font-size: clamp(4rem, 5vw, 7rem);
}

.fs-56 {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
}

.fs-50 {
  font-size: clamp(3.4rem, 5vw, 5rem);
}

.fs-46 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.fs-26 {
  font-size: clamp(2.2rem, 3vw, 2.6rem);
}

.fs-22 {
  font-size: clamp(2rem, 3vw, 2.2rem);
}

.fs-20 {
  font-size: clamp(1.8rem, 3vw, 2rem);
}

.fs-18 {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}

.fw-b {
  font-weight: bold;
}

.w-b {
  background-color: #fff;
}

.w-t {
  color: #fff;
}

.b-t {
  color: #46d0d3;
}

.b-b {
  background-color: #46d0d3;
}

.m-b {
  background-color: #eefbfb;
}

.res-on {
  display: none;
}

.phone-on {
  display: none !important;
}

.ham-wr {
  position: fixed;
  top: 50px;
  right: 10px;
  width: 30px;
  height: 25px;
  z-index: 7000;
}

.ham span {
  background-color: #2a424b;
  height: 3px;
  border-radius: 2px;
}

.ham.open span {
  background-color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: transparent;
  transition: 0.4s;
}

.scroll-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: 0.3s;
}

.scroll-back.active {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.h-con {
  position: relative;
  z-index: 10;
}

.h-title {
  font-size: 3rem;
}

.h-l {
  width: 20%;
}

.h-r {
  width: 80%;
}
.h-r nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.g-nav li {
  margin-right: 35px;
}
.g-nav li a {
  width: 100%;
}

.f-con {
  max-width: 1200px;
}

.footer {
  margin: 80px auto;
}

/* ページ毎のstyle */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #46d0d3;
  background-color: #46d0d3;
  color: #fff;
  transition: 0.3s;
  width: 100%;
  max-width: 240px;
  height: 45px;
  border-radius: 23px;
  letter-spacing: 0.01em;
}
.btn:hover {
  background-color: #fff;
  color: #46d0d3;
}

.c2-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c2-list li {
  max-width: 560px;
  width: 49%;
  margin-bottom: 35px;
}

.c3-list {
  display: flex;
  justify-content: space-between;
}
.c3-list li {
  width: 31%;
}

.sectitle {
  margin-bottom: 75px;
  list-style: 1.2;
  opacity: 0;
}

.sectitle span {
  position: relative;
  /* topとleftの値を変えることで入ってくる位置を調整 */
  top: 0px;
  left: 0px;
  opacity: 0;
}

.sectitle.active {
  opacity: 1;
}

.mb-no {
  margin-bottom: 0;
}

.fadein.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
}

.fadein-n {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(15px);
}
.fadein-n .sectitle {
  opacity: 1 !important;
}

.fadein-n.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
}

.order li {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
.order li.active {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}

.order2 li {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
.order2 li.active {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}

.opa0 {
  opacity: 0;
  transition: 1s;
}

.opa0.active {
  opacity: 1;
}

.kv-wr {
  padding: 120px 0 110px;
}

.kv-list-sec {
  margin-top: -85px;
}

.kv-list li {
  width: 48%;
  border: 4px solid #46d0d3;
  border-radius: 20px;
  display: flex;
  margin-bottom: 15px;
}
.kv-list li .l {
  width: 120px;
  align-content: center;
  border-radius: 10px 0 0 10px;
}
.kv-list li .r {
  width: calc(100% - 120px);
  padding: 25px;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
}

.kv-anime {
  opacity: 0;
  transition: 1s;
}

.kv-anime.active {
  opacity: 1;
}

.p-con {
  max-width: 1220px;
}

.logo-list {
  display: flex;
  align-items: center;
}
.logo-list li {
  margin: auto 20px;
}
.logo-list li img {
  height: 55px;
}

.logo-list-under {
  margin-top: 40px;
}

.aboutbox-r {
  transform: translateX(4%);
}

.feature-list li {
  border: 4px solid #46d0d3;
  border-radius: 40px;
  padding: 20px 20px 65px;
}

.feature-point {
  width: 120px;
}

.feature-sectitle {
  width: 85%;
}
.feature-sectitle img {
  position: relative;
  z-index: 2;
}

.feature-line {
  position: absolute;
  height: 7px;
  width: 44%;
  z-index: 1;
  right: calc(5% + 9px);
  top: 77%;
}
.feature-line::after {
  content: "";
  display: block;
  width: 0;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffe600;
  transition: 0.8s;
}

.feature-line.active::after {
  width: 100%;
}

.effect-sec {
  background-size: cover;
  background-image: url(../img/back1.webp);
}

.c4-list li {
  width: 20%;
}

.function-sec {
  background-size: cover;
  background-image: url(../img/back2.webp);
}

.funkbox {
  border-radius: 40px;
  background-color: #fff;
  padding: 50px 30px;
  padding-left: 50px;
}

.funk-list li {
  border-radius: 40px;
  background-color: #fff;
  padding: 50px 30px;
}

.product-list li {
  max-width: 360px;
}

.con-case {
  max-width: 1220px;
}

.caselist {
  border-radius: 35px;
}
.caselist li {
  display: flex !important;
  margin: auto 30px;
}
.caselist li .l {
  width: 65%;
  background-color: #eefbfb;
  padding: 50px;
  border-radius: 35px 0 0 35px;
}
.caselist li .r {
  width: 35%;
  border-radius: 0 35px 35px 0;
}
.caselist li .r img {
  border-radius: 0 35px 35px 0;
}

.case-title {
  margin-top: 30px;
}

.case-text {
  margin-top: 30px;
}

.arrow-case {
  z-index: 1;
}

.arrow-case-l {
  left: -10px;
}

.arrow-case-r {
  right: -10px;
}

.flow-sec {
  background-size: cover;
  background-image: url(../img/back3.webp);
  background-repeat: no-repeat;
}

.flowbox {
  position: relative;
  margin-bottom: 40px;
}
.flowbox::before {
  content: "";
  position: absolute;
  background-color: #efca08;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 5px;
  left: -55px;
}

.flowline {
  height: 79%;
  width: 2px;
  background-color: #efca08;
  top: 5px;
  left: -44px;
}

.flowtext {
  min-height: 80px;
}

.flow {
  position: relative;
  z-index: 2;
}

.flow-img {
  bottom: -30px;
  left: -4%;
  width: 45%;
  max-width: 400px;
  z-index: 1;
}

.question-list {
  align-items: flex-start;
}
.question-list li {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 40px;
  transition: 0.3s;
}

.question-title {
  padding-top: 3px;
  width: calc(100% - 50px);
}

.question-text {
  margin-top: 40px;
}

.question-box {
  align-items: center;
}

.question {
  width: 40px;
  height: 40px;
  background-color: #46d0d3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
}

.question-text {
  display: none;
}

.voice-list li {
  position: relative;
  max-width: 400px;
  background-color: #eefbfb;
  border-radius: 38px;
  padding: 50px;
  margin: 30px 20px;
  pointer-events: none !important;
}

.voice-company {
  margin-top: 35px;
}

.voice-name {
  margin-top: 10px;
}

.voice-text {
  min-height: 210px;
}

.dot {
  width: 50px;
  position: absolute;
  z-index: 1000;
}

.dot1 {
  left: 20px;
  top: -20px;
}

.dot2 {
  right: 20px;
  bottom: -20px;
}

.companybox {
  border-radius: 40px;
  padding: 50px 10%;
}

.list-flex li {
  display: flex;
}
.list-flex li .l {
  width: 100px;
}
.list-flex li .r {
  width: calc(100% - 100px);
}

.company-list li {
  margin-bottom: 10px;
}

.company-line {
  height: 80%;
  width: 2px;
  background-color: #46d0d3;
}

.form-con {
  border-radius: 40px;
  padding: 80px 8% 70px;
}

.form-wr {
  width: 100%;
  text-align: left;
}
.form-wr br {
  display: none;
}

.form-title {
  position: relative;
  margin-bottom: 10px;
}

.required::after {
  content: "*";
  margin-left: 3px;
  color: #ff3333;
  font-weight: 400;
}

.form-row {
  margin-bottom: 30px;
}
.form-row input,
.form-row select,
.form-row textarea {
  background-color: #f4f4f4;
  border: 1px solid #dddddd;
  width: 100%;
  height: 40px;
  padding: 10px;
}
.form-row textarea {
  height: 240px;
}

.form-date {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.form-date:last-child {
  margin-bottom: 0;
}

.form-cal {
  width: 130px;
  margin-right: 35px;
}

.form-time {
  width: calc(100% - 165px);
  max-width: 220px;
}

.form-checkbox {
  margin-bottom: 40px;
}
.form-checkbox .wpcf7-list-item {
  margin-right: 40px;
}
.form-checkbox .wpcf7-form-control-wrap,
.form-checkbox .wpcf7-checkbox {
  display: block;
  width: 100%;
}
.form-checkbox .wpcf7-list-item {
  margin-left: 0 !important;
}
.form-checkbox .wpcf7-list-item.last {
  margin-right: 0 !important;
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  margin-right: 7px;
  width: 16px;
  height: 16px;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type=checkbox]::before {
  border: 1px solid #dddddd;
  background-color: #f4f4f4;
  height: 16px;
  width: 16px;
  top: 0;
  left: 0;
}

input[type=checkbox]::after {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-bottom: 3px solid #2a424b;
  /*チェックの太さ*/
  border-left: 3px solid #2a424b;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 6px;
  /*チェックの高さ*/
  width: 11px;
  /*チェックの横幅*/
  transform: rotate(-45deg);
  top: 4px;
  left: 3px;
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

.form-btn-wr {
  text-align: center;
}

input.btn {
  margin: 30px auto 0;
  border-radius: 40px;
  max-width: 300px;
  height: 80px;
  font-size: 2rem;
  font-weight: bold;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  margin-top: 80px;
  border: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  margin-top: 80px;
  border: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 12px !important;
}/*# sourceMappingURL=style.css.map */