@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 960px) {
  html {
    font-size: 56%;
  }
}
body {
  font-family: "秀英角ゴシック金 M", Shuei KakuGo Kin L, "A-OTF 秀英角ゴシック金 Std M", "游ゴシック", YuGothic, sans-serif;
  font-weight: 700;
  color: #171414;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 1.6rem;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.cf {
  display: inline-block;
}
/* Hides from IE Mac */
* html .cf {
  height: 1%;
}
.cf {
  display: block;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 960px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}
a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.5;
}
a img {
  border: none;
}
i {
  padding: 0 5px;
}
ul {
  letter-spacing: -1em;
}
ul li {
  letter-spacing: 0;
  list-style: none;
}
.pc {
  display: block;
}
@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}
.tablet {
  display: none;
}
@media only screen and (max-width: 960px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .tablet {
    display: none;
  }
}
.sp {
  display: none;
}
@media only screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}
.ssp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .ssp {
    display: block;
  }
}
/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 960px) {
  .br-pc {
    display: none;
  }
}
/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 960px) {
  .br_sp {
    display: block;
  }
}
.br_ssp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .br_ssp {
    display: block;
  }
}
/************************************

wrapper

************************************/
.wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
/************************************

bold reset

************************************/
h1, h2, h3, h4, h5, h6, th {
  font-weight: normal;
  font-family: "秀英角ゴシック金 B", Shuei KakuGo Kin B, "A-OTF 秀英角ゴシック金 Std B", "游ゴシック", YuGothic, sans-serif;
}
/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list::after {
  content: "";
  display: block;
  clear: both;
}
.list article {
  width: auto;
}
/************************************

margin-bottom

************************************/
.b5 {
  margin-bottom: 5px;
}
.b10 {
  margin-bottom: 10px;
}
.b15 {
  margin-bottom: 15px;
}
.b20 {
  margin-bottom: 20px;
}
.b25 {
  margin-bottom: 25px;
}
.b30 {
  margin-bottom: 30px;
}
.b40 {
  margin-bottom: 40px;
}
.b50 {
  margin-bottom: 50px;
}
.b60 {
  margin-bottom: 60px;
}
.b70 {
  margin-bottom: 70px;
}
.b80 {
  margin-bottom: 80px;
}
.b100 {
  margin-bottom: 100px;
}
/************************************

header

************************************/
header {
  background-color: #111;
  color: #fff;
  position: relative !important;
  width: 750px;
  height: 75px;
  margin: 0 auto;
  z-index: 100;
}
@media only screen and (max-width: 960px) {
  header {
    position: relative;
    height: 50px;
    width: 100%;
  }
}
header a {
  color: #fff;
}
header .wrapper {
  position: relative;
}
header .title {
  padding: 15px 0;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  header .title {
    padding: 10px 0;
  }
}
header .title h1 {
  width: 90px;
  margin: 0 auto 0;
}
@media only screen and (max-width: 960px) {
  header .title h1 {
    width: 60px;
  }
}
header .title h1 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("https://meplus.itembox.design/item/images/head_logo_w.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  height: 0;
  width: 100%;
  padding-top: 50%;
}
header #head_icon {
  width: 35px;
  top: 15px;
  right: 15px;
}
@media only screen and (max-width: 960px) {
  header #head_icon {
    width: 30px;
    right: 10px;
    top: 10px;
  }
  header #head_icon img {
    width: 30px;
  }
}
header #head_icon ul {
  display: block;
}
header #head_icon ul li {
  width: 35px;
  margin: 0;
}
@media only screen and (max-width: 960px) {
  header #head_icon ul li:nth-child(1) {
    display: block;
  }
}
/************************************

footer

************************************/
@media only screen and (max-width: 480px) {
  footer #footer_main .menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer #footer_main .menu li {
    width: auto;
  }
}
/*# sourceMappingURL=maps/lp.css.map */
/************************************

footer_main

************************************/
#footer_main {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}
@media only screen and (max-width: 960px) {
  #footer_main {
    padding: 30px 0;
  }
}
#footer_main a {
  color: #fff;
}
#footer_main h2 {
  width: 90px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 960px) {
  #footer_main h2 {
    width: 60px;
  }
}
#footer_main h2 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("https://meplus.itembox.design/item/images/head_logo_w.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  height: 0;
  width: 100%;
  padding-top: 50%;
}
#footer_main ul.menu {
  font-size: 1.9rem;
  font-family: "こぶりなゴシック W3 JIS2004", Koburina Gothic W3 JIS2004, "こぶりなゴシック Std W3", "游ゴシック", YuGothic, sans-serif;
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 20px;
}
@media only screen and (max-width: 960px) {
  #footer_main ul.menu {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 480px) {
  #footer_main ul.menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
#footer_main ul.menu li {
  margin: 0 15px 7px;
}
@media only screen and (max-width: 480px) {
  #footer_main ul.menu li {
    width: 45%;
    margin: 5px 5% 5px 0;
    text-align: left;
  }
}
#footer_main ul.sns {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#footer_main ul.sns li {
  margin: 0 15px 0px;
  width: 50px;
}
@media only screen and (max-width: 960px) {
  #footer_main ul.sns li {
    width: 40px;
  }
}
/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 40px;
  bottom: 0;
  right: 0;
  z-index: 10;
  font-size: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  #pageup {
    bottom: 0px;
    right: 0px;
    font-size: 4px;
  }
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #333;
}
#pageup .mark {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 2px;
}
.mincho {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 700;
}
/************************************

main

************************************/
main {
  display: block;
  padding-top: 110px;
}
@media only screen and (max-width: 960px) {
  main {
    padding: 0;
  }
}
/************************************

LP -css-

************************************/
#lp {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 0 auto;
}
@media only screen and (max-width: 960px) {
  #lp {
    max-width: 100%;
    width: 100%;
    margin: -50px auto 0 auto;
  }
}
/************************************

#mainimage

************************************/
#lp_mainimage {
  /*  background: url("https://meplus.itembox.design/item/images/lp2_image/bg_main.jpg") no-repeat 50% 50%;
  background-size: 100% 410px;*/
  height: auto;
  text-align: center;
  width: 100%;
}
#lp_mainimage h1 {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  #lp_mainimage {
    background-size: 100% 54.2vw;
  }
}
/************************************

.lp2_slider

************************************/
.lp_copy {
  margin: 20px auto 0 auto;
  max-width: 750px;
}
.lp2_slider {
  margin: 0 auto 80px auto;
  max-width: 650px;
}
.slick-dots {
  bottom: -40px !important;
}
.fs-c-slick .slick-dots li {
  height: 20px !important;
  width: 20px !important;
}
.fs-c-slick .slick-dots li button::before {
  color: #111 !important;
  font-size: 20px !important;
}
.fs-c-slick .slick-next::before, .fs-c-slick .slick-prev::before {
  content: "" !important;
}
.fs-c-slick .slick-prev, .fs-c-slick .slick-next {
  background: none !important;
}
@media only screen and (max-width: 750px) {
  .lp_copy {
    width: 96vw;
  }
  .lp2_slider {
    margin: 0 auto 15vw auto;
    width: 80vw;
  }
}
/************************************

#lp_course

************************************/
#lp_course {
  background-color: #F5F0DE;
  padding: 80px 0;
}
#lp_course .title {
  margin: 0 auto;
  max-width: 750px;
}
#lp_course ul {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 750px;
  width: 100%;
}
#lp_course ul li {
  width: 33.33%;
}
#lp_course .title, #lp_course .bnr_shampoo {
  margin: 0 auto;
  max-width: 750px;
}
@media only screen and (max-width: 960px) {
  #lp_course {
    padding: 30px 0;
  }
  #lp_course ul {
    margin: 10px auto;
    width: 96vw;
  }
  #lp_course .title, #lp_course .bnr_shampoo {
    width: 96vw;
  }
}
/************************************

#lp_worries

************************************/
#lp_worries {
  background: url("https://meplus.itembox.design/item/images/lp2_image/arrow.jpg") no-repeat bottom center;
  background-size: auto 52px;
  padding: 80px 0 120px 0;
  text-align: center;
}
#lp_worries img {
  max-width: 750px;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  #lp_worries {
    background-size: auto 20px;
    padding: 30px 0 40px 0;
    text-align: center;
  }
}
/************************************

#lp_point

************************************/
#lp_point .title {
  margin: 50px auto 0 auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .sub_title {
  background: #85653A;
  margin: 40px auto;
  width: 100%;
}
#lp_point .sub_title p {
  color: #FFF;
  font-size: 2.3em;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 750px;
  padding: 15px 0 15px 80px;
  width: 100%;
}
#lp_point .sub_title p.ico_point1 {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ico_point1.jpg") 0 50% no-repeat;
  background-size: 70px auto;
}
#lp_point .sub_title p.ico_point2 {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ico_point2.jpg") 0 50% no-repeat;
  background-size: 70px auto;
}
#lp_point .sub_title p.ico_point3 {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ico_point3.jpg") 0 50% no-repeat;
  background-size: 70px auto;
}
#lp_point .sub_title p.ico_point4 {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ico_point4.jpg") 0 50% no-repeat;
  background-size: 70px auto;
}
#lp_point .sub_title p.ico_point5 {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ico_point5.jpg") 0 50% no-repeat;
  background-size: 70px auto;
}
#lp_point .sub_title p span {
  display: block;
  font-size: 0.75em;
  color: #FFFF72;
}
#lp_point .point1 {
  margin: 0 auto 40px auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .point1::after {
  content: "";
  display: block;
  clear: both;
}
#lp_point .point1:last-child {
  margin-bottom: 0;
}
#lp_point .point1 li:nth-child(1) {
  float: right;
  font-size: 2.0em;
  margin-bottom: 0.3em;
  width: 330px;
}
#lp_point .point1 li:nth-child(1) span {
  border-left: 2px solid #85653A;
  border-right: 2px solid #85653A;
  color: #85653A;
  margin: 0 auto;
  padding: 0 0.5em;
}
#lp_point .point1 li:nth-child(2) {
  float: left;
  width: 400px;
}
#lp_point .point1 li:nth-child(3) {
  float: right;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  width: 330px;
}
#lp_point .point1 li:nth-child(3) b {
  background: -moz-linear-gradient(to bottom, #FFF, #FFF 60%, #EEE6BB 60%, #EEE6BB);
  background: -webkit-linear-gradient(to bottom, #FFF, #FFF 60%, #EEE6BB 60%, #EEE6BB);
  background: linear-gradient(to bottom, #FFF, #FFF 60%, #EEE6BB 60%, #EEE6BB);
  font-weight: 500;
}
#lp_point .point2 {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .point2 p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.8;
}
#lp_point .point2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#lp_point .point2 ul li:first-child {
  width: 430px;
}
#lp_point .point2 ul li:last-child {
  width: 300px;
}
#lp_point .point2 ul li div {
  border-bottom: 2px solid #111;
  font-size: 1.3em;
  margin: 1.0em 0;
  padding-bottom: 0.3em;
  text-align: center;
}
#lp_point .point2 ul li img {
  margin-bottom: 8px;
}
#lp_point .point3 {
  margin: 0 auto 40px auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .point3:last-child {
  margin-bottom: 0;
}
#lp_point .point3 li {
  float: right;
  max-width: 480px;
  width: 100%;
}
#lp_point .point3.reverse li {
  float: left;
}
#lp_point .point3.reverse .images {
  float: right;
}
#lp_point .point3 .images {
  float: left;
  width: 250px;
}
#lp_point .point3 .oil_name {
  border-bottom: 2px solid #111;
  font-size: 1.7em;
  margin-bottom: 0.5em;
}
#lp_point .point3 li p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.8;
}
#lp_point .point3 li p .mini {
  display: block;
  text-align: right;
  font-size: 0.8em;
}
#lp_point .point3 li .ecocert {
  background: url("https://meplus.itembox.design/item/images/lp2_image/ecocert.jpg") no-repeat 10px 50%;
  border: 1px solid #CCC;
  padding: 10px 10px 10px 105px;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.5;
}
#lp_point .point4 {
  height: auto;
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .point4 .images {
  margin-top: 2.5em;
}
#lp_point .point4 .text {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.8;
}
#lp_point .point5 {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
#lp_point .point5 p {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2.5em;
}
@media only screen and (max-width: 960px) {
  #lp_point .title {
    margin-top: 20px;
  }
  #lp_point .sub_title {
    margin: 30px auto;
  }
  #lp_point .sub_title p {
    background-size: 40px;
    font-size: 1.43em;
    letter-spacing: 0em;
    line-height: 1.4;
    padding: 0.5em 0 0.5em 50px;
    width: 96vw;
  }
  #lp_point .sub_title p.ico_point1, #lp_point .sub_title p.ico_point2, #lp_point .sub_title p.ico_point3, #lp_point .sub_title p.ico_point4, #lp_point .sub_title p.ico_point5 {
    background-size: 40px;
  }
  #lp_point .sub_title p span {
    font-size: 0.65em;
  }
  #lp_point .point1 {
    margin: 0 auto 30px auto;
    width: 96vw
  }
  #lp_point .point1 li:nth-child(1) {
    float: none;
    font-size: 1.8em;
    margin-bottom: 0.5em;
    text-align: center;
    width: 100%;
  }
  #lp_point .point1 li:nth-child(2) {
    float: none;
    width: 100%;
  }
  #lp_point .point1 li:nth-child(3) {
    float: none;
    font-size: 1.0em;
    margin-top: 1.0em;
    width: 100%;
  }
  #lp_point .point2 {
    width: 96vw;
  }
  #lp_point .point2 p {
    font-size: 1.0em;
  }
  #lp_point .point2 ul li:first-child {
    width: 96vw;
  }
  #lp_point .point2 ul li:last-child {
    width: 96vw;
  }
  #lp_point .point2 ul li div {
    font-size: 1.5em;
  }
  #lp_point .point2 ul li img {
    display: block;
    margin: 5px auto;
    width: 60vw;
  }
  #lp_point .point3 {
    margin-bottom: 20px;
    width: 96vw;
  }
  #lp_point .point3 ul {
    text-align: center;
    width: 100%;
  }
  #lp_point .point3 .images{
    text-align: center;
    width: 100%;
  }
  #lp_point .point3 li img {
    width: 55vw;
  }
  #lp_point .point3 li {
    width: 100%;
  }
  #lp_point .point3 .oil_name {
    font-size: 1.5em;
    margin: 0.7em 0;
    text-align: center;
  }
  #lp_point .point3 li p {
    font-size: 1.0em;
  }
  #lp_point .point3 li .ecocert {
    background: url("https://meplus.itembox.design/item/images/lp2_image/ecocert.jpg") no-repeat 10px 10px;
  }
  #lp_point .point4 {
    height: auto;
    width: 96vw;
  }
  #lp_point .point4 .images {
    height: auto;
    position: relative;
    width: 100%;
  }
  #lp_point .point4 .text {
    bottom: 0;
    font-size: 1.0em;
    left: 0;
    margin-bottom: 1.5em;
    padding: 0;
    position: relative;
    width: 100%;
  }
  #lp_point .point5 {
    width: 96vw;
  }
  #lp_point .point5 p {
    font-size: 1.0em;
    margin-bottom: 1.5em;
  }
}
/************************************

#lp_voice

************************************/
#lp_voice {
  margin: 80px auto;
  max-width: 750px;
  width: 100%;
}
#lp_voice ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#lp_voice ul li {
  width: 50%;
}
#lp_voice div {
  font-size: 1.2em;
  text-align: right;
  margin-top: 0.5em;
}
@media only screen and (max-width: 960px) {
  #lp_voice {
    margin: 60px auto;
    width: 96vw;
  }
  #lp_voice ul, #lp_voice ul li, #lp_voice div {
    font-size: 1.0em;
    margin-left: auto;
    margin-right: auto;
    width: 75vw;
  }
}
/************************************

#lp_howto

************************************/
#lp_howto {
  margin: 0 auto 80px auto;
  max-width: 750px;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  #lp_howto {
    margin-bottom: 60px;
    width: 96vw;
  }
}
/************************************

#lp_cart

************************************/
#lp_cart {
  background-color: #F5F0DE;
  margin-bottom: 80px;
  padding-bottom: 40px;
}
#lp_cart .cart_box {
  background: #FFF;
  margin: 0 auto 40px auto;
  padding: 20px;
  max-width: 750px;
  width: 100%;
}
#lp_cart .cart_box .catch {
  color: #981B1B;
  font-size: 3.4em;
  text-align: center;
  padding: 10px 0;
}
#lp_cart .cart_box .catch span {
  background: #981B1B;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  color: #FFF;
  display: inline-block;
  font-size: 0.45em;
  margin: 0 auto;
  padding: 5px 1.0em;
}
#lp_cart .cart_box > dl {
  margin-top: 20px;
}
#lp_cart .cart_box > dl > dt {
  margin: 0 auto;
  width: 50%;
}
#lp_cart .cart_box > dl > dd {
  width: 100%;
}
#lp_cart .cart_box > dl > dd .name {
  font-size: 2.2em;
  margin-top: 20px;
}
#lp_cart .cart_box > dl > dd img {
  height: 80px;
  width: auto;
}
#lp_cart #regular3 > dl > dd img {
  height: 160px;
  width: auto;
}
#lp_cart .cart_box > dl > dd p {
  font-size: 1.3em;
  font-weight: 500;
}
#lp_cart .cart_box > dl > dd .cart_item {
  border: 1px solid #00A8E1;
  padding: 5px;
  max-width: 710px;
  width: 100%;
}
#lp_cart .cart_box > dl > dd .cart_item .cart_item_ttl {
  background: #00A8E1;
  color: #FFF;
  font-size: 1.3em;
  padding: 0.2em 1.0em;
}
#lp_cart .cart_box > dl > dd .cart_item dl {
  display: flex;
  align-items: center;
  font-size: 1.5em;
}
#lp_cart .cart_box > dl > dd .cart_item dl dt {
  padding: 0.5em 1.0em;
}
#lp_cart .cart_box > dl > dd .cart_item .deep {
  border-bottom: 1px solid #00A8E1;
  color: #311300;
}
#lp_cart .cart_box > dl > dd .cart_item .light {
  color: #542f1e;
}
#lp_cart .cart_box > dl > dd .suryo {
  display: none;
}
#lp_cart .cart_box > dl > dd .cart_brn {
  background: #85653A;
  border: none;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: 2.0em;
  margin-top: 30px;
  padding: 0.3em 0;
  position: relative;
  text-align: center;
  width: 710px;
}
#lp_cart .cart_box > dl > dd .cart_brn:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 960px) {
  #lp_cart {
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
  #lp_cart .cart_box {
    margin: 0 auto 20px auto;
    padding: 2vw;
    width: 96vw;
  }
  #lp_cart .cart_box .catch {
    font-size: 1.5em;
  }
  #lp_cart #regular2 .catch, #lp_cart #regular3 .catch {
    font-size: 1.7em;
  }
  #lp_cart #regular2 .catch span, #lp_cart #regular3 .catch span {
    font-size: 0.7em;
  }
  #lp_cart .cart_box > dl {
    margin-top: 20px;
  }
  #lp_cart .cart_box > dl > dt {
    text-align: center;
    width: 100%;
  }
  #lp_cart .cart_box > dl > dt img {
    width: 40vw;
  }
  #lp_cart .cart_box > dl > dd {
    text-align: center;
    width: 100%;
  }
  #lp_cart .cart_box > dl > dd .name {
    font-size: 1.2em;
  }
  #lp_cart .cart_box > dl > dd img {
    height: 40px;
  }
  #lp_cart #regular3 > dl > dd img {
    height: 80px;
  }
  #lp_cart .cart_box > dl > dd p {
    font-size: 0.8em;
  }
  #lp_cart .cart_box > dl > dd .cart_item .cart_item_ttl {
    font-size: 1.1em;
    padding: 0.2em 0;
  }
  #lp_cart .cart_box > dl > dd .cart_item dl{
    font-size: 1.1em;
  }
  #lp_cart .cart_box > dl > dd .cart_brn {
    font-size: 1.5em;
    margin-top: 15px;
    padding: 0.3em 0;
    width: 100%;
  }
  #lp_cart .cart_box > dl > dd a:before {
    width: 6px;
    height: 6px;
    right: 10px;
    margin-top: -4px;
  }
}
/************************************

#lp2_component

************************************/
#lp2_component {
  border: 1px solid #CCC;
  margin: 80px auto;
  padding: 30px;
  max-width: 750px;
  width: 100%;
}
#lp2_component dl:first-child {
  margin-bottom: 30px;
}
#lp2_component dl dt {
  border-bottom: 1px solid #B3967B;
  color: #B3967B;
  font-size: 1.2em;
  margin-bottom: 1.0em;
  padding-bottom: 0.3em;
}
#lp2_component dl dd {
  font-size: 1.0em;
}
@media only screen and (max-width: 960px) {
  #lp2_component {
    margin: 60px auto;
    padding: 5vw;
    width: 96vw;
  }
  #lp2_component dl:first-child {
    margin-bottom: 5vw;
  }
  #lp2_component dl dt {
    margin-bottom: 0.7em;
  }
}
/************************************

#faq2

************************************/
#faq2 {
  background: url(https://meplus.itembox.design/item/images/lp_image/faq_back.jpg) no-repeat 50% 50%;
  background-size: cover;
  margin: 0 auto;
  padding: 0 20px 10px 20px;
  max-width: 750px;
  width: 100%;
}
#faq2 .faq2_title {
  font-size: 3.0em;
  padding: 0.5em 0;
  text-align: center;
}
#faq2 .faq2_inner_box {
  background: rgba(255, 255, 255, .9);
  margin-bottom: 30px;
  padding: 20px 20px 30px 20px;
}
#faq2 .faq_item_title {
  background: #00A9E3;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  color: #FFF;
  font-size: 2.0em;
  padding: 0.1em 0;
  text-align: center;
}
#faq2 .faq2_item .faq2_question {
  border-bottom: 1px solid #CCC;
  cursor: pointer;
  font-size: 1.5em;
  margin-top: 20px;
  padding-bottom: 0.2em;
}
#faq2 .faq2_item .faq2_anser {
  display: none;
  font-size: 1.2em;
  padding-top: 0.7em;
}
#faq2 .faq2_item .faq2_anser ol {
  font-size: 0.8em;
  padding: 2px 0 10px 20px;
}
#faq2 .faq2_item .faq2_anser ol li {
  margin: 0.7em 10px 0 0;
}
#faq2 .faq2_item .faq2_anser p {
  margin: 0 0 0.3em 0;
}
/* 矢印 */
#faq2 .faq2_item .faq2_question {
  position: relative;
}
#faq2 .faq2_item .faq2_question::after {
  border-right: solid 2px #111;
  border-top: solid 2px #111;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 25%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 12px;
}
#faq2 .faq2_item .faq2_question.open::after {
  top: 32%;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  #faq2 {
    padding: 0 2vw 10px 2vw;
    width: 100%;
  }
  #faq2 .faq2_title {
    font-size: 2.6rem;
  }
  #faq2 .faq2_inner_box {
    margin-bottom: 5vw;
    padding: 2vw 2vw 6vw 2vw;
  }
  #faq2 .faq_item_title {
    font-size: 2.4rem;
    padding: 0.05em 0;
  }
  #faq2 .faq2_item {
    margin: 0 2vw;
  }
  #faq2 .faq2_item .faq2_question {
    font-size: 2.2rem;
    margin-top: 6vw;
    padding-right: 20px;
  }
  #faq2 .faq2_item .faq2_anser {
    font-size: 1.8rem;
  }
  #faq2 .faq2_item .faq2_question::after {
    height: 8px;
    right: 5px;
    width: 8px;
  }
}