@charset "UTF-8";

:root {
	--color-theme-1: #4c4948;
	--color-theme-2: #00AFEC;
	--color-theme-3: #4C7DB9;
	--color-theme-4: rgb(0, 55, 116, .1);
	--color-theme-5: #a4c543;
	--font-family: "Noto Sans JP", sans-serif;
	--en: "Oswald", sans-serif;
	--container: 1140px;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--color-theme-1);
	font-family: var(--font-family);
	background-image: url(img/bg-dotted.webp);
	background-repeat: repeat;
}

button:hover,
a:hover {
	opacity: .6;
}

@media(min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

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

hr {
	border-color: var(--color-theme-1);
}

::after,
::before,
* {
	--font-size: calc((var(--fs)/16) * 1rem);
	font-size: var(--font-size);
}

.color-theme-1 {
	color: var(--color-theme-1);
}

.color-theme-2 {
	color: var(--color-theme-2);
}

.en {
	font-family: var(--en);
}

.container {
	max-width: calc(var(--container) + var(--bs-gutter-x));
}

.header {
	background-color: #fff;
	.nav-divider {
		border-left: 1px solid var(--color-theme-1)
	}
	.nav-link {
		--fs: 14;
		color: var(--color-theme-1);
		display: grid;
		place-items: center;
		place-content: center;
		padding: 0;
		.en {
			--fs: 22;
			font-weight: 600;
		}
	}
}

#fv {
	background: url(./img/fv-pc.webp) no-repeat center top/100% auto;
	padding-top: 41.274%;
}

#intro {
	/* background: url(./img/fv-bottom@1920.webp) no-repeat center bottom/100% auto; */
	padding-bottom: 13.571%;
	--fs: 14;
	--container: 1017px;
}

#intro .container{
	position: relative;
}

.intro-map {
	margin-top: -60px;
}

#activity {
	padding: 80px 0 160px;
}

.hgroup {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	margin: 0 0 40px;
	> * {
		margin-bottom: 0;
	}
	.order-1 {
		justify-self: end;
	}
}

.act-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
	gap: 30px;
	margin: 0 0 60px;
}

.act {
	background-color: var(--color-theme-4);
	border-radius: 16px;
	overflow: hidden;
	hgroup {
		background-color: var(--color-theme-3);
		color: #fff;
		display: grid;
		place-items: center;
		place-content: center;
		height: 94px;
		gap: 5px;
		> * {
			margin-bottom: 0;
		}
		h3 {
			--fs: 21;
			font-size: var(--font-size);
			font-weight: 700;
			letter-spacing: .02em;
			padding: 0px 15px;
		}
		p {
			--fs: 15;
			order: -1;
		}
	}
	img {
		width: 100%;
	}
	dl {
		display: grid;
		gap: 10px;
		margin: 0;
	}
	&:where(#activity *) dl {
		align-items: center;
		grid-template-columns: auto 1fr;
		gap: 10px 20px;
	}
	dt {
		--fs: 14;
		font-weight: 400;
	}
	dd {
		font-weight: 500;
		margin-bottom: 0;
		letter-spacing: .04em;
	}
	hr {
		margin: 10px 0;
	}
}

.act-body {
	padding: 20px;
	> :last-child {
		margin-bottom: 0;
	}
	p {
		--fs: 14;
		margin-bottom: 8px;
	}
	ul{
		padding-left: 20px;
		--fs: 14;
	}
	ul li{
		margin-bottom: 5px;
		font-weight: bold;
	}
}

#reserve {
	background-color: var(--color-theme-1);
	color: #fff;
	padding: 80px 0;
}

.stack {
	--yohaku: 160px;
	display: grid;
	gap: var(--yohaku);
	padding: var(--yohaku) 0;
}

.labfes {
	background-color: var(--color-theme-4);
	border-radius: 16px;
	padding: 100px 130px;
	h3 {
		margin-bottom: 80px;
	}
	h4 {
		--fs: 22;
		font-size: var(--font-size);
		font-weight: 700;
		letter-spacing: .02em;
	}
	p {
		--fs: 14;
	}
	dl {
		--fs: 14;
		align-items: baseline;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0 10px;
		margin: 0px;
		> * {
			margin: 0;
		}
	}
	dt {
		font-weight: 400;
	}
	dd {
		--fs: 17;
		font-weight: 500;
		.en {
			--fs: 40;
			font-weight: 700;
		}
	}
	hr {
		margin: 70px 0;
	}
}

