@charset "UTF-8";

  
#lp_wrap{
	overflow: hidden;
    position:relative;
} 

/*--------------------------------------
　     　　　アニメーション
---------------------------------------*/

/*-----------ロード時-------------*/
#lp_wrap .start {
/*	background: #fff8c5;*/
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
#lp_wrap .start >div {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 180px;
}
/*-----------ロード時-------------*/
/*-----------グラデーション-------------*/
#lp_wrap .start {
  width: 100vw;
  height: 100vh;
  background:linear-gradient(45deg, #edbe00,#ffdb00,#fff199,#fff8c5);
  background-size: 200% 200%;
  animation: bggradient 2s ease infinite;  
}


@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*-----------グラデーション-------------*/
/*--------------fvのアニメーション---------------*/
 .box{
  opacity: 0;
}

 .fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

 .fadeUp2 {
animation-name:fadeUpAnime2;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime2{
  from {
    opacity: 0;
  transform: translateY(0);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

 .fv_scale {
animation-name:fv_scale;
animation-duration:1.8s;
animation-fill-mode:forwards;
animation-timing-function: ease;	 
animation-delay: 0.2s;
opacity: 0;
}
@keyframes fv_scale{
  from {
    opacity: 0;
  	transform: scale(1.2);
  }

  to {
    opacity: 1;
  	transform: scale(1);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

 .delay-time01{
animation-delay: 3.5s;
}
.delay-time02{
animation-delay: 4s;
}
/*--------------fvのアニメーション---------------*/
/*--------------縮小---------------*/
.sa {
  opacity: 0;
  transition: all 1.8s ease;
  transition-delay: 0s;
}
.sa.show {
  opacity: 1;
  transform: none;
  
}
.sa--scaleDown {
  transform: scale(1.2);
}
.m_img{
  /* 縦横300pxにがっちり固定 */
  width: 100%;
  height: auto;
  /* 固定した幅からはみ出たものは隠してしまう */
  overflow: hidden;
}
/*--------------縮小---------------*/

/*---------------------------------------------
rayout
---------------------------------------------*/
.split{
    display: table;
    width: 100%;
}
.split-item{
    display: table-cell;
    width: 50%;
}
.split-left{
    position: relative;
}
.split-left__inner{
    height: 100%;
    position: fixed;
    width: 50%;
}
@media screen and (max-width:1024px) {
    .split{
        display: block;
    }
    .split-item{
        display: block;
        width: auto;
    }
    .split-left__inner{
        position: inherit;
        width: auto;
    }
}


/*---------------------------------------------
FV
---------------------------------------------*/
#lp_wrap .new_copyright{
    position: absolute;
    top: 10%;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
 #lp_wrap .new_copyright >img{
    width: 33%;
    height: 100%;
}

#lp_wrap .new_copyright >p{
    font-size: 2.3rem;
    margin-left: 4%;
    color: #8c8885;
    font-weight: 600;
}

#lp_wrap .new_copyright >p span{
    font-size: 1.5rem;
}

#lp_wrap .fv {
	position: relative;
}

#lp_wrap .fv-img >img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#lp_wrap .fv-img .fv_item {
    position: absolute;	
	top: 7%;
    width: 82%;
    left: -2%;
}

#lp_wrap .fv-img .fv_item:nth-of-type(2) {
	width: 32%;
    right: 4% !important;
    top: 18%;
    left: auto;
}

#lp_wrap .fv-bottom,#lp_wrap .fv-bottom .fv_bottom_img {
	position: relative;
}

#lp_wrap .fv-bottom .fv_shape {
    margin: -70% -5% -69%;
    width: 105%;
    height: auto;
}

#lp_wrap .fv-bottom .fv_title{
    position: absolute;
    width: 64%;
    top: -42%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

#lp_wrap .fv-bottom .fv_title:nth-of-type(3) {
    top: -25%;
}

#lp_wrap .fv-bottom .fv_txt1,.fv-bottom .fv_txt2{
    position: absolute;
    text-align: center;
	top: 9%;
	right: 0;
    left: 0;
	padding: 0 4%;
}

