@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&display=swap");
@media screen and (min-width: 751px) {
  .visible-lg,
  .visible-md,
  .visible-sm {
    display: none;
  }
  .visible-xl {
    display: inherit;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .visible-xl,
  .visible-md,
  .visible-sm {
    display: none;
  }
  .visible-lg {
    display: inherit;
  }
}

@media screen and (min-width: 751px) and (max-width: 1023px) {
  .visible-xl,
  .visible-lg,
  .visible-sm {
    display: none;
  }
  .visible-md {
    display: inherit;
  }
}

@media screen and (max-width: 750px) {
  .visible-xl,
  .visible-lg,
  .visible-md {
    display: none;
  }
  .visible-sm {
    display: inherit;
  }
}

.no--link {
  pointer-events: none;
}

.fontBold {
  font-weight: bold;
}

@media screen and (min-width: 751px) {
  [class*="l-content-"] {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

@media screen and (max-width: 750px) {
  [class*="l-content-"]:not(.l-content-ex) {
    padding: 0 2.66667vw;
  }
}

@media screen and (min-width: 751px) {
  .l-content-md {
    max-width: 1000px;
  }
}

@media screen and (min-width: 751px) {
  .l-content-lg {
    max-width: 1200px;
  }
}

.section__heading {
  text-align: center;
}
.section__heading::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 5px;
  background-color: #db1517;
  margin: 0.5em auto 1.5em;
}
.section__heading .heading--en {
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.4em;
  line-height: 1;
  font-size: 3.73333vw;
}
.section__heading .heading--jp {
  display: block;
  font-weight: 700;
  line-height: 1.4;
  font-size: 9.0vw;
}

@media screen and (max-width: 750px) {
  .section__heading .heading--jp {
    font-size: calc(1rem+20px);
  }
}

@media screen and (min-width: 751px) {
  .section__heading::after {
    width: 3.3em;
    height: 3px;
    margin-bottom: 3em;
  }
  .section__heading .heading--en {
    font-size: calc(1rem - 2px);
  }
  .section__heading .heading--jp {
    font-size: calc(1rem + 20px);
  }
}

.card__shadow {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.bnr__content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  padding: 0.7rem 0;
  background: #e6e6e6;
  font-size: 2.93333vw;
  background-color: #e6e6e6;
}
@media screen and (min-width: 751px) {
  .breadcrumb {
    font-size: calc(1rem - 2px);
  }
}
.breadcrumb__item {
  display: inline;
  margin-right: 1rem;
}
.breadcrumb__item + .breadcrumb__item:before {
  content: ">";
  margin-right: 1rem;
}
.breadcrumb__anc {
  display: inline;
  text-decoration: underline;
}
@media screen and (min-width: 751px) {
  .breadcrumb__anc:hover {
    text-decoration: none;
  }
}

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

@media screen and (min-width: 751px) {
  .pc__none {
    display: none;
  }
}

.indention {
  display: inline-block;
}

main {
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 751px) {
  main::before {
    background: url(/assets/images/top/bg_design.png) 133% 42%/60% no-repeat;
  }
}
@media screen and (max-width: 750px) {
  main::before {
    background: url(/assets/images/top/bg_design.png) -43% 37%/120% no-repeat;
  }
}

.hero {
  border-top: solid 1px #e6e6e6;
  border-bottom: solid 1px #e6e6e6;
  color: #db1517;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 751px) {
  .hero {
    padding: 2.5rem 0;
  }
}
@media screen and (max-width: 750px) {
  .hero {
    padding: 1.5rem 0;
  }
}
.hero__heading {
  font-weight: bold;
  font-size: 9.6vw;
}
@media screen and (min-width: 751px) {
  .hero__heading {
    font-size: 36px;
  }
}
.hero__subtitle {
  font-size: 4.8vw;
  margin-top: 0.5rem;
  color: #666;
}
@media screen and (min-width: 751px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__description {
  font-size: 3.2vw;
  margin-top: 0.5rem;
  color: #999;
}
@media screen and (min-width: 751px) {
  .hero__description {
    font-size: 14px;
  }
}

.section__content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.summary__wrap {
  padding: 3.75rem 0 0;
}

.section__lead {
  font-size: 1rem;
  line-height: 2;
}

.summary__buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .summary__buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.summary__buttons .btn-a {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .summary__buttons .btn-a {
    max-width: 100%;
  }
}

@media screen and (min-width: 751px) {
  .feature {
    margin-top: 8.5rem;
  }
}

@media screen and (max-width: 750px) {
  .feature {
    margin-top: 4.3rem;
  }
}

.anchor__link__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 750px) {
  .anchor__link__list {
    flex-direction: column;
  }
}

.anchor__link__content {
  width: calc(100% / 3 - 40px);
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  .anchor__link__content {
    width: calc(100% / 3 - 40px);
  }
}
@media screen and (max-width: 750px) {
  .anchor__link__content {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .anchor__link__content + .anchor__link__content {
    margin-top: 1.5rem;
  }
}

.anchor__link {
  width: 100%;
  padding: 1.7rem 0 2.5em;
  color: #db1517;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  .anchor__link {
    background-color: #fff;
    border: 2px solid #db1517;
  }
}
@media screen and (max-width: 750px) {
  .anchor__link {
    background-color: #f4f4f4;
  }
}
.anchor__link::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 0.715rem;
  height: 0.715rem;
  border-bottom: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateX(-50%);
}
.anchor__link:hover {
  color: #fff;
  background-color: #db1517;
}

.feature__list__content {
  position: relative;
}

@media screen and (min-width: 751px) {
  .feature__list__content {
    padding-top: 1rem;
    margin: 5.5rem 0rem;
  }
}

@media screen and (max-width: 750px) {
  .feature__list__content {
    padding-top: 4rem;
    margin-top: 2.25rem;
  }
}

.feature__list__title {
  position: absolute;
  top: 0;
  font-size: 1.875rem;
  color: #db1517;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .feature__list__title {
    line-height: 1;
    padding-left: 3.4375rem;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__title {
    line-height: 1.3;
    padding-left: 2.66667vw;
  }
}

.feature__list__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
}
@media screen and (min-width: 751px) {
  .feature__list__inner {
    padding: 3.4375rem;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__inner {
    flex-direction: column;
    padding: 3.4375rem 2.66667vw;
  }
}

.feature__list__img {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.22) inset;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .feature__list__img {
    width: 11.25rem;
    height: 11.25rem;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__img {
    width: 7.8rem;
    height: 7.8rem;
  }
}
.feature__list__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.feature__list__img img {
  width: auto;
  height: auto;
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .feature__list__img img {
    max-width: 60%;
    max-height: 60%;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__img img {
    max-width: 70%;
    max-height: 70%;
  }
}

/* feature__list__img内の画像の表示制御 */
.feature__list__img img.sp__none {
  display: block;
}
@media screen and (max-width: 750px) {
  .feature__list__img img.sp__none {
    display: none !important;
  }
}

.feature__list__img img.pc__none {
  display: none;
}
@media screen and (min-width: 751px) {
  .feature__list__img img.pc__none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .feature__list__img img.pc__none {
    display: block !important;
  }
}

.feature__list__text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .feature__list__text {
    width: calc(100% - 1.875rem - 11.25rem);
  }
}
@media screen and (max-width: 750px) {
  .feature__list__text {
    width: 100%;
  }
}

/* ------------------------------
- about-aby3
------------------------------ */
@media screen and (min-width: 751px) {
  .about-aby3 {
    margin-top: 8.5rem;
  }
}

@media screen and (max-width: 750px) {
  .about-aby3 {
    margin-top: 4.3rem;
  }
}


/* ------------------------------
- function
------------------------------ */
@media screen and (min-width: 751px) {
  .function {
    margin-top: 8.5rem;
  }
}

@media screen and (max-width: 750px) {
  .function {
    margin-top: 4.3rem;
  }
}

/* function__diagram__wrapperで2つの画像を横並びにする */
.function__diagram__wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .function__diagram__wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* function__diagram__item内の画像スタイル */
.function__diagram__item {
  flex: 1;
  text-align: center;
  max-width: calc(100% - 1rem);
}
@media screen and (max-width: 750px) {
  .function__diagram__item {
    max-width: 100%;
    width: 100%;
  }
}

.function__diagram__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
@media screen and (max-width: 750px) {
  .function__diagram__item img {
    width: 100%;
    max-width: 100%;
  }
}

/* sp__noneとpc__noneの表示制御を確実にする */
.function__diagram__item img.sp__none {
  display: block;
}
@media screen and (max-width: 750px) {
  .function__diagram__item img.sp__none {
    display: none !important;
  }
}

.function__diagram__item img.pc__none {
  display: none;
}
@media screen and (min-width: 751px) {
  .function__diagram__item img.pc__none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .function__diagram__item img.pc__none {
    display: block !important;
  }
}

.function__list {
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}

.function__list__item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e6e6e6;
}

