.body-wrapper {
  margin: 0;
}

.content-wrapper {
  width: 100vw;
}

header {
  width: 100vw;
  margin: auto;
}

.service-page-wrapper * {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

.service-page-wrapper {
  min-width: 1120px;
  width: 100vw;
}

.service-page-wrapper * {
  font-family: "Noto Sans JP", sans-serif;
  color: #424242;
  font-size: 1.6rem;
}

@media (max-width: 760px) {
  .service-page-wrapper {
    min-width: 100%;
  }
}

.service-page-wrapper .inner {
  max-width: 1220px;
  min-width: 1120px;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .service-page-wrapper .inner {
    max-width: 100%;
    min-width: 100%;
    padding: 0 20px;
  }
}

.service-page-wrapper img {
  display: block;
  width: 100%;
}

.service-page-wrapper a {
  width: 100%;
  transition: 0.3s all;
  line-height: 1;
  color: #333;
}

.service-page-wrapper a:hover {
  cursor: pointer;
}

.service-page-wrapper .pc {
  display: block;
}

@media (max-width: 760px) {
  .service-page-wrapper .pc {
    display: none;
  }
}

.service-page-wrapper .sp {
  display: none;
}

@media (max-width: 760px) {
  .service-page-wrapper .sp {
    display: block;
  }
}

.service-page-wrapper h1,
.service-page-wrapper h2,
.service-page-wrapper h3,
.service-page-wrapper h4,
.service-page-wrapper h5 {
  line-height: 1;
}

.service-page-wrapper h2 {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

@media (max-width: 760px) {
  .service-page-wrapper h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.service-page-wrapper h2 span {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: #FCCF00;
  margin-bottom: 8px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .service-page-wrapper h2 span {
    font-size: 4rem;
  }
}

.service-page-wrapper h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #F9A800;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dot-text {
  position: relative;
}

.dot-text::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #F9A800;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 760px) {
  .dot-text::after {
    width: 6px;
    height: 6px;
    top: -4px;
  }
}

.header {
  position: relative;
}

.header__top {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header__top .inner {
  max-width: 1440px;
  padding: 0;
}

.header__topWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background-color: #fff;
}

@media (max-width: 760px) {
  .header__topWrap {
    justify-content: flex-start;
    padding: 15px 0;
  }
}

.header__topImg {
  width: 250px;
  margin-left: 16px;
}

@media (max-width: 760px) {
  .header__topImg {
    width: 150px;
    margin-left: 5px;
  }
}

.header__topImg a {
  display: block;
}

.header__topImg a:hover {
  opacity: 0.5;
}

.header__topNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .header__topNav {
    margin-left: auto;
  }
}

.header__topNav-item {
  margin-right: 40px;
}

.header__topNav-item a {
  font-weight: bold;
}

.header__topNav-item a:hover {
  color: #F9A800;
}

@media (max-width: 760px) {
  .header__topNav-item {
    display: none;
  }
}

.header__topNav-item:last-child a {
  padding: 12px 15px;
  background-color: #FCCF00;
  border-radius: 5px;
  color: #333;
}

@media (max-width: 760px) {
  .header__topNav-item:last-child a {
    font-size: 1.2rem;
    padding: 6px 15px;
  }
}

.header__topNav-item:last-child a:hover {
  background-color: #F9A800;
  color: #333;
}

@media (max-width: 760px) {
  .header__topNav-item:last-child {
    display: block;
    margin-right: 20px;
  }
}

.header__topHum.sp {
  width: 30px;
  height: 22px;
  margin-right: 20px;
  position: relative;
}

.header__topHum.sp span {
  position: absolute;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: 0.3s all;
}

.header__topHum.sp span:nth-of-type(1) {
  top: 0;
}

.header__topHum.sp span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__topHum.sp span:nth-of-type(3) {
  bottom: 0;
}

.header__topHum.sp.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__topHum.sp.is-open span:nth-of-type(2) {
  display: none;
}

