@charset "UTF-8";
/* ------------------------------
- sec
------------------------------ */
.secBlock {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.intro__lead {
  line-height: 1.8;
}
.secBlock__ttl {
  line-height: 1.5;
}
.secBlock__txt {
  line-height: 1.8;
}
.secBlock__list {
  background: #ffe8f5;
  position: relative;
}
.secBlock__list::after {
  content: "";
  position: absolute;
}
.secBlock__item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.secBlock__item__label {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  padding: 5px 14px;
  margin-bottom: 15px;
}
.secBlock__item:nth-child(1) .secBlock__item__label {
  color: #333333;
  border: 1px solid #333333;
}
.secBlock__item:nth-child(2) .secBlock__item__label {
  color: #ff6fc1;
  border: 1px solid #ff6fc1;
}
.secBlock__message {
  background: repeating-linear-gradient(
    -45deg,
    #f7f7f7,
    #f7f7f7 5px,
    #f2f2f2 5px,
    #f2f2f2 10px
  );
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.secSlider {
  position: relative;
}
.secSlider .slick-prev,
.secSlider .slick-next {
  border: none;
  position: absolute;
  top: 50%;
  z-index: 10;
  background: url(../images/slick_arrow.svg) center/30px 30px no-repeat;
  width: 30px;
  height: 30px;
}
.secSlider .slick-prev {
  transform: translateY(-50%);
}
.secSlider .slick-next {
  transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (min-width: 751px) {
  .sec {
    padding: 50px 0 100px;
  }
  .intro__lead {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .secItem + .secItem {
    margin-top: 40px;
  }
  .secBlock + .secBlock {
    margin-top: 40px;
  }
  .secBlock__ttl {
    font-size: 20px;
  }
  .secBlock__txt {
    font-size: 15px;
  }
  .secBlock__list {
    display: flex;
  }
  .secBlock__list::before {
    content: "";
    position: absolute;
    background: #f2f2f2;
    top: 0;
    left: 0;
    width: calc(50% - 10px);
    height: 100%;
  }
  .secBlock__list::after {
    background: url(../images/deco.png) center/30px 100% no-repeat;
    height: 100%;
    width: 30px;
    top: 0;
    left: calc(50% - 10px);
  }
  .secBlock__list01::before {
    width: calc(40% - 10px);
  }
  .secBlock__list01::after {
    left: calc(40% - 10px);
  }
  .secBlock__item {
    padding: 20px 50px 40px;
  }
  .secBlock__list01 .secBlock__item:nth-child(1) {
    padding: 20px 30px 40px;
  }
  .secBlock__list01 .secBlock__item:nth-child(2) {
    padding: 20px 60px 40px 85px;
  }
  .secBlock__itemSm {
    width: 40%;
  }
  .secBlock__itemMd {
    width: 50%;
  }
  .secBlock__itemLg {
    width: 60%;
  }
  .secBlock__item__label {
    font-size: 15px;
  }
  .secBlock__message {
    padding: 25px 40px;
  }
  .secSlider .slick-prev {
    left: -35px;
  }
  .secSlider .slick-next {
    right: -35px;
  }
}
@media only screen and (max-width: 750px) {
  .visible-pc {
    display: none;
  }
  .sec {
    padding: 30px 0 50px;
  }
  .intro__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .secItem + .secItem {
    margin-top: 30px;
  }
  .secBlock + .secBlock {
    margin-top: 20px;
  }
  .secBlock__list::after {
    background: url(../images/deco_sp.png) center/100% 20px no-repeat;
    height: 20px;
    width: 100%;
    top: calc(50% - 10px);
    left: 0;
  }
  .secBlock__item:nth-child(1) {
    background: #f2f2f2;
    padding: 20px;
  }
  .secBlock__item:nth-child(2) {
    padding: 40px 20px 20px;
  }
  .secBlock__ttl {
    font-size: 15px;
  }
  .secBlock__txt {
    font-size: 14px;
  }
  .secBlock__item__label {
    font-size: 13px;
  }
  .secBlock__message {
    padding: 25px 20px;
  }
  .secSlider .slick-prev {
    left: -15px;
  }
  .secSlider .slick-next {
    right: -15px;
  }
}
/* ------------------------------
- .point
------------------------------ */
.point {
  display: flex;
  flex-direction: column;
}
.pointBlock {
  display: flex;
}
.pointBlock__txtbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pointBlock__num {
  display: inline-block;
  padding: 4px 8px;
  background: #000;
  color: #fff;
}
.pointBlock__ttl {
  line-height: 1.5;
}
.pointBlock:nth-child(1) .pointBlock__num {
  background: #f29939;
}
.pointBlock:nth-child(1) .pointBlock__ttl {
  color: #f39f46;
}
.pointBlock:nth-child(2) .pointBlock__num {
  background: #f2a8d0;
}
.pointBlock:nth-child(2) .pointBlock__ttl {
  color: #f2a8d0;
}
.pointBlock:nth-child(3) .pointBlock__num {
  background: #67a8d7;
}
.pointBlock:nth-child(3) .pointBlock__ttl {
  color: #67a8d7;
}
.pointBlock__txt {
  line-height: 1.8;
}

.cta__btns {
  display: flex;
}
.cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0.6rem;
  color: #fff;
  font-weight: bold;
}
.cta__btn::after {
  content: "";
  background: url(../images/icon_arrow.png) center/100% no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 751px) {
  .point {
    gap: 80px;
  }
  .pointBlock {
    gap: 40px;
  }
  .pointBlock:nth-child(even) {
    flex-direction: row-reverse;
  }
  .pointBlock__txtbox {
    flex: 1;
    gap: 20px;
  }
  .pointBlock__img {
    width: 48%;
  }
  .pointBlock__num {
    font-size: 20px;
  }
  .pointBlock__ttl {
    font-size: 28px;
  }
  .pointBlock__txt {
    font-size: 15px;
  }
  .cta__btns {
    gap: 40px;
  }
  .cta__btn {
    width: calc(50% - 20px);
    font-size: 20px;
    height: 70px;
  }
  .cta__btn::after {
    width: 29px;
    height: 29px;
    right: 30px;
  }
}
@media only screen and (max-width: 750px) {
  .point {
    gap: 40px;
  }
  .pointBlock {
    flex-direction: column;
    gap: 20px;
  }
  .pointBlock__txtbox {
    gap: 15px;
  }
  .pointBlock__num {
    font-size: 16px;
  }
  .pointBlock__ttl {
    font-size: 18px;
  }
  .pointBlock__txt {
    font-size: 14px;
  }
  .cta__btns {
    flex-direction: column;
    gap: 15px;
  }
  .cta__btn {
    font-size: 16px;
    height: 60px;
  }
  .cta__btn::after {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}
