@charset "UTF-8";
body {
  color: #333;
  background: #fff;
  font-size: 14px;
  position: relative;
}

/*----- 共有 -----*/
/*########
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;
}

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

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

a img:hover,
input[type=image]:hover {
  opacity: 0.7;
}

.fixed-box {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.lock {
  overflow:hidden;
}
.modal-overlay {
  z-index:99998;
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:120%;
  background-color:rgba(0,0,0,0.75);
}
.modal-wrap {
  z-index:99999;
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:auto;
}

/*----- header -----*/
header {
  border-bottom: 4px solid #5cc6f6;
  background-color: #fff;
}

header .l-box {
  width: 1000px;
  margin: 0 auto;
  padding: 12px 0 11px;
}

header h1 {
  margin: 0 66px 0 0;
}

header p {
  padding: 12px 0 0 0;
}

/*----- fv -----*/
#fv {
  margin-bottom: 50px;
  padding-bottom: 30px;
  background: #fff7e0 url(../img/fv_image_background_pattern.png) repeat-x top;
  background-size: 32px 490px;
}

#fv .fv-loop-img img {
  display: block;
  width: 1080px !important;
  height: 100px !important;
  margin-right: 20px;
}

#fv .fv-loop-img {
  opacity: 0;
}

#fv .slick-initialized {
  transition: 0.9s;
  opacity: 1;
}

#fv .fv-img-top {
  margin-top: 40px;
}

#fv .fv-img-bottom {
  margin-top: 280px;
}

#fv .fv {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

#fv .fv .l-left-box {
  padding-top: 25px;
}

#fv .fv .l-left-box h2 {
  margin-bottom: 44px;
}

#fv .fv .l-left-box .fv-info {
  width: 574px;
}

#fv .fv .l-left-box .fv-info .title {
  margin-bottom: 18px;
}

#fv .fv .l-left-box .fv-info .info-btn {
  margin-bottom: 30px;
}

#fv .fv .fv-form {
  position: absolute;
  top: -33px;
  right: 0;
  z-index: 1;
  width: 400px;
  border-radius: 10px;
  border: #5cc6f6 solid 1px;
  background: #cdefff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

#fv .fv .fv-form h2 {
  position: relative;
  background: #006cd2;
  margin: -1px -1px 22px;
  padding: 18px 0 20px 100px;
  border-radius: 10px 10px 0 0;
}

#fv .fv .fv-form h2 .left-img {
  position: absolute;
  top: -13px;
  left: -17px;
}

#fv .fv .fv-form h2 .right-img {
  position: absolute;
  top: -13px;
  right: 0;
}

#fv .fv .fv-form .error {
  box-shadow: 2px 2px 4px gray;
  width: 160px;
  position: absolute;
  top: -35px;
  left: 170px;
  color: #fff;
  font-size: 12px;
  background: #f00;
  padding: 9px;
  border:2px solid #ca8888;
  border-radius: 5px;
}

#fv .fv .fv-form dl.name dd .error,
#fv .fv .fv-form dl.area dd .error {
  left: 50px;
}

#fv .fv .fv-form .agree .error {
  top: -45px;
  left: 210px;
  text-align: left;
}

#fv .fv .fv-form .error::before,
#fv .fv .fv-form .error::after {
  border: solid transparent;
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  top:100%;
  left:14%;
}

#fv .fv .fv-form .error::before {
  border-color: rgba(202, 136, 136, 0);
  border-top-width:9px;
  border-bottom-width:9px;
  border-left-width:9px;
  border-right-width:9px;
  margin-left: -9px;
  margin-top: 2px;
  border-top-color:#ca8888;

}

#fv .fv .fv-form .error::after {
  border-color: rgba(255, 0, 0, 0);
  border-top-width:7px;
  border-bottom-width:7px;
  border-left-width:7px;
  border-right-width:7px;
  margin-left: -7px;
  border-top-color:#f00;
}

#fv .fv .fv-form .form-table {
  padding: 0 29px;
}

