﻿@charset "UTF-8";

/***** デフォルトはスマートフォン *****/
/* --------------- 各ページ共通 ----------------*/
:root {
	--white-wine: #f4fff9;
	--red-wine: #841a75;
	--roze-wine: rgb(253, 160, 225);
}

.pending {
	display: inline-block;
	color: red;
	padding: 2rem 4rem;
	border: 3px dashed red;
	margin: 1rem;
	font-size: 1.5rem;
}

section {
	padding: 1.5rem 0 3rem 0;
}

.sec_inner {
	width: 98%;
	margin: 0 auto;
}

.top_img_outer {
	width: 98%;
	margin: 0 auto;
}

/* --------------- 全ページ共通　com_-----------*/
.com_h1 {
	font-size: 1.8rem;
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-align: center;
	margin: 1rem 0;
}

.com_h2 {
	font-size: 1.5rem;
	margin: 2rem 0 0 0;
}

.com_h3 {
	font-size: 1.2rem;
}

.com_text {
	padding: 0.4rem 0.5rem 1rem 0.5rem;
}

.com_space {
	height: 15px;
}

/* --------------- HEADER ----------------------*/
header {
	text-align: left;
	padding: 30px 0;
}

.head_logo {
	display: inline-block;
	padding-left: 1rem;
}

.head_logo a {
	text-decoration: none;
	color: black;
}

.head_logo a:hover {
	color: black;
	font-weight: bold;
}

.head_logo_small {
	font-size: 17px;
	letter-spacing: 5px;
}

.head_logo_big {
	font-size: 2rem;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
}

/*--------------------       -----------------*/
.logo_relative {
	position: relative;
	margin: 1rem 0 5rem 0;
}

.horizontal {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100vw;
	/* 100vwにすると少しはみ出す */
	width: 100%;
	height: 13px;
	height: 0.8rem;
	background-color: rgba(0, 176, 252, 1);
}

.vertical {
	position: absolute;
	top: 18px;
	right: 30px;
	width: 0.95rem;
	height: 70px;
	background-color: rgba(252, 163, 0, 1);
}

