.js-inview[data-inview=fade] {
  opacity: 0;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(30px);
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn] a::before,
.js-inview[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn] i {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn].is-inview a::before,
.js-inview[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn].is-inview i {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn-border] a::after,
.js-inview[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn-border].is-inview a::after,
.js-inview[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=bg]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-white]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg-white].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-scale]::before {
  transition: transform 0.8s;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;
}
.js-inview[data-inview=bg-scale].is-inview::before {
  transform: translate(-50%, -50%) scale(1);
}
.js-inview-photo[data-inview=scale-small] {
  transition: transform 1s;
  transform: scale(1.5);
}
.is-inview .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

.js-inview-photo-img[data-inview=scale-small] {
  transition: transform 1s;
  transform: translateX(-50%) scale(1.5);
}
.is-inview .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-top-1] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top-1].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-top-2] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top-2].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-top-3] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top-3].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem[data-inview=btn] a::before,
.js-inview-eachItem[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn].is-inview a::before,
.js-inview-eachItem[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=btn-border] a::after,
.js-inview-eachItem[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn-border].is-inview a::after,
.js-inview-eachItem[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border]::before {
  transition: transform 0.8s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=list-border] span,
.js-inview-eachItem[data-inview=list-border] figure,
.js-inview-eachItem[data-inview=list-border] a {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=list-border] i {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(-20px) rotate(45deg);
}
.js-inview-eachItem[data-inview=list-border].is-inview::before {
  transform: scale(1);
}
.js-inview-eachItem[data-inview=list-border].is-inview span,
.js-inview-eachItem[data-inview=list-border].is-inview figure,
.js-inview-eachItem[data-inview=list-border].is-inview a {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border].is-inview i {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}
.js-inview-eachItem-fast[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.js-inview-eachItem-fast[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade] {
  opacity: 0;
  transition: transform 0.8s;
}
.js-inview-eachItem-delay[data-inview=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top-1] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top-1].is-inview {
  opacity: 1;
  transform: translate(1.8rem, 0);
}
@media (max-width: 767px) {
  .js-inview-eachItem-delay[data-inview=fade-top-1].is-inview {
    transform: translate(1.2rem, 0);
  }
}
.js-inview-eachItem-delay[data-inview=fade-top-2] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top-2].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top-3] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top-3].is-inview {
  opacity: 1;
  transform: translate(-1.8rem, 0);
}
@media (max-width: 767px) {
  .js-inview-eachItem-delay[data-inview=fade-top-3].is-inview {
    transform: translate(-1.3rem, 0);
  }
}
.js-inview-eachItem-delay[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem-delay[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem-delay[data-inview=fade-left] {
  opacity: 1;
  transition: transform 0.8s ease-out;
  transform-origin: left center;
  transform: translate(69.5%, 55%) scaleX(0);
}
.js-inview-eachItem-delay[data-inview=fade-left].is-inview {
  transform: translate(69.5%, 55%) scaleX(1);
}
@media (max-width: 767px) {
  .js-inview-eachItem-delay[data-inview=fade-left] {
    transform: translate(50%, 23%) scaleX(0);
  }
  .js-inview-eachItem-delay[data-inview=fade-left].is-inview {
    transform: translate(50%, 23%) scaleX(1);
  }
}
.js-inview-eachItem-delay[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem-delay[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-all[data-inview=btn] a::before,
.js-inview-all[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn].is-inview a::before,
.js-inview-all[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-all[data-inview=btn-border] a::after,
.js-inview-all[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn-border].is-inview a::after,
.js-inview-all[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

html:has(.l-reform) {
  box-sizing: border-box !important;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 8rem;
}

.l-reform {
  overflow-x: clip;
}
.l-reform .main {
  height: 100%;
  min-height: 141.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-reform .main {
    min-height: 118rem;
  }
}
.l-reform .main::before {
  content: "";
  display: block;
  position: absolute;
  width: 185%;
  height: 140%;
  -o-object-fit: contain;
     object-fit: contain;
  top: 5rem;
  left: 50%;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  background-image: url(../images/reform/bg-beige.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .main::before {
    width: 370%;
    height: 100%;
    top: 6.7rem;
  }
}
.l-reform .s-mv {
  width: 100%;
  height: 100vh;
  max-height: 80rem;
  position: relative;
}
.l-reform .s-mv__bg-image01 {
  width: 138rem;
  height: auto;
  position: absolute;
  top: 13.3rem;
  left: 50%;
  transform: translateX(-69.9rem);
  z-index: 110;
}
@media (max-width: 767px) {
  .l-reform .s-mv__bg-image01 {
    width: 100%;
    height: auto;
    top: 9.4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-reform .s-mv__bg-image02 {
  width: 87rem;
  height: auto;
  position: absolute;
  top: 2.4rem;
  right: 50%;
  transform: translateX(87rem) rotate(-14.5deg);
  z-index: 200;
}
@media (max-width: 767px) {
  .l-reform .s-mv__bg-image02 {
    left: inherit;
    width: 38.7rem;
    top: 5.6rem;
    right: 50%;
    transform: translateX(26.2rem) rotate(-14.5deg);
  }
}
.l-reform .s-mv__main-content {
  position: absolute;
  top: 54rem;
  left: 50%;
  transform: translateX(calc(-50% - 30rem)) translateY(calc(-50% + 0.2rem));
  width: auto;
  text-align: center;
  z-index: 150;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content {
    width: 100%;
    top: 47rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-reform .s-mv__main-content__title {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title {
    width: 100%;
  }
}
.l-reform .s-mv__main-content__title h1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  line-height: 1.5;
  position: relative;
  z-index: 150;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title h1 {
    width: 100%;
    gap: 0;
  }
}
.l-reform .s-mv__main-content__title h1::before {
  content: "";
  background-image: url(../images/reform/mv-bg02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -9.9rem;
  left: -13.5rem;
  z-index: -1;
  width: 31.4rem;
  height: 33rem;
  transform: rotate(16deg);
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title h1::before {
    bottom: -8.9rem;
    left: -3.9rem;
    width: 19rem;
    height: 33rem;
  }
}
.l-reform .s-mv__main-content__title-small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  color: #444;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title-small {
    width: 100%;
    font-size: 2.2rem;
    text-align: start;
    padding-left: 2rem;
    line-height: 1;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-mv__main-content__title-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.7rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title-medium {
    width: 100%;
    font-size: 2.8rem;
    text-align: start;
    padding-left: 2rem;
    line-height: 1;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-mv__main-content__title-large {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.9rem;
  font-weight: 500;
  color: #EA897A;
  margin-left: -4rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title-large {
    width: 100%;
    margin-left: 0;
    font-size: 3.5rem;
    text-align: start;
    letter-spacing: 0.01em;
    line-height: 1.9;
  }
}
.l-reform .s-mv__main-content__title-large .s-mv__main-content__title-medium {
  margin-left: -3rem;
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__title-large .s-mv__main-content__title-medium {
    margin-left: -1.8rem;
    text-align: start;
    padding-left: 0;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .l-reform .s-mv__main-content__description {
    position: absolute;
    top: 8.4rem;
    right: 0.2rem;
    transform: translateX(0);
    width: 13.2rem;
    height: 10rem;
  }
}
.l-reform .s-message {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  position: absolute;
  top: 82rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
}
@media (max-width: 767px) {
  .l-reform .s-message {
    width: 100%;
    top: 66rem;
  }
}
.l-reform .s-message__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 3rem;
}
@media (max-width: 767px) {
  .l-reform .s-message__content {
    gap: 2.8rem;
  }
}
.l-reform .s-message__content::before {
  content: "";
  background-image: url(../images/reform/mv-bg02-pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 5.3rem;
  height: 5.3rem;
  position: absolute;
  top: 7.5rem;
  right: 1rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .s-message__content::before {
    display: none;
  }
}
.l-reform .s-message__content__title h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #444;
}
@media (max-width: 767px) {
  .l-reform .s-message__content__title h2 {
    font-size: 2.2rem;
    z-index: 150;
    position: relative;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-message__content__title-highlight {
  color: #EA897A;
}
.l-reform .s-message__content__description p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #444;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-message__content__description p {
    font-size: 1.4rem;
    line-height: 1.75;
    position: relative;
    z-index: 150;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-message__bg-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 100;
}
.l-reform .s-message__bg-image .inner-image01 {
  position: absolute;
  top: -14.8rem;
  left: -30.1rem;
  z-index: 110;
  width: 28rem;
}
@media (max-width: 767px) {
  .l-reform .s-message__bg-image .inner-image01 {
    top: 2.8rem;
    left: 3rem;
    width: 16rem;
  }
}
.l-reform .s-message__bg-image .inner-image02 {
  position: absolute;
  top: -14.4rem;
  right: -24.5rem;
  z-index: 120;
  width: 17.9rem;
}
@media (max-width: 767px) {
  .l-reform .s-message__bg-image .inner-image02 {
    top: 2.4rem;
    right: 3.3rem;
    width: 12.5rem;
  }
}
.l-reform .s-message__bg-image .inner-image03 {
  position: absolute;
  top: -21.7rem;
  left: -41.1rem;
  z-index: 10;
  width: 23.5rem;
  transform: rotate(15deg);
}
@media (max-width: 767px) {
  .l-reform .s-message__bg-image .inner-image03 {
    top: 1.8rem;
    left: -2.6rem;
    width: 14rem;
  }
}
.l-reform .s-message__bg-image .inner-image04 {
  position: absolute;
  top: -24.9rem;
  right: -40rem;
  z-index: 10;
  width: 23.6rem;
  transform: rotate(-15.7deg);
}
@media (max-width: 767px) {
  .l-reform .s-message__bg-image .inner-image04 {
    top: -23.8rem;
    right: -2.6rem;
    width: 14.5rem;
  }
}
.l-reform .s-concerns {
  width: 100%;
  height: 72.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-reform .s-concerns {
    height: 59rem;
  }
}
.l-reform .s-concerns::before {
  content: "";
  display: block;
  position: absolute;
  width: 155%;
  height: 165%;
  -o-object-fit: contain;
     object-fit: contain;
  top: -24rem;
  left: 50%;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  background-image: url(../images/reform/bg-pink.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .s-concerns::before {
    width: 235%;
    height: 130%;
    top: -9.4rem;
    left: 50%;
  }
}
.l-reform .s-concerns__content {
  position: absolute;
  top: -15.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 200;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content {
    top: -4rem;
  }
}
.l-reform .s-concerns__content__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  gap: 1rem;
  justify-items: center;
  padding-left: 0.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__title {
    grid-template-columns: 2.5rem 1fr;
    gap: 0;
    padding-left: 0;
  }
}
.l-reform .s-concerns__content__title img {
  width: 5rem;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__title img {
    width: 100%;
    height: auto;
  }
}
.l-reform .s-concerns__content__title h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__title h2 {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-concerns__content__description {
  position: relative;
}
.l-reform .s-concerns__content__description .s-concerns__content__description__image {
  position: absolute;
  top: 4.6rem;
  left: 50%;
  transform: translateX(calc(-50% + 3.3rem));
  width: 16.7rem;
  height: auto;
  z-index: 110;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .s-concerns__content__description__image {
    top: 8.5rem;
    transform: translateX(calc(-50% + 0.8rem));
    width: 7.3rem;
  }
}
.l-reform .s-concerns__content__description .s-concerns__content__description__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-reform .s-concerns__content__description .balloon {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background-color: #fff;
  border-radius: 3rem;
  padding: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1rem 5rem;
  position: relative;
  left: 50%;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon {
    border-radius: 2.5rem;
    font-size: 1.4rem;
    padding: 0.9rem 1.9rem;
    line-height: 1.5;
  }
}
.l-reform .s-concerns__content__description .balloon::before {
  content: "";
  background-image: url(../images/reform/balloon-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
}
.l-reform .s-concerns__content__description .balloon.balloon01 {
  top: 10rem;
  transform: translateX(-39.9rem) translateY(-5.4rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon01 {
    top: 0;
    transform: translateX(-15.1rem) translateY(2.3rem);
    border-radius: 2.5rem;
    font-size: 1.4rem;
    padding: 0.8rem 1.9rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon01::before {
  width: 2.7rem;
  height: 3rem;
  bottom: -3rem;
  left: 21.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon01::before {
    width: 1.4rem;
    height: 1rem;
    bottom: -1.4rem;
    left: 7.3rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon02 {
  top: 13rem;
  transform: translateX(-51.8rem) translateY(-5.2rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon02 {
    transform: translateX(-17.6rem) translateY(-7.4rem);
    padding: 0.7rem 1.9rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon02::before {
  width: 2.7rem;
  height: 3rem;
  bottom: -0.5rem;
  left: 29.7rem;
  transform: rotate(-12deg);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon02::before {
    width: 1.4rem;
    bottom: -2.1rem;
    left: 10.3rem;
    transform: rotate(-9deg);
  }
}
.l-reform .s-concerns__content__description .balloon.balloon03 {
  bottom: -15.2rem;
  transform: translateX(-42.6rem) translateY(-5.2rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon03 {
    transform: translateX(-16.8rem) translateY(-4.2rem);
    padding: 0.7rem 1.9rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon03::before {
  width: 2.7rem;
  height: 3rem;
  bottom: 1.6rem;
  left: 28.2rem;
  transform: rotate(-49deg);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon03::before {
    width: 1.4rem;
    bottom: 5.3rem;
    left: 15.3rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon04 {
  padding: 3.3rem 5rem;
  top: 16.5rem;
  transform: translateX(20.9rem) translateY(-43.2rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon04 {
    padding: 0.7rem 1.9rem;
    top: 19.8rem;
    transform: translateX(4rem) translateY(-37.1rem);
  }
}
.l-reform .s-concerns__content__description .balloon.balloon04::before {
  width: 2.8rem;
  height: 3rem;
  bottom: -3.6rem;
  left: 0.6rem;
  transform: rotate(134.6deg);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon04::before {
    width: 1.4rem;
    bottom: -2.3rem;
    left: 1.3rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon05 {
  bottom: 18.6rem;
  transform: translateX(30rem) translateY(-5.2rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon05 {
    bottom: 8.6rem;
    transform: translateX(5.1rem) translateY(-5.2rem);
    padding: 0.7rem 1.9rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon05::before {
  width: 2.7rem;
  height: 3rem;
  bottom: -2.3rem;
  left: -1.8rem;
  transform: rotate(152deg);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon05::before {
    width: 1.4rem;
    bottom: -2.2rem;
    left: 0.5rem;
  }
}
.l-reform .s-concerns__content__description .balloon.balloon06 {
  padding: 3.3rem 5rem;
  top: 16.5rem;
  transform: translateX(25.4rem) translateY(-35.8rem);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon06 {
    padding: 0.7rem 1.9rem;
    top: 1.2rem;
    transform: translateX(3.9rem) translateY(-10.7rem);
  }
}
.l-reform .s-concerns__content__description .balloon.balloon06::before {
  width: 2.8rem;
  height: 3rem;
  bottom: 1.3rem;
  left: -3.8rem;
  transform: rotate(189deg);
}
@media (max-width: 767px) {
  .l-reform .s-concerns__content__description .balloon.balloon06::before {
    width: 1.4rem;
    bottom: 3.6rem;
    left: -1.2rem;
  }
}
.l-reform .s-concerns__bnr {
  margin-inline: auto;
  width: 109rem;
  height: 21.8rem;
  background-color: transparent;
  z-index: 200;
  position: relative;
  top: 35.3rem;
  left: 2.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr {
    width: 34.7rem;
    height: 17.6rem;
    top: 32.3rem;
    left: 0;
  }
}
.l-reform .s-concerns__bnr::before {
  content: "";
  background-image: url(../images/reform/concerns-bnr-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  background-color: transparent;
  z-index: 90;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr::before {
    background-image: url(../images/reform/concerns-bnr-bg_sp.png);
  }
}
.l-reform .s-concerns__bnr .bnr-image01 {
  position: absolute;
  bottom: -1.5rem;
  right: 1.8rem;
  width: 33rem;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 130;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .bnr-image01 {
    bottom: 1.3rem;
    right: -0.5rem;
    width: 13.9rem;
  }
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  bottom: 0;
  left: 0;
  height: auto;
  padding-left: 8rem;
  padding-top: 4.4rem;
  z-index: 140;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .s-concerns__bnr-text {
    padding-left: 2.9rem;
    padding-top: 3.6rem;
    gap: 0.8rem;
  }
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text .text-type01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.04em;
  padding-left: 0.9rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .s-concerns__bnr-text .text-type01 {
    font-size: 1.6rem;
    padding-left: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content {
  display: grid;
  grid-template-columns: 38.1rem 1fr;
  align-items: end;
  gap: 3rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content {
    grid-template-columns: 16.4rem 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0.6rem;
  }
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content .bnr-image02 {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content .text-type02 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #EA897A;
  letter-spacing: 0.04em;
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content .text-type02 {
    font-size: 2rem;
    grid-column: 1/3;
  }
}
.l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content .text-type03 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.04em;
  margin-right: 0.7rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .l-reform .s-concerns__bnr .s-concerns__bnr-text .s-concerns__bnr-text__content .text-type03 {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.7rem;
    margin-right: 0;
    padding-left: 1.1rem;
  }
}
.l-reform .s-benefits {
  width: 100%;
  height: 82.7rem;
  position: relative;
  top: 0;
  background-color: #FFF6EB;
}
@media (max-width: 767px) {
  .l-reform .s-benefits {
    height: 78.5rem;
  }
}
.l-reform .s-benefits::before {
  content: "";
  display: block;
  position: absolute;
  width: 126%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  top: -10rem;
  left: 50%;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  background-image: url(../images/reform/bg-beige.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .s-benefits::before {
    width: 270%;
    height: 100%;
    top: -6.3rem;
  }
}
.l-reform .s-benefits__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 10rem;
  text-align: center;
  z-index: 160;
}
.l-reform .s-benefits__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 23rem 1fr;
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 4.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__title {
    grid-template-columns: 13.2rem 1fr;
    gap: 0.9rem;
    margin-bottom: 2.9rem;
  }
}
.l-reform .s-benefits__title-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-reform .s-benefits__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #444;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__title-text {
    font-size: 2.2rem;
  }
}
.l-reform .s-benefits__list {
  width: 100%;
  max-width: 116.5rem;
  margin-inline: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 10.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list {
    max-width: 38.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    padding-inline: 2rem;
    gap: 0.9rem;
    margin-bottom: 6rem;
  }
}
.l-reform .s-benefits__list .item__head {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  gap: 0.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__head {
    grid-column: 1;
    grid-row: 1;
  }
}
.l-reform .s-benefits__list .item__head .item__head-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #EA897A;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__head .item__head-text {
    font-size: 1.2rem;
  }
}
.l-reform .s-benefits__list .item__head .item__head-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background-color: #EA897A;
  padding: 1rem;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__head .item__head-number {
    font-size: 1.2rem;
    padding: 0.4rem;
  }
}
.l-reform .s-benefits__list .item__body-text {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__body-text {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    order: 2;
    grid-column: 1;
    grid-row: 2;
    padding-top: 0.3rem;
  }
}
.l-reform .s-benefits__list .item__body-image {
  width: 10rem;
  height: 10rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__body-image {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 2.8rem;
    right: 2.5rem;
  }
}
.l-reform .s-benefits__list .item__body-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list .item__body-description {
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    line-height: 1.6;
    grid-column: 1/-1;
    grid-row: 3;
    padding-top: 0.8rem;
  }
}
.l-reform .s-benefits__list-item {
  height: 100%;
  padding: 2.2rem 1rem 2.5rem 1rem;
  display: grid;
  grid-template-rows: 4rem 10.4rem 12.7rem auto;
  background-color: #fff;
  border-radius: 3rem;
  padding-inline: 2.5rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list-item {
    height: auto;
    position: relative;
    grid-template-rows: repeat(3, min-content);
    grid-template-columns: 1fr 7rem;
    padding: 1.8rem 2.5rem 1.5rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list-item:nth-child(2) {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  }
  .l-reform .s-benefits__list-item:nth-child(2) .item__body-description {
    padding-top: 1.5rem;
    line-height: 1.5;
  }
  .l-reform .s-benefits__list-item:nth-child(2) .item__body-image {
    top: 2.2rem;
  }
}
@media (max-width: 767px) {
  .l-reform .s-benefits__list-item:nth-child(3) {
    padding: 1.8rem 2rem 1.5rem 2rem;
  }
  .l-reform .s-benefits__list-item:nth-child(3) .item__body-text {
    padding-top: 0.5rem;
  }
}
.l-reform .s-benefits__bnr {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.l-reform .s-benefits__bnr-link {
  box-sizing: border-box;
  background-color: #EA897A;
  border: 4px solid #FFFFFF;
  width: 84.5rem;
  height: 12.5rem;
  border-radius: 9999px;
  display: grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding-inline: 5rem 8rem;
  transition: all 0.3s ease;
}
.l-reform .s-benefits__bnr-link:hover {
  background-color: rgba(234, 137, 122, 0.8);
}
@media (max-width: 767px) {
  .l-reform .s-benefits__bnr-link {
    width: 34rem;
    height: 8.6rem;
    grid-template-columns: 1fr 2.7rem;
    padding-inline: 1.1rem 3.2rem;
    gap: 0.4rem;
    border: 3px solid #FFFFFF;
  }
}
.l-reform .s-benefits__bnr-link-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-benefits__bnr-link-text {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-services {
  background-color: #FFF6EB;
  padding-bottom: 9.7rem;
}
@media (max-width: 767px) {
  .l-reform .s-services {
    padding-bottom: 4.7rem;
  }
}
.l-reform .s-services__content {
  width: 100%;
  text-align: center;
}
.l-reform .s-services__title {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 4.3rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-services__title {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.3rem;
    padding-left: 0.4rem;
    margin-bottom: 2.5rem;
  }
}
.l-reform .s-services__title-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-reform .s-services__title-img path {
  fill: #569F60;
}
.l-reform .s-services__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-services__title-text {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-services__list-wrapper {
  max-width: 117rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 36.5rem);
  align-items: start;
  justify-content: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-wrapper {
    max-width: 34.7rem;
    height: auto;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(5, auto);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0.6rem;
  }
}
.l-reform .s-services__list-item {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item {
    min-height: 18.8rem;
    height: auto;
    grid-column: 1;
    width: 100%;
  }
}
.l-reform .s-services__list-item:before {
  height: 100%;
  content: "";
  background-image: url(../images/reform/services-list-item01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:before {
    height: 100%;
    background-image: url(../images/reform/services-list-item01_sp.png);
  }
}
.l-reform .s-services__list-item .list-item__wrapper {
  height: 100%;
  position: relative;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1.2fr 1fr;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item .list-item__wrapper {
    grid-template-rows: 10.8rem 1fr;
  }
}
.l-reform .s-services__list-item .list-item__content {
  border-bottom: 2px solid #EA897A;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item .list-item__content {
    padding-top: 0.8rem;
  }
}
.l-reform .s-services__list-item .list-item__sub-content {
  padding-top: 1rem;
  padding-left: 1rem;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0 0.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item .list-item__sub-content {
    padding-top: 0.6rem;
    padding-left: 0.2rem;
  }
}
.l-reform .s-services__list-item .list-item__sub-content span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item .list-item__sub-content span {
    font-size: 1rem;
    line-height: 1.3;
  }
}
.l-reform .s-services__list-item .list-item__title {
  display: flex;
  align-items: baseline;
  justify-content: start;
  gap: 0.9rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item .list-item__title {
    align-items: center;
    gap: 0.3rem;
  }
}
.l-reform .s-services__list-item:nth-child(odd) {
  padding-left: 23.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(odd) {
    padding-inline: 14rem 1rem;
  }
}
.l-reform .s-services__list-item:nth-child(odd) .list-item__wrapper {
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(odd) .list-item__wrapper {
    padding-right: 0;
    padding-top: 1rem;
  }
}
.l-reform .s-services__list-item:nth-child(even) {
  padding-right: 23.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(even) {
    padding-right: 13.9rem;
  }
}
.l-reform .s-services__list-item:nth-child(even) .list-item__content {
  padding-left: 1.9rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(even) .list-item__content {
    padding-left: 1rem;
    padding-top: 1.8rem;
    align-items: end;
  }
}
.l-reform .s-services__list-item:nth-child(even) .list-item__wrapper {
  padding-left: 4.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(even) .list-item__wrapper {
    padding-left: 1rem;
    grid-template-rows: 11.8rem 1fr;
  }
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(even) .list-item__description p {
    text-align: end;
  }
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(even) .list-item__sub-content {
    justify-content: end;
  }
}
.l-reform .s-services__list-item:nth-child(2) {
  align-items: center;
  justify-content: start;
}
.l-reform .s-services__list-item:nth-child(2):before {
  background-image: url(../images/reform/services-list-item02.png);
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(2):before {
    background-image: url(../images/reform/services-list-item02_sp.png);
  }
}
.l-reform .s-services__list-item:nth-child(3) {
  align-items: center;
  justify-content: start;
}
.l-reform .s-services__list-item:nth-child(3):before {
  background-image: url(../images/reform/services-list-item03.png);
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(3):before {
    background-image: url(../images/reform/services-list-item03_sp.png);
  }
}
.l-reform .s-services__list-item:nth-child(4) {
  align-items: center;
  justify-content: start;
}
.l-reform .s-services__list-item:nth-child(4):before {
  background-image: url(../images/reform/services-list-item04.png);
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(4):before {
    background-image: url(../images/reform/services-list-item04_sp.png);
  }
}
.l-reform .s-services__list-item:nth-child(5) {
  align-items: center;
  justify-content: start;
}
.l-reform .s-services__list-item:nth-child(5):before {
  background-image: url(../images/reform/services-list-item05.png);
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item:nth-child(5):before {
    background-image: url(../images/reform/services-list-item05_sp.png);
  }
}
.l-reform .s-services__list-item-single {
  grid-column: span 2;
  padding-left: 52rem !important;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single {
    grid-column: 1;
    padding-inline: 0 !important;
    min-height: 34rem;
  }
}
.l-reform .s-services__list-item-single .list-item__wrapper {
  grid-template-rows: 1.4fr 1fr;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__wrapper {
    grid-template-rows: 9.7rem auto;
    padding: 13rem 1rem 2.4rem 1rem !important;
  }
}
.l-reform .s-services__list-item-single .list-item__content {
  padding-top: 7rem;
  gap: 1.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__content {
    height: -moz-min-content;
    height: min-content;
    padding-block: 0 0.7rem;
    gap: 1rem;
    margin-inline: 1rem;
  }
}
.l-reform .s-services__list-item-single .list-item__title {
  gap: 1.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__title {
    gap: 0.3rem;
  }
}
.l-reform .s-services__list-item-single .list-item__price-content {
  padding-left: 0;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__price-content {
    padding-left: 2rem;
    padding-top: 0.5rem;
  }
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content {
  justify-content: center;
  padding-right: 0;
  position: relative;
  padding-right: 20rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__price-content .price-content {
    padding-right: 0.5rem;
    justify-content: end;
  }
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button {
  position: absolute;
  right: -0.5rem;
  bottom: 0.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button {
    right: 0.9rem;
    bottom: -4.4rem;
  }
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button:hover {
  opacity: 0.8;
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button__link {
  height: 4.5rem;
  width: 24rem;
  background-color: #EA897A;
  display: grid;
  grid-template-columns: auto 1.6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button__link {
    width: 15.8rem;
    height: 3.3rem;
  }
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button__link:hover {
  background-color: rgba(234, 137, 122, 0.8);
}
.l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button__link-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-services__list-item-single .list-item__price-content .price-content .price-content-button__link-text {
    font-size: 1.4rem;
  }
}
.l-reform .s-services__icon01 {
  position: absolute;
  top: -1.8rem;
  left: -19.9rem;
  width: 20rem;
  height: auto;
}
@media (max-width: 767px) {
  .l-reform .s-services__icon01 {
    width: 14.5rem;
    left: inherit;
    right: -0.8rem;
    top: -1.3rem;
  }
}
.l-reform .s-services__icon02 {
  position: absolute;
  top: 0;
  right: 24rem;
  width: 11.8rem;
  height: auto;
}
@media (max-width: 767px) {
  .l-reform .s-services__icon02 {
    width: 7rem;
    right: inherit;
    top: inherit;
    bottom: -0.3rem;
    left: 5.6rem;
  }
}
.l-reform .s-services__icon03 {
  position: absolute;
  width: 16rem;
  height: auto;
  bottom: 1rem;
  left: -20rem;
}
@media (max-width: 767px) {
  .l-reform .s-services__icon03 {
    width: 8rem;
    left: inherit;
    right: 9.4rem;
    top: 5.9rem;
  }
}
.l-reform .s-services .list-item__title-number {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-services .list-item__title-number {
    font-size: 1.15rem;
  }
}
.l-reform .s-services .list-item__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-services .list-item__title-text {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-services .list-item__description p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: start;
}
@media (max-width: 767px) {
  .l-reform .s-services .list-item__description p {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-insurance {
  background-color: #FFF6EB;
  padding-bottom: 9.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance {
    padding-bottom: 4.6rem;
  }
}
.l-reform .s-insurance__content {
  width: 100%;
  text-align: center;
}
.l-reform .s-insurance__title {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 4.9rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__title {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.3rem;
    padding-left: 0.4rem;
    margin-bottom: 5.2rem;
  }
}
.l-reform .s-insurance__title-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-reform .s-insurance__title-img path {
  fill: #569F60;
}
.l-reform .s-insurance__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__title-text {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-insurance__description {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-left: 4rem;
  margin-bottom: 4.2rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__description {
    padding-left: 0;
    margin-bottom: 2.5rem;
  }
}
.l-reform .s-insurance__description-image {
  width: 12.7rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50.3rem);
}
@media (max-width: 767px) {
  .l-reform .s-insurance__description-image {
    transform: translateX(0);
    width: 13.5rem;
    bottom: 4.1rem;
    left: 1rem;
  }
}
.l-reform .s-insurance__description-content {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  z-index: 100;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__description-content {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-insurance__content-description {
  height: 100%;
  display: grid;
  grid-template-rows: 13.8rem 1fr;
  align-items: start;
  justify-content: start;
  gap: 0.7rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description {
    grid-template-rows: auto 1fr;
    gap: 0;
  }
}
.l-reform .s-insurance__content-description-head {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: start;
}
.l-reform .s-insurance__content-description-head .title-balloon {
  width: 14rem;
  height: 8.3rem;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background-color: #EA897A;
  margin-right: 1.4rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-balloon {
    border-radius: 1.5rem;
    width: 8.5rem;
    height: 5rem;
    margin-right: 0;
    gap: 0.3rem;
  }
}
.l-reform .s-insurance__content-description-head .title-balloon span {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-balloon span {
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}
.l-reform .s-insurance__content-description-head .title-balloon span:last-child {
  display: inline-block;
  letter-spacing: 0.4em;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-balloon span:last-child {
    padding-left: 0;
    letter-spacing: 0.08em;
  }
}
.l-reform .s-insurance__content-description-head .title-price {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: start;
  gap: 0.6rem;
  margin-right: 0.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-price {
    margin-right: 0;
    gap: 0;
    margin-left: 0.7rem;
  }
}
.l-reform .s-insurance__content-description-head .title-price__value {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 9rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-price__value {
    font-size: 6.4rem;
    line-height: 0.7;
  }
}
.l-reform .s-insurance__content-description-head .title-price__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(-0.8rem);
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-price__unit {
    font-size: 1.7rem;
    transform: translateY(-0.5rem);
  }
}
.l-reform .s-insurance__content-description-head .title-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(1.3rem);
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-description {
    font-size: 2.1rem;
    transform: translateY(0.9rem);
    letter-spacing: 0.01em;
    padding-left: 0.5rem;
  }
}
.l-reform .s-insurance__content-description-head .title-description span {
  display: inline-block;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-head .title-description span {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-image {
    border-radius: 2rem;
    overflow: clip;
    margin-top: 2.2rem;
  }
}
.l-reform .s-insurance__content-description-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.9rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-body {
    margin-top: 1.6rem;
    height: -moz-min-content;
    height: min-content;
  }
}
.l-reform .s-insurance__content-description-body p {
  text-align: start;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-description-body p {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-insurance__inner-content {
  width: -moz-min-content;
  width: min-content;
  max-width: 110rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 44.2rem max-content;
  align-items: start;
  gap: 4.7rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__inner-content {
    max-width: 34.7rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.7rem;
  }
}
.l-reform .s-insurance__content-image {
  border-radius: 2rem;
  overflow: clip;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__content-image {
    position: absolute;
  }
}
.l-reform .s-insurance__card {
  position: relative;
  max-width: 99.5rem;
  width: 100%;
  min-height: 31.5rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 3rem;
  padding: 2.5rem 10rem 1rem 7rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card {
    max-width: 34.5rem;
    padding: 1.3rem 1.7rem 1rem 1.7rem;
  }
}
.l-reform .s-insurance__card-title {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.7rem;
  padding-inline: 5.2rem 2rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-title {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
  }
}
.l-reform .s-insurance__card-title-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-title-check {
    gap: 1.4rem;
  }
}
.l-reform .s-insurance__card-title-check span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 3.7rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-title-check span {
    font-size: 2rem;
  }
}
.l-reform .s-insurance__card-title-check img {
  transform: translateY(-0.7rem);
  width: 5.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-title-check img {
    width: 2.5rem;
    transform: translate(-1.5rem, -0.3rem);
  }
}
.l-reform .s-insurance__card-title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-title-text {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    text-align: start;
    margin-inline: auto;
    line-height: 1.4;
  }
}
.l-reform .s-insurance__card-content-icon {
  position: absolute;
  bottom: -0.5rem;
  right: 0.7rem;
  width: 13.6rem;
  height: auto;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-content-icon {
    bottom: -0.2rem;
    right: 1.9rem;
    width: 11.1rem;
  }
}
.l-reform .s-insurance__list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: start;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__list-wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1rem;
  }
}
.l-reform .s-insurance__card-content-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-content-list {
    gap: 1.2rem;
  }
}
.l-reform .s-insurance__card-content-list:last-child .s-insurance__card-content-list-item:nth-child(2):before {
  top: 0;
  transform: translateY(15%);
}
.l-reform .s-insurance__card-content-list-item {
  padding-left: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-content-list-item {
    font-size: 1.4rem;
    padding-left: 2.2rem;
    letter-spacing: 0.02em;
    text-align: start;
    line-height: 1.5;
  }
}
.l-reform .s-insurance__card-content-list-item::before {
  content: "";
  background-image: url(../images/common/check-icon.png);
  background-size: 1.3rem 1.3rem;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #EA897A;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-content-list-item::before {
    background-size: 1rem 1rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.l-reform .s-insurance__card-content-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: start;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .l-reform .s-insurance__card-content-description {
    font-size: 1.4rem;
    padding-left: 0;
    line-height: 1.5;
  }
}
.l-reform .s-flow {
  background-color: #FFF6EB;
  padding-bottom: 10.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-flow {
    padding-bottom: 5.2rem;
  }
}
.l-reform .s-flow__content {
  width: 100%;
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .l-reform .s-flow__content {
    margin-bottom: 4.8rem;
  }
}
.l-reform .s-flow__title {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 4.5rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-flow__title {
    margin-bottom: 2.8rem;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.3rem;
    padding-left: 0.4rem;
  }
}
.l-reform .s-flow__title-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-reform .s-flow__title-img path {
  fill: #569F60;
}
.l-reform .s-flow__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-flow__title-text {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-flow__list {
  width: 100%;
  max-width: 112.5rem;
  margin-inline: auto;
  height: auto;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list {
    max-width: 26.5rem;
  }
}
.l-reform .s-flow__list-wrapper {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  gap: 3.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-wrapper {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }
}
.l-reform .s-flow__list-item {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
  padding-block: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 6rem 1fr;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-item {
    width: 100%;
    grid-template-columns: 2.5rem auto 5rem;
    grid-template-rows: auto;
    justify-content: normal;
    padding-block: 1rem;
    padding-inline: 1.7rem 2rem;
    gap: 0.7rem;
  }
}
.l-reform .s-flow__list-item:before {
  content: "";
  background-image: url(../images/common/pink-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translate(0, -50%);
  width: 1.5rem;
  height: 1.5rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-item:before {
    background-image: url(../images/common/pink-arrow_sp.png);
    left: 50%;
    top: -1.8rem;
    transform: translate(-50%, 0) rotate(90deg);
    width: 1.5rem;
    height: 1.5rem;
  }
}
.l-reform .s-flow__list-item:first-child:before {
  display: none;
}
.l-reform .s-flow__list-item .flow-number {
  width: 3.3rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background-color: #EA897A;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-item .flow-number {
    position: relative;
    left: inherit;
    transform: translate(0, 0);
    width: 2.5rem;
    height: 2.5rem;
  }
}
.l-reform .s-flow__list-item .flow-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-item .flow-title {
    text-align: start;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-flow__list-item .flow-icon {
  width: 10rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .l-reform .s-flow__list-item .flow-icon {
    width: 5rem;
  }
}
.l-reform .s-flow__btn {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.l-reform .s-flow__btn-link {
  box-sizing: border-box;
  background-color: #EA897A;
  border: 4px solid #FFFFFF;
  width: 84.5rem;
  height: 12.5rem;
  border-radius: 9999px;
  display: grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding-inline: 5rem 8rem;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .l-reform .s-flow__btn-link {
    width: 34rem;
    height: 8.6rem;
    grid-template-columns: 1fr 2.7rem;
    padding-inline: 1.1rem 3.2rem;
    gap: 0.4rem;
    border: 3px solid #FFFFFF;
  }
}
.l-reform .s-flow__btn-link:hover {
  background-color: rgba(234, 137, 122, 0.8);
}
.l-reform .s-flow__btn-link-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-flow__btn-link-text {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-bfaf {
  width: 100%;
  height: auto;
  border-radius: 3rem;
  background-color: #FFF6EB;
  padding-bottom: 9.8rem;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf {
    padding-bottom: 5rem;
    border-radius: 0;
  }
}
.l-reform .s-bfaf__swiper {
  width: 100%;
  height: auto;
}
.l-reform .s-bfaf .swiper-wrapper {
  transition-timing-function: linear;
}
.l-reform .s-bfaf .swiper-slide {
  width: 39rem;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf .swiper-slide {
    width: 29rem;
  }
}
.l-reform .s-bfaf__item {
  width: 37rem;
  height: auto;
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 4rem 1fr;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf__item {
    grid-template-rows: 3.3rem 1fr;
    width: 29.5rem;
  }
}
.l-reform .s-bfaf-item__title {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  border-radius: 3rem 3rem 0 0;
  overflow: clip;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf-item__title {
    border-radius: 2.4rem 2.4rem 0 0;
  }
}
.l-reform .s-bfaf-item__title span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf-item__title span {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-bfaf-item__title span:first-child {
  background-color: #AAA297;
}
.l-reform .s-bfaf-item__title span:last-child {
  background-color: #EA897A;
}
.l-reform .s-bfaf-item__image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 3rem 3rem;
  overflow: clip;
}
@media (max-width: 767px) {
  .l-reform .s-bfaf-item__image {
    border-radius: 0 0 2.4rem 2.4rem;
  }
}
.l-reform .s-faq {
  background-color: #FFF6EB;
  padding-bottom: 10.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-faq {
    padding-bottom: 5rem;
  }
}
.l-reform .s-faq__content {
  width: 100%;
  text-align: center;
}
.l-reform .s-faq__title {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 4.5rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-faq__title {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.3rem;
    padding-left: 0.4rem;
    margin-bottom: 2.8rem;
  }
}
.l-reform .s-faq__title-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-reform .s-faq__title-img path {
  fill: #569F60;
}
.l-reform .s-faq__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-faq__title-text {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-faq__list {
  max-width: 92.5rem;
  width: 100%;
  height: auto;
  margin-inline: auto;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list {
    max-width: 34.5rem;
    margin-bottom: 5rem;
  }
}
.l-reform .s-faq__list-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-wrapper {
    gap: 1rem;
  }
}
.l-reform .s-faq__list-item {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item {
    padding-block: 1.1rem;
  }
}
.l-reform .s-faq__list-item-question {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 3.5rem 1fr 5rem;
  padding: 1.3rem 1rem 1.3rem 2.1rem;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-question {
    grid-template-columns: 2.5rem 1fr 2.3rem;
    padding: 0 1.9rem 0 1.5rem;
    gap: 0.5rem;
  }
}
.l-reform .s-faq__list-item-question .question-icon {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #EA897A;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-question .question-icon {
    font-size: 2rem;
  }
}
.l-reform .s-faq__list-item-question .question-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: start;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-question .question-text {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-faq__list-item-question .question-btn {
  width: 3.7rem;
  height: 3.7rem;
  background-color: #EA897A;
  border-radius: 9999px;
  position: relative;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-question .question-btn {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.l-reform .s-faq__list-item-question .question-btn span {
  width: 1.6rem;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-question .question-btn span {
    width: 1.4rem;
  }
}
.l-reform .s-faq__list-item-question .question-btn span:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.l-reform .s-faq__list-item-question .question-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.l-reform .s-faq__list-item-question .question-btn.active span:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.l-reform .s-faq__list-item-question .question-btn.active span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.l-reform .s-faq__list-item-answer {
  width: 100%;
  height: auto;
  padding: 0 6rem 0 6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #555;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: start;
  margin-block: 0 1rem;
}
@media (max-width: 767px) {
  .l-reform .s-faq__list-item-answer {
    padding: 0 4.5rem 0 4.5rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.4;
    margin-block: 1rem;
  }
}
.l-reform .s-faq__btn {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.l-reform .s-faq__btn-link {
  box-sizing: border-box;
  background-color: #EA897A;
  border: 4px solid #FFFFFF;
  width: 84.5rem;
  height: 12.5rem;
  border-radius: 9999px;
  display: grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding-inline: 5rem 8rem;
  transition: all 0.3s ease;
}
.l-reform .s-faq__btn-link:hover {
  background-color: rgba(234, 137, 122, 0.8);
}
@media (max-width: 767px) {
  .l-reform .s-faq__btn-link {
    width: 34rem;
    height: 8.6rem;
    grid-template-columns: 1fr 2.7rem;
    padding-inline: 1.1rem 3.2rem;
    gap: 0.4rem;
    border: 3px solid #FFFFFF;
  }
}
.l-reform .s-faq__btn-link-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-faq__btn-link-text {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
  }
}
.l-reform .s-company {
  background-color: #FFF6EB;
  padding-bottom: 10.3rem;
}
@media (max-width: 767px) {
  .l-reform .s-company {
    padding-bottom: 7rem;
  }
}
.l-reform .s-company__content {
  width: 100%;
  text-align: center;
}
.l-reform .s-company__title {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .l-reform .s-company__title {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.3rem;
    padding-left: 0.4rem;
    margin-bottom: 3rem;
  }
}
.l-reform .s-company__title-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-reform .s-company__title-img path {
  fill: #569F60;
}
.l-reform .s-company__title-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .l-reform .s-company__title-text {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
}
.l-reform .s-company__inner {
  width: 100%;
  max-width: 104rem;
  min-height: 34.5rem;
  margin-inline: auto;
  height: auto;
  display: grid;
  grid-template-columns: 39.5rem 1fr;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .l-reform .s-company__inner {
    max-width: 34.7rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.l-reform .s-company__figure-image01 {
  position: absolute;
  top: -16rem;
  left: 22rem;
  width: 14rem;
}
@media (max-width: 767px) {
  .l-reform .s-company__figure-image01 {
    top: -8.7rem;
    left: 1rem;
    width: 7.7rem;
  }
}
.l-reform .s-company__figure-image02 {
  position: absolute;
  top: -17rem;
  right: 20.7rem;
  width: 16rem;
}
@media (max-width: 767px) {
  .l-reform .s-company__figure-image02 {
    top: inherit;
    bottom: -6.4rem;
    right: 0.8rem;
    width: 7.7rem;
  }
}
.l-reform .s-company__inner-image {
  border-radius: 3rem;
  overflow: clip;
}
.l-reform .s-company__inner-item {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 3rem 2.7rem 3rem;
  border-radius: 3rem;
  overflow: clip;
}
@media (max-width: 767px) {
  .l-reform .s-company__inner-item {
    padding: 1.5rem 2rem;
    min-height: 26rem;
  }
}
.l-reform .s-company__list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
.l-reform .s-company__list-item {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 11.8rem 1fr;
  align-items: center;
  justify-content: start;
}
@media (max-width: 767px) {
  .l-reform .s-company__list-item {
    grid-template-columns: 8.5rem 1fr;
  }
}
.l-reform .s-company__list-item-title-text {
  height: 100%;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1;
  border-bottom: 2px solid #EA897A;
  text-align: start;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .l-reform .s-company__list-item-title-text {
    font-size: 1.4rem;
    line-height: 1.8;
    padding-left: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}
.l-reform .s-company__list-item-content-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: #444;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: start;
  border-bottom: 2px solid #E6E1DA;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  .l-reform .s-company__list-item-content-text {
    font-size: 1.4rem;
    padding-left: 0.8rem;
    line-height: 1.8;
  }
}
.l-reform .s-company__btn {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.l-reform .s-company__btn-link {
  box-sizing: border-box;
  background-color: #EA897A;
  width: 84.5rem;
  height: 12.5rem;
  border-radius: 9999px;
  display: grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding-inline: 5rem 8rem;
}
@media (max-width: 767px) {
  .l-reform .s-company__btn-link {
    width: 34rem;
    height: 8.6rem;
    grid-template-columns: 1fr 2.7rem;
    padding-inline: 1.1rem 3.2rem;
    gap: 0.4rem;
  }
}
.l-reform .s-company__btn-link-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-reform .s-company__btn-link-text {
    font-size: 2.2rem;
    letter-spacing: 0.01em;
  }
}/*# sourceMappingURL=reform.css.map */