/*=====================================

【SMP】

=====================================*/

/*=====================================
初期設定
=====================================*/
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  color: #383838;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
body {
  background: var(--wht);
}

/*=====================================
テキスト・カラー指定
=====================================*/
:root {
  --c: center;
  --r: right;
  --tl: clamp(20px, 5.13vw, 24px);
  --tm: clamp(16px, 4.1vw, 20px);
  --nm: clamp(13px, 3.33vw, 16px);
  --ts: clamp(9px, 2.82vw, 11px);
  --wht: #fff;
  --sky: #17b8d2;
  --nvy: #031a6b;
  --drk: #111b48;
  --pgry: #f0f2f2;
  --grad: linear-gradient(to right, #55b1ce, #0a1c69);
  --grad-reverse: linear-gradient(to left, #55b1ce, #0a1c69);
}
a {
  color: #0554a3;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.c-drk {
  color: var(--drk);
}
.c-wht {
  color: var(--wht);
}
.txt-c {
  text-align: var(--c) !important;
}

.spno {
  display: none !important;
}
/*anime*/
@-webkit-keyframes cmnAnm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes cmnAnm {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anm.fdin,
.anm2.fdin {
  opacity: 0;
}
.anm.fdin.scrin,
.anm2.fdin.scrin {
  -webkit-animation: cmnAnm 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67) 0s 1 forwards;
  animation: cmnAnm 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67) 0s 1 forwards;
}

/*=====================================
コンテンツ
=====================================*/
main p,
main li {
  font-size: var(--nm);
  line-height: 2;
}

/*MV*/
.mv {
  padding-bottom: 17.5%;
  background: url("../img/mv-sp.webp") no-repeat center top / 100% auto;
  -webkit-animation: mvAnm 1s ease-in-out both;
  animation: mvAnm 1s ease-in-out both;
  aspect-ratio: 1 / 2.1;
}
.mv__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 1/1.4564;
}
@keyframes mvAnm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv-ttl {
  margin: 0;
  padding: 0 4%;
}
.mv-mmc {
  display: block;
  width: 98%;
  margin: 0 auto;
  -webkit-animation: mvAnm 1s ease-in-out 0.2s both;
  animation: mvAnm 1s ease-in-out 0.2s both;
}
.hdrlogo {
  display: block;
  padding: 5% 4%;
}
.logo-mmc {
  display: block;
  width: 34%;
  aspect-ratio: 500/64;
}
.mv-catch {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 3% 5%;
}
.mv-g {
  display: flex;
  gap: 8px;
}
.mv-g li {
  flex-basis: calc(100 / 3);
}
.mv-g li img {
  -webkit-animation: cmnAnm 1s ease-in-out both;
  animation: cmnAnm 1s ease-in-out both;
}
.mv-g li:nth-child(1) img {
  animation-delay: 0.7s;
}
.mv-g li:nth-child(2) img {
  animation-delay: 1s;
}
.mv-g li:nth-child(3) img {
  animation-delay: 1.3s;
}
.mv__inner .notes {
  padding-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
  color: #727272;
  font-size: clamp(8px, 1.92vw, 10px);
  line-height: 1.2;
}
.btnCmn {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  display: block;
  width: 79.48vw;
  margin: 7% auto 0;
  padding: 5%;
  background-image: linear-gradient(to right, #17b8d2, #2cb5e5);
  border-radius: 60px;
  color: var(--wht);
  font-size: var(--tm);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.mv .btnCmn {
}
.btnCmn::after {
  position: absolute;
  top: 50%;
  right: 8%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--wht);
  border-right: 2px solid var(--wht);
  transform: rotate(45deg) translateY(-50%);
}
.btnCmn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #78def9;
  transition: 0.3s;
  -webkit-animation: shinyshiny 5s ease-in-out infinite;
  animation: shinyshiny 5s ease-in-out infinite;
}
@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* promise */
.promise {
  background: var(--grad);
  padding: 11% 4%;
}
.promise__ttl {
  width: 62%;
  margin: 0 auto 10%;
  & img {
  }
}
.promise__box {
  background: var(--grad-reverse);
  padding-block: 6% 12%;
  text-align: center;
  position: relative;
  z-index: 0;
  margin-bottom: 7%;
}
.promise__box::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: var(--wht);
  z-index: -1;
}
.promise__list {
  counter-reset: count;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3.7vw, 28px);
}
.promise__item {
  counter-increment: count;
  color: #131b45;
  font-size: clamp(17px, 4.5vw, 35px);
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  display: flex;
  flex-direction: column;
}
.promise__item::before {
  content: "- " counter(count, decimal-leading-zero) " -";
  color: var(--sky);
  font-size: 91%;
}
.promise__txt {
  color: var(--wht);
  text-align: center;
}

