@charset "utf-8";

/* reset */
html {
	font-size: 62.5%;
	min-width: 100%;
}
body, header, footer, nav, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, a, section {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
object, embed {
	vertical-align: top;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
img, abbr, acronym, fieldset {
	border: 0;
}
ul, ol {
	list-style-type: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}



/* default */
body {
	color: #000;
	font-size: 14px;
	font-family: Helvetica, "Helvetica Neue", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	line-height: 1.4;
	width: 100%;
}
@media screen and (min-width: 768px) {
	body {
		font-size: 14px;
		min-width: 1024px;
	}
}
body.fixed {
	height: 100%;
	overflow: hidden;
}
#wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover, a:focus {
	color: #000;
	text-decoration: none;
}
a:focus, *:focus {
	outline:none;
}
a img {
	outline:none;
}
@media screen and (min-width: 768px) {
	.noPc {
		display: none;
	}
}

img {
	max-width: 100%;
}

header {
	position: relative;
	margin-bottom: 20px;
}
header .eyeArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	padding-bottom: 60%;
    background-image: url("../assets/img/eye_bg.jpg");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	text-align: center;
	height: 100vh;
}
header .eyeArea img {
	display: block;
}
header .eyeArea img  + img {
	margin: 50px auto 0;
	width: 90%;
}
@media screen and (min-width: 768px) {
	header .eyeArea {
		display: block;
		position: absolute;
	    top: 0;
		left: 0;
		padding: 0;
		width: 55%;
		height: 800px;
		z-index: -1;
	}
	header .eyeArea img {
		margin: 40px auto 60px;
	}
	header .eyeArea img + img {
		width: 500px;
	}
}
header .eyeText {
	padding: 30px 10px;
    background-color: #F0F0E1;
}
header .eyeText h1 {
	font-size: 9.2vw;
}
header .eyeText h1 span {
	display: block;
	font-size: 5vw;
}
header .eyeText p {
	margin: 10px auto 0;
	font-size: 16px;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	header .eyeText {
		display: block;
		position: absolute;
		left: auto;
		right: 0;
		padding: 50px 0;
		width: 45%;
		height: 800px;
		z-index: -1;
	}
	header .eyeText h1 {
		margin: 0 auto;
		width: 400px;
		font-size: 40px;
	}
	header .eyeText h1 span {
		font-size: 20px;
	}
	header .eyeText p {
		margin: 20px auto 0;
		width: 400px;
		line-height: 1.7;
	}
}

header .menuArea {
	padding: 30px 0 20px;
	background: #EEE;
}
header .menuArea ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 10px;
	width: 100%;
}
header .menuArea li {
	margin-bottom: 20px;
	width: 48%;
	background: #FFF;
}
header .menuArea a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	padding: 50px 0 10px;
	width: 100%;
	height: 100px;
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
	font-weight: bold;
}
header .menuArea a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 10px solid transparent;
	border-left: 10px solid transparent;
}
header .menuArea img {
	display: block;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
}
header .menuArea ul li:nth-child(1) a::after {
	border-right: 10px solid #AA559F;
	border-bottom: 10px solid #AA559F;
}
header .menuArea ul li:nth-child(2) a::after {
	border-right: 10px solid #00B285;
	border-bottom: 10px solid #00B285;
}
header .menuArea ul li:nth-child(3) a::after {
	border-right: 10px solid #FFC926;
	border-bottom: 10px solid #FFC926;
}
header .menuArea ul li:nth-child(4) a::after {
	border-right: 10px solid #FF7A4D;
	border-bottom: 10px solid #FF7A4D;
}

