/* Fonts */
/* web font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.13.1/bootstrap-icons.svg');
:root {
	--default-font: "Noto Serif JP", serif;
}
:root {
	--background-color: #fff;
	--default-color: #333;
	--heading-color: #555;
	--accent-color: #103953;
	--surface-color: #fff;
	--contrast-color: #fff;
}
:root {
	--nav-color: #555;
	--nav-hover-color: #000;
	--nav-mobile-background-color: #fafafa;
	--nav-dropdown-background-color: #fff;
	--nav-dropdown-color: #8f8f8f;
	--nav-dropdown-hover-color: #000;
}
.light-background {
	--background-color: #fafafa;
	--surface-color: #fff;
}
.dark-background {
	--background-color: #000;
	--default-color: #fff;
	--heading-color: #fff;
	--surface-color: #252525;
	--contrast-color: #fff;
}
/* Smooth scroll */ :root {
	scroll-behavior: smooth;
}
@view-transition {
	navigation: auto;
}
/*--------------------------------------------------------------

サイト全体設定

--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background: url("../img/site_bg.jpg") repeat center;
	font-family: var(--default-font);
	overflow-x: hidden;
}
a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}
p {
	line-height: 1.75;
}
.center_center {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*--------------------------------------------------------------

テキスト設定

--------------------------------------------------------------*/
.text_small {
	font-size: .9rem !important;
}
.text_xs_small {
	font-size: .75rem !important;
}
.bg_sakagura_blue {
	background-color: var(--accent-color);
	mix-blend-mode: multiply;
}
.text_vertical {
	display: inline-block;
	writing-mode: vertical-rl; /* 縦書き（右から左へブロックが流れる） */
	text-orientation: upright; /* 英数字などを正立で表示 */
}
.vertical_container {
	width: 100%; /* 縦書きの幅を決める */
	height: 300px; /* 縦書きの高さ */
	border: 1px solid #ccc;
	padding: 10px;
	writing-mode: vertical-rl; /* 縦書き */
	text-orientation: upright; /* 数字も正立に */
}
/* 右から左への流れを視覚的にわかりやすく */
.vertical_container p {
	margin: 0;
	padding: 5px;
	background-color: #f0f0f0;
	border-bottom: 1px dashed #aaa;
}
/* -- 三点省略（2行） -- */
.text_clamp {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 3.3em;
}
/* --------------------------------------------------------------

背景装飾文字

-------------------------------------------------------------- */
.bg-text {
	position: relative;
}
.bg-text:after {
	content: attr(data-text);
	position: absolute;
	right: 5%;
	top: 50%;
	font-weight: 400;
	font-size: 9rem;
	line-height: 70%;
	letter-spacing: -0.1em;
	color: rgba(255, 255, 255, .5);
	z-index: -1;
}
@media only screen and (max-width: 768px) {
	.bg-text:after {
		font-size: 5rem;
		right: 0;
	}
}
/*--------------------------------------------------------------

テキストエフェクト

--------------------------------------------------------------*/
.sticky-banner {
	position: fixed; /* バナーを追従させる */
	z-index: 99999; /* 他の要素の下に隠れないように */
	bottom: 10%; /* バナーの上下の位置 */
	right: 1%; /* バナーの左右の位置 */
	width: 100px; /* バナーの横幅 */
	background: none;
}
@media only screen and (max-width: 1200px) {
	.sticky-banner {
		bottom: 0;
		left: 50%;
		width: 65%;
		height: 45px;
		transform: translateX(-50%)
	}
}
/*--------------------------------------------------------------

ボタンデザイン

--------------------------------------------------------------*/
/* -- ボタン01 -- */
.sakagura_btn01 {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	border-top: 2px dotted #333;
	border-bottom: 2px dotted #333;
	height: 60px;
	width: 100%;
	text-align: center;
}
.sakagura_btn01_icon {
	position: relative;
	border-radius: 50%;
	;
	background-color: var(--accent-color);
	width: 55px;
	height: 50px;
	color: #fff;
	transition: 0.3s;
}
.sakagura_btn01 svg {
	position: absolute;
	inset: 0;
	margin: auto;
	fill: #fff;
	transition: .5s all;
}
.sakagura_btn01 span {
	display: inline-block;
	width: 100%;
	color: #333;
	font-size: 1rem;
}
.sakagura_btn01:hover svg {
	animation: iconAnime 1s linear;
}
@keyframes iconAnime {
	25% {
		transform: rotate(-50deg);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: rotate(-50deg);
	}
}
/* -- ボタン02 丸ボタン -- */
.sakagura_btn02 {
	display: inline-block;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.40);
	color: var(--accent-color);
	width: 110px;
	height: 110px;
	line-height: 110px;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.70);
	border: dashed 2px var(--accent-color);
	transition: .4s;
}
.sakagura_btn02:hover {
	background: rgba(255, 255, 255, 0.70);
	box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.10);
}
/* -- /* -- ボタン03 予約ボタン -- */
.sakagura_btn03 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	border-radius: 50%;
	background-color: var(--accent-color);
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	transition: 1s all;
	box-shadow: 0px 0px 0px 5px var(--accent-color);
	border: dashed 2px #FFF;
}
.sakagura_btn03 svg {
	position: absolute;
	inset: 0;
	margin: auto;
	height: 20px;
	fill: #fff;
	transition: .5s all;
	opacity: 0;
}
.sakagura_btn03 span {
	color: #fff;
	text-align: center;
	z-index: 1;
	font-size: .9rem;
}
.sakagura_btn03:hover span {
	animation: textAnime 1s linear forwards;
}
.sakagura_btn03:hover svg {
	animation: iconAnime 1s 0.7s linear forwards;
}
@keyframes textAnime {
	0% {
		transform: scaleX(1);
	}
	50% {
		font-weight: bold;
		transform: scaleX(1.3);
		opacity: 1;
	}
	100% {
		transform: scaleX(0.3);
		opacity: 0;
	}
}
@keyframes iconAnime {
	0% {
		opacity: 1;
	}
	25% {
		transform: translate(-3px, 3px);
	}
	50% {
		transform: translate(3px, -3px);
	}
	75% {
		transform: translate(-3px, 3px);
	}
	100% {
		opacity: 1;
	}
}
@media only screen and (max-width: 1200px) {
	.sakagura_btn03 {
		height: 40px;
		border-radius: 10px 10px 0 0;
		border-bottom: none;
	}
}
/*--------------------------------------------------------------

見出しデザイン

--------------------------------------------------------------*/
/* -- 見出し01 -- */
.midashi_design01 {
	padding: 0.5rem 0 2.5rem;
	background: linear-gradient(90deg, #b2d5de 0% 33%, #dddcb3 33% 66%, #ddb3b3 66%);
	background-repeat: no-repeat;
	background-size: 4rem 0.4rem;
	background-position: bottom;
	text-align: center;
}
/* -- 見出し02 -- */
.midashi_design02 {
	padding: 1rem 0;
	margin-bottom: 0.2rem;
	background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
	background-repeat: no-repeat;
	background-size: 100% 0.3rem;
	background-position: bottom;
}
/* -- 見出し03 -- */
.midashi_design03 {
	position: relative;
	padding: 0.8rem 0;
	margin-bottom: 0.2rem;
	overflow: hidden;
}
.midashi_design03:before, .midashi_design03:after {
	position: absolute;
	width: 100%;
	bottom: 0;
	content: '';
}
.midashi_design03:before {
	border-bottom: 2px solid var(--accent-color);
}
.midashi_design03:after {
	border-bottom: 2px solid #ccc;
}
/* -- 見出し04 -- */
.midashi_design04 {
	padding: 0.8rem 0;
	margin-bottom: 0.2rem;
	background-image: linear-gradient(90deg, var(--accent-color) 0 50px, transparent 50px 60px, #ccc 0 60px);
	background-repeat: no-repeat;
	background-size: 100% 3px;
	background-position: bottom;
	font-weight: bold;
	text-align: left;
}
/* -- 見出し05 -- */
.midashi_design05 {
	background-image: linear-gradient(90deg, var(--accent-color) 0 50px, transparent 50px 60px, #ccc 0 60px);
	background-repeat: no-repeat;
	background-size: 100% 3px;
	background-position: bottom;
	padding: 12px 0;
	line-height: 1;
}
.midashi_design05 span {
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	color: #fff;
	font-size: .9rem;
	margin-bottom: .8rem;
	padding: 8px 10px;
	border-radius: 0 10px 0 10px;
	background: var(--accent-color);
}
/*--------------------------------------------------------------

囲み罫線

--------------------------------------------------------------*/
.box_design01 {
	--x-gradient: linear-gradient(90deg, #333 0 20px, transparent 0 calc(100% - 20px), #333 calc(100% - 20px));
	--y-gradient: linear-gradient(#333 0 20px, transparent 0 calc(100% - 20px), #333 calc(100% - 20px));
	margin: 0.5rem;
	padding: 1.5rem;
	background-image:
		var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
	background-repeat: no-repeat;
	background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
	background-position: top, right, bottom, left;
}
.box_design02 {
	margin: 0.5rem;
	padding: 1rem;
	box-shadow: 0 0 0 10px rgba(255, 255, 255, .5);
	border-style: solid solid;
	border-width: 5px;
	border-color: #CDE7F3 #f2cdd7 #cdf2d3 #f2eecd;
	background-color: rgba(255, 255, 255, .5);
}
/* お酒にお勧め料理 */
.box_design03 {
	margin: 0;
	position: relative;
	border-left: 2px solid var(--accent-color);
	width: 100%;
	text-align: left;
}
.box_design03 .box-title {
	background: var(--accent-color);
	color: #fff;
	padding: 0.2em 1em;
	position: absolute;
	top: 0;
	left: 0.5em;
	display: inline-block;
	font-size: .8em;
	font-weight: bold;
	border-radius: 3px 0 3px 0;
	max-width: calc(100% - 2em);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.box_design03 .box-content {
	padding: 2.5em .5em 0em;
	font-size: .85em;
}
.box_design03 .box-content dl dd{
	background: none;
	border:none;
}
/*--------------------------------------------------------------

リストデザイン

--------------------------------------------------------------*/
/* -- リスト01 -- */
.list_design01 ul {
	padding: 0 0.5em;
	position: relative;
}
.list_design01 ul li {
	line-height: 1.5;
	padding: 0.5em 0 0.5em 1.75em;
	border-bottom: dashed 1px #333;
	list-style-type: none !important;
}
.list_design01 ul li:before {
	font-family: "bootstrap-icons";
	content: "\f280";
	position: absolute;
	left: 0.5em;
	color: var(--accent-color);
}
.list_design01 ul li:last-of-type {
	border-bottom: none;
}
/* -- 番号リスト01 -- */
.num_design01 ol {
	counter-reset: number;
	list-style-type: none !important;
	padding: 0.3em 0.8em;
}
.num_design01 ol li {
	border-bottom: dashed 1px #333;
	position: relative;
	padding: 0.5em 0.5em 0.5em 30px;
	line-height: 1.5em;
}
.num_design01 ol li:before {
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display: inline-block;
	background: var(--accent-color);
	color: white;
	font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
	font-weight: bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.num_design01 ol li:last-of-type {
	border-bottom: none;
}
/*--------------------------------------------------------------

可変テーブル

--------------------------------------------------------------*/
.res_table01 table {
	margin: 0;
	width: 100%;
}
.res_table01 th {
	background: var(--accent-color);
	border-bottom: 1px solid #666;
	color: #fff;
	padding: 10px;
}
.res_table01 td {
	border-bottom: solid 1px #666;
	padding: 10px;
}
@media screen and (max-width: 640px) {
	.last td:last-child {
		border-bottom: solid 1px #666;
		width: 100%;
	}
	.res_table01 {
		width: 100%;
	}
	.res_table01 th, .res_table01 td {
		border-bottom: none;
		display: block;
		width: 100%;
	}
}
.res_table02 table {
	margin: 0;
	width: 100%;
}
.res_table02 th {
	background: var(--accent-color);
	border: 1px solid #666;
	color: #fff;
	padding: 10px;
}
.res_table02 td {
	border-bottom: solid 1px #666;
	padding: 10px;
}
@media screen and (max-width: 640px) {
	.res_table02 {
		margin-top: 40px;
		width: 100%;
	}
	.res_table02 .thead {
		display: none;
	}
	.res_table02 tr, .res_table02 td {
		display: block;
		width: 100%;
		position: relative;
	}
	.res_table02 td:first-child:before {
		content: "見出し";
		background: var(--accent-color);
		box-sizing: border-box;
		color: #fff;
		font-weight: bold;
		height: 40px;
		padding: 10px;
		position: absolute;
		top: -41px;
		left: -0.2%;
		display: block;
		width: 100.5%;
	}
	.res_table02 tr {
		margin-bottom: 40px;
	}
}
/*--------------------------------------------------------------

ヘッダー設定

--------------------------------------------------------------*/
.header {
	background-color: rgba(255, 255, 255, 0);
	color: var(--default-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}
.header .logo {
	line-height: 1;
}
.header .logo img {
	max-height: 2.4rem;
	margin-right: 1rem;
}
.header .logo h1 {
	font-size: 1.3rem;
	margin: 0;
	font-weight: 500;
	color: var(--heading-color);
}
/*--------------------------------------------------------------

ナビゲーション

--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
	background-color: var(--background-color);
	padding: 6px;
	color: var(--nav-color);
	position: fixed;
	top: 15px;
	right: 15px;
	font-size: 2rem;
	line-height: 0;
	cursor: pointer;
	display: block !important;
	z-index: 998;
	transition: 0.3s;
	border-radius: 50%;
}
.mobile-nav-toggle:hover {
	color: var(--nav-hover-color);
}
.navmenu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100vw;
	z-index: 997;
	transition: 1.3s;
	width: 100vw;
	overflow: hidden;
	background: url("../img/site_bg.jpg") repeat center;
}
.navmenu ul {
	display: block;
	list-style: none;
	padding: 10px 0;
	margin: 0 auto;
	overflow-y: auto;
	transition: 0.3s;
	z-index: 998;
	width: 300px;
}
.navmenu a, .navmenu a:focus {
	color: var(--nav-dropdown-color);
	padding: 10px 20px;
	font-family: var(--nav-font);
	font-size: 1rem;
	font-weight: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	line-height: 3.4;
	border-bottom: 1px solid #ccc;
}
.navmenu a i, .navmenu a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.navmenu a i:hover, .navmenu a:focus i:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}
.navmenu a:hover, .navmenu .active, .navmenu .active:focus {
	color: var(--nav-dropdown-hover-color);
}
.navmenu .active i, .navmenu .active:focus i {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	transform: rotate(180deg);
}
.navmenu .dropdown ul {
	position: static;
	display: none;
	z-index: 99;
	padding: 10px 0;
	margin: 10px 20px;
	box-shadow: none;
	transition: all 0.5s ease-in-out;
}
.navmenu .dropdown > .dropdown-active {
	display: block;
	background-color: var(--nav-dropdown-background-color);
	border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
	right: 15px;
	font-size: 2rem;
}
.mobile-nav-active .navmenu {
	position: fixed;
	overflow: hidden;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: var(--nav-mobile-background-color);
	transition: 1.3s;
}
/*--------------------------------------------------------------

パンぐずリスト

--------------------------------------------------------------*/
.breadcrumbs {
	margin-bottom: 1.5rem;
}
.breadcrumbs .breadcrumb {
	justify-content: right;
	margin: 0;
	padding: 0 2rem 0 0;
	background: none;
}
.breadcrumbs .breadcrumb .breadcrumb-item {
	font-size: 0.9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.breadcrumbs .breadcrumb .breadcrumb-item.active {
	color: var(--accent-color);
}
.breadcrumbs .breadcrumb .breadcrumb-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 300;
}
.breadcrumbs .breadcrumb .breadcrumb-item a:hover {
	color: var(--accent-color);
}
.breadcrumbs .breadcrumb .breadcrumb-item a i {
	font-size: 0.9rem;
	margin-right: 0.2rem;
}
.breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}
/*--------------------------------------------------------------

# Disable aos animation delay on mobile devices

--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}
/*--------------------------------------------------------------

section設定

--------------------------------------------------------------*/
section, .section {
	padding: 60px 0;
	overflow: clip;
}
/*--------------------------------------------------------------

セクションタイトル

--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}
/*--------------------------------------------------------------

トップページ（hero）セクション

--------------------------------------------------------------*/
.hero {
	min-height: 75vh;
	align-items: center;
	display: grid;
	place-items: center;
}
.intro h1 {
	margin: 0 0 2rem 0;
	font-weight: 700;
	font-size: 9rem;
	line-height: 1;
	letter-spacing: .03em;
	color: var(--accent-color);
}
.intro h1 span {
	font-size: 2rem;
	vertical-align: baseline;
}
.intro p {
	font-size: 1.5rem;
	line-height: 1.8;
}
@media (max-width: 1200px) {
	.intro h1 {
		margin: 2rem 0;
		font-size: 9rem;
		line-height: 1.1;
	}
	.intro h1 span {
		font-size: 2.2rem;
		vertical-align: baseline;
	}
	.intro p {
		font-size: 1.5rem;
		margin: 0rem 0;
	}
}
@media (max-width: 576px) {
	.intro h1 {
		font-size: 5rem;
		text-align: center;
		line-height: .4;
	}
	.intro h1 span {
		font-size: 1.3rem;
		vertical-align: baseline;
	}
	.intro p {
		font-size: .8rem;
		text-align: center;
	}
}
/*--------------------------------------------------------------

# コンセプト

--------------------------------------------------------------*/
/*--------------------------------------------------------------

お酒飲み比べセクション

--------------------------------------------------------------*/
.special .special-navigation {
	gap: 2rem;
	margin-bottom: 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	border: none;
}
@media (max-width: 992px) {
	.special .special-navigation {
		padding: 0;
	}
}
.special .special-navigation .nav-item .nav-link {
	background: none;
	border: none;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 1rem .5rem;
	border-radius: 0;
	transition: all 0.3s ease;
	position: relative;
	color: var(--default-color);
}
.special .special-navigation .nav-item .nav-link .nav-number {
	font-size: 2rem;
	font-weight: bolder;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	transition: color 0.3s ease;
}
.special .special-navigation .nav-item .nav-link .nav-label {
	font-size: 1rem;
	font-weight: 400;
	color: var(--default-color);
	transition: color 0.3s ease;
}
.special .special-navigation .nav-item .nav-link::after {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 2px;
	background: var(--accent-color);
	transition: transform 0.3s ease;
}
.special .special-navigation .nav-item .nav-link:hover, .special .special-navigation .nav-item .nav-link.active {
	background: none;
	border: none;
	box-shadow: none;
}
.special .special-navigation .nav-item .nav-link:hover .nav-number, .special .special-navigation .nav-item .nav-link.active .nav-number {
	color: var(--accent-color);
}
.special .special-navigation .nav-item .nav-link:hover .nav-label, .special .special-navigation .nav-item .nav-link.active .nav-label {
	color: var(--accent-color);
}
.special .special-navigation .nav-item .nav-link:hover::after, .special .special-navigation .nav-item .nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}
.special .special-navigation .nav-item .nav-link:focus {
	outline: none;
	box-shadow: none;
}
@media (max-width: 992px) {
	.special .special-navigation .nav-item .nav-link::after {
		display: none;
	}
}
.special .special-content .tab-pane {
	min-height: 400px;
}
.special .section-intro .special_card {
	margin: 0;
	width: 100%;
	color: var(--accent-color);
	text-align: center;
	box-shadow: none !important;
	position: relative;
	padding: 10px;
	border: 2px solid var(--accent-color);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50%;
}
.special .section-intro .special_card:before {
	content: '';
	background-color: #fff;
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	z-index: -1;
	border-radius: 50%;
}
.special .section-intro .special_card * {
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.special .section-intro .special_card img {
	max-width: 100%;
	vertical-align: top;
	background-image: linear-gradient(#fff, #ccc);
}
.special .section-intro .special_card figcaption, .special .section-intro .special_card .link {
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 20px;
	right: 20px;
}
.special .section-intro .special_card h2, .special .section-intro .special_card h3 {
	margin: 0px;
	position: absolute;
	width: 100%;
}
.special .section-intro .special_card h2 {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.5em;
}
.special .section-intro .special_card h2 span {
	color: #e8b563;
}
.special .section-intro .special_card h3 {
	font-size: 1.3em;
	bottom: 0;
	font-weight: 700;
	letter-spacing: 2px;
}
.special .section-intro .special_card:hover img, .special .section-intro .special_card.hover img {
	opacity: 0.35;
}
@media (max-width: 992px) {
	.special .special-navigation {
		gap: 2rem;
		margin-bottom: 3rem;
	}
	.special .special-navigation .nav-item .nav-link {
		padding: 0.75rem 1rem;
	}
	.special .special-navigation .nav-item .nav-link .nav-label {
		font-size: 0.9rem;
	}
	.special .section-intro {
		width: 75%;
		margin: 0 auto 3rem;
	}
}
@media (max-width: 768px) {
	.special .special-navigation {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	.special .special-navigation .nav-item {
		width: 100%;
	}
	.special .special-navigation .nav-item .nav-link {
		justify-content: center;
		width: 100%;
	}
}
@media (max-width: 576px) {
	.special .section-intro .special_card h2 {
		font-size: 1.3rem;
	}
	.special .section-intro .special_card h3 {
		font-size: 1.1rem;
	}
}
/*--------------------------------------------------------------

酒蔵三選（タブ切り替え）

--------------------------------------------------------------*/
--section-spacing: 3rem;
--content-spacing: 2rem;
--subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.nav-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: all 0.3s ease;
}
.nav-link.prev-project, .nav-link.next-project {
	color: var(--heading-color);
}
.nav-link.prev-project .nav-direction, .nav-link.next-project .nav-direction {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin-bottom: 0.25rem;
}
.nav-link.prev-project .nav-title, .nav-link.next-project .nav-title {
	font-size: 1.1rem;
	font-weight: 500;
}
.nav-link.prev-project:hover, .nav-link.next-project:hover {
	color: var(--accent-color);
	transform: translateY(-3px);
}
.nav-link.next-project {
	text-align: right;
}
.nav-link.all-projects {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 25px;
	color: var(--heading-color);
	font-weight: 500;
	transition: all 0.3s ease;
}
.nav-link.all-projects i {
	font-size: 1rem;
}
.nav-link.all-projects:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-3px);
}
@media (max-width: 991px) {
	.hero-content .project-title {
		font-size: 3rem;
	}
	.project-meta-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.content-section .project-overview .challenge-solution {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.metrics-showcase .metrics-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}
@media (max-width: 768px) {
		{
		--section-spacing: 3rem;
	}
	.hero-content .project-title {
		font-size: 1.5rem;
	}
	.nav-link.prev-project, .nav-link.next-project {
		text-align: center;
	}
	.nav-link.all-projects {
		order: -1;
	}
}
/*--------------------------------------------------------------

お知らせ一覧・お知らせページ

--------------------------------------------------------------*/
.sakagura_info_list_item {
	padding: 1.5rem 0 1.2rem;
	border-top: 1px dotted #333;
}
.sakagura_info_list_item:last-child {
	border-top: 1px dotted #333;
	border-bottom: 1px dotted #333;
}
.sakagura_info_list_item h4 {
	font-size: 1.1rem;
	vertical-align: middle;
}
.sakagura_info_list_item h4 span.date {
	margin-right: 1rem;
	font-size: 1rem;
}
.info img {
	width: 80%;
	height: auto;
	object-fit: cover;
	margin: 1em 10%;
}
@media (max-width: 768px) {
	.info img {
		width: 100%;
		margin: 1em auto;
	}
}
/* --------------------------------------------------------------

お知らせ一覧ページ

-------------------------------------------------------------- */
/* -- ページネーション -- */
.pagination01 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	list-style-type: none;
	padding: 0;
}
.pagination01 a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border-bottom: 2px solid #fff;
	color: #333;
	text-decoration: none;
}
.pagination01 .current a {
	border-bottom: 2px solid #103953;
	pointer-events: none;
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	list-style-type: none;
	padding: 0;
	min-width: 75%;
	margin: 2rem auto;
}
.nav-links a.page-numbers {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	border-bottom: 2px solid #fff;
	color: #333;
	text-decoration: none;
}
.nav-links span.current {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 2px solid #103953;
	pointer-events: none;
	width: 2em;
	height: 2em;
}
/* --------------------------------------------------------------

アクセス：googlemapモノトーン設定

-------------------------------------------------------------- */
.google-map iframe {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
/*--------------------------------------------------------------

お品書き・コース料理ページ

--------------------------------------------------------------*/
/* -- メニュー リスト -- */
.menu_item_list ul {
	margin: 2rem auto;
	padding: 0 0.5em;
	position: relative;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	width: 75%;
}
.menu_item_list ul li {
	display: inline-block;
	text-align: left;
	line-height: 1.5;
	padding: 1em 0 1em 1.4em;
	border-bottom: dashed 1px #ccc;
	list-style-type: none !important;
	min-width: 100%;
}
.menu_item_list ul li:before {
	font-family: "bootstrap-icons";
	content: "\F3CF";
	position: absolute;
	left: 0.5em;
	color: #ffb03f;
}
.menu_item_list ul li:last-of-type {
	border-bottom: none;
	width: 90%;
}
/* -- メニューカードA -- */
.menu_item_a02 {
	position: relative;
	display: inline-block;
	margin: 0 0 3rem 0;
	width: 100%;
	text-align: left;
	background: none;
	border-radius: 20px;
	border-top: 1px solid #ccc;
}
.menu_item_a02 *, .menu_item_a02:before, .menu_item_a02:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.menu_item_a02 img {
	max-width: 35%;
	margin-top: -1rem;
	margin-left: 60%;
	margin-bottom: 1rem;
	backface-visibility: hidden;
	vertical-align: top;
	border-radius: 50%;
}
.menu_item_a02 .price {
	background-color: rgba(255, 255, 255, 0.50);
	color: #333;
	font-size: 1.2rem;
	font-weight: 800;
	min-height: 48px;
	min-width: 200px;
	padding: 10px;
	position: absolute;
	right: 1rem;
	bottom: 0;
	text-align: right;
}
.menu_item_a02 .price span.value {
	display: inline;
	line-height: 1.2;
}
.menu_item_a02 .price .unit {
	font-size: .9rem;
}
.menu_item_a02 figcaption {
	position: absolute;
	top: 0;
	right: 40%;
	left: 0;
	bottom: 0;
	padding: 1.6rem;
}
.menu_item_a02 h3 {
	margin: 0;
	font-size: 1.2em;
	font-weight: normal;
}
/* -- メニューB --*/
.menu_item_b {}
.menu_item_b .menu_img {
	border-radius: 50%;
	border: 5px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
/* -- メニューC --*/
.menu_item_c {
	margin-top: 1.5em;
	border-bottom: 1px dotted var(--accent-color);
}
.menu_item_c h6 {
	padding-bottom: 6px;
	font-weight: normal;
}
.sakagura_price01 {
	font-style: italic;
	color: crimson;
	font-weight: 900;
}
.sakagura_price02 {
	position: relative;
	height: 75px;
	margin: 1rem 0 85px 0;
	padding: 0 2rem 0 1rem;
	word-break: break-all;
	color: #333;
}
.sakagura_price02:after {
	position: absolute;
	top: 0;
	right: -55px;
	width: 0;
	height: 0;
	content: '';
}
.sakagura_price02 span {
	position: absolute;
	top: 0;
	right: -85px;
	display: block;
	color: #333;
}
.sakagura_price03 {
	color: #fff;
	padding: 0.5em 1em .7em 1em;
	line-height: 1.3;
	background: var(--accent-color);
	vertical-align: middle;
	border-radius: 25px 0px 0px 25px;
}
.sakagura_price03:before {
	content: '●';
	color: #fff;
	margin-right: 8px;
}
/*--------------------------------------------------------------

フッター設定

--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: none;
	font-size: .9rem;
	padding: 40px 0 90px;
	position: relative;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.footer .copyright p {
	margin-bottom: 0;
}
.footer .social-links {
	margin-top: 20px;
}
.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	margin: 0 5px;
	transition: 0.3s;
}
.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}
.footer .credits {
	margin-top: 10px;
	font-size: 1em;
	text-align: center;
}
/*--------------------------------------------------------------

プレローダー

--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
#preloader div {
	width: 13px;
	height: 13px;
	background-color: var(--accent-color);
	border-radius: 50%;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
	position: absolute;
	left: 50%;
}
#preloader div:nth-child(1) {
	left: calc(50% + 8px);
	animation: animate-preloader-1 0.6s infinite;
}
#preloader div:nth-child(2) {
	left: calc(50% + 8px);
	animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(3) {
	left: calc(50% + 32px);
	animation: animate-preloader-2 0.6s infinite;
}
#preloader div:nth-child(4) {
	left: calc(50% + 56px);
	animation: animate-preloader-3 0.6s infinite;
}
@keyframes animate-preloader-1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes animate-preloader-3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes animate-preloader-2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
/*--------------------------------------------------------------

ページトップに戻るボタン

--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}
.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}
.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}