@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*設定する場合→ font-family:'Noto sans japanese', sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/

/* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */

html {
	/* scroll-behavior: smooth; */
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

a:hover {
	opacity: .7;
}

body {
	font-size: 16px;
	background: #FFFFFF;
	font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, メイリオ, Meiryo, sans-serif;
}

#wrapper {
	min-width: 601px;
}

img {
	vertical-align: bottom;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button] {
	-webkit-appearance: none;
	border: 1px solid #999999;
}

input[type=submit] {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.for-sp {
	display: none !important;
}

/*共通
----------------------------------------------------------------------------------------------------*/

:root {
	--black: #000;
	--white: #fff;
	--gold: #a08d61;
	/*  */
	--color-main: var(--white);
	--color-sub: var(--black);
	--color-accent: var(--gold);
}

section {}

.content {
	width: 100%;
	max-width: 1200px;
	padding: 1rem 1rem 4rem;
	margin: 0 auto;
	overflow: hidden;
}

.text-block {
	text-align: center;
	line-height: 1.7;
}

.btn {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 4rem auto 0;

	padding: 1rem 0;

	text-align: center;
	color: var(--color-sub);
	border: 1px solid;
}

.btn--white {
	color: var(--white);
}

.decoration-logo {
	display: block;
	width: 100px;
	height: 100px;
	margin: 4rem auto -2rem;
}

.ttl {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.7;
	margin-top: 4rem;
	text-align: center;
}

.desc-text {
	font-size: 1.2rem;
	margin-top: 4rem;
	text-align: center;
	line-height: 2;
}

.banner {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	padding: 1rem 0;
}

.banner__link {}

.banner__img {
	max-width: 100%;
	width: fit-content;
}



/*ヘッダー
----------------------------------------------------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
}

.header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1rem;
	/*  */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {}

.header__logo-img {
	height: 40px;
}

.hamburger {
	height: 40px;
	width: 40px;
}

.hamburger__inner {
	position: relative;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.hamburger__line {
	width: 80%;
	height: 4px;
	background: #fff;
}

.hamburger__line--1 {}

.hamburger__line--2 {}

.hamburger__line--3 {}

/*  */

/* --- メニュー本体 --- */
.nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100%;
	background: #000;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1rem;
	z-index: 999;
}

.nav--open {
	right: 0;
}

.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* 半透明ブラック */
	backdrop-filter: blur(5px);
	/* 背景ぼかし効果 */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 500;
}

.nav-overlay--active {
	opacity: 1;
	visibility: visible;
}

.nav__close {
	font-size: 2rem;
	background: none;
	border: none;
	color: #fff;
	align-self: flex-end;
	cursor: pointer;
}

.nav__logo {
	font-size: 2rem;
	margin: 2rem 0;
}

.nav__logo-img {
	width: 8rem;
	height: 8rem;
	object-fit: contain;
}

.nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.nav__item {
	margin-bottom: 1.5rem;
}

.nav__link {
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
	transition: opacity 0.3s;
}

.nav__link:hover {
	opacity: 0.7;
}



/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {}

/* １．ヒーローセクション
-------------------------------------------------- */

.hero {
	position: relative;
	width: 100%;
	aspect-ratio: 3/2;
	max-height: 100vh;
	overflow: hidden;
	background-color: #fff;
	/*背景色を指定する場合*/
}

.hero__bg-wrapper {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero__bg {
	width: 100%;
	height: 100%;
}

.hero__bg-video {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position: center; */
	/* object-fit: cover; */
	/* object-fit: contain; */
}

.hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__bg--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #0000007e;
}

.hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.hero__title {
	position: absolute;
	transform: translateY(-50%);
	top: 40%;
	left: 0;
	right: 0;
	margin: auto;

	width: fit-content;
}

.hero__title-logo {}

.hero__news {
	width: fit-content;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 10%;
}

.newsbox {
	border: 1px solid var(--color-accent);
	/* background-color: var(--white); */
	backdrop-filter: blur(5px);
	border-radius: 4px;
	padding: 2rem 4rem;
}

.newsbox__inner {}

.newsbox__link {
	color: #fff;
}

.newsbox__date {
	display: block;
	font-size: .8rem;
	padding-bottom: .5rem;
}

.newsbox__ttl {}

/* ２．イントロダクション
-------------------------------------------------- */

.introduction {
	background: url(./../img/sub/intro_bg.png) no-repeat center center;
	background-size: cover;
}

.introduction__inner {}

.introduction__logo {
	width: 140px;
	height: 140px;
	margin: 2rem auto 0;
}

.introduction__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ３．メニューリンク
-------------------------------------------------- */

.food {}

.food__category {}

.category {
	display: flex;
}

.category__item {
	position: relative;
	/*  */
	flex: 1 0 33.3%;
	max-height: 600px;
	overflow: hidden;
}

.category__link {}

