/* CSS Document */
/*
 * Top Page Styles
 * ==========================================
 * This file imports styles for top/front page
 *
 * Structure:
 * 1. Config - Variables and Mixins
 * 2. Base - Global styles and utilities
 * 3. Sections - Common reset, Front page
 */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  scroll-padding-top: 160px;
}
html body {
  font-family: "source-han-sans-cjk-ja", sans-serif;
  color: #333333;
  background: #ffffff;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}
html body * {
  box-sizing: border-box;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}
html p, html h1, html h2, html h3, html h4, html ul, html li {
  margin: 0;
  padding: 0;
}
html a {
  text-decoration: none;
  color: inherit;
}
html ul {
  list-style: none;
}

section {
  padding: 45px 0;
}

.sec-title {
  text-align: left;
  position: relative;
  line-height: 17px;
  padding-left: 12px;
}
.sec-title .ja {
  font-size: 18px;
  font-weight: bold;
  line-height: 17px;
  letter-spacing: 1.1px;
  text-align: left;
  color: #221f1c;
}
.sec-title .en {
  font-size: 12px;
  color: #94b6e8;
}
.sec-title::before {
  display: block;
  content: "NEWS";
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  font-size: 41px;
  font-weight: bold;
  line-height: 0.5;
  letter-spacing: 0.82px;
  color: #e2eaf5;
  z-index: -1;
  left: 0px;
}
.sec-title--about {
  text-align: center;
}
.sec-title--about span {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0.5px;
  text-align: left;
  color: #1871f8;
  position: relative;
}
.sec-title--about span::before, .sec-title--about span::after {
  content: "";
  display: block;
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #1871f8;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.sec-title--about span::before {
  top: -15px;
}
.sec-title--about span::after {
  top: inherit;
  bottom: -15px;
}

.another {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.another .sec-title::before {
  content: "COLUMN";
}
.another__contents {
  width: 93%;
  margin: 0 auto;
  display: flex;
  height: 110px;
  border-radius: 4px;
  box-shadow: 0.8px 0.55px 7.5px 0 rgba(1, 1, 1, 0.12);
  background-color: #fff;
  position: relative;
}
.another__contents a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.another__contents .img {
  width: 100px;
  height: 100%;
  flex: none;
  margin-right: 13px;
}
.another__contents .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.another__contents .text {
  padding: 13px 13px 13.5px 0;
}
.another__contents .text h3 {
  font-size: 10.5px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.42px;
  text-align: left;
  color: #181d23;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.another__contents .text p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.4px;
  text-align: left;
  color: #181d23;
  height: 43px;
  overflow: hidden;
  position: relative;
}
.another__contents .text p::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #fff;
  opacity: 0.8;
  bottom: 0;
  left: 0;
}
.another__contents .text .more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 20px;
  border-radius: 100px;
  border: solid 1px #fd662b;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 75px;
}
.another__contents .text .more span {
  font-size: 9px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.42px;
  text-align: left;
  color: #fd662b;
}
.another__contents .text .more::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 5px;
  background: url(../images/top/arrow_more.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.fadein.is-active {
  opacity: 1;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
main {
  padding-top: 45px;
  margin-bottom: 115px;
}

.hero {
  padding: 45px 0;
  background-image: linear-gradient(to bottom, #c6dcfe, #f1f5fa);
  position: relative;
  overflow-x: clip;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  width: 143px;
  height: 315px;
  background: url(../images/top/trainer.png) no-repeat;
  background-size: contain;
  bottom: -100px;
  right: -10px;
}
.hero__inner {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
.hero__bg {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hero__text-area {
  z-index: 2;
  flex: 1;
  text-align: center;
  margin-bottom: 50px;
}
.hero__subtitle {
  font-family: "source-han-sans-cjk-ja", sans-serif;
  font-size: 16.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.66px;
  text-align: center;
  color: #0a59d1;
  margin-bottom: 12px;
}
.hero__title {
  width: 290px;
  margin: 0 auto;
}
.hero__title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__title-com {
  color: #1976d2;
}
.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.25;
  letter-spacing: 0.31px;
  text-align: left;
  color: #121f33;
  position: relative;
  z-index: 1;
}
.hero__check-item::before {
  display: block;
  position: absolute;
  content: "";
  width: 285px;
  height: 40px;
  background-color: #fff;
  opacity: 0.9;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  z-index: -1;
}
.hero__check-badge {
  width: 23px;
  height: 23px;
}
.hero__check-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}

.brands {
  height: 55px;
  background-color: rgba(21, 30, 44, 0.4);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.scroll-bg .scroll-infinity .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-bg .scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-bg .scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 15s infinite linear 0.5s both;
}
.scroll-bg .scroll-infinity .scroll-infinity__item {
  width: 485px;
  height: 40px;
  margin-right: 20px;
}
.scroll-bg .scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  height: 40px;
  object-fit: cover;
}

.cta {
  background: #1976d2;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.cta__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta__lead--yellow {
  color: #ffd200;
  font-size: 11.2px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 13px;
  letter-spacing: 0.69px;
  text-align: center;
}
.cta__lead--white {
  color: #fff;
  font-size: 11.2px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 13px;
  letter-spacing: 0.69px;
  text-align: center;
}
.cta__deco {
  color: #ffd200;
}
.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 45px;
  border-radius: 100px;
  box-shadow: 0px 2.5px 0 0 #463e19;
  font-size: 15.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: 0.93px;
  text-align: center;
  color: #141b25;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
}
.cta__btn:active {
  opacity: 0.85;
  transform: scale(0.98);
}
.cta__btn--yellow {
  background-color: #ffd200;
}
.cta__btn--yellow:hover {
  background: #e09200;
}
.cta__btn--white {
  background: #ffffff;
  color: #1976d2;
}
.cta__chevron {
  position: absolute;
  right: 20px;
}
.cta__chevron img {
  width: 6.5px;
  height: 10px;
}

.orange {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fd662b;
  padding: 20px 0;
}
.orange p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.84px;
  text-align: center;
  color: #fff;
}

