* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #000;
	line-height: 1.8;
	font-weight: 500;
	font-size: 16px;
	;
}

img {
	width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: #fff;
}

ul {
	list-style: none;
}

/*---------------------------------
	Header
	----------------------------------*/

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: .4s ease;
}

.header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, .8);
	backdrop-filter: blur(8px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
	animation: headerDown .4s;
	z-index: 9999;
}

.header__inner {
	max-width: 1280px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@keyframes headerDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes headerDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.nav ul {
	display: flex;
	gap: 24px;
}

.nav a {
	font-family: "EB Garamond", serif;
	font-size: 20px;
	font-weight: 400;
	transition: 0.3s;
}

.nav a:hover {
	color: #FFC300;
}

.tel-btn {
	background: #b71616;
	padding: 2px 10px;
	font-size: 32px;
	font-family: "EB Garamond", serif;
	font-weight: 400;
	;
	transition: 0.3s;
}

.tel-btn:hover {
	background: #8e0f0f;
}

.tel-btn span {
	font-size: 20px;
	;
}

.concept .sp-btn {
	display: none;
}

/*================================
FV
================================*/

.fv {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.fv-slider {
	position: absolute;
	inset: 0;
}

.fv-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.8s ease;
}

.fv-slide.active {
	opacity: 1;
	z-index: 1;
}

.fv-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fv__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
	z-index: 2;
}

.fv__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 3;
	color: #fff;
}

.fv__sub {
	font-family: "EB Garamond", serif;
	font-size: 40px;
	margin-bottom: 20px;
}

.fv h2 {
	font-size: 40px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.fv {
		height: 80vh;
	}

	.fv__sub {
		font-size: 24px;
	}

	.fv h2 {
		font-size: 34px;
	}
}

.fadeUp {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity .8s ease, transform .8s ease;
}

.fadeUp.active {
	opacity: 1;
	transform: translateY(0);
}

/*---------------------------------
	Hamburger
	----------------------------------*/

.hamburger {
	display: none;
}

.drawer {
	display: none;
}

@media (max-width: 1024px) {
	.sp {
		display: block;
	}

	.tel-btn {
		display: none;
	}

	.hamburger {
		width: 50px;
		height: 50px;
		background: #f7b500;
		border: none;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		gap: 6px;
		z-index: 1001;
		margin: 20px;
	}

	.hamburger span {
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		transition: .35s;
	}

	/* OPEN */

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* メニュー */

	.drawer {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		visibility: hidden;
		transition: .4s;
		z-index: 999;
	}

	.drawer.active {
		opacity: 1;
		visibility: visible;
	}

	.drawer ul {
		list-style: none;
		text-align: center;
	}

	.drawer li {
		margin: 12px 0;
	}

	.drawer a {
		text-decoration: none;
		font-size: 20px;
		font-weight: 400;
		color: #000;
		font-family: "EB Garamond", serif;
	}

	body.menu-open {
		overflow: hidden;

	}

	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 260px;
		height: 100%;
		background: #111;
		transition: 0.4s;

		padding-top: 100px;
	}

	.nav.active {
		right: 0;
	}

	.nav ul {
		flex-direction: column;
		align-items: center;
		gap: 25px;
	}

	.fv {
		height: 80vh;
	}

	.fv h2 {
		font-size: 34px;
		line-height: 1.6;
	}

	.sp-menu {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		visibility: hidden;
		transition: .45s;
		z-index: 9999;
	}

	.sp-menu.active {
		opacity: 1;
		visibility: visible;
	}

	.sp-nav {
		list-style: none;
		padding: 0;
		margin: 0;
		text-align: center;
	}

	.sp-nav li+li {
		margin-top: 18px;
	}

	.sp-nav a {
		font-family: "EB Garamond", serif;
		font-size: 36px;
		color: #222;
		text-decoration: none;
		letter-spacing: .05em;
		transition: .3s;
	}

	.sp-nav a:hover {
		color: #d90000;
	}

	.drawer .sp-tel {
		margin-top: 50px;
		padding: 2px 10px;
		background: #d90000;
		color: #fff;
		text-decoration: none;
		font-size: 32px;
	}

	.drawer .sp-tel span {
		font-size: 20px;
	}

	.menu-close {
		position: absolute;
		top: 30px;
		right: 30px;
		width: 56px;
		height: 56px;
		background: #f8b500;
		border: 0;
		color: #fff;
		font-size: 40px;
		line-height: 56px;
		cursor: pointer;
		transition: .3s;
	}

	.menu-close:hover {
		transform: rotate(90deg);
	}
}

/*================================
NEWS
================================*/

