@charset "UTF-8";
body {
  color: #252525;
  overflow-x: hidden;
}
body.on-lock {
  overflow-y: hidden;
}

.ly_inner {
  width: 1100px;
  margin: 0 auto;
}

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

/*----------- ly_fixed_btn -----------*/
.ly_fixed_btn {
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(rgba(149,149,149,0),rgba(149,149,149,1));
}
.ly_fixed_btn .bl_fixed_box {
  width: 960px;
  margin: 0 auto;
}

/*----------- fv -----------*/
.ly_fv {
  background: url(../img/fv_backgroundImage.jpg) no-repeat center/cover;
  padding-bottom: 33px;
}

.bl_fv_l {
  margin-top: 47px;
}

.bl_fv_ttl {
  margin-top: 50px;
}

.bl_fv_conts {
  margin-top: 16px;
}

.bl_fv_catch {
  margin-left: 10px;
}

.bl_fv_list {
  width: 715px;
  margin-top: 20px;
}

.bl_fv_point {
  margin-top: -2px;
}

.bl_fv_r {
  margin-top: 20px;
}
.bl_fv_r form {
  width: 370px;
  border: solid 1px #8b8989;
  border-radius: 5px;
  position: relative;
  margin-top: 10px;
  padding-bottom: 30px;
  background: #fff;
}
.bl_fv_r form dl {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 13px;
}
.bl_fv_r form dl:first-of-type {
  margin-top: 18px;
}
.bl_fv_r form dl + dl {
  margin-top: 10px;
}
.bl_fv_r form dl.req dt::after {
  content: "※";
  font-size: 10px;
  color: #fe2828;
  vertical-align: top;
  margin-left: 0;
}
.bl_fv_r form dl .error {
  display: block;
  width: 100%;
  color: #df3434;
  font-size: 12px;
  padding-bottom: 8px;
}
.bl_fv_r form dl dt {
  font-size: 14px;
  line-height: 1.2857142857;
  width: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
}
.bl_fv_r form dl dd input[type=text], .bl_fv_r form dl dd textarea, .bl_fv_r form dl dd select {
  border: none;
  width: 240px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f0f0f0;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  resize: none;
  cursor: pointer;
}
.bl_fv_r form dl textarea {
  height: 70px;
}

.bl_form_catch {
  position: absolute;
  top: -14px;
  left: -18px;
}

.bl_form_ttl {
  text-align: center;
  background: #f4bc1e;
  padding: 16px 0 13px 25px;
}

.ly_fv .bl_fv_r form .privacy-policy {
  width: 340px;
  height: 100px;
  margin: 8px auto;
}

.bl_privacypolicy_body {
  padding: 17px 20px;
}

.bl_privacypolicy_note {
  font-size: 12px;
  line-height: 1.3333333333;
  margin: 6px 0 0 19px;
  position: relative
}
.bl_privacypolicy_note span {
  color: #fe2828;
}

.bl_privacypolicy_agree {
  width: 240px;
  padding: 9px 0;
  text-align: center;
  border-radius: 17px;
  background: #e7e7e7;
  margin: 14px auto 0;
  display: table;
  font-size: 0;
  position: relative;
}
.bl_privacypolicy_agree .error {
  font-size: 12px;
  color: red;
  position: absolute;
  top: -13px;
  left: 80px;
}
.bl_privacypolicy_agree input[type=checkbox] {
  display: none;
}
.bl_privacypolicy_agree input[type=checkbox] + label::before {
  content: "";
  background: #fff;
  border: 1px solid #000;
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  vertical-align: bottom;
  margin-right: 10px;
}
.bl_privacypolicy_agree input[type=checkbox] + label::after {
  content: "";
  border-right: 2px solid #b54a4a;
  border-bottom: 2px solid #b54a4a;
  display: block;
  opacity: 0;
  width: 5px;
  height: 12px;
  position: absolute;
  left: 86px;
  bottom: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl_privacypolicy_agree input[type=checkbox]:checked + label::before {
  border-color: #b46363;
}
.bl_privacypolicy_agree input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.bl_privacypolicy_agree label {
  font-size: 14px;
  position: relative;
  display: block;
  width: 100%;
}
.bl_privacypolicy_agree label:hover {
  cursor: pointer;
}
.bl_privacypolicy_agree::after {
  content: "※";
  font-size: 10px;
  color: #fe2828;
  vertical-align: top;
  position: absolute;
  top: 7px;
  right: 71px;
}

.bl_form_confirm {
  margin: 20px auto 0;
  text-align: center;
}

.bl_form_confirmBtn {
  width: 330px;
  height: 65px;
  background: url(../img/fv_form_button_off.png) no-repeat center/cover;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bl_form_confirmBtn:hover {
  background: url(../img/fv_form_button_on.png) no-repeat center/cover;
}

.bl_fv_button {
  margin-top: 20px;
}

/*----- thumbnail -----*/
#thumbnail {
  overflow-x: hidden;
}
#thumbnail .thumbnail-slider .slider-inner:first-child {
  animation: loop 90s linear infinite;
}