.steps {
  background: #eaf5ef;
  padding: 24px 18px 28px;
  text-align: center;
}
.steps__tag {
  font-size: 15.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: 0.62px;
  text-align: center;
  color: #06c755;
  margin-bottom: 3px;
}
.steps__tag-deco {
  color: #06c755;
}
.steps__title {
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.85px;
  text-align: center;
  color: #171d25;
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}
.steps__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 8.5px;
  background-color: #b0eeca;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.steps__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2.3px 4.4px 13px 0 rgba(31, 32, 34, 0.17);
  background-color: #fff;
  margin-bottom: 17px;
}
.steps__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 15px 0;
}
.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.steps__icon--line {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background-color: #06c755;
}
.steps__icon--line img {
  width: 27.5px;
  height: 25.5px;
}
.steps__icon--form, .steps__icon--doc {
  background: transparent;
}
.steps__icon--form img, .steps__icon--doc img {
  width: 52px;
  height: 50px;
}
.steps__label {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.42px;
  text-align: center;
  color: #181d23;
}
.steps__arrow {
  position: relative;
  width: 28px;
  height: 100%;
}
.steps__arrow::before, .steps__arrow::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #eaf5ef;
  right: 0;
  top: 50%;
  transform-origin: right center;
}
.steps__arrow::before {
  width: 57px;
  transform: rotate(-65deg);
}
.steps__arrow::after {
  width: 60px;
  transform: rotate(65deg);
}
.steps__cta-lead {
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0.64px;
  text-align: center;
  color: #fd662b;
  margin-bottom: 7.5px;
}
.steps__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 100px;
  background: #06C755;
  position: relative;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
  position: relative;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.steps__cta-btn .text {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: 0.96px;
  text-align: center;
  color: #fff;
}
.steps__cta-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 36.5px;
  height: 34px;
  background: url(../images/top/icon_line_02.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 32px;
}
.steps__cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 10.5px;
  background: url(../images/top/arrow.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
}
.steps__cta-btn:active {
  transform: scale(0.98);
}

