@charset "UTF-8";
/************************************
header
************************************/
header.main_header{
	width: 100%;
	height: 70px;
	padding: 20px 0;
	position: fixed;
	top: 0;
	background: #fff;
	z-index: 8;
	border-bottom: 1px solid #EAEBED;
}

header.main_header .inner{
	max-width: none;
}

.logo img:hover{
	opacity: 0.8;
}

.nav_trigger {
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 20px;
	z-index: 11;
}

.nav_trigger span{
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 1px;
	transition: all .4s;
	background: #000;
	cursor: pointer;
}
.nav_trigger span:nth-of-type(1) {
	top: 5px;
}
.nav_trigger span:nth-of-type(2) {
	top: 11px;
}
.nav_trigger span:nth-of-type(3) {
	top: 17px;
}
.nav_trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-45deg);
	transform: translateY(6px) rotate(-45deg);
}
.nav_trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.nav_trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

.slide_nav{
	position: absolute;
	top: 0;
	right: -100%;
	transition: all .4s;
	background: #fff;
	width: 40%;
	z-index: 10;
}

.slide_nav.open{
	right: 0;
}

.slide_nav ul{
	height: 100vh;
	padding: 70px 13%;
}

.slide_nav ul li a{
	border-top: 1px solid #E3E3E3;
	padding: 30px;
}

.slide_nav ul li a:hover{
	opacity: 0.8;
}

.slide_nav ul li:last-child a{
	border-bottom: 1px solid #E3E3E3;
}

.slide_nav ul li a{
	font-weight: bold;
	display: block;
}

.slide_nav .nav_catgory{
	position: relative;
}

.slide_nav .nav_catgory::after{
	content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 35px;
  right: 10px;
  cursor: pointer;
	transform: rotate(135deg);
}

.slide_nav .nav_catgory .nav_catgory_ttl{
	font-weight: bold;
	cursor: pointer;
	padding: 30px;
	border-top: 1px solid #E3E3E3;
}


.slide_nav .nav_catgory .nav_catgory_ttl:hover{
	opacity: 0.8;
}

.slide_nav .nav_catgory .nav_catgory_list{
	height: auto;
	padding: 0;
	display: none;
}

.slide_nav .nav_catgory .nav_catgory_list li a{
	padding: 0 30px 20px;
	border-top: none;
}

.slide_nav .nav_catgory .nav_catgory_list li:last-child a{
	border-bottom: none;
}

.overlay{
	width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
	display: none;
	z-index: 9;
}

.nav li{
	margin-left: 25px;
	position: relative;
}

.nav li img:hover{
	opacity: 0.8;
}

.nav li .badge{
	position: absolute;
  background: #ED6F41;
  color: #fff;
  top: -8px;
  right: -8px;
  font-size: 12px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}
/************************************
メインビジュアル・slickスライダー
************************************/
.main_vis{
	position: relative;
	margin-top: 70px;
}

.main_slider {
	display: none;
}

 .main_slider.slick-initialized {
	display: block;
}

.main_vis .main_copy{
	width: 80%;
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
	z-index: 2;
}

.main_vis .main_copy p{
	font-size: 64px;
	color: #fff;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
}

.slick-dotted.slick-slider{
	margin-bottom: 0 !important;
}

.slick-arrow{
  display: none !important;
}

.slick-dots{
	bottom: 20px !important;
}

.slick-dots li button::before{
	color: #8B8B8B !important;
	opacity: 1 !important;
}

.slick-dots li.slick-active button::before{
	color: #fff !important;
	opacity: 1 !important;
}
/************************************
新規会員登録
************************************/
form.register h2{
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}

form.register,
form.login,
form.lost_reset_password{
	border: 1px solid #E3E3E3;
	border-radius: 5px;
	padding: 80px 100px;
}

.woocommerce-password-strength.short{
	background: #FDF4F4;
	border: 1px solid #C61E1E;
	padding: 10px;
	margin: 10px 0 10px;
}

.woocommerce-privacy-policy-text{
	margin-bottom: 10px;
}
/************************************
ログイン
************************************/
#customer_login h2{
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}

