@charset "UTF-8";
body {
  color: #313131;
  font-size: 15px;
  background: #f0f4f7;
  overflow-x: hidden;
  position: relative;
  font-family: noto-sans-cjk-jp, sans-serif;
}

/*----- 共有 -----*/
/*########
l-flex-[justify-content]-[align-items]
########*/
/*
最初と最後の子要素を両端に配置し、
残りの要素は均等に間隔をあけて配置
*/
/*-- 上揃え --*/
.l-flex-between-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-between-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-between-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*
行の開始位置から配置。
左揃え。
*/
/*-- 上揃え --*/
.l-flex-start-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-start-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-start-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*
中央揃え
*/
/*-- 上揃え --*/
.l-flex-center-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*-- 中央揃え --*/
.l-flex-center-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*-- 下揃え --*/
.l-flex-center-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/*-- 子要素を折り返し、複数行に上から下へ並べる --*/
.l-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-inner {
  width: 1000px;
  margin: 0 auto;
}

.m-center {
  text-align: center;
}

a {
  text-decoration: none;
  outline: none;
  color: #333;
}

a:hover {
  opacity: 0.7;
}

input[type="image"]:hover {
  opacity: 0.7;
}

/*----- header -----*/
header {
  padding: 19px 0 15px;
  box-shadow: 0 5px 6px -5px rgba(0,0,0,0.4);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

header h1 {
  text-align: center;
}

header ul li:nth-child(-n+2) {
  margin-right: 34px;
}

header ul li:nth-child(3) {
  margin-right: 13px;
}

header ul li a {
  color: #313131;
  font-size: 13px;
  font-weight: bold;
}

/*----- fv -----*/
#fv {
  padding-bottom: 55px;
  margin-top: 98px;
  background: url(../img/fv_background_cover.jpg) no-repeat center top;
  background-size: cover;
}

#fv .left-box {
  margin: 135px 0 0 20px;
}

#fv .left-box h2 {
  margin: 0 0 30px 2px;
}

#fv .left-box .left-img01 {
  margin: 50px 0 12px 2px;
}

#fv .left-box .left-img02 {
  margin-bottom: 15px;
}

#fv .left-box .text {
  font-size: 0.625vw;
  line-height: 1.2;
  color: #fff;
}

#fv > div > .fv-form {
  width: 450px;
  margin-top: 41px;
  padding: 26px 0 0;
  border-radius: 5px;
  background: #fff;
}

#fv > div > .fv-form h3 {
  text-align: center;
  padding-bottom: 15px;
}

#fv > div > .fv-form h4 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #898989;
  margin-bottom: 18px;
}

#fv > div > .fv-form h4 .red {
  color: #d70c19;
  font-weight: bold;
}

#fv > div > .fv-form h4 .blue {
  color: #005693;
  font-weight: bold;
}

/*----- figure -----*/
#company-logo img {
  width: 100%;
}

/*----- problem -----*/
#problem {
  padding-top: 135px;
  background: #f0f4f7;
}

#problem > h2 {
  width: 710px;
  color: #d70c19;
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 0 auto;
  border-bottom: 1px solid #898989;
}

#problem .l-inner {
  padding: 105px 0 135px;
  background: url(../img/problem_background.png)no-repeat center bottom;
  position: relative;
  z-index: 2;
}

#problem .l-inner .left-box li:nth-child(2) {
  margin-left: 30px;
}

#problem .l-inner .left-box li:nth-child(3) {
  margin-left: 60px;
}

#problem .l-inner .left-box li:nth-child(4) {
  margin-left: 90px;
}

#problem .l-inner .right-box li{
  text-align: right;
}

#problem .l-inner .right-box li:nth-child(2) {
  margin-right: 30px;
}

#problem .l-inner .right-box li:nth-child(3) {
  margin-right: 60px;
}

#problem .l-inner .right-box li:nth-child(4) {
  margin-right: 90px;
}

#problem .l-inner > ul li + li {
  margin-top: 20px;
}

/*----- info-problem -----*/
#info-problem {
  height: 420px;
  margin-top: -48px;
  background: #2d2e2e;
  position: relative;
  z-index: 1;
}

