/*---------------------------
イントロ
---------------------------*/
.intro {
  padding-top: 0.80rem;
}
@media screen and (max-width: 640px) {
  .intro {
    padding-top: 0.30rem;
  }
}

.intro .lead {
  text-align: center;
  font-size: 0.20rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .intro .lead {
    font-size: 0.15rem;
  }
}

.intro .lead .marker {
  background: linear-gradient(transparent 60%, yellow 0%);
}

/*---------------------------
特徴
---------------------------*/
.feature_wrap {
  padding: 0.80rem 0 1.40rem;
  max-width: 10.80rem;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .feature_wrap {
    padding: 0.30rem 0 0.70rem;
  }
}

.feature_wrap .feature_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.80rem;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box {
    padding-bottom: 0.50rem;
  }
}

.feature_wrap .feature_box:nth-child(2n) {
  flex-direction: row-reverse;
}

.feature_wrap .feature_box .ph_wrap {
  width: 100%;
  max-width: 4.00rem;
  position: relative;
}

.feature_wrap .feature_box .ph_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.10rem;
  background-color: #FA7D91;
  position: absolute;
  top: 0.10rem;
  left: 0.10rem;
  z-index: 0;
  opacity: 0.3;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .ph_wrap::before {
    border-radius: 0.06rem;
  }
}

.feature_wrap .feature_box:nth-child(2n) .ph_wrap::before {
  background-color: #52A4C3;
}

.feature_wrap .feature_box .ph_wrap .ph {
  width: 100%;
  height: 2.80rem;
  overflow: hidden;
  border-radius: 0.10rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .ph_wrap .ph {
    height: 60vw;
    border-radius: 0.06rem;
  }
}

.feature_wrap .feature_box .ph_wrap .ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature_wrap .feature_box .txt_box {
  width: calc(100% - 4.40rem);
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box {
    width: 100%;
    padding-top: 0.30rem;
  }
}

.feature_wrap .feature_box .txt_box .num {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
	font-size: 0.12rem;
	font-weight: 700;
	color: #CBBB00;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box .num {
    text-align: center;
  }
}

.feature_wrap .feature_box .txt_box .tit {
  font-size: 0.20rem;
  font-weight: 700;
  padding: 0.10rem 0 0.10rem;
  line-height: 1.65;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box .tit {
    font-size: 0.18rem;
    text-align: center;
    padding: 0.05rem 0 0.10rem;
  }
}

.feature_wrap .feature_box .txt_box .txt {
  font-size: 0.16rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box .txt {
    font-size: 0.14rem;
    line-height: 2;
  }
}

.feature_wrap .feature_box .txt_box .link {
  padding-top: 0.20rem;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box .link {
    padding-top: 0.10rem;
    text-align: center;
  }
}

.feature_wrap .feature_box .txt_box .link a {
  color: #FA7D91;
  font-size: 0.16rem;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .feature_wrap .feature_box .txt_box .link a {
    font-size: 0.14rem;
  }
}

.feature_wrap .feature_box .txt_box .link a:hover {
  opacity: 0.7;
}

.feature_wrap .feature_box .txt_box .link a span {
  border-bottom: 1px solid #FA7D91;
  display: inline-block;
  position: relative;
  padding-bottom: 0.06rem;
}

.feature_wrap .feature_box .txt_box .link a span::after {
  content: "";
  width: 0.20rem;
  height: 0.10rem;
  display: inline-block;
  background-image: url(../img/link_btn_arrow_pink.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -0.01rem;
  position: relative;
}

.feature_wrap .feature_box:nth-child(2n) .txt_box .link a {
  color: #52A4C3;
}

.feature_wrap .feature_box:nth-child(2n) .txt_box .link a span {
  border-bottom: 1px solid #52A4C3;
}

.feature_wrap .feature_box:nth-child(2n) .txt_box .link a span::after {
  background-image: url(../img/link_btn_arrow_blue.svg);
}