@chaset "UTF-8";

/**********▼▼今回分のCSS▼▼************/
#lp_wrap {
    padding: 0;
    background: #fff;
    color: #6E6566;
    box-sizing: border-box;
}
_wrap p {
    font-size: 1.6rem;
    line-height: 1.5;
}
#lp_wrap img {
}
#lp_wrap .masthead h1 {
  /* background: #efe1d0; */
  /* background-image: linear-gradient(75deg, #a9d7b2de 0%, #76c5f2bf 30%, #b7a6f0cf 55%, #ef8eafd6 75%, #ffb9b4fa 100%); */
    margin: 0 auto;
    text-align: center;
    /* width: 1300px; */
}
#lp_wrap .wrap_inner {
    width: 980px;
    margin: 0 auto;
}
#lp_wrap h2 {
    /* text-align: center; */
}
#lp_wrap span {
    vertical-align: baseline;
}

/* ZOOM */
#lp_wrap .img_wrap {
  position: relative;
}
#lp_wrap .inner_box img {
  transition: opacity 0.1s linear,
    -webkit-transform 0.1s cubic-bezier(0.36, 0.14, 0, 1);
  transition: transform 0.1s cubic-bezier(0.36, 0.14, 0, 1),
    opacity 0.1s linear;
  transition: transform 0.1s cubic-bezier(0.36, 0.14, 0, 1),
    opacity 0.1s linear, -webkit-transform 1s cubic-bezier(0.36, 0.14, 0, 1);
  opacity: 0;
  -webkit-transform: scale(1.5);
  /*動作の大きさ*/
  transform: scale(1.3);
  /*時間*/
  transition-duration: 2s;
  /* width: 100%; */
  /* height: auto; */
}

#lp_wrap .is-enter .inner_box img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* ZOOM END */

/* toggle */
.toggle_contents {
    padding-top: 20px;
}

.toggle_title {
    position: relative;
    font-size: 1.4rem;
    padding: 10px 0 10px 20px;
}

.toggle_btn {
    display: inline-block;
    top: 50%;
    left: 0;
    padding-left: 20px;
    transform: translateY(-50%);
    color: #333;
    text-decoration: none;
    position: absolute;
}
.toggle_btn:before {
    /*width: 1px;
    height: 10px;*/
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #645e5c;
    border-right: solid 2px #645e5c;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    transform: rotate(45deg);
}
.toggle_title.selected .toggle_btn:before{
	border-top: solid 2px #645e5c;
	border-bottom: 0;
	margin-top: -4px;
	transform: rotate(-45deg);
	}

.toggle_contents dd {
    display: none;
    background: #ffffffc2;
    padding: 10px;
}
/* toggle END */

#lp_wrap p.intro {
    padding: 60px 0 90px;
    font-size: 2.0rem;
    /*font-family: "Noto Sans JP", sans-serif;*/
    text-align: center;
    line-height: 1.8;
}

@keyframes down {
    100% {
        top: 0px;
    }
}
#lp_wrap .down {
    text-align: center;
    position: relative;
    top: -30px;
    animation-name: down;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}
#lp_wrap .df {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

#lp_wrap .fb {
    font-weight: bold;
}

#lp_wrap .btn-flat-border {
    background: #404f6f;
    padding: 4px;
    color: #fff;
    text-align: center;
    display: block;
    margin-top: 5px;
}

#lp_wrap .m-icon {
    vertical-align: middle;
    padding-left: 5px;
}

/*product*/
#lp_wrap .product {
    padding-top: 1rem;
}
#lp_wrap .product li {
    padding-bottom: 5px;
}
#lp_wrap .product li a {
    font-size: 1.5rem;
    text-decoration: underline;
}

#lp_wrap .product li a span.name {}

#lp_wrap .productl li a span.price {}

#lp_wrap .product li a:hover {
    color: #b4a76c;
}

/* product END */

/* モーダル */
.c-modal {
    display: none;
    height:100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  z-index:99999999999999999999999999;
}
.c-modal_bg {
  position: fixed;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 100%;
}
.c-modal_content {
    background: #fff;
  position:absolute;
  width:40%;
  max-height: 90%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
    border-radius: 0;
    padding: 15px 20px 40px 20px;
    /*overflow-y: scroll;*/
    text-align: center;
}
.c-modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px; height: 35px;
  background: url(/user_data/packages/sphone/img/common/img_common_modal_closeButton.svg) no-repeat;
  z-index: 100;
}

