@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;700&display=swap");

/*

font-family: "DM Sans", sans-serif;
font-weight: 500;
font-style: normal;

font-family: "Zen Kaku Gothic New", sans-serif;
font-weight: 500;
font-style: normal;

*/
/* カラー設定 */
/*background: rgba(var(--color-primary-rgb), 0.9); // 不透明度90%*/
:root {
	--primary-color: #142a12;
	--primary-color-rgb: 20, 42, 18;
	--secondary-color: #cbedae;
	--secondary-color-rgb: 203, 237, 174;
}

html {
	font-size: 62.5%;
	height: 100%;
	overflow-y: scroll;
}

body {
	position: relative;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.75;
	color: var(--secondary-color);
	width: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background-color: var(--primary-color);
}

a {
	color: var(--secondary-color);
}

img {
	max-width: 100%;
	height: auto;
}

body {
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: clip;
}

body .menu-open {
	overflow: clip;
}

#menu ul {
	list-style: none;
	padding: 0;
}

#menu, gnavi-main a {
	color: var(--secondary-color);
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.2rem;
}

@media (max-width: 959px) {
	#head-logo {
		display: none;
	}

	#menu-button {
		position: fixed;
		top: 16px;
		right: 16px;
		display: grid;
		place-items: center;
		place-content: center;
		width: 50px;
		height: 60px;
		border: none;
		cursor: pointer;
		z-index: 999;
	}

	.bar,
	.bar::before,
	.bar::after {
		width: 36px;
		height: 3px;
		background-color: #fff;
		border-radius: 2px;
		transition: transform 0.5s;
	}

	.bar {
		display: grid;
	}

	.bar::before, .bar::after {
		content: "";
		grid-area: 1/1;
	}

	.bar::before {
		transform: translateY(-12px);
	}

	.bar::after {
		transform: translateY(12px);
	}

	.menu-open .bar {
		background-color: transparent;
	}

	.menu-open .bar::before {
		transform: rotate(45deg);
	}

	.menu-open .bar::after {
		transform: rotate(-45deg);
	}

	.menu-label {
		transform: translateY(16px);
		font-size: 12px;
		color: #fff;
		font-family: "DM Sans", sans-serif;
		font-weight: 500;
		font-style: normal;
	}

	#menu {
		position: fixed;
		width: 100%;
		height: 100%;
		background: rgba(var(--primary-color-rgb), 0.95);
		left: 0;
		top: 0;
		z-index: 998;
		overflow-y: auto;
		transform: translateY(-100%);
		transition: transform 0.5s ease-out;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#menu .gnavi-main {
		margin-top: auto;
		text-align: center;
	}

	#menu .gnavi-main>li {
		padding: 2rem 1rem;
		font-size: 2.2rem;
	}

	#menu .gnavi-main li .gnavi-sub {
		display: flex;
		flex-direction: row;
		justify-content: center;
		margin-top: 2rem;
	}

	#menu .gnavi-main li .gnavi-sub li {
		width: 12.5vw;
		height: 12.5vw;
		margin: 0 1.25rem;
	}

	.instagram-btn {
		width: 52px;
		height: 52px;
		margin: 2rem auto auto;
	}

	.menu-open #menu {
		transform: translateY(0);
	}
}

