@charset "UTF-8";
/*---------------------
	01.def
	02.base
-----------------------*/
/*---------------------
	01.def.css
 CSS初期化のスタイルを記載
-----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  background: transparent;
  box-sizing: border-box;
  color: #000;
  font-size: inherit;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden;
}

section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
  display: block;
}

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

input,
select,
textarea {
  vertical-align: middle;
  -webkit-appearance: none;
}

img {
  vertical-align: bottom;
}

ul,
li,
dl,
dt,
dd,
form {
  margin: 0px;
  padding: 0px;
  border: 0px;
  list-style: none;
  letter-spacing: normal;
  /* For IE 6/7 */
  *display: inline;
  *zoom: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  /* remember to highlight inserts somehow! */
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  /* markup tables with 'cellspacing="0"' */
  border-collapse: collapse;
  border-spacing: 0;
}

/*Clearfix*/
.clr:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
header h1 {
  padding: 10px;
}
header h1 img {
  width: auto;
  height: 32px;
}
header .inquiry_btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  width: 120px;
  padding: 6px 24px 6px 8px;
  text-align: center;
  border: solid 1px #fff;
}
header .inquiry_btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/lp08/ico_arrow_wh.png) no-repeat center/100% auto;
  position: absolute;
  right: 6px;
  top: calc((100% - 12px) / 2);
}

.lp08 .fade {
  opacity: 0;
  transition: opacity 1s;
}
.lp08 .fade.isin {
  opacity: 1;
}
.lp08 .fade.isin._up {
  animation: fade-in 0.5s ease-in-out both;
}
.lp08 .fade.isin._bottom {
  animation: fade-in-bottom 0.5s ease-in-out both;
}
.lp08 .fade.isin._left {
  animation: slide-in-left 0.5s ease-in-out both;
}
.lp08 .fade.isin._right {
  animation: slide-in-right 0.5s ease-in-out both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

p {
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
}

span {
  font-weight: inherit;
}

img {
  width: 100%;
}

.yel {
  color: #FFFF00;
}

.wh {
  color: #fff;
}

.blue {
  color: #0750CB;
}

.vio {
  color: #7900FF;
}

b {
  display: inline;
  font-weight: 500;
  line-height: inherit;
}

.submit_btn {
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 12px 16px;
  border: 0;
  outline: 0;
  margin-top: 16px;
}

.check_list {
  padding: 8px 12px 0;
}
.check_list li {
  padding-left: 24px;
  position: relative;
  z-index: 0;
  line-height: 1.2em;
  margin-top: 12px;
}
.check_list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background: url(../images/lp08/ico_check.svg) no-repeat center/100% auto;
  position: absolute;
  left: 0;
  top: calc((100% - 14px) / 2);
}

h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.42;
  text-align: center;
}

.btnbox {
  margin-top: 24px;
  text-align: center;
}
.btnbox .inquiry_btn {
  display: inline-block;
  color: #fff;
  background: linear-gradient(-30deg, rgb(121, 0, 255) 0%, rgb(121, 0, 255) 50%, rgb(7, 80, 203) 50%, rgb(7, 80, 203) 100%);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  padding: 8px 24px 8px 8px;
  text-align: center;
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.btnbox .inquiry_btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: url(../images/lp08/ico_arrow_right.png) no-repeat center/100% auto;
  position: absolute;
  top: calc((100% - 9px) / 2);
  right: 6px;
}