#fv .fv .fv-form dl {
  margin-bottom: 19px;
}

#fv .fv .fv-form dl.name {
  width: 140px;
}

#fv .fv .fv-form dt {
  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;
}

#fv .fv .fv-form .req dt::before {
  content: "必須";
  color: #fff;
  background: #ed6262;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.0;
  margin-right: 9px;
  padding: 4px;
}

#fv .fv .fv-form dt,
#fv .fv .fv-form dd {
  font-size: 15px;
}

#fv .fv .fv-form dt {
  margin-bottom: 7px;
}

#fv .fv .fv-form dt label {
  font-size: 15px;
  font-weight: bold;
}

#fv .fv .fv-form dt span {
  display: block;
  font-size: 14px;
  margin-top: 3px;
}

#fv .fv .fv-form dd {
  position: relative;
}

#fv .fv .fv-form dd input[type="text"] {
  appearance: none;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 18px 6px;
  resize: none;
  width: 100%;
}

#fv .fv .fv-form dd select {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  border-radius: 5px;
  padding: 7px 18px 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../img/form_icon_arrow.png) no-repeat right 10px center;
}

#fv .fv .fv-form .area dd select {
  width: 140px;
}

#fv .fv .fv-form .btn-box {
  background: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: 28px;
  padding: 20px 0;
}

#fv .fv .fv-form .agree {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

#fv .fv .fv-form .agree::before {
  content: "必須";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background: #ed6262;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.0;
  margin-right: 9px;
  padding: 4px;
}

#fv .fv .fv-form .agree input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

#fv .fv .fv-form .agree label {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
}

#fv .fv .fv-form .agree label span {
  cursor: pointer;
  text-decoration: underline;
}

#fv .fv .fv-form #next-btn {
  margin: 0;
  text-align: center;
}

#privacy-policy.modal-content {
  position: absolute;
  z-index: 999999;
  background: #fff;
  width: 820px;
  border: #5cc6f6 solid 4px;
  border-radius: 10px;
  padding: 26px;
}

#privacy-policy.modal-content .scroll-box {
  overflow-y: scroll;
  height: 390px;
  border: #e2e2e2 solid 1px;
  padding: 28px;
}

#privacy-policy.modal-content dl {
  margin-bottom: 22px;
}

#privacy-policy.modal-content dl dt {
  font-size: 15px;
  line-height: 1.8;
}

#privacy-policy.modal-content dl dd {
  font-size: 13px;
  line-height: 1.8;
}

#privacy-policy.modal-content ul li {
  margin-bottom: 20px;
  line-height: 1.5;
}

#privacy-policy.modal-content ul li a {
  color: #0068B4;
}


#privacy-policy.modal-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 22px;
}

#privacy-policy.modal-content .text {
  font-size: 13px;
  line-height: 1.8;
}

#privacy-policy.modal-content .modal-close {
  margin-top: 20px;
  text-align: center;
}

#privacy-policy.modal-content .modal-close img {
  cursor: pointer;
}

/*----- movie -----*/
#movie {
  width: 1200px;
  margin: 0 auto 200px;
  padding-top: 36px;
  border: #cdefff solid 8px;
  border-radius: 100px;
}

#movie > div {
  width: 1000px;
  margin: 0 auto;
}

#movie > div .l-left-box {
  width: 440px;
}

#movie > div .l-left-box h2 {
  margin-bottom: 38px;
}

#movie > div .l-left-box dl dt {
  font-size: 24px;
  font-weight: bold;
  color: #28a7e1;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 18px;
}

#movie > div .l-left-box dl dd {
  font-size: 16px;
  line-height: 1.6;
}

#movie > div iframe {
  display: block;
  margin-top: 10px;
  box-shadow: 0 10px 10px rgba(97, 90, 69, 0.2);
}

#movie .bottom-img {
  margin: 50px 0 -77px;
  text-align: center;
}

/*----- trouble -----*/
#trouble {
  margin: 0 0 200px;
}