#customer_login h3{
	font-size: 18px;
	margin-bottom: 20px;
}

.woocommerce-form-login__rememberme{
	text-align: center;
	margin-bottom: 10px;
}

.lost_password_txt{
	margin-bottom: 30px;
}

.register_txt{
	text-align: center;
	margin-top: 20px;
}

.register_txt a{
	color: #8B8B8B;
	text-decoration: underline;
}

.register_txt a:hover{
	text-decoration: none;
}
/************************************
マイページ
************************************/
.woocommerce-MyAccount-content h2{
	text-align: center;
	font-size: 24px;
}
/*注文履歴*/
.woocommerce-MyAccount-navigation{
	margin-top: 50px;
}

.woocommerce-MyAccount-navigation ul{
	display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce-MyAccount-navigation ul li{
	width: 32%;
  margin: 0 2% 20px 0;
}

.woocommerce-MyAccount-navigation ul li:nth-child(3n){
	margin-right: 0;
}

.woocommerce-MyAccount-navigation ul li a{
	text-align: center;
  padding: 15px 0;
  display: block;
  color: #101112;
  border: 1px solid #EAEBED;
  border-radius: 2px;
}

.woocommerce-MyAccount-navigation ul li a:hover{
	background: #EAEBED;
}

.woocommerce-orders-table .item_head div{
	width: 20%;
}

.woocommerce-orders-table .item_element div{
	width: 20%;
}

.woocommerce-orders-table .item_element div a.button{
	width: 100%;
	background: #fff;
	color: #000;
	border: 1px solid #ddd;
	margin: 0;
}

.woocommerce-orders-table .item_element div a.button:hover{
	background: #ddd;
}
/*注文履歴詳細*/
.order_detail_txt{
	text-align: center;
}

.woocommerce-order-details{
	padding: 0;
}

.woocommerce-order-details .woocommerce-table .table_product_content{
	border-bottom: 1px solid #EAEBED;
	padding: 20px 0;
}

.woocommerce-order-details .woocommerce-table .table_product_content_ttl{
	font-weight: bold;
}

.woocommerce-order-details .table_product_content_item .woocommerce-table__line-item{
	padding: 5px 0;
}

.woocommerce-order-details .table_product_content_price{
	font-weight: bold;
}

.woocommerce-order-details .table_product_content_price .table_product_content_price_item{
	padding: 5px 0;
}

.woocommerce-customer-details{
	padding-top: 20px;
}

.woocommerce-column--billing-address{
	padding: 20px 0;
	border-bottom: 1px solid #EAEBED;
}

.woocommerce-column--shipping-address{
	padding: 20px 0;
	border-bottom: 1px solid #EAEBED;
}

.address_content{
	line-height: 2;
}
/*請求先・お届け先住所編集*/
.woocommerce-Addresses .woocommerce-Address{
	width: 48%;
	border: 1px solid #EAEBED;
	border-radius: 5px;
	padding: 40px;
}

.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title{
	margin-bottom: 10px;
}

.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a.edit{
	color: #707070;
	text-decoration: underline;
}

.woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a.edit:hover{
	text-decoration: none;
}
/************************************
商品カード
************************************/
.ranking .product_item .thumbnail{
	position: relative;
}

.ranking .product_item .thumbnail::before{
	content: '1';
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	z-index: 3;
}

.ranking .product_item:nth-of-type(2) .thumbnail::before{
	content: '2';
}

.ranking .product_item:nth-of-type(3) .thumbnail::before{
	content: '3';
}

.ranking .product_item:nth-of-type(4) .thumbnail::before{
	content: '4';
}

.product_count_orderby{
	margin-bottom: 40px;
}

.product_items .product_item{
  width: 24%;
  margin-right: calc(5% / 4);
  margin-bottom: 20px;
	border: 1px solid #EAEAEA;
	padding: 20px;
}

.product_items .product_item:nth-of-type(4n){
  margin-right: 0
}

.product_items .product_item h3{
	font-size: 14px;
	margin: 0 0 10px;
}

.product_items .product_item .category_name{
	font-size: 12px;
	color: #8B8B8B;
	margin-top: 10px;
}

.product_items .product_item .price{
	font-weight: bold;
	font-size: 18px;
	margin-top: 5px;
}

.product_items .product_item .price .tax{
	font-size: 12px;
}

.product_items .product_item a:hover .thumbnail img{
	transform: scale(1.1);
}

.product_items .product_item .thumbnail{
	overflow: hidden;
}

.product_items .product_item .thumbnail img{
  aspect-ratio: 1;
  object-fit: cover;
	transition: .3s;
}

.woocommerce-pagination .page-numbers{
	display: flex;
	justify-content: center;
}

.woocommerce-pagination .page-numbers li .current{
	background: #EAEAEA;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: block;
	border: 1px solid #EAEAEA;
}
/************************************
商品詳細
************************************/
.single_product .product_img_wrap{
	width: 45%;
}

.single_product .product_img_wrap .bx-wrapper img{
	object-fit: cover;
	aspect-ratio: 1;
}

.single_product .product_img_wrap .product_img_thumbnail{
	margin-top: 5px;
}

.single_product .product_img_wrap .product_img_thumbnail li{
	width: 24%;
	margin: 0 0 5px 5px;
}

.single_product .product_img_wrap .product_img_thumbnail li img{
	aspect-ratio: 1;
  object-fit: cover;
	cursor: pointer;
}

.single_product .product_content{
	width: 48%;
}

.single_product .product_content .product_meta a{
	text-decoration: underline;
	color: #8B8B8B;
}

.single_product .product_content .product_meta .tagged_as{
	margin-left: 15px;
}

.single_product .product_content h1.product_title{
	font-size: 30px;
	line-height: 1.5;
	margin: 20px 0;
}

.single_product .product_content .woocommerce-product-details__short-description{
	margin-bottom: 15px;
}

.single_product .product_content .price{
	margin: 20px 0;
}

.single_product .product_content .price .amount{
	font-weight: bold;
	font-size: 24px;
}

.single_product .product_content .quantity{
	width: 20%;
}

.single_product .product_content button[type="submit"]{
	width: 75%;
	font-weight: bold;
	font-size: 16px;
	margin: 0 !important;
}

.single_product .product_detail{
	margin-top: 40px;
}

.single_product .product_detail dl{
	border: 1px solid #E3E3E3;
	border-radius: 5px;
	padding: 40px;
}

.single_product .product_detail dl div{
	border-bottom: 1px solid #E3E3E3;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.single_product .product_detail dl div:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.single_product .product_detail dl dt{
	width: 20%;
	font-weight: bold;
}

.single_product .product_detail dl dd{
	width: 75%;
}
/************************************
カート
************************************/
.cart_content{
	border: 1px solid #E3E3E3;
	border-radius: 5px;
	padding: 40px;
	margin-bottom: 40px;
}

form.woocommerce-cart-form .cart_item{
	border-bottom: 1px solid #E3E3E3;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

form.woocommerce-cart-form .product-thumbnail{
	width: 120px;
	margin-right: 30px;
}

form.woocommerce-cart-form .product-price{
	margin: 5px 0 20px;
}

form.woocommerce-cart-form .product-quantity{
	width: 80px;
}

form.woocommerce-cart-form .product-quantity input[type="number"]{
	height: 35px;
}

form.woocommerce-cart-form .product-remove{
	text-decoration: underline;
	margin-left: 20px;
}

.cart-collaterals .cart-subtotal{
	margin-bottom: 10px;
}

.cart-collaterals{
	margin-top: 30px;
}

.cart-collaterals #shipping_method li label{
	display: flex;
	justify-content: space-between;
}

.cart-collaterals .shipping-calculator-button{
	text-decoration: underline;
}

.cart-collaterals .order-total{
	font-size: 18px;
	margin-top: 20px;
}

.continue_shopping_btn{
	display: block;
	text-align: center;
	font-size: 12px;
	margin-top: 20px;
	text-decoration: underline;
}

.cart-empty.woocommerce-info{
	text-align: center;
	margin-bottom: 30px;
}

.woocommerce-notices-wrapper .woocommerce-info{
	text-align: center;
}
/************************************
お支払い
************************************/
.woocommerce .woocommerce-order .woocommerce-notice{
	text-align: center;
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 20px;
}

.woocommerce .woocommerce-order section.woocommerce-order-details{
	padding-bottom: 0;
}

.woocommerce .woocommerce-order section.woocommerce-customer-details{
	padding: 0;
}

.woocommerce .woocommerce-order section.woocommerce-customer-details .col-2{
	margin-top: 40px;
}

form[name="checkout"]{
	position: relative;
	margin-top: 30px;
}

form[name="checkout"] .col2-set{
	position: relative;
}

form[name="checkout"] .col2-set .col-1{
	width: 47%;
}

form[name="checkout"] .col2-set .col-2{
	width: 47%;
	position: absolute;
	right: 0;
}

form[name="checkout"] .col2-set .col-2.fixed{
	width: 45%;
	position: fixed;
  top: 0;
  right: 0
}

form[name="checkout"] h3{
	font-size: 24px;
	margin-bottom: 40px;
	padding-left: 20px;
  position: relative;
	line-height: 1.4;
}

form[name="checkout"] h3::before{
	content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #000;
  border-radius: 5px;
}

form[name="checkout"] h3#ship-to-different-address{
	text-align: left;
	font-size: 14px;
	padding: 0;
}

