@charset "utf-8";
/* CSS Document */
/*==============================================================================================
 商品ページ　商品詳細説明1
==============================================================================================*/
/*　共通　*/
.setumei {
  font-size: 1.2em;
  font-weight: bold;
  color: blue;
  margin-bottom: 1em;
}
.f-red, .f_red {
  color: #cc0000;
}
.f-purple {
  color: var(--basecolor);
}
.f-sizeS {
  font-size: var(--fsizeS); /*12px*/
}
.f-sizeM {
  font-size: var(--fsizeM); /*16px*/
}
.f-sizeL {
  font-size: var(--fsizeL); /*20px*/
}
.f-size2L {
  font-size: var(--fsize2L); /*20px*/
}
.f-size3L {
  font-size: var(--fsize3L); /*20px*/
}
.mincho {
  font-family: var(--mincho);
}
.Wide90 {
  width: 90%;
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
/*　lineup　*/
.lineup > p {
  width: 90%;
  margin: 0 auto 40px auto;
}
.lineup h2 {
  text-align: center;
  margin: 0 0 40px 0;
  font-size: 28px;
  font-weight: bold;
  border-top: 2px solid var(--basecolor) !important;
  border-bottom: 2px solid var(--basecolor) !important;
  display: block;
  padding: 20px;
  color: var(--basecolor);
  font-family: var(--mincho);
}
/*▼wine-box*/
.wine-box {
  width: 90%;
  margin: 0 auto 40px;
}
.wine-box p {
  width: 100%;
  margin: 0 auto;
}
.wine-box h4 {
  font-weight: bold;
  margin-bottom: 12px;
}
.wine-box [class^="detail"] {
  text-align: left;
}
.wine-box [class^="detail"] h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 12px 0;
}
.wine-box .detail-variety {
  margin-bottom: 10px;
}
.wine-box .price {
  margin-bottom: 20px;
}
.wine-box .contry {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.wine-box .contry img {
  width: 40px;
}
.wine-box .text {
  border-top: 1px solid #ccc;
  padding: 20px 0;
}
.wine-box .detail-award {
  border: 4px double #cccccc;
  padding: 20px;
  margin-bottom: 20px;
}
.wine-box .photo img {
  width: 100%;
  height: auto;
}
/*　▼wine-box 1カラム　*/
.wine-box.col1 .photo {
  width: 100%;
}
/*　▼wine-box 2カラム　*/
.wine-box.col2, .flexwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wine-box.col2 .photo, .flexwrap .photo {
  width: 36%;
}
.wine-box.col2 .detail01, .flexwrap .txtbox {
  width: 60%;
}
.wine-box.col2 .detail02 {
  width: 100%;
  margin-top: 20px;
}
/*▼wine-box 枠あり*/
section.frame .wine-box {
  border: 1px solid #ccc;
  padding: 20px;
}
/*▼コンテンツ　flex*/
.flexwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexwrap .photo {
  width: 36%;
}
.flexwrap .txtbox {
  width: 60%;
}
/*▼ワイン評価ポイント*/
.wineinfo {
  /*width: 90%;*/
  margin: 0 auto;
}
.wineinfo-score {
  text-align: left;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wineinfo-score li {
  padding: 10px;
  background-color: #f9f5e9;
  margin: 0 0 10px;
  width: 48%;
}
.wineinfo-score li span {
  border-left: 5px solid;
  padding: 0 0 0 10px;
  color: #916906;
  display: inline-block;
}
.wineinfo-score-link {
  text-align: right;
  margin-bottom: 1em;
}
.wineinfo-score-link a {
  color: var(--basecolor);
  font-size: var(--fsizeS);
}
.wineinfo-score-link a:before {
  content: "";
  background-image: url(/Contents/ImagesPkg/product/que_icon.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
}
.wineinfo-score-link a span {
  padding-left: 6px;
  vertical-align: top;
  text-decoration: underline;
}
.wineinfo-list {
  background-color: #ffffff;
  text-align: left;
  margin: 0 auto 20px;
  padding: 10px;
  border: 4px double;
  color: #916906;
}
.wineinfo-list ul li:before {
  content: "★";
  display: inline-block;
  padding-right: 0.5em;
}
.wineinfo-list ul li {
  padding: 5px 0 5px 1em;
  text-indent: -1em;
  margin-left: 1em;
}
.wineinfo-list li span {
  padding-left: 0.5em;
}
.wineinfo-list h3.wineinfo-list-ttl {
  text-align: center;
  font-size: 1.1em;
  margin: -20px auto 5px;
  background: #ffffff;
  width: 29%;
}

/*--------------------------------
  SP
--------------------------------*/
@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .Wide90 {
    width: 100%;
  }
  /*lineup*/
  .lineup > p {
    width: 90%;
  }
  .lineup h2 {
    font-size: 20px;
  }
  /*▼wine-box*/
  .detail-text-area {
    padding: 0;
  }
  .wine-box .tx h3 {
    font-size: 15px;
  }
  .wine-box .photo {
    margin: 0 auto 20px auto;
  }
  .wine-box .tx p {
    line-height: 1.4;
  }
  .wine-box .contry img {
    width: 24px;
  }
  /*▼wine-box 1カラム*/
  .wine-box {
    width: 100%;
  }
  /*▼wine-box 2カラム　*/
  .wine-box.col2 .photo, .wine-box.col2 [class^="detail"] {
    width: 100%;
  }
  /*▼wine-box 枠あり*/
  section.frame .wine-box {
    border: 1px solid #ccc;
    padding: 5px;
  }
  /*▼コンテンツ　flex*/
  .flexwrap .photo, .flexwrap .txtbox {
    width: 100%
  }
  /*▼ワイン評価ポイント*/
  .wineinfo {
    width: 100%;
  }
  .wineinfo-list h3.wineinfo-list-ttl {
    width: 60%;
  }
  .wineinfo-score li {
    width: 100%;
  }
  .wineinfo-score li span {
    border-left: 3px solid;
  }
}
/*==============================================================================================
 商品ページ　商品詳細説明4
==============================================================================================*/
/* 共通 */
.detailFour-inner {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
#detailFour .txtlink {
  text-decoration: underline;
  color: var(--basecolor);
}
.detailFour-inner h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin: 10px 0;
  color: var(--basecolor);
}
/* bn-wrap */
.detailFour-inner [class^="bn-wrap"] {
  display: flex;
  flex-wrap: wrap;
}
.detailFour-inner [class^="bn-wrap"] li {
  width: 49%;
  padding: 10px;
  border: 1px solid #cccccc;
  margin-bottom: 1em;
}
.detailFour-inner [class^="bn-wrap"] li a {
  display: flex;
  justify-content: center;
}
.detailFour-inner [class^="bn-wrap"] li figure {
  width: 20%;
}
.detailFour-inner [class^="bn-wrap"] li p {
  width: 78%;
  padding-left: 10px;
  font-size: 16px;
}
.detailFour-inner .bn-wrap-col1 {
  justify-content: center;
}
.detailFour-inner .bn-wrap-col2, .detailFour-inner .bn-wrap-col3 {
  justify-content: space-between;
}
.detailFour-inner .bn-wrap-col3 li {
  width: 32%;
}
.detailFour-inner .bn-wrap-col3 li figure {
  width: 30%;
}
/*SP*/
@media screen and (max-width:767px) {
  .detailFour-inner {
    width: 100%;
  }
  .detailFour-inner [class^="bn-wrap"] li {
    width: 100%;
    padding: 5px;
  }
  .detailFour-inner .bn-wrap-col3 li {
    width: 100%;
  }
  .detailFour-inner [class^="bn-wrap"] li p {
    font-size: 14px;
  }
  .detailFour-inner .bn-wrap-col3 li figure {
    width: 20%;
  }
}
/*==============================================================================================
 商品ページ　商品詳細説明1,4 共通デコレーション
==============================================================================================*/
/*.midashi01*/
.detailText .midashi01 {
      position: relative;
    padding: 1rem 2rem calc(1rem + 10px);
    background: #fdfb73;
    font-size: var(--fsizeL);
    font-weight: bold;
    text-align: center;
    margin: 1em auto 1em;
	color: #333333;
	width: 80%;
}
.detailText .midashi01:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid;
}
#detailFour .bk-red{background: #ffdcda;}	
	
