@charset "UTF-8";
/*----------------------------------------------------------

setting

----------------------------------------------------------*/
/*----------------------------------------------------------

mixin

----------------------------------------------------------*/
.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* common_label  */
.common_label {
  background-color: #EFEFEF;
  padding: 36px 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .common_label {
    padding: 27px 35px;
  }
}
.common_label_container {
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
}
.common_label_btnLists {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .common_label_btnLists {
    flex-direction: column;
  }
}
.common_label_btnList {
  width: 280px;
  height: 46px;
  max-width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList {
    width: 360px;
    margin-inline: auto;
  }
}
.common_label_btnList:last-child {
  margin-left: 30px;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList:last-child {
    margin-top: 25px;
    margin-left: 0;
    margin-inline: auto;
  }
}
.common_label_btnLabel {
  width: 90px;
  max-width: 100%;
  margin-left: 25%;
  height: 100%;
  position: relative;
  z-index: 2;
  aspect-ratio: 90/28;
  transition: all 0.3s ease 0s;
}
.common_label_btnLabel img {
  height: auto;
}
.common_label_btnLink {
  color: #0E9352;
  font-weight: 700;
  margin-top: -18px;
  background-color: #FFF;
  padding: 10px;
  display: block;
  transition: all 0.3s ease 0s;
}
.common_label_btnLink:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_label_btnLink:hover + .common_label_btnLabel {
  transform: translateY(2px);
}
.common_label_btnLink::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  right: 23px;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  top: 47%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::before {
    right: 18px;
  }
}
.common_label_btnLink::after {
  content: "";
  position: absolute;
  background: #0E9352;
  border-radius: 23px;
  width: 23px;
  height: 23px;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top;
  top: 50%;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::after {
    right: 10px;
  }
}

/*----------------------------------------------------------

  ポイント

----------------------------------------------------------*/
.point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}
@media only screen and (max-width: 768px) {
  .point {
    gap: 15px;
    padding-top: 10px;
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

.point_card {
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .point_card {
    padding: 16px 20px 28px;
  }
}

.point_head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: -38px;
  margin-inline: -10px;
}
@media only screen and (max-width: 768px) {
  .point_head {
    gap: 14px;
    margin-top: -22px;
    margin-inline: -6px;
  }
}

.point_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 70px;
  aspect-ratio: 70/104;
  padding-block: 8px;
  padding-inline: 12px 8px;
  background-color: #0e9352;
  position: relative;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .point_label {
    width: 44px;
    aspect-ratio: 40/70;
  }
}
.point_label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 8px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #0a6d3d;
}
.point_label .point {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .point_label .point {
    font-size: 11px;
  }
}
.point_label .number {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .point_label .number {
    font-size: 27px;
  }
}

.point_title {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1.4545454545;
  padding-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .point_title {
    font-size: 18px;
  }
}

.point_media {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .point_media {
    margin-top: 20px;
  }
}
.point_media img {
  height: 100%;
  aspect-ratio: 400/180;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .point_media img {
    aspect-ratio: 400/220;
  }
}

.point_body {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .point_body {
    margin-top: 14px;
  }
}

.point_text {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.point_text .--bold {
  font-weight: bold;
}

.point_splide {
  overflow: visible !important;
}
@media only screen and (max-width: 768px) {
  .point_splide {
    margin-top: 8px;
  }
}
.point_splide .splide__track {
  overflow: visible !important;
}

/* ページネーション、矢印 */
.point_controls {
  display: none;
}
@media only screen and (max-width: 768px) {
  .point_controls {
    display: flex;
    position: relative;
    margin-top: 28px;
    margin-right: 10px;
    align-items: center;
    height: 30px;
  }
}

.point_pagination {
  display: flex;
  gap: 10px;
  position: static;
  margin: auto;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .point_pagination {
    gap: 9px;
    position: absolute;
  }
}
.point_pagination .splide_pagination_page {
  width: 14px;
  height: 14px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .point_pagination .splide_pagination_page {
    width: 10px;
    height: 10px;
  }
}
.point_pagination .is-active {
  background: #0e9352;
  transform: scale(1);
}

.point_arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .point_arrows {
    gap: 8px;
  }
}

.point_arrow {
  width: 50px;
  height: 50px;
  position: static;
  transform: translateY(0%);
  opacity: 1;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .point_arrow {
    width: 30px;
    height: 30px;
  }
}
.point_arrow[aria-label="Go to last slide"] {
  opacity: 0;
  visibility: hidden;
}
@media (any-hover: hover) {
  .point_arrow:hover {
    opacity: 0.7;
  }
}
.point_arrow.splide__arrow--prev {
  scale: -1;
}/*# sourceMappingURL=point.css.map */