@media screen and (min-width: 768px) {
	header .menuArea {
		margin-top: 800px;
	}
	header .menuArea ul {
		padding: 0;
		width: 1000px;
	}
	header .menuArea li {
		margin: 0;
		width: 245px;
	}
	header .menuArea a {
		padding: 60px 0 0;
		width: 245px;
		height: 140px;
		font-size: 18px;
		transition: .2s;
	}
	header .menuArea a::after {
		border-top: 20px solid transparent;
		border-left: 20px solid transparent;
		opacity: 1;
		transition: .4s;
	}
	header .menuArea a:hover::after {
		opacity: 0.5;
	}
	header .menuArea ul li:nth-child(1) a::after {
		border-right: 20px solid #AA559F;
		border-bottom: 20px solid #AA559F;
	}
	header .menuArea ul li:nth-child(1) a:hover {
		color: #AA559F;
	}
	header .menuArea ul li:nth-child(2) a::after {
		border-right: 20px solid #00B285;
		border-bottom: 20px solid #00B285;
	}
	header .menuArea ul li:nth-child(2) a:hover {
		color: #00B285;
	}
	header .menuArea ul li:nth-child(3) a::after {
		border-right: 20px solid #FFC926;
		border-bottom: 20px solid #FFC926;
	}
	header .menuArea ul li:nth-child(3) a:hover {
		color: #FFC926;
	}
	header .menuArea ul li:nth-child(4) a::after {
		border-right: 20px solid #FF7A4D;
		border-bottom: 20px solid #FF7A4D;
	}
	header .menuArea ul li:nth-child(4) a:hover {
		color: #FF7A4D;
	}
	header .menuArea img {
		top: 20px;
	}
}



section {
	width: 100%;
}
.pickupList {
	background: #FFF;
}
.pickupList > ul {
	padding: 40px 10px 10px;
}
.pickupList > ul > li {
	display: block;
	margin-bottom: 20px;
	width: 100%;
	background: #FFF;
}
.pickupList > ul > li:first-child {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	margin-bottom: 40px;
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
}
.pickupList > ul > li:first-child img {
	display: block;
	margin: 0 auto 10px;
	width: 60%;
}
.pickupList > ul > li a {
	position: relative;
	display: block;
	padding: 10px;
	width: 100%;
	background: #F6F1EA;
	font-size: 14px;
}
.pickupList > ul > li img {
	width: 100%;
}
.pickupList > ul > li p {
	padding-top: 10px;
	line-height: 1.6;
}
.pickupList > ul > li dl {
	margin-top: 10px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.pickupList > ul > li dt {
	margin-right: 20px;
	width: 70px;
}
.pickupList > ul > li h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	transition: .2s;
}
.pickupList > ul > li img.face {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 50%;
}


.modal{
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}
.modalBg{
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
}
.modalContent{
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 20px 10px;
	width: calc(100% - 20px);
	height: calc(100vh - 20px);
	background: #FFF;
	overflow-y: scroll;
}
.modalContent h4 {
	padding-bottom: 10px;
	font-size: 30px;
	line-height: 1.1;
}
.modalContent p {
	padding: 0 0 10px;
	font-size: 16px;
	width: 100%;
}
.modalContent .imgArea {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.modalContent .imgArea img {
	display: block;
	width: calc(50% - 5px);
	max-height: 150px;
	object-fit: contain;
}
.modalContent img.mainPhoto {
	margin-bottom: 10px;
	width: 100%;
}
.modalContent dl {
	width: 100%;
}
.modalContent dt {
	margin: 20px 0 5px;
	font-size: 18px;
	font-weight: bold;
}
.modalContent dd {
	padding-bottom: 10px;
	line-height: 1.6;
}
.modalContent .textArea dd.recommend {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 10px 0;
}
.modalContent .textArea dd.recommend img {
	display: block;
	padding: 5px;
	border: 1px solid #CCC;
	width: 150px;
	height: 150px;
	object-fit: contain;
	box-sizing: border-box;
}
.modalContent .textArea dd.recommend p {
	padding: 0;
	width: calc(100% - 160px);
	height: auto;
	font-size: 14px;
	line-height: 1.4;
}
.modalContent ul {
	margin: 10px 0 0;
	width: 100%;
}
.modalContent ul + ul {
	width: 100%;
}
.modalContent li {
	margin-bottom: 5px;
	min-height: 20px;
}
.modalContent .shopInfo li {
	position: relative;
	padding-left: 90px;
}
.modalContent .shopInfo li span {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
}
.modalContent .shopInfo li::before {
	content: "：";
	display: block;
	position: absolute;
	top: 0;
	left: 70px;
}
.modalContent ul + img {
	display: block;
	margin-top: 10px;
	width: 140px;
}
a.modalClose {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	cursor: pointer;
	z-index: 9999;
}
a.modalClose img {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 30px;

}


#winery > ul > li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid transparent;
	border-right: 20px solid #AA559F;
	border-bottom: 20px solid #AA559F;
	opacity: 1;
	transition: .4s;
}
#winery .modalContent::after {
	content: "";
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	border-top: 50px solid transparent;
	border-left: 50px solid transparent;
	border-right: 50px solid #AA559F;
	border-bottom: 50px solid #AA559F;
}
#winery .modalContent dd {
	border-bottom: 2px solid #AA559F;
}


