@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0 auto;
  width: 100%;
  max-width: 64rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #242424;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.inner {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 672px;
  box-sizing: content-box;
}

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

.show-mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .show-mobile {
    display: block;
  }
}

.js-fadeIn {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.2s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .js-fadeIn {
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.7s ease;
  }
}

.js-fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

span.bold {
  font-weight: 600;
}

span.red {
  color: #dc2929;
}

span.yellow {
  color: #ffec16;
}

.underBer {
  padding-bottom: 1rem;
  border-bottom: 2px solid #09216a;
}

/*-------------------------------
arrow-bottom
-------------------------------*/
.arrow-bottom {
  margin: 0 auto;
  width: 13.1rem;
  height: 3.75rem;
  overflow: hidden;
}

.arrow-bottom__wrap {
  animation: arrow-bottom 1.5s infinite linear 1s both;
}

.arrow-bottom img {
  aspect-ratio: 262/75;
}

@keyframes arrow-bottom {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
/*-------------------------------
back-yellow
-------------------------------*/
span.back-yellow {
  padding-bottom: 0.4rem;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  background: rgba(255, 236, 22, 0.6);
  background: linear-gradient(180deg, transparent 0%, transparent 42%, rgba(255, 236, 22, 0.6) 42%, rgba(255, 236, 22, 0.6) 100%);
  -webkit-clip-path: inset(0% 100% 0% 0%);
          clip-path: inset(0% 100% 0% 0%);
}

span.back-yellow.active {
  animation: slide-in 0.3s ease-out forwards;
}

@keyframes slide-in {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
/*-------------------------------
CTA-btn
-------------------------------*/
.CTA-btn {
  margin: 0 auto;
  max-width: 50rem;
  animation: CTA-btn 0.9s infinite linear 1s both;
}

.CTA-btn img {
  aspect-ratio: 673/170;
}

@keyframes CTA-btn {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
/*-------------------------------
footer
-------------------------------*/
.footer {
  margin-top: 8.6rem;
  padding-bottom: 4.1rem;
}

.footer__copyright {
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

/*-------------------------------
monitor
-------------------------------*/
.monitor {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}

.monitor__fz-big {
  font-size: 3.2rem;
  line-height: 1.45;
  font-weight: 600;
}

.monitor__fz-big.back-yellow {
  background: rgba(255, 236, 22, 0.6);
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(255, 236, 22, 0.6) 55%, rgba(255, 236, 22, 0.6) 82%, transparent 82%, transparent 100%);
}

/*-------------------------------
sec1
-------------------------------*/
.sec1__FV-img img {
  aspect-ratio: 750/963;
}

.sec1__free-list {
  margin-top: -15.5%;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.sec1__free-item {
  max-width: 39.7333333333%;
}

.sec1__free-item img {
  aspect-ratio: 298/336;
}

/*-------------------------------
sec10
-------------------------------*/
.sec10 {
  margin-top: 4.1rem;
}

.sec10__text1 {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.sec10__text2 {
  margin-top: 2.8rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
  text-align: center;
}

.sec10__text2 .back-yellow {
  padding-bottom: 0;
  background: rgba(255, 236, 22, 0.6);
  background: linear-gradient(180deg, transparent 0%, transparent 49%, rgba(255, 236, 22, 0.6) 49%, rgba(255, 236, 22, 0.6) 98%, transparent 98%, transparent 100%);
}

.sec10__text2 .back-yellow:first-child {
  background: none;
  position: relative;
}

.sec10__text2 .back-yellow:first-child::after {
  content: "";
  width: 85%;
  height: 1.3rem;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(255, 236, 22, 0.6);
}

/*-------------------------------
sec2
-------------------------------*/
.sec2 {
  margin-top: 2rem;
}

.sec2__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.sec2__title.underBer {
  padding-bottom: 0.5rem;
}

.sec2__img1 {
  margin-top: 3rem;
}

.sec2__img1 img {
  aspect-ratio: 672/419;
}

.sec2__text1 {
  margin-top: 3rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.sec2__text2 {
  margin-top: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec2__text2 .red {
  font-weight: 600;
}

.sec2__arrow {
  margin: 0 auto;
  margin-top: 2.4rem;
  width: 14.3rem;
}

.sec2__arrow img {
  aspect-ratio: 286/127;
}

.sec2__text3 {
  margin-top: 3rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec2__text4 {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec2__text4 .red {
  font-weight: 600;
}

.sec2__img2 {
  margin-top: 2.5rem;
}

.sec2__img2 img {
  aspect-ratio: 672/460;
}

.sec2__text5 {
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.sec2__text6 {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.sec2__arrow-bottom {
  margin-top: 5.7rem;
}

/*-------------------------------
sec3
-------------------------------*/
.sec3 {
  margin-top: 6rem;
}

.sec3__title {
  padding: 1.1rem 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #09216a;
}

.sec3__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.sec3__item {
  padding: 0 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #09216a;
}

.sec3__item-title {
  padding: 0.4rem 2.5rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background-color: #09216a;
}

.sec3__item-text {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.sec__item-img {
  margin-top: 0.7rem;
}

.sec__item-img img {
  aspect-ratio: 552/344;
}

.sec3__text1 {
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.sec3__text2 {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.sec3__text3 {
  margin-top: 1.1rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec3__text3 .red {
  font-weight: 600;
}

.sec3__img1 {
  margin-top: 2.5rem;
}

.sec3__img1 img {
  aspect-ratio: 672/419;
}

.sec3__text4 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec3__text5 {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec3__text5 .red {
  font-weight: 600;
}

.sec3__text6 {
  margin-top: 5.3rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.sec3__img2 {
  margin-top: 3rem;
}

.sec3__img2 img {
  aspect-ratio: 668/419;
}

.sec3__text7 {
  margin-top: 2.3rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec3__text7 .red {
  font-weight: 600;
}

.sec3__arrow-bottom {
  margin-top: 5.5rem;
}

/*-------------------------------
sec4
-------------------------------*/
.sec4 {
  margin-top: 6rem;
}

.sec4__bg {
  padding: 0 2rem 2.5rem;
  background-color: #e5eaee;
}

.sec4__title {
  padding-inline: 0.4rem;
  position: relative;
  top: -1rem;
}

.sec4__title img {
  aspect-ratio: 574/248;
}

.sec4__img {
  margin-top: -1.3rem;
}

.sec4__img img {
  aspect-ratio: 594/460;
}

.sec4__text1 {
  margin-top: 2.5rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec4__img1 {
  margin-top: 3rem;
}

.sec4__img1 img {
  aspect-ratio: 590/224;
}

.sec4__text2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec4 .red {
  font-weight: 600;
}

.sec4__text3 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec4__arrow-bottom {
  margin-top: 5.3rem;
}

.sec4__img2 {
  margin-top: 6.1rem;
}

.sec4__img2 img {
  aspect-ratio: 672/1059;
}

.sec4__text4 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec4__img3 {
  margin: 0 auto;
  margin-top: 0.8rem;
  padding-inline: 5.8rem;
  max-width: 48rem;
}

.sec4__img3 img {
  aspect-ratio: 441/168;
}

.sec4__text5 {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec4__text6 {
  margin-top: 2.2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

/*-------------------------------
sec5
-------------------------------*/
.sec5 {
  margin-top: 6rem;
}

.sec5__title1 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec5__img1 {
  margin-top: 3.2rem;
  padding-inline: 2rem;
}

.sec5__img1 img {
  aspect-ratio: 592/1741;
}

.sec5__text1 {
  margin-top: 2.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.sec5 .red {
  font-weight: 600;
}

.sec5__arrow-bottom1 {
  margin-top: 5.5rem;
}

.sec5__title2 {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec5__img2 {
  margin-top: 3.6rem;
  padding-inline: 2rem;
}

.sec5__img2 img {
  aspect-ratio: 592/1296;
}

.sec5__arrow-bottom2 {
  margin-top: 8.5rem;
}

.sec5__title3 {
  margin-top: 4.4rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.sec5__img3 {
  margin: 0 auto;
  margin-top: 3.7rem;
  padding-inline: 5.1rem 1.9rem;
  max-width: 48rem;
}

.sec5__img3 img {
  aspect-ratio: 530/473;
}

.sec5__text2 {
  margin-top: 4.5rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec5__video {
  margin-top: 1.7rem;
  position: relative;
}

.sec5__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 674/419;
}

.sec5__video-btn {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 7.5rem;
  outline: none;
}

.sec5__arrow-bottom3 {
  margin-top: 6rem;
}

/*-------------------------------
sec6
-------------------------------*/
.sec6 {
  margin-top: 5rem;
}

.sec6 .red {
  font-weight: 600;
}

.sec6__text1 {
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.sec6__title {
  margin-top: 2.6rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.sec6__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sec6__item {
  padding: 2.4rem 2rem 2.6rem;
  background-color: #f1f6f9;
}

.sec6__item-title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.sec6__item-title .back-yellow {
  padding-bottom: 0;
}

.sec6__item-img {
  margin-top: 1.5rem;
  padding-inline: 1rem;
}

.sec6__item-text {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec6__item2-img2 {
  margin-top: 1.4rem;
  padding: 1.1rem;
  background-color: #fff;
}

.sec6__item2-text2 {
  margin-top: 2.3rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec6__item3-img2 {
  margin-top: 2rem;
}

.sec6__item3-text2 {
  margin-top: 2.6rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

/*-------------------------------
sec7
-------------------------------*/
.sec7 {
  margin-top: 4.4rem;
}

.sec7 .red {
  font-weight: 600;
}

.sec7__text1 {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec7__text2 {
  margin-top: 0.3rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.sec7__img1 {
  margin-top: 4.2rem;
}

.sec7__img1 img {
  aspect-ratio: 672/419;
}

.sec7__monitor1 {
  margin-top: 3rem;
}

.sec7__btn {
  margin-top: 3rem;
}

.sec7__text3 {
  margin-top: 2.7rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec7__img2 {
  margin-top: 3rem;
}

.sec7__img2 img {
  aspect-ratio: 672/419;
}

.sec7__img3 {
  margin-top: 5.1rem;
}

.sec7__img3 img {
  aspect-ratio: 672/582;
}

.sec7__text4 {
  margin-top: 0.9rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
}

.sec7__text5 {
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.sec7__img4 {
  margin-top: 3.7rem;
}

.sec7__img4 img {
  aspect-ratio: 672/419;
}

.sec7__text6 {
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.sec7__monitor2 {
  margin-top: 3.8rem;
}

.sec7__text7 {
  margin-top: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.sec7__text8 {
  margin-top: 6.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.sec7__arrow-bottom1 {
  margin-top: 2.7rem;
}

.sec7__img5 {
  margin-top: 4.6rem;
  padding-inline: 1.9rem;
}

.sec7__img5 img {
  aspect-ratio: 592/1296;
}

.sec7__text9 {
  margin-top: 5rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.sec7__arrow-bottom2 {
  margin-top: 3.2rem;
}

/*-------------------------------
sec8
-------------------------------*/
.sec8 {
  margin-top: 3.8rem;
}

.sec8 .red {
  font-weight: 600;
}

.sec8__title img {
  aspect-ratio: 672/130;
}

.sec8__text1 {
  margin-top: 2.3rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec8__img1 {
  margin-top: 2.3rem;
}

.sec8__img1 img {
  aspect-ratio: 672/419;
}

.sec8__text2 {
  margin-top: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec8__text3 {
  margin-top: 8.3rem;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 600;
  color: #dc2929;
  text-align: center;
}

.sec8__img2 {
  margin-top: 2.1rem;
}

.sec8__img2 img {
  aspect-ratio: 672/419;
}

.sec8__monitor {
  margin-top: 5.9rem;
}

.sec8__img3 {
  margin-top: 3.4rem;
}

.sec8__img3 img {
  aspect-ratio: 672/419;
}

.sec8__text4 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  text-align: center;
}

.sec8__arrow-bottom1 {
  margin-top: 3.3rem;
}

.sec8__btn {
  margin-top: 1.9rem;
}

.sec8__text5 {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.sec8__caution {
  margin-top: 3.3rem;
  margin-inline: -0.2rem;
  padding-block: 3rem 3.7rem;
  background-image: url(../img/sec8-bg.webp);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 19.2rem;
  text-align: center;
}

.sec8__caution-text1 {
  font-size: 1.7rem;
  line-height: 1.4705882353;
  font-weight: 700;
  color: #dc2929;
}

.sec8__caution-text2 {
  margin-top: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.sec8__arrow-bottom2 {
  margin-top: 5rem;
}

.sec8__text6 {
  margin-top: 1.7rem;
  font-size: 2.2rem;
  line-height: 1.4090909091;
  font-weight: 700;
  text-align: center;
}

.sec8__text6 .back-yellow {
  padding-bottom: 0;
}

.sec8__img4 {
  margin-top: 2.3rem;
}

.sec8__img4 img {
  aspect-ratio: 672/488;
}

/*-------------------------------
sec9
-------------------------------*/
.sec9 {
  margin-top: 4.8rem;
  padding-block: 5.8rem 6.3rem;
  background-color: #f1f1f1;
}

.sec9__title {
  font-weight: 600;
  text-align: center;
}

.sec9__sub-title {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sec9__main-title {
  margin-top: 0.5rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}

.sec9__list {
  margin-top: 4.3rem;
  display: flex;
  flex-direction: column;
  gap: 4.3rem;
}

.sec9__item-title {
  padding-block: 1.5rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #09216a;
}

.sec9__item-img img {
  aspect-ratio: 670/310;
}

.sec9__item-dl dt,
.sec9__item-dl dd {
  padding: 1.1rem 1.8rem;
}

.sec9__item-dl dt {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  background-color: #e0eefa;
}

.sec9__item-dl dd {
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: #fff;
}
/*# sourceMappingURL=style.css.map */