.phone {
  background: #ffffff;
  padding: 20px 18px 0px;
}
.phone__label-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
}
.phone__top-label {
  display: inline-block;
  height: 21px;
  border-radius: 21px;
  padding: 4px 13px;
  border: solid 1.5px #1976d2;
  background-color: #fff;
  font-size: 12.5px;
  font-weight: bold;
  line-height: 9px;
  letter-spacing: 0.5px;
  color: #1871f8;
  position: absolute;
  top: -1px;
}
.phone__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: end;
  height: 41px;
  padding-bottom: 9px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.9px;
  color: #fff;
  background-color: #1976d2;
}
.phone .wrapper {
  border-radius: 5px;
  padding: 17px 25px;
  background-color: rgba(24, 113, 248, 0.1);
}
.phone__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.phone__features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.66px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
.phone__features li.blue {
  color: #1871f8;
}
.phone__features li::before {
  content: "";
  display: block;
  position: absolute;
  width: 14.5px;
  height: 11px;
  background: url(../images/top/check.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.phone__number-box {
  border-radius: 4px;
  box-shadow: 0px 2.5px 0 0 #94b6e8;
  border: solid 1.5px #94b6e8;
  background-color: #fff;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.phone__number {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone__number svg {
  color: #333333;
}
.phone__icon {
  width: 18px;
  height: 18px;
}
.phone__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.phone__number-digits {
  font-family: "urw-din", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.45px;
  text-align: center;
  color: #171d25;
  position: relative;
}
.phone__free {
  font-size: 11.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 15.5px;
  letter-spacing: 0.68px;
  text-align: center;
  color: #1976d2;
  display: inline-block;
  border: solid 1px #1976d2;
  border-radius: 2.5px;
  height: 18.5px;
  padding: 0 6px;
}
.phone__hours {
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 10px;
  letter-spacing: 0.69px;
  text-align: center;
  color: #171d25;
}

.news {
  padding-top: 55px;
  padding-bottom: 0;
}
.news .wrapper .news-area {
  max-width: 1180px;
  margin: 0 auto;
}
.news .wrapper .news-area .sec-title {
  margin-bottom: 18px;
}
.news .wrapper .news-area .sec-title .sec-title::before {
  content: "COLUMN";
}
.news .wrapper .news-area .news-list {
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.news .wrapper .news-area .news-list.single-banner {
  margin: 0 auto;
  width: 370px;
}
.news .wrapper .news-area .news-list.single-banner .slick-list {
  padding: 0 !important;
}
.news .wrapper .news-area .news-list .news-item {
  max-width: 350px;
  margin: 0 10px;
}
.news .wrapper .news-area .news-list .news-item .thumbnail {
  width: 350px;
  height: 225px;
  overflow: hidden;
}
.news .wrapper .news-area .news-list .news-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news .wrapper .news-area .news-list .slick-dots li button {
  font-size: 0;
  line-height: 0;
}
.news .wrapper .news-area .news-list .slick-dots li button::before {
  content: "";
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  border: solid 1px #1871f8;
  background-color: #fff;
  opacity: 1 !important;
}
.news .wrapper .news-area .news-list .slick-dots li.slick-active button::before {
  background-color: #1871f8;
}
.news .wrapper .news-area .news-list .slick-arrow {
  width: 28px;
  height: 35px;
  background-color: rgba(30, 84, 165, 0.55);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.news .wrapper .news-area .news-list .slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
}
.news .wrapper .news-area .news-list .slick-arrow.prev {
  border-radius: 4px 0 0 4px;
  left: calc(50% - 187px);
}
.news .wrapper .news-area .news-list .slick-arrow.prev::before {
  left: 47%;
  background: url(../images/top/arrow_left.png) no-repeat;
  background-size: contain;
}
.news .wrapper .news-area .news-list .slick-arrow.next {
  border-radius: 0 4px 4px 0;
  right: calc(50% - 185px);
}
.news .wrapper .news-area .news-list .slick-arrow.next::before {
  left: 53%;
  background: url(../images/top/arrow_right.png) no-repeat;
  background-size: contain;
}

.feature {
  padding: 0;
}
.feature__kv .bg-blue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90px;
  background-color: #0b3779;
  font-size: 17px;
  font-weight: bold;
  line-height: 23px;
  letter-spacing: 1.02px;
  text-align: center;
  color: #fff;
}
.feature__kv .support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  background: url(../images/top/support_bg.jpg) no-repeat;
  background-size: cover;
}
.feature__kv .support p {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.85px;
  text-align: center;
  color: #171d25;
}
.feature__kv .support p .maker {
  position: relative;
  z-index: 1;
}
.feature__kv .support p .maker .big {
  font-size: 30px;
}
.feature__kv .support p .maker::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 9px;
  mix-blend-mode: multiply;
  background-color: #fffc00;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.feature__about {
  padding: 45px 0;
  background-color: #f1f7ff;
}
.feature__about .sec-title--about {
  margin-bottom: 35px;
}
.feature__about .exp {
  text-align: center;
  margin-bottom: 30px;
}
.feature__about .exp p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.66;
  letter-spacing: 0.64px;
  text-align: center;
  color: #181d23;
}
.feature__about .exp p .blue {
  color: #1976d2;
}
.feature__item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature__item ul li {
  display: flex;
  gap: 13px;
  width: 93%;
  max-width: 700px;
  margin: 0 auto;
  padding: 13px 22px 15px 12px;
  border-radius: 4px;
  border: solid 1.5px #1871f8;
  background-color: #fff;
}
.feature__item ul li .img {
  width: 75px;
}
.feature__item ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.feature__item ul li .content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}
.feature__item ul li .content h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.64px;
  text-align: left;
  color: #1871f8;
}
.feature__item ul li .content p {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.52;
  letter-spacing: 0.42px;
  text-align: left;
  color: #181d23;
}
.feature__item ul li .content p .small {
  font-size: 8px;
}