#gourmet > ul > li a {
	padding-bottom: 20px;
}
#gourmet > ul > li a h3 {
	padding-top: 10px;
}
#gourmet > ul > li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 20px solid transparent;
	border-left: 20px solid transparent;
	border-right: 20px solid #00B285;
	border-bottom: 20px solid #00B285;
	opacity: 1;
	transition: .4s;
}
#gourmet .modalContent::after {
	content: "";
	display: block;
	position: fixed;
	bottom: 0;
	right: 0;
	border-top: 50px solid transparent;
	border-left: 50px solid transparent;
	border-right: 50px solid #00B285;
	border-bottom: 50px solid #00B285;
}
#gourmet .modalContent dd {
	border-bottom: 2px solid #00B285;
}


@media screen and (min-width: 768px) {
	.pickupList > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 30px auto 0;
		padding: 0;
		width: 1000px;
	}
	.pickupList > ul > li {
		width: 320px;
	}
	.pickupList > ul > li:first-child {
		margin-bottom: 20px;
	}
	.pickupList > ul > li:first-child img {
		margin: 0 auto 20px;
	}
	.pickupList > ul > li a {
		width: 320px;
		cursor: pointer;
	}
	.pickupList > ul > li dl {
		position: absolute;
		bottom: 10px;
		left: 10px;
		margin: 0;
	}


	.modalContent{
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		padding: 20px 40px;
		width: 900px;
		height: 680px;
		overflow: hidden;
		overflow-y: auto;
		-ms-overflow-style: none;
	}
	.modalContent::-webkit-scrollbar {
		display:none;
	}
	.modalContent h4 {
		padding: 10px 0 0;
		width: 400px;
	}
	.modalContent p {
		padding: 10px 0 0;
		width: 400px;
	}
	.modalContent .imgArea {
		justify-content: flex-start;
		position: absolute;
		top: 160px;
		left: 40px;
	}
	.modalContent .imgArea img {
		margin-right: 20px;
		width: 180px;
		height: 120px;
		background: #EFEFEF;
	}
	.modalContent img.mainPhoto {
		position: absolute;
		top: 20px;
		right: 40px;
		margin: 0;
		width: 400px;
		height: 260px;
		object-fit: contain;
	}
 	.modalContent dl {
		position: absolute;
		top: 300px;
		left: 40px;
		width: 820px;
	}
	.modalContent dt {
		margin: 0 0 5px;
	}
	.modalContent dd {
		padding: 0;
		height: 145px;
	}

	.modalContent .textArea {
		position: relative;
		top: auto;
		left: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 230px;
		padding-bottom: 10px;
		width: 820px;
	}
	.modalContent .textArea dt {
		width: 100%;
	}
	.modalContent .textArea dd {
		width: 500px;
		height: auto;
	}
	.modalContent .textArea dd.recommend {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		padding: 0;
		width: 310px;
	}
	.modalContent .textArea dd.recommend img {
		display: block;
		padding: 5px;
		border: 1px solid #CCC;
		width: 150px;
		height: 150px;
		object-fit: contain;
		box-sizing: border-box;
	}
	.modalContent .textArea dd.recommend p {
		padding: 0;
		width: 150px;
		height: auto;
		font-size: 14px;
		line-height: 1.4;
	}
	.modalContent .textArea dd {
		border-bottom: none!important;
	}

	#gourmet .modalContent .textArea {
		border-bottom: 2px solid #00B285;
	}

	.modalContent ul {
		position: absolute;
		top: 500px;
		left: 40px;
		margin: 0;
		width: calc(50% - 50px);
	}
	.modalContent ul + ul {
		position: absolute;
		top: 500px;
		left: 50%;
		width: calc(50% - 50px);
		line-height: 1.6;
	}



	.modalContent .shopInfo li span {
		left: 10px;
	}
	.modalContent ul + img {
		position: absolute;
		bottom: 10px;
		right: 100px;
		margin: 0;
		width: 140px;
	}
	a.modalClose {
		position: fixed;
		bottom: calc(calc(100vh - 680px) / 2);
		right: calc(calc(100vw - 900px) / 2);
	}
	a.modalClose img {
		position: absolute;
		bottom: 15px;
		right: 15px;
		width: 30px;
	}
	.modalContent::after {
		bottom: calc(calc(100% - 680px) / 2)!important;
		right: calc(calc(100% - 900px) / 2)!important;
	}



	#winery > ul > li {
		height: 370px;
	}
	#winery > ul > li a {
		height: 370px;
	}
	#winery > ul > li a:hover h3 {
		color: #AA559F;
	}
	#winery > ul > li a:hover::after {
		opacity: 0.5;
	}


	#gourmet > ul > li {
		height: 310px;
	}
	#gourmet > ul > li a {
		height: 310px;
		padding: 10px;
	}
	#gourmet > ul > li a h3 {
		padding-top: 0;
	}

	#gourmet > ul > li a:hover h3 {
		color: #00B285;
	}
	#gourmet > ul > li a:hover::after {
		opacity: 0.5;
	}
	#gourmet h3 {
		position: absolute;
		bottom: 20px;
		left: 10px;
	}
}


