<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

#cont {
  color: #111;
  font-size: 16px;
  letter-spacing: normal;
}
a {
  color: #0e4ba5;
}

.u_img {
  display: block;
  text-align: center;
  line-height: 0;
}

/* =======================================
	layout
========================================== */
.l_wrapper {
  width: 100%;
}
.l_main {
  width: 100%;
}
.l_wrap_inr {
  width: 1220px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_main {
    width: 100%;
    padding: 0;
  }
  .l_wrap_inr {
    width: 95%;
  }
}

/* =======================================
	module
========================================== */
/* Common
---------------------------------------------------------- */
.m_content__inner {
  width: 95%;
  max-width: 920px;
  margin: auto;
  padding-left: 0;
}
.m_underLayer {
  padding: 0;
}

.m_heading--secoudary .m_heading__ttl {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.8125;
}
.m_heading--en .m_heading__ttl::before {
  display: block;
  content: attr(data-en);
  color: #70bbdd;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
}
.m_heading--tertiary .m_heading__ttl {
  position: relative;
  padding-bottom: 30px;
  color: #0e4ba5;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.8125;
}
.m_heading--tertiary .m_heading__ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 95px;
  height: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #0e4ba5;
}
@media screen and (max-width: 768px) {
  .m_heading--secoudary .m_heading__ttl {
    font-size: 26px;
  }
  .m_heading--en .m_heading__ttl::before {
    font-size: 24px;
  }

  .m_heading--tertiary .m_heading__ttl {
    padding-bottom: 20px;
    font-size: 24px;
  }
  .m_heading--tertiary .m_heading__ttl::after {
    width: 60px;
    height: 3px;
  }
}

/* ボタンリスト */
.m_btnList{}
.m_btnList__item + .m_btnList__item{
  margin-top: 40px;
}


/* ボタン */
.m_btn--contMain {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 23px;
}
.m_btn--contMain &gt; * {
  width: 100%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #111;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
  border: 2px solid #111;
  border-radius: 100px;
  box-shadow: 20px 23px 0 #ffe200;
  transition: box-shadow 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
}
.m_btn--contMain.m_btn--wide {
   max-width: 580px;
}
.m_btn--anotherTab a{
  position: relative;
  padding-right: 42px;
}
.m_btn--anotherTab a::before{
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  min-width: 23px;
  height: 23px;
  margin: auto;
  border: 2px solid;
  border-radius: 50%;
  color: inherit;
  font-weight: bold;
  font-size: 17px;
  font-family: FontAwesome;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .m_btn--contMain a:hover {
    color: #111;
    text-decoration: none;
    box-shadow: 10px 13px 0 #ffe200;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@media screen and (max-width: 768px) {
  .m_btn--contMain {
    max-width: 350px;
    padding-bottom: 12px;
  }
  .m_btn--contMain.m_btn--wide{
    max-width: 350px;
  }
  .m_btn--contMain &gt; * {
    height: 70px;
    font-size: 18px;
    box-shadow: 10px 12px 0 #ffe200;
  }
}

.m_cta__btnLst {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.m_cta__btn {
  display: block;
  width: 100%;
  max-width: 360px;
}
.m_cta__btn &gt; * {
  width: 100%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #0e4ba5;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
  border-radius: 100px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
}
.m_cta__btn--contact a {
  color: #0e4ba5;
  background-color: #fff;
  border: 2px solid #0e4ba5;
}
@media (any-hover: hover) {
  .m_cta__btn a:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  .m_cta__btn--contact a:hover {
    color: #0e4ba5;
  }
}

.m_descriptionList {
  display: flex;
  align-items: center;
  background-color: #f5f7f8;
}
.m_descriptionList_ttl {
  flex-shrink: 0;
  padding: 25px 40px 25px 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.67;
  background-color: #70bbdd;
  text-align: center;
}
.m_descriptionList_txt {
  padding: 20px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .m_descriptionList {
    align-items: stretch;
  }
  .m_descriptionList_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px 15px 15px;
    font-size: 16px;
    letter-spacing: 0.03em;
  }
  .m_descriptionList_txt {
    padding: 15px;
    font-size: 16px;
  }
}

/* MV
---------------------------------------------------------- */
.m_herosArea {
  position: relative;
  padding-top: 10px;
  padding-bottom: 100px;
}
.m_herosArea__keyvisual {
  position: relative;
  text-align: center;
  line-height: 0;
}
.m_herosArea__keyvisual img {
  padding-left: 15px;
  background-color: #fff;
}
.m_herosArea__keyvisual img.m_herosArea__keyvisual--sp {
  display: none;
}
.m_herosArea__num {
  position: absolute;
  display: block;
  top: 13px;
  left: 230px;
  color: #ff6200;
  font-family: "Oswald", sans-serif;
  font-size: 57px;
  line-height: 1;
  font-weight: 700;
  z-index: 5;
}

.m_herosArea__subNum {
  position: absolute;
  color: #FF4500;
  font-size: 33px;
  font-weight: 700;
  font-family: Oswald;
  left: 383px;
  top: 130px;
}
.m_herosArea__note {
  position: absolute;
  left: 90px;
  bottom: 10px;
  text-align: left;
}
.m_herosArea__noteTxt {
  color: #797979;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

/* .m_herosArea__bgWrap {
  position: absolute;
  width: 100vw;
  display: flex;
  gap: 20px;
  height: 70%;
  bottom: 101px;
  left: 0;
  line-height: 0;
  z-index: -1;
}
.m_herosArea__bg {
  display: flex;
  gap: 20px;
  -webkit-animation: loop 200s -100s linear infinite;
  animation: loop 200s -100s linear infinite;
} */

/* 直し */
.m_herosArea__bgWrap {
  position: absolute;
  background-image: url("/resource/img/leaf/lightning/kv_bg.jpg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: 0 0;
  -webkit-animation-name: slide_img;
  animation-name: slide_img;
  -webkit-animation-duration: 800s;
  animation-duration: 800s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;

  width: 100vw;
  /* display: flex;
  gap: 20px; */
  height: 70%;
  bottom: 101px;
  left: 0;
  line-height: 0;
  z-index: -1;
}
/* .m_herosArea__bg {
  display: flex;
  gap: 20px;
  -webkit-animation: loop 200s -100s linear infinite;
  animation: loop 200s -100s linear infinite;
} */
@-webkit-keyframes slide_img {
  100% {
    background-position: -10000px 0;
  }
}
@keyframes slide_img {
  100% {
    background-position: -10000px 0;
  }
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.m_herosArea__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  max-width: 1126px;
  padding: 18px 15px 16px 30px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(180deg, #ffe500 0%,#ffc200 100%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 10;
}
.m_herosArea__cta {
  flex-grow: 1;
}
.m_herosArea__ctaTtl {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}
.m_herosArea__cta .m_cta__btnLst {
  gap: 8px;
}
.m_herosArea__cta .m_cta__btn {
  max-width: 300px;
}
.m_herosArea__cta .m_cta__btn a {
  height: 70px;
  font-size: 18px;
}
.m_herosArea__cta .m_cta__btn--contact a {
  border: none;
}
.m_herosArea__bnr{
  flex: 0 0 458px;
}
.m_herosArea__bnr a {
  position: relative;
  display: block;
  line-height: 0;
}
.m_herosArea__bnr a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/leaf/lightning/bnr_download_lms_funcs_hov.jpg?date=240912);
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s;
}
.m_herosArea__bnr img{
  max-width: 100%;
  line-height: 0;
}
@media (any-hover: hover) {
  .m_herosArea__bnr a:hover::after {
    opacity: 1;
  }
}

/* Tab */
.m_customers__top {
  padding-top: 155px;
  background-color: #0e4ba5;
}
.m_customers__top .m_heading__ttl {
  color: #fff;
}
.m_customers__top .m_heading__ttl &gt; span {
  font-size: 20px;
}
.m_customers__tabWrap {
  width: 100%;
  overflow-x: auto;
}
.m_customers__tabList {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 60px;
}
.m_customers__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 28px) / 5);
  height: 60px;
  color: #797979;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  background-color: #dfdfdf;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.m_customers__tab.js_crnt,