.mv_wrap .background {
  width: 100%;
  aspect-ratio: 1/2;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv_wrap .background figure {
  height: 100%;
}
.mv_wrap .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
}
.mv_wrap .catch_text {
  padding: 60px 3% 24px;
}
.mv_wrap .catch_text .sub_title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: 12px;
  line-height: 1.2;
}
.mv_wrap .catch_text .lead {
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.mv_wrap .mv_mobile {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.mv_wrap .mv_mobile ul {
  width: 120%;
  display: flex;
  justify-content: center;
  margin-left: -10%;
}
.mv_wrap .mv_mobile ul li {
  width: 20%;
  position: relative;
  z-index: 0;
  transition: all 0.5s linear 0s;
  transform: translate(-30px, 0);
  opacity: 0;
}
.mv_wrap .mv_mobile ul li.show {
  transform: translate(0, 0);
  opacity: 1;
}
.mv_wrap .mv_mobile ul li img {
  width: 100%;
  filter: drop-shadow(0px 6px 20px rgba(0, 0, 0, 0.25));
}
.mv_wrap .mv_mobile ul li:nth-child(1) {
  margin-top: 12px;
  margin-right: -6%;
}
.mv_wrap .mv_mobile ul li:nth-child(2) {
  margin-top: 32px;
  margin-right: -6%;
}
.mv_wrap .mv_mobile ul li:nth-child(3) {
  margin-top: 0;
  z-index: 1;
}
.mv_wrap .mv_mobile ul li:nth-child(4) {
  margin-top: 32px;
  margin-left: -6%;
}
.mv_wrap .mv_mobile ul li:nth-child(5) {
  margin-top: 12px;
  margin-left: -6%;
  z-index: -1;
}
.mv_wrap .mv_cta {
  margin-top: 32px;
}
.mv_wrap .mv_cta .lead {
  max-width: 550px;
  margin: auto;
}

.trouble {
  background: #F7F7F7;
  padding: 40px 3%;
  position: relative;
  z-index: 0;
  margin-top: 45px;
}
.trouble::before {
  content: "";
  display: block;
  width: 60%;
  height: 28px;
  background: #F7F7F7;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 20%;
  top: -25px;
}
.trouble .trouble_list li {
  background: #fff;
  padding: 3%;
  border-radius: 4px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  line-height: 1.2em;
  margin-top: 24px;
  padding-left: 44px;
  background: url(../images/lp08/ico_trouble.png) no-repeat left 12px center/20px auto, #fff;
}
.trouble .trouble_list li br {
  display: none;
}

.reason .sec_inner {
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  padding: 55px 3% 20px;
  position: relative;
  z-index: 0;
}
.reason .sec_inner::before {
  content: "";
  display: block;
  width: 60%;
  height: 28px;
  background: #F7F7F7;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 20%;
  top: -1px;
  transform: scale(1, -1);
}
.reason .sec_inner::after {
  content: "";
  display: block;
  width: 60%;
  height: 28px;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 20%;
  bottom: -25px;
  transform: scale(1, -1);
  z-index: -1;
}
.reason .page_links li {
  width: 100%;
  margin-top: 12px;
  text-align: center;
  border-bottom: solid 1px #fff;
  padding-bottom: 8px;
}
.reason .page_links li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
}
.reason .page_links li a figure {
  width: 40px;
}
.reason .page_links li a p {
  margin-left: 8px;
}
.reason .page_links li a::after {
  content: "";
  display: block;
  width: 9px;
  height: 12px;
  background: url(../images/lp08/ico_arrow_wh.png) no-repeat center/100% auto;
  margin: 8px 12px 0 auto;
}
.reason .reason_catch {
  width: 94%;
  margin: 55px auto 0;
}
.reason .re_section {
  width: 100%;
}
.reason .re_section dt {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-size: 20px;
  line-height: 1.4em;
}
.reason .re_section dt span {
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
}
.reason .re_section dt img {
  width: auto;
  height: 36px;
}
.reason .re_section dd {
  padding: 20px 3% 30px;
}
.reason .re_section dd .flexbox .cntbox {
  background: #fff;
  padding: 3%;
  border-radius: 4px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
  margin-top: 20px;
  padding: 0 0 20px;
}
.reason .re_section dd .flexbox h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  padding: 0 8px;
}
.reason .re_section dd .flexbox p {
  font-size: 15px;
  line-height: 1.68;
  margin-top: 8px;
  padding: 0 8px;
}
.reason .re_section dd .flexbox figure {
  padding: 0 8px;
}
.reason .re_section dd .flexbox img {
  display: block;
  width: 100%;
  margin: 12px auto 0;
}
.reason .re_section dd .flexbox .bannerbox {
  width: 89%;
  margin: 20px auto 0;
  overflow: hidden;
}
.reason .re_section dd .flexbox .bannerbox p {
  display: inline-block;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.045em;
  font-weight: 700;
  line-height: 1;
  padding: 8px;
  margin-top: 0;
}
.reason .re_section dd .flexbox .bannerbox .swiper-slide,
.reason .re_section dd .flexbox .bannerbox figure {
  border: solid 2px #7900FF;
}
.reason .re_section dd .flexbox .bannerbox img {
  margin: 0;
}
.reason .re_section dd .flexbox .full_inner .subtitle {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 0;
}
.reason .re_section dd .flexbox .full_inner .subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  margin: 12px auto 0;
}
.reason .re_section dd .flexbox .full_inner .inner_flex + .inner_flex {
  margin-top: 20px;
}
.reason .re_section dd .flexbox .full_inner figure {
  max-width: 82%;
  margin: 0 auto;
}
.reason #reason01 dt,
.reason #reason03 dt {
  background: #0750CB;
}
.reason #reason01 dd,
.reason #reason03 dd {
  background: #F2F6FD;
}
.reason #reason02 dt,
.reason #reason04 dt {
  background: #7900FF;
}
.reason #reason02 dd,
.reason #reason04 dd {
  background: #FAF2FF;
}
.reason #reason01 {
  margin-top: 60px;
}
.reason #reason03 dd .flexbox .no_cards {
  box-shadow: none;
  background: transparent;
}
.reason #reason03 dd .flexbox .no_cards h3 {
  display: inline-block;
  border: 0;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 8px;
}
.reason #reason03 dd .flexbox .cntbox {
  width: 100%;
}
.reason #reason03 dd .flexbox .cntbox li {
  position: relative;
  z-index: 0;
  justify-content: center;
  background: #fff;
  padding: 3%;
  border-radius: 4px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
}
.reason #reason03 dd .flexbox .cntbox li figure {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  padding: 0;
}
.reason #reason03 dd .flexbox .cntbox li figure img {
  margin-top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reason #reason03 dd .flexbox .cntbox li div.text {
  margin-top: 20px;
}
.reason #reason03 dd .flexbox .cntbox li div.text h3 {
  background: transparent;
  padding-bottom: 8px;
  border-bottom: solid 1px #000;
  color: #000;
  line-height: 1.25;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  color: #fff;
}
.reason #reason03 dd .flexbox .cntbox li div.text h3 br {
  display: none;
}
.reason #reason03 dd .flexbox .cntbox li + li {
  margin-top: 12px;
}
.reason #reason04 dd .seo_flow {
  width: 80%;
  margin: auto;
}
.reason #reason04 dd .seo_flow figure {
  position: relative;
  z-index: 0;
}
.reason #reason04 dd .seo_flow figure + figure::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/lp08/ico_arrow_violet.png) no-repeat center/100% auto;
  position: absolute;
  left: calc((100% - 24px) / 2);
  top: -24px;
  transform: rotate(90deg);
  padding-top: 8px;
}