#info-problem > div {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

#info-problem > div .left-img {
  position: absolute;
  top: 62px;
  left: -222px;
}

#info-problem > div .right-img {
  position: absolute;
  top: 10px;
  right: -240px;
}

#info-problem div > div {
  width: 745px;
  margin: 0 auto;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

#info-problem div > div h2 {
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 38px;
}

#info-problem div > div h2 span {
  display: block;
  color: #fef859;
  font-size: 29px;
  font-weight: bold;
  margin-top: 20px;
}

/*----- about -----*/
#about {
  padding-top: 125px;
  background: #af0202;
}

#about > div h3 {
  color: #fef859;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

#about > div h3 span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 16px;
}

#about .l-box01 {
  width: 1000px;
  margin: 0 auto 122px;
}

#about .l-box01 h3 {
  font-size: 34px;
  margin-bottom: 62px;
}

#about .l-box02 {
  margin-bottom: 102px;
}

#about .l-box02 h3 {
  font-size: 30px;
  margin-bottom: 22px;
}

#about .l-box02 .text {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
}

#about .l-box03 h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 50px;
}

#about .l-box03 p {
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 2px;
}

#about .l-box03 .text01 {
  padding: 50px 0 25px;
}

#about .l-box03 .text02 {
  padding: 20px 0 75px;
}

#about .l-box03 .text02 span {
  display: block;
  color: #fef859;
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}

/*----- info-about -----*/
#about #info-about {
  padding: 240px 0 45px;
  margin-top: 40px;
  background: #9d0101;
  position: relative;
}

#about #info-about h2 {
  position: relative;
  z-index: 1;
}

#info-about figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/*----- reason -----*/
#reason {
  padding-top: 110px;
  background: #014e95;
}

#reason h2 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

#reason h2 span {
  font-size: 23px;
  font-weight: bold;
}

#reason ul li {
  padding: 58px 55px 95px;
  background: #fff;
  position: relative;
}

#reason ul li + li {
  margin-top: 165px;
}

#reason ul li:nth-child(2) {
  flex-direction: row-reverse;
}

#reason ul li dl dt span {
  display: block;
  color: #af0202;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.4;
  margin: 25px 0 25px 5px;
}

#reason ul li dl dd {
  width: 405px;
  line-height: 1.4;
  margin-left: 5px;
}

#reason ul li figure {
  position: absolute;
  top: 20px;
  right: -245px;
}

#reason ul li:nth-child(2) figure {
  position: absolute;
  top: 20px;
  left: -245px;
}

/*----- info-reason -----*/
#reason #info-reason {
  padding: 220px 0 5px;
  margin-top: 170px;
  background: #004483;
  position: relative;
}

#reason #info-reason h2 {
  position: relative;
  z-index: 1;
}

#info-reason figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/*----- case -----*/
#case {
  overflow: hidden;
  padding: 118px 0 0;
  background: #ededed;
}

#case #voice {
  margin-bottom: 122px;
}

#case #voice h2 {
  color: #313131;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 65px;
  letter-spacing: 2px;
}

#case #voice .top-text {
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}

#case #voice .slider {
  width: 980px;
  margin: 0 auto;
  opacity: 0;
  transition: 2s;
  box-shadow: 6px 6px 9px -2px rgba(0,0,0,0.3);
  position: relative;
}

#case #voice .slider .slick-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#case #voice .slider li .left-box {
  width: 330px;
  height: 450px;
  background: #e7e7e7;
}

#case #voice .slider li .left-box h3 {
  color: #1c629e;
  font-size: 18px;
  font-weight: bold;
  margin: 25px 25px 20px;
}

#case #voice .slider li .left-box dl {
  font-size: 14px;
  margin-left: 25px;
}

#case #voice .slider li .left-box dl + dl {
  margin-top: 5px;
}

#case #voice .slider li .left-box dl dt {
  width: 80px;
  color: #1c629e;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 0;
  margin-right: 10px;
  background: #fff;
}

#case #voice .slider li .left-box dl dd {
  width: 200px;
  line-height: 1.3;
}

