@charset "UTF-8";






#mv {position: relative;   overflow: hidden; min-height: 748px;}

.mArea { height: calc(100vh - 80px);}


.slidesContainer {margin-bottom: 16rem;}
  .slidesContainer .l-inner {padding-bottom: 0;}
  .slidesContainer .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
  }
  .slidesContainer .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  .slidesContainer .swiper-pagination {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 3.2rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
  }
  .slidesContainer .swiper-pagination-bullet {
    display: block;
    width: 3px;
    height: 4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.4);
  }
  .slidesContainer .swiper-pagination-bullet:not(:first-child) {
    margin-top: 0.8rem;
  }
  .slidesContainer .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
  }
  .slidesContainer .imgArea {
    height: 800px;
  }
  .slidesContainer .imgArea img {
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
  }
  .slidesContainer .slide-title {
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.6;
    position: absolute;
    right: 8rem;
    bottom: 15%;
    margin-left: 16rem;
    text-align: right;
    color: #fff;
  }
  .slidesContainer .swiper-slide[class*=-active] .imgArea img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .slidesContainer .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  }

  @-webkit-keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
  }

  @keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
	  
}



#slider {height: 100%;}
.mArea .swiper-slide {}
.mArea .swiper-slide .box {width: 100%; height: 100%;}
.mArea .swiper-slide .box .imgArea {width: 100%; height: 100%;}
.mArea .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


#mv .topLeft {
	background: rgba(255,255,255,0.8);
	width: 500px;
	height: calc(100vh - 80px);
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 30px;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
#mv .topLeft h2 {
	font-size: 2.6em;
	line-height: 1.4;
	letter-spacing: 0.0em;
	font-weight: 600;
	color: #181818;
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	left: 30px;
}
#mv .topLeft .btmArea {
	width: 100%;
}
#mv .topLeft .btmArea .logo {text-align: center;}
#mv .topLeft .btmArea .logo p {margin-top: 5px; font-weight: 600;}
#mv .topLeft .btmArea .btn {margin-top: 20px;}
#mv .topLeft .btmArea .btn a {
	background: linear-gradient(to bottom,  rgba(156,183,121,1) 22%,rgba(13,56,4,1) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	height: 100px;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#mv .topLeft .btmArea .btn a::before {
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	mix-blend-mode: overlay;
	opacity: 0.2;
	transition: all 0.5s ease;
}
#mv .topLeft .btmArea .btn a:hover::before {opacity: 0;}
#mv .topLeft .btmArea .btn a .imgArea {
	position: absolute;
	left: 0;
	top:0;
}
#mv .topLeft .btmArea .btn a span {font-size: 1.5em; display: inline-block; padding-left: 40px;}


@media screen and (max-width: 920px){
	#mv .topLeft {
		background: none;
		width: 100%;
		padding: 0;
	}
	#mv .topLeft h2 {
		text-align: center;
		width: 100%;
		top: 120px;
		left: 0;
	}
	#mv .topLeft .btmArea {
		background: rgba(255,255,255,0.8);
		padding:  15px 20px 20px;
	}
	
	#mv .topLeft .btmArea .imgArea {}
	#mv .topLeft .btmArea .logo  > .imgArea img {width: 150px;}
}

@media screen and (max-width: 620px){
	#mv .topLeft h2 {font-size: 2em;}
	#mv .topLeft .btmArea .btn a {height: 70px;}
	#mv .topLeft .btmArea .btn .imgArea img {}
	#mv .topLeft .btmArea .btn a .imgArea {width: 70px; left: 20px;}
}
@media screen and (max-width: 420px){
	#mv .topLeft .btmArea {padding: 10px;}
	#mv .topLeft .btmArea .btn {margin-top: 10px;}
}



/*
background: linear-gradient(to bottom,  rgba(216,126,73,1) 0%,rgba(99,52,8,1) 100%);

*/





#index .container  h3 {
	font-size: 1.4em;
	line-height: 1.4;
	color: #69965c;
	text-align: center;
	margin-bottom: 40px;
}
#index .container h3 span {
	display: block;
	font-size: 1.6em;
}



#topNews {
	
	
}
#topNews .container {
	/*max-width: none;*/
	padding: 50px 0;
}

#topNews .container .fbox01 {
	/*background: #fff;*/
	background: #f6f4f0;
	border-radius: 12px;
	align-items: center;
}
#index #topNews .container h3 {
	width: 200px;
	font-size: 1.2em;
	margin-bottom: 0;
	box-sizing: border-box;
	padding-left: 30px;
}



