/*
=====================================================
RESET
=====================================================
*/

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
}

body{
	font-family:'Noto Sans JP',sans-serif;
	font-size:16px;
	line-height:1.8;
	color:#333;
	background:#fff;
}

img{
	display:block;
	width:100%;
	height:auto;
}

a{
	text-decoration:none;
	color:inherit;
	transition:.3s;
}

ul{
	list-style:none;
}

.container{
	width:min(1200px,90%);
	margin:auto;
}


/*
=====================================================
COMMON
=====================================================
*/

section{
	padding:100px 0;
}

.section-title{
	text-align:center;
	margin-bottom:60px;
}

.section-title span{
	display:block;
	font-size:14px;
	font-weight:700;
	letter-spacing:4px;
	color:#C89B3C;
	margin-bottom:10px;
}

.section-title h2{
	font-family:'Poppins',sans-serif;
	font-size:42px;
	font-weight:700;
	color:#2F3E46;
}

.center{
	text-align:center;
}


/*
=====================================================
BUTTON
=====================================================
*/

.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:16px 42px;
	background:#2F3E46;
	color:#fff;
	border-radius:50px;
	font-weight:700;
	gap:10px;
}

.btn:hover{
	background:#C89B3C;
	color:#fff;
	transform:translateY(-3px);
}

.btn-outline{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:15px 40px;
	border:2px solid #2F3E46;
	color:#2F3E46;
	border-radius:50px;
	font-weight:700;
}

.btn-outline:hover{
	background:#2F3E46;
	color:#fff;
}


/*
=====================================================
HERO
=====================================================
*/

.hero{
	height:90vh;
	min-height:680px;
	display:flex;
	align-items:center;
	color:#fff;
	background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("../images/hero.png") center center/cover;
}

.hero-text{
	width:min(1200px,90%);
	margin:auto;
}

.hero span{
	display:block;
	font-size:15px;
	font-weight:700;
	letter-spacing:5px;
	color:#d8b15a;
	margin-bottom:18px;
}

.hero h1{
	font-family:'Poppins',sans-serif;
	font-size:66px;
	line-height:1.2;
	margin-bottom:30px;
}

.hero p{
	max-width:560px;
	font-size:18px;
	color:#eee;
	margin-bottom:40px;
}


/*
=====================================================
NEWS
=====================================================
*/

.news{
	background:#f8f8f8;
}

.news-list{
	background:#fff;
	border-radius:18px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	margin-bottom:35px;
	overflow:hidden;
}

.news-list article{
	display:flex;
	align-items:center;
	gap:30px;
	padding:22px 30px;
	border-bottom:1px solid #eee;
}

.news-list article:last-child{
	border:none;
}

.news-list time{
	min-width:110px;
	font-weight:700;
	color:#C89B3C;
}

.news-list article:hover{
	background:#fafafa;
}


/*
=====================================================
ABOUT
=====================================================
*/

.about-wrap{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:70px;
	align-items:center;
}

.about-image img{
	border-radius:18px;
	box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.about-text span{
	display:block;
	color:#C89B3C;
	font-weight:700;
	letter-spacing:3px;
	margin-bottom:12px;
}

.about-text h2{
	font-family:'Poppins',sans-serif;
	font-size:44px;
	line-height:1.4;
	color:#2F3E46;
	margin-bottom:25px;
}

.about-text p{
	color:#666;
	margin-bottom:35px;
}


/*
=====================================================
PICKUP
=====================================================
*/

.pickup{
	background:#f8f8f8;
}

.pickup-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:35px;
}

.pickup-card{
	background:#fff;
	border-radius:18px;
	overflow:hidden;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	transition:.3s;
}

.pickup-card:hover{
	transform:translateY(-8px);
}

.pickup-card img{
	height:260px;
	object-fit:cover;
}

.pickup-card h3{
	padding:25px 25px 10px;
	font-size:24px;
	color:#2F3E46;
}

.pickup-card p{
	padding:0 25px 20px;
	color:#666;
}

.pickup-card a{
	display:block;
	background:#2F3E46;
	color:#fff;
	padding:18px;
	text-align:center;
	font-weight:700;
}