#lp_wrap .fv-bottom .fv_txt2{
	top: auto;
	bottom: 4%;
    font-size: 1.35rem;
    z-index: 100;
}

#lp_wrap .fv_txt2 p.notes {
	text-align: left;
	margin-top: 3%;
}


#lp_wrap .fv_bottom_txt {
    width: 88%;
    margin: 10% auto 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    line-height: 2;
	letter-spacing: 2.3px;
}

#lp_wrap .fv_bottom_txt span {
	font-size: 1.4rem;
}

@media screen and (max-width: 375px){
	#lp_wrap .fv-bottom .fv_txt2{
		font-size: 1.3rem!important;
	}
}

@media screen and (min-width: 1040px){

#lp_wrap .fv-img .fv_item {
	top: 6%;
	left: 10%;
	width: 67%;
}
#lp_wrap .fv-img .fv_shape {
    width: 110%;
    margin: -68% -10% auto;
	position: relative;
}
#lp_wrap .fv-img .fv_title{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 10%;
}
#lp_wrap .fv-img .fv_title:nth-of-type(1) >img {
    width: 60%;
    margin-left: 5%;
}
#lp_wrap .fv-img .fv_title:nth-of-type(2) {
    top: 20%;
}
#lp_wrap .fv-img .fv_title>img{
	width: 40%;
}

#lp_wrap .fv-bottom .fv_shape {
	margin: -59% 0;
	width: 100%;
}

#lp_wrap .fv-bottom .fv_txt1, .fv-bottom .fv_txt2 {
	top: 5%;
}

#lp_wrap .fv-bottom .fv_txt2 {
	bottom: 2%;
}

#lp_wrap .fv_txt2 p.notes {
    margin-left: 5%;
    margin-top: 2%;
}

#lp_wrap .fv-img .fv_item:nth-of-type(2) {
        width: 25%;
        right: 11% !important;
        top: 12%;
    }

}

@media screen and (min-width: 1200px){

#lp_wrap .fv-img >img {
	width: 100%;
}
    #lp_wrap .fv-bottom .fv_shape {
        margin: -60% 0;
        width: 100%;
    }
	#lp_wrap .fv-bottom .fv_txt2 {
		font-size: 1.3rem;
		bottom: 4%;
	}
	#lp_wrap .fv-img .fv_shape {
        margin: -97% -10% auto;
    }
	#lp_wrap .fv-img .fv_item {
		top: 5%;
		left: 15%;
		width: 56%;
	}
}

@media screen and (min-width: 1300px){
	#lp_wrap .fv-bottom .fv_txt2 {
		bottom: 5%;
	}

}

@media screen and (min-width: 1400px){
	#lp_wrap .fv-bottom .fv_shape {
		margin: -62% 0;	
	}
	#lp_wrap .fv-img .fv_item{
        width: 49%;
        top: 3%;
    }
#lp_wrap .fv-img .fv_title{
    position: absolute;
    width: 100%;
    text-align: center;
	top: -3%;
}
#lp_wrap .fv-img .fv_title:nth-of-type(1) >img {
    width: 60%;
    margin-left: 5%;
}
#lp_wrap .fv-img .fv_title:nth-of-type(2) {
    top: 6%;
}
}

@media screen and (min-width: 1600px){

    #lp_wrap .fv-img .fv_shape {
        margin: -108% -10% auto;
    }
	#lp_wrap .fv-img .fv_item{
        left: 21%;
        width: 48%;
    }
	#lp_wrap .fv-img .fv_item:nth-of-type(2) {
	    width: 23%;
        right: 14% !important;
        top: 9%;
	}
	#lp_wrap .fv-img .fv_title>img {
        width: 34%;
    }
	#lp_wrap .fv-img .fv_title {
        top: 5%;
    }
	#lp_wrap .fv-img .fv_title:nth-of-type(2) {
		top: 13%;	
	}
	#lp_wrap .new_copyright {
		right: 9%;
	}

}


/*---------------------------------------------
contents
---------------------------------------------*/
#lp_wrap .contents-title{
    font-size: 1.8rem;
    text-align: center;
    margin: 6% auto 2%;
}

#lp_wrap .catch_b {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 4%;
}