/* about */
.about {
  padding-top: 12%;
}
.about .ttl {
  padding: 0 7%;
  color: var(--drk);
  font-size: var(--nm);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.about .ttl small {
  display: block;
  padding: 10px 0;
  font-size: var(--ts);
}
.mmc {
  display: inline-block;
  aspect-ratio: 534/52;
  width: 68%;
}
.about__inner {
  transform: translateY(-6vw);
  opacity: 0;
}
.about__inner.scrin {
  -webkit-animation: abAnm 0.3s ease-out both;
  animation: abAnm 0.3s ease-out both;
}
@-webkit-keyframes abAnm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-8vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-6vw);
  }
}
@keyframes abAnm {
  0% {
    opacity: 0;
    transform: translateY(-8vw);
  }
  100% {
    opacity: 1;
    transform: translateY(-6vw);
  }
}
.about-ph {
  display: block;
  width: 100%;
  aspect-ratio: 780/610;
}
.about__txt {
  overflow: hidden;
  width: 100%;
  background: url("../img/ic-mm.svg") no-repeat left -56vw top / 100% auto;
  font-size: var(--nm);
  transform: translateY(-10vw);
}
.about__tags {
  display: flex;
  justify-content: center;
  --gap: clamp(15px, 4vw, 30px);
  gap: var(--gap);
  margin-bottom: 6%;
  width: 90%;
  margin-inline: auto;
}
.about__tag {
  background-image: var(--grad);
  width: calc((100% - var(--gap)) / 2);
  color: var(--wht);
  font-size: clamp(27px, 7.2vw, 53px);
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
.about p {
  padding: 16% 7% 0;
  font-size: var(--nm);
}
.recommend {
  padding: 10.5% 5% 12.5%;
  background-color: var(--pgry);
}
.bg-drk {
  padding: 10.5% 5% 15%;
  background-color: var(--drk);
}
.bg-pgry {
  padding: 10.5% 5% 12.5%;
  background-color: var(--pgry);
}
.bg-wht {
  padding: 10.5% 5% 15%;
  background-color: var(--wht);
}
.cmn-ttl {
  margin-bottom: 7%;
  color: var(--drk);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 600;
  text-align: center;
}
.bg-drk .cmn-ttl {
  color: var(--wht);
}
.cmn-ttl small {
  display: block;
  margin-bottom: 5px;
  color: var(--sky);
  font-family: "Barlow", sans-serif;
  font-size: clamp(32px, 8.6vw, 40px);
}
.lead {
  margin-top: -2%;
  margin-bottom: 5%;
  color: #e0e0e0;
  text-align: center;
}
.whtBox {
  padding: 8% 5%;
  background-color: var(--wht);
}
.whtBox + .whtBox {
  margin-top: 3%;
}

/* user */
.user__heading {
  color: var(--wht);
  background-image: var(--grad);
  font-size: calc(1.15 * var(--tm));
  padding: 1.4em;
  line-height: 1.8;
  margin-bottom: clamp(36px, 9.6vw, 72px);
}
.user__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  --gap: var();
  --gap: clamp(10px, 2.6vw, 15px);
  gap: var(--gap);
  width: 90%;
  margin-inline: auto;
  margin-bottom: 10%;
}
.user__item {
  width: calc((100% - 2 * var(--gap)) / 4);
  height: auto;
  margin-top: 16px;
}
.user__item:nth-child(2) {
  width: 14%;
}
.user__item:nth-child(9) {
  width: 12%;
  margin: 8px;
}
.user__item:nth-child(10) {
  width: 20%;
  margin-left: 8px;
  margin-right: 8px;
}
.user__item:nth-child(11) {
  width: 9%;
}
.chart {
  margin-bottom: 3%;
}
.line-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7%;
  text-align: center;
  color: var(--drk);
  font-weight: 600;
}
.line-ttl > span {
  display: inline-block;
  padding: 0 2px 4px;
  background-image: linear-gradient(to right, var(--drk) 0%, var(--drk) 100%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  transition: all 0.6s ease-in-out;
  font-size: var(--tl);
  position: relative;
}
.line-ttl.scrin > span {
  background-size: 100% 2px;
}
.line-ttl > span::before {
  content: "";
  width: 2px;
  height: calc(0.5 * var(--tl));
  background-color: var(--drk);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.line-ttl > span::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--drk);
  border-radius: 100vh;
  position: absolute;
  top: calc(100% + 0.5 * var(--tl));
  left: 50%;
  transform: translateX(-50%);
}
.line-ttl > span > span {
  color: var(--sky);
}

