@charset "utf-8";

/* ==============================

	welcart_230120

============================== */
/* 特定商取引法について */
.tokusho {
  margin-top: 60px;
}

.tokusho h2 {
  margin-bottom: 0;  
}

.tokusho table {
  background-color: #fff;
  border-spacing: 10px;
  border-collapse: separate;
  width: 100%;
}

.tokusho table th,
.tokusho table td {
  padding: 10px;
}


.tokusho table th{
  font-weight: bold;
  background-color: #ddd;
}


.tokusho table td dl {
  margin-top: 20px;
}

.tokusho table td dt {
  font-weight: bold;
}

@media only screen and (max-width: 821px){
  .tokusho table th,
  .tokusho table td {
    width: 100%;
    display: block;
  }
  
  .tokusho table th,
  .tokusho table td {
    width: 100%;
    display: block;
  }
  
  
}


/* 共通 */
.welcart,
.cart-page,
.member-page {
	width: 1100px;
	margin: 0 auto;
  margin-top: 60px;
}

.cart_page_title,
.member_page_title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  margin-bottom: 40px;
}

.welcart .welcart_sub_menu {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
}

.welcart .welcart_sub_menu li a {
	display: block;
  background-color: #f0f0f0;
	border-radius: 5px;
	color: #333;
  padding: 5px 30px;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
}

.welcart .currency_code {
  display: none;
}

.welcart table {
  background-color: #fff;
}

.welcart .ec_item-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}

.welcart .ec_item-list li {
  width: calc(25% - 160px / 4);
  margin: 20px 20px 40px 20px;
}

.welcart .ec_item-list li img {
  width: 100%;
  height: calc(38vh * 0.5);
  object-fit: cover;
}

@media only screen and (max-width: 1100px){
  .welcart,
  .cart-page,
  .member-page  {
    width: 90%;
  }
}

@media only screen and (max-width: 821px){
  .welcart .ec_item-list li {
    width: 46%;
    margin: 2%;
  }

  .welcart .welcart_sub_menu ul {
    justify-content: center;
  }

  .welcart .welcart_sub_menu li {
    width: 50%;
  }
  
  .welcart #cart_table thead {
    display: none;
}

}



/* 一覧ページ */
.ec_item-list h3 {
  font-size:1.4rem;
}
.ec_item-list .ec_price {
  font-weight: bold;
  text-align: right;
}

.ec_item-list .btn a {
  display: block;
  background-color: #5acda5;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  padding: 5px 0;
}




/* 詳細ページ */
.item_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.item_L {
  width: 38%;
}

.item_R {
  width: 60%;
}

.item_R h2 {
  margin-top: 0;
  font-size: 2.6rem;
  font-weight: normal;
  border-bottom: 1px solid #000;;
}

.item_R .item-description {
  margin-bottom: 20px;
}

.item_R .skuform {
  background-color: rgba(255,255,255,0.5);
  padding: 20px;
  margin-bottom: 20px;
}

.item_R .skuname {
  font-weight: bold;
  font-size: 1.4rem;
}

.item_R .item-option dt {
  font-weight: bold;
  margin-top: 10px;
}

.item_R .item-option dt::before {
  content: '－';
  margin-right: 5px;
}

.item_R .field .zaikostatus {
  text-align: right;
}

#itempage .itemimg img,
#itempage .itemsubimg img {
  height: 100%;
}

#itempage .item_R .field .field_cprice {
  font-size: 1rem;
  text-decoration: line-through;
}

#itempage .item_R .c-box {
  text-align: right;
  margin-top: 10px;
}

#itempage .item_R .c-box .cart-button input {
  border-radius: 5px;
  background-color: #5acda5;
  padding: 5px 10px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: #FFF;
  transition: all 0.2s ease 0s;
}

#itempage .item_R .c-box .cart-button input:hover {
  cursor: pointer;
  opacity: 0.7;
}


@media only screen and (max-width: 821px){
  .item_L {
    width: 100%;
  }

  .item_R {
    width: 100%;
  }
}




/* カート */
.cart-page .cart_navi ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.cart-page .cart_navi ul li {
	background-color: #6e6e6e;
	border-radius: 5px;
  font-weight: bold;
  color: #fff;
	padding: 10px;
	width: 24%;
  text-align: center;
}

.cart-page .cart_navi ul li.current {
  background-color: #33a4d5;
}


.cart-page .send {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cart-page .send input[type=submit],
.cart-page .send input[type=button],
.member-page .loginbox #member_login {
	display: block;
	text-decoration: none;
	text-align: center;
  border: none;
	border-radius: 5px;
  background-color: #898989;
	color: #FFF;
	font-weight: bold;
	width: 300px;
	padding: 20px 40px;
  cursor:pointer;
  margin: 5px;
  transition: all 0.2s ease 0s;
}

.cart-page .send input:hover,
.member-page .loginbox #member_login:hover {
  opacity: 0.8;
}

.member-page .loginbox #member_login {
  width: 60%!important;
  margin: 0 auto;
  padding: 20px!important;
}

.cart-page .send input.to_customerinfo_button,
.cart-page .send input.to_memberlogin_button,
.cart-page .send input.to_deliveryinfo_button,
.cart-page .send input.to_reganddeliveryinfo_button,
.cart-page .send input.to_confirm_button,
.cart-page .send input.checkout_button,
.member-page .loginbox #member_login {
	background: #5acda5;
}

.cart-page .send input.continue_shopping_button {
	background: #ff7e7e;
}

@media only screen and (max-width: 821px){
  .cart-page .cart_navi ul li {
    width: 48%;
    margin-bottom: 2%;
  }

  
  .cart-page .send input {
    width: 100%!important;
  }
}


/* お客様情報 */
#customer-info form {
  margin-bottom: 60px!important;
}

#customer-info h5 {
  background-color: #33a4d5!important;
  padding: 10px!important;
  font-weight: bold;
  border-radius: 10px 10px 0px 0px;
}


/* テーブル */
#content #wc_cart img, #content #wc_confirm img {
  height: auto;
}

.cart-page table {
  width: 100%;
  background-color: rgba(255,255,255,0.8);
}

.cart-page table th,
.cart-page table td {
  padding: 20px!important;
  font-size: 1.0rem!important;
}

@media only screen and (max-width: 821px){
  .cart-page thead {
    display: none;
  }

  .cart-page #cart tbody td {
      width: 100%;
      display: block;
      text-align: left;
    }

    
  .cart-page tbody .thumbnail img {
    height: auto;
  }

  .cart-page table {
    table-layout: fixed;
    width: 100%;
  }

  .cart-page th,
  .cart-page td {
    width: 100%!important;
    display: block;
  }

  .cart-page tfoot .num,
  .cart-page tfoot .thumbnail,
  .cart-page tfoot .stock,
  .cart-page tfoot .action {
    display: none;
  }
}




/* フォーム */
.customer_form input,
.customer_form textarea {
  width: 100%!important;
  background-color: #dedede;
  border: none;
  border-radius: 5px;
  padding: 10px;
}

.customer_form input[type=radio] {
  width: auto!important;
}

#delivery-info .customer_form dt {
  font-size: 1.0rem!important;
}




/* ログイン */
.member-page .loginbox {
  width: 60%!important;
  margin-top: 0!important;
  padding: 20px 40px!important;
}

.member-page .loginbox p {
  font-size: 1rem!important;
}

.member-page .loginbox input {
  width: 100%!important;
  background-color: #dedede;
  border: none;
  border-radius: 5px;
  padding: 10px!important;
}

.member-page .loginbox  input[type=checkbox] {
  width: auto!important;
}
.member-page .new-entry {
  display: none;
}