@media screen and (min-width: 1040px){
.pc_wrap {
	max-width: 750px!important;
    padding: 1% 7% 10% !important;
}
}

@media screen and (min-width: 1200px){
.pc_wrap {
    padding: 1% 13% 10% !important;
}
}

@media screen and (min-width: 1300px){
.pc_wrap {
    padding: 1% 15% 10% !important;
}
}


/*--------------product---------------*/

#lp_wrap .product {
	background-color: #fffce9;
	position: relative;
	padding-bottom: 20%;
}

#lp_wrap .product>div {
	position: absolute;
	top: 0;
	text-align: center;
	width: 100%;
}

#lp_wrap .product_box1 .credit{
    width: 32%;
    margin: auto;
    justify-content: space-between;
    padding: 1% 6%;
    background-color: #ffdb00;
    color: #fff;
    border-radius: 20px;
    line-height: 1.1;
}

#lp_wrap .product_box1 .credit span:nth-of-type(2) {
    border-left: solid 1px #fff;
    padding-left: 11%;
}

#lp_wrap .item_name {
    margin: 0 auto 3%;
    font-size: 1.7rem;
    line-height: 1.6;
}

#lp_wrap .product_box2{
    margin: 80% 15% 0;
    justify-content: space-between;
    font-size: 4.5rem;
    font-weight: 500;
	line-height: 1.5;
}

#lp_wrap .product_box2>div {
	width: 37%;
}

#lp_wrap .product_box2>p {
    width: 15%;
    text-align: center;
    font-size: 3.5rem;
    padding-top: 4%;
}

#lp_wrap .product_box2>div>p {
    font-size: 1.5rem;
    padding: 1.5% 3%;
}

#lp_wrap .product_box2 .clean {
    background-color: #aeaba9;	
	color: #fff;
}
#lp_wrap .product_box2 .skin {
    background-color: #fff8c5;
	color: #aeaba9;
}

#lp_wrap .line_wrap {
    position: relative;
    padding: 7%;
	margin-top: 5%;
}

#lp_wrap .line {
      content: "";
    　height: 0px;
      width: 1.5px;
      background-color: #aeaba9;
      position: absolute;
      top: 0%;
    　left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
 }
				   
#lp_wrap .line {
    height: 0px;
}
 
#lp_wrap .line.active {
    height   : 45px;
    animation: line 1.3s forwards linear;
	left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
}
 
@keyframes line {
    0% {
        height: 0px;
    }
 
    100% {
        height: 45px;
    }
}

#lp_wrap .product_box3{
    font-size: 1.8rem;
    line-height: 1.5;
    color: #807c79;
}
#lp_wrap .product_box3 .catch_b{
	font-size: 2.3rem;
}
#lp_wrap .product_box3 .flex{
    justify-content: space-between;
    margin: 5% 20%;
    align-items: center;
}
#lp_wrap .product_box3 .flex>img {
    width: 44%;
    height: 100%;
}
#lp_wrap .product_box3 .flex>img:nth-of-type(2) {
    width: 47%;
    height: 100%;
}

@media screen and (min-width: 1040px){
	#lp_wrap .product>div {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		text-align: center;
		width: 90%;
	}
	
	#lp_wrap .product {
		padding-bottom: 10%;	
	}
	
	#lp_wrap .product_box2 {
		margin-top: 40%;
	}

}

/*@media screen and (min-width:768px) and (max-width: 1024px) {*/
@media screen and (min-width: 1200px){
	#lp_wrap .product_box2 {
		margin: 40% 13% 0;
	}

}
@media screen and (min-width: 1300px){
	#lp_wrap .product>div {
		width: 68%;	
	}
	
	#lp_wrap .product_box2 {
		margin-top: 80%;
	}

}

/*--------------point---------------*/
#lp_wrap .point {
	background-color: #fffce9;
	padding: 1% 0 10%;
}

#lp_wrap .point_box {
    padding: 0 5%;
	justify-content: space-between;
    margin-bottom: 5%;
}