/* カート */
#lp_wrap p.soldout_txt{
  margin-top: 4px;
  /* font-size: 2.0rem; */
  color: #222;
  /*font-weight: bold;*/
}
.product_cart{
  display: flex;
  justify-content: space-between;
    margin-top: 10px;
}
.cart_area{
  width: 400px;
  display: flex;
  flex-wrap: wrap;
 justify-content: space-between;

}
.cart_area .product{
  width: 100%;
  margin-bottom: 30px;
}
.product_cart:after {
	content:none;
}


.price_area{
  display: flex;
}
.saleproduct.price{
  color: #dc3433;
  margin-left: 10px;
}
button[type="submit"].quick_cart_btn{
    font-size: 1.3rem;
    border-radius: 0;
    color: #fff;
    padding: 11px 0;
    text-align: center;
    width: 200px;
}

select.m-dropdown_select{
  padding: 9px 20px;
  width: 200px;
}
.m-btn_fleft {
    float: left;
    width: 48% !important;
}
.m-dropdown {
    position: relative;
    width: 100%;
    font-size: 1.3rem;
    text-align: -webkit-center;
    text-align: center;
    border: 1px solid #949bb7;
    border-radius: 0px;
    background: #fff;
}
.lp-dropdown_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 15px;
    display: block;
    cursor: pointer;
    width: 100%;
    border: none;
    position: relative;
    z-index: 2;
}
.m-btn_fright {
    float: right;
    width: 48% !important;
}
.web_price{
	color: #dd3535;
}
.price_area{
	text-align: right;
}
.bl-hot{
	margin-bottom: 35px;
}
.price_section{
	margin-bottom: 2px;
}
/* カート後モーダル */
.modal_wrap{
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	display: none;
	z-index:999999;
}
.modal_regist_finish{
	position: absolute;
	top: 43%;
	left: 52%;
	margin-left: -260px;
	margin-top: -50px;
	background: #fff;
	border-radius: 6px;
	padding: 26px 20px 14px;
	width: 440px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.modal_btn_arr {
	display: block;
	width: 50%;
	padding: 4px;
	margin: 0 auto;
}
.regist_finish_text{
	font-size: 1.6rem;
	color: #000;
	padding-bottom: 6%;
}
.regist_finish_text2 {
	font-size: 1.3rem;
	color: #000;
	margin-bottom: 26px;
}
#modal-close {
    background: #004990;
}
.modal_btn_cart {
    font-size: 1.3rem;
    color: #004990;
    cursor: pointer;
    border: solid 1px #004990;
    border-radius: 3px;
}
#lp_wrap .co_wrap .df {
    /* flex-direction: row-reverse; */
}
#lp_wrap .card_wrap {
    /* width: 395px; */
}
#lp_wrap .color_wrap {
    /* background: #fff; */
    text-align: center;
    margin-bottom: 90px;
}
#lp_wrap .co_wrap .co_txt {
    /* font-family: "Noto Sans JP", sans-serif; */
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 36px;
    /* text-align: center; */
}
#lp_wrap #area_more {
    padding: 0px 6% 40px;
}

#lp_wrap .bottom_wrap h2{
padding: 60px 0 40px;
}

#lp_wrap #area_more ul {}

#lp_wrap .bottom_wrap .category {
    width: 23%;
    border: solid 2px #E0DEDB;
}

#lp_wrap .bottom_wrap .category a {
    display: block;
    text-align: center;
    font-size: 2.0rem;
    color: #6E6566;
    background: #E0DEDB;
    padding: 3px 0 1px;
    /*font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;*/
}

