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

/***************************/
/**bg */
/***************************/
.bg_gray {
  background: #f0f0f0;
}

/********************************************/
/* ttl */
/********************************************/
.center_border_ttl {
  margin-bottom: 2em;
  text-align: center;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: bold;
}
.center_border_ttl span {
  position: relative;
  display: inline-block;
  min-width: 240px;
  padding-bottom: 0.3em;
  letter-spacing: 0.05em;
  color: inherit;
  text-align: center;
  font-size: 1em;
}
@media (max-width: 768px) {
  .center_border_ttl span {
    min-width: 200px;
    padding-bottom: 0.5em;
  }
}
.center_border_ttl span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background: #323232;
}
.center_border_ttl.white {
  color: #fff;
}
.center_border_ttl.white span:after {
  background: #fff;
}

/********************************************/
/* btn */
/********************************************/
.center_btn {
  text-align: center;
}
.center_btn a {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.center_btn a:hover {
  opacity: 0.7;
}

/********************************************/
/* 追加 */
/********************************************/
.object_fit {
  position: relative;
}/*# sourceMappingURL=component.css.map */