.header__topHum.sp.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header__topGnav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  z-index: 80;
  transition: 0.3s all;
  background-color: #fff;
  border-top: 1px solid #FCCF00;
}

.header__topGnav.is-open {
  top: 60px;
}

.header__topGnav.is-open .header__topGnav-bg {
  opacity: 1;
  visibility: visible;
}

.header__topGnav-bg {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 70;
  transition: 0.3s all;
  visibility: hidden;
}

.header__topGnav-wrap {
  position: relative;
  z-index: 75;
  background-color: #fff;
}

.header__topGnav-item {
  border-bottom: 1px solid rgba(45, 174, 161, 0.25);
}

.header__topGnav-item a {
  font-weight: bold;
  display: inline-block;
  padding: 18px 20px;
}

.header__topGnav-item:last-child {
  background-color: #FCCF00;
}

.header__topGnav-item:last-child a {
  color: #fff;
}

.header__fv {
  position: relative;
}

@media (max-width: 760px) {
  .header__fv {
    max-height: 100vh;
  }
}

@media (max-width: 760px) {
  .header__fv img {
    max-height: 100vh;
    object-fit: cover;
  }
}

.header__fvText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 100%;
  color: #fff;
}

.header__fvText h1 {
  color: #fff;
}

@media (max-width: 760px) {
  .header__fvText {
    padding: 0 20px;
  }
}

.header__fvText-lead {
  color: #fff !important;
}

@media (max-width: 760px) {
  .header__fvText-lead {
    font-size: 1.4rem;
  }
}

.header__fvText-top {
  background-color: #2DAEA1;
  font-size: 2rem;
  font-weight: bold;
  padding: 6px 11px;
  display: inline-block;
  border-radius: 20px;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 760px) {
  .header__fvText-top {
    font-size: 1.5rem;
  }
}

.header__fvText-top::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #2DAEA1 transparent transparent transparent;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateY(-50%);
}

.header__fvText h1 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .header__fvText h1 {
    font-size: 2.2rem;
  }
}

.header__fvBtn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.header__fvBtn-item {
  width: 264px;
  border: 2px solid #fff;
  border-radius: 5px;
  margin: 0 20px;
}

@media (max-width: 760px) {
  .header__fvBtn-item {
    width: 158px;
    margin: 0 5px;
  }
}

.header__fvBtn-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 760px) {
  .header__fvBtn-item a {
    font-size: 1.4rem;
  }
}

.header__fvBtn-item a:hover {
  background-color: #fff;
  color: #F9A800;
}

.header__fixed {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: fixed;
  top: 360px;
  right: 0;
  width: 60px;
  z-index: 90;
}

@media (max-width: 760px) {
  .header__fixed {
    display: none;
  }
}

.header__fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  background-color: #FCCF00;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  text-decoration: unset;
}

.header__fixed a:hover {
  background-color: #F9A800;
}

.lead {
  background-color: #f3f3f3;
  padding-top: 80px;
}

@media (max-width: 760px) {
  .lead {
    padding: 80px 0 0 0;
  }
}

.lead .inner {
  padding-bottom: 130px;
}

@media (max-width: 760px) {
  .lead .inner {
    padding-bottom: 90px;
  }
}

.lead h2 {
  padding-bottom: 0;
  margin-bottom: 72px;
}

@media (max-width: 760px) {
  .lead h2 {
    margin-bottom: 40px;
  }
}

.lead h2 span {
  color: #333;
  display: inline-block;
  border-bottom: 2px solid #F9A800;
  padding-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 760px) {
  .lead h2 span {
    font-size: 2rem;
    width: 100%;
  }
}

.lead h2::after {
  content: "";
  background-color: inherit;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #f9a600 transparent transparent transparent;
  bottom: -11px;
}

.lead h2::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #F3F3F3 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  bottom: -10px;
  z-index: 5;
}

.lead__wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .lead__wrap {
    display: block;
  }
}

