@charset "utf-8";

/* Home Css Last Up Date: 2018/12/20 */

/* =================================
OK SKY ChatBOT
================================= */
.title_lower {
  background-image: url("/web/wp-content/themes/sorairo/img/chatbot/img_main_view.png");
}

@media screen and (max-width: 767px) {
  .title_lower {
    background-image: url("/web/wp-content/themes/sorairo/img/chatbot/img_main_view_sp.png");
  }
}

/* 知っておくべき問題 */
.sec_solution {
  padding: 70px 0;
}
.sec_solution h2 {
  margin-top: 40px;
}
.sec_solution .read {
  margin-top: 30px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
}
.solution_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.solution_list .solution_item_wrap {
  max-width: 360px;
  width: 100%;
  margin-top: 40px;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.solution_item {
  position: relative;
  overflow: hidden;
}
.solution_item .ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 108px;
  height: 108px;
  -moz-transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.solution_item .ribbon span {
  display: block;
  width: 100%;
  height: 24px;
  background: #262626;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
}
.solution_item .content {
  padding: 30px;
}
.solution_item .content figure {
  overflow: hidden;
  max-width: 128px;
  max-height: 128px;
  margin: 0 auto;
  border-radius: 50%;
}
.solution_item .content figure img {
  width: 100%;
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
}
.solution_item .content figure:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.solution_item .content .problem_text {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}
.solution_item .content .btn_solution {
  max-width: 176px;
  margin: 20px auto 0;
}
.solution_item .content .btn_solution span {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .sec_solution {
    padding: 40px 0;
  }
  .sec_solution h2 {
    margin-top: 20px;
  }
  .sec_solution .read {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .solution_list {
    margin-top: 15px;
  }
  .solution_list .solution_item_wrap {
    width: 49%;
    margin-top: 10px;
  }
  .solution_item {
    position: relative;
    overflow: hidden;
  }
  .solution_item .ribbon {
    width: 54px;
    height: 54px;
  }
  .solution_item .ribbon span {
    height: 17px;
    font-size: 1rem;
    line-height: 17px;
  }
  .solution_item .content {
    padding: 20px 10px 15px;
  }
  .solution_item .content figure {
    max-width: 100px;
    max-height: 100px;
  }
  .solution_item .content .problem_text {
    margin-top: 12px;
    font-size: 1.3rem;
    text-align: left;
  }
  .solution_item .content .btn_solution {
    max-width: none;
    width: 100%;
    margin-top: 12px;
  }
  .solution_item .content .btn_solution span {
    padding: 10px;
    font-size: 1.4rem;
  }
}

/* solution */
.solution_box {
  display: none;
}
.solution_window {
  position: relative;
  width: 100%;
  padding: 50px 0 15px;
  box-sizing: content-box;
}
.solution_box_inner {
  padding: 30px;
  border: 1px solid #e5e5e5;
}
.solution_box_contents {
  width: 100%;
  background: #fff;
}
.solution_box_contents .catch-copy {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.solution_box_contents .catch-copy:before {
  display: block;
  content: "";
  width: 53px;
  height: 74px;
  margin: 0 auto 20px;
  background: url("/web/wp-content/themes/sorairo/img/chatbot/icon_solution.png") no-repeat 0 0;
  background-size: cover;
}
.solution_box_contents .solution-text {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.solution_box_contents .btn_request {
  margin-top: 55px;
}
.window_select {
  position: absolute;
  top: 20px;
  left: 0;
  margin-left: -20px;
}
.solutionClose {
  position: absolute;
  top: 50px;
  right: 0;
  width: 75px;
  height: 75px;
  background: #c9c9c9;
  text-indent: -9999px;
  cursor: pointer;
}
.solutionClose:before{
  content: "";
  position: absolute;
  display: inline-block;
  top: 13px;
  left: 38px;
  width: 1px;
  height: 49px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.solutionClose:after{
  content: "";
  position: absolute;
  display: inline-block;
  top: 13px;
  left: 38px;
  width: 1px;
  height: 49px;
  background: #fff;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .solution_window {
    padding: 20px 0 0;
  }
  .solution_box_inner {
    padding: 20px;
    border: 1px solid #e5e5e5;
  }
  .solution_box_contents .catch-copy:before {
    width: 51px;
    height: 71px;
  }
  .solution_box_contents .solution-text {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .solution_box_contents .btn_request {
    margin-top: 25px;
  }
  .window_select {
    top: 10px;
    margin-left: -6px;
  }
  .window_select img {
    width: 13px;
  }
  .solutionClose {
    top: 20px;
    width: 50px;
    height: 50px;
  }
  .solutionClose:before{
    top: 10px;
    left: 26px;
    height: 34px;
  }
  .solutionClose:after{
    top: 10px;
    left: 26px;
    height: 34px;
  }
}

/* メリット */
.sec_merit {
  padding: 70px 0;
  background: #f4fbff;
  border-top: 1px solid #e5e5e5;
}
.merit_contents-wrap {
  margin-top: 40px;
}
.merit_content {
  float: left;
  width: 48.3%;
}
.merit_content+.merit_content {
  margin-left: 3.3%;
}
.merit_content dt {
  padding: 0 0 0 10px;
  border-left: 10px solid #353535;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.merit_content .read {
  margin-top: 20px;
}
.merit_content .merit_items {
  margin-top: 30px;
}
.merit_item_list {
  display: flex;
  flex-wrap: wrap;
}
.merit_item_list li {
  width: 50%;
  margin: 0 0 -1px 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-align: center;
}
.merit_item_list li.num1,
.merit_item_list li.num3 {
  border-right: none;
}
.merit_item_list figure img {
  max-width: 96px;
}
.merit_item_list .item-text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
}
.merit_item_list .item-text strong {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .sec_merit {
    padding: 40px 0;
  }
  .merit_contents-wrap {
    margin-top: 20px;
  }
  .merit_content {
    float: none;
    width: 100%;
  }
  .merit_content+.merit_content {
    margin: 20px 0 0;
  }
  .merit_content dt {
    font-size: 1.8rem;
  }
  .merit_content .read {
    margin-top: 15px;
  }
  .merit_content .merit_items {
    margin-top: 20px;
  }
  .merit_item_list li {
    min-height: 185px;
    padding: 35px 0 18px;
  }
  .merit_item_list li.num1,
  .merit_item_list li.num3 {
    border-right: none;
  }
  .merit_item_list figure img {
    max-width: 68px;
  }
  .merit_item_list .item-text {
    margin-top: 13px;
    font-size: 1.5rem;
  }
  .merit_item_list .item-text strong {
    font-size: 1.8rem;
  }
}

/* 実現できること */
.sec_service {
  padding: 70px 0;
}
.sec_service_box {
  margin-top: 70px;
}
.sec_service_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec_service_box .service-text_wrap {
  max-width: 450px;
}
.sec_service_box h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.sec_service_box h2 .service_title_tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 13px;
  background: #000;
  border-radius: 24px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.sec_service_box .service_read {
  margin-top: 25px;
}
.sec_service_box figure {
  max-width: 640px;
}
.sec_service_box figure img {
  width: 100%;
}
.sec_service_box.flex-order_switch .service-text_wrap {
  order: 1;
}
.sec_service_box.flex-order_switch figure {
  order: 2;
}

@media screen and (max-width: 767px) {
  .sec_service {
    padding: 40px 0;
  }
  .sec_service_box {
    margin-top: 40px;
  }
  .sec_service_box {
    display: block;
  }
  .sec_service_box .service-text_wrap {
    max-width: none;
    margin-top: 20px;
  }
  .sec_service_box h2 {
    font-size: 2rem;
  }
  .sec_service_box h2 .service_title_tag {
    margin-bottom: 10px;
  }
  .sec_service_box .service_read {
    margin-top: 20px;
  }
  .sec_service_box figure {
    max-width: none;
  }
}

/* 他サービスとの違い */
.sec_defference {
  padding: 70px 0;
  background: #f4fbff;
  border-top: 1px solid #e5e5e5;
}
.defference_item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.defference_item_list li {
  max-width: 560px;
  margin: 40px 0 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
}
.defference_item_list .defference_item_title {
  padding: 0 0 0 10px;
  border-left: 10px solid #353535;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.defference_item_list .read {
  margin-top: 20px;
}
.defference_item_list figure {
  text-align: center;
}
.defference_item_list .num1 figure {
  margin-top: 30px;
}
.defference_item_list .num1 figure img {
  max-width: 360px;
}
.defference_item_list .num2 figure {
  margin-top: 70px;
}
.defference_item_list .num2 figure img {
  max-width: 400px;
}
.defference_item_list .num3 figure {
  margin-top: 25px;
}
.defference_item_list .num3 figure img {
  max-width: 480px;
}
.defference_item_list .num4 figure {
  margin-top: 155px;
}
.defference_item_list .num4 figure img {
  max-width: 321px;
}

@media screen and (max-width: 767px) {
  .sec_defference {
    padding: 40px 0;
  }
  .defference_item_list {
    display: block;
  }
  .defference_item_list li {
    max-width: none;
    margin: 20px 0 0;
  }
  .defference_item_list .defference_item_title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .defference_item_list .read {
    margin-top: 20px;
  }
  .defference_item_list figure {
    text-align: center;
  }
  .defference_item_list .num1 figure {
    margin-top: 30px;
  }
  .defference_item_list .num1 figure img {
    max-width: none;
  }
  .defference_item_list .num2 figure {
    margin-top: 30px;
  }
  .defference_item_list .num2 figure img {
    max-width: none;
  }
  .defference_item_list .num3 figure {
    margin-top: 30px;
  }
  .defference_item_list .num3 figure img {
    max-width: none;
  }
  .defference_item_list .num4 figure {
    margin-top: 30px;
  }
  .defference_item_list .num4 figure img {
    max-width: none;
  }
}

/* コンバージョン */
.sec-chatbot-conversion {
  margin-top: 70px;
  background-image: url("/web/wp-content/themes/sorairo/img/chatbot/bg_chatbot_conversion.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-chatbot-conversion .inner {
  display: flex;
  align-items: center;
  max-width: 960px;
  min-height: 242px;
  margin: 0 auto;
  padding: 30px 60px;
}
.sec-chatbot-conversion .conversion_title {
  text-align: left;
}
.sec-chatbot-conversion .conversion_read_wrap {
  padding-right: 60px;
}
.conversion_btn_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 388px;
  margin: 0 0 0 auto;
}
.sec-chatbot-conversion .btn_conversin_inquiry {
  width: 100%;
  max-width: 188px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sec-chatbot-conversion {
    margin: 40px 0 0;
    background-image: url("/web/wp-content/themes/sorairo/img/chatbot/bg_chatbot_conversion_sp.png");
  }
  .sec-chatbot-conversion .inner {
    display: block;
    max-width: none;
    min-height: 100%;
    padding: 40px 30px;
  }
  .sec-chatbot-conversion .conversion_title {
    text-align: center;
  }
  .sec-chatbot-conversion .conversion_read_wrap {
    padding-right: 0;
  }
  .conversion_btn_wrap {
    display: block;
    max-width: none;
  }
  .sec-chatbot-conversion .btn_conversin_inquiry {
    width: 87.3%;
    margin: 40px auto 0;
  }
  .sec-chatbot-conversion .btn_conversin_inquiry+.btn_conversin_inquiry {
    margin-top: 20px;
  }
}