#access {
	dl {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 10px 30px;
		margin: 0;
	}
	dt {
		--fs: 20;
		align-items: center;
		border: 1px solid currentColor;
		border-radius: 6px;
		display: flex;
		font-weight: 700;
		justify-content: center;
		letter-spacing: .12em;
		width: 110px;
	}
	dd {
		margin: 0;
	}
}

.footer {
	display: grid;
	place-items: center;
	place-content: center;
	gap: 40px;
	padding: 0 0 80px;
}

.btn-blue{
	display: block;
	background-color: var(--color-theme-2);
	border-radius: 6px;
	color: #fff;
	max-width: 356px;
	padding: 7px;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	margin-bottom: 30px;
	font-weight: bold;
}

.title-stage{
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.title-stage::before,
.title-stage::after{
	content: "";
	flex-grow: 2;
	border-top: 2px solid;
}

.table-stage{
	width: 100%;
	th,td{
		padding: 10px 20px;
		border-collapse: collapse;
    	border:1px solid;
	}
	th{
		width: 25%;
		text-align: center;
		background-color: var(--color-theme-3);
		color: #fff;
	}
}

.beer-kinds{
	font-size: 20px;
	font-weight: bold;
	line-height: 2em;
}

.act-img-border{
	border: 1px solid var(--color-theme-4);
}

.text-shuryo{
	font-size: 27px;
	font-weight: bold;
	color: #e64d63;
}

.information{
	max-width: 650px;
    margin: 50px auto 80px auto;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    h2{
    	font-size: 24px;
    	color: #ea470a;
    	font-weight: bold;
    	text-align: center;
    	margin-bottom: 10px;
    	line-height: 1.5;
    }
    h3{
    	font-size: 18px;
    	font-weight: bold;
    	line-height: 1.5;
    	text-align: center;
    }
    p{
    	color: #000;
    	line-height: 1.8;
    	font-size: 18px;
    }
}

@media(max-width:991px) {
	.header {
		.navbar-nav {
			gap: 10px;
		}
	}
	.intro-map {
		margin: 0;
	}
	#activity {
		padding: 80px 0;
	}
	.stack {
		--yohaku: 80px;
	}
	.act-list {
		margin: 0 0 40px;
	}
	.labfes {
		padding: 40px;
		h3 {
			margin-bottom: 40px;
		}
		hr {
			margin: 40px 0;
		}
	}
}

@media(max-width:767px) {
	#fv {
		padding-top: 100%;
		background-image: url(./img/fv-spv2.png);
	}
	.hgroup {
		grid-template-columns: 1fr;
		place-items: center;
		place-content: center;
		.order-1 {
			justify-self: unset;
		}
	}
	.labfes {
		padding: 40px 20px;
	}
	#access dl {
		grid-template-columns: 1fr;
	}
	.table-stage{
		th,td{
			padding: 10px 15px;
			--fs: 14;
		}
	}
}



.maeuri{
	position: absolute;
	top: -150px;
	right: -50px;
	max-width: 290px;
}

@media(max-width:1200px){
.maeuri{
	max-width: 150px;
	right: 0;
}
}

@media(max-width:768px){
	.maeuri{
		position: static;
		max-width: 250px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 50px;
	}
}

.intro-cloud{
	position: absolute;
	left: 0;
	top: -50px;
	max-width: 220px;
}

@media(max-width:991px){
	.intro-cloud{
		max-width: 150px;
	}
}

.sns{
	position: absolute;
	top: 140px;
	right: calc((100vw - 1040px) / 2);
}

@media(max-width:1200px){
	.sns{
		right: 10px;
	}
}

.sns a{
	display: inline-block;
	max-width: 42px;
}

.sns a:not(:last-child){
	margin-right: 10px;
}

.end-content .sns{
	position: relative;
	top: auto;
	right: auto;
	margin-left: 120px;
}

@media(max-width:991px) {
	.end-content .sns{
		margin-left: 0;
		margin-bottom: 50px;
	}
}

.end-content{
	display: flex;
	align-items: center;
	position: relative;
}

@media(max-width:991px) {
	.end-content{
		flex-direction: column;
	}
}

.himezi-beer-lead{
	margin-bottom: 70px;
	color: #4e3c10;
	font-size: 19px;
	line-height: calc(32/19);
}