#lp_wrap .point_img {
    margin: 3% 0% 0 2%;
    width: 30%;
}
#lp_wrap .component {
	width: 61%;
}
#lp_wrap .component .component_txt {
    font-size: 1.5rem;
}
#lp_wrap .component .catch_b{
    font-size: 2.1rem;
    letter-spacing: 0.02rem;
}
#lp_wrap .component .catch_b >span:first-of-type{
    font-size: 2.4rem;
}

#lp_wrap .component li {
    position: relative;
    padding: 5% 5% 5% 9%;
    border: solid 1px #ffdb00;
    border-radius: 30px;
    margin: 5% 0 8% 5%;
    font-size: 1.4rem;
    line-height: 1.2;
    height: 33px;
	display: flex;
    align-items: center;
}

#lp_wrap .component li >img {
    position: absolute;
    width: 12%;
    left: -7%;
}

#lp_wrap .component .notes {
	text-align: right;
}

/*--------------features---------------*/

#lp_wrap .features {
	background: linear-gradient(to bottom, #fff8c5 40%, #fffce8 60%);
	background: -webkit-linear-gradient(top, #fff8c5 40%, #fffce8 60%);
	background: -moz-linear-gradient(top, #fff8c5 40%, #fffce8 60%);
    padding: 1% 6.5% 10%;
}

#lp_wrap .features_box1{
    position: relative;
	margin-top: 10%;
}

#lp_wrap .features_tx1{
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1.6rem;
}

#lp_wrap .features_tx1 .catch_b{
    font-size: 2.7rem;
    line-height: 1.5;
}

#lp_wrap .features_box2{
    padding: 10% 5%;
    background-color: #fffce8;
	line-height: 1.5;
}

#lp_wrap .features_tx2 {
    text-align: center;
}

#lp_wrap .features_tx2 >p:first-of-type{
    font-size: 2.3rem;
}

#lp_wrap .features_tx2 .catch_b{
    font-size: 3.3rem;
}

#lp_wrap .features_tx2 >p:nth-of-type(2){
    line-height: 1.6;
    margin-top: 4%;
    font-size: 1.4rem;
}

#lp_wrap .features_img {
    margin: 10% 8% 4% 7%;
    border-top: solid 1.5px #313131;
    border-bottom: solid 1.5px #313131;
}

#lp_wrap .features_img .flex {
    align-items: center;
}

#lp_wrap .features_img .flex:first-of-type {
    border-bottom: solid 0.5px #313131;
}

#lp_wrap .features_img .flex >img, #lp_wrap .features_img .flex >p {
	width: 50%;
}

#lp_wrap .features_img .flex >p {
    font-size: 1.2rem;
    margin-left: 3%;
}

#lp_wrap .features_box2 >.notes {
	margin-left: 7%;
}

/*--------------ba---------------*/
#lp_wrap .ba{
    margin: 3.5%;
    text-align: center;
}

#lp_wrap .ba .flex{
	justify-content: center;
}

#lp_wrap .ba_box {
	margin-bottom: 10%;
}

#lp_wrap .ba_box>p{
    font-size: 1.5rem;
    margin-bottom: 5%;
}

#lp_wrap .ba_box .clas {
	color: #fff;
}

#lp_wrap .ba_box .before{
    background-color: #d1cfce;
}

#lp_wrap .ba_box .after{
    background-color: #aeaba9;
}

#lp_wrap .ba .notes{ 
	text-align: left;
}

/*--------------multi---------------*/

#lp_wrap .multi  {
    /*background-image: url("../img/multi_bk.png");
    background-repeat: no-repeat;
    background-size: cover;*/
	background-color: #fffce9;
	/*padding-bottom: 30%;*/
	position: relative;
}

#lp_wrap .multi>div {
    position: absolute;
    top: 0;
	text-align: center;
    width: 100%;
}

#lp_wrap .multi_tx {
    text-align: center;
    font-size: 2rem;
    margin: 7% 0 10%;
}

#lp_wrap .multi_tx .catch_b {
    font-size: 2.5rem;
    line-height: 1.5;
}

#lp_wrap .multi_img{
    position: relative;
}

#lp_wrap .multi_item{
    position: absolute;
    width: 57%;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-left: 6%;
}