.column .sec-title::before {
  content: "COLUMN";
  color: #adc7ee;
}
.column .ichiran {
  margin-top: 25px;
}
.column .ichiran .more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 40px;
  margin: 0 auto;
  border-radius: 100px;
  border: solid 1px #fd662b;
  background-color: #fff;
  position: relative;
}
.column .ichiran .more span {
  font-size: 12.5px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.42px;
  text-align: left;
  color: #fd662b;
}
.column .ichiran .more::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 6px;
  background: url(../images/top/arrow_more.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}

.kobetsu {
  background-color: #edf3fd;
}
.kobetsu .wrapper {
  padding: 0 12.5px;
}
.kobetsu .wrapper .bubble {
  text-align: center;
  margin-bottom: 30px;
}
.kobetsu .wrapper .bubble span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.26;
  letter-spacing: 0.36px;
  text-align: center;
  color: #1871f8;
  position: relative;
}
.kobetsu .wrapper .bubble span::before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 14px;
  background: url(../images/top/bubble.png) no-repeat;
  background-size: contain;
  bottom: -18px;
  right: 2px;
}
.kobetsu .wrapper .bubble span::after {
  content: "";
  display: block;
  position: absolute;
  width: 47%;
  height: 1px;
  background-color: #1976d2;
  bottom: -5px;
  left: 2px;
}
.kobetsu .wrapper .flex {
  display: flex;
  justify-content: space-between;
  padding: 0 12.5px;
  margin-bottom: 23px;
}
.kobetsu .wrapper .flex .text .title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.4px;
  text-align: left;
  color: #221f1c;
  white-space: nowrap;
  margin-bottom: 14px;
}
.kobetsu .wrapper .flex .text .title .blue {
  font-size: 24px;
  color: #1871f8;
}
.kobetsu .wrapper .flex .text .exp {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.49;
  letter-spacing: 0.47px;
  text-align: left;
  color: #181d23;
  white-space: nowrap;
}
.kobetsu .wrapper .flex .img {
  width: 113px;
  height: 105px;
  flex: none;
}
.kobetsu .wrapper .flex .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kobetsu .wrapper .point {
  width: 100%;
  padding: 19px 33px 19px 12px;
  border-radius: 4px;
  background-color: #fff;
}
.kobetsu .wrapper .point ul {
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}
.kobetsu .wrapper .point ul li {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.49;
  letter-spacing: 0.47px;
  text-align: left;
  color: #181d23;
  padding-left: 20px;
  position: relative;
}
.kobetsu .wrapper .point ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 13px;
  background: url(../images/top/check.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.kobetsu .wrapper .point ul li .bold {
  background: linear-gradient(transparent 60%, #f3f000 50%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/*# sourceMappingURL=top.css.map */
