@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  見出し

---------------------------------*/
section .wrapper h2.ttl {
  border-left: 2px solid rgb(154, 189, 180);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.25rem;
  margin-bottom: 4rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 580px) {
  section .wrapper h2.ttl {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
/*---------------------------------

  商品購入画面

---------------------------------*/
article {
  padding: 5rem 0;
}
@media screen and (max-width: 580px) {
  article {
    padding: 2rem 2.5% 3rem;
  }
}
.prdBlock {
  margin: auto;
  max-width: var(--width);
  width: 95%;
}
.prdBlock .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  max-width: 90rem;
}
/* 商品名 */
.prdBlock .prdTtl ._tag {
  display: flex;
  gap: .5rem;
}
.prdBlock .prdTtl ._tag p {
  display: block;
  font-size: .8em;
  margin-bottom: 1rem;
  padding: .3rem 1.5rem;
  width: fit-content;
}
.prdBlock .prdTtl ._tag .__type {
  border: 1px solid;
  color: var(--link-color);
}
.prdBlock .prdTtl ._tag .__reason {
  border-color: #999;
  background: #999;
  color: #fff;
}
.prdBlock .prdTtl ._tag .__limitedstock {
  border: 1px solid;
  color: #DD1115;
}
.prdBlock .prdTtl h1, .prdBlock .prdTtl .prdTtl_h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.prdBlock .prdTtl.__sp {
  display: none;
}
/* 内容量 */
.prdBlock .amount {
  display: flex;
  align-items: baseline;
  font-size: 1.2rem;
}
.prdBlock .amount dt {
  background: #F2F2F2;
  padding: .5rem 1rem;
}
.prdBlock .amount dd {
  margin-left: 1rem;
}
.prdBlock .amount dd span {
  font-size: 1.2em;
}
.prdBlock .amount dd strong {
  font-size: 2.2rem;
  font-weight: 500;
  margin-right: .1em;
}
@media screen and (max-width: 896px) {
  .prdBlock .prdTtl.__pc {
    display: none;
  }
  .prdBlock .prdTtl.__sp {
    display: block;
  }
  .prdBlock .wrap {
    display: block;
  }
  .prdBlock .prdTtl ._tag {
    justify-content: center;
  }
  /* 商品名 */
  .prdBlock .prdTtl h1, .prdBlock .prdTtl .prdTtl_h1 {
    font-size: 1.9rem;
    text-align: center;
  }
  /* 内容量・通常価格 */
  .prdBlock .amount {
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------
  商品画像
---------------------------------*/
.prdBlock .wrap .mainvisual {
  flex-basis: 35rem;
}
.prdBlock .wrap .mainvisual figure {
  height: 40rem;
}
.prdBlock .wrap .mainvisual figure img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  vertical-align: bottom;
}
.prdBlock .wrap .mainvisual p {
  font-size: .7em;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .prdBlock .wrap .mainvisual {
    margin: 2rem auto;
  }
  .prdBlock .wrap .mainvisual figure {
    height: 30rem;
  }
}
/*---------------------------------
  タイトル・レビュー・カートボタンなど
---------------------------------*/
.prdBlock .wrap .prdtxtBox {
  flex-basis: 50rem;
}
/* 全成分 */
.prdBlock .wrap .prdtxtBox .componentBox {
  font-size: .7em;
  text-align: justify;
  margin: 1.5rem 0;
}
.prdBlock .wrap .prdtxtBox .componentBox p:first-child {
  border: 1px solid;
  font-size: 1.2rem;
  max-width: 12rem;
  margin-bottom: .5rem;
  padding: .2rem .5rem;
  text-align: center;
}
.prdBlock .wrap .prdtxtBox .limited {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.prdBlock .wrap .prdtxtBox .limited span {
  border: 1px solid;
  font-size: 1.2rem;
  flex: 0 0 12rem;
  margin-bottom: .5rem;
  padding: .2rem .5rem;
  text-align: center;
}
/* 通常注文 */
.prdBlock .wrap .prdtxtBox .osBox {
  margin-top: 1.5rem;
}
.prdBlock .wrap .prdtxtBox .osBox .amount {
  align-items: center;
  margin-bottom: 1rem;
}
.prdBlock .wrap .prdtxtBox .osBox .amount dt {
  border: 1px solid;
  background: #fff;
}
.prdBlock .wrap .prdtxtBox .osBox .amount dd {
  font-size: 1.8rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.prdBlock .wrap .prdtxtBox .osBox .amount dd strong {
  font-size: 1.6em;
  text-align: center;
}
/* カートボタン */
.prdBlock .prd_btn {}
.prdBlock .prd_btn ._limitedstock {
  margin-bottom: .5rem;
}
.prdBlock .prd_btn ._limitedstock span {
  border: 1px solid;
  display: inline-block;
  color: #DD1115;
  line-height: 1;
  font-size: 1.3rem;
  padding: 0.5rem 2.6rem;
}
.prdBlock .prd_btn input {
  background-image: url("../../images/all/a_arr_w.png");
  background-position: center right 2rem;
  background-repeat: no-repeat;
  background-size: .7rem;
  border: none;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 2rem 2.5rem;
  outline: none;
  width: 100%;
}
.prdBlock .prd_btn.order input {
  background-color: #95C71E;
}
.prdBlock .prd_btn._soldout input {
  background: #aaa;
  pointer-events: none;
}
.prdBlock .prd_btn p.note {
  font-size: 1.2rem;
  margin-top: .5rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .prdBlock .amount {
    justify-content: flex-start;
  }
  .prdBlock .prd_btn input {
    font-size: 1.4rem;
  }
  .prdBlock .prd_btn ._limitedstock {
    text-align: center;
  }
  .prdBlock .prd_btn ._limitedstock span {
    font-size: 1.2rem;
    padding: 0.5rem 1.6rem;
  }
}
/*---------------------------------
  attention
---------------------------------*/
.attentionTxt {
  background: #f2f2f2;
  margin: auto;
  margin-top: 5rem;
  max-width: 90rem;
  padding: 3rem;
}
.attentionTxt h3 {
  text-align: center;
}
.attentionTxt ._txt {
  font-size: .8em;
  margin: auto;
  max-width: fit-content;
}
.attentionTxt ._txt p {
  color: #E60012;
  text-indent: -1em;
  margin-left: 1em;
  margin-top: .5em;
}
.attentionTxt ._txt p::before {
  content: '※';
}
@media screen and (max-width: 480px) {
  .attentionTxt {
    padding: 1.5rem 5%;
  }
}
@media screen and (max-width: 368px) {}