.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

body {
  position: relative;
  overflow-x: hidden;
  padding-top: 50px;
}

.header {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: white;
  z-index: 1000;
  box-shadow: 0 8px 18px rgba(61, 123, 124, 0.35);
}

.header::before {
  content: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo--img {
  display: block;
  width: 160px;
  height: auto;
}

.header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background-color: #00b2b3;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px; 
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header {
  height: 60px;
  }

.header__logo--img {
  width: 240px;
  height: auto;
}

.header__button {
  padding: 8px 26px;
  font-size: 18px;
  font-weight: 600;
}
.header__inner {
  justify-content: space-between;
}
}


/* hero */
.hero {
  isolation: isolate;
  position: relative;
  text-align: center;
  height: 341px;
  width: auto;
  padding: 28px 16px 0;
  margin: 0;
}

.hero__inner {
  z-index: -1;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
}

.hero__bg--img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1026px;
  height: 341px;
  max-width: none;
}

.hero__content {
  position: relative;
  z-index: 100;
  margin: 0;
  height: 341px;
  max-width: 1026px;
  margin: 0 auto;
  padding: 0;
}

.hero__lead {
  font-size: clamp(16px, 4.5vw, 20px);
  color: #00b2b3;
  font-weight: 700;
  margin: 0 0 10px;
  white-space: nowrap;
}

.hero__lead--small {
  font-size: 18px;
}

.hero__title {
  font-size: clamp(24px, 6.8vw, 32px);
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background: #00b2b3;
  padding: 0.15em 0.25em;
  line-height: 1.05;
  margin: 0;
  white-space: nowrap;
}

.hero__title--small {
  font-size: 28px;
}

.hero__description {
  font-size: clamp(13px, 3.8vw, 15px);
  font-weight: 700;
  margin: 10px 0 0;
  white-space: nowrap;
}

.hero__description--small {
  letter-spacing: -0.2em;
}

.hero__description--underline {
  position: relative;
  display: inline-block;
}

.hero__description--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 6px;
  background: #ffca4a;
  z-index: -1;
}

@media (min-width: 768px) {
  .pc-br {
    display: none;
  }

  .steps__list {
    display: flex;
    flex-direction: row;
    left: 1000px;
  }

  .hero {
    position: relative;
    height: 320px;
    padding: 0;
    overflow: hidden;
  }

  .hero__inner {
    z-index: -1;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
  }

  .hero__bg--img {
    position: absolute;
    top: 0;
    left: 53%;
    transform: translateX(-47%);
    width: 3200px;
    height: 320px;
    max-width: none;
  }

  .hero__content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1026px;
    height: 320px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(-71%);
  }

  .hero__lead {
    font-size: 24px;
    color: #00b2b3;
    font-weight: 700;
    margin: 0 0 10px;
  }

  .hero__lead--small {
    font-size: 22px;
  }

  .hero__title {
    font-size: 52px;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    background: #00b2b3;
    padding: 0.15em 0.25em;
    line-height: 1.05;
    margin: 0;
  }

  .hero__title--small {
    font-size: 44px;
  }

  .hero__description {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 0;
  }

  .hero__description--small {
    letter-spacing: -0.2em;
  }
}

/* form */

.topform {
  position: relative;
  background: #00b2b3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 0px;
}

.topform__title {
  width: 100%;
  background: #00b2b3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topform__title {
  text-align: center;
}

.topform__lead {
  display: inline-block;
  font-weight: 700;
  background: #fff;
  color: #00b2b3;
  padding: 0.1em 2.5em;
  border-radius: 9999px;
  margin: 10px;
  font-size: 16px;
}