.lead__item {
  width: 32%;
  max-width: 320px;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 760px) {
  .lead__item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 100%;
  }
}

.lead__itemImg {
  background-color: #fff;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  padding-top: 70px;
}

@media (max-width: 760px) {
  .lead__itemImg {
    margin: 0 auto;
  }
}

.lead__itemImg img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.lead__item h3 {
  display: block;
  text-align: center;
  margin-bottom: 24px;
}



.lead__bottomLI {
  margin-left: 10px;
}


.lead__item h3 span {
  position: inherit;
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  line-height: 1.5;
  background: linear-gradient(rgba(252, 207, 0, 0) 60%, rgba(252, 207, 0, 0.5) 60%);
}

.lead__item span {
  font-family: "Rubik", sans-serif;
  color: #FCCF00;
  font-size: 6rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.lead__itemText {
  padding-top: 24px;
  background-color: #F3F3F3;
  margin-top: -50px;
}

.lead__bottom {
  background-color: #fff;
  padding: 80px 0 100px 0;
  position: relative;
}

@media (max-width: 760px) {
  .lead__bottom {
    padding: 60px 20px;
  }
}

.lead__bottom::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -50px;
  border-top: 50px solid rgba(252, 207, 0, 0);
  border-left: 50vw solid rgba(252, 207, 0, 0);
  border-right: 50vw solid #fff;
  border-bottom: 50px solid #fff;
}

.lead__bottom::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -50px;
  border-top: 50px solid rgba(252, 207, 0, 0);
  border-left: 50vw solid #fff;
  border-right: 50vw solid rgba(252, 207, 0, 0);
  border-bottom: 50px solid #fff;
}

.lead__bottomTtl {
  text-align: center;
  color: #F9A800;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .lead__bottomTtl {
    font-size: 2rem;
    text-align: left;
  }
}

.lead__bottomText {
  max-width: 768px;
  margin: 0 auto;
}

.lead__bottomText_ul {
  max-width: 768px;
  margin: 0 auto;
  list-style: initial;
}

.lead__bottomText_ol {
  max-width: 768px;
  margin: 0 auto;
  list-style: decimal;
}


@media (max-width: 760px) {
  .lead__bottomText_ul {
    margin: 0 auto;
    list-style: initial;
  }
}

@media (max-width: 760px) {
  .lead__bottomText_ol {
    margin: 0 auto;
    list-style: decimal;
  }
}

.lead__border-top {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #FCCF00;
  position: relative;
}

.lead__border-top::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 50px solid rgba(252, 207, 0, 0);
  border-left: 50vw solid rgba(252, 207, 0, 0);
  border-right: 50vw solid #FCCF00;
  border-bottom: 50px solid #FCCF00;
}

.lead__border-top::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 50px solid rgba(252, 207, 0, 0);
  border-left: 50vw solid #FCCF00;
  border-right: 50vw solid rgba(252, 207, 0, 0);
  border-bottom: 50px solid #FCCF00;
}

.lead__border-bottom {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #FEE77F;
  position: relative;
}

.lead__border-bottom::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 50px solid rgba(254, 231, 127, 0);
  border-left: 50vw solid rgba(254, 231, 127, 0);
  border-right: 50vw solid #FEE77F;
  border-bottom: 50px solid #FEE77F;
}

.lead__border-bottom::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 50px solid rgba(254, 231, 127, 0);
  border-left: 50vw solid #FEE77F;
  border-right: 50vw solid rgba(254, 231, 127, 0);
  border-bottom: 50px solid #FEE77F;
}

.reason {
  padding: 80px 0 100px 0;
}

.reason__lead {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 900;
  color: #333;
}

@media (max-width: 760px) {
  .reason__lead {
    font-size: 2.4rem;
  }
}

.reason__item {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

@media (max-width: 760px) {
  .reason__item {
    margin-top: 90px;
  }
}

@media (max-width: 760px) {
  .reason__item:first-child {
    margin-top: 40px;
  }
}

.reason__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 760px) {
  .reason__item:nth-of-type(even) {
    flex-direction: column-reverse;
    margin-left: -20px;
  }
}