.comparison {
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(74, 74, 74) 100%);
  padding: 40px 3%;
}
.comparison h2 {
  max-width: 624px;
  margin: auto;
}
.comparison p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  line-height: 2;
  text-align: center;
}
.comparison figure {
  max-width: 960px;
  margin: 24px auto 0;
}

.result .leftbox {
  background: #F2F6FD;
  padding: 24px 3%;
}
.result .leftbox .sp {
  display: block;
}
.result .leftbox .sp .arrow {
  display: inline-block;
  margin-top: 36px;
  position: relative;
  z-index: 0;
}
.result .leftbox .sp .arrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 20px;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: calc((100% - 32px) / 2);
  top: -28px;
}
.result .leftbox .pc {
  display: none;
}
.result .leftbox h2 {
  color: #0750CB;
  padding-bottom: 12px;
  border-bottom: solid 2px #0750CB;
  margin-bottom: 12px;
}
.result .rightbox {
  background: #FAF2FF;
  padding: 24px 3%;
  text-align: center;
}
.result .rightbox h2 {
  color: #7900FF;
  padding-bottom: 12px;
  border-bottom: solid 2px #7900FF;
  margin-bottom: 12px;
}
.result .rightbox figure {
  width: 89%;
  margin: 12px auto 0;
}

.industry {
  background: url(../images/lp08/bg_indurtry.jpg) no-repeat center/cover;
  padding: 20px 12px;
}
.industry .industry_block {
  padding: 28px 20px;
  border: solid 1px #fff;
  margin-top: 20px;
}
.industry .industry_block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.industry .industry_block ul li {
  width: 25%;
  padding: 4px;
}

