@charset "UTF-8";

a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

/*========== header ==========*/
.header {
  position: relative;
}

.header::after {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #e5f6ff;
}

.header .inner {
  position: relative;
  z-index: 50;
}

@media (max-width: 1200px) {
  .header::after {
    display: none;
  }
}

/*========== footer ==========*/

.footer .footer_info {
  display: none;
}

/*========== firsr_section ==========*/
.firsr_section {
  position: relative;
  padding-top: 60px;
}

.firsr_section::after {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #e5f6ff;
  border-radius: 0 0 0 50px;
}

.firsr_sectionInner {
  position: relative;
  z-index: 50;
}

.head_block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.main_title span {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.main_title img {
  margin-top: 18px;
  max-width: 580px;
}

@media (max-width: 767px) {
  .head_block {
    padding: 0 30px;
  }

  .main_title {
    width: 73%;
  }

  .main_title img {
    width: 100%;
  }

  .firsr_section {
    padding: 40px 0 0;
  }

  .head_block {
    padding: 0 15px 0;
  }

  .main_title {
    width: 93%;
    max-width: 322px;
  }

  .main_title span {
    font-size: 1.2rem;
  }
}

/*========== carousel_block ==========*/
.carousel_block {
  position: relative;
  padding-bottom: 30px;
}

.carousel_Inner {
  margin-top: 80px;
  opacity: 0;
  transition: all .5s;
}

.slick-initialized.carousel_Inner {
  opacity: 1;
}

.carousel_frame {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 620px;
  transform: translateX(-50%);
}

.carousel_frame img {
  width: 100%;
}

.carousel_card {
  position: relative;
  width: 540px;
  margin: 0 50px;
  padding-top: 25px;
  cursor: pointer;
}

.carousel_card a {
  pointer-events: none;
}

.carousel_card a:hover {
  opacity: 1;
}

.slick-center.carousel_card a {
  pointer-events: inherit;
}

.carousel_card_img_wrap {
  overflow: hidden;
  position: relative;
}

.carousel_card_img {
  width: 100%;
  transition: all .5s;
}

.carousel_card a:hover .carousel_card_img {
  transform: scale(1.05);
}

.carousel_card_detail {
  margin-top: 15px;
  padding: 0 15px;
}

.carousel_card_message {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}

.slick-center .carousel_card_message span {
  font-weight: bold;
  color: #0a9d43;
}

.carousel_card_company {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  background-color: #0a9d43;
  padding: 8px 0;
  width: 100%;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .carousel_card_company {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .carousel_block {
    padding-bottom: 15px;
  }

  .carousel_Inner {
    margin-top: 40px;
  }

  .carousel_frame {
    width: 480px;
    top: -22px;
  }

  .carousel_frame img {
    width: 100%;
  }

  .carousel_card {
    width: 424px;
    margin: 0 35px;
    padding-top: 14px;
  }

  .carousel_card_company {
    font-size: 1.4rem;
  }

  .carousel_card_detail {
    margin-top: 15px;
  }

  .carousel_card_message {
    font-size: 2rem;
  }
}

@media (max-width: 650px) {
  .carousel_frame {
    width: 400px;
  }

  .carousel_card {
    width: 352px;
    margin: 0 25px;
    padding-top: 10px;
  }

  .carousel_card_message {
    font-size: 1.8rem;
  }

  .carousel_card_company {
    font-size: 1.4rem;
  }
}

@media (max-width: 530px) {
  .carousel_Inner {
    margin-top: 20px;
  }

  .carousel_frame {
    width: 275px;
    top: -10px;
  }

  .carousel_card {
    width: 243px;
    margin: 0 18px;
    padding-top: 10px;
  }

  .carousel_card_message {
    font-size: 1.6rem;
  }

  .carousel_card_company {
    font-size: 1rem;
  }

  .carousel_card_detail {
    margin-top: 10px;
  }
}

/*========== about ==========*/
.about_block {
  max-width: 1170px;
  margin: 0 auto;
  transform: translateY(-50%);
}
.about_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-radius: 15px;
  background: #fff;
}

.about_textBlock {
  width: calc(100% - 176px);
}

.about_title {
  font-size: 2rem;
  font-weight: bold;
  color: #0072b7;
}

.about_text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.75;
}

.about_imgBlock {
  width: 145px;
}

.about_imgBlock img {
  width: 100%;
}

