@charset "utf-8";
/* CSS Document */



.lower_page_top {
	padding-top: 9rem;
}

/*==========
MV
==========*/
.mv {
	height: 100svh;
	width: 100%;
	position: relative;
}

.mv video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv_pc {
	display: none;
}

.mv_sp {
	display: block;
}

@media (min-width: 768px) {
	.mv {
		height: 100vh;
	}

	.mv_pc {
		display: block;
	}

	.mv_sp {
		display: none;
	}

	.mv .mv_donburi {
		width: 480px;
		bottom: -212px;
	}
}



/*==========
メッセージ
==========*/
.kaminari_wrap {
	background: url(/img/bg_kaminari.jpg) center -2rem no-repeat;
	background-size: 100% auto;
	position: relative;
}

.mv_donburi {
	width: 80%;
	display: block;
	margin: 0 auto;
	/* transform: translateX(20%); */
}

.top_massage {
	padding-bottom: 6rem;
	background-size: 100% auto;
}

.top_massage .logo {
	width: 72%;
	display: block;
	margin: 0 auto 4rem;
}


/*==========
カミナリそばのこだわり
==========*/
.top_kodawari {
	position: relative;
	padding-bottom: 10rem;
	overflow: hidden;
}

.top_kodawari::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url(/img/chara.png) 0 54rem no-repeat;
	background-size: 72% auto;
	opacity: 0.1;
	pointer-events: none;
}

.kodawari_wrap {
	width: 100vw;
	display: flex;
	gap: 4rem;
	overflow: hidden;
	margin-bottom: 4rem;
}

.kodawari_wrap h2 {
	font-family: var(--font_mincho2);
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: .4rem;
	padding-left: 3rem;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-feature-settings: "pkna";
}

.kodawari_wrap img {
	height: 48vh;
	width: auto;
}

.top_kodawari p {
	font-family: var(--font_mincho2);
}

@media (min-width: 768px) {
	.kodawari_wrap h2 {
		font-size: 4.2rem;
		font-weight: 600;
		padding-left: 5rem;;
	}

	.kodawari_wrap img {
		height: 60vh;
	}

}



/*==========
イチオシメニュー
==========*/
.menu_list {
	padding: 8rem 2rem 12rem;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.menu_list .card {
	padding: 2rem 2rem 3rem;
	background-color: #FFF;
	border: solid 4px #000;
}

.menu_list .card img {
	margin-bottom: 2rem;
}

.menu_list .card h3 {
	font-family: var(--font_mincho);
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.menu_list .card .price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--sub_color1);
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.menu_list {
		padding: 8rem 5rem 12rem;
	}

	.menu_list .card {
		padding: 3rem 3rem 5rem;
	}
}


/*==========
公式LINE
==========*/
.line_add {
	padding: 6rem 0 10rem;
}

.line_add .body {
	margin-inline: auto;
	background: url(/img/bg_line.png) center top no-repeat;
	background-size: 100% auto;
	width: 100%;
}

.line_add .flex_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.line_add .flex_wrap .fukidashi {
	width: 56%;
	transform: translate(18px, -24px);
}

.line_add .flex_wrap .chara {
	width: 48%;
	transform: translate(4px, -28px);
}

.line_add .btn_line {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 88%;
	height: 64px;
	border-radius: 50vmax;
	margin: 0 auto;
	background-color: #000142;
	transform: translateY(-4rem);
}

.line_add .btn_line span {
	font-weight: 700;
	color: #FFF;
}



/*==========
店舗一覧
==========*/
.shops {
	padding-bottom: 10rem;
}

.are_list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.are_list .area {
	padding: 0;
}

.are_list .area h3 {
	font-size: 2rem;
	font-weight: 700;
	border-left: solid 8px var(--sub_color1);
	padding: 4px 0 4px 6px;
	margin-bottom: 1.5rem;
}

.shop_list .card,
.shop .card {
	padding: 3rem 2rem;
	background-color: var(--bg_color2);
	border: solid 2px var(--border_color1);
}

.shop_list .card a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	color: var(--font_color1);
}

.shop_list .card .info_wrap,
.shop .card .info_wrap {
	width: 100%;
}

.shop_list .card .info_wrap h4,
.shop .card .info_wrap h4 {
	font-weight: 700;
	margin-bottom: .5rem;
}

.shop_list .card .info_wrap h4 span,
.shop .card .info_wrap h4 span {
	font-family: var(--font_mincho);
	font-size: 2.4rem;
	position: relative;
	padding-right: 30px;
}

.shop_list .card .info_wrap h4 span::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(calc(-50% + 2px));
	width: 20px;
	height: 20px;
	background-image: url(/img/arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.shop_list .card .info_wrap dl,
.shop .card .info_wrap dl {
	display: grid;
	grid-template-columns: minmax(100px, 30%) 1fr;
}

.shop_list .card .info_wrap dl>dt,
.shop .card .info_wrap dl>dt {
	padding: 1rem 0;
	white-space: nowrap;
}

.shop_list .card .info_wrap dl>dd,
.shop .card .info_wrap dl>dd {
	padding: 1rem 0;
}

/* 行の区切り（薄い線） */
dl>dt, dl>dd {
	border-bottom: 1px dotted var(--border_color1);
}

.shop_list .card .info_wrap dl>dd.sns,
.shop .card .info_wrap dl>dd.sns {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.shop_list .card .info_wrap dl>dd.sns img,
.shop .card .info_wrap dl>dd.sns img {
	width: 48px;
	height: 48px;
}


/*==========
店舗ページ
==========*/
.shop {
	margin-bottom: 6rem;
}

.google_map iframe {
	width: 100%;
	height: 48vh;
}

.btn_shop_tel {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 64px;
	/* border: solid 3px var(--border_color1); */
	border-radius: 8px;
	background-color: var(--a_color);
	margin: 3rem;
}

.btn_shop_tel img {
	width: 32px;
	height: 32px;
}

.btn_shop_tel span {
	color: var(--bg_color1);
	font-weight: 600;
}



/*==========
404ページ
==========*/
.not_found {
	height: 100vh;
	padding-top: 60px;
}

.not_found h1 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.not_found_body {
	width: 90%;
	margin: 0 auto;
}

.not_found_body p {
	line-height: 1.6;
	margin-bottom: 60px;
}