.service {
  background-color: #0750CB;
  padding: 40px 12px 60px;
}

.flow {
  padding: 40px 3%;
  background: #F7F7F7;
  position: relative;
  z-index: 0;
}
.flow p {
  text-align: center;
}
.flow::before {
  content: "";
  display: block;
  width: 60%;
  height: 28px;
  background: #F7F7F7;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 20%;
  top: -25px;
}
.flow .flow_step li {
  background: #fff;
  padding: 3%;
  border-radius: 4px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
  margin-top: 12px;
  text-align: center;
}
.flow .flow_step li figure {
  width: 68px;
  height: auto;
  margin: 0 auto 12px;
}
.flow .flow_step li h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
}

.menu {
  padding: 55px 3% 40px;
  position: relative;
  z-index: 0;
}
.menu::before {
  content: "";
  display: block;
  width: 60%;
  height: 28px;
  background: #F7F7F7;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  left: 20%;
  top: -1px;
  transform: scale(1, -1);
}
.menu .menu_list {
  margin: 20px auto 0;
}
.menu .menu_list li {
  margin-top: 32px;
}
.menu .menu_list .standard {
  margin-top: 12px;
}
.menu .menu_list dl {
  border-radius: 12px;
  overflow: hidden;
}
.menu .menu_list dt {
  text-align: center;
  padding: 8px 4px;
}
.menu .menu_list dt img {
  display: inline-block;
  width: auto;
  height: 32px;
}
.menu .menu_list dd {
  padding: 20px 12px;
}
.menu .menu_list dd p {
  font-size: 16px;
  line-height: 1.48;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
}
.menu .menu_list dd .bold {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.menu .menu_list .basic dl {
  border: solid 1px #0750CB;
}
.menu .menu_list .basic dt {
  background: #0750CB;
}
.menu .menu_list .basic dd {
  background: #F2F6FD;
  height: 100%;
}
.menu .menu_list .standard dl {
  border: solid 1px #7900FF;
}
.menu .menu_list .standard dt {
  background: #7900FF;
}
.menu .menu_list .standard dd {
  background: #FAF2FF;
}
.menu .menu_list .premium dl {
  border: solid 1px #000;
}
.menu .menu_list .premium dt {
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(74, 74, 74) 100%);
}
.menu .menu_list .premium dd {
  background: #F7F7F7;
}
.menu .caption {
  background: #FFFFD5;
  padding: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.045em;
  margin-top: 12px;
}

.middle_cta {
  padding: 40px 3%;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  position: relative;
  z-index: 0;
}
.middle_cta::before {
  content: "";
  display: block;
  width: 40%;
  height: 32px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #000;
  position: absolute;
  top: -32px;
  left: 0;
}
.middle_cta::after {
  content: "";
  display: block;
  width: 40%;
  height: 32px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #000;
  position: absolute;
  bottom: -32px;
  right: 0;
}
.middle_cta .lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.045em;
  color: #fff;
}
.middle_cta .free_campaign {
  background: #fff;
  border: solid 1px #000;
}
.middle_cta .free_campaign .innerbox {
  padding: 12px 3% 20px;
}
.middle_cta .free_campaign .innerbox figure {
  margin-top: 24px;
}

.form {
  background: #DAE5F7;
  padding: 60px 3%;
}
.form .cnt_inner {
  max-width: 960px;
  margin: auto;
}
.form .announce {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.045em;
}
.form .logo_title {
  display: flex;
  align-items: center;
  line-height: 1;
}
.form .logo_title span {
  display: inline-block;
  line-height: 1;
  margin-right: 8px;
}
.form .logo_title span img {
  width: auto;
  height: 45px;
}
.form .flexbox {
  max-width: 960px;
  margin: auto;
}
.form li .form_title {
  font-weight: 500;
  font-size: 18px;
  margin-top: 16px;
}
.form li .form_input {
  margin-top: 8px;
}

.mwform-tel-field {
  display: flex;
  align-items: center;
  max-width: 420px;
}

.mwform-tel-field input {
  margin: 0 4px;
}