.reason__item:nth-of-type(even) .reason__itemText {
  padding: 0 40px 0 60px;
}

@media (max-width: 760px) {
  .reason__item:nth-of-type(even) .reason__itemText {
    padding: 0 0 0 20px;
  }
}

@media (max-width: 760px) {
  .reason__item:nth-of-type(odd) {
    flex-direction: column-reverse;
    margin-right: -20px;
  }
}

.reason__itemText {
  padding: 40px 60px 0 40px;
}

@media (max-width: 760px) {
  .reason__itemText {
    padding: 0;
    margin-top: -31px;
    position: relative;
  }
}

.reason__itemText-num {
  font-family: "Rubik", sans-serif;
  color: #FCCF00;
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .reason__itemText-num {
    font-size: 6rem;
    margin-bottom: 0;
  }
}

.reason__itemText h3 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.reason__itemImg {
  width: 600px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .reason__itemImg {
    width: 100%;
  }
}

.service_lp {
  background-color: #FCCF00;
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {
  .service_lp {
    padding: 80px 0;
  }
}

.service_lp h2 span {
  color: #333;
}

.service_lp h2::after {
  background-color: #fff;
}

.service__lead {
  font-size: 3.6rem;
  font-weight: 900;
  text-align: center;
  color: #333;
}

@media (max-width: 760px) {
  .service__lead {
    font-size: 2.4rem;
  }
}

.service__wrap {
  display: flex;
  flex-wrap: wrap;
  /*20221117 justify-content: space-around;*/
  justify-content: space-around;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .service__wrap {
    display: block;
  }
}

.service__item {
  max-width: 550px;
  width: 49%;
  margin-top: 90px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

@media (max-width: 760px) {
  .service__item {
    max-width: 100%;
    width: 100%;
    margin-top: 70px;
  }
}

.service__itemTtl {
  background-color: #F9A800;
  position: relative;
  padding: 57px 0 20px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 760px) {
  .service__itemTtl {
    padding: 43px 0 20px 0;
  }
}

.service__itemTtl h3 {
  position: relative;
  z-index: 10;
  font-size: 2.8rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .service__itemTtl h3 {
    font-size: 2rem;
  }
}

.service__itemTtl-num {
  border-radius: 50%;
  display: block;
  width: 158px;
  height: 156px;
  position: absolute;
  top: -51px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F9A800;
  font-size: 1.8rem;
  padding-top: 20px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 760px) {
  .service__itemTtl-num {
    font-size: 1.4rem;
    width: 134px;
    height: 134px;
  }
}

.service__itemTtl-num p {
  color: #fff;
}

.service__itemTtl-numTtl {
  font-family: "Rubik", sans-serif;
  font-size: 4.2rem;
  padding-bottom: 10px;
  border-bottom: 3px solid #fff;
  display: inline-block;
}

@media (max-width: 760px) {
  .service__itemTtl-numTtl {
    font-size: 3.2rem;
  }
}

.service__itemText {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 2;
}

.service__itemText span {
  font-weight: bold;
}

.service__itemText .caution {
  font-size: 1.4rem;
  margin-top: 8px;
}

.service__itemText-point {
  border: 2px solid #F0F0F0;
  margin-top: 24px;
  border-radius: 10px;
}

.service__itemText-point h4 {
  background-color: #F0F0F0;
  text-align: center;
  font-weight: bold;
  padding: 3px 0;
  line-height: 1.125;
}

.service__itemText-point p {
  padding: 16px 12px;
  text-align: center;
}

.service__optionTtl {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 30px 0;
  text-align: center;
}

@media (max-width: 760px) {
  .service__optionTtl {
    margin: 40px 0 30px 0;
  }
}

.service__optionWrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .service__optionWrap {
    display: block;
  }
}

.service__optionItem {
  max-width: 550px;
  width: 49%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-radius: 10px;
}

@media (max-width: 760px) {
  .service__optionItem {
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
}

@media (max-width: 760px) {
  .service__optionItem:first-child {
    margin-bottom: 20px;
  }
}

.service__optionItem-img {
  width: 120px;
  height: 120px;
  background-color: rgba(252, 207, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 24px;
}

@media (max-width: 760px) {
  .service__optionItem-img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
  }
}

.service__optionItem-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .service__optionItem-img img {
    width: 40px;
    height: 40px;
  }
}

.service__optionItem-text h4 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: bold;
}