#topNews .container  ul {
	/*width: 100%;*/
	width: calc(100% - 200px);
	height: 200px;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 30px;
	/*background: #f6f4f0;*/
	border-radius: 12px;
	font-size: 0.9em;
}
#topNews .container ul > li {display: flex; justify-content: space-between;}

#topNews .container ul > li:not(:last-child) {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #999;
}

#topNews .container ul > li .date {width: 130px; }
#topNews .container ul > li p {width: calc(100% - 130px);}
#topNews .container ul > li p a {color: #181818;}
#topNews .container ul > li p a:hover {text-decoration: underline;}

@media screen and (max-width: 960px){
	#index #topNews .container h3 {width: 160px;}
	#topNews .container  ul {width: calc(100% - 160px);}
	#topNews .container ul > li .date {width: 100px; }
	#topNews .container ul > li p {width: calc(100% - 100px);}
}
@media screen and (max-width: 680px){
	#topNews .container .fbox01 {display: block;}
	#index #topNews .container h3 {width: 100%; padding-top: 30px; margin-bottom: 5px;}
	#topNews .container  ul {width: calc(100%); padding-top: 15px;}
}





#recommend {background:  #547e36;}
#index #recommend h3 {color: #fff; /*margin-bottom: 80px*/}
#recommend .container {
	max-width: 1460px;
	padding-bottom: 100px;
}
#recommend .btnArea a::before {
	background: url("../images/ftBtn.jpg") no-repeat center center / cover;
	opacity: 0.7;
}


.itemList {display: flex; justify-content: space-between;}
.itemList > li {
	width: calc(50% - 25px);
	box-sizing: border-box;
	/*
	padding: 30px;
	*/
	height: 100%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}


.itemList > li > .fbox01 {
	background: #fff;
}
.itemList > li > .fbox01 .wineImg {
	width: 300px;
	text-align: center;
	box-sizing: border-box;
	padding: 20px;
	padding-right: 0;

	/*background: #333;*/
}
.itemList > li > .fbox01 .wineImg img {width: 180px;}


.itemList > li > .fbox01 .wineInfo {
	width: calc(100% - 300px);
	font-size: 0.9em;
	box-sizing: border-box;
	padding: 30px;
}


.itemList > li h4 {
	letter-spacing: -0.1em;
	/*
	position: absolute;
	left: 0;
	bottom: calc(100%);
	*/
	color: #fff;
	font-size: 1.1em;
	font-weight: 700;
	box-sizing: border-box;
	background: rgba(255,255,255,0.2);
	padding: 8px;
	width: 100%;
	text-align: center;
}

.itemList > li > .fbox01 .wineInfo .wInfo01 {}
.itemList > li > .fbox01 .wineInfo .wInfo01 {}
.itemList > li > .fbox01 .wineInfo .wInfo01 > li {display: flex; justify-content: space-between;}
.itemList > li > .fbox01 .wineInfo .wInfo01 > li:not(:last-child) {margin-bottom: 5px;}

.itemList > li > .fbox01 .wineInfo .wInfo01 > li > span:nth-child(1) {width: 70px; text-align-last: justify; letter-spacing: -0.2em; position: relative;}
.itemList > li > .fbox01 .wineInfo .wInfo01 > li > span:nth-child(1)::after {
	content: '：';
	position: absolute;
	top: 0;
	left: calc(100%);
}
.itemList > li > .fbox01 .wineInfo .wInfo01 > li > span:nth-child(2) {width: calc(100% - 90px);}

.itemList > li > .fbox01 .wineInfo .wInfo01 > li > span small {font-size: 0.8em;}

.itemList > li > .fbox01 .wineInfo .wInfo02 {
	display: flex;
	justify-content:center;
	font-size: 1.4em;
	margin: 30px 0;
}
.itemList > li > .fbox01 .wineInfo .wInfo02 > li {
	margin: 0 10px;
}
.itemList > li > .fbox01 .wineInfo .wInfo02 > li > span {
	background: #333;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-sizing: border-box;
	font-weight: 700;
	opacity: 0.2;
}

.itemList > li > .fbox01 .wineInfo .wInfo02 > li.active > span {opacity: 1;}