.topform__text {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .topform__title {
    transform: translateY(-20%);
  }

  .topform__lead {
    padding: 2px 65px;
    font-family: "Noto Sans JP";
    font-weight: 900;
  }

  .topform {
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .topform__text {
    font-size: 30px;
    font-weight: 600;
  }
}

/* problem */

.problem {
  padding-top: 30px;
}

.problem__content {
  max-width: 360px;
  margin: 0 auto;
  border: 3px solid #00b2b3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.problem__title {
  margin: 0;
  padding: 14px 16px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: #00b2b3;
  text-align: center;
  line-height: 1.35;
  padding-left: 40px;
}

.problem__body {
  display: flex;
  gap: 10px;
  padding: 14px 12px 12px;
  align-items: flex-end;
}

.problem__list {
  position: relative;
  white-space: nowrap;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.problem__text--small {
  margin: 0;
  padding: 10px 4px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  background: #f3f3f3;
  border-radius: 10px;
  line-height: 1.35;
}

.problem__text {
  font-size: 16px;
  color: #00b2b3;
}

.problem__image {
  width: 92px;
  flex: 0 0 92px;
}

.problem__image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 15px;
  right: 1px;
}

.problem__list>.problem__text--small:nth-child(1) {
  white-space: normal;
  padding: 10px 20px;
  margin-right: -40px;
}

.problem__body--pc {
  display: none;
}

@media (min-width: 768px) {
  .problem {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .problem__text {
    font-size: 24px;
  }

  .problem__text--small {
    font-size: 20px;
  }

  .problem__title {
    font-size: 36px;
  }

  .problem__content>.problem__body:not(.problem__body--pc) {
    display: none;
  }

  .problem__body--pc {
    display: grid;
  }

  .problem__content {
    max-width: 900px;
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .problem__body--pc {
    position: relative;
    grid-template-columns: 320px 1fr 320px;
    align-items: center;
    padding: 26px 24px 34px;
    min-height: 240px;
  }

  .problem__body--pc .problem__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-67%, -48%);
    width: 190px;
    z-index: 3;
    pointer-events: none;
  }

.problem__text--small {
  padding: 12px 4px;
  }
  .problem__body--pc .problem__list {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    gap: 14px;
  }

  .problem__body--pc .problem__text--small {
    padding: 14px 18px;
    border-radius: 14px;
  }

  .problem__body--pc .problem__list--left {
    transform: translateX(5px);
    margin-right: 60px;
  }

  .problem__body--pc .problem__list--right {
    transform: translateX(170px);
  }

  .problem__body--pc .problem__list--right .problem__text--small:nth-child(1) {
    transform: translateY(-6px);
  }

  .problem__body--pc .problem__list--right .problem__text--small:nth-child(2) {
    transform: translateY(10px);
  }

  .problem__text .problem__text-small {
    font-size: 30px;
  }

  .problem__title {
    padding: 30px;
  }

  .problem__body--pc .problem__list--right .problem__text--small:nth-child(2) {
    transform: translateX(20px);
  }

  .problem__image {
    height: 400px;
    scale: 90%;
  }
}


/* solution */

.solution {
  position: relative;
  overflow: visible;
}

.solution__content {
  max-width: 360px;
  margin: 30px auto;
}

.solution__body {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.solution__text {
  flex: 1;
}

.solution__title {
  margin: 0 15px 10px;
  font-size: 22px;
  font-weight: 900;
  color: #00b2b3;
  line-height: 1.35;
}

.solution__titleUnderline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
}

.solution__titleUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 3px;
  width: 100%;
  height: 6px;
  background: #ffe1a1;
}

.solution__list {
  margin: 0;
  padding: 0 15px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  position: relative;
  top: 10px;
}

.solution__icon {
  width: 16px;
  height: auto;
  margin-top: 13px;
  flex: 0 0 20px;
}

.solution__item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.35;
}

.solution__green {
  color: #00b2b3;
  font-weight: 700;
}

.solution__image {
  width: 98px;
  flex: 0 0 98px;
  position: relative;
  top: 30px;
  right: 130px;
}

.solution__image img {
  width: 130%;
  height: auto;
  display: block;
}