form[name="checkout"] h3#ship-to-different-address::before{
	content: none;
}

/*LINKで支払うボタン 非表示*/
#wc-stripe-payment-request-wrapper,
#wc-stripe-payment-request-button,
#wc-stripe-payment-request-button-separator{
  display: none !important;
}

.wc-stripe-elements-field,
.wc-stripe-iban-element-field{
	padding: 15px !important;
	border-radius: 5px;
}

#order_review table{
	width: 100%;
  margin-bottom: 30px;
  text-align: left;
}

#order_review table th,
#order_review table td{
	padding: 10px;
	width: 50%;
}

#order_review table thead,
#order_review table tbody{
	border-bottom: 1px solid #EAEBED;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment{
	background: #fff !important;
	border: 1px solid #ccc;
	padding: 20px;
}

#payment .wc_payment_method{
	margin-bottom: 20px;
}

#payment .wc_payment_method input,
#payment .wc_payment_method label{
	cursor: pointer;
}

#payment .wc_payment_method label{
	display: inline-block;
}

#payment .wc_payment_method label img{
	display: none;
}

button[name="woocommerce_checkout_place_order"]{
	width: 50%;
	margin: 30px auto 0 !important;
	float: none !important;
}

#stripe-payment-data p{
	display: none;
}
/************************************
お支払い 完了
************************************/
.woocommerce .woocommerce-order .woocommerce-notice.woocommerce-thankyou-order-received{
	font-size: 18px;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li{
	margin-bottom: 10px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details .product-name{
	padding-right: 10px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details .product-total{
	padding-left: 10px;
}

.woocommerce-customer-details h2.headline_item{
	margin-top: 40px;
}
/************************************
カテゴリーリスト
************************************/
section.category li{
	width: 19%;
	margin-bottom: 20px;
	margin-right: calc(5% / 4);
}

section.category li:nth-of-type(5n){
	margin-right: 0;
}

section.category li a{
	display: block;
	width: 100%;
	padding: 20px 0;
	border: 1px solid #EAEAEA;
	font-weight: bold;
	text-align: center;
}

section.category li a:hover{
	background: #EAEAEA;
}
/************************************
ショッピングガイド (フッター上)
************************************/
#shopping_guide{
  padding: 80px 0 0;
	border-top: 1px solid #EAEBED;
}

#shopping_guide .guide_item{
  width: 23%;
}

#shopping_guide .guide_item:first-child{
  border-left: none;
}