@media (min-width: 960px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 80px;
		z-index: 990;
	}

	header .header-bg {
		position: absolute;
		width: 100%;
		height: 80px;
		top: 0;
		z-index: 991;
		background: rgba(var(--primary-color-rgb), 0.9);
		mix-blend-mode: multiply;
	}

	#head-logo {
		position: absolute;
		top: 16px;
		left: 32px;
		width: 48px;
		height: 48px;
		z-index: 993;
	}

	#menu-button {
		display: none;
	}

	#menu {
		position: relative;
		padding-left: 112px;
		padding-right: 100px;
		height: 100%;
		width: 100%;
		z-index: 992;
	}

	#menu .gnavi-main {
		display: flex;
		align-items: center;
		height: 100%;
	}

	#menu .gnavi-main li {
		display: flex;
		align-items: center;
	}

	#menu .gnavi-main li:nth-child(1) {
		flex: 4;
	}

	#menu .gnavi-main>li:nth-child(n+2) {
		padding: 0 1em;
	}

	#menu .gnavi-main .gnavi-sub {
		display: flex;
		margin-left: 0.75em;
	}

	#menu .gnavi-main .gnavi-sub li {
		display: inline-block;
		margin: 0 0.75em;
		width: 50px;
		height: 50px;
	}

	#menu a, #menu span {
		font-family: "DM Sans", sans-serif;
		font-weight: 500;
		font-style: normal;
		font-size: 1.7rem;
		opacity: 1;
		transition: opacity 0.25s ease-out;
	}

	#menu a:hover {
		opacity: 0.5;
	}

	.instagram-btn {
		position: absolute;
		top: 22px;
		right: 32px;
		width: 36px;
		height: 36px;
		z-index: 994;
	}
}

.fixed-bg {
	position: relative;
	height: 480px;
}

.fixed-bg.mv {
	height: 100vh;
	min-height: 100lvh;
}

.fixed-bg .fixed-bg-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}

.fixed-bg .bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	min-height: 100lvh;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

@media (max-width: 767px) {
	.fixed-bg .bg01 {
		background-image: url("../images/bg001_3sp.jpg?20240703");
	}

	.fixed-bg .bg02 {
		background-image: url("../images/bg002_3sp.jpg?20240703");
	}

	.fixed-bg .bg03 {
		background-image: url("../images/bg003sp.jpg?20240702");
	}

	.fixed-bg .bg04 {
		background-image: url("../images/bg004_2sp.jpg?20240702");
	}

	.fixed-bg .bg05 {
		background-image: url("../images/bg005_3sp.jpg?20240702");
	}

	.fixed-bg .bg06 {
		background-image: url("../images/bg006_2sp.jpg?20240702");
	}

	.fixed-bg .bg07 {
		background-image: url("../images/bg007_2sp.jpg?20240702");
	}

	.fixed-bg .bg08 {
		background-image: url("../images/bg008_2sp.jpg?20240702");
	}
}

@media (min-width: 768px) {
	.fixed-bg .bg01 {
		background-image: url("../images/bg001_4.jpg?20240702");
	}

	.fixed-bg .bg02 {
		background-image: url("../images/bg002_3.jpg?20240703");
	}

	.fixed-bg .bg03 {
		background-image: url("../images/bg003.jpg?20240702");
	}

	.fixed-bg .bg04 {
		background-image: url("../images/bg004_2.jpg?20240702");
	}

	.fixed-bg .bg05 {
		background-image: url("../images/bg005_3.jpg?20240702");
	}

	.fixed-bg .bg06 {
		background-image: url("../images/bg006_2.jpg?20240702");
	}

	.fixed-bg .bg07 {
		background-image: url("../images/bg007_2.jpg?20240702");
	}

	.fixed-bg .bg08 {
		background-image: url("../images/bg008_2.jpg?20240702");
	}
}

#mv .main-logo {
	position: relative;
	width: 100%;
	height: 100%;
}

#mv .main-logo h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32.5dvw;
	max-width: 140px;
	height: auto;
	max-height: 100%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 2;
}

.tp-contents {
	width: 100%;
	height: auto;
	background-color: var(--primary-color);
	padding: 3.5rem 5rem 7.5rem;
}

.tp-contents .tp-contents-inner {
	margin: 0 auto;
	max-width: 480px;
}

.tp-contents .icon {
	width: 20vw;
	max-width: 100px;
	height: 20vw;
	max-height: 100px;
	margin: 0 auto;
}

.tp-contents.tp-sec01 h1 {
	margin: 1rem auto 2rem;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 3.2rem;
	letter-spacing: 0.2rem;
	text-indent: 0.2rem;
}

.tp-contents.tp-sec01 h2 {
	margin-bottom: 3.5rem;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	text-indent: 0.2rem;
}