#lp_wrap .multi_maru {
    position: relative;
    text-align: center;
	padding: 0 2%;
}

#lp_wrap .multi_maru >img{
    width: 60%;
}

#lp_wrap .multi_maru li {
    position: absolute;
    font-size: 1.3rem;
    font-weight: 500;
}

#lp_wrap .multi_maru .multi_li1 {
    top: -1%;
    left: 33%;
}

#lp_wrap .multi_maru .multi_li2{
    top: 3%;
    right: 3%;
}
#lp_wrap .multi_maru .multi_li3{
    bottom: 23.5%;
    right: 13%;
}
#lp_wrap .multi_maru .multi_li4{
    bottom: 5%;
    left: 5%;
}
#lp_wrap .multi_maru .multi_li5{
    top: 34%;
    left: 9%;
}

#lp_wrap .multi_catch{
    position: absolute;
    width: 25%;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#lp_wrap .multi_box1{
    text-align: center;
    margin: 13% auto;
    font-size: 2rem;
    width: 75%;
}

#lp_wrap .multi_box2{
    width: 85%;
    text-align: center;
    margin: auto;
	box-shadow: 5px 5px 5px rgba(76, 78, 84, .15);
}

#lp_wrap .multi_box2 >p{
    font-size: 1.8rem;
    background-color: #d1cfce;
    color: #fff;
    line-height: 1.7;
    padding-bottom: 1%;
}

#lp_wrap .multi_box2 ul{
    margin: 0;
    background-color: #fff;
    padding: 4% 5% 0 4%;
}

#lp_wrap .multi_box2 ul li {
    padding: 4% 0;
    border-bottom: solid 1px #ffdb00;
    align-items: center;
    font-size: 1.35rem;
}

#lp_wrap .multi_box2 ul li:first-of-type {
	padding-top: 0;
}

#lp_wrap .multi_box2 ul li:last-of-type {
	border-bottom: none;
}

#lp_wrap .multi_box2 ul li img {
    width: 7%;
	height: 100%;
}

#lp_wrap .multi_box2 ul li p{
    margin-left: 3%;
}

@media screen and (min-width: 1040px){
	#lp_wrap .multi>div {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		text-align: center;
		width: 85%;
	}
	
	#lp_wrap .multi {
        padding-bottom: 60%;	
	}

}

@media screen and (min-width: 1200px){
	#lp_wrap .multi>div {
		width: 68%;
	}
	
	#lp_wrap .multi {
		padding-bottom: 30%;	
	}
}

@media screen and (min-width: 1400px){
	#lp_wrap .multi {
		padding-bottom: 10%;	
	}
}


/*--------------fregrance---------------*/

#lp_wrap .fregrance{
    background-color: #fffce9;
    padding-top: 1%;
	position: relative;
}

#lp_wrap .fregrance .contents-title{
    margin-top: -25%;
}

#lp_wrap .fregrance .flex{
    margin-top: 5%;
    justify-content: space-between;
}

#lp_wrap .fregrance .flex >img {
	width: 35%;
}

#lp_wrap .fregrance .flex >p{
    padding: 4% 2% 10% 7%;
    font-size: 1.2rem;
    line-height: 2;
}

#lp_wrap .fregrance .flex .catch_b{
    font-size: 2.2rem;
    color: #f18d00;
}

@media screen and (min-width: 1040px){
	#lp_wrap .fregrance .flex {
		padding-left: 15%;
	}
	
	#lp_wrap .fregrance .contents-title {
		margin-top: -20%;
	}
	
}

/*--------------how to---------------*/
#lp_wrap .howto {
	background: linear-gradient(to bottom, #fff8c5, #fffce8);
	background: -webkit-linear-gradient(top, #fff8c5, #fffce8);
	background: -moz-linear-gradient(top, #fff8c5, #fffce8);
    padding: 1% 0 10%;
}

#lp_wrap .howto_tx  {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 500;
    margin-top: 5%;
}

#lp_wrap .howto_tx .clas  {
    font-size: 6rem;
    vertical-align: sub;
}

#lp_wrap .step{
    margin-top: 12%;
}