@media (max-width: 760px) {
  .service__border img {
    width: auto;
    margin: 0 auto;
  }
}

.case,
.feature {
  background-color: #f3f3f3;
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {

  .case,
  .feature {
    padding: 80px 0;
  }
}

.case h2,
.feature h2 {
  padding-bottom: 0;
  margin-bottom: 72px;
}

@media (max-width: 760px) {

  .case h2,
  .feature h2 {
    line-height: 1.66;
    margin-bottom: 80px;
  }
}

.case h2::after,
.feature h2::after {
  display: none;
}

.case__wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .case__wrap {
    display: block;
  }
}

.case__item {
  width: 32%;
  max-width: 360px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 760px) {
  .case__item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.case__itemText {
  padding: 16px 24px 32px 24px;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
}

@media (max-width: 760px) {
  .case__itemText {
    padding: 16px 24px;
  }
}

.case__itemText h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5;
}

.case__itemText-position {
  margin-top: auto;
  padding-top: 28px;
}

@media (max-width: 760px) {
  .case__itemText-position {
    padding-top: 16px;
  }
}

.case__itemText-position p {
  padding-left: 28px;
  position: relative;
  font-size: 1.2rem;
}

.case__itemText-position p::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #777777;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.case__itemText-position ul {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dotted #BDBDBD;
}

.case__itemText-position ul li {
  font-size: 1.2rem;
  font-weight: bold;
  color: #777777;
}

.case__itemText-position ul li:first-child {
  margin-bottom: 8px;
}