.category__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s;
}

.category__link:hover .category__img {
	transform: scale(1.1);
}

.category__description {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	color: var(--white);
	/*  */
	padding-left: 5rem;
	/*  */
	background: url(./../img/common/mark.png) no-repeat left center;
	background-size: 4rem;
}

.category__name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: .5rem
}

.category__ruby {
	font-weight: 700;
}

/* ４．メニュー
-------------------------------------------------- */

.menu {}

/* ５．記事一覧
-------------------------------------------------- */

.articles {
	position: relative;
	overflow: hidden;
}

.articles__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: url(./../img/sub/articles_bg.png) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

.articles__overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: #00000091;
}


.articles__inner {
	position: relative;
	padding: 4rem 1rem 4rem;
}

.articles__wrapper {
	padding-top: 4rem;
}

.articles__item {
	display: flex !important;
	row-gap: .5rem;
	flex-wrap: wrap;
	/* justify-content: center; */

	flex: 0 0 30%;
}



@media (max-width: 1200px) {
	.articles__item {
		flex: 0 0 50%;
	}

}

.articles__year {
	flex: 0 0 100%;
	text-align: center;
	color: var(--white);
	font-weight: 700;
}

.articles__date {
	flex: 0 0 100%;
	text-align: center;
	color: var(--white);
	font-weight: 700;
	letter-spacing: 0.2rem;
	font-size: 1.6rem;
}

.articles__container {
	flex: 0 0 100%;
	display: flex;
}


.articles__photo {
	position: relative;
	flex: 0 0 50%;
	aspect-ratio: 1/1;
	overflow: hidden;
	max-height: 280px;
	background: #fff;
}

.articles__photo-img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.articles__description {
	flex: 0 0 50%;
	aspect-ratio: 1/1;
	background: var(--white);

	/*  */
	display: flex;
	align-items: center;
	justify-content: center;

	/*  */
	padding: 1rem;

}

.articles__description-text {
	line-height: 2;
	font-size: 1rem;
}

/* ６．特徴
-------------------------------------------------- */

.feature {}


/* ７．ギャラリー
-------------------------------------------------- */

.gallery {}

.gallery__inner {
	padding: 1rem 1rem 4rem;
}

.gallery__list {
	display: grid;
	grid-template-rows: repeat(3, 400px);
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
		"item0 item0 item1 item2"
		"item3 item4 item4 item5"
		"item6 item7 item8 item8";
	gap: 1rem;
}

.gallery__item {
	grid-area: var(--area-name);
	overflow: hidden;
}

.gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}


.gallery__item:hover .gallery__img {
	transform: scale(1.1);
}

.lum-lightbox {
	z-index: 100;
}

/* ８．インフォメーション
-------------------------------------------------- */

.info {
	background: url(./../img/sub/intro_bg.png) no-repeat center center;
	background-size: cover;
}

.info__inner {
	padding: 4rem 1rem 4rem;
	display: flex;
	gap: 1rem;
}

.info__item {
	flex: 0 1 50%;
}

.info__item-flex {
	display: flex;
	gap: 1rem;
}

.info__info-row {
	flex: 0 1 50%;
	min-height: 100px;
}

.info__item-ttl {
	padding: 0 0 .5rem;
	border-bottom: 1px solid;
	font-weight: 700;
	font-size: 1.2rem;
}

.info__item-text {
	padding: .5rem 0 1rem;
	line-height: 1.7;
}



/*フッター
----------------------------------------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 0px;
	/*適宜変更*/
	right: 0;
	/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
	z-index: 99;
	/*適宜変更・削除*/

	display: flex;
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	background: var(--color-accent);
	padding: 1rem;
	/*必要があれば適宜変更*/
}

.pagetop__svg {
	display: block;
	width: 100%;
	height: 100%;

	fill: var(--white);
}

footer {
	background: url(./../img/common/footer_bg.png) no-repeat center center;
	background-size: cover;

	position: relative;
}

.footer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00000085;
}

.footer__inner {
	position: relative;
	padding: 2rem 1rem;
}

.footer__inner--top {}

.footer__title {
	text-align: center;
}

.footer__title-logo {}

.footer__sns {
	text-align: center;
}

.footer__sns-link {}

.footer__sns-svg {
	width: 2rem;
	height: 2rem;
	object-fit: cover;
	fill: var(--white);
}

.footer__inner--bottom {
	text-align: center;
	background: #00000088;
	color: var(--white);
}

.footer__access {
	line-height: 2rem;
}

.footer__hour {
	line-height: 2rem;
}

.footer__tel {
	line-height: 2rem;
}

.footer__inner--menu {
	background: var(--color-main);
}

.footer__menu {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.footer__menu-item {}

.footer__inner--copyright {
	background: var(--color-sub);
	color: var(--white);
	text-align: center;
	height: 80px;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: .8rem;
}