@charset "UTF-8";
html {
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

body {
  font-size: 16px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section {
  padding-top: 40px;
}

.section__head {
  display: inline-block;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: 4px;
  background: var(--h2_text_marker, linear-gradient(180deg, rgba(222, 187, 244, 0) 0%, rgba(222, 187, 244, 0) 55%, #DEBBF4 55%, #DEBBF4 100%));
}
@media screen and (max-width: 767px) {
  .section__head {
    font-size: clamp(20px, 3.4vmin, 26px);
    letter-spacing: 1.4px;
  }
}
.section__head span {
  font-weight: 700;
  letter-spacing: 4px;
}

.contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9.6428571429%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact__items {
    gap: 5%;
  }
}

.contact-button {
  max-width: 480px;
  width: 100%;
  height: 160px;
  border-radius: 80px;
  background: #F08080;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), -4px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 4px 4px 4px 0px rgba(255, 255, 255, 0.75) inset;
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), -4px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 4px 4px 4px 0px rgba(255, 255, 255, 0.75) inset;
}
@media screen and (max-width: 767px) {
  .contact-button {
    height: 80px;
    border-radius: 60px;
  }
}
.contact-button:hover {
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.contact-button-link {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contact-button-link {
    height: 80px;
  }
}

.contact-button-head {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .contact-button-head {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.contact-button-contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.3333333333%;
}
@media screen and (max-width: 767px) {
  .contact-button-contents {
    gap: 3px;
  }
}
.contact-button-contents img {
  max-width: clamp(30px, 3.3vw, 48px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-button-contents img {
    max-width: 16px;
  }
}

.contact-button-text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .contact-button-text {
    font-size: 11px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
@media (min-width: 1200px) {
  .header {
    height: 100px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 15px;
}
@media (min-width: 1200px) {
  .header__inner {
    padding: 9px 0 9px 34px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo a img {
  width: 100px;
  display: block;
}
@media (min-width: 1200px) {
  .header__logo a img {
    width: 204px;
  }
}
.header__logo a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    max-width: 992px;
    width: 100%;
    padding-left: 33px;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.5%;
    border-radius: 45px 0px 0px 45px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1);
  }
}

.header__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.6px;
}
.header__link:hover {
  color: #F08080;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header__button:hover {
  opacity: 0.8;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.header__button-link {
  padding: 14px 30px;
  border-radius: 25px;
  background: #F08080;
  color: #fff;
  -webkit-box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
  width: 50px;
  height: 50px;
  background: #F08080;
  border-radius: 50%;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 24px;
  left: 8px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 24px;
  left: 8px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 22px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 30px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #F7C2C8;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #FFF;
}
.drawer-content__link:hover {
  color: #F08080;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.drawer-content__button {
  margin-top: 20px;
  height: 55px;
  text-align: center;
}
.drawer-content__button:hover {
  opacity: 0.8;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.mv {
  background: url(../img/mv-img.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: -150px;
    background: url(../img/mv_sp.png) no-repeat center center/cover;
    height: 600px;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 10px 10px 10px 0;
    height: 800px;
  }
}

.mv__inner {
  position: relative;
}

.mv__content {
  margin-left: 7.6388888889%;
  margin-top: 147px;
  max-width: 590px;
  width: 100%;
  height: 370px;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__content {
    max-width: 320px;
    height: 280px;
    margin-left: 0;
    top: 130px;
    left: 20px;
  }
}
.mv__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit; /* 親と同じ角丸を適用 */
  background: rgba(255, 255, 255, 0.5); /* 背景色 */
  -webkit-filter: blur(25px);
          filter: blur(25px); /* 背景のぼかし効果 */
  z-index: 0; /* 背景に移動 */
}

.mv__content-img {
  padding-top: 60px;
  padding-left: 19.0909090909%;
  padding-right: 13.1818181818%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__content-img {
    padding-left: 10%;
    padding-right: 3%;
  }
}
.mv__content-img img {
  max-width: 447px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__content-img img {
    max-width: 240px;
  }
}

.mv__content-lead {
  margin-top: 30px;
  margin-left: 19.0909090909%;
  padding: 0 17px 0 21px;
  background: #FFF;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__content-lead {
    margin-top: 26px;
    margin-left: 0;
    font-size: 12px;
    padding: 0 10px;
    margin-left: 15%;
  }
}

.mv__content-logo {
  position: absolute;
  top: -45px;
  left: -50px;
}
@media screen and (max-width: 767px) {
  .mv__content-logo {
    top: -30px;
    left: 0;
  }
}
.mv__content-logo img {
  max-width: 160px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__content-logo img {
    max-width: 80px;
  }
}

.mv__solution {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1020px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__solution {
    max-width: 510px;
    margin-top: 222px;
  }
}

.mv__solution-content {
  width: 68.6274509804%;
  height: 100px;
  border-radius: 0px 50px 50px 0px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv__solution-content {
    width: 60%;
    height: 80px;
  }
}

.mv__solution-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -121px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .mv__solution-content-box {
    top: -42px;
  }
}

.mv__solution-content-img img {
  max-width: 544px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__solution-content-img img {
    max-width: 277px;
  }
}

.mv__solution-message-text {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: -17px;
}
@media screen and (max-width: 767px) {
  .mv__solution-message-text {
    font-size: 12px;
    letter-spacing: 0px;
    margin-top: 0;
  }
}

.mv__solution-button {
  width: 31.3725490196%;
  height: 100px;
  margin-left: -60px;
  border-radius: 0px 50px 50px 0px;
  background: #F08080;
  -webkit-box-shadow: -4px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 4px 4px 4px 0px rgba(255, 255, 255, 0.75) inset;
          box-shadow: -4px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 4px 4px 4px 0px rgba(255, 255, 255, 0.75) inset;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv__solution-button {
    width: 40%;
    height: 80px;
    margin-left: -35px;
  }
}
.mv__solution-button:hover {
  opacity: 0.8;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.mv__solution-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .mv__solution-button-link {
    padding: 14px 0px 10px 24px;
    font-size: 16px;
    letter-spacing: 1.2px;
  }
}
.mv__solution-button-link span {
  padding-left: 59px;
}
@media screen and (max-width: 767px) {
  .mv__solution-button-link span {
    padding-left: 0;
  }
}

.mv__solution-button-link-sub {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .mv__solution-button-link-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.mv__solution-button-link-main {
  display: block;
  margin-top: -4px;
}

.mv__solution-bg {
  position: absolute;
  bottom: 97px;
  left: 75vw;
}
@media screen and (max-width: 767px) {
  .mv__solution-bg {
    bottom: 75px;
  }
}
.mv__solution-bg img {
  max-width: 212.5px;
  width: 100%;
}

.problem {
  padding-bottom: 132px;
  background-color: #EDE9E3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .problem {
    padding-bottom: 100px;
  }
}
.problem::after {
  content: "";
  position: absolute;
  width: 182.793px;
  height: 47.245px;
  background: url(../img/arrow-next-section.png) no-repeat no-repeat center center/contain;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.problem__inner {
  text-align: center;
}

.accent-style {
  color: #F08080;
}

.problem__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.problem__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .problem__img {
    width: 15%;
  }
}

.problem__items {
  margin-top: 50px;
  max-width: 736px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 8.5%;
  padding-right: 9.05%;
}
@media screen and (max-width: 767px) {
  .problem__items {
    width: 70%;
    padding: 0 10px;
    gap: 30px;
  }
}
.problem__items .problem__item:nth-child(2n+1) {
  margin-left: auto;
}

.problem__item {
  max-width: clamp(320px, 31vw, 447px);
  width: 100%;
  height: 80px;
  padding: 0px 6.9808027923% 0px 6.4572425829%;
  border-radius: 16px;
  background: #FCEAEF;
  -webkit-box-shadow: 0px 4px 4px 0px #FFF inset, 0px -4px 4px 0px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0px 4px 4px 0px #FFF inset, 0px -4px 4px 0px rgba(0, 0, 0, 0.1) inset;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .problem__item {
    width: 90%;
    padding: 5px 10px;
  }
}
.problem__item::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 24px;
  background: url(../img/problem-fukidashi.png) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -24px;
}

.item-style {
  padding: 0px 39px 0px 40px;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .item-style {
    padding: 5px 10px;
  }
}
.item-style::after {
  background: url(../img/problem-fukidashi2.png) no-repeat center center/contain;
  top: 50%;
  left: -24px;
}

.problem__item-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 17px;
}
@media screen and (max-width: 767px) {
  .problem__item-text {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.concept {
  padding-top: 40px;
  padding-bottom: 91px;
}

.concept__inner {
  text-align: center;
}

.concept__message {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .concept__message {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}

.concept__head {
  margin-top: 26px;
  background: none;
}

.accent-style2 {
  color: #F47600;
}

.concept__container {
  margin-top: 64px;
  max-width: 1120px;
  width: 100%;
}

.concept__list {
  position: relative;
  border-radius: 40px;
  padding: 10px; /* 内側余白 */
  background: -webkit-gradient(linear, left top, right top, from(#EF7598), to(#CE9AEF));
  background: linear-gradient(to right, #EF7598, #CE9AEF);
  padding: 3px;
}

.concept__list-items {
  background: #ffffff;
  border-radius: 38px;
  padding: 58px 10.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  text-align: start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .concept__list-items {
    padding: 40px 6%;
  }
}

.concept__list-item {
  padding-left: 45px;
  max-width: 710px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .concept__list-item {
    padding-left: 30px;
  }
}

.concept__list-item-head {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 31px;
  position: relative;
  border-bottom: 2px dashed #CE9AEF;
}
@media screen and (max-width: 767px) {
  .concept__list-item-head {
    font-size: 16px;
    letter-spacing: 1.2px;
  }
}
.concept__list-item-head::after {
  content: "";
  position: absolute;
  background: url(../img/checkmark.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -45px;
}
@media screen and (max-width: 767px) {
  .concept__list-item-head::after {
    width: 20px;
    height: 20px;
    left: -27px;
  }
}

.concept__list-item-body {
  margin-top: 10px;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .concept__list-item-body {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}

.concept__list-img {
  position: absolute;
  width: 22.7%;
  bottom: -76px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .concept__list-img {
    width: 19%;
    bottom: -36px;
    right: 0px;
  }
}
.concept__list-img img {
  max-width: 245px;
  width: 100%;
}

.concept__contact {
  margin-top: 135px;
}
@media screen and (max-width: 767px) {
  .concept__contact {
    margin-top: 90px;
  }
}

.concept__contact-text {
  text-align: center;
  font-size: 2.3vw;
  font-size: clamp(20px, 2.3vw, 24px);
  font-weight: 500;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .concept__contact-text {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}

.service {
  background: #FFF5F8;
  padding-top: 60px;
  padding-bottom: 84px;
}

.service__contents {
  text-align: center;
}

.service__contents-boxes {
  margin-top: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__contents-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.service__contents-box {
  max-width: 340px;
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.service__contents-box-head {
  font-size: 20px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .service__contents-box-head {
    font-size: 18px;
    letter-spacing: 1.4px;
  }
}

.service__contents-box-img {
  text-align: center;
}
.service__contents-box-img img {
  max-width: 240px;
  width: 100%;
}

.service__contents-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.service__contents-box-list-item {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-align: start;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__contents-box-list-item {
    font-size: 14px;
  }
}
.service__contents-box-list-item::after {
  content: "・";
  position: absolute;
  top: -2px;
  left: 2px;
}

.service__contents-others {
  margin-top: 52px;
}

.service__contents-others-head {
  text-align: center;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .service__contents-others-head {
    font-size: 16px;
    letter-spacing: 1.4px;
  }
}

.service__contents-others-items {
  margin-top: 24px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 13px 16px;
}
@media screen and (max-width: 767px) {
  .service__contents-others-items {
    padding: 5px;
    gap: 10px 13px;
  }
}

.service__contents-others-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 15px 2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #F08080;
  color: #FFF;
  text-align: center;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .service__contents-others-item {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.service__contents-others-text {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  bottom: -5px;
}

.service__strength {
  margin-top: 84px;
  text-align: center;
}

.service__strength-boxes {
  max-width: 928px;
  width: 100%;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .service__strength-boxes {
    gap: 55px;
  }
}

.service__strength-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 320px;
  gap: 3.4482758621%;
}
@media screen and (max-width: 767px) {
  .service__strength-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.service__strength-box-img {
  width: 48.275862069%;
}
@media screen and (max-width: 767px) {
  .service__strength-box-img {
    width: auto;
  }
}
.service__strength-box-img img {
  max-width: 427px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service__strength-box-img img {
    width: 80%;
  }
}

.service__strength-box-img2 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service__strength-box-img2 {
    text-align: center;
  }
}
.service__strength-box-img2 img {
  max-width: 320px;
  margin-left: 47px;
}
@media screen and (max-width: 767px) {
  .service__strength-box-img2 img {
    margin-left: 0;
  }
}

.service__strength-box-body {
  width: 48.275862069%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .service__strength-box-body {
    width: auto;
  }
}

.service__strength-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.service__strength-box-head span {
  color: #FFF;
  font-weight: 500;
  background: #CE9AEF;
  line-height: 37px;
  font-size: clamp(22px, 2.8vw, 32px);
}
@media screen and (max-width: 767px) {
  .service__strength-box-head span {
    font-size: 18px;
  }
}

.service__strength-box-text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 17px;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .service__strength-box-text {
    font-size: 12px;
  }
}

.style-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 1.9%;
}
@media screen and (max-width: 767px) {
  .style-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.style-reverse span {
  background: #F08080;
}

.service__contact {
  margin-top: 126px;
}
@media screen and (max-width: 767px) {
  .service__contact {
    margin-top: 80px;
  }
}

.achievement {
  padding-top: 60px;
  padding-bottom: 143px;
  background-color: #EDE9E3;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding-bottom: 110px;
  }
}

.achievement__inner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .achievement__inner {
    max-width: 1256px;
  }
}

.achievement__contents-boxes {
  margin-top: 49px;
  max-width: 1196px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.8494983278%;
}
@media screen and (max-width: 767px) {
  .achievement__contents-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.achievement__contents-box {
  max-width: 360px;
  width: 100%;
  background: #FFF;
  border-radius: 40px;
  padding: 30px 6.3% 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.achievement__contents-box-head {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .achievement__contents-box-head {
    font-size: 16px;
    letter-spacing: 1.4px;
  }
}

.responsive2-br {
  display: none;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .responsive2-br {
    display: block; /* 768px〜1099pxの間だけ表示 */
  }
}

.responsive3-br {
  display: block;
}
@media (min-width: 768px) and (max-width: 1099px) {
  .responsive3-br {
    display: none; /* 768px〜1099pxの間だけ非表示 */
  }
}

.achievement__contents-box-img {
  text-align: center;
}
.achievement__contents-box-img img {
  max-width: 240px;
  width: 100%;
}

.achievement__contents-box-text {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .achievement__contents-box-text {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
}

.step {
  padding-top: 60px;
  padding-bottom: 119px;
}

.step__inner {
  text-align: center;
}

.step__contents-boxes {
  margin-top: 83px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.8571428571%;
}
@media screen and (max-width: 767px) {
  .step__contents-boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.step__contents-boxes .step__contents-box:nth-child(n+2)::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../img/step-arrow.png) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -34px;
}
@media screen and (max-width: 767px) {
  .step__contents-boxes .step__contents-box:nth-child(n+2)::after {
    width: 28px;
    height: 28px;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -35px;
    left: 50%;
  }
}

.step__contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: start;
  max-width: 256px;
  width: 100%;
  height: 360px;
  padding: 20px 7.42% 17px 7.42%;
  background-color: #FFF5F8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__contents-box {
    height: 280px;
  }
}

.step__contents-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: clamp(112px, 9.93vw, 143px);
}
@media screen and (max-width: 767px) {
  .step__contents-box-head {
    height: auto;
  }
}

.step__contents-box-head-en {
  color: #F08080;
  font-family: "Anton", sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .step__contents-box-head-en {
    font-size: 16px;
  }
}

.step__contents-box-head-number {
  color: #F08080;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 8px;
  font-size: clamp(36px, 2.8vw, 40px);
}
@media screen and (max-width: 767px) {
  .step__contents-box-head-number {
    font-size: 36px;
  }
}

.step__contents-box-head-ja {
  color: #F08080;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  font-size: clamp(12px, 1.3vw, 18px);
}
@media screen and (max-width: 767px) {
  .step__contents-box-head-ja {
    font-size: 14px;
  }
}

.step__contents-box-text {
  margin-top: 8px;
  padding-left: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 120%;
  font-size: clamp(11px, 1vw, 14px);
}
@media screen and (max-width: 767px) {
  .step__contents-box-text {
    font-size: 12px;
    margin-top: 20px;
  }
}

.qa {
  background-color: #FCEAEF;
  padding-top: 60px;
  padding-bottom: 126px;
}

.qa__inner {
  text-align: center;
}

.qa__boxes {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 37px;
}

.qa__box {
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.qa-box__head {
  width: 100%;
  padding: 30px 32px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .qa-box__head {
    padding: 20px 23px 27px;
    gap: 16px;
  }
}

.qa-box__head-icon,
.qa-box__a-icon {
  color: #F08080;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .qa-box__head-icon,
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  color: #F08080;
  font-weight: 700;
  letter-spacing: 2.8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: start;
  width: 100%;
  font-size: clamp(26px, 2.7vw, 28px);
}
@media screen and (max-width: 767px) {
  .qa-box__head-text {
    font-size: 16px;
    font-size: clamp(14px, 2.1vw, 16px);
    letter-spacing: 1.4px;
  }
}

.qa-box__head-toggle {
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-box__head-toggle {
    width: 40px;
    height: 40px;
  }
}
.qa-box__head-toggle::before {
  content: "";
  position: absolute;
  background: url(../img/qa-button-down.png) no-repeat center center/contain;
  width: 50px;
  height: 50px;
  left: -26px;
  top: 4px;
}
@media screen and (max-width: 767px) {
  .qa-box__head-toggle::before {
    width: 35px;
    height: 35px;
    left: -10px;
  }
}

.is-open .qa-box__head-toggle::before {
  content: "";
  position: absolute;
  background: url(../img/qa-button.png) no-repeat center center/contain;
  width: 50px;
  height: 50px;
  left: -26px;
}
@media screen and (max-width: 767px) {
  .is-open .qa-box__head-toggle::before {
    width: 35px;
    height: 35px;
    left: -10px;
  }
}

.qa-box__body {
  padding: 3px 63px 82px 35px;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: none;
  -webkit-box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: -2px -2px 2px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 2px 0px rgba(255, 255, 255, 0.75) inset, 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .qa-box__body {
    padding: 3px 23px 40px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .qa-box__a {
    gap: 16px;
  }
}

.qa-box__a-icon {
  color: #333333;
}

.qa-box__a-text {
  text-align: start;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 16px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .qa-box__a-text {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 94px;
}

.contact__inner {
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact__head {
    background: var(--h2_text_marker, linear-gradient(180deg, rgba(222, 187, 244, 0) 0%, rgba(222, 187, 244, 0) 80%, #DEBBF4 80%, #DEBBF4 100%));
  }
}

.contact-text {
  margin-top: 69px;
  position: relative;
}

.contact-button-web {
  position: relative;
}

.contact-button-bg {
  position: relative;
}
.contact-button-bg img {
  position: absolute;
  width: 14.8vw;
  bottom: 182px;
  right: 51px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact-button-bg img {
    right: 1.2vw;
    bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .contact-button-bg img {
    width: clamp(75px, 16vw, 100px);
    left: 80%;
    top: -174px;
  }
}

.about {
  padding-top: 88px;
  padding-bottom: 93px;
  background-color: #EDE9E3;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10.8%;
}
@media screen and (max-width: 767px) {
  .about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.about__office {
  max-width: 438px;
  min-width: 230px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__office {
    max-width: 400px;
  }
}

.about__office-name,
.about__profile-head {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 400;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .about__office-name,
  .about__profile-head {
    font-size: 16px;
    letter-spacing: 1.4px;
  }
}

.about__office-dl,
.about__profile-text {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 16px;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 1.6px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__office-dl,
  .about__profile-text {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.about__office-dt {
  float: left;
  clear: left;
  width: 96px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .about__office-dt {
    width: 60px;
  }
}

.about__office-dd {
  float: left;
  margin-top: 10px;
}

.about__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .about__profile {
    max-width: 400px;
    width: 100%;
  }
}

.about__profile-img {
  max-width: 136px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .about__profile-img {
    max-width: 100px;
  }
}
.about__profile-img img {
  width: 100%;
}

.about__profile-container {
  width: 100%;
}

.about__profile-text {
  margin-top: 10px;
}

.footer {
  padding-top: 33px;
  padding-bottom: 17px;
  background: #F08080;
}

.footer__pagetop {
  text-align: center;
}

.pagetop {
  position: fixed;
  right: 32px;
  bottom: 30px;
  z-index: 52;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 16px;
    bottom: 30px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop img {
  width: 48px;
}
@media screen and (min-width: 768px) {
  .pagetop img {
    width: 48px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
}

.footer__nav-link {
  color: #fff;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    font-size: 10px;
  }
}
.footer__nav-link:hover {
  opacity: 0.8;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  color: #fff;
  font-family: "Zen Old Mincho", sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
  }
}

@media (min-width: 1100px) {
  .responsive-br {
    display: none;
  }
  .mv__solution-bg {
    left: 960px;
  }
  .mv__content {
    max-width: 660px;
  }
  .mv__content-logo {
    left: -77px;
  }
}
.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px); /* 下から浮き上がるように */
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease; /* スムーズな変化 */
}

.js-fade-in.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻る */
}