.shopList {
	margin: 10px 0 0;
	padding: 30px 0 0;
	background: #EEE;
	text-align: center;
}
.shopList > img {
	display: block;
	margin: 10px auto;
	height: 46px;
}
.shopList h2 {
	margin: 0 auto;
	border: 1px solid #000;
	width: 90%;
	height: 50px;
	background-position: center center;
	background-size: contain;
	background-color: #FFF;
	background-repeat: no-repeat;
	font-size: 16px;
	font-weight: bold;
	line-height: 50px;
}
.shopList .map {
	position: relative;
	margin: 20px auto;
	padding-top: 75%;
	width: 100%;
}
.shopList #map_winery {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.shopList #map_yamanashi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.shopList #map_tokyo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* .shopList iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
} */
.shopList ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 10px;
	width: 100%;
}
.shopList ul li {
	margin-bottom: 20px;
	width: calc(50% - 5px);
	background: #FFF;
}
.shopList #winery_lists{
    position: relative;
    list-style: none;
    height: 155px;
    overflow-x: hidden;
    overflow-y: scroll;
}
.shopList #yamanashi_stores{
    position: relative;
    list-style: none;
    height: 155px;
    overflow-x: hidden;
    overflow-y: scroll;
}
.shopList #tokyo_stores{
    position: relative;
    list-style: none;
    height: 155px;
    overflow-x: hidden;
    overflow-y: scroll;
}
.shopList ul li a {
	position: relative;
	display: block;
	padding: 10px;
	width: 100%;
	height: 100%;
	text-align: left;
}
.shopList li .area {
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 0 8px;
	background: url("../assets/img/shop_bg.jpg") center bottom no-repeat;
	background-size: 50px;
}
.shopList li img {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 40px;
}
.shopList li h3 {
	padding-bottom: 10px;
	font-size: 16px;
	line-height: 1.2;
	transition: .2s;
}
.shopList li .add {
	padding: 10px 0 0;
	font-size: 13px;
}

#wineries h2 {
	background-image: url("../assets/img/yamanashi_bg.jpg");
}
#wineries ul li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 15px solid transparent;
	border-left: 15px solid transparent;
	border-right: 15px solid #FFC926;
	border-bottom: 15px solid #FFC926;
	opacity: 1;
	transition: .4s;
}
#wineries li .add {
	border-top: 2px solid #FFC926;
}

#yamanashi {
	margin: 0;
}
#yamanashi > img {
	margin: 0 auto 10px;
}
#yamanashi h2 {
	background-image: url("../assets/img/yamanashi_bg.jpg");
}
#yamanashi ul li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 15px solid transparent;
	border-left: 15px solid transparent;
	border-right: 15px solid #FFC926;
	border-bottom: 15px solid #FFC926;
	opacity: 1;
	transition: .4s;
}
#yamanashi li .add {
	border-top: 2px solid #FFC926;
}

.yamanashishine a h3 {
	color: #FFC926;
	}

#tokyo {
	margin: 0;
}
#tokyo > img {
	margin: 0 auto 10px;
}
#tokyo h2 {
	background-image: url("../assets/img/tokyo_bg.jpg");
}
#tokyo ul li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 15px solid transparent;
	border-left: 15px solid transparent;
	border-right: 15px solid #FF7A4D;
	border-bottom: 15px solid #FF7A4D;
	opacity: 1;
	transition: .4s;
}
#tokyo li .add {
	border-top: 2px solid #FF7A4D;
}