.news {
	background: #fff url("../images/top/news-bg.png") center repeat;
	background-size: cover;
	padding: 100px 0;
}

.inner {
	width: min(90%, 1280px);
	margin: auto;
}

.news .inner {
	width: min(90%, 1050px);
}

.section-title {
	font-size: 32px;
	font-weight: 500;
	font-family: "EB Garamond", serif;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

.marker {
	display: inline-block;
	position: relative;
	z-index: 1;
	font-weight: 700;
	line-height: 1.2;
}

.marker::after {
	content: "";
	position: absolute;
	left: -15px;
	bottom: -13px;
	width: calc(100% + 30px);
	height: 32px;
	background: url("../images/top/maker.png") center/100% 100% no-repeat;
	z-index: -1;
}

.news-list {
	max-width: 700px;
}

.news-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 0;
}

.news-date {
	font-family: "EB Garamond", serif;
	min-width: 110px;
	text-align: center;
	padding: 1px 10px;
	background: #fff;
	border: solid 1px #000;
	;
}

.news-item a {
	color: #333;
	transition: 0.3s;
}

.news-item a:hover {
	opacity: 0.8;
}

.news-page {
	padding: 110px 0;
	background: #fff url("../images/top/news-bg.png") center repeat;
	background-size: cover;
}

.news-page .ttl {
	font-size: 24px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.news {
		padding: 70px 0;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.news-item {
		display: block;
	}

	.news-date {
		display: inline-block;
		margin-right: 15px;
	}
}

/*==================================
CONCEPT
==================================*/

.concept {
	position: relative;
	overflow: hidden;
	padding: 110px 0;
	background: #ffe694;
}

.concept-bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70%;
	background: #ffd856;
	clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
}

.concept .inner {
	position: relative;
	z-index: 2;
	width: min(90%, 1260px);
}

/*----------------*/

.concept-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;

	margin-bottom: 70px;
}

.concept-img {
	width: 42%;
}

.concept-img img {
	display: block;
	width: 100%;
}

.concept-text {
	width: 56%;
}

.concept-text h2 {
	font-size: 32px;
	margin-bottom: 25px;
}

.concept-text p {
	line-height: 2;
}

/*----------------*/

.instagram {
	text-align: center;
	margin: 80px 0;
}

.instagram a {
	position: relative;
	display: inline-block;
}

.instagram a:hover {
	opacity: 0.8;
}

.instagram img {
	width: 480px;
	max-width: 100%;
}

/*----------------*/

.concept-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	margin-bottom: 50px;
}

.menu-text {
	width: 53%;
}

.menu-text h2 {
	font-size: 32px;
	margin-bottom: 25px;
}

.menu-text p {
	line-height: 2;
	margin-bottom: 35px;
}

.coffee-img {
	width: 38%;
}

.coffee-img img {
	width: 100%;
}

/*----------------*/

.concept-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 23px;
}

.concept-gallery img {
	width: 100%;
	display: block;
}

@media (max-width: 768px) {
	.concept {
		padding: 80px 0;
	}

	.concept-top,
	.concept-bottom {
		flex-direction: column;
	}

	.concept-img,
	.concept-text,
	.menu-text,
	.coffee-img {
		width: 100%;
	}

	.concept-gallery {
		grid-template-columns: 1fr;
	}

	.instagram {
		margin: 50px 0;
	}
}

/*==============================
CHARM
==============================*/

.charm {
	padding: 110px 0 0;
	background: #fff url("../images/top/charm-bg.png") center repeat;
	overflow: hidden;
	text-align: center;
}

.section-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.section-heading__en {
	position: relative;
	display: inline-block;
	padding: 0 75px;
	font-family: "EB Garamond", serif;
	font-size: 24px;
	font-weight: 500;
	color: #FFC300;
	letter-spacing: 0.08em;
	line-height: 1;
}

/* 左ライン */

.section-heading__en::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 60px;
	height: 7px;
	background: #FFC300;
	transform: translateY(-50%);
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* 右ライン */

