@charset "UTF-8";

/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");

/* base styles */
*, *::before, *::after {
  transition: all 0.3s;
}

html {
  font-family: "Noto Sans JP", "Segoe UI", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  height: -webkit-fill-available;
}

body {
  background: #FFFFFF;
  color: #1E1E1C;
  font-family: "Noto Sans JP", "Segoe UI", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  min-height: -webkit-fill-available;
  height: 100%;
  width: 100%;
}

a {
  color: #1E1E1C;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: #1E1E1C;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

/* ==================== レイアウト ==================== */
#suntory_contents {
  height: 100%;
  width: 100%;
}

.lpAruko-contents {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.lpAruko-main {
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

/* ==================== ヘッダー・グローバルナビゲーション ==================== */
.lpAruko-header {
  background: #fff;
  margin: 0 auto;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  width: 100%;
  z-index: 9999;
}

.lpAruko-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
  height: 100%;
  width: 100%;
}

.lpAruko-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 160px;
  margin: auto 24px auto 0;
  height: 40px;
  width: 160px;
}
.lpAruko-header__brand img {
  height: 32px;
  width: auto;
}

.lpAruko-header__toggle {
  display: none;
}
.lpAruko-header__toggle:checked + .lpAruko-header__toggle__button::before {
  background: url("../img/icons/cross.svg") no-repeat 0 0;
}

.lpAruko-header__toggle__button {
  display: none;
  margin: auto 0;
}
.lpAruko-header__toggle__button::before {
  background: url("../img/icons/bars.svg") no-repeat 0 0;
  background-size: 100%;
  content: " ";
  display: block;
  height: 24px;
  width: 24px;
}

.lpAruko-header__nav__close {
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  margin: 0 auto;
  height: 52px;
  width: 100%;
  z-index: 9999;
}

.lpAruko-header__nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 150px;
  margin: auto;
  height: 44px;
  width: 150px;
}
.lpAruko-header__nav__brand img {
  height: 28px;
  width: auto;
}

.lpAruko-header__nav__close__toggle__button {
  background: url("../img/icons/cross.svg") transparent no-repeat 50% 50%;
  background-size: 24px 24px;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto 0;
  position: absolute;
  right: 12px;
  top: 4px;
  height: 44px;
  width: 44px;
}

.lpAruko-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
  width: 100%;
  z-index: 999;
}

.lpAruko-navlist {
  display: flex;
  align-items: center;
  width: 100%;
}
.lpAruko-navlist li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpAruko-navlist li a:not(.lpAruko-btnPrimary, .lpAruko-btnSecondary) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1rem;
  text-decoration: none;
  padding: 0 12px;
  height: 26px;
  min-width: 160px;
}
.lpAruko-navlist li a:not(.lpAruko-btnPrimary, .lpAruko-btnSecondary):hover {
  text-decoration: underline;
}
.lpAruko-navlist li .lpAruko-btnPrimary, .lpAruko-navlist li .lpAruko-btnSecondary {
  margin: 0 0 0 8px;
  min-width: 160px;
}

.lpAruko-header__contact {
  display: none;
}

.lpAruko-header__cover {
  opacity: 0;
}

