@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_orange {
  color: #ED7700 !important;
  font-weight: inherit;
}

.co_blue {
  color: #4B7DB9 !important;
  font-weight: inherit;
}

.co_pink {
  color: #DF7E9E !important;
  font-weight: inherit;
}

.co_yellow {
  color: #D7A359 !important;
  font-weight: inherit;
}

/***************************/
/**bg */
/***************************/
.bg_orange {
  background: #FDE0A5;
}

.bg_orange.arr_bg:after {
  border-color: transparent #FDE0A5 #FDE0A5 transparent;
}

.bg_cream {
  background: #FFFBF2;
}

.bg_cream.arr_bg:after {
  border-color: transparent #FFFBF2 #FFFBF2 transparent;
}

.arr_bg {
  position: relative;
}

.arr_bg:after {
  position: absolute;
  top: calc(100% - 61px);
  left: 50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #FFFBF2 #FFFBF2 transparent;
  border-width: 60px;
  border-radius: 0 0 4px 0;
  transform: translateX(-50%) scaleX(1.8) rotate(45deg);
  z-index: 2;
}

@media (max-width: 767px) {
  .arr_bg:after {
    top: calc(100% - 37px);
    border-width: 36px;
  }
}

/********************************************/
/* ttl */
/********************************************/
.step_ttl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5em;
  font-size: clamp(2.8rem, 4vw, 3rem);
}

@media (max-width: 767px) {
  .step_ttl {
    display: block;
    text-align: center;
  }
}

.step_ttl i {
  width: 81px;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .step_ttl i {
    display: block;
    width: 70px;
    margin: auto;
  }
}

.step_ttl .txt {
  padding-top: 0.5em;
  line-height: 1.4;
  font-size: 1em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .step_ttl .txt {
    display: block;
  }
}

/********************************************/
/* btn */
/********************************************/
.arr_btn {
  text-align: center;
}

.arr_btn a {
  display: inline-block;
  line-height: 1;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.arr_btn a span {
  display: block;
  line-height: 40px;
  font-size: 1em;
  font-weight: 700;
}

.arr_btn a span:after {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  content: "";
  background: url(../img/ico-arr.svg) no-repeat center/contain;
  vertical-align: top;
}

.arr_btn a:hover {
  opacity: .7;
}

.arr_btn.arr_btn02 a {
  width: 274px;
  max-width: 100%;
  padding: 0.5em 1em;
  background: #ED7700;
  border-radius: 30px;
}

.arr_btn.arr_btn02 a span {
  line-height: 1;
  color: #FFF;
}

.arr_btn.arr_btn02 a span:after {
  position: relative;
  top: 1px;
  width: 27px;
  height: 18px;
  background: url(../img/ico-arr02.svg) no-repeat center/contain;
}

.prev_btn {
  text-align: center;
}

.prev_btn .btn_inner {
  display: inline-block;
  background: none;
  line-height: 1;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.prev_btn .btn_inner:hover {
  opacity: .7;
}

.prev_btn .btn_inner span {
  display: block;
  line-height: 1;
  font-size: 1em;
  font-weight: 700;
}

.prev_btn .btn_inner span:before {
  position: relative;
  top: -2px;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../img/ico-arr.svg) no-repeat center/contain;
  vertical-align: top;
  transform: scale(-1, 1);
}

/********************************************/
/* 追加 */
/********************************************/
.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対策*/
}

/*# sourceMappingURL=component.css.map */