.solution__body {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .solution__list {
    gap: 16px;
      padding: 0;
  }

  .solution__list br {
    display: none;
  }

  .solution__item p {
    font-size: 24px;
    font-weight: 500;
  }

  .solution__green {
    font-weight: 700;
  }

  .solution__title {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 800;
  }

  .solution__content {
    max-width: 900px;
    padding: 0 24px;
    margin: 30px auto;
  }

  .solution__body {
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding-bottom: 30px;
  }

  .solution__image {
    height: auto;
    flex: 0 0 150px;
    position: relative;
    right: 160px;
    top: 35px;
  }

  .solution__titleUnderline::after {
    top: 38px;
    height: 12px;
  }

  .solution__image {
    transform: translateX(20px);
    transform: translateY(30px);
  }
}

/* steps  */
.steps__list {
  display: flex;
  flex-direction: column;
}

.steps__content {
  text-align: center;
  background: #00b2b3;
  padding: 20px 12px;
}

.steps__title {
  font-size: 24px;
  display: inline-block;
  font-weight: 700;
  background: #00b2b3;
  color: #fff;
  padding: 0.1em 2.5em;
  border-radius: 5px;
  margin: 10px;
  white-space: nowrap;

}

/* list */
.steps__list {
  list-style: none;
  padding: 0;
  margin: 16px auto 0;
  display: flex;
  gap: 23px;
  justify-content: center;
  align-items: center;
}

.steps__item {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 10px 5px;
  text-align: left;
  gap: 0;
  display: flex;
  align-items: center;
  width: 340px;
  height: 88px;
  margin-left: 10px;
}

.steps__stepIcon {
  position: absolute;
  top: -10px;
  left: -15px;
  width: 48px;
  height: auto;
}

.steps__text {
  width: 250px;
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.steps__point {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.0;
}

.steps__point span {
  color: #00b2b3;
}

.steps__note {
  font-size: 16px;
  font-weight: 400;
  color: #333;
     line-height: 1.2;
}

.steps__illust {
  height: 80px;
  width: auto;
}

@media (min-width: 768px) {
  .steps__content {
    padding: 15px 24px 40px;
  }

  .steps__title {
    font-size: 36px;
    white-space: nowrap;
    text-align: center;
  }

  .steps__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    margin-top: 48px;
  }

  .steps__item {
    width: 300px;
    height: 290px;
    padding: 48px 24px 24px;
    margin-left: 0;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
  }

  .steps__stepIcon {
    width: 70px;
    height: auto;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
  }

  .steps__text {
    width: 100%;
    padding-left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps__point {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 8px;
    white-space: nowrap;
  }

  .steps__illust {
    height: 125px;
    width: auto;
    margin-top: 12px;
    margin-left: -75px;
    position: absolute;
    top: 70px;
  }

  .steps__note {
    order: 3;
    font-size: 16px;
    line-height: 1.5;
    position: absolute;
    top: 220px;
  }
}

/* assurance */
.assurance {
  width: 100%;
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
  display: flex;
  justify-content: center;
}

.assurance__card {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 240px;
  width: 330px;
  padding: 0px 0px;
  box-sizing: border-box;
  background: linear-gradient(to bottom,
      #00b2b3 0%,
      #00b2b3 55%,
      #ffffff 45%,
      #ffffff 100%);
  border: 6px solid #00b2b3;
  border-radius: 16px;
}

.assurance__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(-10%);
}

.assurance__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.assurance__icon {
  width: 20px;
  height: 20px;
}

.assurance__text {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  position: relative;
  top: -3px;
}

.pc-br {
  display: inline;
}

.assurance__headline {
  margin: 10px 0 14px;
  font-size: 0px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;

  text-align: left;
  padding-left: 0;
  transform: translateY(-15%) translateX(2%);
}

.assurance__headline-em {
  position: relative;
  display: inline-block;
  font-size: 24px;
  text-align: left;
}

.assurance__headline-small {
  font-size: 20px;
}

.assurance__headline-em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 12px;

  background-repeat: repeat-x;
  background-size: 44px 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDY0IDEyIj4KICA8cGF0aCBkPSJNMCA2CiAgICAgICAgICAgUTQgMiA4IDYKICAgICAgICAgICBUMTYgNgogICAgICAgICAgIFQyNCA2CiAgICAgICAgICAgVDMyIDYKICAgICAgICAgICBUNDAgNgogICAgICAgICAgIFQ0OCA2CiAgICAgICAgICAgVDU2IDYKICAgICAgICAgICBUNjQgNiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZjZjNDQ1IiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  pointer-events: none;
}