.tp-contents.tp-sec01 h2 small {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-size: 0.5em;
	letter-spacing: 0.5rem;
	text-indent: 0.5rem;
}

.tp-contents.tp-sec01 .pc {
	display: none;
}

.tp-contents:not(.tp-sec01) h1 {
	margin: 1rem auto 3.5rem;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2.2rem;
	letter-spacing: 0.2rem;
	text-indent: 0.2rem;
}

.tp-contents p {
	margin: 3.5rem 0;
	font-size: 1.5rem;
	line-height: 2.5;
}

.tp-contents .en {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.tp-contents .btn-flex-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 5rem;
	gap: 2.5rem 0;
}

.tp-contents .btn-flex-area a {
	width: 100%;
	max-width: 360px;
	display: block;
	text-align: center;
	padding: 1.25rem 1.25rem;
	border: 1px solid var(--secondary-color);
	border-radius: 0.5rem;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 1.6rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 1.25;
}

.tp-contents .btn-flex-area a span {
	position: relative;
	display: inline-block;
	margin-left: 1.2em;
	font-size: 1.6rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 1.25;
}

.tp-contents .btn-flex-area a span::before {
	content: "\f1c1";
	color: var(--primary-color);
	text-decoration: none;
	position: absolute;
	left: -1.2em;
	top: 50%;
	font: var(--fa-font-regular);
	transform: translateY(-50%);
	font-size: 1.4em;
}

.tp-contents .badge-flex-area {
	display: flex;
	justify-content: center;
	margin: 3.5rem auto 0;
	gap: 2.5rem;
	max-width: 280px;
}

.tp-contents .wine-list {
	margin-top: 5rem;
}

#tp-sec04 .map-text {
	margin-bottom: 0
}

@media (min-width: 768px) {
	.tp-contents {
		padding: 7.5rem 0;
	}

	.tp-contents.tp-sec01 h1 {
		margin: 0 auto 2rem;
		font-size: 3.4rem;
	}

	.tp-contents.tp-sec01 h2 {
		margin-bottom: 5rem;
		font-size: 2.2rem;
	}

	.tp-contents.tp-sec01 h2 small {
		font-size: 0.5em;
	}

	.tp-contents.tp-sec01 .pc {
		display: block;
	}

	.tp-contents:not(.tp-sec01) h1 {
		margin-bottom: 5rem;
	}

	.tp-contents .btn-flex-area {
		max-width: 760px;
		margin-left: auto;
		margin-right: auto;
		flex-direction: row;
		justify-content: space-between;
		align-items: inherit;
		gap: 0 2rem;
	}

	.tp-contents .btn-flex-area a {
		flex: 1;
		max-width: auto;
	}

	.tp-contents .badge-flex-area {
		gap: 4.5rem;
	}

	.tp-contents .wine-list {
		margin-top: 6rem;
	}
}

@media (min-width: 960px) {
	.tp-contents {
		padding: 12.5rem 0;
	}

	.tp-contents.tp-sec01 h1 {
		margin: 0 auto 2.5rem;
	}

	.tp-contents.tp-sec01 h2 {
		margin-bottom: 7.5rem;
	}

	.tp-contents:not(.tp-sec01) h1 {
		margin-bottom: 7.5rem;
		font-size: 2.4rem;
	}

	.tp-contents .btn-flex-area {
		max-width: 860px;
		gap: 0 2.5rem;
	}

	.tp-contents .badge-flex-area {
		gap: 6rem;
	}

	.tp-contents .wine-list {
		margin-top: 7.5rem;
	}
}

.swiper {
	width: min(90%, 920px);
	margin: 3.5rem 2.5rem 0;
}

