@charset "utf-8";


/*------------------------------
 * form
 *----------------------------*/


.form {
  background-color: #b6e1f6;
  color: #1e1e1e;
}


.form__content {
  padding: 30px 15px 36px;
}


.form__content ::-webkit-input-placeholder {
  color: #d3d3d4;
}


.form__content ::-moz-placeholder {
  color: #d3d3d4;
}


.form__content :-ms-input-placeholder {
  color: #d3d3d4;
}


.form__content ::-ms-input-placeholder {
  color: #d3d3d4;
}


.form__content ::placeholder {
  color: #d3d3d4;
}


.form__header {
  height: 45px;
  background-color: #000;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  letter-spacing: 0.05em;
  color: #fff;
}


.form__lead {
  margin: 0 auto;
  padding: 34px 15px 0;
  line-height: 1.8;
  font-size: 14px;
  font-weight: 400;
  /* text-align: center; */
  color: #3996CD;
}


.form__item {
  clear: both;
  overflow: hidden;
  padding-bottom: 25px;
  white-space: nowrap;
}


.form__label {
  display: block;
  width: 100%;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #3996cd;
}


.form__textInput {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 6px;
  display: block;
  width: 100%;
  height: 52px;
  padding: 16px 15px;
  font-size: 14px;
  font-weight: 500;
}


.form__textArea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 6px;
  display: block;
  width: 100%;
  min-height: 250px;
  padding: 15px 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  resize: vertical;
  white-space: pre-wrap;
}


.form__checkbox {
  display: none;
}


.form__item--material {
  float: right;
  /* padding: 15px 0 50px; */
}


.form__label--material {
  position: relative;
  float: none;
  width: auto;
  height: 30px;
  padding: 0;
  line-height: 30px;
}


.form__label--material:after {
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  border: 2px solid #3996cd;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}


.form__label--material:hover:after {
  opacity: .7;
}


input[type=checkbox]:checked + .form__label--material:before {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 7px;
  height: 15px;
  content: '';
  display: block;
  border-right: 3px solid #3996cd;
  border-bottom: 3px solid #3996cd;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}


.form__confirm {
  clear: both;
  width: 100%;
  height: 45px;
  margin: 0 auto;
}


.form__confirmBt {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 45px;
  background-color: #3996cd;
  color: #fff;
  border: none;
  cursor: pointer;
}


.form__errorList {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 4px solid red;
  margin-bottom: 25px;
  padding: 10px 10px;
}


.form__errorListItem {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0;
}


.form__errorIcon {
  width: 18px;
  height: 18px;
  margin-right: 0.5em;
  vertical-align: -3.5px;
}


.form__textInput--error {
  border: 4px solid red;
  padding: 8px 7px;
}


.form__textArea--error {
  border: 4px solid red;
  padding: 7px 7px;
}


.form__error {
  padding-bottom: 10px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0;
}


/*------------------------------
 * works
 *----------------------------*/


.works {
  background-color: #3996cd;
  color: #fff;
}


.works__content {
  padding: 0 15px;
}


.works__header {
  padding: 34px 0 25px;
  text-align: center;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.6;
}


.works__lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}


.works__box {
  padding-bottom: 38px;
}


.works__item {
  padding-top: 38px;
}


.works__itemThumbnail {
  overflow: hidden;
  width: 100%;
  margin-bottom: 15px;
  background-color: #fff;
}


.works__itemThumbnail img {
  display: block;
  width: 100%;
  height: auto;
}


.works__itemThumbnail a {
  position: relative;
  display: block;
}


.works__itemThumbnail a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/common/images/icon_play.svg);
  background-position: center;
  background-size: 80px 80px;
  background-repeat: no-repeat;
}


.works__itemTag, .works__itemHeader {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}


.works__itemText {
  padding-top: 10px;
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  letter-spacing: 0.09em;
}


/*------------------------------
 * contact
 *----------------------------*/