.about {
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {
  .about {
    padding: 80px 0;
  }
}

.about .inner {
  width: 840px;
  min-width: 840px;
}

@media (max-width: 760px) {
  .about .inner {
    max-width: 100%;
    min-width: 100%;
  }
}

.about__lead {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 760px) {
  .about__lead {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}

.about table {
  margin-top: 72px;
}

@media (max-width: 760px) {
  .about table {
    display: block;
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .about table tbody {
    display: block;
  }
}

@media (max-width: 760px) {
  .about table tr {
    display: block;
  }
}

.about table tr:last-child th {
  border-bottom: 1px solid #BDBDBD;
}

@media (max-width: 760px) {
  .about table tr:last-child th {
    border-bottom: none;
  }
}

.about table tr:last-child td {
  border-bottom: 1px solid #BDBDBD;
}

.about table th {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  font-weight: bold;
  width: 17%;
}

@media (max-width: 760px) {
  .about table th {
    display: block;
    width: 100%;
    padding: 16px 0 8px 0;
    font-size: 1.4rem;
  }
}

.about table td {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  width: 83%;
}

@media (max-width: 760px) {
  .about table td {
    display: block;
    width: 100%;
    border-top: none;
    padding: 0 0 16px 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 760px) {
  .about table td ul li {
    line-height: 1.9;
  }
}

.qanda {
  background-color: #F3F3F3;
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {
  .qanda {
    padding: 80px 0;
  }
}

.qanda .inner {
  max-width: 840px;
}

@media (max-width: 760px) {
  .qanda .inner {
    max-width: 100%;
  }
}

.qanda h2::after {
  display: none;
}

.qanda__wrap {
  display: none;
}

.qanda__wrap.is-active {
  display: block;
}

.qanda__item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .qanda__item {
    font-size: 1.4rem;
  }
}

.qanda__itemQ {
  display: flex;
  padding: 16px 70px 16px 20px;
  position: relative;
}

@media (max-width: 760px) {
  .qanda__itemQ {
    padding: 18px 50px 18px 12px;
  }
}

.qanda__itemQ:hover {
  cursor: pointer;
}

.qanda__itemQ::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 25px;
  display: block;
  background-color: #FCCF00;
  width: 20px;
  height: 2px;
}

@media (max-width: 760px) {
  .qanda__itemQ::after {
    top: 32px;
    right: 20px;
  }
}

.qanda__itemQ::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 25px;
  display: block;
  background-color: #FCCF00;
  width: 20px;
  height: 2px;
  transform: rotate(90deg);
  transition: 0.3s all;
}

@media (max-width: 760px) {
  .qanda__itemQ::before {
    top: 32px;
    right: 20px;
  }
}

.qanda__itemQ p {
  font-weight: bold;
  padding-top: 8px;
  color: #333;
}

@media (max-width: 760px) {
  .qanda__itemQ p {
    padding-top: 5px;
  }
}

.qanda__itemQ-icon {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background-color: #F3F3F3;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: "Rubik", sans-serif;
}

@media (max-width: 760px) {
  .qanda__itemQ-icon {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    margin-right: 10px;
  }
}

.qanda__itemQ.is-open::before {
  transform: rotate(180deg);
}

.qanda__itemA {
  display: none;
  padding: 12px 70px 30px 20px;
  border-top: 1px solid rgba(189, 189, 189, 0.5);
}

@media (max-width: 760px) {
  .qanda__itemA {
    padding: 20px 12px;
  }
}

.qanda__itemA p {
  padding-top: 8px;
}

@media (max-width: 760px) {
  .qanda__itemA p {
    padding-top: 5px;
  }
}

.qanda__itemA-wrap {
  display: flex;
}

.qanda__itemA-wrap p {
  width: 100%;
}

.qanda__itemA-icon {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background-color: #FCCF00;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-family: "Rubik", sans-serif;
}

@media (max-width: 760px) {
  .qanda__itemA-icon {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
    margin-right: 10px;
  }
}

.flow {
  background-color: #FCCF00;
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {
  .flow {
    padding: 80px 0;
  }
}

.flow h2 {
  padding-bottom: 0;
  margin-bottom: 72px;
}

.flow h2 span {
  color: #333;
}

.flow h2::after {
  display: none;
}

.flow__wrap {
  display: flex;
}

@media (max-width: 760px) {
  .flow__wrap {
    display: block;
  }
}

.flow__item {
  width: 25%;
  background-color: #fff;
  position: relative;
}

@media (max-width: 760px) {
  .flow__item {
    width: 100%;
    margin-bottom: 40px;
  }
}

.flow__item::after {
  content: "";
  display: block;
  width: 22px;
  height: 100%;
  background: url(/img/lp_1/border-right.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -5px;
  z-index: 5;
}

@media (max-width: 760px) {
  .flow__item::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px calc(50vw - 20px) 0 calc(50vw - 20px);
    top: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    border-color: #ffffff transparent transparent transparent;
  }
}

.flow__item:last-child::after {
  display: none;
}

@media (max-width: 760px) {
  .flow__item:last-child::after {
    display: inherit;
  }
}

.flow__itemTtl {
  text-align: center;
  background-color: #F9A800;
  font-family: "Rubik", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 16px 0;
}

.flow__itemText {
  padding: 16px 30px 24px 30px;
}

.flow__itemText h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.flow__itemText .caution {
  font-size: 1.2rem;
  margin-top: 6px;
}

.cta {
  padding: 117px 0 112px 0;
  text-align: center;
  background: url(/img/lp_1/bg_cta.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

@media (max-width: 760px) {
  .cta {
    padding: 80px 0;
    background: url(/img/lp_1/bg_cta.jpg) no-repeat center;
    background-size: cover;
  }
}

.cta::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cta__lead {
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
  color: #fff;
}

@media (max-width: 760px) {
  .cta__lead {
    font-size: 1.6rem;
  }
}

.cta__btn {
  width: 240px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.cta__btn a {
  background-color: #FCCF00;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-weight: bold;
  border-radius: 5px;
}

.cta__btn a:hover {
  background-color: #F9A800;
}

.footer {
  padding: 30px 0;
}

@media (max-width: 760px) {
  .footer {
    padding: 40px 0 20px 0;
  }
}

.footer .inner {
  max-width: 1440px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .footer .inner {
    display: block;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .footer .header__topImg {
    width: 250px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

.footer__copy {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 40px;
}

@media (max-width: 760px) {
  .footer__copy {
    font-size: 1rem;
    margin-right: 0;
    text-align: center;
  }
}

.ab_cost table {
  margin-top: 72px;
}

@media (max-width: 760px) {
  .ab_cost table {
    display: block;
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .ab_cost table tbody {
    display: block;
  }
}

@media (max-width: 760px) {
  .ab_cost table tr {
    display: block;
  }
}

.ab_cost table tr:last-child th {
  border-bottom: 1px solid #BDBDBD;
}

@media (max-width: 760px) {
  .ab_cost table tr:last-child th {
    border-bottom: none;
  }
}

.ab_cost table tr:last-child td {
  border-bottom: 1px solid #BDBDBD;
}

.ab_cost table th {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  font-weight: bold;
  width: 17%;
}

@media (max-width: 760px) {
  .ab_cost table th {
    display: block;
    width: 100%;
    padding: 16px 0 8px 0;
    font-size: 1.4rem;
  }
}

.ab_cost table td {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  width: 83%;
}

@media (max-width: 760px) {
  .ab_cost table td {
    display: block;
    width: 100%;
    border-top: none;
    padding: 0 0 16px 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 760px) {
  .ab_cost table td ul li {
    line-height: 1.9;
  }
}


.ab_cost {
  padding: 80px 0 100px 0;
}

@media (max-width: 760px) {
  .ab_cost {
    padding: 80px 0;
  }
}

.ab_cost .inner {
  width: 840px;
  min-width: 840px;
}

@media (max-width: 760px) {
  .ab_cost .inner {
    max-width: 100%;
    min-width: 100%;
  }
}

.ab_cost__lead {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 760px) {
  .ab_cost__lead {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #333;
  }
}

.ab_cost table {
  margin-top: 72px;
}

@media (max-width: 760px) {
  .ab_cost table {
    display: block;
    margin-top: 40px;
  }
}

@media (max-width: 760px) {
  .ab_cost table tbody {
    display: block;
  }
}

@media (max-width: 760px) {
  .ab_cost table tr {
    display: block;
  }
}

.ab_cost table tr:last-child th {
  border-bottom: 1px solid #BDBDBD;
}

@media (max-width: 760px) {
  .ab_cost table tr:last-child th {
    border-bottom: none;
  }
}

.ab_cost table tr:last-child td {
  border-bottom: 1px solid #BDBDBD;
}

.ab_cost table th {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  font-weight: bold;
  width: 85%;
}

@media (max-width: 760px) {
  .ab_cost table th {
    display: block;
    width: 100%;
    padding: 16px 0 8px 0;
  }
}

.ab_cost table td {
  border-top: 1px solid #BDBDBD;
  padding: 18px 0;
  width: 20%;
}

@media (max-width: 760px) {
  .ab_cost table td {
    display: block;
    width: 100%;
    border-top: none;
    padding: 0 0 16px 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 760px) {
  .ab_cost table td ul li {
    line-height: 1.9;
  }
}

.th1 {
  background-color: #F3F3F3;
}

.test {
  list-style-type: circle !important;
}

/* ポップアップHTMLの幅を100px ～ 15%に */
.ss-popup-area {
  min-width: 350px;
}

.ss-popup-html-area {
  max-width: 15%;
}

.feature .content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 80px;
}

.feature .content .license {
  margin: 0 12rem;
  position: relative;
  background: #FFF;
  border-radius: 8px;
}

.feature .content .license .icon {
  position: absolute;
  top: -50px;
  left: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
}

.feature .content .license .icon h3 {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  background-color: #facc15;
  color: #333333;
}

.feature .content .license .desc-area {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.feature .content .license .desc-area .desc {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 400px;
}

.feature .content .license .desc-area .desc .normal {
  font-weight: 600;
  margin: 0;
  line-height: 150%;
}

.feature .content .license .desc-area .desc .normal span {
  margin: 0 8px;
  font-size: 2.5rem;
  box-shadow: inset 0 -0.5em 0 #fde047;
}

.feature .content .license .desc-area .desc .small {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
  line-height: 150%;
}

.feature .content .pain {
  margin: 0 12rem;
  position: relative;
  background: #FFF;
  border-radius: 8px;
}

.feature .content .pain .icon {
  position: absolute;
  top: -50px;
  left: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
}

.feature .content .pain .icon h3 {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  background-color: #facc15;
  color: #333333;
}

.feature .content .pain .desc-area {
  margin: 32px 0;
  display: flex;
  justify-content: space-around;
  gap: 32px;
}

.feature .content .pain .desc-area .desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature .content .pain .desc-area .desc h4 {
  font-size: 2.5rem;
  box-shadow: inset 0 -0.5em 0 #fde047;
}

.feature .content .pain .desc-area .desc img {
  width: 300px;
}

.feature .content .pain .desc-area .desc ul li p {
  font-weight: 600;
  margin: 0;
}

.feature .content .pain .desc-area .desc ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature .content .pain .desc-area .desc .text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 288px;
}

.feature .content .pain .desc-area .desc .text p {
  font-weight: 600;
  margin: 0;
}

.feature .content .pain .desc-area .desc .text span {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
  line-height: 150%;
}

.feature .content .cost {
  margin: 0 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 133px;
  gap: 32px;
}

.feature .content .cost .content .desc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid #F9A800;
  padding-bottom: 32px;
}

.feature .content .cost .content .desc p {
  font-weight: 600;
  margin: 0;
  font-size: 2.5rem;
}

.feature .content .cost .content .solution {
  text-align: center;
}

.feature .content .cost .content .solution p {
  font-weight: 600;
  margin: 0;
  font-size: 2.5rem;
}

.feature .content .cost .content .desc::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #F3F3F3 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  bottom: -20px;
  z-index: 5;
}

.feature .content .cost .content .desc::after {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #f9a600 transparent transparent transparent;
  bottom: -20px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.feature .content .cost h3 {
  width: 70%;
  display: flex;
  justify-content: center;
}

.feature .content .cost h3 img {
  max-width: 600px;
}

@media (max-width: 760px) {
  .feature .content .license {
    margin: 0;
  }

  .feature .content .license .icon {
    left: 20px;
  }

  .feature .content .license .desc-area {
    margin: 80px 0;
    gap: 64px;
  }

  .feature .content .pain {
    margin: 0;
  }

  .feature .content .pain .icon {
    left: 20px;
  }

  .feature .content .pain .desc-area {
    margin: 64px 0;
    flex-direction: column;
    align-items: center;
  }

  .feature .content .pain .desc-area .desc {
    width: 100%;
    gap: 16px;
  }

  .feature .content .pain .desc-area .desc h4 {
    margin: 0;
  }

  .feature .content .cost {
    margin: 0;
    padding: 0 24px;
  }

  .feature .content .cost h3 {
    width: 100%;
  }

  .feature .content .cost .content .desc p {
    font-size: 2.6rem;
  }

  .feature .content .cost .content .desc p {
    font-size: 2rem;
  }

  .feature .content .cost .content .solution p {
    font-size: 2rem;
  }

  .feature .content .license .desc-area .desc {
    width: 90%;
  }
}