/* ==================== フッター ==================== */
.lpAruko-footer {
  background: #fff;
  padding: 60px 0;
  width: 100%;
}
.lpAruko-footer .lpAruko-footer__container {
  display: flex;
  justify-content: space-between;
  align-items: ccenter;
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}
.lpAruko-footer p {
  color: #636366;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

/* ==================== ボタン ==================== */
.lpAruko-btnPrimary {
  background: #FF612A;
  border: 1px solid #FF612A;
  border-radius: 44px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 0 16px;
  text-align: center;
  height: 44px;
  width: auto;
}
.lpAruko-btnPrimary:hover {
  background: #FE4411;
  border: 1px solid #FE4411;
  color: #fff;
  text-decoration: none;
}

.lpAruko-btnSecondary {
  background: #fff;
  border: 1px solid #FF612A;
  border-radius: 44px;
  color: #FF612A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 0 16px;
  text-align: center;
  height: 44px;
  width: auto;
}
.lpAruko-btnSecondary:hover {
  background: #FFF4ED;
  border: 1px solid #FE4411;
  color: #FE4411;
  text-decoration: none;
}

.lpAruko-btnLink {
  background: url("../img/icons/chevron.svg") no-repeat right 20px top 55%;
  background-size: 24px 24px;
  color: #1E1E1C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  padding: 0 52px 0 20px;
  text-align: center;
  height: 48px;
  width: auto;
}
.lpAruko-btnLink:hover {
  text-decoration: underline;
}

/* ==================== カルーセル ==================== */
.lpAruko-carousel {
  margin: 0 auto;
  max-width: 1030px;
  width: 100%;
}
.lpAruko-carousel .slick-slider div {
  transition: none;
}

.lpAruko-carousel__inner.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.lpAruko-carousel__inner .slick-arrow {
  background-color: #fff;
  border: 1px solid #FF612A;
  border-radius: 34px;
  color: #FF612A;
  position: absolute;
  top: auto;
  bottom: -120px;
  height: 56px;
  width: 56px;
  z-index: 1;
}
.lpAruko-carousel__inner .slick-arrow:hover {
  background: #FFF4ED;
  border: 1px solid #FE4411;
  color: #FE4411;
}
.lpAruko-carousel__inner .slick-arrow.slick-prev {
  right: auto;
  left: 348px;
}
.lpAruko-carousel__inner .slick-arrow.slick-prev::before {
  content: " ";
  display: block;
  background: url("../img/icons/chevron-prev.svg") no-repeat 0 0;
  background-size: 24px 24px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 1;
  height: 24px;
  width: 24px;
}
.lpAruko-carousel__inner .slick-arrow.slick-next {
  left: auto;
  right: 348px;
}
.lpAruko-carousel__inner .slick-arrow.slick-next::before {
  content: " ";
  display: block;
  background: url("../img/icons/chevron-next.svg") no-repeat 0 0;
  background-size: 24px 24px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 1;
  height: 24px;
  width: 24px;
}
.lpAruko-carousel__inner .slick-dots {
  bottom: -69px;
  z-index: 0;
}
.lpAruko-carousel__inner .slick-dots li {
  margin: 0 3px;
  height: 8px;
  width: 8px;
}
.lpAruko-carousel__inner .slick-dots li.slick-active button {
  background: #FF612A;
}
.lpAruko-carousel__inner .slick-dots li.slick-active button:hover {
  background: #FE4411;
}
.lpAruko-carousel__inner .slick-dots li button {
  background: #FFE5D4;
  border-radius: 8px;
  padding: 0;
  height: 8px;
  width: 8px;
}

.lpAruko-carousel__item {
  margin: 0 8px;
  padding: 0 0 4px;
  height: 450px;
  width: 331px;
}

/* ==================== 導入事例 ==================== */
.lpAruko-casestudy {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-casestudySection {
  background: #FFF4ED;
  padding: 90px 0 186px;
}

.lpAruko-casestudy__title {
  text-align: center;
  margin: 0 auto 60px;
}
.lpAruko-casestudy__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.lpAruko-casestudy__card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  height: 446px;
  width: 331px;
}
.lpAruko-casestudy__card a {
  display: block;
  padding: 16px;
  height: 100%;
  width: 100%;
}
.lpAruko-casestudy__card a:hover {
  opacity: 0.7;
}
.lpAruko-casestudy__card a h3 {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 0 0 16px;
}
.lpAruko-casestudy__card a p {
  color: #636366;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  margin: 0 0 24px;
}
.lpAruko-casestudy__card a span {
  background: url("../img/icons/chevron.svg") no-repeat right 6px top 55%;
  background-size: 16px 16px;
  color: #1E1E1C;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  margin: 0 0 0 auto;
  padding: 0 32px 0 8px;
  height: 28px;
}
.lpAruko-casestudy__card a img {
  display: block;
}
.lpAruko-casestudy__card a img.lpAruko-casestudy__card__img {
  margin: 0 auto 24px;
  max-height: 169px;
  height: auto;
  width: 100%;
}
.lpAruko-casestudy__card a img.lpAruko-casestudy__card__logo {
  margin: 0 0 16px;
  max-height: 30px;
  max-width: 100%;
}

/* ==================== 導入企業 ==================== */
.lpAruko-clients {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-clientsSection {
  background: #F2F2F7;
  padding: 90px 0;
}

.lpAruko-clients__title {
  text-align: center;
  margin: 0 auto 40px;
}
.lpAruko-clients__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin: 0 auto 32px;
}
.lpAruko-clients__title h2 strong {
  color: #FE4411;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0.4rem;
}
.lpAruko-clients__title h2 strong span {
  color: #FE4411;
  font-size: 62px;
  font-weight: 700;
  line-height: 60px;
  margin: 0 0.2rem;
}
.lpAruko-clients__title h2 small {
  color: #636366;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}
.lpAruko-clients__title p {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.lpAruko-clients__panel {
  background: #fff;
  margin: 0 auto 40px;
  padding: 40px 0;
  text-align: center;
}

.lpAruko-clients__recommended .lpAruko-clients__recommended__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__title::before {
  background: url("../img/clients-recommended-title.svg") no-repeat 0 0;
  background-size: 100%;
  content: " ";
  display: block;
  margin: 0 24px 0 0;
  height: 118px;
  width: 168px;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__title p {
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__panel {
  background: #fff;
  display: grid;
  grid-template-columns: auto auto;
  padding: 40px 24px;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__panel img {
  grid-row: 1/2;
  grid-column: 1/2;
  display: block;
  margin: 0 16px;
  height: 160px;
  width: 160px;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon {
  grid-row: 1/2;
  grid-column: 2/3;
  background: #fff;
  box-shadow: 0px 0px 2px 0px #68686D;
  border-radius: 16px;
  margin: 0 16px;
  padding: 24px;
  position: relative;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon::before {
  background: url("../img/clients-baloon.png") no-repeat 0 0;
  background-size: contain;
  content: " ";
  display: block;
  position: absolute;
  top: 20px;
  left: -20.5px;
  height: 34px;
  width: 23px;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon h3 {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 31.5px;
  margin: 0 0 16px;
  padding: 0;
  text-align: left;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon p {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 500;
  line-height: 31.5px;
  margin: 0;
  padding: 0;
  text-align: left;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon p strong {
  color: #FE4411;
  font-weight: 700;
}
.lpAruko-clients__recommended .lpAruko-clients__recommended__baloon small {
  color: #1E1E1C;
  margin: 16px 0 0;
  text-align: right;
}
.lpAruko-clients__recommended small {
  grid-row: 2/3;
  grid-column: 2/3;
  display: block;
  color: #636366;
  font-size: 12px;
  line-height: 21px;
  margin: 16px 0 0;
  text-align: right;
}

/* ==================== 運営会社 ==================== */
.lpAruko-company {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-companySection {
  background: #fff;
  padding: 90px 0;
}

.lpAruko-company__title {
  text-align: center;
  margin: 0 auto 64px;
}
.lpAruko-company__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
}

.lpAruko-company__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  height: 132px;
}
.lpAruko-company__logo img {
  display: block;
  margin: 0 auto;
}

.lpAruko-company__name {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  height: 32px;
  width: 100%;
}
.lpAruko-company__name p {
  color: #636366;
  font-size: 18px;
  font-weight: 700;
  line-height: 31.5px;
  text-align: center;
}

.lpAruko-company__panel {
  background: #fff;
  border: 1px solid #D1D1D6;
  border-radius: 8px;
  margin: 0 auto;
  padding: 24px;
  max-width: 1024px;
}
.lpAruko-company__panel img {
  display: block;
  margin: 0 auto 40px;
  height: 200px;
  width: 500px;
}
.lpAruko-company__panel h3 {
  color: #1E1E1C;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  margin: 0 auto 24px;
  text-align: center;
}
.lpAruko-company__panel h3 small {
  color: #636366;
  display: inline;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
}
.lpAruko-company__panel h3 strong {
  color: #FE4411;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
}
.lpAruko-company__panel p {
  color: #636366;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 12px;
}
.lpAruko-company__panel p.lpAruko-company__link {
  margin: 0 0 24px;
  text-align: center;
  word-break: break-all;
}
.lpAruko-company__panel p.lpAruko-company__link a {
  color: #FF612A;
  text-decoration: underline;
}
.lpAruko-company__panel small {
  color: #636366;
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  text-align: left;
}

/* ==================== お問い合わせ ==================== */
.lpAruko-contact {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0 8px;
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-contactSection {
  background: #FFE5D4;
  padding: 32px;
}
.lpAruko-contactSection.lpAruko-contactSection--last {
  padding: 90px 0;
  text-align: center;
}
.lpAruko-contactSection.lpAruko-contactSection--last .lpAruko-contact__tagline img {
  display: block;
  margin: 0 auto 60px;
}
.lpAruko-contactSection.lpAruko-contactSection--last .lpAruko-contact__tagline h2 {
  color: #636366;
  font-size: 32px;
  line-height: 56px;
  margin: 0 auto 60px;
}

.lpAruko-contact__img {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-row: 1/3;
  grid-column: 1/2;
}
.lpAruko-contact__img img {
  display: block;
  margin: 0 auto;
}

.lpAruko-contact__title {
  grid-row: 1/2;
  grid-column: 2/3;
  padding: 0 24px;
  text-align: center;
}
.lpAruko-contact__title h2 {
  color: #1E1E1C;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 auto 24px;
}
.lpAruko-contact__title p {
  color: #636366;
  font-size: 18px;
  font-weight: 700;
  line-height: 31.5px;
}

.lpAruko-contact__button {
  grid-row: 2/3;
  grid-column: 2/3;
  padding: 0 24px;
}
.lpAruko-contact__button .lpAruko-btnPrimary,
.lpAruko-contact__button .lpAruko-btnSecondary {
  font-size: 18px;
  margin: 8px auto 0;
  height: 67px;
  width: 100%;
}

/* ==================== フェードイン ==================== */
.fadeUpTrigger {
  opacity: 0;
}
.fadeUpTrigger.fadeShow {
  animation-name: fadeYAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition: all 0.5s;
}

.fadeTriggerEach1,
.fadeTriggerEach2,
.fadeTriggerEach3,
.fadeTriggerEach4,
.fadeTriggerEach5 {
  opacity: 0;
}
.fadeTriggerEach1.fadeShow,
.fadeTriggerEach2.fadeShow,
.fadeTriggerEach3.fadeShow,
.fadeTriggerEach4.fadeShow,
.fadeTriggerEach5.fadeShow {
  animation-name: fadeXAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeTriggerEach1.fadeShow {
  animation-duration: 0.5s;
  transition: all 0.2s;
}

.fadeTriggerEach2.fadeShow {
  animation-duration: 1s;
  transition: all 0.2s;
}

.fadeTriggerEach3.fadeShow {
  animation-duration: 1.5s;
  transition: all 0.2s;
}

.fadeTriggerEach4.fadeShow {
  animation-duration: 2s;
  transition: all 0.2s;
}

.fadeTriggerEach5.fadeShow {
  animation-duration: 2.5s;
  transition: all 0.2s;
}

@keyframes fadeYAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeXAnime {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  50% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeLineTrigger {
  position: relative;
}
.fadeLineTrigger::after {
  content: " ";
  background: #F4AA3A;
  display: block;
  height: 4px;
  width: 0;
}
.fadeLineTrigger.fadeLine::after {
  transition: all 0.3s ease-out;
  width: 100%;
}

/* ==================== よくある質問 ==================== */
.lpAruko-faq {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-faqSection {
  background: #FFF4ED;
  padding: 90px 0;
}

.lpAruko-faq__title {
  text-align: center;
  margin: 0 auto 60px;
}
.lpAruko-faq__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.lpAruko-faq__wrap {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 16px;
  margin: 0 auto;
}
.lpAruko-faq__wrap input[type=radio] {
  display: none;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-otegaru + label {
  grid-row: 1/2;
  grid-column: 1/2;
  background: #E2F4D3;
  border: 2px solid #64B032;
  border-bottom: none;
  color: #4B8C24;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-otegaru:checked + label {
  background: #64B032;
  border-color: #64B032;
  color: #fff;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-otegaru:checked ~ #lpAruko-faq-otegaruContent {
  display: block;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-otegaru:checked ~ #lpAruko-faq-jujitsuContent {
  display: none;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-jujitsu + label {
  grid-row: 1/2;
  grid-column: 2/3;
  background: #DEF4FF;
  border: 2px solid #00ABE4;
  border-bottom: none;
  color: #0076AB;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-jujitsu:checked + label {
  background: #00ABE4;
  border-color: #00ABE4;
  color: #fff;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-jujitsu:checked ~ #lpAruko-faq-jujitsuContent {
  display: block;
}
.lpAruko-faq__wrap input[type=radio]#lpAruko-faq-jujitsu:checked ~ #lpAruko-faq-otegaruContent {
  display: none;
}
.lpAruko-faq__wrap label {
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 80px;
  width: 100%;
}
.lpAruko-faq__wrap .lpAruko-faq__content {
  background: #fff;
  border-radius: 0 0 16px 16px;
  display: none;
  grid-row: 2/3;
  grid-column: 1/3;
  padding: 32px 24px;
}
.lpAruko-faq__wrap .lpAruko-faq__content#lpAruko-faq-otegaruContent {
  border-top: 4px solid #64B032;
}
.lpAruko-faq__wrap .lpAruko-faq__content#lpAruko-faq-otegaruContent .lpAruko-faq__content__row li {
  background-image: url("../img/faq-otegaru.svg");
}
.lpAruko-faq__wrap .lpAruko-faq__content#lpAruko-faq-jujitsuContent {
  border-top: 4px solid #00ABE4;
}
.lpAruko-faq__wrap .lpAruko-faq__content#lpAruko-faq-jujitsuContent .lpAruko-faq__content__row li {
  background-image: url("../img/faq-jujitsu.svg");
}
.lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li {
  background-size: 44px 44px;
  background-position: left 16px top 24px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #F2F2F7;
  padding: 24px 16px 24px 0;
}
.lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li:last-child {
  border-bottom: none;
}
.lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li .lpAruko-faq__q {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 44px;
  margin: 0 0 8px;
  padding: 0 0 0 76px;
}
.lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li .lpAruko-faq__a {
  color: #636366;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0 0 0 76px;
}

/* ==================== サービス特徴 ==================== */
.lpAruko-feature {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
  width: 100%;
}

.lpAruko-featureSection {
  background: #FFFFFF;
  padding: 90px 0;
}

.lpAruko-feature__title {
  text-align: center;
  margin: 0 auto 60px;
}
.lpAruko-feature__title p {
  color: #636366;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
}
.lpAruko-feature__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
}

.lpAruko-feature__panel {
  display: grid;
  grid-template-columns: 330px auto;
  gap: 0 32px;
  margin: 0 auto 60px;
  max-width: 1024px;
  width: 100%;
}
.lpAruko-feature__panel .lpAruko-feature__panel__main {
  grid-row: 2/3;
  grid-column: 1/2;
}
.lpAruko-feature__panel .lpAruko-feature__panel__sub {
  grid-row: 1/2;
  grid-column: 2/3;
}
.lpAruko-feature__panel .lpAruko-feature__panel__text {
  grid-row: 2/3;
  grid-column: 2/3;
}
.lpAruko-feature__panel:nth-of-type(2n+1) {
  grid-template-columns: auto 330px;
}
.lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__main {
  grid-row: 1/3;
  grid-column: 2/3;
}
.lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__sub {
  grid-row: 1/2;
  grid-column: 1/2;
}
.lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__text {
  grid-row: 2/3;
  grid-column: 1/2;
}
.lpAruko-feature__panel .lpAruko-feature__panel__sub {
  margin: auto 0 20px;
  text-align: left;
}
.lpAruko-feature__panel .lpAruko-feature__panel__text {
  text-align: left;
}
.lpAruko-feature__panel .lpAruko-feature__panel__text h3 {
  color: #1E1E1C;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin: 20px 0 24px;
}
.lpAruko-feature__panel .lpAruko-feature__panel__text p {
  color: #636366;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 24px 0 0;
}
.lpAruko-feature__panel .lpAruko-feature__panel__text p small {
  color: #636366;
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}
.lpAruko-feature__block h3 {
  background: #FFF4ED;
  border-left: 6px solid #FF612A;
  color: #FE4411;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
  margin: 0 0 40px;
  padding: 8px 24px;
}
.lpAruko-feature__block p {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0 0 40px;
}

/* ========== サービス特徴：健康習慣化をサポート ========== */
.lpAruko-feature__support {
  border: 1px solid #D1D1D6;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px;
  padding: 24px;
  width: 100%;
}
.lpAruko-feature__support .lpAruko-feature__support__card {
  background: #F2F2F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 0 20%;
  position: relative;
  height: 300px;
  width: 20%;
}
.lpAruko-feature__support .lpAruko-feature__support__card:first-child {
  border-radius: 8px 0 0 8px;
}
.lpAruko-feature__support .lpAruko-feature__support__card:first-child::after, .lpAruko-feature__support .lpAruko-feature__support__card:first-child::before {
  display: none;
}
.lpAruko-feature__support .lpAruko-feature__support__card:last-child {
  background: #FFE5D4;
  border-radius: 0 8px 8px 0;
}
.lpAruko-feature__support .lpAruko-feature__support__card:last-child::after {
  background-image: url("../img/support-card-after--last-pc.svg");
}
.lpAruko-feature__support .lpAruko-feature__support__card:last-child p {
  color: #FE4411;
}
.lpAruko-feature__support .lpAruko-feature__support__card::before {
  background: url("../img/support-card-before-pc.svg") #fff no-repeat 0 0;
  background-size: 20px 300px;
  content: " ";
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  height: 300px;
  width: 20px;
}
.lpAruko-feature__support .lpAruko-feature__support__card::after {
  background: url("../img/support-card-after-pc.svg") #F2F2F7 no-repeat 0 0;
  background-size: 20px 300px;
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 300px;
  width: 20px;
}
.lpAruko-feature__support .lpAruko-feature__support__card img {
  display: block;
  margin: 0 auto 24px;
}
.lpAruko-feature__support .lpAruko-feature__support__card p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

/* ========== サービス特徴：管理ツール ========== */
.lpAruko-feature__tool {
  border: 1px solid #D1D1D6;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 0 16px;
  margin: 0 auto 60px;
  padding: 24px;
  width: 100%;
}
.lpAruko-feature__tool .lpAruko-feature__tool__card {
  flex: 1 0;
  position: relative;
  height: 418px;
  width: 33.3333333333%;
}
.lpAruko-feature__tool .lpAruko-feature__tool__card h4 {
  background: #F2F2F7;
  border-radius: 8px;
  color: #1E1E1C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 0 auto 16px;
  text-align: center;
  height: 80px;
}
.lpAruko-feature__tool .lpAruko-feature__tool__card img {
  display: block;
  margin: 0 auto 16px;
}
.lpAruko-feature__tool .lpAruko-feature__tool__card p {
  color: #1E1E1C;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0 0 4px;
}
.lpAruko-feature__tool .lpAruko-feature__tool__card small {
  color: #636366;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

/* ========== サービス特徴：プラン比較 ========== */
.lpAruko-feature__plan {
  margin: 0 -16px 56px;
}
.lpAruko-feature__plan table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 16px 4px;
  width: 100%;
}
.lpAruko-feature__plan table thead tr th {
  border-radius: 8px 8px 0 0;
  padding: 22px 0;
  text-align: center;
  width: 157px;
}
.lpAruko-feature__plan table thead tr th p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  margin: 0 auto 20px;
}
.lpAruko-feature__plan table thead tr th h4 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 26px;
}
.lpAruko-feature__plan table thead tr th.otegaru {
  background: #64B032;
  width: auto;
}
.lpAruko-feature__plan table thead tr th.jujitsu {
  background: #00ABE4;
  width: auto;
}
.lpAruko-feature__plan table tbody tr th {
  background: #F2F2F7;
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  padding: 24px 0;
  text-align: center;
  width: 157px;
}
.lpAruko-feature__plan table tbody tr td {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  padding: 24px 0;
  text-align: center;
}
.lpAruko-feature__plan table tbody tr td span.num {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}
.lpAruko-feature__plan table tbody tr td span.num.slush {
  position: relative;
}
.lpAruko-feature__plan table tbody tr td span.num.slush::after {
  content: " ";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 32px;
  left: -4px;
  transform: rotate(9deg);
  height: 2px;
  width: 130%;
  z-index: 1;
}
.lpAruko-feature__plan table tbody tr td p.campaign {
  margin: 10px auto 0;
  text-align: center;
}
.lpAruko-feature__plan table tbody tr td p.campaign span.label {
  background: #0076AB;
  border-radius: 50px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.04em;
  margin: 0 auto 4px;
  padding: 0 10px;
  height: 36px;
}
.lpAruko-feature__plan table tbody tr td p.campaign strong {
  color: #0076AB;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.04em;
}
.lpAruko-feature__plan table tbody tr td span.unit {
  font-size: 30px;
  font-weight: 900;
  line-height: 39px;
}
.lpAruko-feature__plan table tbody tr td span.cross {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
}
.lpAruko-feature__plan table tbody tr td span.cross i {
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../img/icons/table-x.svg");
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-image: url("../img/icons/table-x.svg");
  height: 33px;
  width: 33px;
}
.lpAruko-feature__plan table tbody tr td span.circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
}
.lpAruko-feature__plan table tbody tr td span.circle i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("../img/icons/table-o.svg");
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-image: url("../img/icons/table-o.svg");
  height: 40px;
  width: 40px;
}
.lpAruko-feature__plan table tbody tr td small {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 4px 0 0;
}
.lpAruko-feature__plan table tbody tr td img {
  display: block;
  margin: 0 auto;
}
.lpAruko-feature__plan table tbody tr td.otegaru {
  background: #E2F4D3;
}
.lpAruko-feature__plan table tbody tr td.otegaru span.num,
.lpAruko-feature__plan table tbody tr td.otegaru span.unit,
.lpAruko-feature__plan table tbody tr td.otegaru small {
  color: #4B8C24;
}
.lpAruko-feature__plan table tbody tr td.otegaru span.circle i {
  background: #4B8C24;
}
.lpAruko-feature__plan table tbody tr td.otegaru span.cross i {
  background: #AEDA8D;
}
.lpAruko-feature__plan table tbody tr td.jujitsu {
  background: #DEF4FF;
}
.lpAruko-feature__plan table tbody tr td.jujitsu span.num,
.lpAruko-feature__plan table tbody tr td.jujitsu span.unit,
.lpAruko-feature__plan table tbody tr td.jujitsu small {
  color: #0076AB;
}
.lpAruko-feature__plan table tbody tr td.jujitsu span.circle i {
  background: #0076AB;
}
.lpAruko-feature__plan table tbody tr:first-child th {
  border-radius: 8px 0 0 0;
}
.lpAruko-feature__plan table tbody tr:last-child th {
  border-radius: 0 0 0 8px;
}
.lpAruko-feature__plan table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

/* ========== サービス特徴：充実プラン ========== */
.lpAruko-feature__jujitsu-description {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 24px;
  margin: 0 auto 32px;
}
.lpAruko-feature__jujitsu-description::before {
  background: url("../img/feature-jujitsu-plan.png") no-repeat 0 0;
  background-size: 100%;
  content: " ";
  display: block;
  grid-row: 1/3;
  grid-column: 1/2;
  height: 193px;
  width: 330px;
}
.lpAruko-feature__jujitsu-description h3 {
  grid-row: 1/2;
  grid-column: 2/3;
  color: #0076AB;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: auto 0 16px;
}
.lpAruko-feature__jujitsu-description h3 strong {
  display: inline-block;
}
.lpAruko-feature__jujitsu-description p {
  grid-row: 2/3;
  grid-column: 2/3;
  color: #636366;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 auto;
  text-align: left;
}

.lpAruko-feature__jujitsu-price {
  border: 1px solid #D1D1D6;
  padding: 24px;
  width: 100%;
}
.lpAruko-feature__jujitsu-price p {
  color: #636366;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 0 auto 24px;
}
.lpAruko-feature__jujitsu-price table {
  border: 1px solid #D1D1D6;
  table-layout: fixed;
  width: 100%;
}
.lpAruko-feature__jujitsu-price table th {
  background: #DEF4FF;
  color: #0076AB;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  height: 51px;
  text-align: center;
}
.lpAruko-feature__jujitsu-price table td {
  background: #FFFFFF;
  color: #636366;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  padding: 4px 0;
  height: 51px;
  text-align: center;
}
.lpAruko-feature__jujitsu-price table td:last-child .td-inner {
  border-right: none;
}
.lpAruko-feature__jujitsu-price table td .td-inner {
  border-right: 1px solid #F2F2F7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.lpAruko-feature__jujitsu-price table td .slush {
  position: relative;
}
.lpAruko-feature__jujitsu-price table td .slush::after {
  content: " ";
  display: block;
  background: #636366;
  position: absolute;
  top: 14px;
  right: -3px;
  height: 1px;
  width: 110%;
  z-index: 1;
}
.lpAruko-feature__jujitsu-price table td i {
  font-style: normal;
  margin: 0 7px 0 12px;
}
.lpAruko-feature__jujitsu-price table td .campaign {
  color: #FF612A;
  font-weight: 700;
}
.lpAruko-feature__jujitsu-price table tr:nth-child(2n) td {
  background: #F7F7FA;
}
.lpAruko-feature__jujitsu-price > small {
  color: #636366;
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.04em;
  margin: 10px 0 0;
  text-align: left;
}

/* ==================== 導入事例 ==================== */
.lpAruko-flow {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
}

.lpAruko-flowSection {
  background: #fff;
  padding: 90px 0;
}

.lpAruko-flow__title {
  text-align: center;
  margin: 0 auto 60px;
}
.lpAruko-flow__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.lpAruko-flow__card__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card {
  width: 20%;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card:first-child h3 {
  border-radius: 8px 0 0 8px;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card:first-child h3::after, .lpAruko-flow__card__wrap .lpAruko-flow__card:first-child h3::before {
  display: none;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card:last-child h3 {
  border-radius: 0 8px 8px 0;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card h3 {
  background: #F2F2F7;
  color: #1E1E1C;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin: 0 auto 16px;
  height: 64px;
  text-align: center;
  position: relative;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card h3::before {
  background: url("../img/flow-title-before.svg") #fff no-repeat 0 0;
  background-size: 12px 64px;
  content: " ";
  display: block;
  margin: 0;
  position: absolute;
  left: -12px;
  top: 0;
  height: 64px;
  width: 12px;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card h3::after {
  background: url("../img/flow-title-after.svg") #F2F2F7 no-repeat 0 0;
  background-size: 12px 64px;
  content: " ";
  display: block;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 64px;
  width: 12px;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card img {
  display: block;
  margin: 16px auto;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin: 0 auto 8px;
  padding: 0 16px;
  text-align: left;
}
.lpAruko-flow__card__wrap .lpAruko-flow__card small {
  color: #636366;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding: 0 16px;
  text-align: left;
}

/* ==================== HERO ==================== */
.lpAruko-hero {
  margin: 0 auto;
  padding: 16px 0 40px;
}

.lpAruko-heroSection {
  background: #FFF4ED;
}

.lpAruko-hero__subtitle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  max-width: 753px;
  width: 100%;
}
.lpAruko-hero__subtitle::before {
  background: url("../img/hero-subtitle.svg") no-repeat 0 0;
  background-size: 100%;
  content: " ";
  display: block;
  margin: 0 24px 0 0;
  height: 73px;
  width: 64px;
}
.lpAruko-hero__subtitle::after {
  background: #FFE5D4;
  content: " ";
  display: block;
  margin: auto;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 48px;
  width: 100%;
  z-index: -1;
}
.lpAruko-hero__subtitle img {
  margin: 0 20px 0 0;
  flex: 0 0 64px;
  height: auto;
  width: 64px;
}
.lpAruko-hero__subtitle p {
  color: #1E1E1C;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

.lpAruko-hero__title {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 753px;
  width: 100%;
}
.lpAruko-hero__title h1 {
  margin: 0 auto 20px;
}
.lpAruko-hero__title h1 img {
  display: block;
  margin: 0 auto;
}
.lpAruko-hero__title p {
  color: #636366;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 auto;
  white-space: nowrap;
}

.lpAruko-hero__img {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template:
    'Otegaru Main jujitsu' auto /
    minmax(0, 1fr) 252px minmax(0, 1fr);
  gap: 0 32px;
  margin: 0 auto;
  padding: 0 12px;
  max-width: 1096px;
  width: 100%;
  opacity: 0;
  animation: heroFade 0.5s 0.2s forwards;
  -webkit-animation: heroFade 0.5s 0.2s forwards;
  -moz-animation: heroFade 0.5s 0.2s forwards;
}
.lpAruko-hero__img .lpAruko-hero__img__main {
  grid-area: Main;
  text-align: center;
  height: 480px;
  width: 252px;
}
.lpAruko-hero__img .lpAruko-hero__img__main img {
  height: 100%;
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru {
  grid-area: Otegaru;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  margin: auto 0;
  padding: 24px;
  position: relative;
  text-align: center;
  height: auto;
  width: 100%;
  z-index: 0;
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru::before {
  background: url("../img/hero-baloon.png") no-repeat 0 0;
  background-size: contain;
  content: " ";
  display: block;
  position: absolute;
  top: 85px;
  right: -21px;
  height: 34px;
  width: 23px;
  z-index: -1;
  transform: scale(-1, 1);
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru h2 {
  background: #64B032;
  border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin: 0 0 16px;
  height: 62px;
  width: 100%;
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru p {
  color: #1E1E1C;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin: 0 0 12px;
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru p.price__sub {
  color: #FF612A;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin: 0;
}
.lpAruko-hero__img .lpAruko-hero__img__otegaru p.price {
  color: #FF612A;
  font-size: 53px;
  font-weight: 700;
  line-height: 68px;
  margin: 12px 0;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu {
  grid-area: jujitsu;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  margin: auto 0;
  padding: 24px;
  position: relative;
  text-align: center;
  height: auto;
  width: 100%;
  z-index: 0;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu::before {
  background: url("../img/hero-baloon.png") no-repeat 0 0;
  background-size: contain;
  content: " ";
  display: block;
  position: absolute;
  top: 85px;
  left: -21px;
  height: 34px;
  width: 23px;
  z-index: -1;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu h2 {
  background: #00ABE4;
  border-radius: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin: 0 0 16px;
  height: 62px;
  width: 100%;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu p {
  color: #1E1E1C;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin: 0 0 12px;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price {
  color: #FF612A;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin: 0 0 12px;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price .circle {
  background: #FF612A;
  border-radius: 35px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 70px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.08em;
  margin: 0 8px 0 0;
  height: 70px;
  width: 70px;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price .num {
  font-size: 53px;
  font-weight: 700;
  line-height: 68px;
  margin: 0 6px 0 0;
}
.lpAruko-hero__img .lpAruko-hero__img__jujitsu img {
  margin: 0 auto;
  height: 140px;
  width: 140px;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================== 導入企業スクロール ==================== */
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.lpAruko-hero-scroll {
  background: #fff;
  margin: 0 auto;
  padding: 24px 0 40px;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__title {
  text-align: center;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__title p {
  color: #1E1E1C;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 20px;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__title p strong {
  color: #FE4411;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0.4rem;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__title p strong span {
  color: #FE4411;
  font-size: 56px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0.2rem;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__title p small {
  color: #636366;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients {
  overflow: hidden;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner {
  display: flex;
  height: 40px;
  min-width: 6144px;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span {
  height: 40px;
  width: 3072px;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span:first-child {
  animation: loop 120s -60s linear infinite;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span:last-child {
  animation: loop2 120s linear infinite;
}
.lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span img {
  display: block;
  height: 40px;
  width: 3056px;
}

/* ==================== お悩み解決 ==================== */
.lpAruko-solution {
  margin: 0 auto;
  padding: 0;
  max-width: 1024px;
  width: 100%;
}

.lpAruko-solutionSection {
  background: #FFF4ED;
  padding: 90px 0;
}

.lpAruko-solution__title {
  text-align: center;
  margin: 0 auto 32px;
}
.lpAruko-solution__title p {
  color: #636366;
  font-size: 24px;
  font-weight: 700;
  line-height: 42px;
}
.lpAruko-solution__title h2 {
  color: #1E1E1C;
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
}

.lpAruko-solution__cardWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card {
  background: #fff;
  margin: 32px 0 0;
  padding: 16px;
  width: calc(50% - 8px);
}
.lpAruko-solution__cardWrap .lpAruko-solution__card h3 {
  color: #1E1E1C;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  margin: 0 0 16px;
  padding: 8px 0;
  width: 100%;
  vertical-align: bottom;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card h3 span {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--01 h3 {
  background: #FCECC9;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--01 h3 span {
  color: #D1600E;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--02 h3 {
  background: #E2F4D3;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--02 h3 span {
  color: #4B8C24;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--03 h3 {
  background: #D5F3F8;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--03 h3 span {
  color: #0076AB;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--04 h3 {
  background: #DAE2FF;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card.lpAruko-solution__card--04 h3 span {
  color: #5146E5;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card h4 {
  color: #FF612A;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  margin: 0 0 24px;
  padding: 0 16px;
  width: 100%;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card p {
  color: #636366;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  margin: 0 0 16px;
  padding: 0 16px;
  width: 100%;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__problem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
  padding: 10px 16px;
  height: 120px;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__chara {
  flex: 0 0 100px;
  height: 100px;
  width: 100px;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__baloon {
  box-shadow: 0px 0px 2px 0px #68686D;
  border-radius: 16px;
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin: 0 0 0 32px;
  padding: 16px 12px;
  position: relative;
  z-index: 1;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__baloon::before {
  background: url("../img/solution-baloon.png") no-repeat 0 0;
  background-size: contain;
  content: " ";
  display: block;
  position: absolute;
  top: 20px;
  left: -19.2px;
  height: 33px;
  width: 22px;
  z-index: -1;
}
.lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__img {
  margin: 0 auto 24px;
  padding: 0 16px;
  text-align: center;
  height: 180px;
  width: auto;
}

@media screen and (max-width: 780px) {
  body {
    min-height: 100vh;
    min-height: 100svh;
  }
  .lpAruko-btnLink {
    background-position: right 4px top 55%;
    font-size: 14px;
    line-height: 21px;
    padding: 0 36px 0 12px;
  }
  .lpAruko-carousel__inner .slick-arrow {
    bottom: -104px;
  }
  .lpAruko-carousel__inner .slick-arrow.slick-prev {
    left: 20px;
  }
  .lpAruko-carousel__inner .slick-arrow.slick-next {
    right: 20px;
  }
  .lpAruko-carousel__inner .slick-dots {
    bottom: -58px;
  }
  .lpAruko-carousel__inner .slick-dots li {
    overflow: hidden;
  }
  .lpAruko-casestudySection {
    padding: 60px 0 140px;
  }
  .lpAruko-casestudy__title {
    margin: 0 auto 32px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-casestudy__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-clientsSection {
    padding: 60px 0;
  }
  .lpAruko-clients__title {
    margin: 0 auto 24px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-clients__title h2 {
    font-size: 18px;
    line-height: 27px;
    margin: 0 auto 16px;
  }
  .lpAruko-clients__title h2 strong {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0.2rem;
  }
  .lpAruko-clients__title h2 strong span {
    font-size: 32px;
    line-height: 27px;
    margin: 0 0.1rem;
  }
  .lpAruko-clients__title p {
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    margin: 0 auto;
  }
  .lpAruko-clients__panel {
    max-width: 350px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__title {
    display: block;
    text-align: center;
    margin: 0 auto 24px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__title::before {
    margin: 0 auto 16px;
    height: 120px;
    width: 171px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__title p {
    font-size: 18px;
    line-height: 31.5px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__panel {
    display: block;
    margin: 0 auto;
    max-width: 350px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__panel img {
    margin: 0 auto 32px;
    height: 120px;
    width: 120px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__baloon {
    margin: auto;
    padding: 24px 16px;
    max-width: 302px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__baloon::before {
    top: -26px;
    left: 40px;
    transform: scale(1, 1) rotate(90deg);
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__baloon h4 {
    font-size: 14px;
    line-height: 24.5px;
  }
  .lpAruko-clients__recommended .lpAruko-clients__recommended__baloon p {
    font-size: 14px;
    line-height: 24.5px;
  }
  .lpAruko-clients__recommended small {
    margin: 12px auto 0;
    text-align: left;
    max-width: 302px;
  }
  .lpAruko-companySection {
    padding: 60px 0;
  }
  .lpAruko-company__title {
    margin: 0 auto 24px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-company__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-company__logo {
    margin: 0 auto 8px;
    height: 78px;
  }
  .lpAruko-company__name {
    margin: 0 auto 24px;
    height: 25px;
  }
  .lpAruko-company__name p {
    font-size: 14px;
    line-height: 24.5px;
  }
  .lpAruko-company__panel {
    padding: 24px 16px;
    max-width: 350px;
  }
  .lpAruko-company__panel img {
    margin: 0 auto 24px;
    height: 100px;
    width: auto;
  }
  .lpAruko-company__panel h3 {
    font-size: 16px;
    line-height: 28px;
    margin: 0 auto 12px;
    text-align: left;
  }
  .lpAruko-company__panel h3 small {
    font-size: 10px;
    line-height: 17.5px;
  }
  .lpAruko-company__panel h3 strong {
    font-size: 16px;
    line-height: 28px;
  }
  .lpAruko-company__panel p {
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
  }
  .lpAruko-company__panel p.lpAruko-company__link {
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    text-align: left;
  }
  .lpAruko-contact {
    grid-template-columns: auto;
    gap: 0;
    padding: 0;
    max-width: 350px;
  }
  .lpAruko-contactSection {
    padding: 24px 20px;
  }
  .lpAruko-contactSection.lpAruko-contactSection--last {
    padding: 60px 20px;
  }
  .lpAruko-contactSection.lpAruko-contactSection--last .lpAruko-contact__tagline img {
    margin: 0 auto 24px;
  }
  .lpAruko-contactSection.lpAruko-contactSection--last .lpAruko-contact__tagline h2 {
    font-size: 14px;
    line-height: 24.5px;
    margin: 0 auto 40px;
  }
  .lpAruko-contact__img {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0 auto 16px;
  }
  .lpAruko-contact__title {
    grid-row: 2/3;
    grid-column: 1/2;
    padding: 0 0 8px;
  }
  .lpAruko-contact__title h2 {
    font-size: 18px;
    line-height: 31.5px;
    margin: 0;
  }
  .lpAruko-contact__title p {
    font-size: 12px;
    line-height: 21px;
  }
  .lpAruko-contact__button {
    grid-row: 3/4;
    grid-column: 1/2;
    padding: 0;
    text-align: center;
  }
  .lpAruko-contact__button .lpAruko-btnPrimary,
  .lpAruko-contact__button .lpAruko-btnSecondary {
    font-size: 16px;
    height: 48px;
    max-width: 350px;
  }
  .lpAruko-contact__button .lpAruko-btnSecondary {
    font-size: 18px;
  }
  .fadeTriggerEach1.fadeShow {
    animation-duration: 0.2s;
  }
  .fadeTriggerEach2.fadeShow {
    animation-duration: 0.2s;
  }
  .fadeTriggerEach3.fadeShow {
    animation-duration: 0.2s;
  }
  .fadeTriggerEach4.fadeShow {
    animation-duration: 0.2s;
  }
  .fadeTriggerEach5.fadeShow {
    animation-duration: 0.2s;
  }
  @keyframes fadeYAnime {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    50% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeXAnime {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    50% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeLineTrigger::after {
    height: 2px;
  }
  .lpAruko-faqSection {
    padding: 60px 0;
  }
  .lpAruko-faq__title {
    margin: 0 auto 32px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-faq__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-faq__wrap {
    gap: 0 8px;
    padding: 0 20px;
    max-width: 390px;
    width: 100%;
  }
  .lpAruko-faq__wrap label {
    font-size: 16px;
    line-height: 24px;
    height: 52px;
  }
  .lpAruko-faq__wrap .lpAruko-faq__content {
    padding: 16px;
  }
  .lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li {
    background-size: 32px 32px;
    background-position: left 0 top 24px;
    padding: 24px 0 24px 0;
  }
  .lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li .lpAruko-faq__q {
    font-size: 16px;
    line-height: 24px;
    padding: 3px 0 0 44px;
    min-height: 32px;
  }
  .lpAruko-faq__wrap .lpAruko-faq__content .lpAruko-faq__content__row li .lpAruko-faq__a {
    font-size: 14px;
    line-height: 21px;
    padding: 0;
  }
  .lpAruko-featureSection {
    padding: 60px 0;
  }
  .lpAruko-feature__title {
    margin: 0 auto 32px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-feature__title p {
    font-size: 14px;
    line-height: 24.5px;
  }
  .lpAruko-feature__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-feature__panel {
    grid-template-columns: auto auto;
    gap: 0 16px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__main {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__sub {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .lpAruko-feature__panel:nth-of-type(2n+1) {
    grid-template-columns: auto auto;
  }
  .lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__main {
    grid-row: 1/2;
    grid-column: 1/3;
    margin: 0 0 32px;
  }
  .lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__sub {
    grid-row: 2/3;
    grid-column: 1/3;
    margin: 0;
  }
  .lpAruko-feature__panel:nth-of-type(2n+1) .lpAruko-feature__panel__text {
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__main {
    margin: auto;
    text-align: center;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__sub {
    margin: auto;
    text-align: center;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__text h3 {
    font-size: 18px;
    line-height: 27px;
    margin: 32px 0 16px;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__text p {
    font-size: 14px;
    line-height: 21px;
    margin: 16px 0 0;
  }
  .lpAruko-feature__panel .lpAruko-feature__panel__text p.lpAruko-feature__panel__chart {
    text-align: center;
  }
  .lpAruko-feature__block {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 390px;
  }
  .lpAruko-feature__block h3 {
    border-left: 4px solid #FF612A;
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 32px;
    padding: 8px 16px;
  }
  .lpAruko-feature__block p {
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 32px;
  }
  .lpAruko-feature__support {
    flex-direction: column;
    padding: 16px;
    max-width: 350px;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex: 1 0 150px;
    height: 150px;
    max-width: 318px;
    width: 100%;
    overflow: hidden;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card:first-child {
    border-radius: 8px 8px 0 0;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card:first-child::before {
    display: block;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card:last-child {
    border-radius: 0 0 8px 8px;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card:last-child::after {
    background-image: url("../img/support-card-after--last-sp.svg");
  }
  .lpAruko-feature__support .lpAruko-feature__support__card:last-child::before {
    display: none;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card::before {
    background-image: url("../img/support-card-before-sp.svg");
    background-size: 318px 16px;
    margin: 0 auto;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
    width: 318px;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card::after {
    background-image: url("../img/support-card-after-sp.svg");
    background-size: 318px 16px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    width: 318px;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card img {
    margin: 0;
  }
  .lpAruko-feature__support .lpAruko-feature__support__card p {
    text-align: left;
  }
  .lpAruko-feature__tool {
    flex-direction: column;
    gap: 32px 0;
    padding: 16px;
    max-width: 350px;
  }
  .lpAruko-feature__tool .lpAruko-feature__tool__card {
    width: 100%;
  }
  .lpAruko-feature__tool .lpAruko-feature__tool__card h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 8px auto 16px;
    padding: 8px 0;
    height: auto;
  }
  .lpAruko-feature__tool .lpAruko-feature__tool__card img {
    margin: 0 auto 8px;
  }
  .lpAruko-feature__plan {
    margin: 0 auto 60px;
    max-width: 350px;
  }
  .lpAruko-feature__plan table {
    border-spacing: 1px 2px;
  }
  .lpAruko-feature__plan table thead tr th {
    padding: 12px 0;
    width: 64px;
  }
  .lpAruko-feature__plan table thead tr th p {
    font-size: 10px;
    line-height: 13px;
    margin: 0 auto 8px;
  }
  .lpAruko-feature__plan table thead tr th h4 {
    font-size: 16px;
    line-height: 16px;
  }
  .lpAruko-feature__plan table thead tr th.otegaru {
    width: auto;
  }
  .lpAruko-feature__plan table thead tr th.jujitsu {
    width: auto;
  }
  .lpAruko-feature__plan table tbody tr th {
    font-size: 10px;
    line-height: 15px;
    width: 64px;
  }
  .lpAruko-feature__plan table tbody tr td {
    font-size: 12px;
    line-height: 18px;
    padding: 12px 0;
  }
  .lpAruko-feature__plan table tbody tr td span.num {
    font-size: 24px;
    line-height: 31.2px;
  }
  .lpAruko-feature__plan table tbody tr td span.num.slush::after {
    top: 18px;
    left: 0;
    transform: rotate(0deg);
    width: 120%;
  }
  .lpAruko-feature__plan table tbody tr td p.campaign span.label {
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.04em;
    padding: 0 8px;
    height: 18px;
  }
  .lpAruko-feature__plan table tbody tr td p.campaign strong {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
  }
  .lpAruko-feature__plan table tbody tr td span.unit {
    font-size: 16px;
    line-height: 20.8px;
  }
  .lpAruko-feature__plan table tbody tr td span.cross {
    height: 40px;
    width: 40px;
  }
  .lpAruko-feature__plan table tbody tr td span.cross i {
    height: 23px;
    width: 23px;
  }
  .lpAruko-feature__plan table tbody tr td span.circle {
    height: 40px;
    width: 40px;
  }
  .lpAruko-feature__plan table tbody tr td span.circle i {
    height: 29px;
    width: 29px;
  }
  .lpAruko-feature__plan table tbody tr td small {
    font-size: 12px;
    line-height: 18px;
  }
  .lpAruko-feature__jujitsu-description {
    grid-template-columns: auto;
    gap: 0;
    text-align: center;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-feature__jujitsu-description::before {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0 auto 16px;
    height: 163px;
    width: 280px;
  }
  .lpAruko-feature__jujitsu-description h3 {
    grid-row: 2/3;
    grid-column: 1/2;
    font-size: 17.5px;
    line-height: 27px;
    margin: 0 0 12px;
  }
  .lpAruko-feature__jujitsu-description p {
    grid-row: 3/4;
    grid-column: 1/2;
    font-size: 14px;
    line-height: 21px;
  }
  .lpAruko-feature__jujitsu-price {
    margin: 0 auto;
    padding: 12px;
    max-width: 350px;
  }
  .lpAruko-feature__jujitsu-price p {
    font-size: 14px;
    line-height: 21px;
  }
  .lpAruko-feature__jujitsu-price table th {
    font-size: 12px;
    line-height: 18px;
    height: 42px;
  }
  .lpAruko-feature__jujitsu-price table td {
    font-size: 12px;
    line-height: 18px;
    height: 42px;
  }
  .lpAruko-feature__jujitsu-price table td .td-inner {
    flex-direction: column;
  }
  .lpAruko-feature__jujitsu-price table td .slush::after {
    top: 9px;
    right: -2px;
    width: 110%;
  }
  .lpAruko-feature__jujitsu-price table td i {
    color: #636366;
    font-size: 10px;
    line-height: 8px;
    margin: 0;
  }
  .lpAruko-flowSection {
    padding: 60px 0 36px;
  }
  .lpAruko-flow__title {
    margin: 0 auto 32px;
    padding: 0 20px;
    max-width: 390px;
  }
  .lpAruko-flow__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-flow__card__wrap {
    flex-direction: column;
    margin: 0 auto;
    max-width: 342px;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card {
    margin: 0 auto 24px;
    width: 100%;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card:first-child h3 {
    border-radius: 8px;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card:last-child h3 {
    border-radius: 8px;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card h3 {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 auto 8px;
    height: 40px;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card h3::before {
    display: none;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card h3::after {
    display: none;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card img {
    margin: 8px auto;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card p {
    padding: 0;
  }
  .lpAruko-flow__card__wrap .lpAruko-flow__card small {
    padding: 0;
  }
  .lpAruko-footer {
    padding: 32px 0;
  }
  .lpAruko-footer .lpAruko-footer__container {
    flex-direction: column;
    padding: 0 20px;
    max-width: 390px;
    text-align: center;
  }
  .lpAruko-footer .lpAruko-footer__brand {
    margin: 0 auto 24px;
  }
  .lpAruko-footer p {
    font-size: 10px;
    line-height: 15px;
  }
  .lpAruko-header {
    height: 52px;
  }
  .lpAruko-header__container {
    justify-content: center;
    padding: 0 12px;
  }
  .lpAruko-header__brand {
    flex: 0 0 150px;
    margin: 0;
    height: 44px;
    width: 150px;
  }
  .lpAruko-header__brand img {
    height: 28px;
  }
  .lpAruko-header__toggle:checked + .lpAruko-header__toggle__button + .lpAruko-header__nav {
    height: 487px;
  }
  .lpAruko-header__toggle:checked ~ .lpAruko-header__cover {
    background: #000;
    content: " ";
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 99;
  }
  .lpAruko-header__nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lpAruko-header__toggle__button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    height: 44px;
    width: 44px;
  }
  .lpAruko-header__nav {
    background: #fff;
    justify-content: flex-start;
    flex-direction: column;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .lpAruko-navlist {
    justify-content: flex-start;
    flex-direction: column;
  }
  .lpAruko-navlist li {
    border-top: 1px solid #D1D1D6;
    border-bottom: 1px solid #D1D1D6;
    justify-content: flex-start;
    padding: 16px 0;
    width: 100%;
  }
  .lpAruko-navlist li a:not(.lpAruko-btnPrimary, .lpAruko-btnSecondary) {
    background: url("../img/icons/chevron.svg") no-repeat right 16px top 50%;
    background-size: 24px 24px;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
    width: 100%;
  }
  .lpAruko-header__contact {
    display: block;
    margin: 0 auto;
    padding: 0;
    padding: 32px 24px;
  }
  .lpAruko-hero {
    padding: 11px 0 0;
  }
  .lpAruko-hero__subtitle {
    margin: 0 auto 16px;
    padding: 0 24px;
    max-width: 390px;
  }
  .lpAruko-hero__subtitle::before {
    margin: 0 8px 0 0;
    height: 46px;
    width: 40px;
  }
  .lpAruko-hero__subtitle::after {
    height: 32px;
    width: calc(100% - 48px);
  }
  .lpAruko-hero__subtitle img {
    margin: 0 8px 0 0;
    flex: 0 0 40px;
    height: auto;
    width: 40px;
  }
  .lpAruko-hero__subtitle p {
    font-size: 16px;
    line-height: 34px;
  }
  .lpAruko-hero__title {
    margin: 0 auto 24px;
    padding: 0;
    max-width: 390px;
  }
  .lpAruko-hero__title h1 {
    margin: 0 auto 8px;
    padding: 8px;
  }
  .lpAruko-hero__title p {
    font-size: 12px;
    line-height: 18px;
  }
  .lpAruko-hero__img {
    grid-template:
      'Otegaru Main jujitsu' auto /
      minmax(0, 1fr) 0 minmax(0, 1fr);
    gap: 0 4px;
    padding: 0 10px;
    max-width: 350px;
    width: 100%;
  }
  .lpAruko-hero__img .lpAruko-hero__img__main {
    grid-row: 2/3;
    grid-column: 1/4;
    margin: auto;
    height: 282px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru {
    border-radius: 8px;
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0 0 24px auto;
    padding: 0;
    height: 170px;
    max-width: 170px;
    width: 100%;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru::before {
    height: 27px;
    width: 17px;
    margin: 0 auto;
    top: auto;
    bottom: -20px;
    right: 0;
    left: 0;
    transform: scale(1, -1) rotate(90deg);
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru h2 {
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 12px;
    height: 43px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 6px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru p.price__sub {
    font-size: 12px;
    line-height: 20px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru p.price {
    font-size: 32px;
    line-height: 41px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__otegaru img {
    display: none;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu {
    border-radius: 8px;
    grid-row: 1/2;
    grid-column: 3/4;
    margin: 0 0 24px;
    padding: 0;
    height: 170px;
    max-width: 170px;
    width: 100%;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu::before {
    height: 27px;
    width: 17px;
    margin: 0 auto;
    top: auto;
    bottom: -20px;
    left: 0;
    right: 0;
    transform: rotate(-90deg);
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu h2 {
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 12px;
    height: 43px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 6px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price {
    display: block;
    font-size: 16px;
    line-height: 16px;
    margin: 0 auto;
    text-align: left;
    width: 128px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price .circle {
    flex: 0 0 60px;
    font-size: 10px;
    line-height: 12px;
    margin: 0 auto -4px 0;
    height: 15px;
    width: 60px;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu p.price .num {
    font-size: 32px;
    line-height: 41px;
    margin: 0 2px 0 0;
  }
  .lpAruko-hero__img .lpAruko-hero__img__jujitsu img {
    display: none;
  }
  .lpAruko-hero-scroll {
    padding: 10px 0 16px;
  }
  .lpAruko-hero-scroll .lpAruko-hero-scroll__title p {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 10px;
  }
  .lpAruko-hero-scroll .lpAruko-hero-scroll__title p strong {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0.2rem;
  }
  .lpAruko-hero-scroll .lpAruko-hero-scroll__title p strong span {
    font-size: 32px;
    line-height: 48px;
    margin: 0 0.1rem;
  }
  .lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span:first-child {
    animation: loop 160s -80s linear infinite;
  }
  .lpAruko-hero-scroll .lpAruko-hero-scroll__clients .lpAruko-hero-scroll__clients__inner span:last-child {
    animation: loop2 160s linear infinite;
  }
  .lpAruko-main {
    min-width: 100%;
  }
  .only-pc {
    display: none !important;
  }
  .lpAruko-solutionSection {
    padding: 60px 0;
  }
  .lpAruko-solution__title {
    margin: 0 auto 16px;
  }
  .lpAruko-solution__title p {
    font-size: 14px;
    line-height: 24.5px;
  }
  .lpAruko-solution__title h2 {
    font-size: 24px;
    line-height: 42px;
  }
  .lpAruko-solution__cardWrap {
    flex-direction: column;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card {
    margin: 16px auto 0;
    max-width: 342px;
    width: 100%;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card h3 span {
    font-size: 24px;
    line-height: 36px;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card h4 {
    font-size: 18px;
    line-height: 27px;
    padding: 0;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card p {
    font-size: 14px;
    line-height: 21px;
    padding: 0;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__problem {
    align-items: flex-start;
    padding: 0;
    height: auto;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__chara {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__baloon {
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 0 20px;
    padding: 12px;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__baloon::before {
    height: 26px;
    width: 17px;
    left: -15.5px;
  }
  .lpAruko-solution__cardWrap .lpAruko-solution__card .lpAruko-solution__card__img {
    padding: 0;
    height: 150px;
  }
}

@media screen and (min-width: 781px) {
  .only-sp {
    display: none !important;
  }
}