#lp_wrap .step_box {
    padding: 8% 4% 9% 6%;
    border-top: solid 0.5px #8c8885;
    position: relative;
}

#lp_wrap .right_img {
    padding-right: 6%;
}

#lp_wrap .step_box .step_num {
    width: 5%;
	height: auto;
    height: auto;
    position: absolute;
    top: -4%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#lp_wrap .step_box .flex{
    justify-content: space-between;
    align-items: center;
}

#lp_wrap .step_box .flex .step_img {
    width: 48%;
	position: relative;
}

#lp_wrap .step_box .step_tx {
    line-height: 1.6;
    width: 48%;
}

#lp_wrap .step_box .notes {
	margin-top: 5%;
}

#lp_wrap .step2_gif {
	transform: scale(1.1);
}

#lp_wrap .step3_ab {
    position: absolute;
    width: 40%;
    bottom: 23%;
    right: -6%;
}

#lp_wrap .tips_box {
    color: #8c8885;
    margin: 0 1% 0 5%;
    font-size: 1.2rem;
}

#lp_wrap .step_box .clas {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 3%;
}

#lp_wrap .step_box>p{
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 7%;
}

#lp_wrap .step_box>p span {
	font-size: 1.4rem;
}

#lp_wrap .step_box .finish {
	width: 30%;
	top: -5%;
}

#lp_wrap .step_box:last-of-type {
    border-bottom: solid 0.5px #8c8885;	
}

@media screen and (min-width: 1040px){ 
	#lp_wrap .step_box {
    	padding: 8% 14% 9% 15%;
	}
	#lp_wrap .right_img {
		padding-right: 14%;
	}
}

/*--------------faq---------------*/
#lp_wrap .faq {
    background-color: #fffce9;
    padding: 1% 0 10%;
    position: relative;
}

#lp_wrap .faq ul{
    margin-top: 7%;
    padding: 0 10%;
}

#lp_wrap .faq ul li{
    margin-bottom: 10%;
}

#lp_wrap .faq_box {
    background-color: #fada08;
    position: relative;
    border-radius: 40px;
	margin-left: 5%;
}

#lp_wrap .faq_box>img {
    position: absolute;
    width: 15%;
    height: auto;
    top: -25%;
    left: -8%;
}

#lp_wrap .faq_box.line_break {
	border-radius: 0 40px 40px 0;
}

#lp_wrap .faq_box.line_break >img {
	top: -3%;
}

/*----アコーディオン----*/
#lp_wrap .view_more {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 2.5% 5% 3% 10%;
    color: #fff;
    line-height: 1.4;
}
#lp_wrap  .faq_box.line_break .view_more {
    padding: 1.5% 5% 2% 10%;	
}
#lp_wrap .view_more > span:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 5%;
    height: 2px;
    width: 10px;
    background: #fff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}
#lp_wrap .view_more > span:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 5%;
    height: 2px;
    width: 10px;
    background: #fff;
    transition: all .3s ease-in-out;
}

#lp_wrap .view_more.open > span:before {
  transform: rotate(180deg);
}
#lp_wrap .view_more.open > span:after {
  opacity: 0;
}

#lp_wrap .addition {
  display: none;
}

#lp_wrap .addition {
    margin: 3% 0 0 2%;
}

#lp_wrap .addition .clas{
    font-size: 1.8rem;
}

#lp_wrap .addition .answer{
    margin-left: 3%;
}

#lp_wrap .addition .flex {
    align-items: baseline;	
}

/*--------------shoplist---------------*/

#lp_wrap .shoplist.page_wrap {
	padding: 1% 5% 30%;
}

#lp_wrap .shoplist.page_inner {
	background-color: #fff;
}
#lp_wrap .shoplist .contents-btn{
    position: relative;
    padding: 5%;
    border: solid 1px #ffdb00;
    border-radius: 50px;
	width: 75%;
    margin: 10% auto 0;
    font-size: 2rem;
    line-height: 1.2;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1040px){ 

	#lp_wrap .shoplist.page_wrap {
		padding: 1% 5% 15%!important;
	}
	#lp_wrap .shoplist .contents-btn {
		width: 45%;
		border-radius: 100px;
	}
	
}