.swiper .swiper-slide {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.swiper .swiper-slide .swiper-slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper .swiper-slide .swiper-slide-content .text {
	font-size: 2.2rem !important;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.swiper-pagination-bullet {
	width: 35px !important;
	height: 3px !important;
	border-radius: 0 !important;
	margin: 0 5px 0 5px !important;
	background: var(--secondary-color) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	color: var(--secondary-color);
	font-size: 3rem !important;
	line-height: 1;
}

@media (min-width: 768px) {
	.swiper {
		margin: 5rem 3.5rem 2.5rem;
	}

	.swiper .text {
		font-size: 2.6rem !important;
	}
}

@media (min-width: 960px) {
	.swiper {
		margin: 7.5rem 0 5rem;
	}

	.swiper .text {
		font-size: 2.8rem !important;
	}
}

#access {
	position: relative;
	width: 100%;
}

#access .footer-inner {
	background-color: var(--primary-color);
	padding: 5rem 5rem;
}

#access h1 {
	width: 20vw;
	max-width: 100px;
	height: auto;
	margin: 0 auto 5rem;
}

#access p {
	margin: 3.5rem 0;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.75;
}

#access ul {
	margin: 3.5rem 0;
	text-align: center;
	list-style-type: none;
	font-size: 1.5rem;
	line-height: 1.75;
}

#access .eng {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.map-text {
	margin: 5rem auto;
	text-align: center;
}

.map-text a {
	max-width: 260px;
	margin: 0 auto;
	display: block;
	font-size: 1.6rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 1;
	padding: 1.25rem 0;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	border: 1px solid var(--secondary-color);
	border-radius: 0.5rem;
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

@media (min-width: 768px) {
	#access .footer-inner {
		padding: 7.5rem 5rem;
	}
}

@media (min-width: 960px) {
	#access .footer-inner {
		padding: 12.5rem 5rem;
	}

	#access .copy {
		margin-top: 7.5rem;
	}
}

#contact {
	position: relative;
	width: 100%;
}

#contact form {
	margin-top: 3.5rem;
}

#contact form dl {
	display: flex;
	flex-direction: column;
}

#contact form dl dt {
	font-size: 1.4rem;
	font-weight: normal;
}

#contact form dl .require {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	font-size: 0.75em;
	line-height: 1;
	margin-left: 0.75rem;
	border-radius: 0.25rem;
	padding: 0.5rem 0.75rem;
}

#contact form dl dd {
	margin: 1.25rem 0 2.5rem;
}

#contact form dl dd input[type=text], #contact form dl dd input[type=email], #contact form dl dd textarea {
	position: relative;
	font-size: 1.4rem;
	width: 100%;
	padding: 0.5rem 0.75rem;
	transition: 0.3s;
	color: var(--primary-color);
	border: 1px solid var(--secondary-color);
	border-radius: 0.5rem;
	background-color: #fff;
}

#contact form dl dd input[type=text]:focus, #contact form dl dd input[type=email]:focus, #contact form dl dd textarea:focus {
	border: 1px solid #fff;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.85);
}

#contact form .btn-area {
	margin-top: 1.5rem;
	text-align: center;
}

#contact form .btn-area input[type=submit] {
	background-color: var(--secondary-color);
	width: 100%;
	max-width: 260px;
	color: var(--primary-color);
	font-size: 1.5rem;
	padding: 1rem;
	border-radius: 0.5rem;
}

#event-head {
	position: relative;
	width: 100%;
}

#event-head .event-head-inner {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 960px) {
	#event-head .event-head-inner {
		padding-top: 80px;
	}
}

#event {
	position: relative;
	width: 100%;
}

#event.tp-contents {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

#event table {
	width: 100%;
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
	border-collapse: collapse;
	border-spacing: 0;
	border-top: 1px solid var(--secondary-color);
}

#event table.en {
	font-family: "DM Sans", sans-serif;
}

#event table caption {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	border-top: 2px solid var(--secondary-color);
	border-bottom: 2px solid var(--secondary-color);
	padding: 0.75rem 0;
	margin-bottom: 2.5rem;
	letter-spacing: 0.25rem;
	text-indent: 0.25rem;
}

#event table tr {
	display: flex;
	justify-content: space-between;
	gap: 0 2em;
}

#event table th {
	white-space: nowrap;
	font-size: 1em;
	font-weight: 400;
	text-align: left;
	flex-grow: 1;
	width: 15%;
}