.m_customers__tab:hover {
  color: #fff;
  background-color: #70bbdd;
}

.m_customers__btm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fff;
}

.m_customers__btmLink_item {
  position: relative;
  padding-left: 30px;
}
.m_customers__btmLink_item::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 16px;
  top: 7px;
  left: 0;
  margin: auto;
  background-image: url(/resource/img/leaf/function/ico_func_list_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.m_customers__btmLink_item + .m_customers__btmLink_item {
  margin-top: 10px;
}
.m_customers__btmLink_item a {
  display: block;
  color: #111;
  font-size: 18px;
  text-decoration: none;
  transition: .4s opacity, .4s transform;
}
@media (any-hover: hover) {
  .m_customers__btmLink_item a:hover {
    opacity: .6;
    transform: translateX(10px)
  }
}

.m_customers__btmInr {
  width: 1240px;
  position: relative;
}
.m_customers__btmInr.js_view:not(.js_crnt) {
  display: none;
}
.m_customers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 10px;
}
.m_customers__list--hidden {
  height: 0;
  overflow-y: hidden;
  margin-top: -12px;
}
.m_customers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 80px;
  padding: 0 5px;
  font-size: 18px;
  font-weight: 700;
  background-color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.m_customers__item--lg {
  font-size: 26px;
}
.m_customers__item--md {
  font-size: 18px;
}
.m_customers__item--sm {
  font-size: 16px;
}
.m_customers__toh {
  font-size: 16px;
}
.m_customers__number {
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
}