@media(max-width:991px) {
	.himezi-beer-lead{
		font-size: 16px;
		margin-bottom: 50px;
	}
}

#howto-enjoy{
	margin-bottom: 200px;
}

.howto-list{
	display: grid;
	gap: 30px;
	/* grid-template-columns:repeat(auto-fill, minmax(326px, 1fr)); */
	grid-template-columns: repeat(3, 1fr);
}

.howto-text{
	text-align: center;
	margin-top: 30px;
}


@media(max-width:768px){
	.howto-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.howto{
		text-align: center;
	}
	.howto img{
		max-width: 80%;
	}
	.howto-text{
		margin-top: 15px;
	}
}



.how-to-fes-lead span{
	color: #dc6700;
	font-size: 24px;
	font-weight: bold;
}

@media(max-width:768px){
	.how-to-fes-lead span{
		font-size: 20px;
	}
}

.event-content-inner{
	border-radius: 40px;
	padding: 100px;
	position: relative;
	/* background-image: url('./img/content-bg-main.png'); */
	background-size: cover;
}

.event-content-top{
	position: absolute;
	left: 0;
	top: -30px;
	width: 100%;
	z-index: 2;
}



.event-content-right{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.event-content-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.event-content-bottom{
	position: absolute;
	left: 0;
	bottom: -30px;
	width: 100%;
	z-index: 2;
}

@media(max-width:768px) {
	.event-content-top{
top: -10px;
	}
	.event-content-bottom{
	bottom: -10px;
}
}

@media(max-width:991px){
	.event-content-inner{
		padding: 50px 20px;
	}
}

#food,
#area-map,
#ticket,
#food,
#beer,
#marche,
#stage{
	margin-bottom: 200px;
}

@media(max-width:768px) {
	#food, #area-map, #ticket, #food, #beer,#access, #marche, #stage,#contact{
		scroll-margin-top: 500px;
	}
}

#area-map .event-content-inner h2,
#ticket .event-content-inner h2,
#food .event-content-inner h2,
#beer .event-content-inner h2,
#marche .event-content-inner h2,
#stage .event-content-inner h2,
#access .event-content-inner h2{
	max-width: 220px;
}

.event-content-title{
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

@media(max-width:768px) {
	.event-content-title{
	top: -60px;
}
}

#area-map .event-content-inner,
#ticket .event-content-inner,
#food .event-content-inner,
#beer .event-content-inner,
#marche .event-content-inner,
#stage .event-content-inner,
#access .event-content-inner{
	padding-top: 140px;
}

@media(max-width:768px) {
	#area-map .event-content-inner,
#ticket .event-content-inner,
#food .event-content-inner,
#beer .event-content-inner,
#marche .event-content-inner,
#stage .event-content-inner,
#access .event-content-inner{
	padding-top: 120px;
}
}

#ticket h3{
	margin-top: 70px;
	margin-bottom: 25px;
	text-align: center;
	font-size: 28px;
	letter-spacing: 0.4em;
	font-weight: bold;
	color: #843b00;
}

@media(max-width:768px){
	#ticket h3{
		font-size: 19px;
		margin-bottom: 15px;
		margin-top: 40px;
	}
}

.column-list{
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(3, 1fr);
}