#trouble h2 {
  margin-bottom: 18px;
  text-align: center;
}

#trouble .l-top-box {
  width: 1000px;
  margin: 0 auto 116px;
}

#trouble .trouble-charge h3 {
  margin: 0 0 50px;
  text-align: center;
}

#trouble .trouble-charge .l-bottom-box {
  padding: 68px 0 80px;
  background-image: url(../img/trouble_image_background_pattern.png);
}

#trouble .trouble-charge .slider-tab {
  width: 962px;
  margin: 0 auto 10px;
}

#trouble .trouble-charge .slider-contents li {
  width: 1000px;
  padding: 0 20px;
}

#trouble .trouble-charge .slider-contents li img {
  width: 100%;
}

/*----- reason -----*/
#reason {
  margin: 0 0 110px;
}

#reason h2 {
  margin: 0 0 86px;
  text-align: center;
}

#reason .reason-sec {
  margin: 0 0 160px;
}

#reason .reason-sec h3 {
  margin: 0 0 50px;
  border-bottom-style: solid;
  border-bottom-width: 8px;
  text-align: center;
}

#reason .reason-sec .l-box {
  width: 1000px;
  margin: 0 auto;
}

#reason .reason-sec .l-box section {
  width: 450px;
  height: 458px;
  border-radius: 50%;
}

#reason .reason-sec .l-box section h4 {
  margin: 0 0 27px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.1429;
  font-size: 28px;
  font-weight: bold;
}

#reason .reason-sec .l-box section h4 span {
  display: block;
  margin: 0 0 22px;
}

#reason .reason-sec .l-box section p {
  width: 317px;
  margin: 0 auto 0.5em;
  line-height: 1.5;
}

#reason .reason-sec .l-box section p:last-child {
  margin-bottom: 0;
}

#reason .reason-sec .catch {
  margin: 0 0 34px;
  text-align: center;
}

#reason .reason-sec .l-button-box p:first-child {
  margin: 0 40px 0 0;
}

#reason .reason-sec .plan {
  margin: 29px 0 0;
}

#reason .reason-sec .plan h4 {
  margin: 0 0 31px;
  text-align: center;
}

#reason .reason-sec .plan .plan-img {
  margin: 0 0 51px;
  text-align: center;
}

#reason .reason-sec .plan .plan-btn {
  text-align: center;
}

#reason .reason-sec .plugin h4 {
  margin: 44px 0 25px;
  text-align: center;
}

#reason .reason-sec .plugin .plugin-inner {
  padding: 30px 0 41px;
  background-image: url(../img/function_image_background_pattern.png);
  text-align: center;
}

#reason .reason-sec .plugin .plugin-img {
  width: 1000px;
  margin: 0 auto 10px;
  padding: 32px 0;
  background-color: #fff;
  text-align: center;
}

#reason .reason-sec .plugin .plugin-btn {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0 0;
  background-image: url(../img/view_image_character_01.png),url(../img/view_image_character_02.png);
  background-repeat: no-repeat;
  background-position: left 80px bottom, right 100px bottom;
}

#reason .reason-sec:nth-of-type(1) .l-box {
  margin-bottom: 63px;
}

#reason .reason-sec:nth-of-type(1) .l-box section {
  padding: 68px 0 0;
  background-color: #cdefff;
}

#reason .reason-sec:nth-of-type(1) h3 {
  border-color: #87d4fc;
}

#reason .reason-sec:nth-of-type(2) .l-box section {
  padding: 90px 0 0;
  background-color: #dcf8e9;
}

#reason .reason-sec:nth-of-type(2) h3 {
  border-color: #78dbd9;
}

#reason .reason-sec:nth-of-type(3) .l-box section {
  padding: 90px 0 0;
  background-color: #fffbdb;
}

#reason .reason-sec:nth-of-type(3) h3 {
  border-color: #ffad4d;
}