.form_input input {
  min-height: 42px;
  box-sizing: border-box;
  outline: none;
  border: 0;
  box-shadow: none;
}
.form_input input[type=text], .form_input input[type=email] {
  width: 100%;
  max-width: 420px;
}
.form_input input[type=radio] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  accent-color: #0750CB;
}

.form_input input:hover {
  cursor: pointer;
  border: solid 1px #0750CB;
}

.form_input input:focus {
  border: solid 1px #0750CB;
  background-color: #F2F6FD;
}

.submitbox {
  text-align: center;
}

.submit {
  margin-top: 20px;
  height: 45px;
  background: linear-gradient(90deg, rgb(121, 0, 255) 0%, rgb(7, 80, 203) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: 0;
  line-height: 1;
  padding: 16px;
}

.submit:hover {
  cursor: pointer;
  opacity: 0.85;
}

.complete {
  background: #DAE5F7;
  padding: 60px 3%;
}

.complete .cnt_inner {
  max-width: 960px;
  margin: 120px auto 0;
}

.complete .cnt_inner .announce {
  margin: 40px;
}

.support {
  padding: 40px 3%;
  background: #F7F7F7;
}
.support h2 img {
  width: 82%;
  max-width: 718px;
  margin: auto;
}
.support .support_list {
  background: #fff;
  padding: 3%;
  border-radius: 4px;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.12);
  margin: 40px auto 0;
}
.support .support_list li + li {
  margin: 12px 0 0;
  border-top: dashed 1px #000;
  padding-top: 12px;
}
.support .support_list h3 {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.support .support_list h3 .num {
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
}
.support .support_list h3 .num img {
  width: auto;
  height: 20px;
}

.banner {
  margin: 40px auto 0;
  width: 94%;
}
.banner .banner_list li {
  margin-top: 12px;
}

.faq {
  margin: 40px auto 0;
  width: 94%;
}
.faq .faq_wrap {
  padding: 3%;
  border: solid 2px #000;
  position: relative;
  z-index: 1;
}
.faq .faq_wrap::after {
  content: "";
  display: block;
  width: 94%;
  height: calc(100% + 4px);
  background: #fff;
  position: absolute;
  left: 3%;
  top: -2px;
  z-index: -1;
}
.faq .faq_wrap dl + dl {
  margin-top: 12px;
  padding-top: 12px;
  border-top: solid 1px #000;
}
.faq .faq_wrap dt {
  padding-left: 25px;
  position: relative;
  z-index: 0;
  font-size: 15px;
  line-height: 1.25;
}
.faq .faq_wrap dd {
  margin-top: 8px;
  padding-left: 25px;
  position: relative;
  z-index: 0;
  font-size: 15px;
  line-height: 1.25;
}
.faq .faq_wrap dt::before,
.faq .faq_wrap dd::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 0;
}
.faq .faq_wrap dt::before {
  background: url(../images/lp08/ico_faq_f.jpg) no-repeat center/100% auto;
}
.faq .faq_wrap dd::before {
  background: url(../images/lp08/ico_faq_a.jpg) no-repeat center/100% auto;
}

