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

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
  font-size: 10px;
  margin: 0;
}
@media screen and (min-width: 1281px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #000;
  font-family: "Marcellus", "Noto Sans JP", "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
}

.wrapper {
  width: 128rem;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
@media screen and (max-width: 750px) {
  .wrapper {
    width: 75rem;
    overflow: hidden;
  }
}

img {
  width: 100%;
}

.section-title {
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  position: relative;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .section-title {
    font-size: 6.2rem;
  }
}

.section-title__margin {
  margin-top: 7rem;
  margin-bottom: 5rem;
}

.section-title__idea {
  font-size: 4rem;
}
@media screen and (max-width: 750px) {
  .section-title__idea {
    font-size: 6rem;
  }
}

.section-title__white {
  color: #fff;
  padding-top: 7rem;
}
@media screen and (max-width: 750px) {
  .section-title__white {
    padding-top: 4.5rem;
  }
}

.title-line::before {
  background-color: #fff;
  content: "";
  position: absolute;
  width: 5rem;
  height: 0.4rem;
  bottom: -2.8rem;
  right: 50%;
}
@media screen and (max-width: 750px) {
  .title-line::before {
    width: 7.5rem;
    height: 0.6rem;
    bottom: -4.2rem;
  }
}
.title-line::after {
  background-color: #000;
  content: "";
  position: absolute;
  width: 5rem;
  height: 0.4rem;
  bottom: -2.4rem;
  left: 50%;
}
@media screen and (max-width: 750px) {
  .title-line::after {
    width: 7.5rem;
    height: 0.6rem;
    bottom: -3.6rem;
  }
}

.email-form__wrapper {
  background-color: #183228;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 0rem;
}
@media screen and (max-width: 750px) {
  .email-form {
    padding: 5rem 4rem;
    gap: 4rem;
  }
}

.email-form input {
  padding: 1.2rem;
  font-size: 2.8rem;
  text-align: left;
  border: 0.5rem solid #e2e2e2;
  border-radius: 0.8rem;
  font-weight: 500;
}

/* プレースホルダーのみセンタリング */
.email-form input:placeholder-shown {
  text-align: center;
}

/* Firefoxのプレースホルダー対応 */
.email-form input::-moz-placeholder {
  text-align: center;
}

/* Webkit系ブラウザのプレースホルダー対応 */
.email-form input::-webkit-input-placeholder {
  text-align: center;
}

@media screen and (min-width: 751px) {
  .email-form input {
    width: 55rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .email-form input {
    padding: 1.8rem;
    font-size: 4.2rem;
  }
}

.email-form button {
  font-weight: bold;
  background: linear-gradient(to bottom, #ff7c48 0%, #ff7c48 50%, #ff5f0e 50%, #ff5f0e 100%);
  color: white;
  padding: 1.6rem;
  font-size: 2.4rem;
  border: none;
  border-radius: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .email-form button {
    width: 55rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .email-form button {
    padding: 2.2rem;
    font-size: 3.4rem;
  }
}

.email-form button:hover {
  filter: brightness(1.5);
}

input::-moz-placeholder {
  color: #e2e2e2;
}

input::placeholder {
  color: #e2e2e2;
}

.header {
  z-index: 120;
  width: 100%;
  height: 11rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}

.header__inner {
  padding: 0 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .header__inner {
    max-width: 128rem;
    margin: 0 auto;
  }
}

.header__logo {
  height: 6rem;
  width: 23rem;
}

.header__nav {
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .header__nav {
    display: flex;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .header__nav {
    position: absolute;
    top: 11rem;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #ccc;
    color: #fff;
    padding: 0 2rem;
    z-index: 110;
    position: fixed;
  }
  .header__nav.active {
    max-height: calc(100vh - 11rem);
    overflow-y: auto;
  }
}

@media screen and (min-width: 751px) {
  .header__nav-ul {
    gap: 1rem;
    display: flex;
  }
}
.header__nav-ul :nth-last-child(1) {
  border-bottom: 0rem solid #000;
}
@media screen and (max-width: 750px) {
  .header__nav-ul {
    padding: 3rem 0;
  }
}

.header__nav-ul li {
  position: relative;
  font-weight: bold;
  transition: opacity 0.3s ease;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .header__nav-ul li {
    font-size: 4.2rem;
    border-bottom: 0.2rem solid #132620;
    padding: 0 2rem;
  }
  .header__nav-ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    transform: translateY(-50%);
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
  }
}

.header__nav-ul li a {
  color: #132620;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .header__nav-ul li a {
    display: inline-block;
    letter-spacing: 0.1rem;
  }
}

.header__nav-ul li:hover {
  opacity: 0.7;
}

.hamburger {
  position: fixed;
  top: 2.1rem;
  right: 3.5rem;
  z-index: 120;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 751px) {
  .hamburger {
    display: none;
  }
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger__button {
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

.hamburger__line {
  background-color: #ccc;
  width: 8.5rem;
  height: 0.9rem;
  transition: 0.4s;
  margin: 0.9rem 0;
  display: block;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media screen and (min-width: 751px) {
  .overlay {
    display: none;
  }
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.mv {
  background-image: url(../img/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-top: 11rem;
  background-size: 280% 130%;
}
@media screen and (max-width: 750px) {
  .mv {
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 751px) {
  .mv .wrapper {
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 751px) {
  .mv__text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5rem;
  }
}

.mv__heading {
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .mv__heading {
    font-size: 5rem;
    line-height: 1.45;
    text-align: left;
  }
}
@media screen and (max-width: 750px) {
  .mv__heading {
    margin-top: 7.4rem;
    font-size: 7.7rem;
    line-height: 1.45;
    text-align: center;
  }
}
.mv__heading::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 750px) {
  .mv__heading::before {
    top: -1rem;
    left: 4rem;
    width: 1.46rem;
    height: 1.46rem;
  }
}
.mv__heading::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: 7rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 750px) {
  .mv__heading::after {
    top: -1rem;
    left: 12rem;
    width: 1.46rem;
    height: 1.46rem;
  }
}

.mv__text {
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .mv__text {
    margin-top: 3rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .mv__text {
    margin-top: 2rem;
    font-size: 3rem;
    text-align: center;
  }
}

@media screen and (min-width: 751px) {
  .mv__img-box {
    width: 65rem;
    padding: 7rem 3rem;
  }
}
@media screen and (max-width: 750px) {
  .mv__img-box {
    padding: 0 1rem;
    margin-top: 4rem;
  }
}

.mv__img-text {
  font-size: 1.8rem;
  padding-top: 1rem;
}

.ip-market {
  padding-top: 7rem;
  background-color: #199881;
  position: relative;
}
.ip-market::before {
  content: "";
  position: absolute;
  top: 101rem;
  right: calc(50% - 9rem);
  width: 64.9rem;
  height: 30.7rem;
  background-image: url(../img/ip-market1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .ip-market::before {
    top: 124rem;
    left: 0;
    width: 43.3rem;
    height: 20.5rem;
  }
}
.ip-market::after {
  content: "";
  position: absolute;
  top: 97rem;
  width: 64.9rem;
  height: 30.7rem;
  background-image: url(../img/ip-market2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 751px) {
  .ip-market::after {
    left: calc(50% - 9rem);
  }
}
@media screen and (max-width: 750px) {
  .ip-market::after {
    top: 121rem;
    right: 0;
    width: 43.3rem;
    height: 20.5rem;
  }
}

.ip-market__span {
  color: #fff;
}

.ip-market__text {
  text-align: center;
  margin-top: 8.5rem;
  padding-bottom: 6rem;
}

.ip-market__text p {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .ip-market__text p {
    font-size: 2.8rem;
    line-height: 1.925;
  }
}
.ip-market__text p:not(:first-child) {
  padding-top: 5rem;
}

.ip-market__text--height {
  padding-top: 47rem !important;
}
@media screen and (max-width: 750px) {
  .ip-market__text--height {
    padding-top: 37rem !important;
  }
}

.patent {
  padding: 7rem 0 3rem;
  background-color: #f2f2f2;
}

.section-title__span {
  color: #199881;
}

.patent .wrapper {
  padding-bottom: 10rem;
}
@media screen and (max-width: 750px) {
  .patent .wrapper {
    padding-bottom: 3rem;
  }
}

.slider {
  position: relative;
  width: 113.3rem;
  margin: 6rem auto 0;
  padding: 4rem 4.2rem;
  box-shadow: 0 0 0.7rem 0.1rem rgba(14, 33, 64, 0.3);
  box-sizing: border-box;
  border-radius: 3.3rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .slider {
    width: 67.4rem;
  }
}

.slider-case {
  margin-top: 4rem;
}
@media screen and (min-width: 751px) {
  .slider-case {
    width: 71.3rem;
  }
}

.slider-case .slider-body__text {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .slider-case .slider-body__text {
    width: 59rem;
  }
}

@media screen and (min-width: 751px) {
  .slider-case button {
    display: block;  /* none を block に変更 */
  }
}

.slider-step {
  margin-top: 3rem;
  padding: 0 4rem;
}
@media screen and (min-width: 751px) {
  .slider-step {
    width: 67.4rem;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after,
.swiper-button-next--secondary::after,
.swiper-button-prev--secondary::after,
.swiper-button-next--tertiary::after,
.swiper-button-prev--tertiary::after {
  display: none;
}

.swiper-button-next,
.swiper-button-next--secondary,
.swiper-button-next--tertiary {
  position: absolute;
  width: 3.3rem;
  height: 8.2rem;
  background: #b7b6b6;
  -webkit-clip-path: polygon(0 0, 0 0, 100% 50%, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 100% 50%, 0 100%, 0 100%);
  cursor: pointer;
  border: none;
  right: var(--swiper-navigation-sides-offset, -1.8rem);
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-next--secondary:hover,
.swiper-button-next--tertiary:hover {
  filter: brightness(1.2);
}

.swiper-button-prev,
.swiper-button-prev--secondary,
.swiper-button-prev--tertiary {
  width: 3.3rem;
  height: 8.2rem;
  background: #b7b6b6;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 50%, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 0 50%, 100% 100%, 100% 100%);
  cursor: pointer;
  border: none;
  left: var(--swiper-navigation-sides-offset, -1.8rem);
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-prev--secondary:hover,
.swiper-button-prev--tertiary:hover {
  filter: brightness(1.2);
}

.swiper-button-next--secondary,
.swiper-button-prev--secondary {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next--tertiary,
.swiper-button-prev--tertiary {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-wrapper {
  align-items: stretch;
  height: 100%;
}

.swiper-slide {
  min-height: 100% !important;
  height: auto !important;
}

.slider__card-wrapper {
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #e2e2e2;
}

.slider-case .slider__card-wrapper,
.tertiary-swiper .slider__card-wrapper {
  border-bottom: 0 solid #e2e2e2;
}

.tertiary-swiper .slider-body__text {
  text-align: center;
}

.slider__card {
  height: 100%;
  box-sizing: border-box;
}

.slider__img {
  height: 19.9rem;
}
@media screen and (max-width: 750px) {
  .slider__img {
    height: 45.8rem;
  }
}

@media screen and (min-width: 751px) {
  .slider__img--secondary {
    height: 19.9rem;
    width: 29rem;
  }
}
@media screen and (max-width: 750px) {
  .slider__img--secondary {
    height: 39.8rem;
  }
}

.step1 {
  position: relative;
  padding: 8rem 0 4rem;
}
.step1::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30.2rem;
  height: 9.8rem;
  background: url("../img/step1.png");
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.step2 {
  position: relative;
  padding: 8rem 0 4rem;
}
.step2::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30.2rem;
  height: 9.8rem;
  background: url("../img/step2.png");
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.step3 {
  position: relative;
  padding: 8rem 0 4rem;
}
.step3::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30.2rem;
  height: 9.8rem;
  background: url("../img/step3.png");
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.step .slider__card-wrapper {
  padding-bottom: 0;
}

.step .wrapper {
  overflow: visible;
}

.slider__img--tertiary {
  height: 27.8rem;
}

.slider__img--tertiary img {
  border-radius: 5rem;
}

.slider__img img,
.slider__img--secondary img,
.slider__img--tertiary img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-body__title {
  font-weight: bold;
  font-size: 1.9rem;
  margin-top: 4rem;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .slider-body__title {
    font-size: 3.8rem;
  }
}

.slider-body__text {
  margin: 2.5rem auto 0;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .slider-body__text {
    margin: 2.5rem auto;
    width: 56rem;
    font-size: 2.8rem;
    line-height: 1.9;
    letter-spacing: 0.3rem;
  }
}

.slider-info__company {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2rem 1rem 0;
}
@media screen and (max-width: 750px) {
  .slider-info__company {
    font-size: 2.8rem;
    padding: 3rem 1rem 0;
  }
}

.slider-info__industry-heading {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.5rem 1rem 0rem;
  color: #199881;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .slider-info__industry-heading {
    font-size: 2.5rem;
    padding: 2rem 1rem 0rem;
  }
}

.slider-info__tag-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .slider-info__tag-list {
    padding-top: 1rem;
  }
}
.slider-info__tag {
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 1rem;
  margin-left: 1rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .slider-info__tag {
    font-size: 2.3rem;
    padding-left: 2rem;
    margin-left: 2rem;
  }
}
.slider-info__tag::before {
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff5f0e;
}

.slider-quote p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .slider-quote p {
    font-size: 2.8rem;
  }
}

.colon {
  font-size: 2.8rem;
  padding: 0 0.8rem;
}
@media screen and (max-width: 750px) {
  .colon {
    font-size: 4.8rem;
  }
}

.case__heading {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bold;
  margin-top: 7rem;
}

.case__heading span {
  background-color: #000;
  color: #fff;
  display: inline;
  padding: 1rem 5rem;
  border-radius: 5rem;
  font-size: 4rem;
}
@media screen and (max-width: 750px) {
  .case__heading span {
    font-size: 4.8rem;
  }
}

.patent__heading {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 7rem;
}
@media screen and (max-width: 750px) {
  .patent__heading {
    font-size: 4.43rem;
  }
}

.common__text-wrapper {
  padding-bottom: 2rem;
}

.common__text {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .common__text {
    font-size: 2.8rem;
    line-height: 1.95;
  }
}
.common__text:not(:first-child) {
  padding-top: 5rem;
}

.common__text span {
  color: #ff5f0e;
  font-weight: bold;
}

.support__img-wrapper {
  position: relative;
  width: 71rem;
  margin: 6.5rem auto 0;
  box-sizing: border-box;
  border-radius: 3.3rem;
  background-color: #fff;
}

.support__img {
  height: 75rem;
}

.support__img img {
  height: 100%;
}

.idea {
  background-color: #f2f2f2;
}

.idea__img {
  margin-top: 6rem;
  margin-bottom: 2rem;
  width: 71rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .idea__img {
    width: 65rem;
  }
}

.section-title__idea--padding {
  padding-top: 5rem;
}

.success-stories {
  padding: 7rem 0;
  background-color: #f2f2f2;
}

.success-stories__items {
  display: flex;
  gap: 3.3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .success-stories__items {
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .success-stories__items {
    flex-direction: column;
  }
}

.success-stories__item {
  position: relative;
  width: 38rem;
  margin-top: 2rem;
  box-shadow: 0 0 0.7rem 0.1rem rgba(14, 33, 64, 0.3);
  box-sizing: border-box;
  border-radius: 3.3rem;
  background-color: #fff;
  padding-bottom: 4rem;
}
@media screen and (min-width: 751px) {
  .success-stories__item {
    height: 52rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 750px) {
  .success-stories__item {
    width: 57rem;
    margin: 2rem auto 0;
  }
}

.success-stories__img {
  width: 25.6rem;
  height: 25.6rem;
  margin: 4.5rem auto 0;
}

.success-stories__text {
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 1.2rem;
  padding-bottom: 2.2rem;
  line-height: 1.9;
}
@media screen and (max-width: 750px) {
  .success-stories__text {
    font-size: 2.8rem;
  }
}

.success-stories__meta {
  display: inline;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-radius: 10rem;
  padding: 0.6rem 3rem;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 751px) {
  .success-stories__meta {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 33rem;
    padding: 0.6rem 0rem;
  }
}
@media screen and (max-width: 750px) {
  .success-stories__meta {
    font-size: 2.5rem;
  }
}

.recommend {
  background-color: #b7b6b6;
}

.recommend-list {
  padding: 2rem 18rem 4rem;
}
@media screen and (max-width: 750px) {
  .recommend-list {
    padding: 2rem 0rem 4rem;
  }
}

.recommend-list li {
  font-size: 2.8rem;
  font-weight: 500;
  padding-left: 6.6rem;
  line-height: 2.5;
  position: relative;
}
@media screen and (max-width: 750px) {
  .recommend-list li {
    font-size: 2.3rem;
    padding-left: 3.7rem;
  }
}
.recommend-list li::before {
  content: "";
  position: absolute;
  top: 1.9rem;
  left: 2.2rem;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../img/recommend1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .recommend-list li::before {
    top: 1.3rem;
    left: 0.3rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

.step {
  background-color: #f2f2f2;
  padding-bottom: 3rem;
  padding-top: 8.5rem;
}

.step__heading {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: bold;
}

.step__heading span {
  background-color: #000;
  color: #fff;
  display: inline;
  padding: 1rem 5rem;
  border-radius: 5rem;
  font-size: 4rem;
}
@media screen and (max-width: 750px) {
  .step__heading span {
    padding: 1.2rem 14rem;
    font-size: 4.5rem;
  }
}

.slider-body__title-step {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 3rem;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .slider-body__title-step {
    font-size: 3.2rem;
    margin-top: 4rem;
  }
}

.slider-body__text-step {
  letter-spacing: 0rem;
  margin: 2rem auto 0;
}
@media screen and (min-width: 751px) {
  .slider-body__text-step {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 750px) {
  .slider-body__text-step {
    margin: 3.5rem auto 0.5rem;
  }
}

.qa {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 750px) {
  .qa {
    padding-top: 3rem;
  }
}

.qa__boxs {
  margin: 4rem auto 0;
  width: 90rem;
  padding: 0 5rem 5rem;
  border-radius: 7rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .qa__boxs {
    width: 68rem;
    letter-spacing: -0.1rem;
    padding: 0 3.5rem 5rem;
  }
}

.qa__box {
  overflow: hidden;
  display: block;
  width: 100%;
  cursor: pointer;
}

.accordion__head {
  font-weight: bold;
  padding: 6rem 0.5rem 0.5rem;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 0.5rem dotted #ccc;
}

.accordion__head--non {
  border-bottom: 0rem dotted #ccc;
}

.accordion__head-text {
  font-size: 2.5rem;
  padding-left: 5rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .accordion__head-text {
    font-size: 3.5rem;
    padding-left: 6rem;
  }
}
.accordion__head-text::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: -0.4rem;
  width: 3.5rem;
  height: 4.7rem;
  background-image: url(../img/q.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .accordion__head-text::before {
    width: 4.5rem;
    height: 6.2rem;
  }
}

.accordion__icon {
  content: "";
  position: absolute;
  right: 0;
  top: 5.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  background-color: #199881;
}
@media screen and (max-width: 750px) {
  .accordion__icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.accordion__icon-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.accordion__icon-plus {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1.8rem;
  height: 2rem;
  width: 0.4rem;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 750px) {
  .accordion__icon-plus {
    top: 1.2rem;
    left: 2.1rem;
    height: 2.4rem;
    width: 0.6rem;
  }
}

.accordion__icon-minus {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  height: 0.4rem;
  width: 2rem;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 750px) {
  .accordion__icon-minus {
    height: 0.6rem;
    width: 2.4rem;
  }
}

.accordion__body {
  padding: 3rem 0.5rem 0;
  position: relative;
  font-weight: 500;
  width: 100%;
}

.accordion__body-text {
  font-size: 2rem;
  padding-left: 5rem;
  letter-spacing: 0.1rem;
  line-height: 1.9;
  position: relative;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 750px) {
  .accordion__body-text {
    font-size: 2.5rem;
    padding-left: 6rem;
    letter-spacing: 0;
  }
}
.accordion__body-text::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: -0.4rem;
  width: 3.5rem;
  height: 4.7rem;
  background-image: url(../img/a.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .accordion__body-text::before {
    width: 4.5rem;
    height: 6.2rem;
  }
}

.footer {
  background-color: #183228;
}

.footer small {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  padding: 2rem 0;
}
@media screen and (max-width: 750px) {
  .footer small {
    font-size: 2.8rem;
  }
}/*# sourceMappingURL=style.css.map */