/*----- function -----*/
#function {
  margin-bottom: 58px;
  padding-bottom: 30px;
  background: url(../img/function_image_background_pattern.png) repeat;
}

#function h2 {
  background: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 34px;
}

#function ul {
  width: 940px;
  margin: 0 auto 10px;
}

#function ul li {
  cursor: pointer;
  width: 220px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: center;
  letter-spacing: -0.5px;
  background: #fff;
  border: #28a7e1 solid 2px;
  margin-bottom: 20px;
  padding: 22px 0;
}

#function ul li.active {
  color: #fff;
  background: #28a7e1;
}

#function .tab-content {
  display: none;
  width: 1000px;
  margin: 0 auto;
  padding: 40px 40px 40px 50px;
  background: #fff;
}

#function .tab-content#con01 {
  display: block;
}

#function .tab-content dl {
  padding-top: 20px;
  width: 478px;
}

#function .tab-content dl dt {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #28a7e1;
}

#function .tab-content dl dd {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

#function .tab-content dl dd + dd {
  margin-top: 14px;
}

/*----- info -----*/
.info h2 {
  margin-bottom: 34px;
  text-align: center;
}

.info > div {
  width: 850px;
  margin: 0 auto;
}

/*----- view -----*/
#view {
  background: #cdefff;
  margin-top: 180px;
  padding: 1px 0 60px;
}

#view h2 {
  margin: -111px 0 28px;
  text-align: center;
}

#view .l-top-box {
  width: 1240px;
  margin: 0 auto 30px;
  padding-top: 60px;
  background: #fff;
}

#view .l-top-box .text-img {
  text-align: center;
  background: #006cd2;
  padding: 10px 0 11px;
}

#view .l-top-box ul {
  width: 940px;
  margin: 0 auto 26px;
}

#view .l-top-box ul li {
  width: 220px;
  height: 70px;
  padding-top: 28px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #006cd2;
  cursor: pointer;
  background: url(../img/view_button_off.png) no-repeat;
}

#view .l-top-box ul li.active {
  color: #fff;
  text-decoration: underline;
  background: url(../img/view_button_on.png) no-repeat;
}

#view .l-top-box .tab-content {
  display: none;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}

#view .l-top-box .tab01 {
  display: block;
}

#view .l-top-box .tab-content dl {
  width: 380px;
  margin-left: 25px;
  padding-top: 52px;
}

#view .l-top-box .tab-content dl dt {
  font-size: 24px;
  font-weight: bold;
  color: #006cd2;
  margin-bottom: 34px;
}

#view .l-top-box .tab-content dl dd {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

#view .l-center-box {
  width: 1240px;
  margin: 0 auto 40px;
  padding: 71px 0 0;
  background-color: #fff;
  background-image: url(../img/view_function_arrow.png);
  background-position: center top;
  background-repeat: no-repeat;
}

#view .l-center-box h3 {
  margin: 0 0 29px;
  text-align: center;
}

#view .l-center-box .icon-list {
  margin: 0 0 41px;
  text-align: center;
}

#view .l-center-box .bottom-text {
  padding: 9px 0 11px;
  background-color: #006cd2;
  color: #fff;
  text-align: center;
}

#view .l-bottom-box {
  width: 880px;
  margin: 0 auto;
}

/*----- voice -----*/
#voice {
  margin-bottom: 160px;
  overflow: hidden;
  padding: 98px 0 0;
}

#voice h2 {
  margin-bottom: 54px;
  text-align: center;
}

#voice .slider {
  width: 980px;
  margin: 0 auto;
  opacity: 0;
  transition: 2s;
}

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

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

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

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

#voice .slick-dots {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: -38px;
}

#voice .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 12px;
  background: #e2e2e2;
  border-radius: 3px;
}

#voice .slick-dots li.slick-active {
  width: 16px;
  height: 16px;
  background: #73c3ed;
  border-radius: 3px;
}

#voice .slick-dots li button {
  display: none;
  font-size: 0;
}

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