.itemList > li > .fbox01 .wineInfo .wInfo02 > li.w_red > span {background:#8b0000; }
.itemList > li > .fbox01 .wineInfo .wInfo02 > li.w_white > span {
	color: #4e8636;
	border: 1px solid #4e8636;
	background: #fff;
}
.itemList > li > .fbox01 .wineInfo .wInfo02 > li.w_spark > span {
	color: #0e86a4;
	background: #bce5ef;
	border: 1px solid #0e86a4;
}





.itemList > li > .fbox01 .wineInfo .wInfo03 {
	display: flex;
	justify-content:center;
	font-size: 1.4em;
	font-weight: 500;
	color: #8b0000;
}

.itemList > li > .fbox01 .wineInfo .wInfo03 .extent {
	width: 120px;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 12px;
}

.itemList > li > .fbox01 .wineInfo .wInfo03 .extent .line {
	width: 100%;
	height: 4px;
	background: #8b0000;
}

.itemList > li > .fbox01 .wineInfo .wInfo03 .extent .circle {
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	background: #8b0000;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

.extent .circle.posi_0 {left: calc(0% - 8px);}
.extent .circle.posi_10 {left: calc(10% - 8px);}
.extent .circle.posi_20 {left: calc(20% - 8px);}
.extent .circle.posi_30 {left: calc(30% - 8px);}
.extent .circle.posi_40 {left: calc(40% - 8px);}
.extent .circle.posi_50 {left: calc(50% - 8px);}
.extent .circle.posi_60 {left: calc(60% - 8px);}
.extent .circle.posi_70 {left: calc(70% - 8px);}
.extent .circle.posi_80 {left: calc(80% - 8px);}
.extent .circle.posi_90 {left: calc(90% - 8px);}
.extent .circle.posi_100 {left: calc(100% - 8px);}



.itemList > li > .fbox01 .wineInfo .wInfo04 {
	margin-top: 25px;
}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul {}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul > li {}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul > li:not(:last-child) {margin-bottom: 14px;}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul > li > dl {}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul > li > dl > dt {
	font-weight: 600;
	margin-bottom: 5px;
}
.itemList > li > .fbox01 .wineInfo .wInfo04 > ul > li > dl > dd {
	line-height: 1.4;
}



@media screen and (max-width: 1280px){
	.itemList > li {width: calc(50% - 15px);}
	.itemList > li > .fbox01 .wineImg {width: 230px;}
	.itemList > li > .fbox01 .wineInfo {width: calc(100% - 230px); padding-left: 10px;}
}
@media screen and (max-width: 1000px){
	.itemList > li > .fbox01 .wineImg {width: 150px;}
	.itemList > li > .fbox01 .wineInfo {width: calc(100% - 150px);}
}
@media screen and (max-width: 860px){
	.itemList {
		display: block;
		max-width: 500px;
		margin: auto;
	}
	.itemList > li {width: 100%;}
	.itemList > li:first-child {margin-bottom: 30px;}
}
@media screen and (max-width: 420px){
	.itemList > li > .fbox01 {display: block;}
	.itemList > li > .fbox01 .wineImg {width: 100px; margin: auto; text-align: center;}
	.itemList > li > .fbox01 .wineInfo {width: calc(100% - 0px); padding: 0 20px 20px;}
}





#aut_wine {
	background: #e5eee2;
}
#aut_wine .container {padding: 40px 0;}
#aut_wine .fbox01 {}
#aut_wine .fbox01 .tArea {width: calc(100% - 620px);  padding: 120px 0;}
#aut_wine .fbox01 .tArea h3 {text-align: left; }
#aut_wine .fbox01 .tArea .more {margin-top: 25px;}

#aut_wine .fbox01 .tArea .more a {
	background: #69965c;
	box-sizing: border-box;
	padding: 3px 30px;
	display: inline-block;
	color: #fff;
	font-weight: 600;
	border-radius: 20px;
}

#aut_wine .fbox01 .tArea .more a:hover {opacity: 0.5;}
#aut_wine .fbox01 .tArea .more a span::after {
	background: url("../images/arrow04_w.svg") no-repeat center center / contain;
}


#aut_slider {height: 100%;}
#aut_wine .fbox01 .swArea {position: relative; width: 560px}
#aut_wine .fbox01 .swArea .swiper {
	position: absolute;
	top: 0;
	right: 0;
	width: 180%;
	max-width: 1000px;
	height: 100%;
}
.swArea .swiper-slide {}
.swArea .swiper-slide .box {width: 100%; height: 100%;}
.swArea .swiper-slide .box .imgArea {width: 100%; height: 100%; position: relative;}
.swArea .swiper-slide .box .imgArea img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

