/* 基本設定 */
* {box-sizing: border-box;}
body {
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
overflow-x: hidden;
font-family: sans-serif;
}
h1, h2, h3, h4, h5 {
  line-height: 1.2em;
  font-family: "游ゴシック", -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Helvetica Neue", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Arial, Meiryo, sans-serif;
}
ul {margin: 0;padding: 0;list-style: none;}
img {width: 100%;height: auto;display: inline-block;}
a {text-decoration-line: none;}
a:link, a:visited {color: #000;}


/* ---------------------------------------デザイン */
.outer {display: flex;flex-direction: column;align-items: center;width: 100%;}
.wrapper {width: 100%;display: inline-block;display: flex;flex-direction: column;align-items: center;}

@media only screen and (max-width: 1000px) {
  .wrapper {width: 95%;}
}

/* ---------------------------------------レビュー */
.review {margin: 3em auto;}
.review h2 {line-height: 1.0em;}
.review .review_count {font-size: clamp(14px,3vw,20px);}
.review .star {position: relative;z-index: 0;display: inline-block;white-space: nowrap;color: #CCC;margin:0 5px;font-size: 70%;}
.review .star:before, .review .star:after {content: '★★★★★';}
.review .star:after {position: absolute;z-index: 1;top: 0;left: 0;overflow: hidden;white-space: nowrap;color:#F9AA26;}
.review .star[data-rate="5"]:after{width:100%;}
.review .star[data-rate="4"]:after{width:80%;}
.review .star[data-rate="3"]:after{width:60%;}
.review .star[data-rate="2"]:after{width:40%;}
.review .star[data-rate="1"]:after{width:20%;}
.review .review_sc {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 400px;
  text-align: left;
  margin: 0px auto;
  padding-right: 15px;
  display: inline-block;
  box-sizing: border-box;
}
.review .review_sc::-webkit-scrollbar {width: 10px;}
.review .review_sc::-webkit-scrollbar-track {background: #ccc;border-radius: 20px;}
.review .review_sc::-webkit-scrollbar-thumb {background: #666;border-radius: 20px;}
@supports (font: -apple-system-body) and (-webkit-appearance: none) {/* Safariにのみ適用されるCSS */
  .review .review_sc {border: 1px solid;padding: 15px;}
}

.review .review_come {font-size: clamp(12px,3vw,17px);line-height: 1.6em;}
.review .review_come p {margin: 10px 0;font-size: 130%;font-weight: bold;}
.review .shop_come {
  background: #dbdbdb;
  color: #231916;
  padding: 15px;
  position: relative;
  display: inline-block;
  margin: 30px 0;
  width: 100%;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.5em;
}
.review .shop_come:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 5%;
  border: 10px solid transparent;
  border-bottom: 10px solid #dbdbdb;
}
.review .shop_come strong {
  line-height: 2em;
  font-size: 130%;
  font-family: "游ゴシック", -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Helvetica Neue", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Arial, Meiryo, sans-serif;
}

@media only screen and (max-width: 1000px) {
  .review_sc {height: 200px;}
}
@media only screen and (max-width: 700px) {
  .review_come .star {display: block;margin: 0;}
}

/* ---------------------------------------FAQ */
.FAQ {margin: 3em auto;}
.FAQ label {text-align: left;}
.FAQ input {display: none;}
.FAQ h3 {
  position: relative;
  font-size: clamp(14px, 3vw, 22px);
  letter-spacing: 0.1em;
  border-bottom: 1px solid #333;
  padding: 10px 30px 0 0;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  white-space: break-spaces;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.FAQ h3::after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.FAQ .FAQ-content {
  height: 0;
  display: none;
  font-size: clamp(14px,3vw,18px);
  line-height: 1.6em;
  margin-bottom: 15px;
  padding: 15px 0 15px 30px;
}
.FAQ input:checked ~ .FAQ-content {height: auto;display: block;}
.FAQ input:checked ~ h3::after {content: "-";}

@media only screen and (max-width: 1000px) {
  .FAQ {margin: 3vw auto 15vw;}
}
@media only screen and (max-width: 700px) {
  .FAQ .FAQ-content {padding: 1.5vw 0 1.5vw;}
}

/* ---------------------------------------カートエリア */
.cart {margin: 5em auto 0;} 
.cart_area {display: flex;justify-content: center;}
.cart_item_img {margin: 30px;max-width: 400px;}
.cart_item_img img {max-width: 400px;}
.cart_item {margin: 30px;width: 100%;max-width: 500px;text-align: left;display: flex;flex-direction: column;align-self: center;}
.cart_icon > div {
  display: inline-block;
  color: #fff;
  margin: 10px 10px 10px 0;
  padding: 3px 10px;
  font-weight: bold;
  font-size: 12px;
}
.cart_icon > div.sale {display: none;background: #900;}
.cart_icon > div.cool {display: none;background: rgb(3, 0, 153);}
.cart_icon > div.deli {background: #67B828;}
.cart_item_price {text-align: left;border-left: 2px solid;padding-left: 30px;margin: 0px 0 30px;}
.cart_item_price:last-child {margin: 0;}
.cart_item_price h3 {font-size: clamp(20px,4vw,24px);margin: 0 0 10px;}
.cart_item_price .SRP {font-family: sans-serif;font-size: clamp(12px,3vw,14px);margin: 3px 0;text-decoration: line-through;} 
.cart_item_price .PET {
  font-size: clamp(15px,3.5vw,20px);
  margin: 3px 0;
  font-weight: bold;
}
.cart_item_price .PET span span {font-size: 10px;}
.ex_txt {font-size: 14px;color: #b50000;font-weight: bold;}
.coolmark {max-width: 396px;display: none;}

.cart_button {display: flex;justify-content: flex-end;margin-top: 30px;}
.cart_button_area {display :flex;}
.k_number {display: flex;margin-right: 10px;}
.k_number > * {padding: 5px 10px;height: 100%;box-sizing: border-box;display: flex;align-items: center;}
.k_number div {font-size: clamp(17px,3.5vw,20px);border: 1px solid #231916;cursor: pointer;}
.k_number div.minus {cursor: unset;color: #999;user-select: none;}
.k_number input {
  text-align: right;
  width: 100%;
  background: none;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: none;
  border-right: none;
  min-width: 60px;
  /* safari角丸解消 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.clearfix {width: 100%;max-width: 150px;}
.clearfix input {height: 50px;}
.cart_button button, .cart_button_op button {
  position: relative;
  background: #ef9b40;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  box-shadow: 1px 1px 2px #aaa;
}
.cart_button button:hover, .cart_button_op button:hover {opacity: 0.8;}
.cart_button button::after, .cart_button_op button::after {
  position: absolute;
  content: "カートに追加";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
}
.cart_button button[disabled], .cart_button_op button[disabled] {background: #bbb;cursor: no-drop;}
.cart_button button[disabled]::after, .cart_button_op button[disabled]::after {content: "欠品中";}

.cart_button_op {flex-direction: column;}
.cart_button_op .cart_button_area {float: right;}

.pulldown_area {margin: 15px 0;}
p.pulldown {
  font-size: 14px;
  font-weight: 700;
  padding: 0px 0px 0px 15px;
  line-height: 1.5em;
  margin: 10px 0 0;
  box-sizing: border-box;
}
p.pulldown label {position: relative;}
p.pulldown label::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #000;
  border-bottom: 0;
}
p.pulldown select {
  font-weight: bold;
  display: inline-block;
  height: 40px;
  margin: 10px 0 0;
  padding: 0 10px;
  width: 100%;
  border: 1px solid;
  background-color: unset;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 14px;
}

@media only screen and (max-width: 1000px) {
  .cart .sec {margin-bottom: 10vw;}
  .cart .cart_tit {margin-bottom: 0;}
  .cart_area {display: block;}
  .cart_item_img {margin: 3vw auto;}
  .cart_item {margin: 3vw auto;}
  .cart_item_price {padding-left: 3vw;}
  .cart_button {margin-top: 3vw;}
}
@media only screen and (max-width: 700px) {
  .cart_area {display: block;}
}

/* ---------------------------------------スペック */
.spec {margin: 50px auto;max-width: 700px;margin: 30px auto;}
.spec h3 {margin: 15px 0;font-size: clamp(15px, 3vw, 20px);text-align: center;}
.spec table {border-collapse: collapse;width: 100%;}
.spec table th, .spec table td {
  padding: 10px 15px;
  font-size: clamp(14px,3vw,17px);
  font-weight: bold;
  width: 50%;
}
.spec table th {border-top: 1px solid #333;border-right: 1px solid #333;text-align: right;}
.spec table td {border-top: 1px solid #333;text-align: left;}
.spec table tr:last-child th, .spec table tr:last-child td {border-bottom: 1px solid #333;}
.spec p {font-size: clamp(12px,3vw,14px);font-family: sans-serif;}

@media only screen and (max-width: 1000px) {
  .spec table th, .spec table td {padding: 1vw 1.5vw;}
}

/* ---------------------------------------フッター */
.footer {padding: 30px 0 100px;line-height: 1.2em;}
.footer .sec > div {margin-bottom: 50px;}
.footer_menu ul {display: flex;justify-content: center;flex-wrap: wrap;}
.footer_menu ul li {
  line-height: 1em;
  font-weight: bold;
  font-size: clamp(14px,3vw,16px);
  padding: 0 15px;
  margin: 5px 0;
  border-right: 1px solid;
}
.footer_menu ul li:last-child {border-right: none;}
.footer_logo {font-size: 12px;display: flex;flex-direction: column;align-items: center;text-align: center;}
.footer_logo img {max-width: 150px;margin-bottom: 15px;}
.bg_white .footer_logo .white {display: none;}
.bg_black .footer_logo .black {display: none;}
.footer_copyright {text-align: center;font-size: 12px;}

@media only screen and (max-width: 1000px) {
  .footer {padding: 30px 0 10vw;}
  .footer .sec > div {margin-bottom: 5vw;}
  .footer_logo img {width: 30%;}
}

/* ---------------------------------------カートへのリンク */
.cartLink_button a {
  position: fixed;
  bottom: 10px;
  right: 8px;
  background: url(../../images/lp/cartLink.png) no-repeat center center #fff;
  background-size: 50%;
  width: 6vw;
  height: 6vw;
  max-width: 75px;
  max-height: 75px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  box-shadow: 0px 0px 8px #888;
}