#shopping_guide .guide_item img{
  width: 60px;
  height: 60px;
}

#shopping_guide .guide_item p:nth-of-type(1){
  font-weight: bold;
  font-size: 18px;
  margin: 15px 0;
}
/************************************
特定商取引法に基づく表記
************************************/



/************************************
お問い合わせ
************************************/
.form_step{
	position: relative;
}

.form_step::before{
	content: '';
  position: absolute;
  top: 10px;
  width: 99%;
  height: 1px;
  border-bottom: 1px dashed #565C60;
  z-index: -1;
}

.form_step .form_step_item span{
	display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #E3E3E3;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
}

.form_step .form_step_item.current span{
	background: #000;
  font-weight: bold;
	color: #fff;
}

.form_step .form_step_item p{
  margin-top: 10px;
  font-size: 14px;
	color: #E3E3E3;
}

.form_step .form_step_item.current p{
	font-weight: bold;
	color: #000;
}

.form_intro_txt{
	margin: 30px 0;
}

.form_tel_wrap{
	border: 1px solid #ccc;
  border-radius: 5px;
  padding: 30px 60px;
  margin-bottom: 50px;
}

.form_tel_wrap .form_tel_content{
	text-align: center;
}

.form_tel_wrap .form_tel_content a{
	font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
  display: inline-block;
}

