@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
/***************************/
/**bg */
/***************************/
.bg_green {
  background-color: #BEE100;
}

.bg_yellow {
  background-color: #FFE600;
}

.bg_dotto {
  background-color: #BEE100;
  background-image: radial-gradient(#fff 10%, transparent 10%), radial-gradient(#fff 10%, transparent 10%);
  background-size: 25px 25px;
  background-position: 0 0, 12px 14px;
}

.center_dotto {
  position: relative;
}
.center_dotto:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #BEE100;
  background-image: radial-gradient(#fff 10%, transparent 10%), radial-gradient(#fff 10%, transparent 10%);
  background-size: 25px 25px;
  background-position: 0 0, 12px 14px;
  height: 50%;
  width: 100%;
}
.center_dotto > div {
  position: relative;
  z-index: 2;
}

.bg_pattern {
  background: #FFE600 url("../img/top/results-bk-pc.png") no-repeat center/cover;
}

/********************************************/
/* ttl */
/********************************************/
.border_top {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-top: 3em;
}
.border_top:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 15px;
  background-color: #BEE100;
}

/********************************************/
/* btn */
/********************************************/
.black_btn a {
  margin: auto;
  display: block;
  background-color: #333333;
  color: #fff;
  border-radius: 50px;
  padding: 0.8em 1em;
  max-width: 240px;
  width: 100%;
  text-align: center;
}

.hover_opa a {
  transition: all 0.3s;
}
.hover_opa a:hover {
  opacity: 0.8;
}

.arrow_right a {
  position: relative;
}
.arrow_right a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #fff;
}

/********************************************/
/* bread_crumb_block */
/********************************************/
.bread_crumb_block {
  margin-bottom: 100px;
}
.bread_crumb_block .bread_crumb {
  display: flex;
  flex-wrap: wrap;
}
.bread_crumb_block .bread_crumb .breadcrumb__item:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #333333; /* 記号の色 */
}
.bread_crumb_block .bread_crumb .breadcrumb__item span {
  color: #333333;
  font-size: 1.2rem;
}

/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
  /***************************/
  /**bg */
  /***************************/
  .bg_dotto {
    background-size: 12px 12px;
    background-position: 0 0, 18px 18px;
  }
  .center_dotto:before {
    background-size: 12px 12px;
    background-position: 0 0, 18px 18px;
    height: 80%;
  }
  .bg_pattern {
    background: #FFE600 url("../img/top/results-bk-sp.png") no-repeat center/cover;
  }
}