span.scrollItem {
  display: inline-block;
}

.text_step_up span {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.text_step_up span.isShow {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.text_step_up :nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.text_step_up :nth-child(2) {
  -webkit-transition-delay: 0.02;
  transition-delay: 0.02;
}
.text_step_up :nth-child(3) {
  -webkit-transition-delay: 0.04s;
  transition-delay: 0.04s;
}
.text_step_up :nth-child(4) {
  -webkit-transition-delay: 0.06s;
  transition-delay: 0.06s;
}
.text_step_up :nth-child(5) {
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}
.text_step_up :nth-child(6) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.text_step_up :nth-child(7) {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}
.text_step_up :nth-child(8) {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}
.text_step_up :nth-child(9) {
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s;
}
.text_step_up :nth-child(10) {
  -webkit-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.text_step_up :nth-child(11) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.text_step_up :nth-child(12) {
  -webkit-transition-delay: 0.22;
  transition-delay: 0.22;
}
.text_step_up :nth-child(13) {
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s;
}
.text_step_up :nth-child(14) {
  -webkit-transition-delay: 0.26s;
  transition-delay: 0.26s;
}
.text_step_up :nth-child(15) {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.text_step_up :nth-child(16) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.text_step_up :nth-child(17) {
  -webkit-transition-delay: 0.32s;
  transition-delay: 0.32s;
}
.text_step_up :nth-child(18) {
  -webkit-transition-delay: 0.34s;
  transition-delay: 0.34s;
}
.text_step_up :nth-child(19) {
  -webkit-transition-delay: 0.36s;
  transition-delay: 0.36s;
}
.text_step_up :nth-child(20) {
  -webkit-transition-delay: 0.38s;
  transition-delay: 0.38s;
}
.text_step_up :nth-child(21) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.text_step_up :nth-child(22) {
  -webkit-transition-delay: 0.42;
  transition-delay: 0.42;
}
.text_step_up :nth-child(23) {
  -webkit-transition-delay: 0.44s;
  transition-delay: 0.44s;
}
.text_step_up :nth-child(24) {
  -webkit-transition-delay: 0.46s;
  transition-delay: 0.46s;
}
.text_step_up :nth-child(25) {
  -webkit-transition-delay: 0.48s;
  transition-delay: 0.48s;
}
.text_step_up :nth-child(26) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.text_step_up :nth-child(27) {
  -webkit-transition-delay: 0.52s;
  transition-delay: 0.52s;
}
.text_step_up :nth-child(28) {
  -webkit-transition-delay: 0.54s;
  transition-delay: 0.54s;
}
.text_step_up :nth-child(29) {
  -webkit-transition-delay: 0.56s;
  transition-delay: 0.56s;
}
.text_step_up :nth-child(30) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.slide_up {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0;
}
.slide_up.isShow {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

section {
  margin-bottom: 0;
}

.lp_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 890px) {
  .lp_inner {
    padding: 0;
  }
}

.lp_para {
  margin-bottom: 60px;
  background-image: url(img/hakira_para.png);
  background-size: 136% auto;
  background-attachment: scroll;
  background-position: top center;
  background-repeat: repeat-y;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .lp_para {
    background-attachment: fixed;
  }
}

.parallaxImg {
  position: absolute;
  right: 0;
  left: 0;
}

.title_dotted,
.title_dotted_center {
  position: relative;
  padding: 16px 0;
}
.title_dotted::before, .title_dotted::after,
.title_dotted_center::before,
.title_dotted_center::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 12px;
  background-image: url(img/title_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.title_dotted::before,
.title_dotted_center::before {
  top: -12px;
}
.title_dotted::after,
.title_dotted_center::after {
  bottom: -12px;
}
@media screen and (min-width: 769px) {
  .title_dotted,
.title_dotted_center {
    padding: 30px 0;
  }
  .title_dotted::before, .title_dotted::after,
.title_dotted_center::before,
.title_dotted_center::after {
    height: 23px;
  }
  .title_dotted::before,
.title_dotted_center::before {
    top: -23px;
  }
  .title_dotted::after,
.title_dotted_center::after {
    bottom: -23px;
  }
}

.title_dotted_center {
  margin-bottom: 50px;
  padding: 10px 0;
  text-align: center;
}
.title_dotted_center::before, .title_dotted_center::after {
  background-position: center;
}

.lp_num_count {
  line-height: 1.3;
  font-size: 40px;
}

.title_dotted_tx {
  font-size: 24px;
  font-weight: bold;
  font-family: sans-serif;
  line-height: 2;
}
.title_dotted_tx .short {
  font-size: 80%;
}
@media screen and (min-width: 769px) {
  .title_dotted_tx {
    font-size: 36px;
  }
}

@media screen and (min-width: 769px) {
  .kv_wrap {
    background: url(img/kv_grad.png) bottom left repeat-x;
  }
}

.lp_kv {
  position: relative;
  margin-left: 6vw;
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  .lp_kv {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 23px;
    background-image: url(img/kv_bg_pc.png);
    background-position: right top;
    background-size: auto;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 769px) {
  .lp_kv_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.lp_bg {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 55%;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
  text-align: right;
}
@media screen and (min-width: 769px) {
  .lp_bg {
    display: none;
    top: 0;
    width: 100%;
    height: auto;
  }
}

.lp_kv_doc {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .lp_kv_doc {
    width: 40%;
    padding-top: 100px;
    padding-left: 10px;
  }
  .lp_kv_doc .title_dotted {
    margin-left: 50px;
  }
}
@media screen and (min-width: 1150px) {
  .lp_kv_doc .title_dotted {
    margin-left: 0;
  }
}

.lp_kv_catch {
  position: absolute;
  top: -13px;
  right: 4vw;
  width: 82px;
  opacity: 0;
}
.lp_kv_catch.isShow {
  -webkit-animation: 1s forwards anime_kv_catch;
  animation: 1s forwards anime_kv_catch;
}
@media screen and (min-width: 769px) {
  .lp_kv_catch {
    top: auto;
    right: auto;
    bottom: 60px;
    left: 50px;
    width: 130px;
  }
}
@media screen and (min-width: 1150px) {
  .lp_kv_catch {
    left: 0;
  }
}

@-webkit-keyframes anime_kv_catch {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes anime_kv_catch {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.lp_kv_growup {
  position: relative;
  margin-bottom: 10px;
  color: #004098;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.lp_kv_growup span {
  display: inline-block;
  padding: 0 5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff000));
  background: -webkit-linear-gradient(transparent 60%, #fff000 60%);
  background: linear-gradient(transparent 60%, #fff000 60%);
}
@media screen and (min-width: 769px) {
  .lp_kv_growup {
    font-size: 24px;
  }
}

.lp_kv_gds {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 4vw;
  margin-bottom: 10px;
}

.lp_kv_gds_inn {
  margin-right: -4vw;
  opacity: 0;
  -webkit-animation: 0.6s ease-out 0.5s forwards anime_kv;
  animation: 0.6s ease-out 0.5s forwards anime_kv;
}
.lp_kv_gds_inn:nth-of-type(2) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.lp_kv_gds_inn:nth-of-type(3) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@media screen and (min-width: 769px) {
  .lp_kv_gds_inn {
    margin-right: -36px;
  }
}

@-webkit-keyframes anime_kv {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes anime_kv {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.lp_kv_elm {
  text-align: center;
}
.lp_kv_elm img {
  width: 80%;
  -webkit-transform: translateX(-4vw);
  transform: translateX(-4vw);
}
@media screen and (min-width: 769px) {
  .lp_kv_elm img {
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
  }
}

.gotoshop {
  padding: 6vw 0;
  text-align: center;
}
.gotoshop img {
  width: 70%;
  max-width: 360px;
}

.lp_like {
  margin-bottom: 60px;
}

.lp_like_title {
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .lp_like_title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}

.lp_like_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lp_like_list > li {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-bottom: 15px;
  padding: 0 2vw;
}
.lp_like_list > li:nth-of-type(5), .lp_like_list > li:nth-of-type(6) {
  display: none;
}
@media screen and (min-width: 769px) {
  .lp_like_list {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    grid-gap: 15px;
  }
  .lp_like_list > li {
    -webkit-flex-basis: 16%;
    -ms-flex-preferred-size: 16%;
    flex-basis: 16%;
    padding: 0;
  }
  .lp_like_list > li:nth-of-type(5), .lp_like_list > li:nth-of-type(6) {
    display: block;
  }
}

.lp_num_title {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-family: sans-serif;
}

@media screen and (min-width: 769px) {
  .lp_hakira,
.lp_mushiba,
.lp_brush,
.lp_store_grid_wrap {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.lp_hakira_inner {
  padding: 0 15px;
}
@media screen and (min-width: 769px) {
  .lp_hakira_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
  }
}

.lp_hakira_flex {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_hakira_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
}

.lp_hakira_flex_exp {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_hakira_flex_exp {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-right: -160px;
  }
  .lp_brush .lp_hakira_flex_exp {
    text-align: center;
  }
}

.lp_num_content {
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .lp_num_content {
    font-size: 18px;
  }
}

.lp_emph {
  color: #009fe8;
}

.lp_hakira_flex_img {
  margin-bottom: 30px;
  margin-right: -15px;
  padding-left: 10px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .lp_hakira_flex_img {
    margin-right: 0;
    padding-left: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    -webkit-transform: translateX(210px);
    transform: translateX(210px);
  }
}

.zoom_effect.isShow, .zoom_effect.isShow:hover img {
  -webkit-transform: none;
  transform: none;
  -webkit-animation: 0.5s forwards anime_thumb_up;
  animation: 0.5s forwards anime_thumb_up;
}

@-webkit-keyframes anime_thumb_up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes anime_thumb_up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.frame_oct {
  margin-bottom: 10px;
  background: -webkit-linear-gradient(45deg, transparent 14px, #009fe8 15px, #fff 16px), -webkit-linear-gradient(315deg, transparent 14px, #009fe8 15px, #fff 16px), -webkit-linear-gradient(225deg, transparent 14px, #009fe8 15px, #fff 16px), -webkit-linear-gradient(135deg, transparent 14px, #009fe8 15px, #fff 16px);
  background: linear-gradient(45deg, transparent 14px, #009fe8 15px, #fff 16px), linear-gradient(135deg, transparent 14px, #009fe8 15px, #fff 16px), linear-gradient(225deg, transparent 14px, #009fe8 15px, #fff 16px), linear-gradient(315deg, transparent 14px, #009fe8 15px, #fff 16px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.frame_oct::before, .frame_oct::after {
  display: block;
  width: auto;
  margin: 0 20px;
  content: "";
}
.frame_oct::before {
  border-top: solid 1px #009fe8;
}
.frame_oct::after {
  border-bottom: solid 1px #009fe8;
}
.frame_oct > div {
  border-left: solid 1px #009fe8;
  border-right: solid 1px #009fe8;
  margin: 20px 0;
  padding: 0 20px;
}

.lp_hakira_hole {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_hakira_hole {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.hole_img {
  width: 62.5%;
  max-width: 230px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
  .hole_img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 230px;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    margin: 10px 50px 10px 10px;
  }
}

.hole_tx li,
.lp_brush_flow_tx li {
  padding-left: 1em;
  text-indent: -1em;
}
.hole_tx li::first-letter,
.lp_brush_flow_tx li::first-letter {
  color: #009fe8;
}
@media screen and (min-width: 769px) {
  .hole_tx,
.lp_brush_flow_tx {
    margin-top: 10px;
    font-size: 18px;
  }
}

.hole_tx_label {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.mb_adjust {
  margin-bottom: -100px;
  padding-bottom: 100px;
}

.cloudbox {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  background-color: #009fe8;
  color: #fff;
}
.cloudbox::before, .cloudbox::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 12vw;
  background-image: url(img/cloud.png);
  background-size: 120%;
  content: "";
}
.cloudbox::before {
  top: -6.1vw;
  background-position: left -10vw top;
}
.cloudbox::after {
  bottom: -6.1vw;
  background-position: left -10vw bottom;
}
@media screen and (min-width: 769px) {
  .cloudbox {
    margin-bottom: 100px;
  }
}
.cloudbox .gotoshop {
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .cloudbox .gotoshop {
    padding-bottom: 40px;
  }
}

.lp_brush_sub {
  position: relative;
  z-index: 3;
  padding: 30px 0;
}

.lp_brush_sub_title {
  position: relative;
  display: table;
  margin: 0 auto 40px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  font-family: sans-serif;
}
.lp_brush_sub_title::after {
  position: absolute;
  bottom: -5vw;
  left: 0;
  width: 100%;
  height: 11px;
  background: url(img/cloud_wave_sp.png) center no-repeat;
  background-size: 85%;
  content: "";
}
@media screen and (min-width: 769px) {
  .lp_brush_sub_title {
    margin-bottom: 80px;
    font-size: 32px;
  }
  .lp_brush_sub_title::after {
    bottom: -30px;
    background-size: auto;
  }
}

.lp_brush_sub_flex {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_brush_sub_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
  }
}

.lp_brush_sub_flex_tx {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_brush_sub_flex_tx {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    font-size: 18px;
    font-weight: bold;
  }
}

@media screen and (min-width: 769px) {
  .lp_brush_sub_flex_img {
    padding-left: 40px;
  }
}

.lp_brush_sub_move > div {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .lp_brush_sub_move {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 240px;
    padding-top: 20px;
    background: url(img/cloud_itembg.png) no-repeat;
  }
  .lp_brush_sub_move .move1 {
    margin-left: 40px;
  }
  .lp_brush_sub_move .move2 {
    margin-left: 50px;
  }
  .lp_brush_sub_move .move3 {
    margin-left: 65px;
  }
}

@-webkit-keyframes anime_slide_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes anime_slide_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.lp_mushiba {
  padding-top: 60px;
}
@media screen and (min-width: 769px) {
  .lp_mushiba {
    margin-top: -100px;
    padding-top: 160px;
  }
  .lp_mushiba .title_dotted_center {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  .lp_mushiba .lp_hakira_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 769px) {
  .lp_mushiba .lp_hakira_flex_exp {
    margin-right: 0;
    margin-left: -160px;
  }
}
.lp_mushiba .lp_hakira_flex_img {
  margin-right: 0px;
  margin-left: -15px;
  padding-left: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .lp_mushiba .lp_hakira_flex_img {
    margin-right: 0;
    -webkit-transform: translateX(-210px);
    transform: translateX(-210px);
  }
}

.img_aware {
  position: absolute;
  top: 31.5%;
  right: 3%;
  width: 100px;
}
@media screen and (min-width: 769px) {
  .img_aware {
    width: 130px;
    top: 175px;
  }
}

.lp_brush {
  padding-top: 60px;
}

.lp_brush_flow {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: auto auto;
}
.lp_brush_flow_mark {
  grid-column: 1/2;
  grid-row: 1/3;
}
.lp_brush_flow_tx {
  grid-column: 2/3;
  grid-row: 1/2;
  padding-left: 15px;
}
.lp_brush_flow_img {
  grid-column: 2/3;
  grid-row: 2/3;
  padding-left: 15px;
  padding-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lp_brush_flow {
    grid-template-columns: 160px 1fr 1fr;
    grid-template-rows: 1fr;
    padding-bottom: 30px;
  }
  .lp_brush_flow_tx {
    margin-left: 0;
    padding-right: 40px;
    font-size: 18px;
  }
  .lp_brush_flow_img {
    grid-column: 3/4;
    grid-row: 1/1;
    width: 408px;
    margin-left: 0;
  }
}

.lp_brush_flow.flow_lined::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  border-left: 4px dotted #009fe8;
  content: "";
}
@media screen and (min-width: 769px) {
  .lp_brush_flow.flow_lined::before {
    left: 55px;
  }
}

.flow_mark {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 80px;
  margin-left: -15px;
  padding: 20px 10px 20px 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: #ff0;
  color: #009fe8;
  font-size: 10px;
  text-align: center;
  line-height: 1;
}
.flow_mark_tx {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .flow_mark {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -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;
    width: 148px;
    height: 104px;
    border-radius: 36%/50%;
    font-size: 14px;
    line-height: 1.2;
  }
  .flow_mark_tx {
    font-size: 28px;
  }
}

.flow_alert {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  margin-left: -10px;
  padding: 5px 8px;
  border: 1px solid;
  border-radius: 14px;
  background-color: #fff;
  color: #ea616f;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .flow_alert {
    margin-left: 0;
    font-size: 16px;
  }
}

.lp_brush_lead {
  margin-bottom: 10px;
}
.lp_brush_lead_tx {
  color: #009fe8;
  font-size: 18px;
  font-weight: bold;
  font-family: sans-serif;
}
@media screen and (min-width: 769px) {
  .lp_brush_lead_tx {
    font-size: 26px;
  }
}

.lp_store_cart img {
  width: 45px;
  margin-left: 32px;
}
@media screen and (min-width: 769px) {
  .lp_store_cart {
    text-align: center;
  }
  .lp_store_cart img {
    width: auto;
    margin: 0;
  }
}

.lp_store_title {
  margin-top: -16px;
  font-weight: bold;
  font-size: 18px;
  font-family: sans-serif;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lp_store_title {
    margin-top: 10px;
    font-size: 36px;
  }
}

.lp_store_lineup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
}
.lp_store_lineup > li {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.lp_store_lineup > li:nth-of-type(odd) img {
  -webkit-transform: translateX(5vw);
  transform: translateX(5vw);
}
@media screen and (min-width: 769px) {
  .lp_store_lineup > li {
    -webkit-flex-basis: 33%;
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%;
  }
  .lp_store_lineup > li:nth-of-type(odd) img {
    -webkit-transform: none;
    transform: none;
  }
}

.lp_store_tx {
  margin-bottom: 20px;
  padding: 10px 0;
  text-align: center;
}

.lp_store_assort img {
  width: 88%;
}
@media screen and (min-width: 769px) {
  .lp_store_assort img {
    width: auto;
  }
}

.lp_store_gel {
  text-align: right;
}
.lp_store_gel img {
  width: 88%;
}
@media screen and (min-width: 769px) {
  .lp_store_gel img {
    width: auto;
  }
}

.lp_store_assort_tx,
.lp_store_gel_tx {
  text-align: center;
}
.lp_store_assort_tx > a,
.lp_store_gel_tx > a {
  display: inline-block;
  width: 70%;
  max-width: 360px;
  margin: 10px 0;
}
@media screen and (min-width: 769px) {
  .lp_store_assort_tx > a,
.lp_store_gel_tx > a {
    margin-top: 30px;
  }
}

.lp_store_gel_tx {
  padding-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .lp_store_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px 60px;
  }
  .lp_store_grid .lp_store_assort {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .lp_store_grid .lp_store_gel {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .lp_store_grid .lp_store_assort_tx {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .lp_store_grid .lp_store_gel_tx {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.lp_mushiba_doctor {
  padding: 15px;
  border: 1px solid #666;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor {
    padding: 15px 45px;
  }
}
.lp_mushiba_doctor_grid {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: 1fr auto;
  gap: 20px;
}
.lp_mushiba_doctor_grid .icon {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor_grid .icon {
    grid-row: 1/3;
  }
}
.lp_mushiba_doctor_grid h3 {
  grid-column: 2/3;
  grid-row: 1/2;
  color: #ea616f;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor_grid h3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 21px;
  }
}
.lp_mushiba_doctor_grid .prof {
  grid-column: 1/3;
  grid-row: 2;
}
.lp_mushiba_doctor_grid .prof .name {
  color: #ea616f;
  font-size: 14px;
  font-weight: bold;
  font-family: sans-serif;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor_grid .prof .name {
    font-size: 16px;
  }
}
.lp_mushiba_doctor_grid .prof .name sub {
  color: #000;
  font-size: 10px;
  font-weight: normal;
}
.lp_mushiba_doctor_grid .prof p span {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor_grid .prof {
    grid-column: 2/3;
  }
}
.lp_mushiba_doctor .tx {
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .lp_mushiba_doctor .tx {
    font-size: 17px;
  }
}

.lp_brush_doctor {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #666;
  border-radius: 16px;
}
.lp_brush_doctor h3 {
  margin-bottom: 20px;
  color: #ea616f;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lp_brush_doctor h3 {
    font-size: 21px;
  }
}
.lp_brush_doctor .prof_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.lp_brush_doctor .prof_title {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #000;
}
.lp_brush_doctor .prof_doc .name {
  color: #ea616f;
  font-size: 14px;
  font-weight: bold;
  font-family: sans-serif;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .lp_brush_doctor .prof_doc .name {
    font-size: 18px;
  }
}
.lp_brush_doctor .prof_doc .name sub {
  color: #000;
  font-size: 10px;
  font-weight: normal;
}
.lp_brush_doctor .prof_doc p {
  margin-bottom: 0;
}
/*# sourceMappingURL=../maps/pages/hakiralp.css.map */