@media (max-width: 767px) {

  .about_inner {
    padding: 20px 30px 30px;
  }

  .about_textBlock {
    width: calc(100% - 176px);
  }

  .about_title {
    font-size: 1.6rem;
  }

  .about_text {
    margin-top: 10px;
  }

  .about_block {
    transform: translateY(-35%);
  }

  .about_inner {
    display: block;
    padding: 20px;
  }

  .about_textBlock {
    width: 100%;
  }

  .about_imgBlock {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .about_imgBlock img {
    width: 52%;
  }
}

/*========== archive ==========*/
.archive_block {
  margin-top: 120px;
  padding: 0 15px;
  background: #0a7ec4;
}

.archive_inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0 80px;
}

.archive_inner .section_title {
  max-width: 172px;
  margin: 0 auto;
  text-align: center;
}

.archive_inner .section_title img {
  width: 100%;
}

.section_sub_title {
  margin-top: 15px;
  display: block;
  font-size: 1.3rem;
  color: #fff;
}

.archive_lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.archive_list {
  width: calc(25% - 29px);
  margin-right: 38px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
  overflow: hidden;
}

.archive_list a {
  display: block;
  height: 100%;
  padding: 0 0 20px 20px;
}

.archive_list a:hover {
  opacity: 1;
}

.archive_list_img {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 8px;
}

.archive_list_img img {
  width: 100%;
  vertical-align: bottom;
  transition: all 0.8s;
}

.archive_list a:hover .archive_list_img img {
  transform: scale(1.1);
}

.archive_list_name {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 10px;
  background: #0a9d43;
  font-size: 1.4rem;
  color: #fff;
}

.no_linefeed {
  padding: 5px 6px;
  font-size: 1.3rem;
}

@media screen and (max-width: 833px) {
	.no_linefeed {
    padding: 6px 6px;
    font-size: 1.1rem;
  }
}

.archive_list_about {
  margin-top: 10px;
  padding-right: 20px;
}


.archive_list_desc {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media (min-width: 1201px){
  .archive_list:nth-child(4n) {
    margin-right: 0;
  }
  
  .archive_list:nth-child(n + 5) {
    margin-top: 40px;
  }  
}

@media (max-width: 1200px) {
  .archive_list {
    width: calc(33% - 17px);
    margin-right: 28px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
  }
  
  .archive_list:nth-child(3n) {
    margin-right: 0;
  }
  
  .archive_list:nth-child(n + 4) {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .archive_block {
    margin-top: 100px;
    padding: 0 15px 50px;
  }

  .archive_inner {
    margin-top: -35px;
    padding: 0;
  }

  .archive_lists {
    margin-top: 30px;
  }

  .archive_block {
    margin-top: 176px;
    padding-bottom: 40px;
  }

  .archive_inner {
    margin-top: -100px;
  }

  .archive_lists {
    margin-top: 20px;
  }

  .archive_list {
    width: 100%;
    margin-right: 0;
  }

  .archive_list + .archive_list  {
    margin-top: 20px;
  }

  .archive_list_name {
    font-size: 1.6rem;
  }

  .archive_list_desc {
    font-size: 1.6rem;
  }
}

/*========== contact ==========*/
.contact_block {
  padding: 60px 15px;
}

.contact_inner {
  max-width: 1010px;
  margin: 0 auto;
  padding: 40px 15px;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
}

.contact_title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.contact_message {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.contact_form {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_btn {
  display: block;
  position: relative;
  width: 220px;
  padding: 15px 15px 13px;
  background: #0a7ec4;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.contact_form .contact_btn {
  color: #fff;
}

.contact_form .contact_btn:link,
.contact_form .contact_btn:link:visited {
  color: #fff;
}

.contact_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.contact_tel {
  position: relative;
  margin-left: 40px;
  padding-left: 35px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.contact_tel::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 30px;
  margin-top: -15px;
  background: #efefef;
}

.contact_tel_icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background-image: url(/img/ss/products/software/rk-customers-voice/icon03.png);
  background-size: contain;
}

@media (max-width: 767px) {
  .contact_block {
    padding: 50px 30px;
  }

  .contact_block {
    padding: 40px 15px;
  }

  .contact_title {
    font-size: 2.2rem;
  }

  .contact_inner {
    padding: 0;
  }

  .contact_form {
    display: block;
  }

  .contact_btn {
    margin: 0 auto;
  }

  .contact_tel {
    margin: 20px 0 0;
    padding-left: 0;
    text-align: center;
  }

  .contact_tel::before {
    display: none;
  }
}