.m_customers__more {
  position: absolute;
  display: block;
  width: 100%;
  height: 110px;
  bottom: 0;
  border: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 1) 100%);
  transition: background 0.3s;
}
.m_customers__more::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 4px solid #111;
  border-right: 4px solid #111;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.m_customers__more.js_open {
  background: transparent;
}
.m_customers__more.js_open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .m_herosArea {
    padding-bottom: 0;
  }
  .m_herosArea__keyvisual img.m_herosArea__keyvisual--pc {
    display: none;
  }
  .m_herosArea__keyvisual img.m_herosArea__keyvisual--sp {
    display: block;
    width: 100%;
    padding-top: 2.6vw;
    padding-bottom: 20px;
    padding-left: 0;
  }
  .m_herosArea__num {
    top: 3.8%;
    left: 32%;
    font-size: 8vw;
  }
  .m_herosArea__subNum {
    display: none;
  }
  .m_herosArea__note {
    position: static;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .m_herosArea__noteTxt {
    display: flex;
    color: #797979;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
  .m_herosArea__noteTxt + .m_herosArea__noteTxt {
    margin-top: 5px;
  }

  .m_herosArea__bg {
    display: none;
  }
  .m_herosArea__nav {
    position: static;
    flex-direction: column;
    padding: 30px 2.5%;
    -webkit-transform: none;
    transform: none;
  }
  .m_herosArea__ctaTtl {
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .m_herosArea__cta .m_cta__btn a {
    height: 60px;
  }
  .m_herosArea__bnr {
    display: none;
  }
  .m_cta__btnLst {
    flex-direction: column;
    align-items: center;
  }
  .m_cta__btn {
    max-width: 300px;
  }
  .m_cta__btn &gt; * {
    height: 60px;
    font-size: 18px;
  }

  /* Tab */
  .m_customers__top {
    padding-top: 30px;
  }
  .m_customers__top .m_heading__ttl &gt; span {
    font-size: 16px;
  }
  .m_customers__tabList {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 30px;
  }
  .m_customers__tab {
    min-width: 150px;
    height: 50px;
    font-size: 14px;
  }

  .m_customers__btm {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .m_customers__btmLink_item {
    padding-left: 15px;
  }
  .m_customers__btmLink_item::before {
    width: 6px;
    height: 12px;
    top: 5px;
  }
  .m_customers__btmLink_item a {
    font-size: 14px;
  }

  .m_customers__btmInr {
    width: 100%;
  }
  .m_customers__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .m_customers__list--hidden {
    margin-top: -15px;
  }
  .m_customers__item {
    height: auto;
    min-height: 70px;
    font-size: 14px;
  }
  .m_customers__number {
    font-size: 12px;
  }
}

/* Choose
---------------------------------------------------------- */
.m_choose {
  position: relative;
  padding-top: 90px;
}
.m_choose::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgba(245, 247, 248, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(245, 247, 248, 1) 100%);
  aspect-ratio: 139 / 60;
}
.m_choose__inr {
  position: relative;
  z-index: 10;
}
.m_choose__list {
  counter-reset: item;
}
.m_choose__item_head {
  width: 100%;
}
.m_choose__item_headCont {
  position: relative;
  padding: 90px 80px 100px;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}
.m_choose__item_headCont::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 80px;
  color: #0e4ba5;
  font-family: "DM Sans", sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.m_choose__item_headTtl {
  font-size: 50px;
  letter-spacing: 0.2em;
}
.m_choose__item_headSubTtl {
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.m_choose__item_headTxt {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2.2;
}
.m_choose__item_headBg {
  position: absolute;
}
.m_choose__item_headBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .m_choose {
    padding-top: 60px;
  }
  .m_choose::before {
    display: none;
  }
  .m_choose__item_headCont {
    padding: 60px 5%;
  }
  .m_choose__item_headCont::before {
    left: 5%;
    font-size: 80px;
  }
  .m_choose__item_headTtl {
    font-size: 30px;
  }
  .m_choose__item_headSubTtl {
    margin-top: 15px;
    font-size: 20px;
  }
  .m_choose__item_headTxt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
  }
}

/* 01 */
.m_choose__item01 {
  padding-top: 110px;
  padding-bottom: 235px;
}
.m_choose__item01_inr {
  position: relative;
  display: flex;
  gap: 60px;
}
.m_choose__item01 .m_choose__item_head {
  position: sticky;
  width: 100%;
  max-height: 775px;
  padding-left: 55px;
  padding-bottom: 55px;
  top: 180px;
  left: 0;
}
.m_choose__item01 .m_choose__item_headCont {
  width: 100%;
  max-width: 560px;
}
.m_choose__item01 .m_choose__item_headBg {
  width: calc(100% - 55px);
  height: calc(100% - 55px);
  left: 0;
  bottom: 0;
  z-index: -1;
}

.m_choose__item01_right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 545px;
}
.m_choose__item01_rightItem {
  position: relative;
  padding: 0;
}
.m_choose__item01_rightItem &gt; * {
  position: relative;
  z-index: 5;
}
.m_choose__item01_rightItem_icon {
  width: 100%;
  max-width: 160px;
  margin: auto;
  line-height: 0;
}
.m_choose__item01_rightItem_ttl,
.m_choose__item01_rightItem_txt {
  margin-top: 10px;
  line-height: 1.5625;
}
.m_choose__item01 .m_btnList {
  margin-top: 125px;
}
@media screen and (max-width: 768px) {
  .m_choose__item01 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .m_choose__item01_inr {
    flex-direction: column;
  }
  .m_choose__item01 .m_choose__item_head {
    position: relative;
    max-height: initial;
    padding-left: 5%;
    padding-bottom: 5%;
    top: 0;
  }
  .m_choose__item01 .m_choose__item_headCont {
    max-width: 100%;
  }
  .m_choose__item01 .m_choose__item_headBg {
    width: calc(100% - 5%);
    height: calc(100% - 5%);
  }

  .m_choose__item01_right {
    -ms-grid-columns: 1fr 2.5% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 2.5%;
    max-width: 100%;
  }
  .m_choose__item01_rightItem::before {
    height: 75%;
  }
  .m_choose__item01_rightItem_icon {
    max-width: 80%;
  }
  .m_choose__item01_rightItem_icon img {
    width: 100%;
  }
  .m_choose__item01 .m_btnList {
    margin-top: 60px;
  }
}