.menu-conts a {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.main_img_vertical {
	z-index: 10;
	position: absolute;
	color: white;
	top: 50px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	text-align: center;
	height: auto;
}

/* --------------- footer ----------------------*/
footer {
	/*
	background-color: #c8fae9;
	border-top: 1px solid #91b4f5;
	border-bottom: 1px solid #91b4f5;
	*/
	padding: 2rem 0;
}

.foot_flex {
	display: flex;
	justify-content: space-between;
}

.foot_logo {
	display: inline-block;
	padding-left: 1rem;
	text-align: left;
	padding-top: 1rem;
}

.foot_logo a {
	text-decoration: none;
	color: black;
}

.foot_logo a:hover {
	color: black;
	font-weight: bold;
}

.foot_logo_small {
	font-size: 17px;
	letter-spacing: 5px;
}

.foot_logo_big {
	font-size: 1.7rem;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
}

.foot_menu {}

.foot_menu li a {
	margin-bottom: 5px;
	font-size: 15px;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.foot_menu a {
	display: inline-block;
	color: black;
}

.foot_foot {
	margin-top: 3rem;
	text-align: center;
	font-size: 16px;
}

.foot_copy {
	margin-top: 1rem;
	font-size: 13px;
	font-family: "Montserrat", sans-serif;
}

/* --------------- HOME   ----------------------*/
.main_imgBox {
	height: 90vh;
	overflow: hidden;
	position: relative;
}

.main_imgM {
	opacity: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 48s 0s infinite;
	animation: anime 48s 0s infinite;
}

.main_imgM:nth-of-type(2) {
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}

.main_imgM:nth-of-type(3) {
	-webkit-animation-delay: 18s;
	animation-delay: 18s;
}

.main_imgM:nth-of-type(4) {
	-webkit-animation-delay: 24s;
	animation-delay: 24s;
}

.main_imgM:nth-of-type(5) {
	-webkit-animation-delay: 32s;
	animation-delay: 32s;
}

.main_imgM:nth-of-type(6) {
	-webkit-animation-delay: 40s;
	animation-delay: 40s;
}

@keyframes anime {
	0% {
		opacity: 0;
	}

	8% {
		opacity: 1;
	}

	17% {
		opacity: 1;
	}

	33% {
		opacity: 0;
		transform: scale(1.2);
		z-index: 9;
	}

	100% {
		opacity: 0
	}
}

@-webkit-keyframes anime {
	0% {
		opacity: 0;
	}

	8% {
		opacity: 1;
	}

	17% {
		opacity: 1;
	}

	25% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		z-index: 9;
	}

	100% {
		opacity: 0
	}
}

.top_img_vertical {
	z-index: 10;
	position: absolute;
	top: 2%;
	left: 50%;
	transform: translate(-50%);
	color: white;
	font-size: 25px;
	writing-mode: vertical-rl;
	letter-spacing: 5px;
	text-shadow:
		1px 1px 1px #000,
		-1px 1px 1px #000,
		-1px -1px 1px #000,
		1px -1px 1px #000;
}

.top_logo_2::before {
	content: '　';
}

.top_logo_3::before {
	content: '　　';
}

.top_img_horizontal {
	z-index: 10;
	position: absolute;
	bottom: 0.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	white-space: nowrap;
	color: white;
	font-size: 24px;
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-shadow:
		1px 1px 1px #000,
		-1px 1px 1px #000,
		-1px -1px 1px #000,
		1px -1px 1px #000;
}

.top_sec_title {
	text-align: center;
	margin: 2rem 0;
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.top_img_outer {
	margin-top: 2rem;
	position: relative;
}

.top_img_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	white-space: nowrap;
	color: white;
	font-size: 1.6rem;
	text-shadow:
		1px 1px 1px #000,
		-1px 1px 1px #000,
		-1px -1px 1px #000,
		1px -1px 1px #000;

}

.notice_board {
	width: 100%;
	height: 100%;
}

.top_news_outer {
	border: 1px solid black;
	height: 20rem;
	overflow-y: scroll;
}

.top_news_inner {
	padding: 10px;
}

.top_h2 {
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.top_news_h2 {
	font-size: 1rem;
	text-align: center;
	color: white;
	background-color: black;
	padding: 5px 0;
	border: 1px solid black;
}

.top_news_date {
	text-align: right;
	padding-right: 2rem;
}

.top_news_date::before {
	content: "公開日：";
}

.top_news_inner_h3 {
	color: darkblue;
	padding-top: 1.5rem;
}

.top_news_text {
	padding: 10px;
	border-bottom: 1px dashed darkblue;
}

.top_link_outer {
	margin: 4rem auto;
	text-align: center;
}

.top_wine_flex {
	display: flex;
	justify-content: space-around;
	margin: 2rem 0;
}

.top_wine_flex_item {
	width: 33%;
}

.top_link {
	display: inline-block;
	color: white;
	background-color: black;
	padding: 15px 25px;
	text-decoration: none;
}

.top_text_c {
	text-align: center;
}

/* --------------- ABOUT US ------------*/
.about_h2 {
	font-size: 1.5rem;
}

.about_h3 {
	margin-top: 1.5rem;
}

.about_table {
	border-collapse: collapse;
	font-size: 15px;
	margin-top: 1rem;
}

.about_flex_img {
	width: 90%;
	margin: 0 auto;

}

.about_last {
	margin: 4rem 0 1rem 0;
}

.about_last_flex {
	display: flex;
	justify-content: space-between;
}

.about_last_flex_item {
	width: 33%;
}

.about_table th,
.about_table td {
	padding: 8px 12px;
	border: 1px solid black;
}

.about_table th {
	color: black;
	letter-spacing: 3px;
	font-size: 16px;
}

.about_img_flex {
	display: flex;
	justify-content: space-between;
	margin: 2rem auto;
}

.about_img_flex figure {
	width: 49%;
}

/* --------------- STOCKIST　　　　 ------------*/
.sto_top_img {
	position: relative;
	text-align: center;
}

.sto_top_img img {
	display: block;
	margin: 0 auto;
}
/*
.flex_left_img{
	width: 45%;
}
*/
.sto_top_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	color: white;
	font-size: 120%;
	text-shadow: 3px 3px 0 black, -3px -3px 0 black,
		-3px 3px 0 black, 3px -3px 0 black,
		3px 0 0 black, -3px 0 0 black,
		0 3px 0 black, 0 -3px 0 black;
}

.sto_list_outer {

	margin: 15px 0;
	padding: 5px;
}

.sto_h2 {
	font-size: 1.4rem;
	margin: 5px;
	font-weight: bold;
	margin-top: 1.5rem;
}

.sto_h3 {
	font-size: 1.2rem;
	margin: 5px;
	font-weight: bold;
}

.sto_flex {
	display: flex;
	justify-content: space-between;
}

.sto_flex .thumb_ratio {
	width: 45%;
	height: 45%;
}

.sto_flex_text {
	width: 55%;
	padding: 0 10px 0 10px;
	line-height: 30px;
}

.sto_flex_text p {
	font-size: 15px;
}

.sto_flex_text a {
	display: inline-block;
	font-size: 15px;
	margin-top: 3px;
}
.sto_otoiawase{
	width: 6rem;
	background-color: #000000 !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 20px !important;
	font-size: 16px !important;
	cursor: pointer !important;
}

/* --------------- wine　　　　　  ------------*/
.wine_top {
	font-size: 1.2rem;
	margin: 1rem 0 3rem 0;
}
.wine_flex{
	display:flex;
	justify-content: space-between;
}
.wine_flex_item{
	width: 49.5%;
}
.wine_flex img{
	width: 100%;
}
.wine_h3 {
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.wine_list_outer {
	/*	border: 1px solid gray; */
	margin-top: 1rem
}

.wine_list_h3 {
	padding-left: 1.2rem;
	font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.wine_list_head {
	padding: 15px 0 15px 20px;
	display: flex;
	align-items: center;
}

.wine_type {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid gray;
	border-radius: 50%;
}

.wine_list_flex {
	display: flex;
	justify-content: space-between;
}

.wine_list_flex_left {
	width: 30%;
	padding-left: 5px;
}

.wine_list_flex_right {
	width: 70%;
	padding: 0 10px 5px 10px;
}

.wine_limited {
	font-size: 18px;
	font-weight: bold;
}

.wine_limited::before {
	content: '生産本数';
}

.wine_limited::after {
	content: '本';
}

.wine_list_border {
	width: 95%;
	border: 1px dashed darkblue;
	margin: 10px auto;
}

.wine_list_foot {
	padding: 1rem 0.8rem;
	font-size: 15px;
}

.wine_list_foot_flex {
	display: flex;
	align-items: center;
}

.wine_list_stok {
	font-size: 20px;
	font-weight: bold;
	font-size: 1.7rem;
	padding-left: 1.5rem;
}

.wine_list_stok::before {
	content: '＜';
}

.wine_list_stok::after {
	content: '＞';
}

.wine_list_detail {
	display: inline-block;
	margin-left: 3rem;
	font-size: 1rem;
	padding: 8px 20px;
	background-color: darkblue;
	color: white;
	border: 1px dashed black;
	border-radius: 20px;
}

.wine_list_link {
	margin-left: 6rem;
}

.wine_list_table {
	font-size: 15px;
}

.wine_list_table th,
.wine_list_table td {
	padding: 2px 10px;
}

.wine_list_table th {
	text-align: left;
}

/* --------------- CONTACT　　　　 ------------*/
.con_inner {
	width: 98%;
	margin: 2rem auto 3rem auto;
}

.con_top {
	margin: 2rem auto;
	font-size: 1.2rem;
}

.com_table {
	border-collapse: collapse;
	margin: auto;

}

.com_table td {
	display: block;

}

.con_flex {
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

.con_label,
.con_input {
	/* width: 80%; */
	border: 1px solid black;
	padding: 10px 15px;
	margin-left: -1px;
	margin-top: -1px;
}

.con_label span {
	color: white;
	background-color: red;
	border-radius: 5px;
	padding: 2px 5px;
	margin-left: 1.5rem;
	font-size: 14px;
}

.con_label {
	text-align: center;
	background-color: #efefef;
}

.con_height {
	height: 10rem;
}

.wpcf7-spinner {
	display: none !important;
}

.wpcf7-text {
	width: 99%;
	padding: 10px;
	border: none;
}

.wpcf7-textarea {
	width: 100%;
	border: none;
}

.wpcf7-submit {
	background-color: #000000 !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 20px !important;
	font-size: 16px !important;
	cursor: pointer !important;
}

/* --------------- GALLARY ---------------*/
.gal_flex {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 2px 2px;
}

.gal_flex_item {
	width: 49%
}

.gal_flex_item img:hover {
	filter: blur(2px);
	transition: 0.5s;
}

.thumb_ratio img {
	width: 100%;
	height: 100%;

}

/*---------------- single page ----------------*/
.single_thumb_img {
	width: 98%;
	margin: auto;
}

/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px) {
	.sec_inner {
		width: 80%;
	}

	/* --------------- HEADER ----------------------*/
	header {
		text-align: center;
	}

	.head_logo_small {
		font-size: 20px;
		letter-spacing: 0.3rem;
	}

	.head_logo_big {
		font-size: 40px;
	}

	.vertical {
		left: 75vw;
	}

	/* --------------- HOME ------------*/
	.top_img_vertical {
		font-size: 1.5rem;
	}

	.top_img_horizontal {
		font-size: 1.7rem;
	}

	/* --------------- ABOUT US ------------*/
	.about_flex {
		display: flex;
		justify-content: space-between;
	}

	.about_flex_text,
	.about_flex_img {
		width: 49%;
	}

	.about_flex_text {
		padding-top: 1rem;
	}

	/* --------------- STOCKIST　　　　 ------------*/
	.sto_top_text {
		font-size: 150%;
	}

	.sto_flex_text p {
		font-size: 1rem;
	}

	.sto_flex_text a {
		font-size: 1rem;
	}

	/* --------------- CONTACT　　　　 ------------*/
	.con_inner {
		width: 70%;
	}

	.con_flex {
		flex-direction: row;
	}

	.con_label {
		text-align: left;
	}

	/* --------------- GALLARY ---------------*/
	.gal_flex_item {
		width: 32%
	}

	/*---------------- single page ----------------*/
	.single_thumb_img {
		width: 80%;
		margin: auto;
	}

	/* --------------- footer ----------------------*/
	.foot_logo_small {
		font-size: 1.1rem;
		letter-spacing: 5px;
	}

	.foot_logo_big {
		font-size: 2.1rem;
	}
}

/**==================================================**/
/**=          画面サイズ960px以上の指定              **/
/**==================================================**/
@media screen and (min-width:960px) {
	.sec_inner {
		width: 960px;
	}

	.con_inner {
		width: 960px;
	}

	/* --------------- GALLARY ---------------*/
	.gal_flex_item {
		width: 24%
	}

	/*----------------- contact --------------*/
	.con_label,
	.con_input {
		width: 40%;
	}

	/*---------------- single page ----------------*/
	.single_thumb_img {
		width: 600px;
		margin: auto;
	}

	.com_table td {
		display: table-cell;
	}
}