#case #voice .slider li .right-box {
  width: 650px;
  height: 450px;
  padding: 40px 40px 0;
  background: #fff;
}

#case #voice .slider li .right-box dt {
  color: #1c629e;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 25px;
}

#case #voice .slider li .right-box dd p {
  line-height: 1.5;
}

#case #voice .slider li .right-box dd p + p {
  margin-top: 35px;
}

#case #voice .slider .slick-dots {
  width: 190px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
}

#case #voice .slider .slick-dots button {
  width: 50px;
  height: 5px;
  font-size: 0;
  border: none;
  border-radius: 0;
  background: #d2d2d2;
}

#case #voice .slider .slick-dots .slick-active button {
  background: #e91e1e;
}

#case #voice .slick-initialized {
  opacity: 1;
}

#case #voice .slick-arrow {
  position: absolute;
  top: 203px;
  z-index: 99;
  cursor: pointer;
}

#case #voice .slick-arrow.prev {
  left: -26px;
}

#case #voice .slick-arrow.next {
  right: -26px;
}

#case #voice .slick-arrow.next img {
  transform: scale(-1, 1);
}

#case #voice .js-slider02 .slick-list {
  overflow: visible !important;
}

.slick-slide:focus,
#case #voice .slider .slick-dots button:focus {
  outline: none;
}

#case #download {
  margin-bottom: 114px;
}

#case #download h2 {
  color: #313131;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

#case #download .top-text {
  text-align: center;
  color: #313131;
  line-height: 1.8;
  margin-bottom: 70px;
}

#case #download > div {
  width: 1000px;
  margin: 0 auto 58px;
}

#case #download > div dl {
  background: #fff;
  width: 290px;
  height: 380px;
}

#case #download > div dl dt {}

#case #download > div dl dd {
  font-size: 13px;
  line-height: 1.4;
  padding: 15px 20px 0;
}

#case #download > div dl dd span {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.4;
  margin-bottom: 8px;
}

#case #download .btn {
  text-align: center;
}

/*----- e-book -----*/
#e-book {
  padding: 160px 0 145px;
  background: #606060;
}

#e-book h2 {
  color: #fef859;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

#e-book .top-text {
  text-align: center;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

#e-book > div {
  width: 1000px;
  margin: 0 auto 19px;
}

#e-book > div dl {
  width: 290px;
  height: 380px;
  background: #fff;
  margin-bottom: 60px;
}

#e-book > div dl dt {
  margin-bottom: -4px;
}

#e-book > div dl dd {
  font-size: 13px;
  line-height: 1.4;
  padding: 0 19px;
}

#e-book > div dl dd span {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

#e-book .btn {
  text-align: center;
}

#e-book #cloud {
  padding: 52px 40px 52px;
  margin: 100px auto 0;
  outline: 1px solid #0e6eb8;
  outline-offset: -5px;
  background: #fff url(../img/e-book_cloud_background.png)no-repeat center;
}

#e-book #cloud h3 {
  color: #0e65aa;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

#e-book #cloud figure {
  margin: 34px 0 40px;
}

#e-book #cloud .text {
  line-height: 1.6;
}

#e-book #cloud ul {
  margin: 20px 0 30px;
}

#e-book #cloud ul li {
  width: 200px;
  color: #0e65aa;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 2px;
  padding: 10px 0;
  border: 1px solid #0065b3;
  border-radius: 12px;
  background: #fff;
}

#e-book #cloud ul li + li {
  margin-left: 15px;
}

/*----- info-plan -----*/
#info-plan {
  margin-top: 170px;
  height: 460px;
  background: url(../img/info_plan_background_cover.png) no-repeat center top;
  background-size: cover;
}

#info-plan > div {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

#info-plan > div > div {
  display: table;
  padding-top: 72px;
}

#info-plan > div > div h2 {
  font-size: 25px;
  font-weight: bold;
  color: #cce4f7;
  text-align: center;
  margin-bottom: 20px;
}

#info-plan > div > div .text {
  font-size: 16px;
  color: #cce4f7;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 28px;
}