#voice .slick-slide:focus {
  outline: none;
}

#voice .slider-box {
  width: 940px;
  height: 460px;
  border: #e2e2e2 solid 2px;
  background: #fff;
}

#voice .slider-box .l-left-box {
  width: 410px;
  height: 460px;
  background: #006cd2;
  margin: -2px 0 0 -2px;
  padding: 70px 55px 0;
}

#voice .slider-box .l-left-box dt {
  display: table;
  margin: 0 auto 16px;
}

#voice .slider-box .l-left-box dd .title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 13px;
}

#voice .slider-box .l-left-box dd .text {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

#voice .slider-box .l-right-box {
  width: 480px;
}

#voice .slider-box .l-right-box dt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
  border-bottom: #d2d2d2 solid 4px;
  line-height: 1.3;
  margin-bottom: 21px;
  padding: 0 0 11px 50px;
}

#voice .slider-box .l-right-box dd {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 0 50px;
}

#voice .slider-box .l-right-box dd p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
}

#voice .l-bottom-box {
  width: 840px;
  margin: 78px auto 0;
}

#voice .slider-box .l-left-box dd ul li {
  position: relative;
  padding-top: 4px;
  line-height: 1.5;
}
/* チェックマークの実装 */
#voice .slider-box .l-left-box dd ul li::after{
  content: '';
  display: block;
  position: absolute;
  top: .8em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 2px solid  #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg);
}

/*----- plan -----*/
#plan {
  margin-bottom: 130px;
}

#plan h2 {
  margin-bottom: 62px;
  text-align: center;
}

#plan .main-img {
  margin-bottom: 60px;
  text-align: center;
}

#plan .btn {
  text-align: center;
}

/*----- faq -----*/
#faq {
  margin-bottom: 80px;
}

#faq h2 {
  margin-bottom: 74px;
  text-align: center;
}

#faq dl {
  width: 840px;
  margin: 0 auto 20px;
  border: #85bff6 solid 2px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 1px 0 rgba(0, 0, 0, 0.06);
}

#faq dl.active {
  border: #ffbaba solid 2px;
}

#faq dl dt {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  background-image: url(../img/faq_icon_q.png),url(../img/faq_image_arrow_off.png);
  background-repeat: no-repeat,no-repeat;
  background-position: 23px center,790px center;
  padding: 24px 0 24px 84px;
}

#faq dl.active dt {
  background-image: url(../img/faq_icon_q.png),url(../img/faq_image_arrow_on.png);
  background-repeat: no-repeat,no-repeat;
  background-position: 23px center,790px center;
}

#faq dl dd {
  display: none;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  background: url(../img/faq_icon_a.png) no-repeat 6px 16px;
  border-top: #ccc solid 1px;
  margin: 0 18px;
  padding: 16px 20px 28px 66px;
}

#faq dl dd span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 26px;
}

/*----- footer-info -----*/
#footer-info {
  padding: 30px 0;
  background: url(../img/info_02_image_background_cover.jpg) no-repeat center top;
  background-size: cover;
}

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

#footer-info dl {
  width: 250px;
  height: 340px;
  border-left: #d8dee2 solid 1px;
}

#footer-info dl:last-of-type {
  border-right: #d8dee2 solid 1px;
}

#footer-info dl dt.title {
  height: 115px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  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;
}

#footer-info dl:first-of-type dt.title {
  font-size: 22px;
}

#footer-info dl dt.img {
  height: 144px;
  text-align: center;
}

#footer-info dl dd {
  text-align: center;
}

#footer-info dl dd em {
  display: block;
  margin: -20px 0 10px;
  font-size: 22px;
  font-weight: bold;
}

#footer-info dl dd span {
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

/*----- footer -----*/
footer {
  padding: 40px 0 12px;
  background: #006cd2;
}

footer > div {
  width: 1000px;
  margin: 0 auto 60px;
}

footer > div h2 {
  margin-right: 50px;
}

footer > div p {
  font-size: 14px;
  color: #fff;
  line-height: 2.0;
}

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