.privacy_confirm{
	padding: 30px 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 40px;
}

.privacy_confirm .privacy_confirm_ttl{
	font-weight: bold;
	margin-bottom: 10px;
}

.privacy_confirm .privacy_confirm_txt{
	font-size: 14px;
  margin-bottom: 10px;
}

.privacy_confirm .wpcf7-list-item{
	margin: 0;
}

.form_btn input[type="submit"]:disabled{
	opacity: 0.6;
}

.form_btn input[type="submit"]{
	display: block;
	width: 100%;
  height: 50px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
	margin: 0 auto;
}

.form_btn input[type="button"]{
	display: block;
	width: 100%;
  height: 50px;
	margin: 0 auto;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	border-radius: 5px;
	cursor: pointer;
}

.confirm_message{
	font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.confirm_wrap{
	background: #FDFDFD;
	border: 1px solid #ccc;
  border-radius: 5px;
  padding: 30px 40px;
  margin-bottom: 50px;
}

#thanks .form_intro_txt{
	text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.form_list{
	margin-bottom: 30px;
}

.form_term{
	margin-bottom: 5px;
}

.form_flex .form_list{
	width: 48%;
}

.form_req{
	background: #EF5152;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 10px;
  font-weight: bold;
}

.ex{
	display: block;
  font-size: 12px;
  margin-top: 5px;
}
/************************************
FAQ
************************************/
.faq_item{
	border: 1px solid #E3E3E3;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 30px;
  cursor: pointer;
}

.faq_item:last-child{
	margin-bottom: 0;
}

.faq_item_ttl{
	position: relative;
}

.faq_item_detail{
	display: none;
  border-top: 1px solid #E3E3E3;
  margin-top: 30px;
  padding-top: 30px;
}

.plus_minus:before,
.plus_minus:after{
	position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #000;
  right: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.plus_minus:before{
	transform: translate(-50%, -50%) rotate(90deg);
}

.plus_minus.open:before{
	transform: translate(-50%, -50%) rotate(0deg);
}
/************************************
ご利用規約・プライバシーポリシー
************************************/
.policy_terms_wrap .policy_terms_content{
	margin-bottom: 30px;
}

.policy_terms_content dt{
	font-weight: bold;
	font-size: 16px;
}
/************************************
特定商取引法に基づく表記
************************************/
.law_content dl{
  padding: 40px 0;
  border-top: 1px solid #E3E3E3;
}

.law_content dl:last-child{
	border-bottom: 1px solid #E3E3E3;
}

.law_content dt{
  font-weight: bold;
	margin-bottom: 10px;
}
/************************************
ショッピングガイド
************************************/
.guide_content{
	border-top: 1px solid #E3E3E3;
  padding: 40px 0;
}

.guide_content:last-child{
	border-bottom: 1px solid #E3E3E3;
}

.guide_content .guide_item_ttl h2{
	font-size: 16px;
	margin-bottom: 10px;
}
/************************************
footer
************************************/
footer {
	width: 100%;
	border-top: 1px solid #EAEBED;
	margin-top: 80px;
}

.footer_bottom{
	padding: 15px 0;
	font-size: 12px;
}

.footer_bottom li{
	margin-right: 30px;
}

.footer_bottom li a:hover{
	font-weight: bold;
}


@media screen and (max-width:960px){

	/************************************
	header
	************************************/
	.slide_nav{
		width: 50%;
	}
	/************************************
	メインビジュアル・slickスライダー
	************************************/
	.main_vis .main_copy p{
		font-size: 48px;
	}
	/************************************
	ログイン
	************************************/
	#customer_login{
		display: block;
	}

	#customer_login .u-column1,
	#customer_login .u-column2{
		width: 100% !important;
	}

	#customer_login .u-column2{
		margin-top: 30px;
	}
	/************************************
	マイページ
	************************************/
	.woocommerce-orders-table__row a.button{
		width: 20%;
		margin: 0 0 0 auto;
	}

	.woocommerce .woocommerce-MyAccount-content h2{
		text-align: center;
		font-size: 20px;
		margin-bottom: 20px;
	}

	.woocommerce .woocommerce-MyAccount-content section h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.woocommerce section.woocommerce-order-details h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.woocommerce section.woocommerce-customer-details h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.woocommerce section.addresses h2{
		font-size: 20px;
		margin: 20px 0;
	}

	.woocommerce-orders-table .item_head{
		display: none;
	}

	.woocommerce-orders-table .item_element{
		display: block;
	}

	.woocommerce-orders-table .item_element div{
		width: 100%;
	}

	.woocommerce-orders-table .item_element div a.button.view{
		width: 30%;
		margin: 0 0 0 auto;
	}
	/************************************
	商品カード
	************************************/
	.product_items .product_item{
		width: 48%;
		margin-right: calc(5% / 2);
	}

	.product_items .product_item:nth-of-type(2n){
		margin-right: 0;
	}
	/************************************
	カート
	************************************/
	.woocommerce table.shop_table tr.cart_item td,
	.woocommerce table.shop_table tr.order_item td{
		width: 100% !important;
	}

	.woocommerce table.shop_table tr.cart_item td.product-thumbnail{
		display: block;
		width: 100% !important;
	}

	.woocommerce table.shop_table tr.cart_item td.product-thumbnail::before{
		display: none;
	}
	/************************************
	お支払い
	************************************/
	.woocommerce-billing-fields{
		width: 100%;
	}

	.woocommerce-shipping-fields{
		width: 100%;
	}

	.woocommerce-additional-fields{
		width: 100%;
	}

	form[name="checkout"] .col2-set{
		display: block;
	}

	form[name="checkout"] .col2-set .col-1{
		width: 100%;
	}

	form[name="checkout"] .col2-set .col-2{
		width: 100%;
		position: static;
	}

	button[name="woocommerce_checkout_place_order"]{
		width: 100%;
	}
	/************************************
	カテゴリーリスト
	************************************/
	section.category li{
		width: 48%;
		margin-right: calc(5% / 2);
	}

	section.category li:nth-of-type(5n){
		margin-right: calc(5% / 2);
	}

	section.category li:nth-child(even){
		margin-right: 0;
	}
	/************************************
	ショッピングガイド (フッター上)
	************************************/
	#shopping_guide{
		padding: 40px 0;
	}

	#shopping_guide .guide_items{
		display: block;
	}

	#shopping_guide .guide_item{
		width: 100%;
		margin-bottom: 30px;
	}

	#shopping_guide .guide_item:last-child{
		margin-bottom: 0;
	}
	/************************************
	ショッピングガイド
	************************************/
	.guide_content .guide_item_ttl{
		width: 30%;
	}
	/************************************
	footer
	************************************/
	footer{
		margin-top: 40px;
	}


}