#info-plan > div > div .btn {
  text-align: center;
  margin-bottom: 26px;
}

#info-plan div > div .link-text {
  display: table;
  margin: 0 auto;
  padding: 12px 15px 13px;
  color: #fefc58;
  text-decoration: underline;
  background-color: rgba(0, 0, 0, 0.2);
}

#info-plan .right-img {
  position: absolute;
  top: -46px;
  right: -94px;
}
/*----- info-black -----*/
#info-black {
  padding: 40px 0 20px;
  background: #000;
}

#info-black > div {
  width: 1000px;
  margin: 0 auto;
}

#info-black > div dl {
  width: 251px;
  margin-right: -1px;
  border-left: #fff solid 1px;
  border-right: #fff solid 1px;
}

#info-black > div dl:nth-of-type(1) dt span {
  font-size: 24px;
  padding-top: 14px;
  margin-bottom: 24px;
}
#info-black > div dl:nth-of-type(2) dt span {
  font-size: 18px;
  line-height: 1.3;
  padding-top: 2px;
  margin-bottom: 24px;
}
#info-black > div dl:nth-of-type(3) dt span {
  font-size: 22px;
  padding-top: 16px;
  margin-bottom: 24px;
}
#info-black > div dl:nth-of-type(4) dt span {
  font-size: 22px;
  padding-top: 16px;
  margin-bottom: 24px;
}

#info-black > div dl dt {
  text-align: center;
  height: 218px;
}

#info-black > div dl dt span {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

#info-black > div dl dt img {
}

#info-black > div dl dd {
  text-align: center;
}

/*----- footer -----*/
footer {
  padding: 12px 0;
  background: #000;
}

footer small {
  display: block;
  font-size: 12px;
  text-align: center;
  color: #fff;
}


/*----- form -----*/
#form header {
  background: #fff;
  border-bottom: #cacaca solid 1px;
  position: static;
}

#form #formFrame {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 95px;
}

#form #formFrame .left-box {
  width: 500px;
  margin-top: 76px;
}

#form #formFrame .left-box .form-img {
  margin-bottom: 20px;
  text-align: center;
}

#form #formFrame .left-box h2 {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  line-height: 1.7;
  letter-spacing: 2px;
  border-top: #d3d3d3 solid 5px;
  border-bottom: #d3d3d3 solid 5px;
  text-align: center;
  padding: 26px 0;
}

#form #formFrame .left-box dl {
  margin-bottom: 30px;
}

#form #formFrame .left-box dl dt {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin-bottom: 14px;
}

#form #formFrame .left-box dl dd {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

#form #formFrame .left-box dl dd .red {
  color: #d70c19;
}

#form #formFrame .left-box .bold-text {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  margin: 30px 0 16px;
}

#form #formFrame .left-box .text {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

#form #formFrame .form-box {
  width: 450px;
  margin-top: 65px;
  padding: 36px 0 0;
  border-radius: 5px;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.4);
  background: #fff;
}

#form #formFrame .form-box h2 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #898989;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

#form #formFrame .form-box h2 .red {
  color: #d70c19;
  font-weight: bold;
  letter-spacing: 2px;
}

#form #formFrame .form-box h2 .blue {
  color: #005693;
  font-weight: bold;
  letter-spacing: 2px;
}

#form #formFrame .thanks-box {
  margin: 65px 0 300px;
}

#form #formFrame .thanks-box h2 {
  font-size: 29px;
  font-weight: bold;
  color: #333;
  line-height: 1.7;
  letter-spacing: 2px;
  border-top: #d3d3d3 solid 5px;
  border-bottom: #d3d3d3 solid 5px;
  text-align: center;
  padding: 44px 0;
  margin-bottom: 28px;
}

#form #formFrame .thanks-box .thanks-text {
  line-height: 2.4;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

#form #formFrame .thanks-box .go-top {
  text-align: center;
}

#form #formFrame .thanks-box .go-top a {
  color: #0c86f8;
  text-decoration: underline;
}

#form #formFrame .thanks-box .go-top a:hover {
  text-decoration: none;
}