#thumbnail .thumbnail-slider .slider-inner:nth-child(2) {
  animation: loop2 90s -60s linear infinite;
}

#thumbnail .thumbnail-slider .slider-inner:last-child {
  animation: loop3 90s -30s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(200%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-200%);
  }
}

@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-300%);
  }
}

/*----------- logo -----------*/
.ly_logo {
  margin-top: 65px;
}

.bl_logo_ttl {
  text-align: center;
  border-bottom: solid 1px #a6a6a6;
  padding-bottom: 25px;
  width: 1100px;
  margin: 0 auto 30px;
}

.bl_logo_list {
  margin: 0 auto 25px;
}

/*----------- case -----------*/
.ly_case {
  margin-top: 60px;
}

.bl_case_top {
  text-align: center;
  padding: 105px 0 45px;
  background: #f8f8f8;
}

.bl_case_txt {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 26px;
}
.bl_case_txt span {
  font-weight: bold;
  color: #c71111;
  letter-spacing: 0.02em;
}

.bl_case_main {
  background: #535353;
  padding: 53px 0 75px;
}

.bl_caseList li {
  margin-bottom: 25px;
}

.bl_caseList_meta {
  margin: 11px 0 0 5px;
}
.bl_caseList_meta span {
  padding: 3px 15px;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 11px;
}

.bl_case_main li p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  margin-top: 19px;
}

.bl_case_acc_btnBox{
  background: url(../img/short_box.png)no-repeat top center;
  width: 812px;
  height: 87px;
  margin: 0 auto;
  padding: 15px 30px 0px 0;
}

.bl_case_acc_btnBox p{
 text-align: right;
}

.bl_case_acc_btnBox p.active::after{
  top: 60%;
  transform: translate(0,-50%)rotate(135deg);
}

.bl_case_box{
  margin-top: 75px;
  display: none;
}

.bl_case_box.active{
  display: block;
}

/*----------- result -----------*/
.ly_result {
  background: url(../img/solution_backgroundImage.png)no-repeat top center/100% 440px;
  padding-bottom: 37px;
}

.bl_result_ttl {
  text-align: center;
  padding: 34px 0;
}

.bl_result_list {
  margin-top: 25px;
}
.bl_result_list li {
  margin-bottom: 25px;
}

/*----------- info -----------*/
.ly_info {
  padding: 28px 0 30px;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(rgb(238, 255, 145)), color-stop(30%, rgb(204, 255, 205)), color-stop(50%, rgb(223, 249, 255)), to(rgb(253, 214, 242)));
  background: linear-gradient(-90deg, rgb(238, 255, 145) 0%, rgb(204, 255, 205) 30%, rgb(223, 249, 255) 50%, rgb(253, 214, 242) 100%);
}

.bl_info_catch {
  margin: -35px 0 0 18px;
}

.bl_info_wrapper {
  width: 1005px;
  height: 223px;
  margin: 42px auto 0;
}

/*----------- solution -----------*/
.ly_solution {
  margin-top: 70px;
  background-size: 100% auto;
  padding-bottom: 35px;
}

.bl_solution_ttl {
  text-align: center;
}