.pickup-card a:hover{
	background:#C89B3C;
}


/*
=====================================================
CATEGORY
=====================================================
*/

.category-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

.category-card{
	background:#fff;
	padding:45px 20px;
	text-align:center;
	border-radius:18px;
	box-shadow:0 8px 25px rgba(0,0,0,.08);
	transition:.3s;
}

.category-card:hover{
	transform:translateY(-8px);
}

.category-card i{
	font-size:46px;
	color:#C89B3C;
	margin-bottom:20px;
}

.category-card h3{
	font-size:22px;
	color:#2F3E46;
}

/*
=====================================================
GALLERY
=====================================================
*/

.gallery{
	background:#f8f8f8;
}

.gallery-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:25px;
}

.gallery-grid img{
	border-radius:16px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	transition:.3s;
}

.gallery-grid img:hover{
	transform:scale(1.03);
}


/*
=====================================================
ACCESS
=====================================================
*/

.access-wrap{
	display:grid;
	grid-template-columns:1.1fr 1fr;
	gap:70px;
	align-items:center;
}

.access-image img{
	border-radius:18px;
	box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.access-info h3{
	font-family:'Poppins',sans-serif;
	font-size:38px;
	color:#2F3E46;
	margin-bottom:35px;
}

.access-info dl{
	display:grid;
	grid-template-columns:120px 1fr;
	column-gap:20px;
	row-gap:18px;
	margin-bottom:40px;
}

.access-info dt{
	font-weight:700;
	color:#C89B3C;
	padding-bottom:10px;
	border-bottom:1px solid #ddd;
}

.access-info dd{
	color:#555;
	padding-bottom:10px;
	border-bottom:1px solid #ddd;
}


/*
=====================================================
CONTACT
=====================================================
*/

.contact{
	padding:120px 0;
	background:#2F3E46;
}

.contact-box{
	max-width:760px;
	margin:auto;
	padding:70px 50px;
	background:#fff;
	border-radius:20px;
	text-align:center;
	box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.contact-box span{
	display:block;
	font-size:14px;
	font-weight:700;
	letter-spacing:4px;
	color:#C89B3C;
	margin-bottom:15px;
}

.contact-box h2{
	font-family:'Poppins',sans-serif;
	font-size:48px;
	color:#2F3E46;
	margin-bottom:20px;
}

.contact-box p{
	max-width:560px;
	margin:0 auto 40px;
	color:#666;
	line-height:1.9;
}

.contact-buttons{
	display:flex;
	justify-content:center;
	gap:20px;
	flex-wrap:wrap;
}

.contact-buttons a{
	min-width:230px;
}

.tel-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:16px 35px;
	background:#2F3E46;
	color:#fff;
	border-radius:999px;
	font-weight:700;
	transition:.3s;
}

.tel-btn:hover{
	background:#C89B3C;
	color:#fff;
	transform:translateY(-3px);
}


/*
=====================================================
HEADER
=====================================================
*/

header{
	position:sticky;
	top:0;
	z-index:999;
	background:#fff;
	box-shadow:0 3px 20px rgba(0,0,0,.08);
}

header .container{
	height:90px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.logo img{
	height:80px;
	width:auto;
}

header nav ul{
	display:flex;
	align-items:center;
	gap:35px;
}

header nav a{
	position:relative;
	font-weight:500;
	color:#333;
}

header nav a::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-8px;
	width:0;
	height:2px;
	background:#C89B3C;
	transition:.3s;
}

header nav a:hover{
	color:#C89B3C;
}

header nav a:hover::after{
	width:100%;
}

.header-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 28px;
	background:#2F3E46;
	color:#fff;
	font-weight:700;
	border-radius:50px;
	transition:.3s;
}

.header-btn:hover{
	background:#C89B3C;
	color:#fff;
}

.menu-btn{
	display:none;
}


/*
=====================================================
FOOTER
=====================================================
*/

footer{
	padding:80px 0 35px;
	background:#1F2A30;
	color:#fff;
}

.footer-logo{
	text-align:center;
	margin-bottom:35px;
}

