@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_red {
  color: #E60012;
}

/***************************/
/**bg */
/***************************/
.bg_red {
  background-color: #E60012;
}

.bg_red_light {
  background-color: #FFF6F5;
  border: 1px solid #E60012;
}

/********************************************/
/* ttl */
/********************************************/
.border_left_ttl {
  position: relative;
  margin-bottom: 1.5em;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.border_left_ttl:after {
  position: absolute;
  left: 0;
  bottom: -0.5em;
  content: "";
  width: 4em;
  height: 5px;
  background-color: #333;
  border-radius: 10px;
}

.center_bottom_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 1.5em;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.center_bottom_ttl span {
  font-size: 1em;
}
.center_bottom_ttl:after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: -0.5em;
  left: 0;
  margin: auto;
  content: "";
  width: 4em;
  height: 5px;
  background-color: #333;
  border-radius: 10px;
}

.border_left_ttl_red .ttl {
  font-size: clamp(2.2rem, 2vw, 2.4rem);
  font-weight: bold;
  position: relative;
  padding-left: 0.8em;
  margin-bottom: 1em;
  line-height: 1.5;
}
.border_left_ttl_red .ttl:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 70%;
  background-color: #E60012;
}

.border_bottom_ttl_sep .ttl {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.3em;
  border-bottom: 3px solid #333;
  padding-bottom: 0.5em;
}
.border_bottom_ttl_sep .ttl:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 150px;
  height: inherit;
  border-bottom: 3px solid #E60012;
}

/********************************************/
/* btn */
/********************************************/
.bg_btn a {
  position: relative;
  display: block;
  padding: 1.7em 0.5em;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.bg_btn a span {
  display: inline-block;
  vertical-align: middle;
  color: inherit;
  font-size: 1em;
  font-weight: bold;
}
.bg_btn a i {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.red_btn a {
  background-color: #E60012;
}
.red_btn a:hover {
  background: #C13932;
}

.gray_btn a {
  background-color: #666;
}
.gray_btn a:hover {
  background: #999;
}

.list_btn {
  width: 100%;
}
.list_btn a {
  display: block;
  width: 100%;
  max-width: 220px;
  padding: 1.3em 1em;
  margin: auto;
  background-color: #333;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
}
.list_btn a:before {
  content: "■";
  margin-right: 1em;
  font-size: 0.7em;
}

.contact_btn a {
  display: block;
  margin: auto;
  padding: 1.1em 1em 1.2em 2em;
  background-color: #E60012;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s;
}
.contact_btn a span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}
.contact_btn a span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 8px;
  height: 8px;
  margin-top: -2px;
  transform: rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.pdf_btn a {
  position: relative;
  padding-left: 1.7em;
  text-decoration: underline !important;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  transition: all 0.3s;
}
.pdf_btn a:before {
  content: url(../img/common/ico-pdf.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/********************************************/
/* 追加 */
/********************************************/
.object_fit {
  position: relative;
}
.object_fit:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.object_fit img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
}

/********************************************/
/* list */
/********************************************/
.dotto_list {
  padding-left: 0;
}
.dotto_list li {
  text-indent: -1em;
  padding-left: 1em;
  list-style: none;
}
.dotto_list li:before {
  content: "・";
  font-weight: bold;
}

.note_list {
  padding-left: 0;
}
.note_list li {
  list-style: none;
  text-indent: -1.5em;
  padding-left: 1.5em;
  line-height: 1.7;
  font-size: 1.4rem;
}
.note_list li:before {
  content: "※";
  margin-right: 0.5em;
}

.check_list, .error_list {
  padding-left: 0;
}
.check_list li, .error_list li {
  position: relative;
  padding-left: 2.3em;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.7;
  list-style: none;
}
.check_list li:not(:last-child), .error_list li:not(:last-child) {
  margin-bottom: 1em;
}
.check_list li:before, .error_list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 27px;
  height: 27px;
}

.check_list li:before {
  background: url(../img/common/ico-check.svg) no-repeat center/contain;
}

.error_list li:before {
  background: url(../img/common/ico-error.svg) no-repeat center/contain;
}

/********************************************/
/* txt */
/********************************************/
.txt_bold {
  font-weight: bold;
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
  /********************************************/
  /* ttl */
  /********************************************/
  .border_left_ttl {
    font-size: 2.3rem;
  }
  .border_left_ttl:after {
    height: 3px;
  }
  .center_bottom_ttl {
    font-size: 2.3rem;
  }
  .center_bottom_ttl:after {
    height: 3px;
  }
  .border_left_ttl_red .ttl {
    margin-bottom: 0.7em;
  }
  /********************************************/
  /* btn */
  /********************************************/
  .bg_btn a {
    font-size: 1.4rem;
  }
  /********************************************/
  /* list */
  /********************************************/
  .note_list li {
    text-align: left;
  }
  .check_list li, .error_list li {
    padding-left: 2em;
  }
  .check_list li:before, .error_list li:before {
    width: 20px;
    height: 20px;
    top: 5px;
  }
}