.bl_solutionList {
  margin-top: 65px;
  padding-right: 10px;
}
.bl_solutionList li {
  width: 354px;
  height: 332px;
  background: linear-gradient(90deg, #d5ebf3 0%, #d5ebf3 50%, #dff0d2 50%, #dff0d2 100%);
  padding: 20px 0 0;
  margin-bottom: 43px;
  -webkit-box-shadow: 5px 5px 11px rgba(0, 0, 0, .12);
          box-shadow: 5px 5px 11px rgba(0, 0, 0, .12);
}

.bl_solutionList_ttl {
  text-align: center;
}

.bl_solutionList_ttl img{
  width: 315px;
}

.bl_solutionList_graph img{
  width: 145px;
}

.bl_solutionList_wrapper {
  width: 312px;
  margin: 23px auto 0;
  display: flex;
  gap: 28px;
}

/*----------- feature -----------*/
.ly_feature {
  margin-bottom: 60px;
}

.ly_feature h2{
  margin: 90px 0 0;
  text-align: center;
}

.bl_featureTop {
  text-align: center;
  background: url(../img/feature_backgroundImage.jpg) no-repeat center/cover;
  padding: 85px 0;
}

.bl_featureTop_ttl {
  margin-top: 20px;
}

.bl_featureBanner {
  text-align: center;
  background: #d3f2ef;
  padding: 14px 0 8px;
}

.bl_featureService {
  margin-top: 65px;
}

.bl_featureService_ttl {
  background: #ffd5e1;
  text-align: center;
  padding: 18px 0;
}

.bl_featureService_list {
  border: solid 1px #ffd5e1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bl_featureService_list li {
  text-align: center;
  background: #fff;
  padding: 30px 30px 25px;
}
.bl_featureService_list li:nth-child(3n+2) {
  background: #f6f6f6;
}

.bl_featureService_listTtl {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2727272727;
  letter-spacing: 0.05em;
  color: #f34c7b;
  margin-top: 16px;
}

.bl_featureService_listImg {
  margin-top: 7px;
}

.bl_featureService_listTxt {
  margin-top: 9px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.bl_featureService_listTxt span {
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.bl_featureCase {
  margin-top: 70px;
}

.bl_featureCase_ttl {
  text-align: center;
  background: #ffd5e1;
  padding: 18px 0;
}

.bl_featureCase_list {
  margin-top: 63px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.bl_featureCase_list > li {
  width: 350px;
  background: #f1f1f1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 27px;
}

.bl_featureCase_list .slick-list figure {
  width: 250px;
  height: 145px;
}
.bl_featureCase_list iframe {
  width: 100%;
  height: auto;
}
.bl_featureCase_listTtl {
  position: absolute;
  top: -15px;
  left: 0;
}

.bl_featureCase_listWrapper {
  width: 320px;
  margin: 15px auto 0;
}

.bl_featureCase_listTxt {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-top: 23px;
  padding: 0 19px;
  line-height: 1.75;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.bl_featureCase_listTxt span {
  font-weight: bold;
  letter-spacing: 0.06em;
}

.bl_featureCase_sliderTtl {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-top: 33px;
}

.bl_featureCase_slider {
  width: 250px;
  height: 140px;
  background: #ccc;
  margin: 10px auto 0;
}
.bl_featureCase_slider .slick-slide {
  height: 140px;
}
.bl_featureCase_slider .slick-arrow {
  position: absolute;
  top: 43%;
  z-index: 50;
  width: 10px;
  height: 11px;
  cursor: pointer;
}
.bl_featureCase_slider .slick-arrow.prev {
  left: -30px;
}
.bl_featureCase_slider .slick-arrow.next {
  right: -30px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.bl_featureCase_slider .slick-dots {
  margin: 13px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_featureCase_slider .slick-dots li {
  padding-bottom: 0;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.bl_featureCase_slider .slick-dots li button {
  display: none;
}
.bl_featureCase_slider .slick-dots li.slick-active {
  background: #7a7a7a;
}

.bl_featureCase_sliderImg {
  width: 250px;
  height: 140px;
}

.bl_featureCase_btn {
  margin-top: 50px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.bl_featureCase_btn:hover {
  opacity: 0.7;
}

.bl_featureyoutubeShort {
  background: #0d9dd3;
}

.bl_featureyoutubeShortList_wrapper.l-flex-between-start {
  margin: 45px 20px 0 45px;
}

h3.bl_featureyoutubeShortList_ttl {
  padding: 55px 20px 0;
}

.bl_featureyoutubeShort_txt {
  font-size: 18px;
  color: #fff;
  line-height: 1.75em;
  padding: 50px 0 55px;
}

.bl_featureyoutubeShort_txt span {
  color: #ddff55;
}

.bl_featureyoutubeShort_Img {
  text-align: center;
  margin-bottom: -60px;
}

.ly_info.__featureyoutube {
  padding-top: 90px;
}

.bl_shortcase_meta {
  margin: 11px 0 0 5px;
}

.bl_achievement_ttl {
  text-align: center;
  margin-bottom: 60px;
}

.bl_shortcase_meta span {
  padding: 3px 15px;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 11px;
}

.bl_shortcase_main {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  margin: 18px 0 50px 0;
}

.bl_point_content02{
  width: 720px;
  margin: 40px auto 0;
  background: #dff7f5;
  display: flex;
  padding: 20px 40px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bl_point_content02 ul li{
  font-size: 15px;
  line-height: 24px;
}

.bl_point_content02 ul li p{
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 19px;
}

/*----------- modal -----------*/
.bl_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 97;
}

.bl_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 98;
  overflow-y: scroll;
  background: rgba(0, 0, 0, .8);
}
.bl_modal::-webkit-scrollbar {
  display: none;
}

.bl_modal_closeBtn {
  position: absolute;
  z-index: 100;
  top: -15px;
  right: -15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #252525;
  border-radius: 50%;
  border: solid 1px #fff;
}
.bl_modal_closeBtn::before, .bl_modal_closeBtn::after {
  content: "";
  background: #fff;
  width: 2px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 13px;
}
.bl_modal_closeBtn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bl_modal_closeBtn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.bl_modal_body {
  width: 1000px;
  background: #fff;
  position: absolute;
  padding: 40px 30px;
  z-index: 99;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bl_modal_ttl {
  text-align: left;
  margin-left: 4px;
}

.bl_modal_plan {
  width: 140px;
  font-weight: bold;
}

.bl_modal_price {
  width: 170px;
  font-weight: bold;
}

.bl_modal_content {
  width: 625px;
  font-weight: bold;
}

.bl_modal_table td {
  background: #f2f3f6;
  vertical-align: middle;
  border: solid 4px #fff;
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 9px 0;
  height: 60px;
}
.bl_modal_table td.bl_modal_example {
  color: #fff;
  font-size: 15px;
  line-height: 1.1176470588;
  font-weight: bold;
}
.bl_modal_table td.bl_modal_example.__youtube {
  background: #de2730;
}
.bl_modal_table td.bl_modal_example.__promotion {
  background: #66d15b;
}
.bl_modal_table td.bl_modal_example.__movie {
  background: #56c2dd;
}

.bl_modal_tableHead td {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 8px 0;
  height: 40px;
}
.bl_modal_tableHead td.__youtube {
  background: #af2424;
}
.bl_modal_tableHead td.__promotion {
  background: #47ae3d;
}
.bl_modal_tableHead td.__movie {
  background: #1d9bba;
}

.bl_modal_yen {
  font-weight: bold;
}

.bl_modal_catch {
  margin-top: 44px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.bl_modal_catch span {
  color: #d51919;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.bl_modal_catch::before, .bl_modal_catch::after {
  content: "";
  background: url(../img/feature_case_modal_info_balloon.png) no-repeat center/contain;
  display: inline-block;
  width: 15px;
  height: 23px;
  vertical-align: middle;
}
.bl_modal_catch::before {
  margin-right: 40px;
}
.bl_modal_catch::after {
  margin-left: 40px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.bl_modal_wrapper {
  width: 900px;
  height: 205px;
  margin: 20px auto 0;
}

.bl_modal_btn {
  width: 436px;
}
.bl_modal_btn img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ly_info.__feature {
  padding-bottom: 10px;
}

.bl_info_catch.__feature {
  margin: -90px 0 0 0;
}

.bl_info_txt {
  margin: 15px 0 -30px;
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 0.065em;
}
.bl_info_txt span {
  font-weight: bold;
  color: #c71111;
  line-height: 1.7777777778;
  letter-spacing: 0.065em;
}

.bl_featurePoint {
  margin-top: 85px;
}

.bl_featurePoint_ttl {
  text-align: center;
}

.bl_featurePoint_list {
  margin-top: 55px;
}

.bl_featurePoint_body.__modified {
  background: #ffebf1;
  padding: 35px 0 60px;
}

.bl_featurePoint_body.__edit {
  background: #dff7dc;
  margin-top: 50px;
  padding-bottom: 60px;
}

.bl_featurePoint_item {
  position: relative;
}

.bl_featurePoint_item.__modified {
  padding: 0 20px;
}

.bl_featurePoint_item.__edit {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bl_featurePoint_num {
  position: absolute;
}
.bl_featurePoint_num.__modified {
  top: -52px;
  right: 60px;
}
.bl_featurePoint_num.__edit {
  top: -17px;
  left: 20px;
}

.bl_featurePoint_wrapper.__modified {
  margin: 29px 0 0 39px;
}
.bl_featurePoint_wrapper.__edit {
  margin: 54px 0 0 20px;
}

.bl_featurePoint_img.__edit {
  margin-top: 48px;
}

.bl_featurePoint_listTxt {
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0.08em;
  margin-top: 24px;
  width: 560px;
}
.bl_featurePoint_listTxt span {
  font-weight: bold;
  color: #bd010a;
  line-height: 1.5555555556;
  letter-spacing: 0.08em;
}
.bl_featurePoint_listTxt.__edit {
  width: 570px;
}
.bl_featurePoint_listTxt.__edit span {
  color: #000;
  color: initial;
}

/*----------- info price -----------*/
.ly_info.__price {
  margin-top: 60px;
  padding-bottom: 10px;
}

.bl_info_catch.__price {
  margin-left: 0;
}

.bl_info_txt.__price {
  margin-top: 30px;
}

/*----------- work -----------*/
.ly_work {
  margin: 70px 0 60px;
}

.bl_workTop {
  background: #dff7f5;
  padding: 70px 0 35px;
  text-align: center;
  margin: 88px auto;
}

.bl_workTop_ttl {
  text-align: center;
}

.bl_workTop_txt {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}
.bl_workTop_txt span {
  font-weight: bold;
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
}
.bl_workTop_txt span.bl_workTop_txtColor {
  color: #c71111;
}

.bl_workTop_flow {
  margin-top: 30px;
}

.bl_workTop_graph {
  margin: 35px 0 0 80px;
  text-align: left;
}

.bl_workCreate {
  background: #f1f1f1;
  margin-top: 70px;
  padding: 52px 0;
}

.bl_workCreate_bottom {
  background: #c39ddb;
  padding: 20px 0;
  margin-bottom: 45px;
}

.bl_workCreate_ttl {
  margin-top: 7px;
}

.bl_workCreate_txt {
  margin-top: 35px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  width: 550px;
}
.bl_workCreate_txt span {
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.bl_workEffect .bl_workEffect_top {
  padding: 52px 0;
}
.bl_workEffect .bl_workEffect_top .bl_workEffect_topTtl {
  margin-bottom: 35px;
}
.bl_workEffect .bl_workEffect_top .bl_workEffect_topTxt {
  font-size: 16px;
  line-height: 1.7;
  width: 550px;
}
.bl_workEffect .bl_workEffect_top .bl_workEffect_topTxt span {
  font-weight: bold;
}
.bl_workEffect_topList {
  background-color: #cae9f1;
  padding: 20px 0 25px;
}
.bl_workEffect_topList .bl_workEffect_topItem {
  width: 1100px;
  margin: 0 auto;
}
.bl_workEffect_topList .bl_workEffect_topItem li {
  width: 346px;
}
.bl_workEffect_topList .bl_workEffect_topItem .bl_workEffect_topIcon {
  margin-bottom: 13px;
}
.bl_workEffect_topList .bl_workEffect_topItem .bl_workEffect_topTxt {
  font-size: 15px;
  line-height: 1.7;
  padding: 0 33px;
}
.bl_workEffect_topList .bl_workEffect_topItem .bl_workEffect_topTxt span {
  font-weight: bold;
}
.bl_workBanner {
  padding: 22px 0;
}
.bl_workBanner .bl_workBanner_box {
  background-color: #3aaac4;
  width: 1050px;
  margin: 0 auto;
  padding: 26px 70px;
}
.bl_workBanner .bl_workBanner_box .bl_workBanner_boxTtl {
  text-align: center;
  border-bottom: solid #fff 1px;
  padding-bottom: 17px;
  margin-bottom: 10px;
}
.bl_workBanner .bl_workBanner_box .bl_workBanner_boxList li {
  font-size: 20px;
  color: #fff;
  padding: 17px 0 0 40px;
  background: url(../img/work_icon_check.png) no-repeat bottom left;
}
.bl_workBanner .bl_workBanner_box .bl_workBanner_boxList li span {
  color: #f7f6bf;
  font-weight: bold;
}

.ly_info.ly_info__plan .bl_info_catch {
  margin-top: -79px;
}

.bl_info_catch.__plan{
  margin-top: -101px;
}

/* ly_voice */
.ly_voice {
  padding: 84px 0 65px;
}
.ly_voice .bl_voice_ttl {
  text-align: center;
  margin-bottom: 65px;
}
.ly_voice .bl_voice_list {
  width: 1100px;
  margin: 0 auto;
}
.ly_voice .bl_voiceConts {
  width: 870px;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 24px 45px 27px 37px;
  margin-bottom: 32px;
  position: relative;
}
.ly_voice .bl_voiceConts .bl_voiceConts_ttl {
  margin-bottom: 17px;
}
.ly_voice .bl_voiceConts .bl_voiceConts_tag {
  margin-bottom: 21px;
}
.ly_voice .bl_voiceConts .bl_voiceConts_txt {
  font-size: 17px;
  line-height: 1.7;
}
.ly_voice .bl_voiceConts .bl_voiceConts_txt span {
  font-weight: bold;
}
.ly_voice .bl_voiceConts:after {
  content: url(../img/voice_ballon.png);
  position: absolute;
  display: block;
  top: 42%;
  left: -20px;
}

/* ly_voice */
.ly_voice {
  padding: 84px 0 65px;
}
.ly_voice .bl_voice_ttl {
  text-align: center;
  margin-bottom: 65px;
}
.ly_voice .bl_voice_list {
  width: 1100px;
  margin: 0 auto;
}
.ly_voice .bl_voiceConts {
  width: 870px;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 24px 45px 27px 37px;
  margin-bottom: 32px;
  position: relative;
}
.ly_voice .bl_voiceConts .bl_voiceConts_ttl {
  margin-bottom: 17px;
}
.ly_voice .bl_voiceConts .bl_voiceConts_tag {
  margin-bottom: 21px;
}
.ly_voice .bl_voiceConts .bl_voiceConts_txt {
  font-size: 17px;
  line-height: 1.7;
}
.ly_voice .bl_voiceConts .bl_voiceConts_txt span {
  font-weight: bold;
}
.ly_voice .bl_voiceConts:after {
  content: url(../img/voice_ballon.png);
  position: absolute;
  display: block;
  top: 42%;
  left: -20px;
}

/*----- flow -----*/
.ly_flow {
  padding-bottom: 80px;
}
.ly_flow .bl_flow_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.ly_flow .bl_flowList {
  width: 1100px;
  margin: 0 auto;
  grid-gap: 45px 40px;
}
.ly_flow .bl_flowList li {
  width: 340px;
  height: 180px;
  padding-top: 35px;
  border-radius: 10px;
  border: 2px solid #f34c7b;
  position: relative;
}
.bl_flowList .bl_flowList_arrow::before,
.bl_flowList .bl_flowList_arrow::after {
  content: url(../img/flow_arrow.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.bl_flowList .bl_flowList_arrow::before {
  left: -50px;
}
.bl_flowList .bl_flowList_arrow::after {
  right: -45px;
}
.bl_flowList li .bl_flowList_num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.bl_flowList li .bl_flowList_ttl {
  color: #f34c7b;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  padding: 13px 0;
  background: #fff6f9;
}
.bl_flowList li .bl_flowList_txt {
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
}
.bl_flowList li .bl_flowList_img {
  text-align: center;
}

/*----- faq -----*/
.ly_faq {
  padding: 70px 0 50px;
  margin-bottom: 60px;
  background: #f1f1f1;
}
.ly_faq .bl_faq_ttl {
  text-align: center;
  margin-bottom: 45px;
}
.ly_faq .bl_faq_list {
  width: 1100px;
  margin: 0 auto;
}
.ly_faq .bl_faq_list li {
  width: 345px;
  border: 2px solid #f34c7b;
  border-radius: 10px;
}
.bl_faq_list li .bl_faq_q {
  padding: 80px 30px 30px;
  border-radius: 10px 10px 0 0;
  background: #fff6f9;
  position: relative;
}
.bl_faq_list .bl_faq_q .bl_faq_qImg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.bl_faq_list .bl_faq_q .bl_faq_qTtl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.bl_faq_list .bl_faq_a {
  height: 230px;
  padding: 20px 20px 0;
  border-radius: 0 0 10px 10px;
  background: #fff;
}
.bl_faq_list .bl_faq_a .bl_faq_aImg {
  margin-bottom: 15px;
}
.bl_faq_list .bl_faq_a .bl_faq_aTxt {
  line-height: 1.4;
}
.bl_faq_list .bl_faq_a .bl_faq_aNote {
  font-size: 14px;
}



/*----- footer -----*/
#footer {
  padding-top: 35px;
  background: #f9f9f9;
}
#footer .l-inner {
  width: 1000px;
  margin: 0 auto;
}
#footer dl {
  font-size: 15px;
}
#footer dl + dl {
  margin-top: 15px;
}
#footer dl dt {
  width: 120px;
}
#footer small {
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
  background: #000;
}

/*----- form -----*/
.formInputFrame,
#form .formTable dl dd select,
#form .formTable dl dd input[type=text],
#form .formTable dl dd textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  appearance: none;
  resize: none;
}
#form #header {
  text-align: center;
  padding: 20px 0;
  background: #fff;
  position: static;
}
#form .ly_formFrame {
  margin-bottom: 155px;
}
#form .ly_formFrame .el_form_title {
  text-align: center;
  padding: 75px 0;
  margin-bottom: 55px;
  background: linear-gradient(to right,#f8e9f4,#ecf7f9,#e5f9e6,#f2f9cd);
}
#form .ly_formFrame .el_flow_img {
  text-align: center;
  margin-bottom: 95px;
}
#form .ly_formFrame #mainFrame {
  width: 1000px;
  margin: 0 auto;
}
#form .ly_formFrame #mainFrame .el_sub_title {
  margin-bottom: 20px;
}
#form .formTable {
  border-top: 1px solid #bbb;
  margin-bottom: 65px;
  width: 100%;
}
#form .formTable .error {
  color: #bd010a;
  font-size: 14px;
  margin-bottom: 7px;
}
#form .formTable dl {
  padding: 25px 45px 25px 20px;
}
#form .formTable dl + dl {
  border-top: 1px solid #bbb;
}
#form .formTable dl.req dt label {
  display: inline-block;
  width: 180px;
  line-height: 1.5;
  vertical-align: middle;
}
#form .formTable dl.req dt::after {
  content: "必須";
  background: #e54141;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
  width: 60px;
}
#form .formTable dl dt,
#form .formTable dl dd {
  line-height: 1.5;
}
#form .formTable dl dt {
  width: 295px;
}
#form .formTable dl dd {
  width: 660px;
}
#form .formTable dl dd input[type=text] {
  width: 100%;
}
#form .formTable dl dd .el_formText_ss {
  display: block;
  font-size: 14px;
  margin-top: 7px;
}
#form .formTable dl dd ::-ms-expand {
  display: none;
}
#form .formTable dl dd #corporation02 {
  margin-left: 35px;
}
.el_next_btn {
  text-align: center;
}

/*----- confirm -----*/
.confirm .formTable dl dt, 
.confirm .formTable dl dd {
  line-height: 1.8;
}
.confirm .bl_sentPrev #sendBtn {
  text-align: center;
}
.confirm .bl_sentPrev #prevBtn {
  text-align: center;
  margin-top: 40px;
}
.confirm .bl_sentPrev #prevBtn a {
  text-decoration: underline;
}

/*----- thanks -----*/
#form.thanks .ly_formFrame .el_flow_img {
  margin-bottom: 70px;
}
.thanks .bl_thanks_inner {
  width: 1000px;
  margin: 50px auto 0;
}
.thanks .bl_thanks_inner p {
  line-height: 2.5;
}
.thanks .bl_thanks_inner .bl_document_dl {
  text-align: center;
  padding: 70px 0;
  margin: 65px 0 90px;
  background: #f3f3f3;
}
.thanks .el_goTop {
  margin: 20px 0 295px;
}
.bl_document .el_goTop {
  text-align: center;
}
.thanks .el_goTop a {
  width: 145px;
  color: #e2426f;
  font-size: 20px;
}
