@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
.pc_only:has(.breadcrumb),
.sp_only:has(.breadcrumb) {
  display: none !important;
}
.l-main:has(.p-page-fitplus) {
  margin: 0;
}
.p-page-fitplus {
  overflow: hidden;
}
.p-page-fitplus .ff-Roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* ------- Animation ------- */
.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
}

/* hero area */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ripple {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes dropSlideIn {
  from {
    transform: translateY(-80%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.p-hero,
.p-hero:not(.animation-finished) .p-hero__title,
.p-hero:not(.animation-finished) .p-hero__product,
.p-hero:not(.animation-finished) .fade-up,
.p-hero:not(.animation-finished) .p-hero__message,
.p-hero:not(.animation-finished) .p-hero__message::before,
.p-hero:not(.animation-finished) .p-hero__message::after {
  opacity: 0;
}
.p-hero.is-animated,
.p-hero.animation-finished {
  opacity: 1;
}
.p-hero.is-animated::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(240, 248, 255, 0.6);
  transform: translate(-50%, -50%);
  transform-origin: center;
  opacity: 0;
  z-index: -1;
  animation: ripple 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
@media screen and (max-width:740px) {
  .p-hero.is-animated::before {
    width: max(calc(414 / 414 * 100vw), 414px);
    height: max(calc(414 / 414 * 100vw), 414px);
  }
}
.p-hero.is-animated .p-hero__title {
  animation: fadeIn 0.7s ease-out 1.0s forwards;
}
.p-hero.is-animated .p-hero__product {
  animation: softZoomIn 0.7s ease-out 1.0s forwards;
}
.p-hero.is-animated .fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}
.p-hero.is-animated .p-hero__eyebrow.fade-up {
  animation-delay: 1.4s;
}
.p-hero.is-animated .p-hero__pill.fade-up {
  animation-delay: 1.7s;
}
.p-hero.is-animated .p-hero__tags.fade-up {
  animation-delay: 2.0s;
}
.p-hero.is-animated .p-hero__note.fade-up {
  animation-delay: 2.3s;
}
.p-hero.is-animated .p-hero__message::before {
  animation: dropSlideIn 1s ease-out 2.5s forwards;
}
.p-hero.is-animated .p-hero__message::after {
  animation: dropSlideIn 1s ease-out 2.3s forwards;
}
.p-hero.is-animated .p-hero__message {
  animation: fadeIn .8s ease-out 2.7s forwards;
}

/* ------- First view ------- */
.p-hero {
  padding: 80px 15px 70px;
  background: url(./img/hero_bg.png) no-repeat center / 100% 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-hero__inner {
  margin: 0 auto;
  max-width: 1296px;
  min-height: 738px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px 0;
}
.p-hero__content {
  order: 2;
  width: calc(100% - min(calc(587 / 1400 * 100vw), 587px));
  text-align: center;
}
.p-hero__eyebrow {
  margin: 0 0 20px;
  font-size: min(calc(20 / 1400 * 100vw), 20px);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .06em;
  color: #555;
}
.hero__eyebrow-strong {
  font-size: min(calc(32 / 1400 * 100vw), 32px);
  font-weight: bold;
  line-height: calc(48/32);
  color: #2DA7E2;
}
.p-hero__pill {
  margin: 0 auto 10px;
  padding: 4px 31px;
  width: fit-content;
  font-size: min(calc(23 / 1400 * 100vw), 23px);
  font-weight: bold;
  color: #2DA7E2;
  border-radius: 999px;
  background: #fff;
}
.p-hero__title {
  font-size: min(calc(83 / 1400 * 100vw), 83px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: bold;
  white-space: pre;
  color: #22A6E6;
  position: relative;
}
.p-hero__title-sub {
  margin: 10px 0 33px;
  display: block;
  font-size: min(calc(21 / 1400 * 100vw), 21px);
  font-weight: bold;
  line-height: 1;
  color: #2DA7E2;
}
.p-hero__tags {
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 17px;
}
.p-hero__tag {
  padding: 4px 10px;
  min-width: 200px;
  font-size: 16px;
  font-weight: 700;
  color: #2DA7E2;
  border: 1px solid #2DA7E2;
  border-radius: 4px;
  background: transparent;
}
.p-hero__note {
  font-size: 13px;
  font-weight: 500;
  color: #707070;
}
.p-hero__message {
  order: 3;
  margin: 0 auto;
  padding: 15px 20px;
  width: 100%;
  max-width: 1000px;
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .5);
  position: relative;
}
.p-hero__message::before,
.p-hero__message::after {
  position: absolute;
  content: "";
  right: -65px;
  z-index: 1;
  width: 131px;
  background: no-repeat center / contain;
}
.p-hero__message::before {
  bottom: 80px;
  height: 170px;
  background-image: url(./img/drop1.png);
}
.p-hero__message::after {
  bottom: 5px;
  height: 75px;
  background-image: url(./img/drop2.png);
}
.p-hero__message-text {
  font-size: 25px;
  line-height: calc(50/25);
  letter-spacing: .04em;
  text-align: center;
  color: #2DA7E2;
}
.p-hero__message-text b {
  font-weight: bold;
}
.p-hero__product {
  order: 1;
  width: min(calc(587 / 1400 * 100vw), 587px);
}
.p-hero__product-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 587/466;
}
@media screen and (max-width:740px) {
  .p-hero {
    padding: 46px 0 32px;
    background-image: url(./img/hero_bg_sp.png);
  }
  .p-hero__inner {
    min-height: initial;
    flex-direction: column;
    gap: 0;
  }
  .p-hero__content {
    margin-bottom: 20px;
    width: 100%;
  }
  .p-hero__product {
    width: 100%;
  }
  .p-hero__eyebrow {
    margin: 0;
    font-size: min(calc(13 / 414 * 100vw), 13px);
    line-height: calc(32/13);
  }
  .hero__eyebrow-strong {
    font-size: min(calc(21 / 414 * 100vw), 21px);
  }
  .p-hero__pill {
    margin: 0 auto 10px;
    padding: 3px 14px;
    min-width: min(calc(244 / 414 * 100vw), 244px);
    font-size: min(calc(14 / 414 * 100vw), 14px);
  }
  .p-hero__title {
    margin-bottom: 10px;
    font-size: min(calc(38 / 414 * 100vw), 38px);
  }
  .p-hero__title-sub {
    margin: 5px 0 20px;
    font-size: min(calc(14 / 414 * 100vw), 14px);
  }
  .p-hero__tags {
    margin-bottom: 13px;
    gap: 10px;
  }
  .p-hero__tag {
    min-width: min(calc(120 / 414 * 100vw), 120px);
    font-size: min(calc(12 / 414 * 100vw), 12px);
  }
  .p-hero__note {
    font-size: min(calc(12 / 414 * 100vw), 12px);
  }
  .p-hero__message {
    padding: 16px 14px;
    width: calc(100% - 30px);
    min-height: initial;
  }
  .p-hero__message::before,
  .p-hero__message::after {
    right: -5px;
    bottom: auto;
    width: 53px;
  }
  .p-hero__message::before {
    top: -68px;
    height: 69px;
    background-image: url(./img/drop1.png);
  }
  .p-hero__message::after {
    top: -1px;
    height: 30px;
    background-image: url(./img/drop2.png);
  }
  .p-hero__message-text {
    font-size: min(calc(17 / 414 * 100vw), 17px);
    line-height: calc(27/17);
  }
}
/* ------- 導入 ------- */
.p-section {
  padding: 100px 15px;
  background: #F0FBFD;
  position: relative;
}
.p-hero + .p-section::after {
  position: absolute;
  content: "";
  top: -50px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50px;
  background: linear-gradient(0deg,#F0FBFD 50%, transparent 100%);
}
.p-section__inner {
  margin: 0 auto;
  max-width: 1200px;
}
.p-section__title {
  margin: 0 0 57px;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  color: #2DA7E2;
}
.p-concerns {
  margin: 0 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.p-concerns__item {
  width: 284px;
}
.p-concern {
  text-align: center;
}
.p-concern__media {
  margin: 0 auto 55px;
  width: 250px;
}
.p-concern__text {
  font-size: 16px;
  line-height: calc(26/16);
  color: #555;
}
.p-concern__text b {
  font-size: 20px;
  font-weight: bold;
}
.p-section__lead {
  margin: 0 0 50px;
  padding-top: 82px;
  font-size: 34px;
  font-weight: 500;
  line-height: calc(55/34);
  text-align: center;
  color: #2DA7E2;
  position: relative;
  z-index: 0;
}
.p-section__lead::before,
.p-section__lead::after {
  position: absolute;
  content: "";
  left: 50%;
}
.p-section__lead::before {
  top: 0;
  z-index: 0;
  width: 81px;
  height: 46px;
  background: url(./img/arrow.png) no-repeat center / contain;
  transform: translateX(-50%);
}
.p-section__lead::after {
  bottom: -40px;
  z-index: -1;
  width: 568px;
  height: 63px;
  background: url(./img/line.png) no-repeat center / contain;
  transform: translateX(-50%) rotate(-1deg);
}
.p-section__product {
  text-align: center;
}
@media screen and (max-width:740px) {
  .p-section {
    padding: 50px 15px;
  }
  .p-hero + .p-section::after {
    top: -30px;
    height: 30px;
  }
  .p-section__title {
    margin: 0 0 30px;
    font-size: min(calc(23 / 414 * 100vw), 23px);
  }
  .p-concerns {
    gap: 40px 20px;
  }
  .p-concerns__item {
    width: calc((100% - 20px) / 2);
  }
  .p-concern__media {
    margin-bottom: 14px;
    width: min(calc(164 / 414 * 100vw), 164px);
  }
  .p-concern__text {
    font-size: min(calc(14 / 414 * 100vw), 14px);
  }
  .p-concern__text b {
    font-size: min(calc(16 / 414 * 100vw), 16px);
  }
  .p-section__lead {
    margin-bottom: 30px;
    font-size: min(calc(23 / 414 * 100vw), 23px);
  }
  .p-section__lead::after {
    bottom: min(calc(-16 / 414 * 100vw), -16px);
    width: min(calc(272 / 414 * 100vw), 272px);
    height: min(calc(36 / 414 * 100vw), 36px);
    background-image: url(./img/line_sp.png);
  }
  .p-section__product-img {
    width: 77%;
  }
}
/* ------- FEATURES ------- */
.p-section--features {
  padding: 80px 15px 100px;
  background: #D6F0F5;
}
.p-features-title {
  margin: 0 0 50px;
  font-weight: bold;
  text-align: center;
}
.p-features-title__en {
  display: block;
  font-size: 60px;
  line-height: 1;
  letter-spacing: .1em;
  color: #2DA7E2;
}
.p-features-title__jp {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  color: #444;
}
.p-feature-card {
  padding: 50px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(43, 151, 159, .16);
}
.p-feature-card + .p-feature-card {
  margin-top: 50px;
}
.p-feature-card__content {
  flex: 1;
}
.p-feature-card__label {
  margin: 0 0 30px;
  font-size: 24px;
  color: #37B572;
}
.p-page-fitplus .p-feature-card__label,
.p-feature-card__label b {
  font-weight: normal;
}
.p-feature-card__label b {
  margin-left: 8px;
  font-size: 40px;
}
.p-feature-card__title {
  margin: 0 0 30px;
  font-size: 35px;
  font-weight: bold;
  color: #555;
  line-height: calc(56/35);
}
.p-feature-card__title sup {
  font-weight: 500;
}
.p-feature-card__title .sml {
  top: -22px;
  font-size: 12px;
}
.p-feature-card__text {
  font-size: 16px;
  line-height: calc(26/16);
  color: #555;
}
.p-feature-card__media {
  width: min(calc(500 / 1400 * 100vw), 500px);
}
.p-feature-card__media--panel {
  justify-content: center;
}
@media screen and (max-width:740px) {
  .p-section--features {
    padding: 50px 15px 60px;
  }
  .p-features-title {
    margin-bottom: 40px;
  }
  .p-features-title__en {
    font-size: min(calc(46 / 414 * 100vw), 46px);
  }
  .p-features-title__jp {
    font-size: min(calc(17 / 414 * 100vw), 17px);
  }
  .p-feature-card {
    padding: 20px min(calc(30 / 414 * 100vw), 30px);
    flex-direction: column;
    gap: 14px;
  }
  .p-feature-card + .p-feature-card {
    margin-top: 30px;
  }
  .p-feature-card__media {
    width: 100%;
  }
  .p-feature-card__label {
    margin-bottom: 20px;
  }
  .p-feature-card__title {
    margin-bottom: 20px;
    font-size: min(calc(26 / 414 * 100vw), 26px);
  }
  .p-feature-card__title .sml {
    top: -14px;
  }
  .p-feature-card__text {
    font-size: min(calc(16 / 414 * 100vw), 16px);
  }
}
/* ------- HOW TO ------- */
.p-howto {
  padding: 80px 15px 100px;
  background: #fff;
}
.p-howto__eyebrow {
  font-size: 20px;
  font-weight: bold;
  color: #2DA7E2;
}
.p-howto__steps {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.p-howto-step {
  width: 100%;
  max-width: 384px;
}
.p-howto-step__media {
  margin-bottom: 10px;
  border: 1px solid #80D7ED;
}
.p-howto-step__badge {
  margin: 0 auto 10px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 128px;
  min-height: 34px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-radius: 999px;
  background: #2DA7E2;
}
.p-howto-step__text {
  font-size: 16px;
  line-height: calc(26/16);
  color: #555;
}
@media screen and (max-width:740px) {
  .p-howto {
    padding: 60px 15px;
  }
  .p-howto__eyebrow {
    font-size: min(calc(17 / 414 * 100vw), 17px);
  }
  .p-howto__steps {
    margin: 0 auto;
    width: calc(318 / 414 * 100vw);
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .p-howto-step__badge {
    font-size: min(calc(20 / 414 * 100vw), 20px);
  }
  .p-howto-step__text {
    font-size: min(calc(16 / 414 * 100vw), 16px);
  }
}
/* ------- CAUTION ------- */
.p-caution {
  padding: 80px 15px 100px;
  background: #F0FBFD;
}
.p-caution__inner {
  margin: 0 auto;
  max-width: 1100px;
}
.p-caution__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.p-caution__item {
  margin-left: 1em;
  font-size: 16px;
  text-indent: -1em;
  line-height: calc(24/16);
  color: #555;
}
.p-caution__item + .p-caution__item {
  margin-top: 3px;
}
@media screen and (max-width:740px) {
  .p-caution {
    padding: 60px 15px;
  }
  .p-caution__item {
    font-size: min(calc(14 / 414 * 100vw), 14px);
  }
}
/* ------- FAQ ------- */
.p-section--faq {
  padding: 80px 15px 100px;
  background: #D6F0F5;
}
.p-faq__inner {
  margin: 0 auto;
  max-width: 1080px;
}
.p-fitplus-faq {
  display: grid;
  gap: 12px;
}
.p-fitplus-faq__item {
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.p-fitplus-faq__q {
  width: 100%;
  font-weight: bold;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.p-fitplus-faq__q,
.p-fitplus-faq__a-inner {
  padding: 14px 52px 14px 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}
.p-fitplus-faq__q::before,
.p-fitplus-faq__q::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background: #2DA7E2;
  transform: translateY(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
}
.p-fitplus-faq__q::after {
  transform: translateY(-50%) rotate(90deg);
}
.p-fitplus-faq__item.is-open .p-fitplus-faq__q::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(.2);
}
.p-fitplus-faq__q-mark,
.p-fitplus-faq__a-mark {
  font-size: 30px;
}
.p-fitplus-faq__q-mark {
  color: #2DA7E2;
}
.p-fitplus-faq__a-mark {
  color: #4FBE83;
}
.p-fitplus-faq__a {
  display: none;
}
.p-fitplus-faq__text {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}
@media screen and (max-width:740px) {
  .p-section--faq {
    padding: 60px 15px;
  }
  .p-fitplus-faq {
    gap: 10px;
  }
  .p-fitplus-faq__q,
  .p-fitplus-faq__a-inner {
    padding: 14px 44px 14px 14px;
    grid-template-columns: 26px 1fr;
    gap: 10px;
  }
  .p-fitplus-faq__q::before,
  .p-fitplus-faq__q::after {
    right: 15px;
    width: 15px;
  }
  .p-fitplus-faq__q-mark,
  .p-fitplus-faq__a-mark {
    font-size: min(calc(20 / 414 * 100vw), 20px);
  }
  .p-fitplus-faq__text {
    font-size: min(calc(15 / 414 * 100vw), 15px);
  }
}