.bottom_cta {
  padding: 40px 3%;
  background: #F2F6FD;
  margin-top: 40px;
}
.bottom_cta h2 {
  max-width: 638px;
  margin: auto;
}
.bottom_cta .inquiry_btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.bottom_cta .inquiry_btn span {
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
}
.bottom_cta .inquiry_btn img {
  width: auto;
  height: 36px;
}
.bottom_cta .caption {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  header h1 img {
    height: 48px;
  }
  header .inquiry_btn {
    padding: 12px 24px 12px 8px;
  }
  h2 {
    font-size: 36px;
  }
  .btnbox .inquiry_btn {
    padding: 16px 36px 16px 16px;
  }
  .mv_wrap .background {
    aspect-ratio: 1/1.6;
  }
  .mv_wrap .catch_text {
    padding: 32px 0 20px;
  }
  .mv_wrap .catch_text h1 {
    max-width: 640px;
    margin: auto;
  }
  .mv_wrap .catch_text .sub_title {
    font-size: 36px;
  }
  .mv_wrap .catch_text .lead {
    font-size: 24px;
  }
  .trouble .trouble_list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 960px;
    margin: auto;
  }
  .trouble .trouble_list li {
    width: calc((100% - 60px) / 3);
  }
  .trouble .trouble_list li br {
    display: block;
  }
  .reason .page_links {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: auto;
  }
  .reason .page_links li {
    width: calc((100% - 12px) / 3);
    text-align: left;
    border-bottom: 0;
  }
  .reason .reason_catch {
    max-width: 820px;
  }
  .reason .re_section dt {
    font-size: 32px;
  }
  .reason .re_section dd .flexbox {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 960px;
    margin: auto;
  }
  .reason .re_section dd .flexbox .cntbox {
    width: calc((100% - 40px) / 2);
  }
  .reason .re_section dd .flexbox .cntbox.full {
    width: 100%;
  }
  .reason .re_section dd .flexbox .full_inner {
    display: flex;
    justify-content: space-between;
  }
  .reason #reason02 .lead {
    text-align: center;
  }
  .reason #reason02 .cntbox {
    display: flex;
    flex-direction: column;
  }
  .reason #reason02 .sliderbox {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
  }
  .reason #reason02 .sliderbox .bannerbox {
    width: calc((100% - 12px) / 2);
  }
  .reason #reason03 dd .flexbox .cntbox ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .reason #reason03 dd .flexbox .cntbox li {
    width: calc((100% - 40px) / 2);
  }
  .reason #reason04 dd .seo_flow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 960px;
  }
  .reason #reason04 dd .seo_flow figure {
    width: 33.3333333333;
  }
  .reason #reason04 dd .seo_flow figure + figure::before {
    transform: rotate(0);
    top: calc((100% - 24px) / 2);
    left: -18px;
  }
  .result .leftbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .result .leftbox h2 {
    width: 100%;
  }
  .result .leftbox figure {
    width: 48%;
    max-width: 820px;
    margin: auto;
  }
  .result .leftbox .sp {
    display: none;
  }
  .result .leftbox .pc {
    display: block;
  }
  .result .rightbox figure {
    width: 72%;
    max-width: 640px;
    margin: auto;
  }
  .industry {
    padding: 40px 20px;
  }
  .industry .industry_block {
    max-width: 960px;
    margin: 40px auto 0;
  }
  .service .service_block {
    max-width: 720px;
    margin: auto;
  }
  .flow .flow_step {
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flow .flow_step li {
    width: calc((100% - 32px) / 2);
    margin: 32px auto 0;
  }
  .menu .menu_list {
    max-width: 960px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .menu .menu_list li {
    width: calc((100% - 60px) / 3);
    margin: 0;
  }
  .menu .menu_list .basic {
    margin-top: 62px;
  }
  .menu .menu_list .standard {
    margin-top: 0;
  }
  .menu .menu_list .premium {
    margin-top: 62px;
  }
  .menu .menu_list dl {
    height: 100%;
  }
  .menu .caption {
    max-width: 960px;
    margin: 24px auto 0;
  }
  .middle_cta .flexbox {
    max-width: 960px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
  }
  .middle_cta .flexbox .cntbox {
    width: 50%;
  }
  .middle_cta .ttl_sns_campaign {
    width: 80%;
  }
  .middle_cta .lead {
    font-size: 40px;
  }
  .form .announce {
    font-size: 24px;
  }
  .form .flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .form li {
    width: calc((100% - 40px) / 2);
  }
  .support .support_list {
    max-width: 960px;
  }
  .banner .banner_list {
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .banner .banner_list li {
    width: 50%;
  }
  .faq .faq_wrap {
    max-width: 960px;
    margin: auto;
  }
}
@media screen and (min-width: 1080px) {
  h2 {
    font-size: 40px;
  }
  .mv_wrap .background {
    aspect-ratio: 1/1.2;
  }
  .mv_wrap .mv_mobile ul {
    width: 100%;
    margin: auto;
    max-width: 880px;
  }
}
@media screen and (min-width: 860px) {
  .mv_wrap .background {
    aspect-ratio: 1/1.4;
  }
}
@media screen and (min-width: 1200px) {
  .mv_wrap .background {
    aspect-ratio: 1728/1000;
  }
}
@media screen and (min-width: 1920px) {
  .mv_wrap .background {
    aspect-ratio: 1920/1080;
  }
}