@charset "utf-8";

.main-visual {
	position: relative;
	padding: 8% 0 80px;
}

.main-visual h1 {
	width: 10%;
	min-width: 160px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.main-visual h1 a {
	display: block;
}

.main-visual h2 {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	width: 100%;
	line-height: 200px;
	writing-mode: vertical-rl;
	letter-spacing: 0.25em;
}

.main-visual h2::after {
	content: "";
	display: block;
	border-radius: 80px 0 0 80px;
	height: 80vh;
	background-image: url(../images/main.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center,center;
	width: 100%;
}

/*=============================
おしながき
=============================*/
.sec-menu {
	background: url(../images/bg-paper.jpg) no-repeat;
	background-size: cover;
	padding: 70px 0 140px;
}

.sec-menu h3 {
	text-align: center;
	margin-bottom: 70px;
}

.sec-menu ul {
	display: flex;
	justify-content: center;
	gap: 50px;
}

.sec-menu li {
	width: 42%;
	text-align: center;
    overflow: hidden;
}

.sec-menu li a {
	position: relative;
	color: #fff;
	line-height: 300px;
	font-weight: 500;
	font-size: 2.4rem;
	display: block;
	z-index: 1;
	overflow:hidden;
	transition: all 0.5s;
}

.sec-menu li.menu-lunch a {
	background: url(../images/menu-01.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.sec-menu li.menu-dinner a {
	background: url(../images/menu-02.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.sec-menu li a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0.5;
	z-index: -1;
	transition: all 0.5s;
}

.sec-menu li a:hover {
	transform:scale(1.2);
	transition: all 0.5s;
	color: transparent;
}

.sec-menu li a:hover::after {
	opacity: 0;
}

/*=============================
こだわり
=============================*/
.sec-about .contents {
	display: flex;
	align-items: center;
	gap: 5%;
	position: relative;
}

.sec-about .contents:first-of-type {
	margin-bottom: 80px;
}

.sec-about .contents h4 {
	font-size: 2.4rem;
	margin-bottom: 30px;
	color: var(--maincolor);
}

.sec-about .about01 {
	flex-direction: row-reverse;
}

.sec-about .contents .contents-img {
	width: 40%;
}

.sec-about .contents div {
	flex: 1;
}

.sec-about .btn {
	position: absolute;
	bottom:-3em;
    right: 0;
}

.sec-about .btn a {
	display: inline-flex;
	width: 180px;
	color: var(--maincolor);
	border: 1px solid var(--maincolor);
	justify-content: center;
	align-items: center;
	padding: 5px 30px;
	margin-top: 30px;
	transition: all 0.5s;
}

.sec-about .btn a::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 2px solid var(--maincolor);
	border-right: 2px solid var(--maincolor);
	transform: rotate(45deg);
	margin-left: 2em;
	transition: all 0.5s;
}

.sec-about .btn a:hover {
	background-color: var(--maincolor);
	color: #fff;
	transition: all 0.5s;
}

.sec-about .btn a:hover::after {
	border-color: #fff;
	transition: all 0.5s;
}

/*=============================
ごあいさつ
=============================*/
.sec-greeting {
	padding-bottom: 30px;
	margin-bottom: 200px;
	position: relative;
}

.sec-greeting::after {
    content: "";
    position: absolute;
    display: block;
    width: 75%;
    height: 100%;
    right: 0;
    top: 50px;
    background: url(../images/bg-paper.jpg) no-repeat;
    background-size: cover;
    z-index: -1;
}

.greeting-flex {
	display: flex;
	gap: 5%;
}

.sec-greeting h3 {
	position: absolute;
    left: 45%;
    top: 80px;
}

.sec-greeting .greeting-img {
	width: 40%;
	/* min-width: 320px; */
}

.sec-greeting .greeting-text {
	padding-top: 220px;
	color: var(--text-color-bk);
	flex: 1;
}

.sec-greeting .greeting-text .greeting-owner {
	text-align: right;
	padding-top: 1em;
}

/*=============================
リスト
=============================*/
.sec-menu-list ul {
	display: flex;
}

.sec-menu-list li {
	width: calc(100% / 3);
	text-align: center;
	overflow: hidden;
}

.sec-menu-list li a {
	color: #fff;
	padding: 200px 0;
	position: relative;
	display: block;
	z-index: 1;
	transition: all 0.5s;
}

.sec-menu-list ul li.menu-item-access a {
	background: url(../images/list-access.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.sec-menu-list ul li.menu-item-about a {
	background: url(../images/list-about.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.sec-menu-list ul li.menu-item-menu a {
	background: url(../images/list-menu.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

.sec-menu-list li a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0.5;
	z-index: -1;
	transition: all 0.5s;
}

.sec-menu-list li a:hover {
	transform:scale(1.2);
	transition: all 0.5s;
	color: transparent;
}

.sec-menu-list li a:hover::after {
	opacity: 0;
}

/*=============================
店舗情報
=============================*/
.sec-info .wrapper {
	width: 650px;
}

.sec-info h3 {
	text-align: center;
}

.sec-info dl div {
	color: var(--text-color-bk);
	display: flex;
	border-top: 1px solid var(--text-color-bk);
	padding: 25px 0;
}

.sec-info dl div:last-child {
	border-bottom: 1px solid var(--text-color-bk);
	margin-bottom: 60px;
}

.sec-info dl dt {
	width: 30%;
	padding-left: 1em;
}

.sec-info dl dd {
	flex: 1;
}

.sec-info ul {
	display: flex;
	justify-content: center;
	gap: 5%;
}

.sec-info ul li {
	width: 30px;
}

.sec-info ul li a:hover {
	opacity: 0.4;
	transition: all 0.5s;
}

/* 
------------------------------------------------------------------------------------------------------
タブレット以下の表示はここからです
------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width:767px){
	.main-visual {
		padding: 14% 0 50px;
	}
	
	.main-visual h1 {
		top: 0;
	}
	
	.main-visual h2 {
		align-items: flex-end;
		line-height: 50px;
	}
	
	.main-visual h2::after {
		height: 80vh;
	}

	/*=============================
	おしながき
	=============================*/
	.sec-menu {
		padding: 70px 0;
	}

	.sec-menu h3 {
		margin-bottom: 30px;
	}

	.sec-menu ul {
		flex-direction: column;
	}

	.sec-menu li {
		width: 100%;
	}

	.sec-menu li a {
		line-height: 260px;
		font-size: 2rem;
	}

	/*=============================
	こだわり
	=============================*/
	.sec-about {
		margin-bottom: 180px;
	}

	.sec-about .contents {
		flex-direction: column-reverse;
	}

	.sec-about .contents:first-of-type {
		margin-bottom: 80px;
	}

	.sec-about .contents h4 {
		font-size: 2.4rem;
		margin-bottom: 30px;
	}

	.sec-about .about01 {
		flex-direction: column-reverse;
	}

	.sec-about .contents .contents-img {
		width: 100%;
		margin-top: 30px;
	}

	.sec-about .btn {
		bottom: -100px;
		right: 50%;
		transform: translateX(50%);
	}

	/*=============================
	ごあいさつ
	=============================*/
	.sec-greeting {
		padding: 60px 0;
		margin-bottom: 0;
		background: url(../images/bg-paper.jpg) no-repeat;
		background-size: cover;
	}

	.sec-greeting::after {
		display: none;
	}

	.sec-greeting .greeting-flex {
		flex-direction: column;
	}

	.sec-greeting h3 {
		position:initial ;
		/* left: 45%;
		top: 80px; */
	}

	.sec-greeting .greeting-img {
		width: 100%;
	}

	.sec-greeting .greeting-text {
		padding-top: 50px;
	}

	/*=============================
	リスト
	=============================*/
	.sec-menu-list ul {
		flex-direction: column;
	}

	.sec-menu-list li {
		width: 100%;
	}

	.sec-menu-list li a {
		padding: 150px 0;
	}

	/*=============================
	店舗情報
	=============================*/
	.sec-info .wrapper {
		width: 100%;
		font-size: 1.4rem;
	}

	.sec-info dl div {
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
	}

	.sec-info dl div:last-child {
		margin-bottom: 40px;
	}

	.sec-info dl dt {
		width: 100%;
		text-align: center;
		padding: 0 0 10px 0;
	}

	.sec-info ul {
		gap: 30px;
	}

}	