@media screen and (max-width:640px){

	/************************************
	header
	************************************/
	header .flex_content_between{
		align-items: center;
	}

	.logo{
		width: 60%;
		font-size: 10px;
	}

	.nav li{
		margin-left: 20px;
	}

	.slide_nav{
		width: 80%;
	}
	/************************************
	メインビジュアル・slickスライダー
	************************************/
	.main_vis .main_copy p{
		font-size: 24px;
	}

	.slick-dots{
		bottom: 10px !important;
	}
	/************************************
	ログイン
	************************************/
	form.register,
	form.login,
	form.lost_reset_password{
		padding: 60px 30px;
	}

	form.register h2{
		font-size: 18px;
	}

	#customer_login h2{
		font-size: 18px;
	}

	#customer_login h3{
		font-size: 16px;
	}
	/************************************
	マイページ
	************************************/
	.woocommerce-MyAccount-navigation ul{
		display: block;
	}

	.woocommerce-MyAccount-navigation ul li{
		width: 100%;
	}

	.woocommerce-orders-table .item_element div a.button.view{
		width: 50%;
	}

	.woocommerce-Addresses.flex{
		display: block;
	}

	.woocommerce-Addresses .woocommerce-Address{
		width: 100%;
	}
	/************************************
	商品カード
	************************************/
	.product_items .product_item .category_name{
		font-size: 10px;
	}

	.product_items .product_item h3{
		font-size: 12px;
		margin: 0;
	}

	.product_items .product_item .price{
		font-size: 16px;
	}
	/************************************
	商品詳細
	************************************/
	.single_product .single_product_item{
		display: block;
	}

	.single_product .product_img_wrap{
		width: 100%;
	}

	.single_product .product_img_wrap .product_img_thumbnail li{
		width: 23%;
	}

	.single_product .product_content{
		width: 100%;
		margin-top: 15px;
	}

	.single_product .product_content h1.product_title{
		font-size: 20px;
		margin: 10px 0;
	}

	.single_product .product_content .price{
		margin: 10px 0;
	}

	.single_product .product_detail dl{
		padding: 20px;
	}

	.single_product .product_detail dl div{
		display: block;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.single_product .product_detail dl dt{
		width: 100%;
	}

	.single_product .product_detail dl dd{
		width: 100%;
	}
	/************************************
	カート
	************************************/
	.wc-proceed-to-checkout a.button{
		width: 100%;
	}
	/************************************
	ショッピングガイド (フッター上)
	************************************/
	#shopping_guide .guide_item p:nth-of-type(1){
		font-size: 16px;
		margin: 10px 0;
	}
	/************************************
	お問い合わせ
	************************************/
	form[name="checkout"] h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.form_btn input[type="submit"]{
		width: 100%;
	}

	.form_btn input[type="button"]{
		width: 100%;
	}
	/************************************
	FAQ
	************************************/
	.faq_item{
		padding: 20px;
	}

	.faq_item_ttl{
		width: 85%;
	}

	.plus_minus:before,
	.plus_minus:after{
		width: 15px;
		right: -50px;
	}
	/************************************
	特定商取引法に基づく表記
	************************************/
	.law_content dl{
		display: block;
		padding: 20px 0;
	}

	.law_content dt{
		width: 100%;
	}

	.law_content dd{
		padding: 0;
		width: 100%;
	}
	/************************************
	ショッピングガイド
	************************************/
	.guide_content{
		display: block;
		padding: 20px 0;
	}

	.guide_content .guide_item_ttl{
		width: 100%;
	}

	.guide_content .guide_item_txt{
		width: 100%;
		border-left: none;
		padding-left: 0;
	}
	/************************************
	footer
	************************************/
	footer .footer_bottom .footer_content{
		display: block;
	}

	footer .footer_bottom .footer_content .footer_nav .flex{
		justify-content: space-around;
		flex-wrap: wrap;
	}

	footer .footer_bottom .footer_content .footer_nav li{
		margin-bottom: 10px;
	}

	footer .footer_bottom .footer_content .footer_nav li:last-child{
		margin-right: 0;
	}

	footer .footer_bottom .footer_content .copy{
		text-align: center;
		font-size: 10px;
		margin-top: 10px;
	}


}
