@charset "utf-8";
/* CSS Document */

#sub {
	margin-top: 72px;
}

.decoration-logo.mb-2 {
	margin-bottom: 2rem;
}

/* サブページ　ヘッダー
----------------------------------------------------------------------------------------------------*/

header {
	background: var(--black);
}

/* １．サブヘッダー
--------------------------------------------- */

.head {
	position: relative;
	height: 200px;
}

.head__bg-item {
	position: absolute;
	height: 100%;
	width: 100%;
}

.head__bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 15%);
	z-index: 1;
}

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

.head__inner {
	position: absolute;
	height: 60%;
	width: 100%;
	padding: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	border-top: 1px solid #ffffff80;
}

.head__title {}

.head__title-text {
	font-weight: 600;
	font-size: 2rem;
	color: var(--white);
}

/* ２．ぱんくず
--------------------------------------------- */

.bread {
	border-bottom: 1px solid var(--color-accent);
}

.bread__inner {
	max-width: 1200px;
	width: 100%;
	padding: 1rem;
	margin: auto;
}

.bread__ul {
	display: flex;
	gap: 1rem;
}

.bread__item {
	font-size: .9rem;
}

.bread__link {}

.bread__current {
	color: var(--color-accent);
}

.bread__arrow {}

.bread__arrow-svg {
	width: .9rem;
	height: .9rem;
	object-fit: contain;
}

/* ３．フードブロック
--------------------------------------------- */

.food__category {}

.food__box {}

.food__box--recommend {}

.food__category {
	margin-top: 2rem;
	/*  */
	display: flex;
	gap: 1rem;
}

.food__category--main {}

.food__category--sub {}

.food__category--list {}

.food__item {
	position: relative;
}

.food__category--main .food__item,
.food__category--list .food__item {
	flex: 0 0 50%;
}

.food__category--sub .food__item {
	flex: 0 0 33.3%;
}

.food__item-inner {}

.food__category--sub .food__item-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.food__item-drink {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid;
}

.food__drink-name {
	font-size: 1.2rem;
	font-weight: 600;
}

.food__item-figure {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.food__category--sub .food__item-figure {
	width: 100%;
	flex: 0 0 64%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

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

.food__item-desc {
	background: #fff;
	padding: 2rem;
}

.food__category--sub .food__item-desc {
	height: 100%;
	flex: 0 1 36%;
	/*  */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.food__category--main .food__item-desc {
	width: 80%;
	margin: -10% auto 10%;
	position: relative;
}

.food__item-name {
	font-size: 1.4rem;
	font-weight: 600;
}

.food__item-text {
	font-size: .9rem;
	line-height: 1.5rem;
}

.food__price-list {
	margin-top: 1rem;
}

.food__price-item {
	display: flex;
	justify-content: space-between;
	margin-top: .5rem;
	font-weight: 600;
}

.food__price-desc {}

.food__price {
	font-size: 1.2rem;
	flex: 1 1 50%;
	text-align: end;
}

/* ４．コンセプト
--------------------------------------------- */

.concept {
}

.concept__gallery {
	background: #ececec;
}

.concept__rellax {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 5;
	padding-top: 31.25%;
	overflow: hidden;
}

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

.concept__gallery-inner {
	position: relative;
	padding: 2rem;
	background: #ececec;
	margin: -10% auto 0%;
	overflow: hidden;
}

.concept__gallery-children {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.concept__gallery-child {
	flex: 0 0 calc(33.3% - (1rem / 3));
	max-width: calc(33.3% - (1rem / 3));
	max-height: 25vw;
	aspect-ratio: 1 / 1;
	/* 1:1の比率 */
}

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