#event table td {
	font-size: 1em;
	font-weight: 400;
	flex-grow: 6;
	width: 85%;
}

#event table tr:not(.noborder) {
	border-bottom: 1px solid var(--secondary-color);
}

#event table tr:not(.noborder) th {
	padding: 1em 0.5em;
	line-height: 1.75;
}

#event table tr:not(.noborder) td {
	padding: 1em 0.5em;
	line-height: 1.75;
}

#event table tr:not(.noborder) td em {
	font-style: normal;
	font-size: 1.2em;
}

#event table tr:not(.noborder) td small {
	font-size: 0.85em;
}

#event table tr:not(.noborder) td a {
	text-decoration: underline;
}

#event table tr.noborder th {
	padding: 0.35em 0;
}

#event table tr.noborder td {
	padding: 0.35em 0;
}

#event table tr.noborder.end {
	border-bottom: 1px solid var(--secondary-color);
}

#event table tr.noborder.end th, #event table tr.noborder.end td {
	padding-bottom: 1.5em;
}

#event table ul {
	margin: 0;
	padding-left: 1.75em;
	list-style-type: square;
}

#event table ul li:not(:last-child) {
	margin-bottom: 0.35em;
}

#event table ul ul {
	list-style-type: circle;
	font-size: 0.9em;
}

#event h1 {
	margin: 0 auto 1.5rem;
	font-size: 2.6rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	line-height: 1.7;
	font-style: normal;
}

#event h1 small {
	display: block;
	margin-top: 1.75rem;
	font-size: 0.65em;
	font-family: "DM Sans", sans-serif;
	letter-spacing: 0.15rem;
	text-indent: 0.15rem;
}

#event h2 {
	margin: 5rem auto 0.5rem;
	font-size: 2.6rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.15rem;
	text-indent: 0.15rem;
}

#event h2.jp {
	font-size: 2.2rem;
}

#event h2 small {
	font-size: 0.6em !important;
}

#event h3 {
	margin: 7.5rem auto 0;
	text-align: center;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.5rem;
	text-indent: 0.5rem;
}

#event p.center {
	text-align: center;
}

#event p.large {
	margin: 1.5rem auto 1.5rem;
	font-size: 1.1em;
}

#event p.slarge {
	margin: 0 auto 1.5rem;
	font-size: 1.3em;
	letter-spacing: 0.15rem;
	text-indent: 0.15rem;
	line-height: 1.5;
}

#event p.slarge span {
	font-size: 0.75em !important;
	font-weight: 700;
}

#event p.slarge small {
	font-size: 0.6em !important;
}

#event .btn-area {
	margin-top: 3.5rem;
	text-align: center;
}

#event .btn-area a {
	display: block;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--secondary-color);
	width: 100%;
	max-width: 260px;
	color: var(--primary-color);
	font-size: 1.5rem;
	padding: 1rem;
	border-radius: 0.5rem;
}

#event ul {
	margin: 1.5em 0;
	padding-left: 1.5em;
	list-style-type: disc;
	font-size: 1.5rem;
}

#event ul li {
	margin: 1.5em 0;
}

#event ul li em {
	display: block;
	font-size: 1.1em;
	font-weight: 400;
	font-style: normal;
}

@media (min-width: 960px) {
	#event.tp-contents .tp-contents-inner {
		max-width: 640px;
	}

	#event h1 {
		font-size: 3.4rem;
	}

	#event h2 {
		font-size: 2.8rem;
	}

	#event p.slarge {
		font-size: 1.4em;
		letter-spacing: 0.25rem;
		text-indent: 0.25rem;
	}
}

footer {
	padding: 5rem 5rem;
}

footer .copy {
	margin-top: 2.5rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.3rem;
	text-align: center;
}

@media (max-width: 767px) {
	/* 画面サイズが768px未満の場合の設定 */
}

@media (max-width: 959px) {
	/* 画面サイズが960px未満の場合の設定 */
}

@media (min-width: 768px) {
	/* 画面サイズが768px以上の場合の設定 */
}

/*# sourceMappingURL=style.css.map */