/* 02 */
.m_choose__item02 {
  position: relative;
  padding-bottom: 100px;
}
.m_choose__item02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 140px);
  background: linear-gradient(180deg, rgba(237, 235, 235, 1) 0%, rgba(247, 248, 250, 1) 25%, rgba(247, 247, 247, 1) 50%, rgba(247, 248, 250, 1) 75%, rgba(237, 235, 235, 1) 100%);
  z-index: -1;
}
.m_choose__item02 .m_choose__item_head {
  position: relative;
  padding-left: 65px;
  padding-bottom: 55px;
  z-index: 5;
}
.m_choose__item02 .m_choose__item_headCont {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 80px 60px 80px 120px;
}
.m_choose__item02 .m_choose__item_headCont::before {
  top: 80px;
  left: 0;
  -webkit-transform: translateX(-55%);
  transform: translateX(-55%);
}
.m_choose__item02_headInr {
  width: 50%;
}
.m_choose__item02 .m_choose__item_headTxt {
  margin-top: 0;
}
.m_choose__item02 .m_choose__item_headTxt + .m_choose__item_headTxt {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}
.m_choose__item02 .m_choose__item_headBg {
  width: calc(100% - 55px);
  height: calc(100% - 55px);
  right: -55px;
  bottom: 0;
  z-index: -1;
}

#limitless {
  padding-top: 70px;
}
.m_choose__item02_limitless {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (260px) [3];
  grid-template-columns: repeat(3, 260px);
  justify-content: space-around;
  margin-top: 70px;
}
.m_choose__item02_limitlessItem {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  text-align: center;
}
.m_choose__item02_limitlessItem_icon {
  width: 100%;
  max-width: 140px;
  margin: auto;
  line-height: 0;
}
.m_choose__item02_limitlessItem_icon img {
  width: 100%;
}
.m_choose__item02_limitlessItem_ttl {
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.67;
}
.m_choose__item02_limitlessItem_txt {
  margin-top: 20px;
  font-size: 18px;
  text-align: left;
  line-height: 1.67;
}

.m_choose__item02_limitlessCompare {
  margin-top: 80px;
}
.m_choose__item02_limitlessCompare_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
}
.m_choose__item02_limitlessCompare_item {
  padding: 70px;
  background-color: #fff;
}
.m_choose__item02_limitlessCompare_itemTtl {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
}