.tokyoshine a h3 {
	color: #FF7A4D;
	}


@media screen and (min-width: 768px) {
	.shopList {
		margin: 50px 0 0;
		padding: 40px 0 0;
	}
	.shopList h2 {
		width: 600px;
		height: 70px;
		font-size: 26px;
		line-height: 70px;
	}
	.shopList .map {
		margin: 30px auto;
		padding: 0;
		width: 1000px;
		height: 600px;
    }
    .shopList #map_winery {
		width: 1000px;
		height: 600px;
	}
	.shopList #map_yamanashi {
		width: 1000px;
		height: 600px;
    }
    .shopList #map_tokyo {
		width: 1000px;
		height: 600px;
	}
	/* .shopList iframe {
		width: 1000px;
		height: 600px;
	} */
	.shopList ul {
		padding: 0;
		width: 1000px;
	}
	.shopList ul li {
		width: 240px;
    }
    .shopList #winery_lists{
        position: relative;
        list-style: none;
        height: 280px;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .shopList #yamanashi_stores{
        position: relative;
        list-style: none;
        height: 280px;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .shopList #tokyo_stores{
        position: relative;
        list-style: none;
        height: 280px;
        overflow-x: hidden;
        overflow-y: scroll;
    }
	.shopList ul li a {
		padding: 10px 10px 50px;
		width: 100%;
		height: 100%;
	}
	.shopList li img {
		width: 70px;
	}
	.shopList li .add {
		position: absolute;
		bottom: 0;
		left: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		margin: 0 10px;
		padding: 0;
		width: calc(100% - 20px);
		height: 50px;
	}

    #wineries ul li a:hover h3 {
		color: #FFC926;
	}
	#wineries ul li a:hover::after {
		opacity: 0.5;
	}

	#yamanashi ul li a:hover h3 {
		color: #FFC926;
	}
	#yamanashi ul li a:hover::after {
		opacity: 0.5;
	}


	#tokyo ul li a:hover h3 {
		color: #FF7A4D;
	}
	#tokyo ul li a:hover::after {
		opacity: 0.5;
	}
}

.banner {
	background: #EEE;
	padding: 30px 0 80px;
}
.banner a {
	position: relative;
	display: block;
	margin: 0 auto;
	width: calc(100% - 20px);
}
.banner img {
	position: relative;
	display: block;
	opacity: 1;
	transition: .4s;
	width: 100%;
}
.banner a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	border-top: 10px solid transparent;
	border-left: 10px solid transparent;
	border-right: 10px solid #AA559F;
	border-bottom: 10px solid #AA559F;
}

@media screen and (min-width: 768px) {
	.banner {
		padding: 50px 0 80px;
	}
	.banner a {
		width: 900px;
	}
	.banner a::after {
		border-top: 30px solid transparent;
		border-left: 30px solid transparent;
		border-right: 30px solid #AA559F;
		border-bottom: 30px solid #AA559F;
		opacity: 1;
		transition: .4s;
	}
	.banner a:hover img {
		opacity: 0.8;
	}
	.banner a:hover::after {
		opacity: 0.5;
	}
}



footer .pageTop {
	position: fixed;
	right: 10px;
	width: 50px;
	height: 50px;
	z-index: 99;
	opacity: 0.8;
	cursor: pointer;
}
footer .pageTop img {
    display: block;
    width: 100%;
}



.shopData {
	background: #EEE;
}
.shopData .header a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	height: 100px;
	background: #F0F0E1;
}
.shopData .header a img {
	display: block;
	width: 80px;
}
.shopData .header h1 {
	margin: 10px 0 0 10px;
    font-size: 6.5vw;
}
.shopData .header h1 span {
	display: block;
	font-size: 3.5vw;
}
.shopData .header a:hover {
	color: #AA559F;
}

.shopData .header > img {
    display: block;
    margin: 30px auto 10px;
    height: 46px;
}

.shopData .header h2 {
    margin: 0 auto;
    border: 1px solid #000;
    width: 90%;
    height: 50px;
    background-position: center center;
    background-size: contain;
    background-color: #FFF;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
	text-align: center;
}