#lp_wrap .bottom_wrap .category a:hover {
    background: #fff;
    color: #6E6566;
}
#lp_wrap #area_more h2 {
   padding: 60px 0 40px;
}
/*#lp_wrap #area_more .category a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}*/
#lp_wrap #back_no .df {
    justify-content: flex-start;
}
#lp_wrap #back_no .df li:not(:last-child){
    margin-right: 20px;
}
#lp_wrap #back_no .info {
    /*font-weight: bold;*/
    font-size: 1.8rem;
    /*font-family: "Noto Sans JP", sans-serif;*/
    padding-top: 50px;
    /*text-decoration: underline;*/
    text-align: center;
}
#lp_wrap #back_no .info span {
    color: #ee7288;
    font-weight: bold;
}
#lp_wrap #back_no {
    padding: 0px 6% 60px;
}

/* SOLDOUT */
#lp_wrap .product li .soldout,
#lp_wrap .product li .soldout span {
    pointer-events: none;
}

#lp_wrap .product li a.soldout:after {
    content: none;
}

#lp_wrap .product li .soldout .price {
    color: red;
}

#lp_wrap .alter {
    font-size: 1.2rem;
}

#lp_wrap #co01 .product {
    bottom: 6px;
}

#lp_wrap #co03 .product {
    bottom: 130px;
}

/* SOLDOUT END */

/* link */
#lp_wrap .link_bnr {
    padding: 60px 6% 60px;
}
#lp_wrap .link_bnr h2 {
    text-align: center;
    font-size: 1.6rem;
    /*font-family: "Noto Sans JP", sans-serif;*/
    padding-bottom: 10px;
}
#lp_wrap .link_bnr img {
    width: 60%;
    margin: 0 auto;
    height: auto;
    display: block;
}
#lp_wrap .hr_line {
  padding-top: 200px;
}
#lp_wrap .hr_line img {
  width: 100%;
}
#lp_wrap .hr_line h2 {
  font-size:2.8rem
}
/* link END */

#lp_wrap .style_wrap {
    padding-top: 200px;
}
#lp_wrap .style_wrap:first-of-type {
    padding-top: 140px;
}
#lp_wrap .co_wrap + .co_wrap {
    /* padding-top: 14%; */
        margin-top: 150px;
}
#lp_wrap .co_sub_ttl {
        margin-bottom: 40px;
}
#lp_wrap .w980,
.w980 {
    width: 980px;
    margin: 0 auto;
}
#lp_wrap .insta {
    font-size: 1.2rem;
}
#lp_wrap .insta a {
    text-decoration: underline;
}
#lp_wrap .item_annotation {
    text-align: center;
    margin: 100px auto 20px;
    line-height: 2.0;}

/*product*/
#lp_wrap .product_img {
    float: left;
    width: 86px;
    margin-bottom: 20px;
    margin-right: 15px;
}
#lp_wrap .product_cart {
    clear:both;
}
#lp_wrap .content_product_name {
    font-size: 1.2rem;
}
#lp_wrap .product_cart {
    margin-top: 20px;
}
#lp_wrap .quick_cart_btn {
    background: #d7a899;
}
/*購入エリア*/
#lp_wrap .cart_area .product{
  width: 100%;
  margin-bottom: 30px;
	font-size: 1.2rem;
}
#lp_wrap .product_cart:after {
	content:none;
}

#lp_wrap .accordion_wrap {
  width: 850px;
  margin: 0 auto;
}
#lp_wrap .var_ttl {
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    background: #e9c8be;
    color: #fff;
    padding: 2px 0 1px;
    margin:30px auto 10px;
}
/*購入エリアEND*/
/** ▼もっと見るボタン **/

#lp_wrap .product_more {
	display: none;
}
#lp_wrap .btn_more{
	position: relative;
    font-size: 1.5rem;
    border-radius: 2px;
    border-color: #494744;
    border-style: solid;
    border-width: 1px;
    color: #494744;
    padding: 6px 2.2rem 6px 1.7rem;
    margin-top: 3%;
    text-align: center;
}
#lp_wrap .btn_arrow{
	position: relative;
	font-size: 1.4rem;
	border-radius: 2px;
	background: #494744;
	color: #fff;
	padding: 1.7rem 2.2rem 1.7rem 1.7rem;
	width: 90%;
	margin: 10% auto;
}
#lp_wrap .icon_wrap{
	position: absolute;
	top: 50%;
	right: 6%;
}
#lp_wrap .icon_arap_arrow{
	position: absolute;
	top: 42%;
	right: 6%;
}
#lp_wrap .icon_plus::before, .icon_plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 2px solid #333;
  transform: translateX(-50%);
}
#lp_wrap .icon_plus:after {
  top: -7px;
  left: -14px;
  transform: rotate(90deg);
}
#lp_wrap .active .icon_plus:after{
	display: none;
}
#lp_wrap .item_lineup .icon_wrap{
	position: absolute;
	top: 40%;
	right: 4%;
}
#lp_wrap .item_lineup .btn_more{
	background: #6b7978;
	color: #fff;
}
#lp_wrap .icon_arrow{
	display: block;
	width: 10px;
	height: 10px;
	border-top: solid 2px #fff;
	border-right: solid 2px #ffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ▼features部分▼ */