.footer-logo img{
	height:70px;
	width:auto;
	margin:auto;
}

.footer-nav{
	margin-bottom:35px;
}

.footer-nav ul{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:30px;
}

.footer-nav a{
	color:#fff;
	transition:.3s;
}

.footer-nav a:hover{
	color:#C89B3C;
}

.footer-sns{
	display:flex;
	justify-content:center;
	gap:18px;
	margin-bottom:35px;
}

.footer-sns a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:48px;
	height:48px;
	border-radius:50%;
	border:1px solid rgba(255,255,255,.25);
	font-size:20px;
	transition:.3s;
}

.footer-sns a:hover{
	background:#C89B3C;
	border-color:#C89B3C;
}

footer span{
	display:block;
	max-width:700px;
	margin:0 auto 25px;
	text-align:center;
	color:#ddd;
	line-height:1.9;
}

.copyright{
	text-align:center;
	font-size:13px;
	color:#999;
}


/*
=====================================================
PAGE TOP
=====================================================
*/

.pagetop{
	position:fixed;
	right:25px;
	bottom:25px;
	width:55px;
	height:55px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#C89B3C;
	color:#fff;
	border-radius:50%;
	font-size:18px;
	box-shadow:0 10px 25px rgba(0,0,0,.2);

	opacity:0;
	visibility:hidden;

	transition:.3s;
	z-index:999;
}

.pagetop.show{
	opacity:1;
	visibility:visible;
}

.pagetop:hover{
	background:#a67c2d;
	transform:translateY(-5px);
}


/*
=====================================================
RESPONSIVE
=====================================================
*/

@media(max-width:992px){

	header nav,
	.header-btn{
		display:none;
	}

	.menu-btn{
		display:flex;
		align-items:center;
		justify-content:center;
		width:46px;
		height:46px;
		border:none;
		background:#2F3E46;
		color:#fff;
		border-radius:8px;
		font-size:20px;
		cursor:pointer;
	}

	.pickup-grid{
		grid-template-columns:repeat(2,1fr);
	}

	.category-grid{
		grid-template-columns:repeat(2,1fr);
	}

	.about-wrap,
	.access-wrap{
		grid-template-columns:1fr;
		gap:45px;
	}

}

@media(max-width:768px){

	section{
		padding:70px 0;
	}

	.section-title{
		margin-bottom:45px;
	}

	.section-title h2{
		font-size:32px;
	}

	.hero{
		min-height:520px;
		text-align:center;
	}

	.hero h1{
		font-size:38px;
	}

	.hero p{
		font-size:16px;
		margin:0 auto 35px;
	}

	.news-list article{
		flex-direction:column;
		align-items:flex-start;
		gap:8px;
	}

	.pickup-grid,
	.category-grid,
	.gallery-grid{
		grid-template-columns:1fr;
	}

	.contact-box{
		padding:45px 25px;
	}

	.contact-box h2{
		font-size:34px;
	}

	.contact-buttons{
		flex-direction:column;
	}

	.contact-buttons a{
		width:100%;
	}

	.access-info dl{
		grid-template-columns:1fr;
		row-gap:8px;
	}

	.access-info dt{
		border:none;
		padding-bottom:0;
	}

	.access-info dd{
		margin-bottom:15px;
	}

	.footer-nav ul{
		flex-direction:column;
		gap:18px;
	}

	.footer-logo img{
		height:58px;
	}

	.pagetop{
		width:48px;
		height:48px;
		right:18px;
		bottom:18px;
		font-size:16px;
	}

}

/*
=====================================================
PAGE TOP
=====================================================
*/

.pagetop{
	position:fixed;
	right:25px;
	bottom:25px;
	width:56px;
	height:56px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#C89B3C;
	color:#fff;
	border-radius:50%;
	font-size:18px;
	text-decoration:none;
	box-shadow:0 10px 25px rgba(0,0,0,.2);

	opacity:0;
	visibility:hidden;

	transition:.3s;
	z-index:999;
}

.pagetop.show{
	opacity:1;
	visibility:visible;
}

.pagetop:hover{
	background:#A67C2D;
	color:#fff;
	transform:translateY(-5px);
}