#wineries h2 {
    background-image: url("../assets/img/yamanashi_bg.jpg");
}
#yamanashi h2 {
    background-image: url("../assets/img/yamanashi_bg.jpg");
}
#tokyo h2 {
    background-image: url("../assets/img/tokyo_bg.jpg");
}


.shopData section {
	position: relative;
	margin: 20px auto 90px;
	padding: 10px;
	width: calc(100% - 20px);
	background: #FFF;
}
.shopData section .area {
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 0 20px;
    background: url("../assets/img/shop_bg2.jpg") center bottom no-repeat;
    background-size: 100px;
	min-width: 100px;
	font-size: 16px;
	text-align: center;
}
.shopData section .area::before {
	content: "エリア";
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
}
.shopData section .area + img {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
	width: 100px;
}
.shopData section h3 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 24px;
	line-height: 1.2;
}
.shopData section img {
	display: block;
	margin: 0 auto 20px;
	width: 100%;
}
.shopData section dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 10px;
	border-bottom: 1px solid #CCC;
}
.shopData section dt {
	display: flex;
	align-items: center;
	padding: 0 0 0 10px;
	width: 110px;
	min-height: 40px;
	border-top: 1px solid #CCC;
	font-size: 12px;
}
.shopData section dd {
	display: flex;
	align-items: center;
	padding: 10px 0;
	width: calc(100% - 120px);
	min-height: 40px;
	border-top: 1px solid #CCC;
	font-size: 14px;
}
.shopData section dd a {
	width: 100%;
	word-wrap: break-word;
	color: #002DB2;
}
.shopData section dd a:hover {
	text-decoration: underline;
}

#wineries section .area::before {
	color: #FFC926;
}
#wineries section h3 {
	border-bottom: 10px solid #FFC926;
}

#yamanashi section .area::before {
	color: #FFC926;
}
/* キャッチコピー追加のため、既存のh3をコメントアウトしました */
/* #yamanashi section h3 {
	border-bottom: 10px solid #FFC926;
} */
#yamanashi section .yes_catch_copy{
	margin-bottom: 0px;
}
#yamanashi section .no_catch_copy{
	border-bottom: 10px solid #FFC926;
}

/* キャッチコピーを追加のため(h4) */
#yamanashi section h4 {
    border-bottom: 10px solid #FFC926;
}
.shopData section h4 {
    width: 100%;
}
.shopData section h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
}


#tokyo section .area::before {
	color: #FF7A4D;
}
/* キャッチコピー追加のため、既存のh3をコメントアウトしました */
/*
#tokyo section h3 {
	border-bottom: 10px solid #FF7A4D;
}
*/
#tokyo section .yes_catch_copy{
	margin-bottom: 0px;
}
#tokyo section .no_catch_copy{
	border-bottom: 10px solid #FF7A4D;
}

/* キャッチコピーを追加のため(h4) */
#tokyo section h4 {
    border-bottom: 10px solid #FF7A4D;
}


@media screen and (min-width: 768px) {
	.shopData .header a {
		height: 120px;
		transition: .4s;
	}
	.shopData .header a img {
		width: 100px;
	}
	.shopData .header h1 {
		font-size: 30px;
	}
	.shopData .header h1 span {
		font-size: 18px;
	}
	.shopData .header a:hover {
		color: #AA559F;
	}
	.shopData .header h2 {
		width: 600px;
		height: 70px;
		font-size: 25px;
		line-height: 70px;
	}

	.shopData section {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		padding: 20px;
		width: 1000px;
	}
	.shopData section .area + img {
		top: 20px;
		right: 20px;
		width: 150px;
	}
	.shopData section h3 {
		width: 100%;
	}
	.shopData section h3 + img {
		margin: 0;
		width: 400px;
		height: 300px;
		object-fit: contain;
		object-position: top;
	}
	/* キャッチコピー追加のため */
	.shopData section h4 + img {
		margin: 0;
		width: 400px;
		height: 300px;
		object-fit: contain;
		object-position: top;
	}

	.shopData section dl {
		width: calc(100% - 420px);
	}
	.shopData section dt {
		width: 130px;
		min-height: 45px;
		font-size: 14px;
	}
	.shopData section dd {
		padding-right: 10px;
		width: calc(100% - 140px);
		min-height: 45px;
		font-size: 16px;
	}
}