/*.midashi02*/
.detailText .midashi02 {
    text-align: center;
	font-weight: bold;
    font-size: var(--fsizeL);
  font-family: var(--mincho);
  position: relative;
  padding: 1.5rem 2rem;
}
.detailText .midashi02:before,
.detailText .midashi02:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}
.detailText .midashi02:before {
  top: 0;
}
.detailText .midashi02:after {
  bottom: 0;
}
/*.midashi03*/
.detailText .midashi03 {
    text-align: center;
	font-weight: bold;
    font-size: var(--fsizeL);
  font-family:  var(--mincho);
  padding: 1rem 2rem;
  color: #fff;
  background: #000;
}
.detailText .midashi03 span {
  background-image: -webkit-linear-gradient(315deg, #b8751e 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
  background-image: linear-gradient(135deg, #b8751e 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*.midashi04*/
.detailText .midashi04 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
	text-align: center;
	font-weight: bold;
    font-size: var(--fsizeL);
}
.detailText .midashi04:before, .detailText .midashi04:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}
.detailText .midashi04:before {
  left:0;
}
.detailText .midashi04:after {
  right: 0;
}
/*.deco01*/
.detailText .deco01 {
	font-weight: bold;
    font-size: var(--fsizeL);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.detailText .deco01::before,
.detailText .deco01::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #555555;
}
.detailText .deco01::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.detailText .deco01::after {
	margin-left: 30px;
	transform: rotate(35deg)
}	
/*.icon01*/
.detailText .icon01 {
  position: relative;
  padding-left: 5em;
	font-weight: bold;
    font-size: var(--fsizeL);
	
}
.detailText .icon01 span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 2rem;
  color: #e3f5d8;
  background: #22ac38;
}
.detailText .icon01 span:after {
  position: absolute;
  top: calc(50% - 7px);
  right: -11px;
  width: 0;
  height: 0;
  content: '';
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #22ac38;
}
@media screen and (max-width:767px) {
		.detailText .midashi01{
			width: 100%;
		}	
	}
