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

.co_primary {
  color: #8ee604;
}

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

.bg_primary {
  background: #8ee604;
}

/********************************************/
/* ttl */
/********************************************/
.black_bg_ttl {
  margin-bottom: 50px;
  padding: 0.5em;
  background: #282828;
  color: #8ee604;
  line-height: 1.4;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
}
.black_bg_ttl small {
  display: block;
  color: inherit;
  font-size: 0.72em;
}
.black_bg_ttl.mb0 {
  margin-bottom: 0;
}

.primary_bg_ttl {
  margin-bottom: 80px;
  padding: 0.45em;
  background: #8ee604;
  line-height: 1.4;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
}
@media (max-width: 768px) {
  .primary_bg_ttl {
    margin-bottom: 40px;
  }
}
.primary_bg_ttl small {
  display: block;
  color: inherit;
  font-size: 0.72em;
}

.marker > p,
.marker > span {
  background: linear-gradient(transparent 60%, #8ee604 0%);
  display: inline;
  padding: 0 1px;
}

.marker_ver2 .m_column {
  position: relative;
  display: inline-block;
  padding: 0 0.8em 0 0;
  margin-bottom: 0.4em;
  z-index: 3;
}
.marker_ver2 .m_column:before {
  position: absolute;
  left: 0;
  bottom: -0.2em;
  content: "";
  width: 100%;
  height: 0.5em;
  background-color: #8ee604;
  transform: skewX(-30deg);
}
@media (max-width: 768px) {
  .marker_ver2 .m_column:before {
    left: -20px;
    bottom: -3px;
    width: calc(100% + 20px);
  }
}
.marker_ver2 .m_column:after {
  position: absolute;
  left: -0.6em;
  bottom: -0.2em;
  content: "";
  width: 1.5em;
  height: 0.5em;
  background-color: #8ee604;
  z-index: -1;
}
@media (max-width: 768px) {
  .marker_ver2 .m_column:after {
    bottom: -3px;
    content: none;
  }
}
.marker_ver2 .m_column span {
  position: relative;
}

/********************************************/
/* btn */
/********************************************/
.entry_btn {
  text-align: center;
}
.entry_btn span {
  display: inline-block;
  margin-bottom: 0.5em;
  color: #ff3131;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.entry_btn span b {
  font-weight: 900;
}
.entry_btn a {
  display: block;
  width: 80%;
  max-width: 500px;
  margin: auto;
  padding: 0.47em;
  background-color: #ff3131;
  border-radius: 50px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.entry_btn a img {
  display: block;
  width: 255px;
  margin: auto;
}
@media (max-width: 768px) {
  .entry_btn a img {
    max-width: 120px;
  }
}
.entry_btn a:hover {
  opacity: 0.7;
}

/********************************************/
/* 追加 */
/********************************************/
.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%;
  object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
}

/*=============================================*/
/*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;
  }
  /********************************************/
  /* btn */
  /********************************************/
  .red_btn a {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=component.css.map */