/*----- form -----*/
#form header {
  padding: 10px 0;
  border-bottom: #5cc6f6 solid 4px;
}

#form header h1 {
  text-align: center;
}

#form #mainFrame {
  margin: 0 auto;
  padding: 66px 0 100px 30px;
  width: 1000px;
}

#form .l-left-box {
  width: 480px;
}

#form .l-left-box h2 {
  width: 440px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 32px 0;
}

#form .l-left-box h2.form01-title {
  margin: 0 auto 36px;
  color: #006cd2;
  border-top: #006cd2 solid 2px;
  border-bottom: #006cd2 solid 2px;
}

#form .l-left-box h2.form02-title {
  margin: 0 auto 58px;
  color: #ff6a00;
  border-top: #ff6a00 solid 2px;
  border-bottom: #ff6a00 solid 2px;
}

#form .l-left-box h2.form03-title {
  margin: 0 auto 58px;
  color: #0ca67f;
  border-top: #0ca67f solid 2px;
  border-bottom: #0ca67f solid 2px;
}

#form .l-left-box .main-img {
  text-align: center;
  margin-bottom: 26px;
}

#form .l-left-box .text {
  height: 118px;
  display: table;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

#form .l-left-box .tel-box {
  width: 480px;
  background: #cdefff url(../img/form_tel_image.png) no-repeat right 10px top 10px;
  border-radius: 10px;
  padding: 32px 0 20px;
}

#form .l-left-box .tel-box h3 {
  margin: 0 0 12px 30px;
}

#form .l-left-box .tel-box > div {
  width: 420px;
  margin: 0 auto;
  padding: 12px 0;
  text-align: center;
  background: #fff;
  border: #7bc9ee solid 2px;
}

#form .l-left-box .tel-box > div em {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

#form .l-left-box .tel-box > div .tel-text {
  font-size: 14px;
  color: #000;
}

#form .l-form-box {
  width: 440px;
  position: relative;
  border-radius: 10px;
  border: #5cc6f6 solid 1px;
  background: #cdefff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  padding: 52px 0 0;
}

#form .l-form-box .error {
  box-shadow: 2px 2px 4px gray;
  width: 160px;
  position: absolute;
  top: -35px;
  left: 170px;
  color: #fff;
  font-size: 12px;
  background: #f00;
  padding: 9px;
  border:2px solid #ca8888;
  border-radius: 5px;
}

#form .l-form-box dl.name dd .error,
#form .l-form-box dl.area dd .error {
  left: 50px;
}

#form .l-form-box .agree .error {
  top: -45px;
  left: 210px;
  text-align: left;
}

#form .l-form-box .error::before,
#form .l-form-box .error::after {
  border: solid transparent;
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  top:100%;
  left:14%;
}

#form .l-form-box .error::before {
  border-color: rgba(202, 136, 136, 0);
  border-top-width:9px;
  border-bottom-width:9px;
  border-left-width:9px;
  border-right-width:9px;
  margin-left: -9px;
  margin-top: 2px;
  border-top-color:#ca8888;

}

#form .l-form-box .error::after {
  border-color: rgba(255, 0, 0, 0);
  border-top-width:7px;
  border-bottom-width:7px;
  border-left-width:7px;
  border-right-width:7px;
  margin-left: -7px;
  border-top-color:#f00;
}

#form .l-form-box .form-table {
  padding: 0 48px;
}

#form .l-form-box dl {
  margin-bottom: 19px;
}

#form .l-form-box dl.name {
  width: 140px;
}

#form .l-form-box dt {
  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;
}

#form .l-form-box .req dt::before {
  content: "必須";
  color: #fff;
  background: #ed6262;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.0;
  margin-right: 9px;
  padding: 4px;
}

#form .l-form-box dt,
#form .l-form-box dd {
  font-size: 15px;
}

#form .l-form-box dt {
  margin-bottom: 7px;
}