@media(max-width:768px){
	.column-list{
	grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:575px){
	.column-list{
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
}
}

.beer-list{
		display: grid;
	gap: 50px;
	grid-template-columns: repeat(3, 1fr);
}

@media(max-width:768px){
.beer-list{
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
}
@media(max-width:575px){
	
.beer-list{
	grid-template-columns: repeat(1, 1fr);
}
}

.column-item h3,
.beer-item h3,
.column-item h4{
	font-size: 18px;
	color: #4c4948;
	font-weight: bold;
	background-color: #ffec8d;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
}

.column-item p{
	font-weight: bold;
	margin-top: 10px;
	color: #4e3c10;
}

#marche .column-item p{
	font-weight: normal;
	font-size: 14px;
}

.reserve-btn{
	display: block;
	max-width: 400px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 40px;
}

.vertical-line{
	position: relative;
}

.vertical-line::before{
	content: "";
	width: 1px;
	height: 100%;
	background-color: #4c4948;
	display: block;
	position: absolute;
	left: -25px;
	top: 0;
}

@media(max-width:768px){
.vertical-line::before{
	content: none;
}
}

.gbeer-icon{
	text-align: center;
	margin-bottom: 30px;
}

.beer-item img{
	max-width: 100px;
}

.beer-item ul{
	padding-left:0;
}

.beer-item ul li{
	font-size: 14px;
	list-style-type: none;
	text-indent: -1em;
    padding-left: 1em;
}

.beer-item p{
	font-size: 14px;
}

.bg-img{
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.end-link{
	display: flex;
	justify-content: center;
	margin-top: 50px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.end-link a{
	color: #4e3c10;
	font-size: 16px;
	display: inline-block;
}

.end-link a:not(:last-child){
	margin-right: 40px;
}

.end-link a{
	text-decoration: none;
	display: flex;
	position: relative;
}

.end-link a::before{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: #4e3c10;
	position: absolute;
	left: -20px;
}

.end-link a:first-child::before{
	content: none;
}

@media(max-width:768px) {
	.end-link a::before{
		content: none;
	}
	.end-link a:first-child{
margin-bottom: 15px;
	}
	.end-link a:not(:last-child){
		margin-right: 15px;
	}
}

.footer-logo{
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;

}

.footer-bunner{
	display: flex;
	justify-content: center;
}

@media(max-width:768px){
	.footer-bunner{
		flex-direction: column;
	}
}

.footer-bunner img{
	max-width: 400px;
}

@media(max-width:991px) {
	.footer-bunner img{
		max-width: 100%;
	}
}

.footer-text{
	text-align: center;
}


#stage h3{
	background-color: #d94e02;
	color: #fff;
	font-size: 30px;
	padding-left: 10px;
	display: flex;
	align-items: end;
	padding-top: 10px;
	padding-bottom: 10px;
	list-style:1;
	margin-bottom: 65px;
}

#stage h3 span{
	font-size: 44px;
	line-height: 1;
}

@media(max-width:768px) {
	#stage h3{
		font-size: 24px;
		margin-bottom: 30px;
	}
	#stage h3 span{
		font-size: 30px;
	}
}

#stage .column-item h5{
	outline-offset: #4e3c10;
	font-size: 18px;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 0;
}

.mb-large{
	margin-bottom: 120px;
}

.beside-line{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.beside-line::before,
.beside-line::after{
	content: "";
	display: block;
	width: 40%;
	height: 1px;
	background-color: #4e3c10;
}

@media(max-width:768px){
	.beside-line::before,
.beside-line::after{
	width: 30%;
}
}

.gmap{
	margin-bottom: 65px;
}

.gmap iframe{
	aspect-ratio: 16/9;
}

@media(max-width:768px){
	.gmap{
		margin-bottom: 20px;
	}
}

#access h3{
	text-align: center;
	font-size: 30px;
	letter-spacing: 0.02em;
	margin-bottom: 15px;
	color: #4e3c10;
	font-weight: bold;
}

@media(max-width:768px) {
	#access h3{
		font-size: 18px;
	}
}

.contact-btn{
	display: block;
	margin-top: 40px;
	max-width: 390px;
	margin-right: auto;
	margin-left: auto;
}

.pagetop{
	display: block;
	width: 70px;
	position: fixed;
	right: 15px;
	bottom: 15px;
	transition: .3s;
	z-index: 10;
}

@media(max-width:768px) {
	.pagetop{
		width: 40px;
	}
}

.navbar-toggler{
	border: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(150,99,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.day-ticket{
	display: inline-block;
	margin-right: 15px;
}

@media(max-width:768px) {
	.day-ticket{
		display: block;
		margin-right: 0;
	}
}

.syusai{
	font-size: 20px;font-weight: bold;
}

@media(max-width:768px) {
	.syusai{
		font-size: 16px;
	}
}

.comnig-soon{
	font-size: 28px;
	letter-spacing: 0.1em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0;
}

p.bin-beer{
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}

.suzunone-time{
	margin-top: 15px;
	text-align: center;
}

#stage .column-item img{
	height: 170px;
	object-fit: cover;
	width: 100%;
}

@media(max-width:768px) {
	#stage .column-item img{
		height: 190px;
	}
}

@media(max-width:575px) {
	#stage .column-item img{
		height: auto;
	}
}

#stage .column-item.suzunone img{
	height: auto;
}

.uten{
	text-align: center;
	margin-top: 15px;
	font-size: 15px;
}

@media(max-width:768px) {
	.uten{
		font-size: 14px;
	}
}