@media screen and (max-width: 1200px){
	#aut_wine .fbox01 {display: block;}
	#aut_wine .fbox01 .tArea {width: calc(100%);  padding: 30px 0;}
	#aut_wine .fbox01 .swArea {width: 100%; /*height: 500px;*/}
	#aut_wine .fbox01 .swArea .swiper {max-width: none; width: 100%; position: static;}
	.swArea .swiper-slide .box .imgArea img {position: static; transform: translateY(0%);}
}




/*** ワイナリーの紹介 ***/
#productors {
	/*background: #f4eee2;*/
}








#sContents {
	/*background: #8b0000;*/
	/*background: #f6f4f0;*/
	background: #f7f5ea;
}


.sCList {}
.sCList > ul {
	display: flex;
	/*justify-content:space-between;*/
	justify-content:flex-start;
	flex-wrap: wrap;
}
.sCList > ul > li {
	box-sizing: border-box;
	padding-bottom: 70px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	position: relative;
	overflow: hidden;
	width: calc(33.3333% - 30px);
	margin: 0 15px 30px;

}

/*
.sCList > ul > li .prof {
	display: flex;
	align-items: center;
	background: #333;
	margin-bottom: 10px;
}
.sCList > ul > li .prof .imgArea {
	width: 200px;
	height: 200px;
	background: #ccc;
}
.sCList > ul > li .prof .imgArea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sCList > ul > li .prof .tArea { padding-left: 15px; color: #fff;}
.sCList > ul > li .prof .tArea span {display: block; text-align: left;}
.sCList > ul > li .prof .tArea span:not(.name) {font-size: 12px;}
.sCList > ul > li .cnt {
	box-sizing: border-box;
	padding: 0 30px;
}
*/

.sCList > ul > li .imgArea {
	width: 100%;
	height: 200px;
	margin-bottom: 10px;
	overflow: hidden;
}
.sCList > ul > li .imgArea img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.sCList > ul > li .cnt {
	/*width: calc(100% - 260px);*/
	box-sizing: border-box;
	padding: 0 30px;
}

.sCList > ul > li .cnt h4 {font-size: 1.2em; font-weight: 600; margin-bottom: 10px; line-height: 1.4;}
.sCList > ul > li .cnt .date {font-size: 0.8em; margin-bottom: 10px; border-bottom: 1px solid #333;}
.sCList > ul > li .cnt .more {
	margin-top: 20px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
}
.sCList > ul > li .cnt .more a {
	width: 100%;
	text-align: center;
	display: block;
	background: #69965c;
	color: #fff;
	box-sizing: border-box;
	padding: 5px;
	border-radius: 6px;
}

.sCList > ul > li .cnt .more a:hover {
	opacity: 0.5;
}


@media screen and (max-width: 1200px){
	.sCList > ul > li {width: calc(50% - 30px);}
}
@media screen and (max-width: 860px){
	.sCList > ul > li .prof .imgArea {width: 170px;}
}
@media screen and (max-width: 748px){
	.sCList > ul {max-width: 480px; margin: auto;}
	.sCList > ul > li {width: 100%;}
}
@media screen and (max-width: 370px){
	.sCList > ul > li .prof .imgArea {width: 120px; height: 150px;}
}
/*
.topBtn .btnContainer::before {
	background: url("../images/btnBg01.jpg") no-repeat center center;
}
@media screen and (max-width: 520px) {}
*/




/*** 251210 ***/

#recommend .rArea01 .container {
	max-width: 1160px;
	padding-bottom: 100px;
}


