@charset "UTF-8";

body {
  height: 3000px;
  margin: 0px;
  background-color: #ffffff;
  font-weight: lighter;
  width: 100%;
}

/* Menu */
#load_menu_jp {
  width: 100%;
  height: 100px;
}

#load_menu_en {
  width: 100%;
  height: 100px;
}



/* ロゴ */
.logo {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  align-items: center;
  margin: 20px auto;
}

.logo img {
  width: 100px;   /* 適宜サイズ調整 */
  height: auto;
  cursor: pointer;
}


/* 言語 */
.language-select {
  color: black;
  font-size: 20px;
  position: fixed;
  top: 0px;
  right: 150px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.language-select ul {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.language-select li {
  margin-top: 20px;
}

.language-select_item a {
  color: black;
  font-weight: lighter;
  text-decoration: none;

}

.language-select_item.current a {
  font-weight: bold;
}

/* カートアイコン */
.cart_icon img {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}

.overlay::after {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255, 255, 255, 0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, .7);
}

.side-open .overlay::after {
  visibility: visible;
  color: rgba(255, 255, 255, .8);
}

/* 開閉用ボタン */
.side-menu-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.side-menu-btn img {
  width: 40px;
  height: 40px;
}

/* サイドメニュー  */
.side-menu {
  position: fixed;
  top: 90px;
  left: 0px;
  width: 350px;
  height: 100%;
  padding-top: 0px;
  text-align: left;
  font-size: 30px;
  background: white;
  z-index: 1;
}

.side-menu li {
  list-style: none;
  height: 100px;
}

.side-menu li a {
  text-decoration: none;
  color: gray;
}

/* 全体のコンテンツ */
.page {
  position: absolute;
  width: 100%;
  height: 3000px;
  text-align: center;
  font-size: 13px;
  background: #ffffff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}

/* サイドメニューオープン */
.side-open .page,
.side-open .overlay {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(350px, 0, 0);
}

/* コンテンツ */

/* アイテムページ */
.page-index {
  margin: 100px auto 0 auto;
  width: 800px;
  display: flex;

}

.page-index a,
.page-index p {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 3px;
}

/* リスト */
.product {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* 画像 */
.product-image {
  width: 400px;
  height: 500px;
  display: block;
}

.product-image>img {
  width: 400px;
  height: 400px;
  object-fit: contain;

}

.image-list {
  width: 400px;
  height: 100px;
  padding: 0px;
  display: flex;
}

.image-list>li {
  width: 100px;
  height: 100px;
  margin: 5px;
  list-style-type: none;
}

.image-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;

}

/* 詳細 */
.product-detail {
  font-family: arial;
  width: 300px;
  margin-left: 20px;
  text-align: left;
  font-size: 30px;
}

.product-detail>p {
  font-size: 25px;
}

.tax-info {
  font-size: 18px;
  color: gray;
}


/* オプション */
.option {
  font-size: 15px;
}

/* カラー選択 */
.product-color-select input {
  display: none;
}

.color-label {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: pointer;
}

/* カラーコード一覧 */
.color-silver {
  background-color: #C0C0C0;
}

.color-gold {
  background-color: #ffd700;
}



/* チェックされた時に黒枠 */
.radio:checked+label {
  border: 2px solid black;
}

.product-color-select img {
  cursor: pointer;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* サイズ選択 */
.product-quantity-select select {
  width: 60px;
  height: 35px;
  padding: 5px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.product-quantity-select select:hover {
  border-color: #888;
}

.product-quantity-select select:focus {
  outline: none;
  border-color: #555;
  box-shadow: 0 0 5px rgba(85, 85, 85, 0.3);
}

/* カートに追加 */
.add-shoppingbag {
  background-color: black;
  margin-top: 30px;
  height: 40px;
  display: flex;
  justify-content: center;
}

.add-shoppingbag button {
  cursor: pointer;
  background-color: black;
  color: white;
  width: 300px;
  border: 0px;
  padding: 0px;
}


/* カートページ */
.cart {
  margin-top: 40px;
  display: block;
  margin: auto;
  width: 700px;
  
}

.cart h3 {
  text-align: left;
  font-size: 20px;
}

.cart a {
  text-decoration: none;
  color: black;
}

.cart .cart-item-content {
  display: flex;
  justify-content: left;
  height: 150px;
}

.cart .cart-item-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;

}

.cart .cart-item-detail {
  margin-left: 40px;
  text-align: left;
  width: 500px;
  height: 120px;

}

.cart .cart-item-name {
  font-weight: bold;
  margin-bottom: 0px;
}

.cart .cart-item-price {
  margin-bottom: 0px;
}


.cart .color-array {
  display: flex;
  height: 20px;
}

.cart .color-array p {
  margin: 0;
}

.cart .cart-item-color-image img {
  height: 20px;
  width: 20px;
}

.cart .quantity-array {
  display: flex;
  height: 20px;
}

.cart .quantity-array p {
  margin: 0;
}

/* カート削除ボタン */
.cart-item-delete {
  text-align: right;
  font-size: 8px;

}

.delete-btn {
    background-color: #f1afaf;  
  color: gray;
  border: none;
  margin-left: 80%;
    cursor: pointer;
      width: 20px;                /* ボタンの横幅 */
  height: 20px;               /* ボタンの縦幅 */
  border-radius: 50%;         /* 丸くする */
  padding: 0;
}

/* 注文ボタン */
.OrderConfirm {
  background-color: black;
  height: 40px;
  width: 200px;
  display: flex;
  justify-content: center;
  margin: auto;
}

.OrderConfirm button {
  cursor: pointer;
  background-color: black;
  color: white;
  width: 300px;
  border: 0px;
  padding: 0px;
}

/* 情報ページ */
.information {
  position: absolute;
  width: 100%;
  height: 3000px;
  text-align: center;
  font-size: 13px;
  background: #F8F8F8;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}

main {
  margin-top: 100px;
}

.form {
  margin-left: 20%;
  margin-right: 20%;
}

.form div {
  display: flex;

}

.form div label {
  width: 20%;
  text-align: right;
}

.form div input {
  width: 70%;
}

.form .payment-method {
  display: block;
  text-align: left;
}

.form .payment-method input {
  width: 5%;
}

.form .submit-btn {
  justify-content: center;

}

/* 注文確認ページ */
.confirm {
  position: absolute;
  width: 100%;
  height: 3000px;
  text-align: center;
  font-size: 13px;
  background: #F8F8F8;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}

.confirm h1 {
  text-align: center;
  font-size: 30px;
  color: gray;
}

.confirm h3 {
  text-align: center;
  font-size: 20px;
  color: black;
  font: bold;
}