.features_wrap {
  padding-bottom: 100px;
}
.features_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.features_list li {
  width: 24%;
  position: relative;
  margin-bottom: 20px;
}
.features_list li img {
  display: block;
  width: 100%;
}
.features_list li p {
  font-size: 1.4rem;
  padding-top: 1rem;
;
}
.serif_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 3.8rem;
}
.serif_ttl span {
  font-size: 2rem;
  padding-left: 2rem;
}
.item_annotation {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: -50px;
}
#lp_wrap #tops11 {
  padding-bottom: 0;
}
#lp_wrap #area_more {
    padding: 90px 6% 40px;
}
/* ▼pop */

#lp_wrap .pop {
    position: absolute;
    top: 5px;
    left:5px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-animation: fadein 2s ease infinite;
    animation: fadein 2s ease infinite;
    z-index: 1;
    /* animation: blink 0.8s ease-in-out infinite alternate; */
}

#lp_wrap .pop .pop_txt {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translateY(-50%) translateX(-50%);
    color: #111;
    font-size: 13px;
    padding: 0;
    text-align: center;
		width: 100%;
		line-height: 1.3;
		font-weight: bold;
}

#sec_item .pop {
    background-color: #0f2350;
    top: 5%;
    left: 3%;
    right: auto;
}

#sec_item .pop .pop_txt {
    font-size: 11px !important;
    color: #fff;
    letter-spacing: normal;
    line-height: 1.3;
    top: 22%;
    left: 49%;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* ▲features部分▲ */


/* 2022.4追加 */
#lp_wrap .co_txt {
  line-height: 2.0;
}



/* ▼9月特集 */
#lp_wrap * {
	box-sizing: border-box;
}
#lp_wrap img {
  display: block;
}
#lp_wrap mark {
	background:none;
}
#lp_wrap .p_read,
#lp_wrap .p_set_h3,
#lp_wrap .set_item_ttl h3,
#lp_wrap .last_btn{
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
}
#lp_wrap .p_read{
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.9;
	margin-top: 60px;
}
#lp_wrap .p_set_h3{
	line-height: 1.9;
	font-size: 1.4rem;
}
#lp_wrap .masthead{
	background: #fbfafa;
}
#lp_wrap .mas_wrap{
	position: relative;
	width: 980px;
	margin: 0 auto;
}
#lp_wrap .masthead h1{
	position: absolute;
	width: 400px;
	left: 70px;
	bottom: 100px; 
	text-align: center;
}
#lp_wrap .masthead h1 img + img {
	margin: 30px auto;
}
#lp_wrap .masthead + div{
	margin-bottom: 60px;
}
#lp_wrap section{
	width: 980px;
	margin: 0 auto 160px;
	position: relative;
}
#lp_wrap section h2{
	margin: 0 auto;
}
#lp_wrap section h2 img:first-child{
	width: auto;
	height: 50px;
	margin: 0;
}
#lp_wrap section h2 img + img{
	width: auto;
	height: 70px;
	margin-top: 20px;
}
#lp_wrap .set_item{
	width: 430px;
}
#lp_wrap .set_item_ttl{
	width: 400px;
	margin: 40px 0;
}
#lp_wrap .set_item_ttl h3{
	margin: 0 0 30px 0;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2;
	color: #333;
	display: inline-block;
    text-align: center;
}
#lp_wrap .set_item_ttl h3 span{
	border-top: solid #222 1px;
	color: #6c6a68;
}
#lp_wrap .set_item_cont + .set_item_cont{
	margin-top: 60px;
}
#lp_wrap .set_item_cont + .set_item_cont img{
	width: 400px;
	height: 400px;
	padding: 10px;
}
#lp_wrap .set_item_img .icon_r{
	left: auto;
	right: 6%;
}
#lp_wrap #seclast{
	width: 100%;
	margin-bottom: 0;
}
#lp_wrap .last_btn{
	padding: 40px 0;
	background: #eeeeee;
}
#lp_wrap .last_btn p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	line-height: 1.6;
	text-align: center;
}
#lp_wrap .last_btn_area{
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	width: 500px;
	padding: 24px 0;
	margin: 20px auto 40px;
	background: #6c6a68;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: .2rem;
	font-feature-settings: "palt";
	text-align: center;
}
#lp_wrap .last_btn_area span{
	position: absolute;
    top: 50%;
    right: 30px;
}
#lp_wrap .last_btn_area:hover{opacity: 0.8;}
#lp_wrap .p_attention{
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
	margin: 40px 0 0;
}