.contact {
  background-color: #3996cd;
  color: #fff;
}


.contact__content {
}


.contact__pop {
  width: 180px;
  padding: 36px 15px 0;
}


.contact__pop img {
  display: block;
  width: 100%;
  height: auto;
}


.contact__lead {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}


.contact__header {
  padding: 0 15px 15px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: justify;
  text-justify: inter-ideograph;
}


.contact__operatorWrap {
  width: 250px;
  margin: 0 auto;
}


.contact__operator {
  position: relative;
  width: 100%;
  height: 162px;
  background-image: url(/assets/common/images/bg_contact_operator.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 250px auto;
}


.contact__operatorText {
  display: block;
  position: absolute;
  top: 44px;
  left: 9px;
  font-size: 10.5px;
  line-height: 1.8;
  color: #3c3c3c;
}


.contact__operator--type2 .contact__operatorText {
  font-size: 10px;
  letter-spacing: 0.03em;
  top: 45px;
}


.contact__representativeWrap {
  width: 270px;
  margin: 0 auto;
}


.contact__representative {
  position: relative;
  width: 100%;
  height: 130px;
  background-image: url(/assets/common/images/bg_contact_representative_01.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 270px auto;
}


.contact__representativeText {
  display: block;
  position: absolute;
  top: 16px;
  left: 9px;
  font-size: 10.5px;
  line-height: 1.8;
  color: #3c3c3c;
}


.contact__representativeName {
  display: block;
  position: absolute;
  top: 59px;
  right: -15px;
  color: #fff;
  line-height: 1.8;
  font-size: 7.5px;
  font-weight: 300;
  letter-spacing: 0.1em;
}


/*------------------------------
 * works
 *----------------------------*/


.works {
}


.works__header {
  padding: 34px 0 0;
}


.works__pagerArea {
  text-align: center;
  padding-bottom: 50px;
}


.works__pagerArea--empty {
  padding-bottom: 10px;
}


.works__pager {
  list-style: none;
  padding: 0;
}


.works__pagerItem {
  display: inline-block;
  margin: 0 1px;
}


.works__pagerBtn {
  display: block;
  border: 1px solid #3996cd;
  background-color: #3996cd;
  margin: 0;
  padding: 0 5px;
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
  vertical-align: middle;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-transition-property: background-color color;
  transition-property: background-color color;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}


.works__pagerBtn--current {
  border: 1px solid #3996cd;
  background-color: #ffffff;
  color: #3996cd;
}


.works__pagerBtn--disable {
  -webkit-transition: initial;
  transition: initial;
  opacity: .35;
  color: #ffffff;
  border: 1px solid #3996cd;
  background-color: #3996cd;
}


/*------------------------------
 * worksLead
 *----------------------------*/


.worksLead {
  background-color: #3996CD;
  padding-bottom: 10px;
}


.worksLead__header {
  font-size: 19px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  background-color: #000;
  color: #fff;
}


@media screen and (max-width: 400px) {
  .worksLead__header {
    font-size: 17px;
  }
}


.worksLead__title {
  padding: 25px 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}


.worksLead__content {
  padding: 0 15px;
}


.worksLead__listWrapper {
}


.worksLead__listCol {
  padding: 15px;
}


.worksLead__listCol--BtoB {
  background-color: #fff;
  color: #000;
}


.worksLead__listCol--BtoC {
  background-color: #000;
  color: #fff;
}


.worksLead__listColContent {
}


.worksLead__listTitle {
  text-align: center;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
}


.worksLead__list {
  list-style: none;
  margin: 0;
  padding: 0;
}


.worksLead__listItem {
  line-height: 1.9;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}


@media screen and (max-width:460px) {
  .worksLead__listItem {
    font-size: 12.5px;
  }
}


@media screen and (max-width:360px) {
  .worksLead__listItem {
    font-size: 11px;
  }
}