/* problem */
.problem {
  /* padding: 12.5% 0 6%; */
  padding-bottom: 6%;
  /* background-image: linear-gradient(to bottom, var(--pgry) 0%, var(--pgry) 94vw, var(--wht) 94vw, var(--wht) 100%); */
  /* background-image: linear-gradient(to bottom, var(--pgry) 0%, var(--pgry) 210vw, var(--wht) 210vw, var(--wht) 100%); */
}
.problem__inner {
  padding-top: 12.5%;
  background-image: linear-gradient(to bottom, var(--pgry) 0%, var(--pgry) 80%, var(--wht) 80%, var(--wht) 100%);
}
.p-list {
  width: 90%;
  max-width: 461px;
  margin: 0 auto 5%;
  margin: 0 auto 19%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--tl);
}
.p-list li {
  color: var(--drk);
  color: #131b45;
  padding: 12% 0.5em 0.5em 16%;
  font-weight: bold;
  line-height: 1.5;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 643 / 195;
  width: 100%;
}
.p-list li:nth-child(1) {
  background-image: url(../img/problem-01@2x.webp);
}
.p-list li:nth-child(2) {
  background-image: url(../img/problem-02@2x.webp);
}
.p-list li:nth-child(3) {
  background-image: url(../img/problem-03@2x.webp);
}
.p-list li:nth-child(4) {
  background-image: url(../img/problem-04@2x.webp);
}
.p-list li:nth-child(5) {
  background-image: url(../img/problem-05@2x.webp);
}
/*
.p-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  margin-right: 7px;
  border-left: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(-45deg) translate(3px, -2px);
}
*/
.p-list li mark {
  font-size: 142%;
  background: linear-gradient(to bottom, transparent 70%, #fdd57f 70%);
}
.p-img {
  display: block;
  width: 64%;
  margin: 0 auto 5%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.p-ranking {
  display: block;
  width: 90%;
  margin: 0 auto 5%;
  aspect-ratio: 702/420;
}
.arrow {
  display: block;
  width: 52.5%;
  margin: 8% auto;
}
.sky-ttl {
  margin-bottom: 5%;
  color: var(--sky);
  font-size: var(--tl);
  font-weight: 600;
  text-align: center;
}
.catch {
  margin-bottom: 5%;
  padding-top: 4%;
  color: var(--drk);
  font-size: var(--tm);
  font-weight: 600;
  text-align: center;
}
.catch img {
  vertical-align: text-bottom;
}
.catch strong {
  display: block;
  margin-top: 3%;
}
.point {
  padding-bottom: 6.5%;
}
.point-lead {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 28% 12% 10%;
  background: url("../img/ic-mm.svg") no-repeat left -56vw top / 100% auto;
}
.ptBox {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.ptTtl {
  order: 1;
  margin-bottom: 5%;
  color: var(--nvy);
  font-size: var(--tl);
  font-weight: 600;
  line-height: 1.5;
}
.ptTtl::before {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  background: url("../img/ic-tri.svg") no-repeat left top / 100% auto;
  transform: translateX(-12px);
}
.ptTtl span {
  display: block;
  margin-bottom: 5px;
  color: var(--drk);
  font-family: "Barlow", sans-serif;
  font-size: var(--tm);
}
.ptBox img {
  order: 2;
  margin-bottom: 4%;
}
.ptBox + .ptBox {
  margin-top: 10%;
}
.ptBox p {
  order: 3;
}
.books {
  padding: 3% 0 4%;
}
.books img {
  display: block;
  width: 42.7%;
  margin: 0 auto 3%;
  aspect-ratio: 313/500;
}
.books figcaption {
  color: var(--wht);
  font-size: var(--nm);
  line-height: 2;
  text-align: center;
}
.books figcaption small {
  font-size: clamp(12px, 3.2vw, 14px);
}
.books figcaption strong {
  display: block;
  margin-bottom: 5px;
  font-size: var(--tl);
  font-weight: 600;
}
.comparison {
  padding: 12.5% 5%;
}
.br-ttl {
  margin-bottom: 5%;
  color: var(--drk);
  font-size: var(--tm);
  font-weight: 600;
  text-align: center;
}
.br-ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.br-ttl span::before,
.br-ttl span::after {
  content: "";
  width: 4px;
  height: var(--tl);
  display: inline-block;
  border-top: 1px solid var(--drk);
  border-bottom: 1px solid var(--drk);
}
.br-ttl span::before {
  border-left: 1px solid var(--drk);
  margin-right: 10px;
}
.br-ttl span::after {
  border-right: 1px solid var(--drk);
  margin-left: 10px;
}
.voice__inner {
  padding: 2% 2.5% 0;
}
.voiceBox img {
  margin-bottom: 4%;
}
.voiceBox p {
  padding: 0 2.6%;
}
.voiceBox + .voiceBox {
  margin-top: 10%;
}
.staff {
  padding: 12.5% 0;
  background-image: linear-gradient(to top, var(--pgry) 0%, var(--pgry) 88vw, var(--wht) 88vw, var(--wht) 100%);
}
.planner {
  margin: 0 0 12.5%;
}
.ceo {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 5% 0 0;
  background: url("../img/ic-mm.svg") no-repeat left -56vw top / 100% auto;
}
.ceo figure {
  display: block;
  width: 56%;
  margin: 0 auto 2%;
  padding: 0;
}
.ceo figure img {
  width: 100%;
  margin-bottom: 6%;
  aspect-ratio: 440/586;
  object-fit: cover;
}
.ceo figure figcaption {
  color: var(--drk);
  font-size: var(--tm);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.ceo figure figcaption small {
  font-size: var(--nm);
}
.ceo p {
  width: 80%;
  margin: 0 auto;
}
.stepBox {
  position: relative;
  padding: 5%;
  background-color: var(--wht);
}
.step .stepBox:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  top: -6vw;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 6vw;
  background-color: var(--wht);
}
.step .stepBox:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 3.4vw;
  background-color: var(--drk);
}
.stepBox .ttl {
  display: flex;
  margin-bottom: 4%;
  color: var(--drk);
  font-size: var(--tm);
  font-weight: 600;
  align-items: center;
}
.stepBox .ttl img {
  width: 25%;
  margin-right: 20px;
  aspect-ratio: 4/3;
}
.stepBox + .stepBox {
  margin-top: 6vw;
}
.faqBox {
  margin: 0 auto 4%;
  padding: 2.5% 6% 2.5% 3%;
  background: var(--pgry);
  border-radius: 24px;
}
.faq {
  padding-bottom: 1%;
}
.ac-menu label {
  display: flex;
  align-items: center;
}
.ac-menu label i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: var(--sky);
  background-image: linear-gradient(135deg, #17b8d2, #2cb5e5);
  border-radius: 50%;
  color: var(--wht);
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.ac-menu label span {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--drk);
  font-size: var(--nm);
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
}
.ac-menu .accordion + label span::after {
  content: "";
  flex-shrink: 0;
  margin-top: -3px;
  margin-left: 10px;
  display: block;
  width: 9px;
  height: 9px;
  border-bottom: 2px solid var(--drk);
  border-left: 2px solid var(--drk);
  transform: rotate(-45deg);
  transition: 0.3s;
}
.ac-menu .accordion:checked + label span::after {
  transform: rotate(135deg);
}
.ac-menu input.accordion {
  display: none;
}
.ac-menu div.ac-cont {
  display: block;
  overflow-y: hidden;
  margin: 0;
  height: 0;
  transition: all 0.2s;
}
.ac-menu div.ac-cont p {
  position: relative;
  width: 100%;
  padding-left: 40px;
}
.ac-menu div.ac-cont p::before {
  content: "A";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: var(--drk);
  border-radius: 50%;
  color: var(--wht);
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.ac-menu select:focus {
  outline: none;
}
.ac-menu .accordion:checked + label + div.ac-cont {
  padding-top: 3%;
  height: auto;
}
.btn-line {
  display: block;
  margin: 10px auto;
  padding: 7px;
  background-color: #00b900;
  border-radius: 30px;
  color: var(--wht);
  text-align: center;
}

/*=====================================
フッター
=====================================*/
footer {
  padding: 12.5% 0;
  background-color: var(--pgry);
}
footer .ttl {
  margin-bottom: 3%;
  color: var(--drk);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 600;
  text-align: center;
}
.ftr-logo {
  display: block;
  width: 46.8%;
  margin: 0 auto 14px;
  aspect-ratio: 500/64;
}
.ftr-ic {
  display: inline-block;
  width: 17px;
  margin-right: 7px;
  aspect-ratio: 1/1;
  vertical-align: middle;
}
footer ul {
  padding: 3% 10%;
}
footer ul li {
  padding: 1% 0;
  color: #383838;
  font-size: var(--ts);
  line-height: 1.8;
}
footer p {
  padding: 3% 10%;
  color: #383838;
  font-size: var(--ts);
  line-height: 1.8;
}
.copyright {
  margin-top: 2%;
  padding-top: 5%;
  border-top: 1px solid rgba(178, 178, 178, 0.5);
  text-align: center;
}

/*=====================================
ポップオーバー
=====================================*/

.popover {
  width: min(82%, 500px);
  border-radius: 20px;
  padding: 20px;
}

.popover::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.popover__close {
  --sz: var(--tm);
  width: var(--sz);
  aspect-ratio: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
}

.popover__heading {
  font-weight: bold;
  text-align: center;
  font-size: var(--tm);
  margin-bottom: 0.5em;
}

.popover__content {
  max-height: min(82vw, 400px);
  overflow-y: scroll;
}

.popover__content * {
  padding: 0;
  font-size: var(--ts);
  line-height: 1.5;
}

.popover th,
.popover td {
  display: block;
  margin-bottom: 1em;
}

.popover__content > p {
  margin-bottom: 1em;
}

.popover__close::before,
.popover__close::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.popover__close::before {
  transform: rotate(45deg);
}

.popover__close::after {
  transform: rotate(-45deg);
}

/*=====================================
フローティングボタン
=====================================*/
.btnFollow {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 489px;
  max-width: 95%;
  z-index: 10;
}