/*==============================================================================================
 商品ページ　商品詳細説明4 soldoutBox+おすすめ商品誘導ボタン
==============================================================================================*/
/*soldoutBox*/
.soldoutBox .btn00 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.soldoutBox {
  margin: 30px 0 50px;
}

.soldoutBox a.btn-rec {
  font-size: 2.2rem;
  position: relative;
  padding: 0.25rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: var(--basecolor);
  -webkit-box-shadow: 0 5px 0 #6d0152;
  box-shadow: 0 5px 0 #6d0152;
  width: 60%;
}

.soldoutBox a.btn-rec .btn-copy {
  font-size: 1.5rem;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #6d0152;
  border: 2px solid #6d0152;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.soldoutBox a.btn-rec .btn-copy:before,
.soldoutBox a.btn-rec .btn-copy:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

.soldoutBox a.btn-rec .btn-copy:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #6d0152 transparent transparent transparent;
}

.soldoutBox a.btn-rec .btn-copy:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


.soldoutBox a.btn-rec:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #a13386;
  -webkit-box-shadow: 0 2px 0 #6d0152;
  box-shadow: 0 2px 0 #6d0152;
}
.soldoutBox a.btn-rec .arrow{
	width: 12px;
    height: 12px;
	border-top: solid 3px #ffffff;
    border-right: solid 3px #ffffff;
	right: 20px;
    top: 48%;
	}
	@media screen and (max-width:767px) {
		.soldoutBox a.btn-rec {width: 98%;
		padding: 0.25rem 2rem 1.5rem 2.5rem;
			font-size: 2.0rem;
		}	
	}	