#lp_wrap .ather{
	background: #eee;
	/*margin: 40px;*/
	padding: 20px 20px 0 20px;
}
#lp_wrap .ather a,
#lp_wrap .ather .content_product_name{
	width: 200px;
}
#lp_wrap .cart_p{
	font-weight: bold;
	margin-bottom: 5px;
}
#lp_wrap .m_auto{
	margin: 0 auto;
}
#lp_wrap .flex_area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#lp_wrap .flex_area + .flex_area{
	margin-top: 60px;
}
#lp_wrap .set_item .set_item_img img{
	width: 430px;
	height: 430px;
}
#lp_wrap .set_item img.set_item_s{
	width: 400px;
	height: 400px;
}
#lp_wrap #aw01 .set01_2{
	margin-top: 210px;
}
#lp_wrap #aw01 .set01_1{
	margin-top: -350px;
}
#lp_wrap #aw02 .set02_1{
	margin-top: 100px;
}
#lp_wrap #aw02 .set02_2{
	margin-top: -240px;
}
#lp_wrap #aw02 .set02_3{
	margin-top: 40px;
	margin-left: 40px;
}
#lp_wrap #aw02 .set02_5{
	margin-top: 100px;
	margin-left: 40px;
}
#lp_wrap #aw02 .set02_6{
	margin-top: -350px;
}
#lp_wrap #aw02 .set02_7{
	margin-top: 60px;
}
#lp_wrap #aw03 .set03_2{
	margin-top: 50px;
}
#lp_wrap #aw03 .set03_4{
	margin-top: 80px;
}
#lp_wrap #aw03 .set03_6{
	margin-top: 80px;
	margin-tight: 40px;
}
#lp_wrap #aw03 .set03_7{
	margin-top: -300px;
}
#lp_wrap #aw04 .set04_2{
	margin-top: 200px;
}
#lp_wrap #aw04 .set04_3{
	margin-top: -320px;
}
#lp_wrap #aw01,
#lp_wrap #aw02,
#lp_wrap #aw03,
#lp_wrap #aw04{
	width: 980px;
	margin: 0 auto;
	margin-top: 100px;
}
#lp_wrap #aw04 {
	margin-top: 60px;
	margin-bottom: 100px;
}
#lp_wrap #aw02 .flex_area,
#lp_wrap #aw04 .flex_area{
	flex-direction: row-reverse;
}
#lp_wrap #aw02 .flex_area + .flex_area{
	flex-direction: initial;
}

/*カート*/
.section_dropdown,
#lp_wrap .product_cart{
	display: none;
}
.product_layout a{
	display: block;
}
.content_product_name{
	border-bottom: solid 1px #222;
	display: inline-block;
	line-height: 2.4rem;
	margin-bottom: 10px;
}
/* fade */
.fadeup {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 700ms;
}
.fadeup.isActive {
    opacity: 1;
    transform: translate(0, 0);
}
.fadein{
    opacity: 0;
	transform: translateY(20px);
    transition: all 700ms ease-in;
}
/* fadein END */