.function__list__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.function__list__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #db1517;
  margin-bottom: 1rem;
}

.function__list__text {
  font-size: 1rem;
  line-height: 2;
}

/* ------------------------------
- introduction-flow
------------------------------ */
@media screen and (min-width: 751px) {
  .introduction-flow {
    margin-top: 8.5rem;
  }
}

@media screen and (max-width: 750px) {
  .introduction-flow {
    margin-top: 4.3rem;
  }
}

.introduction-flow__diagram {
  margin-top: 3rem;
  text-align: center;
}

.introduction-flow__diagram img {
  max-width: 100%;
  height: auto;
}

.caseStudy {
  background-color: #f7f7f7;
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .caseStudy {
    padding: 10.5rem 0 9.25rem;
  }
}
@media screen and (max-width: 750px) {
  .caseStudy {
    padding: 5.75rem 0 3.75rem;
  }
}
.caseStudy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
}
@media screen and (min-width: 751px) {
  .caseStudy::before {
    border-top: 4.5rem solid #fff;
  }
}
@media screen and (max-width: 750px) {
  .caseStudy::before {
    border-top: 2.35rem solid #fff;
  }
}

.trial__link {
  width: calc(100% - 20px);
  margin: 4rem auto 0;
  max-width: 960px;
}

.btn-a {
  position: relative;
  display: block;
  background: linear-gradient(to bottom, #db1517, #a50c13);
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}
.btn-a::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
}
.btn-a:hover {
  background: linear-gradient(to top, #db1517, #a50c13);
}
@media screen and (min-width: 751px) {
  .btn-a {
    font-size: calc(1rem + 8px);
    padding: 2rem 1rem;
    border: solid 0.5rem #fff;
  }
  .btn-a::after {
    top: -0.5rem;
    left: -0.5rem;
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    border: solid 0.2rem #db1517;
  }
}
@media screen and (max-width: 750px) {
  .btn-a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border: solid 0.3rem #fff;
    min-height: 24vw;
  }
  .btn-a::after {
    top: -0.3rem;
    left: -0.3rem;
    width: calc(100% + 0.6rem);
    height: calc(100% + 0.6rem);
    border: solid 0.1rem #db1517;
  }
  .btn-a .dot {
    display: none;
  }
}