#form .l-form-box dt label {
  font-size: 15px;
  font-weight: bold;
}

#form .l-form-box dt span {
  display: block;
  font-size: 14px;
  margin-top: 3px;
}

#form .l-form-box dd {
  position: relative;
}

#form .l-form-box .btn-box {
  background: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: 38px;
  padding: 32px 0 10px;
}

#form .l-form-box .agree {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
}

#form .l-form-box .agree::before {
  content: "必須";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background: #ed6262;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.0;
  margin-right: 9px;
  padding: 4px;
}

#form .l-form-box .agree input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

#form .l-form-box .agree label {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
}

#form .l-form-box .agree label span {
  cursor: pointer;
  text-decoration: underline;
}

/*----- input周り(text,select,textarea等) -----*/
#form .l-form-box dd input[type="text"] {
  appearance: none;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 18px 6px;
  resize: none;
  width: 100%;
}

#form .l-form-box dd select {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  border-radius: 5px;
  padding: 7px 18px 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../img/form_icon_arrow.png) no-repeat right 10px center;
}

#form .l-form-box dl.area dd select {
  width: 140px;
}

#form .l-form-box dd textarea {
  appearance: none;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 18px 6px;
  resize: none;
  width: 100%;
  height: 94px;
}

/*----- パーツ(項目ごとの微調整用) -----*/


/*----- formボタン -----*/
#form .l-form-box #next-btn {
  margin: 0;
  text-align: center;
}

/*----- confrim -----*/
#form .confirm-wrap{
  width: 800px;
  margin: 0 auto 50px;
  padding: 55px 90px 37px;
  border: 1px solid #5cc6f6;
  border-radius: 10px;
  background-color: #cdefff;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
}
#form .confrim-left{
  width: 331px;
  margin: 0 14px 0 0;
}
#form .confirm-text{
  margin: -44px 0 26px;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 16px;
}
#form .confirm-wrap dl{
  margin: 0 0 40px;
}
#form .confirm-wrap dl:last-child{
  margin-bottom: 0;
}
#form .confirm-wrap dt{
  width: 203px;
  margin: 0 25px 0 0;
}
#form .confirm-wrap dt label{
  font-weight: bold;
}
#form .confirm-wrap dt::before{
  content: "必須";
  margin: 0 5px 0 0;
  padding: 4px 2px;
  background-color: #ed6262;
  color: #fff;
  font-weight: bold;
}
#form .confirm-wrap dd{
  width: 240px;
  line-height: 1.05em;
}
#form .confirm-wrap .confrim-right dt{
  width: 120px;
}
#form .confirm-wrap .confrim-right dd{
  width: 170px;
}
#form .send-btn{
  margin: 0 0 29px;
  text-align: center;
}


/*----- thanks -----*/
#form .thanks-text {
  margin: 66px 0 70px;
}
#form .thanks-text h2 {
  width: 840px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 32px 0;
}

#form .thanks-text h2.form01-title {
  margin: 0 auto 80px;
  color: #006cd2;
  border-top: #006cd2 solid 2px;
  border-bottom: #006cd2 solid 2px;
}

#form .thanks-text h2.form02-title {
  margin: 0 auto 80px;
  color: #ff6a00;
  border-top: #ff6a00 solid 2px;
  border-bottom: #ff6a00 solid 2px;
}

#form .thanks-text h2.form03-title {
  margin: 0 auto 80px;
  color: #0ca67f;
  border-top: #0ca67f solid 2px;
  border-bottom: #0ca67f solid 2px;
}
#form .thanks-text .title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #006cd2;
  margin-bottom: 40px;
}
#form .thanks-text .text {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
#form .thanks-text .text + .text {
  margin-top: 28px;
}
#form .go-top {
  margin-bottom: 120px;
  text-align: center;
}
#form .go-top a {
  font-size: 16px;
  font-weight: bold;
  color: #006cd2;
  text-decoration: underline;
}
#form .go-top a:hover {
  text-decoration: none;
}
