@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width:761px) and (max-width:1140px) {
  html {
    font-size: calc(100vw / 114);
  }
}
@media screen and (min-width:1141px) {
  html {
    font-size: 62.5%;
  }
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, figure {
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  color: #000;
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 0;
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'Hiragino Kaku Gothic ProN', "ヒラギノ角ゴ Pro W3", Arial, Helvetica, Meiryo, 'MS PGothic', Sans-serif;
  line-height: 1.75;
}
ul li {
  list-style: outside none none;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
iframe {
  height: 2100px;
  width: 100%;
}
address {
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  text-decoration: none;
  outline: none;
  color: #08C;
}
a:hover {
  opacity: 0.85;
  text-decoration: none;
}
.i-w {
  margin: 0 2px 5px 0 !important;
}
/*アニメーション
---------------------------------------------------------------------------*/
/* fadein
----------------------------------------- */
.fade-in {
  visibility: visible !important;
  -webkit-animation-name: fid;
  animation-name: fid;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fid {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fid {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*フォント設定
---------------------------------------------------------------------------*/
.mincho {
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
/*カラー設定
---------------------------------------------------------------------------*/ :root {
  --main-color: #093D85;
  --sub-color: #E9EEF3;
  --point-color: #FB4141;
  --btn-color: #404042;
  --link-text-color: #;
}
.p-c {
  color: var(--point-color);
}
/*見出し設定
---------------------------------------------------------------------------*/
.secTtl1 {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}
.secTtl2 {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
  font-feature-settings: "palt";
}
.secTtl2 span {
  color: var(--main-color);
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
/*共通部品
---------------------------------------------------------------------------*/
/*ボタン設定
--------------------------------------*/
button, input[type="submit"], input[type="button"] {
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}
/*水平線設定
--------------------------------------*/
.hrStyle1 {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #000;
  margin-bottom: 20px;
}
/*カラム設定
---------------------------------------------------------------------------*/
.flexCols {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexAlignC {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexAlignEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flexJC {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flexCC {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexSbet {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.flexSbetC {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexSard {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/*Layout
---------------------------------------------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
/*共通コンテンツ
--------------------------------------*/
.innerWrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
/*Header
---------------------------------------------------------------------------*/
.gHeader {
  padding: 2.5rem 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}
.hdrLogo {
  width: 15.4rem;
  height: auto;
  align-self: center;
}
.hdrLogo a:hover {
  opacity: 1 !important;
}
/*gNavi
--------------------------------------*/
.gNavi {
  margin-left: auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.gNavi ul li:not(.btn-hdrContact) a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 1.9rem;
}
.btn-hdrContact a {
  width: 18rem;
  height: 4rem;
  line-height: 4rem;
  background-color: var(--btn-color);
  border-radius: 4rem;
  color: #FFF;
  font-size: 1.3rem;
  text-align: center;
  display: inline-block;
  margin-left: 2.5rem;
}
/* hamburger
----------------------------------------- */
.sp_menu {
  display: none;
}
/*FOOTER
---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
□LP
---------------------------------------------------------------------------*/
/*mainVisual
--------------------------------------*/
.mainVisual {
  padding-top: 14rem;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #fbfcfc 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #fbfcfc 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #fbfcfc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fbfcfc', GradientType=0); /* IE6-9 */
}
.mv_imgTxt {
  margin-left: 50px;
  margin-bottom: 3.5rem;
  width: 43%;
}
.mv_imgSp {
  margin-right: 40px;
  margin-left: auto;
  margin-top: auto;
  /*width: 27%;*/
  width: 43%;
}
/*ctaArea
--------------------------------------*/
.ctaArea {
  padding-bottom: 10rem;
  background: #fbfcfc; /* Old browsers */
  background: -moz-linear-gradient(top, #fbfcfc 0%, #e9eef3 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fbfcfc 0%, #e9eef3 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fbfcfc 0%, #e9eef3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfcfc', endColorstr='#e9eef3', GradientType=0); /* IE6-9 */
}
.ctaArea h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  margin-bottom: 3.5rem;
}
.ctaArea h2 span {
  color: var(--point-color);
  font-weight: 900;
}
.ctaArea h2 img {
margin-top: 20px;
}
.ctaArea .markerY {
  background: linear-gradient(transparent 75%, #FFF957 75%);
}
.ctaInr {
  box-shadow: rgba(99, 99, 99, 0.2) 0 .2rem 2rem 0;
  border-radius: 1rem;
  padding: 4rem 3rem 5rem;
  background: #fff;
  text-align: center;
}
.cta_box {
  border-radius: 1rem;
  height: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /*  justify-content:center; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cta_box:nth-child(1) {
  width: 60%;
}
.cta_box:nth-child(2) {
  width: 30%;
}
.cta_box h5 {
  color: #000;
  font-size: 2.2rem;
  font-weight: 500;
}
.cta_box p {
  color: var(--point-color);
  font-size: 7rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}
.cta_box p span {
  font-size: 3.2rem;
  font-family: 'M PLUS 1p', sans-serif;
  padding-right: 10px;
}
.ctaInr .cta_box .cta_target {
  color: var(--btn-color) !important;
  padding: 0 3px 0 0;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600 !important;
}
.cta_box .pcNone {
  display: none !important;
}
.btn-cta {
  background-color: var(--btn-color);
  border-radius: 3.5rem;
  color: #FFF;
  display: inline-block;
  margin-top: .5rem;
  font-size: 1.6rem;
  width: 50rem;
  height: 5rem;
  line-height: 5rem;
  letter-spacing: .04em;
  position: relative;
}
/*Main
---------------------------------------------------------------------------*/
/*intro
----------------------------------------*/
.intro {
  padding: 8rem 0 13rem;
  text-align: center;
}
.intro_boxWrap {
  margin-top: 6.5rem;
}
.intro_imgWrap {
  margin-bottom: 2rem;
  height: 13.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro_box:nth-of-type(1) .intro_imgWrap p {
  width: 12.5rem;
  height: auto;
}
.intro_box:nth-of-type(2) .intro_imgWrap p {
  width: 12.8rem;
  height: auto;
}
.intro_box:nth-of-type(3) .intro_imgWrap p {
  width: 12rem;
  height: auto;
}
.intro_box:nth-of-type(n+2) .intro_box_catch {
  margin-top: 3.2rem;
}
.intro_box_catch {
  /*  color: var(--main-color);*/
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.intro_box_caption {
  font-size: 1.7rem !important;
}
.intro_box_catch .point-color {
  color: var(--point-color);
  font-size: 3.5rem;
}
.intro_box_catch span:not(.point-color) {
  font-size: 1.5rem;
}
.intro_box_note {
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: #000 !important;
  letter-spacing: -.02em;
  line-height: 1.6 !important;
  margin-top: 1rem;
}
.intro_box_note.annotation {
  display: block;
  margin-left: 2rem;
  margin-bottom: .5rem;
}
.intro_box_note.annotation::before {
  content: "※";
  margin: 0 .5rem 0 -1.8rem;
}
.btn_txt {
  margin-top: 2.5rem;
}
.btn_txt .btn-cta {
  display: inline-block;
  margin: .5rem auto 0 !important;
}
/*merit
----------------------------------------*/
.merit {
  padding: 5rem 0 14rem;
}
.merit_boxWrapA, .merit_boxWrapB {
  margin-top: 10rem;
}
.merit_boxWrapA > div:last-of-type, .merit_boxWrapB > div:last-of-type {
  margin-left: auto;
}
.merit_box {
  width: 50%;
  border-radius: 1rem;
  position: relative;
  padding: 8rem 1rem 4rem;
  align-self: self-start;
}
.merit_box-num {
  color: #fff;
  font-size: 8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  position: absolute;
  top: -4rem;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
}
.merit_boxWrapA .merit_box-num {
  left: 3rem;
}
.merit_boxWrapB .merit_box-num {
  left: 2.8rem;
}
.merit_box h3 {
  color: #000;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.14;
}
.merit_boxWrap1 h3 {
  letter-spacing: -0.07em;
}
.merit_boxWrap3 h3 {
  letter-spacing: -0.05em;
}
.merit_box .box01_1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 2.5rem 0 0;
}
.merit_box .box01_2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 0 0 2rem;
}
.merit_box .box02_1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 2.5rem 0 0;
}
.merit_box .box02_2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 0 0 2rem;
}
.merit_box .box03_1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 2.5rem 0 0;
}
.merit_box .box03_2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 0 0 2rem;
}
.merit_box p {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.65;
  margin: 2.5rem 0 2rem;
}
.merit_box .merit_box-tx {
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  margin: 0 0 3rem !important;
}
.merit_boxWrap4 .merit_box p {
  letter-spacing: -0.008em;
}
.merit_box .point-color {
  color: var(--point-color);
}
.merit_box a {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 4rem;
}
.merit_box .merit_box_hide a {
  color: #08C !important;
  font-size: 1.2rem !important;
  position: inherit;
  display: inline-block;
  vertical-align: baseline;
  padding: 0 !important;
}
.merit_box a::before, .merit_box a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.merit_box a::before {
  width: 3rem;
  height: 3rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--main-color);
}
.merit_box .merit_box_hide a::before, .merit_box .merit_box_hide a::before, .merit_box .merit_box_hide a::after {
  display: none;
}
.merit_box a::after {
  left: 1.1rem;
  top: -0.4rem;
  width: .75rem;
  height: .75rem;
  border-top: .2rem solid #fff;
  border-right: .2rem solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.merit_box a.merit_box_link.close::after {
  left: 1rem;
  top: 0.3rem;
  width: .75rem;
  height: .75rem;
  border-top: .2rem solid #fff;
  border-right: .2rem solid #fff;
  -webkit-transform: rotate(315deg) !important;
  transform: rotate(315deg) !important;
}
.merit_boxWrap1 .merit_boxImg {
  margin-top: 2.5rem;
  width: 50rem;
}
.merit_boxWrap2 .merit_boxImg {
  width: 49rem;
}
.merit_boxWrap3 .merit_boxImg {
  width: 50rem;
}
.merit_boxWrap4 .merit_boxImg {
  margin-top: 1rem;
  width: 45rem;
  text-align: center;
}
.merit_box_priceWrap {
  width: 46rem;
}
.merit_box_price {
  /*  background-color: var(--sub-color);*/
  border-radius: 1rem;
  width: 100%;
  height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.merit_box_price:last-of-type {
  margin-top: 3rem;
}
.merit_box_price h5 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 500;
}
.merit_box_price p {
  color: var(--point-color);
  font-size: 8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}
.merit_box_price p span {
  font-size: 3.6rem;
  font-family: 'M PLUS 1p', sans-serif;
}
.merit_box_link {
  cursor: pointer;
}
.merit_box_hide {
  display: none;
}
.merit_box_hide.is-close {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.merit_box_hide.is-close span.point-color {
  color: var(--point-color);
}
/*howToUse
----------------------------------------*/
.howToUse {
  background-color: #f9f9f9;
  padding: 15rem 0;
}
.htu_note1 {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
  margin-top: 6rem;
}
.htu_tabArea {
  margin-top: 4rem;
}
.htu_tab li {
  background-color: #FFF;
  border: 1px solid #CBCBCB;
  color: #333;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.8rem 1rem;
  transition: .3s;
  width: calc(100% / 3);
  text-align: center;
}
.htu_tab li:nth-of-type(2) {
  border-left: none;
  border-right: none;
}
.htu_tab li.active {
  color: #FFF;
  background: #000;
  cursor: auto;
}
.htu_tabWrap > .htu_tab_contents {
  display: none;
}
.htu_tabWrap > div.show {
  display: block;
}
.htu_tabWrap {
  background-color: #fff;
  border-left: 1px solid #CBCBCB;
  border-right: 1px solid #CBCBCB;
  border-bottom: 1px solid #CBCBCB;
  padding: 7rem 8rem;
}
.htu_tab_contents h3 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4rem;
}
.htu_box_ul ul {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}
.htu_box_ul ul li {
  width: calc(100% / 5 - 15px) !important;
  padding: 3px 0 5px 35px;
  margin: 0 15px 0 0px;
  /*color: var(--main-color);*/
  background-image: url(../images/lp/use-tab-icon.png);
  background-repeat: no-repeat;
  background-position: 8px;
  border-radius: 1.2rem;
  font-weight: 500;
}
/*TAB1
----------------------*/
.htu_box1 {
  width: 19rem;
  position: relative;
  vertical-align: middle;
}
.htu_box1::before {
  position: absolute;
  top: 9rem;
  right: -3.8rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4rem 0 1.4rem 1.6rem;
  border-color: transparent transparent transparent #000000;
  content: "";
  vertical-align: middle;
  transform: translateY(-50%);
}
.htu_box1:last-of-type::before {
  content: none;
}
.htu_box1_ttl {
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.27;
  margin-bottom: 20px;
  text-align: center;
}
.htu_box1_ttl2 {
  /*color: var(--main-color);*/
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.27;
  margin-bottom: 18px;
  margin-top: 60px;
  text-align: center;
}
.htu_iconWrap1 {
  width: 100%;
  height: 19rem;
  border-radius: 2rem;
  padding: 1rem;
}
.htu_box1:nth-of-type(1) .htu_iconWrap1 {
  background: url(../images/lp/use-tab1-icon1.png) no-repeat 50% 68% / 7rem auto;
}
.htu_box1:nth-of-type(2) .htu_iconWrap1 {
  background: url(../images/lp/use-tab1-icon2.png) no-repeat 50% 68% / 8rem auto;
}
.htu_box1:nth-of-type(3) .htu_iconWrap1 {
  background: url(../images/lp/use-tab1-icon3.png) no-repeat 50% 68% / 8.6rem auto;
}
.htu_box1:nth-of-type(4) .htu_iconWrap1 {
  background: url(../images/lp/use-tab1-icon4.png) no-repeat 50% 68% / 7.5rem auto;
}
.htu_box1 h5 {
  border-radius: 1.2rem;
  color: #FFF;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 4.2rem;
  text-align: center;
}
.htu_box1:nth-of-type(odd) h5 {
  background-color: var(--main-color);
}
.htu_box1:nth-of-type(even) h5 {
  background-color: #6F9A1B;
}
.htu_box1:nth-of-type(4) p {
  text-align: center;
}
.htu_box1 p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0;
}
.htu_box1 p span {
  color: var(--point-color);
  font-weight: 700;
}
/*TAB2
----------------------*/
.htu_box2 {
  width: 45rem;
  padding-left: 3rem;
}
.htu_box2_desc1 {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.htu_box2_note1 {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
.htu_boxImg2 {
  width: 43rem;
  margin-left: auto;
}
/*TAB3
----------------------*/
.htu_box3_ttl {
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.27;
  margin-bottom: 20px;
  text-align: center;
}
.htu_box3_desc1 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 1rem 0 0;
}
.htu_content3 {
  margin-top: 3rem;
}
.htu_box3 {
  width: 42rem;
  position: relative;
}
.htu_box3:nth-of-type(2) {
  margin-left: auto;
}
.htu_box3::before {
  position: absolute;
  top: 9rem;
  right: -5.6rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4rem 0 1.4rem 1.6rem;
  border-color: transparent transparent transparent #000000;
  content: "";
  vertical-align: middle;
  transform: translateY(-50%);
}
.htu_box3:last-of-type::before {
  content: none;
}
.htu_box3 h5 {
  border-radius: .5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.htu_box3:nth-of-type(1) h5 {
  background-color: var(--sub-color);
  color: var(--main-color);
}
.htu_box3:nth-of-type(2) h5 {
  background-color: #E5F1CC;
  color: #689118;
}
.htu_box3Inr {
  padding-left: 11.8rem;
  background-repeat: no-repeat;
  background-position: 1.6rem 50%;
}
.htu_box3:nth-of-type(1) .htu_box3Inr {
  background-image: url(../images/lp/use-tab3-icon1.png);
  background-size: 8.4rem;
}
.htu_box3:nth-of-type(2) .htu_box3Inr {
  background-image: url(../images/lp/use-tab3-icon2.png);
  background-size: 7.5rem;
}
.htu_box3Inr h6 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.htu_box3Inr p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.62;
}
/*TAB4
----------------------*/
.htu_box4_ttl {
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.27;
  text-align: center;
}
.htu_box4_desc1 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 1rem 0 0;
}
.htu_content4 {
  margin-top: 3rem;
}
.htu_box4 {
  width: 42rem;
  position: relative;
}
.htu_box4:nth-of-type(2) {
  margin-left: auto;
}
.htu_box4 h5 {
  border-radius: .5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.htu_box4:nth-of-type(1) h5 {
  background-color: var(--sub-color);
  color: var(--main-color);
}
.htu_box4:nth-of-type(2) h5 {
  background-color: #E5F1CC;
  color: #689118;
}
.htu_box4_imgWrap {
  margin: auto;
}
.htu_box4:nth-of-type(1) .htu_box4_imgWrap {
  width: 35.3rem;
  height: auto;
}
.htu_box4:nth-of-type(2) .htu_box4_imgWrap {
  width: 41rem;
  height: auto;
}
.htu_box4Inr h6 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 1.2rem 0 0.6rem;
}
.htu_box4:nth-of-type(1) h6 {
  color: var(--main-color);
}
.htu_box4:nth-of-type(2) h6 {
  color: #7A9E3A;
}
.htu_box4Inr ul li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.62;
  padding-left: 1em;
  text-indent: -1em;
}
/*price
----------------------------------------*/
.price {
  padding: 15rem 0;
}
.price h3 {
  color: var(--main-color);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  font-feature-settings: "palt";
  margin: 4.5rem 0 1.2rem;
}
.price h3 .markerY {
  background: linear-gradient(transparent 75%, #FFF957 75%);
}
.price_note1 {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.45;
}
.price_table {
  border: 1px solid #CCC;
  width: 100%;
  line-height: 1.45;
  margin-top: 4rem;
}
.price_table tr {
  border-bottom: 1px solid #CCC;
}
.price_table th {
  background-color: #F5F5F5;
  font-size: 2rem;
  font-weight: 400;
  width: 40rem;
}
.price_table td {
  text-align: center;
}
.price_detail1 {
  color: var(--point-color);
  font-size: 6rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -.02em;
}
.price_detail1 span {
  font-size: 2rem;
}
.price_target {
  color: #000000 !important;
  font-size: 2.5rem !important;
  margin: 0 4px 0 15px;
}
.price_note2 {
  font-size: 1.2rem;
}
.price_detail1Wrap {
  line-height: 1;
  padding: 0.8rem 0px;
}
.price_imgWrap {
  padding: 1.8rem 0;
}
.price_imgWrap img {
  width: 40rem;
  height: auto;
}
.price_detail2Wrap {
  line-height: 1.64;
  padding: 1.4rem 0px;
}
.price_detail2 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.price_list {
  margin-top: 1.5rem;
}
.price_list li {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}
/*support
----------------------------------------*/
.support {
  background-color: #fff7f7;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #fff7f7 50%, #fff7f7 100%);
  padding: 15rem 0;
}
.support_boxWrap {
  margin-top: 7.5rem;
}
.support_box {
  width: 20rem;
  height: auto;
  text-align: center;
}
.support_iconWrap img {
  width: 20rem;
  height: auto;
}
.support_box p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.66;
  margin-top: 1.2rem;
}
/*case
----------------------------------------*/
.case {
  padding: 15rem 0;
}
.case_note1 {
  font-size: 1.7rem;
  text-align: center;
  margin-top: 6rem;
}
.case_slideWrap {
  margin: 4.5rem auto 0;
  width: 100%;
  max-width: 1050px;
}
.case_logo {
  margin-bottom: 1.2rem;
  text-align: center;
}
.case_comp-name {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.case_box h5 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.64;
}
.case_box p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
/*slider
----------------------*/
.case_slide {
  display: none;
  position: relative;
}
.case_slide.slick-initialized {
  display: block;
}
.slick-slide {
  margin: 0 2.5rem;
}
.slick-slide img {
  margin: auto;
}
.slider-arrow {
  position: absolute;
  top: 6rem;
  width: 1.4rem;
  cursor: pointer;
  z-index: 99;
}
@media screen and (min-width:1101px) {
  .slider-prev {
    left: -2.4rem;
  }
  .slider-next {
    right: -2.4rem;
  }
}
@media screen and (min-width:761px) and (max-width:1100px) {
  .slider-prev {
    left: -1rem;
  }
  .slider-next {
    right: -1rem;
  }
}
/*flow
----------------------------------------*/
.flow {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 247, 247, 1) 100%);
  padding: 12rem 0 14rem;
}
@media screen and (min-width:1101px) {
  .flowTtlWrap {
    margin-left: calc((100% - 1080px) / 2);
    margin-bottom: 9rem;
  }
}
@media screen and (min-width:761px) and (max-width:1140px) {
  .flowTtlWrap {
    padding-left: 2rem;
  }
}
.flow_ttlArea {
  width: 36rem;
}
.flow_ttlArea h2 {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1.35;
  font-feature-settings: "palt";
}
.flow_ttlArea h2 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.flow_ttlArea p {
  font-size: 1.7rem;
  font-weight: 400;
  margin-top: 3rem;
}
.flow_imgWrap {
  background: url(../images/lp/flow-img1.jpg) no-repeat 0 50% / auto;
  width: calc(100% - 36rem);
  margin-left: auto;
  height: 35rem;
  margin-top: -19rem;
}
.flow_boxWrap {
  margin-top: 5rem;
}
.flow_num {
  background-color: #000;
  color: #FFF;
  font-size: 2.7rem;
  font-family: 'Poppins', sans-serif;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  border-radius: 50%;
  position: relative;
}
.flow_num:before {
  content: "";
  background-color: #000;
  width: 0.1rem;
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  margin: auto;
}
.flow_boxWrap:nth-of-type(1) .flow_num:before {
  height: 8rem;
}
.flow_boxWrap:nth-of-type(2) .flow_num:before, .flow_boxWrap:nth-of-type(3) .flow_num:before, .flow_boxWrap:nth-of-type(7) .flow_num:before {
  height: 11rem;
}
.flow_boxWrap:nth-of-type(5) .flow_num:before, .flow_boxWrap:nth-of-type(6) .flow_num:before {
  height: 14rem;
}
.flow_boxWrap:nth-of-type(4) .flow_num:before {
  height: 16.5rem;
}
.flow_box {
  margin-left: 1.8rem;
}
.flow_ttl {
  font-size: 3.1rem;
  font-weight: 900;
}
.flow_desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.66;
}
.flow_desc span {
  font-size: 1.5rem;
}
.flow_desc .point-color {
  color: var(--point-color);
  font-size: 1.8rem;
}
/*faq
----------------------------------------*/
.faq {
  padding: 14rem 0 8rem;
}
.faq .secTtl2 span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.faq_ListWrap {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}
.faq_List_box:not(:first-of-type) .faq_List_box_content {
  display: none;
}
.faq_List_box:first-of-type .faq_List_box-ttl::before {
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.faq_List_box:first-of-type .faq_List_box-ttl.close::before {
  -webkit-transform: translate(0%, -50%) rotateZ(180deg);
  transform: translate(0%, -50%) rotateZ(180deg);
}
.faq_List_boxInr {
  border-bottom: 1px solid #ccc;
}
.faq_List_box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  padding: 3rem 6rem 3rem 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  cursor: pointer;
}
.faq_List_box-ttl span {
  position: relative;
  display: inline-block;
  min-width: 6rem;
  min-height: 6rem;
  margin-right: 1.6rem;
  background-color: #3A3A3A;
  border-radius: 50px;
}
.faq_List_box-ttl span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  content: 'Q';
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faq_List_box-ttl:hover {
  opacity: 1;
}
.faq_List_box-ttl.close {
  padding: 3rem 6rem 3rem 0;
}
.faq_List_box-ttl.close::before {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.8rem;
  height: 1.1rem;
  content: '';
  background-image: url(../images/lp/faq-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.faq_List_box-ttl::before {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.8rem;
  height: 1.1rem;
  content: '';
  background-image: url(../images/lp/faq-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.faq_List_box_content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 6rem 2rem 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.67;
  color: #232323;
}
.faq_List_box_content-item span {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 6rem;
  margin-right: 1.6rem;
  min-width: 6rem;
  min-height: 6rem;
}
.faq_List_box_content-item span::before {
  position: absolute;
  top: 0;
  left: 55%;
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: #32BDEA;
  content: 'A.';
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faq_List_box_content-item div {}
.faq_List_box_content-item small {
  display: block;
}
.faq_List_box_content-item h4 {
  border-bottom: 1px solid #000;
  font-weight: bold;
}
/*contact
----------------------------------------*/
.contact {
  padding: 6rem 0 0;
}
/*about
----------------------------------------*/
.about {
  background: #f1f6fc;
  padding: 40px 0;
}
.about .flex {
  display: flex;
  justify-content: flex-start;
}
.about .flex div:first-child {
  font-size: 2rem;
  font-weight: bold;
  padding-right: 40px;
  text-align: right;
  width: 35% !important;
}
.about .flex div:last-child {
  border-left: 1px solid #a6a6a6;
  width: 45%;
}
.about dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem !important;
  font-weight: 400;
  margin: 0;
}
.about dt {
  width: 22%;
  margin-top: .5rem;
  text-align: right;
}
.about dt::after {
  content: "：";
  margin: 0 .5rem;
}
.about dd {
  width: 60%;
  margin-top: .5rem;
}
footer {
  background: #a6a6a6;
  color: #fff;
  font-size: 1.3rem;
  padding: 35px 0;
  text-align: center;
}
/*ect
---------------------------------------------------------------------------*/
.floatL {
  float: left;
}
.floatR {
  float: right;
}
.alignL {
  text-align: left;
}
.alignR {
  text-align: right;
}
.alignCR {
  text-align: center;
}
.pcNone {
  display: none !important;
}
.pcNone-inl {
  display: none !important;
}
.spNone {
  display: block !important;
}
.spNone-inl {
  display: inline !important;
}
.fw700 {
  font-weight: 700;
}
.fwNormal {
  font-weight: normal;
}
.textNone {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  line-height: 0;
}