.m_choose__item02_limitlessCompare_itemCont {
  width: 100%;
  max-width: 920px;
  margin: auto;
}
.m_choose__item02_limitlessCompare_itemCont + .m_choose__item02_limitlessCompare_itemCont {
  margin-top: 40px;
}
.m_choose__item02_limitlessCompare_itemCont--clm {
  display: flex;
  align-items: center;
  gap: 45px;
}
.m_choose__item02_limitlessCompare_itemCont_img {
  line-height: 0;
}
.m_choose__item02_limitlessCompare_itemCont_img img {
  width: 100%;
  max-width: 100%;
}
.m_choose__item02_limitlessCompare_itemCont--clm .m_choose__item02_limitlessCompare_itemCont_img {
  max-width: 365px;
  flex-shrink: 0;
}
.m_choose__item02_limitlessCompare_itemCont_txt {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.67;
}
.m_choose__item02_limitlessCompare_itemCont_inr_img img {
  width: 100%;
  max-width: 100%;
}
.m_choose__item02_limitlessCompare_itemCont .m_descriptionList_ttl {
  -webkit-clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .m_choose__item02 {
    padding-bottom: 80px;
  }
  .m_choose__item02 .m_choose__item_head {
    padding-left: 0;
    padding-right: 5%;
    padding-bottom: 5%;
  }
  .m_choose__item02 .m_choose__item_headCont {
    flex-direction: column;
    gap: 20px;
    padding: 60px 5%;
  }
  .m_choose__item02 .m_choose__item_headCont::before {
    top: 0;
    left: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .m_choose__item02_headInr {
    width: 100%;
  }
  .m_choose__item02 .m_choose__item_headBg {
    width: calc(100% - 5%);
    height: calc(100% - 5%);
    right: 0;
  }
  .m_choose__item02 .m_choose__item_headTxt + .m_choose__item_headTxt {
    font-size: 18px;
  }

  #limitless {
    padding-top: 60px;
  }
  .m_choose__item02_limitless {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  .m_choose__item02_limitlessItem {
    gap: 0;
  }
  .m_choose__item02_limitlessItem_ttl {
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.67;
  }
  .m_choose__item02_limitlessItem_txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 0;
    font-size: 16px;
  }

  .m_choose__item02_limitlessCompare {
    margin-top: 60px;
  }
  .m_choose__item02_limitlessCompare_list {
    gap: 40px;
    margin-top: 60px;
  }
  .m_choose__item02_limitlessCompare_item {
    padding: 40px 5%;
  }
  .m_choose__item02_limitlessCompare_itemTtl {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .m_choose__item02_limitlessCompare_itemCont + .m_choose__item02_limitlessCompare_itemCont {
    margin-top: 30px;
  }
  .m_choose__item02_limitlessCompare_itemCont--clm {
    flex-direction: column;
    gap: 20px;
  }
  .m_choose__item02_limitlessCompare_itemCont_txt {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* 03 */
.m_choose__item03_inr {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.m_choose__item03 .m_choose__item_head {
  position: absolute;
  width: 100%;
  max-width: 595px;
  padding-right: 60px;
  padding-bottom: 60px;
  top: 185px;
  right: 0;
  z-index: 5;
}
.m_choose__item03 .m_choose__item_headCont {
  padding: 90px 55px;
}
.m_choose__item03 .m_choose__item_headBg {
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  right: 0;
  bottom: 0;
  z-index: -1;
}
.m_choose__item03_img {
  width: 720px;
  line-height: 0;
}
.m_choose__item03_img img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .m_choose__item03_inr {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_choose__item03 .m_choose__item_head {
    position: relative;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 0;
    padding-bottom: 5%;
    top: 0;
  }
  .m_choose__item03 .m_choose__item_headCont {
    padding: 60px 5%;
  }
  .m_choose__item03 .m_choose__item_headBg {
    width: calc(100% - 5%);
    height: calc(100% - 5%);
    left: 0;
    right: auto;
  }
  .m_choose__item03_img {
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
  .m_choose__item03_img img {
    width: 100%;
  }
}

/* Continue
---------------------------------------------------------- */
.m_continue {
  padding-top: 90px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(245, 247, 248, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(245, 247, 248, 1) 100%);
}
.m_continue__lead {
  display: flex;
  align-items: end;
  gap: 50px;
  width: 100%;
  max-width: 870px;
  margin: 80px auto 0;
}
.m_continue__leadCont_txt {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8;
}
.m_continue__leadCont_note {
  margin-top: 15px;
  font-size: 14px;
}

.m_continue__reason {
  position: relative;
  display: flex;
  gap: 50px;
  margin-top: 80px;
  z-index: 5;
}
.m_continue__reasonItem {
  position: relative;
  width: 100%;
  padding: 60px;
  margin-right: 45px;
  margin-bottom: 45px;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}
.m_continue__reasonItem::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  right: -45px;
  bottom: -45px;
  background-color: #dfeaed;
  z-index: -1;
}
.m_continue__reasonItem_ttl {
  margin-bottom: 40px;
  color: #0e4ba5;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.m_continue__reasonItem_txt {
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 2.2;
}
.m_continue__reasonItem_txt--clm {
  display: flex;
  align-items: center;
  gap: 55px;
}
.m_continue__reasonItem_securityItem {
  position: relative;
  padding-left: 42px;
}
.m_continue__reasonItem_securityItem::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  top: calc(1em * 0.55);
  background-image: url(/resource/img/leaf/lightning/icon_security.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.m_continue .m_btn--contMain {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .m_continue {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .m_continue__lead {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 60px auto 0;
  }
  .m_continue__leadImg {
    width: 80%;
    margin: auto;
  }
  .m_continue__leadCont_txt {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .m_continue__leadCont_note {
    margin-top: 10px;
    font-size: 12px;
  }

  .m_continue__reason {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }
  .m_continue__reasonItem {
    width: calc(100% - 20px);
    padding: 40px 30px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .m_continue__reasonItem::after {
    right: -20px;
    bottom: -20px;
  }
  .m_continue__reasonItem_ttl {
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .m_continue__reasonItem_txt {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 2;
  }
  .m_continue__reasonItem_txt--clm {
    flex-direction: column;
    gap: 20px;
  }

  .m_continue .m_btn--contMain {
    margin-top: 40px;
  }
}

/* Download
---------------------------------------------------------- */
.m_download {
  padding-top: 100px;
  padding-bottom: 100px;
}
.m_download__inr {
  display: block;
  width: 100%;
  max-width: 975px;
  margin: 0 auto 60px;
  padding: 60px;
  color: #111;
  border: 1px solid #bababa;
  background-color: #f5f7f8;
  transition: box-shadow 0.3s;
}
.m_download__cont {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 40px;
}
.m_download__contImg img {
  max-width: 247px;
}
.m_download__contTxt_ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.m_download__cont .m_cta__btn {
  max-width: 335px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.m_download__cont .m_cta__btn &gt; * {
  height: 60px;
  font-size: 18px;
  border: 1px solid #0e4ba5;
  box-shadow: none;
}
@media (any-hover: hover) {
  .m_download__inr:hover {
    color: #111;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  }
}

@media screen and (max-width: 768px) {
  .m_download {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_download__inr {
    width: 95%;
    margin: 0 auto 40px;
    padding: 40px 20px;
  }
  .m_download__cont {
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
  .m_download__contTxt_ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .m_download__cont .m_cta__btn {
    max-width: 300px;
  }
  .m_download__cont .m_cta__btn &gt; * {
    height: 50px;
    font-size: 16px;
  }
}

/* Case
---------------------------------------------------------- */
.m_case {
  padding-top: 90px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(245, 247, 248, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(245, 247, 248, 1) 100%);
}
.m_case__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 75px;
  margin-bottom: 80px;
}
.m_case__item {
  position: relative;
  display: flex;
  align-items: start;
  gap: 85px;
  padding: 80px 120px 40px 0;
  z-index: 5;
}
.m_case__item::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 55px);
  height: 100%;
  top: 0;
  right: 0;
  background-color: #f5f7f8;
  z-index: -1;
}
.m_case__itemImg {
  position: relative;
  max-width: 290px;
}
.m_case__itemImg img {
  width: 100%;
}
.m_case__itemImg::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: -40px;
  bottom: -40px;
  background-color: #dce7e9;
  z-index: -1;
}

.m_case__itemCont_link {
  color: #111;
}
.m_case__itemCont_headTtl {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.43;
}
.m_case__itemCont_headTxt {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.875;
}

.m_case__itemCont_detailTtl {
  padding-top: 20px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  border-top: 1px solid #707070;
}
.m_case__itemCont_detailTxt {
  line-height: 1.875;
}
.m_case__itemCont_detailTtl + .m_case__itemCont_detailTxt {
  margin-top: 10px;
}

.m_btn--case {
  max-width: 300px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 0;
}
.m_btn--case &gt; * {
  position: relative;
  justify-content: start;
  height: 50px;
  padding-left: 30px;
  font-size: 16px;
  box-shadow: none;
  transition: background-color 0.3s;
}
.m_btn--case &gt; *::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  background-image: url(/resource/img/leaf/lightning/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media (any-hover: hover) {
  .m_case__itemCont_link:hover {
    color: #111;
    text-decoration: none;
  }
  .m_case__itemCont_link:hover .m_btn--case &gt; * {
    background-color: rgb(237 235 235);
  }
}

@media screen and (max-width: 768px) {
  .m_case {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_case__list {
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .m_case__item {
    gap: 40px;
    padding: 50px 40px 30px 0;
    z-index: 5;
  }
  .m_case__item::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 5%);
  }
  .m_case__itemImg {
    width: 30%;
    flex-shrink: 0;
    padding-left: 5%;
    padding-bottom: 5%;
  }
  .m_case__itemImg::before {
    width: calc(100% - 5%);
    height: calc(100% - 5%);
    left: 0;
    bottom: 0;
  }

  .m_case__itemCont_headTtl {
    font-size: 24px;
  }
  .m_case__itemCont_headTxt {
    padding-bottom: 5px;
    font-size: 14px;
  }

  .m_case__itemCont_detailTtl {
    padding-top: 15px;
    margin-top: 15px;
    font-size: 18px;
  }
  .m_case__itemCont_detailTxt {
    font-size: 14px;
  }
  .m_case__itemCont_detailTtl + .m_case__itemCont_detailTxt {
    margin-top: 5px;
  }

  .m_btn--case {
    max-width: 260px;
    margin-top: 20px;
  }
  .m_btn--case &gt; * {
    height: 50px;
    padding-left: 20px;
    font-size: 14px;
  }
  .m_btn--case &gt; *::after {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .m_case__item {
    flex-direction: column;
    padding: 50px 5% 30px;
  }
  .m_case__item::before {
    width: 100%;
  }
  .m_case__itemImg {
    width: 100%;
  }
}

/* Price
---------------------------------------------------------- */
.m_price {
  padding-top: 90px;
  padding-bottom: 100px;
}
.m_price__body{
  margin-top: 60px;
  display: flex;
  align-items: stretch;
}
.m_price__base{
  width: 66.666%;
}
.m_price__special{
  position: relative;
  width: 33.333%;
  padding-left: 50px;
}
.m_price__special::before,
.m_price__special::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  background: #333;
  display: block;
  width: 28px;
  height: 3px;
  margin: auto;
}
.m_price__special::after{
  transform: rotate(90deg);
}
.m_price--narrow .m_price__body{
  display: block;
}
.m_price--narrow .m_price__base{
  width: 100%;
}
.m_price--narrow .m_price__special{
  width: 100%;
  padding: 50px 0 0;
}
.m_price--narrow .m_price__special::before,
.m_price--narrow .m_price__special::after{
  top: 22px;
  bottom: auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px){
  .m_price__body{
    display: block;
  }
  .m_price__base{
    width: 100%;
  }
  .m_price__special{
    width: 100%;
    padding: 50px 0 0;
  }
  .m_price__special::before,
  .m_price__special::after{
    top: 22px;
    bottom: auto;
    left: 0;
    right: 0;
  }
}

.m_price__table {
  display: flex;
  gap: 4px;
}
.m_price__tableItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m_price__tableItem:not(:nth-child(2)) {
  flex-shrink: 0;
}
.m_price__tableItem_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #0e4ba5;
}
.m_price__tableItem_cont {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
  background-color: #f5f7f8;
}
.m_price__tableItem_cont--limitless {
  padding: 40px 20px;
  color: #0e4ba5;
  font-size: 36px;
  letter-spacing: 0.1em;
}
.m_price__tableItem_inrClm {
  display: flex;
  width: 100%;
}
.m_price__tableItem_inrClm + .m_price__tableItem_inrClm {
  margin-top: 4px;
}
.m_price__tableItem_inrClm &gt; * {
  flex-shrink: 0;
}
.m_price__tableItem_inrClm .m_price__tableItem_ttl {
  width: 145px;
  font-size: 20px;
}
.m_price__tableItem_inrClm .m_price__tableItem_cont {
  flex-grow: 2;
  padding: 15px;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.m_price__tableItem_inrClm .m_price__tableItem_cont--tax {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.m_price__compareTtl {
  margin-top: 50px;
  font-size: 28px;
  font-weight: 700px;
  text-align: center;
  letter-spacing: 0.06em;
}
.m_price__compare {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
.m_price__compareItem {
  width: 100%;
  padding: 60px 20px;
  background-color: #f5f7f8;
}
.m_price__compareItem_ttl {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.m_price__compareItem_txt {
  margin: 20px 40px;
  font-size: 18px;
  line-height: 2;
}
.m_price__compareItem_img {
  line-height: 0;
}
.m_price__compareItem_img img {
  width: 100%;
}

.m_price__cont {
  max-width: 870px;
  margin: 80px auto 0;
}
.m_price__contTtl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.67;
}
.m_price__contTxt {
  margin-top: 55px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.m_price__cont .m_descriptionList_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 35px;
}
.m_price__cont .m_descriptionList_ttl {
  padding: 30px;
  width: 270px;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-align: center;
}
.m_price__cont .m_descriptionList_txt {
  padding: 0 20px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.m_price__cont .m_descriptionList_txt &gt; span {
  font-size: 20px;
  letter-spacing: 0;
}
.m_price__cont .m_descriptionList + .m_descriptionList .m_descriptionList_ttl {
  padding: 10px;
  font-size: 18px;
  letter-spacing: 0;
}
.m_price__cont .m_descriptionList + .m_descriptionList .m_descriptionList_txt {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.m_price__contOption {
  margin-top: 35px;
  padding: 25px;
  background-color: #f5f7f8;
}
.m_price__contOption_ttl {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.m_price__contOption_txt {
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .m_price {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_price__table {
    margin-top: 40px;
    flex-direction: column;
  }
  .m_price__tableItem_cont {
    padding: 30px 25px;
  }
  .m_price__tableItem_cont--limitless {
    padding: 15px 20px;
  }
  .m_price__tableItem_inrClm .m_price__tableItem_ttl {
    width: 40vw;
    max-width: 145px;
  }

  .m_price__compareTtl {
    font-size: 24px;
  }
  .m_price__compare {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }
  .m_price__compareItem {
    padding: 40px 10px;
  }
  .m_price__compareItem_txt {
    margin: 20px;
    font-size: 16px;
  }

  .m_price__cont {
    margin: 60px auto 0;
  }
  .m_price__contTtl {
    font-size: 20px;
  }
  .m_price__contTxt {
    margin-top: 50px;
    font-size: 16px;
  }
  .m_price__cont .m_descriptionList_wrap {
    gap: 10px;
    margin-top: 20px;
  }
  .m_price__cont .m_descriptionList_ttl {
    padding: 20px;
    width: 200px;
    font-size: 20px;
  }
  .m_price__cont .m_descriptionList_txt {
    width: 100%;
    padding: 10px;
    font-size: 26px;
  }
  .m_price__cont .m_descriptionList_txt &gt; span {
    display: block;
    font-size: 20px;
    letter-spacing: 0;
  }
  .m_price__cont .m_descriptionList + .m_descriptionList .m_descriptionList_ttl {
    padding: 10px;
    font-size: 16px;
  }
  .m_price__cont .m_descriptionList + .m_descriptionList .m_descriptionList_txt {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .m_price__contOption {
    margin-top: 20px;
  }
  .m_price__contOption_ttl {
    font-size: 18px;
  }
  .m_price__contOption_txt {
    margin: 10px auto 0;
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .m_price__cont .m_descriptionList {
    flex-direction: column;
  }
  .m_price__cont .m_descriptionList_ttl {
    padding: 10px;
    width: 100%;
    font-size: 20px;
  }
  .m_price__cont .m_descriptionList_txt {
    width: 100%;
    padding: 20px;
    font-size: 26px;
    text-align: center;
  }
}

/* 金額表内のコンテンツ
---------------------------------------------------------- */

.m_priceCont{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
}
.m_priceCont--hasBorder{
  padding: 30px;
  border: 6px solid #D54A00;
}
.m_priceCont__ttl{
  margin-bottom: 20px;
  color: #143BAD;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  font-size: 44px;
}
.m_priceCont__body{
  font-weight: bold;
}
.m_priceCont__msg{
  font-size: 18px;
}
.m_priceCont__listItem{
  position: relative;
  padding-left: 28px;
  font-size: 20px;
}
.m_priceCont__listItem::before{
  content: "";
  position: absolute;
  top: calc((1lh - 1em) / 2 - 3px);
  left: 0;
  display: block;
  width: 8px;
  height: 16px;
  border-bottom: 3px solid #143BAD;
  border-right: 3px solid #143BAD;
  transform: rotate(45deg);
}
.m_priceCont__listItem + .m_priceCont__listItem{
  margin-top: 10px;
}
/* Flow
---------------------------------------------------------- */
.m_flow {
  padding-top: 95px;
  padding-bottom: 100px;
  background: linear-gradient(0deg, rgba(247, 247, 247, 1) 55%, rgba(242, 242, 242, 1) 100%);
}
.m_flow__cont .m_descriptionList_wrap {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-top: 55px;
}
.m_flow__cont .m_descriptionList {
  position: relative;
  align-items: stretch;
  width: 100%;
  height: 200px;
}
.m_flow__cont .m_descriptionList + .m_descriptionList::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(/resource/img/leaf/lightning/icon_flow_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.m_flow__cont .m_descriptionList_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 0;
  font-size: 24px;
}
.m_flow__cont .m_descriptionList_txt {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 60px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .m_flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_flow__cont .m_descriptionList_wrap {
    gap: 40px;
    margin-top: 40px;
  }
  .m_flow__cont .m_descriptionList {
    flex-direction: column;
    height: auto;
  }
  .m_flow__cont .m_descriptionList + .m_descriptionList::after {
    top: -25px;
  }
  .m_flow__cont .m_descriptionList_ttl {
    width: 100%;
    padding: 10px;
    font-size: 20px;
  }
  .m_flow__cont .m_descriptionList_txt {
    padding: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Trial
---------------------------------------------------------- */
.m_trial {
  background: linear-gradient(90deg, #0e4ba5 0%, #0e4ba5 50%, #ffe200 50%, #ffe200 100%);
}
.m_trial__inr {
  display: flex;
  align-items: center;
}
.m_trial__left {
  width: 50%;
  padding-top: 60px;
  padding-bottom: 30px;
}
.m_trial__leftTxt {
  width: 100%;
  max-width: 460px;
  margin: 30px auto 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
.m_trial__leftImg {
  width: 100%;
  max-width: 310px;
  margin: auto;
}
.m_trial__leftImg img {
  width: 100%;
  height: auto;
}
.m_trial__right {
  width: 50%;
}
.m_trial__rightTxt {
  color: #0e4ba5;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.m_trial__rightTxt--num {
  font-family: "Oswald", sans-serif;
  font-size: 113px;
}
.m_trial__rightTxt--day {
  font-size: 56px;
}
.m_trial__rightTxt--free {
  font-size: 99px;
}
.m_trial .m_cta__btn--trial {
  max-width: 430px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}
.m_trial .m_cta__btn--trial a {
  height: 80px;
  box-shadow: 20px 23px 0 #fff;
}
@media (any-hover: hover) {
  .m_trial .m_cta__btn--trial a:hover {
    box-shadow: 10px 13px 0 #fff;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

@media screen and (max-width: 768px) {
  .m_trial {
    background: transparent;
  }
  .m_trial__inr {
    flex-direction: column;
  }
  .m_trial__left {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 40px 5% 30px;
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: #0e4ba5;
  }
  .m_trial__leftTxt {
    font-size: 16px;
  }
  .m_trial__leftTxt br {
    display: none;
  }
  .m_trial__leftImg {
    width: 100%;
  }
  .m_trial__leftImg img {
    width: 100%;
    height: auto;
  }
  .m_trial__right {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 30px 5% 40px;
    background-color: #ffe200;
  }
  .m_trial .m_cta__btn--trial {
    margin-top: 40px;
    max-width: 350px;
  }
  .m_trial .m_cta__btn--trial a {
    height: 70px;
    font-size: 18px;
    box-shadow: 10px 12px 0 #fff;
  }
}
@media screen and (max-width: 599px) {
  .m_trial__rightTxt {
    font-size: 8vw;
  }
  .m_trial__rightTxt--num {
    font-size: 24vw;
  }
  .m_trial__rightTxt--day {
    font-size: 12vw;
  }
  .m_trial__rightTxt--free {
    font-size: 16vw;
  }
}

/* Others
---------------------------------------------------------- */
.m_others {
  padding-top: 95px;
  padding-bottom: 100px;
}
.m_other__inr + .m_other__inr {
  margin-top: 90px;
}
.m_others__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 60px;
  margin-top: 120px;
  margin-bottom: 70px;
}
.m_other__inr + .m_other__inr .m_others__list {
  margin-top: 60px;
  justify-content: center;
}
.m_others__item {
  width: calc((100% - 60px) / 2);
}
.m_others__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.m_others__item a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .m_others__item a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  .m_others {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .m_others__list {
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  .m_others__item {
    width: 100%;
  }
}
</pre></body></html>