.itemList01 {display: flex; justify-content: space-between; margin-top: 60px; flex-wrap: wrap;}
.itemList01 > li {
	width: calc(50% - 15px);
	box-sizing: border-box;
	/*
	padding: 30px;
	*/
	/*height: 100%;*/
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

/*
.itemList01 > li > .fbox01 {
	background: #fff;
}*/


.itemList01 .rTopArea {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.itemList01 .rTopArea .wineName {
	/*width: calc(100% - 280px);*/
	width: 50%;
	box-sizing: border-box;
	padding: 0 20px; 
}

.itemList01 .wineImg {
	max-width: 280px;
	width: 50%;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 20px;
	padding-right: 0;

	/*background: #333;*/
}
.itemList01  .wineImg img {width: 180px;}


.itemList01  .wineInfo {
	width: calc(100% - 0px);
	font-size: 0.9em;
	box-sizing: border-box;
	padding: 30px;
}


.itemList01 h4 {
	letter-spacing: -0.1em;
	/*
	position: absolute;
	left: 0;
	bottom: calc(100%);
	*/
	color: #547e36;
	font-size: 1.1em;
	font-weight: 700;
	box-sizing: border-box;
	/*background: rgba(255,255,255,0.2);*/
	padding: 20px;
	width: 100%;
	text-align: left;
	line-height: 1.3;
}

.itemList01 .wineInfo .wInfo01 {}
.itemList01 .wineInfo .wInfo01 {}
.itemList01 .wineInfo .wInfo01 > li {display: flex; justify-content: space-between; line-height: 1.3;}
.itemList01 .wineInfo .wInfo01 > li:not(:last-child) {margin-bottom: 12px;}

.itemList01 .wineInfo .wInfo01 > li > span:nth-child(1) {width: 70px; text-align-last: justify; letter-spacing: -0.2em; position: relative;}
.itemList01 .wineInfo .wInfo01 > li > span:nth-child(1)::after {
	content: '：';
	position: absolute;
	top: 0;
	left: calc(100%);
}
.itemList01 .wineInfo .wInfo01 > li > span:nth-child(2) {width: calc(100% - 90px);}

.itemList01 .wineInfo .wInfo01 > li > span small {font-size: 0.8em;}

.itemList01 .wInfo02 {
	display: flex;
	/*justify-content:center;*/
	font-size: 1.0em;
	margin: 30px 0;
}
.itemList01 .wInfo02 > li {
	margin: 0 10px;
}
.itemList01 .wInfo02 > li > span {
	background: #333;
	color: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-sizing: border-box;
	font-weight: 700;
	opacity: 0.2;
}

.itemList01 .wInfo02 > li.active > span {opacity: 1;}

.itemList01 .wInfo02 > li.w_red > span {background:#8b0000; }
.itemList01 .wInfo02 > li.w_white > span {
	color: #4e8636;
	border: 1px solid #4e8636;
	background: #fff;
}
.itemList01 .wInfo02 > li.w_spark > span {
	color: #0e86a4;
	background: #bce5ef;
	border: 1px solid #0e86a4;
}


.itemList01 .wInfo03 {
	display: flex;
	/*justify-content:center;*/
	font-size: 1.0em;
	font-weight: 500;
	color: #8b0000;
}

.itemList01 .wInfo03 .extent {
	width: 120px;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 12px;
}

.itemList01 .wInfo03 .extent .line {
	width: 100%;
	height: 4px;
	background: #8b0000;
}

.itemList01 .wInfo03 .extent .circle {
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	background: #8b0000;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
}




.itemList01 .wineInfo .wInfo04 {
	margin-top: 25px;
}
.itemList01 .wineInfo .wInfo04 > ul {}
.itemList01 .wineInfo .wInfo04 > ul > li {}
.itemList01 .wineInfo .wInfo04 > ul > li:not(:last-child) {margin-bottom: 14px;}
.itemList01 .wineInfo .wInfo04 > ul > li > dl {}
.itemList01 .wineInfo .wInfo04 > ul > li > dl > dt {
	font-weight: 600;
	margin-bottom: 5px;
}
.itemList01 .wineInfo .wInfo04 > ul > li > dl > dd {
	line-height: 1.4;
}

.itemList01 .wineInfo .wInfo01 > li > span.region {}
.region {letter-spacing: 0!important;}


@media screen and (min-width: 771px) and (max-width: 900px){
	.itemList01 .wInfo02 > li {margin: 0 0.5vw;}
}


@media screen and (max-width: 770px){
	.itemList01 > li {width: 100%;}
	.itemList01 > li:first-child {margin-bottom: 40px;}
	.itemList01 .rTopArea {
		max-width: 600px;
		width: 100%;
		margin: auto;
	}
}

@media screen and (max-width: 470px){
	.itemList01 .wineImg {width: 100%; margin: auto; padding: 0; height: auto;}
	.itemList01 .rTopArea .wineName {width: 100%;}
	.itemList01 .wInfo02, .itemList01 .wInfo03 {justify-content: center;}
}

