.section-heading__en::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 60px;
	height: 7px;
	background: #FFC300;
	transform: translateY(-50%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.charm .section-title {
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	margin-bottom: 30px;
}

.charm p {
	line-height: 2;
	;
}

.charm .more-btn {
	justify-content: center;
}

/*==============================*/

.charm-grid {
	max-width: 900px;
	margin: 50px auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.charm-grid img {
	width: 100%;
	display: block;
	transition: 0.5s;
}

/*=================================
More Button
=================================*/
.more-btn {
	display: flex;
	gap: 60px;
}

.more-btn a {
	display: inline-block;
	width: 269px;
	padding: 21px 0;
	text-align: center;
	color: #d40000;
	margin: 5px;
	border: 1px solid #d40000;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	font-family: "EB Garamond", serif;
	font-size: 24px;
	line-height: 1;
}

.more-btn a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: -20px;
	width: 44px;
	height: 5px;
	border: none;
	border-right: 1px solid #d40000;
	border-bottom: 1px solid #d40000;
	transform: skew(45deg);
	transition: 0.3s;
}

.more-btn a:hover::after {
	right: -40px;
	width: 64px;
}

/*==============================
無限スクロール
==============================*/

.gallery-slider {
	width: 100%;
	overflow: hidden;
	margin: 60px 0 120px;
}

.gallery-track {
	display: flex;
	width: max-content;
	animation: scrollGallery 35s linear infinite;
}

.gallery-track img {
	width: 200px;
	object-fit: cover;
	flex-shrink: 0;
	margin: 0 5px;
}

/*==============================*/

@keyframes scrollGallery {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.charm {
		padding: 80px 0 0;
	}

	.section-heading__en {
		font-size: 2.5rem;
		padding: 0 60px;
	}

	.section-heading__en::before,
	.section-heading__en::after {
		width: 45px;
		height: 6px;
	}

	.charm-grid {
		grid-template-columns: 1fr;
	}

	.gallery-track img {
		width: 150px;
		height: 95px;
	}
}

/*=================================
INFORMATION
=================================*/

.information {
	padding: 110px 0;
	background: #f8f5ec url("../images/top/yellow-bg.png") repeat;
}

.information .inner {
	width: min(90%, 1050px);
}

.information .section-title {
	font-weight: 700;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	margin-bottom: 30px;
	text-align: center;
	;
}

.information__wrap {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
	gap: 70px;
}

.information__content {
	flex: 1;
	text-align: center;
}

.information__image img {
	width: 100%;
	display: block;
}

.information-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 35px;
}

.information-item {
	display: flex;
	align-items: flex-start;
}

.information-item dt {
	width: 80px;
	border: 1px solid #000;
	text-align: center;
	background: #fff;
}

.information-item dd {
	flex: 1;
	margin-left: 30px;
	text-align: left;
}

.information .tel-btn {
	padding: 10px;
}

.information .more-btn {
	margin-top: 40px;
	justify-content: center;
}

@media (max-width: 768px) {
	.information {
		padding: 80px 0;
	}

	.information__wrap {
		flex-direction: column;
		gap: 40px;
	}

	.information__content,
	.information__image {
		width: 100%;
	}

	.information-item {
		flex-direction: column;
		gap: 10px;
	}

	.information-item dd {
		margin-left: 0;
	}
}

/*=================================
ACCESS
=================================*/

.access {
	padding: 110px 0;
	background: #f8f5ec url("../images/top/yellow-bg.png") repeat;
}

.access-map {
	position: relative;
	width: 100%;
	height: 670px;
	overflow: hidden;
	margin-top: 70px;
}

.access-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

@media (max-width: 768px) {
	.access {
		padding: 80px 0;
	}

	.access-map {
		height: 350px;
	}

	.pc {
		display: none;
	}

	.concept .sp-btn {
		display: flex;
		margin-top: 30px;
		justify-content: center;
	}
}

/*=================================
FOOTER
=================================*/

.footer {
	padding: 50px 20px 10px;
	background: #fff;
	text-align: center;
}

.footer__logo {
	width: 340px;
	margin: 0 auto;
}

/*----------------*/

.footer__nav {
	margin: 50px 0;
}

.footer__nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

.footer__nav a {
	font-size: 20px;
	font-family: "EB Garamond", serif;
	transition: 0.3s;
	color: #1A1A1A;
	;
}

.footer__nav a:hover {
	color: #FFC300;
}

/*----------------*/

.footer small {
	display: block;
	color: #000;
}

/*=================================
PAGE TOP
=================================*/

.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	background: #c00000;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: 0.3s;
}

.pagetop:hover {
	background: #8e0000;
}

.pagetop span {
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
	margin-top: 5px;
}

.pagetop {
	opacity: 0;
	visibility: hidden;
}

.pagetop.show {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 480px) {
	.logo {
		width: 238px;
	}

	.fv__content {
		width: 100%;
	}

	.concept-text h2 {
		font-size: 24px;
		text-align: center;
	}

	.menu-text h2 {
		font-size: 24px;
		text-align: center;
	}

	.menu-text p {
		margin-bottom: 0;
	}

	.section-heading__en {
		font-size: 24px;
	}

	.section-title {
		font-size: 20px;
	}

	.charm p {
		text-align: left;
	}

	.footer__nav {
		display: none;
	}

	.footer__logo {
		width: 258px;
		margin-bottom: 30px;
	}
}