.assurance__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 14px;
  box-sizing: border-box;
}

.assurance__description {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #00b2b3;
  line-height: 1.45;
  text-align: left;
  padding-left: 60px;
  transform: translateY(1%);
}

.assurance__description span {
  font-size: 15px;
  font-weight: 500;
}

.assurance__chara {
  position: absolute;
  left: -35px;
  bottom: 4px;
  height: 160px;
  width: auto;
  z-index: 2;
}

.assurance__cardMask {
  border-radius: 28px;
  overflow: hidden;
  background: #00b2b3;
  border: 6px solid #333;
  padding: 22px 18px 160px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) {

  .pc-br {
    display: none;
  }

  .assurance__icon {
    width: 38px;
    height: 38px;
    transform: translateY(-1px);
  }

  .assurance__list {
    gap: 3rem;
    transform: translateY(-40%);
  }

  .assurance {
    padding: 50px;
  }

  .assurance__card {
    width: 700px;
    height: 360px;
    padding: 40px 40px;
    background: linear-gradient(to bottom,
        #00b2b3 0%,
        #00b2b3 60%,
        #ffffff 40%,
        #ffffff 100%);
  }

  .assurance__text {
    font-size: 32px;
  }

  .assurance__description {
    font-size: 24px;
    padding-left: 30px;
    transform: translateY(40%);
    text-align: center;
  }

  .assurance__description span {
    font-size: 22px;
    font-weight: 500;
  }

  .assurance__headline {
    transform: translateY(-30%);
  }

  .assurance__headline-small {
    font-size: 28px;
  }

  .assurance__headline-em {
    font-size: 40px;
    white-space: nowrap;
  }

  .assurance__chara {
    left: -80px;
    bottom: 0px;
    height: 270px;
  }
.assurance__headline-em::after {
  bottom: -7px;
  height: 12px;

  background-repeat: repeat-x;
  background-size: 64px 12px;

}
}
/*
    CVボタン（SP）
--------------------------------------------------------------------------*/
.bottom__button {
  padding-bottom: 60px;
}

.cv_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00b2b3;
  line-height: 2.5;
  border-radius: 10rem;
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
  filter: drop-shadow(0 6px 0 #95cbd3);
  cursor: pointer;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.cv_button:hover {
  filter: none;
  top: 6px;
  color: #fff;
}

.cv_button span {
  height: 2rem;
  margin-right: 0.5rem;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 1px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .cv_button {
    line-height: 2.5;
    width: 340px;
    font-size: 24px;
  }

  .cv_button span {
    margin-right: 1rem;
    font-size: 1.1rem;
  }

  .cv_button::after {
    right: 2rem;
  }
}

.page-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -100;
  pointer-events: none;
}

.page-bg__img {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: none;
  height: auto;
}

@media (min-width: 768px) {
  .page-bg__img {
    width: 3000px;
  }
}

html,
body {
  overflow-x: hidden;
}

.page-bg {
  width: 100vw;
  left: 0;
  transform: none;
}
 
.steps,
.steps__content,
.steps__list,
.steps__item {
  touch-action: pan-y;
}

.steps__content {
  overflow-x: clip; 
}


.steps__stepIcon,
.steps__illust {
  pointer-events: none;
}

.horizonal {
  width: 1200px;
  margin: 0 auto;
} 

@media (max-width: 768px) {
  .horizonal {
    width: 100%;
  }
}