@charset "utf-8";


/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400&family=Zen+Old+Mincho:wght@400;700&display=swap');

/*Font Awesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*lightbox.css*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);


/*opa1のキーフレーム*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*animation1のキーフレーム設定（開閉ブロックアニメーション）*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*全体の設定*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 14px;	/*基準となるフォントサイズ*/
	}

	}/*追加指定ここまで*/

body {
	font-family: "Kaisei Tokumin", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;	/*フォント種類*/
	font-weight: 400;
	font-optical-sizing: auto;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	-webkit-text-size-adjust: none;
	margin: 0;padding: 0;
	line-height: 2.5;		/*行間*/
	background: #90887d;		/*背景色*/
	color: #fff;			/*文字色*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;}
nav ul {list-style: none;}
h1,h2,h3,h4 {font-weight: 400;}

/*table全般*/
table {border-collapse:collapse;}

/*画像全般*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
strong {font-weight: 500;}


/*リンクテキスト全般*/
a {
	color: #fff;	/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間0.3秒*/
}

/*マウスオン*/
a:hover {
	text-decoration: none;
}


/*header（ロゴとメニューが入ったブロック）*/
header {
	width: 250px;		/*幅*/
	padding: 0 2vw;		/*ヘッダー内の余白。上下、左右への順番*/
	margin-top: 5vw;	/*ヘッダーの上に空けるスペース*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ロゴ*/
header #logo img {display: block;}
header #logo {
	padding: 0;margin: 0;
}

/*ロゴ下の小文字*/
header #logo span {
	display: block;
	font-size: 0.7rem;	/*文字サイズを70%に*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	header {
		position: fixed;	/*スクロールしても動かないようにする設定*/
		left: 0px;
		top: 0px;
	}

	}/*追加指定ここまで*/

	/*画面の高さが500px以下の追加指定*/
	@media screen and (max-height:500px) {

	header {
		position: absolute;	/*メニューが切れて見えなくならないように、fixedを中止*/
	}

	}/*追加指定ここまで*/


/*mainブロック（右側のsectionを囲むブロック）*/

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	main {
		margin-left: 250px;	/*headerのwidthに合わせる*/
	}

	}/*追加指定ここまで*/


/*main内のh2*/
main h2 {
	font-size: 2.5rem;	/*文字サイズを2.5倍*/
}

/*main内のh3*/
main h3 {
	font-size: 1.5rem;	/*文字サイズを1.5倍*/
}



/*メニューブロック*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*メニュー*/
/*メニューブロック全体*/
#menubar ul {
	margin: 3rem 0;	/*メニューブロックの外側に空けるスペース*/
}

/*メニュー一個あたり*/
#menubar nav a {
	text-decoration: none;display: block;
	background: rgba(100,100,100,0.7);	/*背景色。グレーに統一。*/
	border: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、色。255,255,255は白のことで0.3は色が30%出た状態*/
	color: #fff;		/*文字色*/
	padding: 0.5rem;	/*余白*/
	margin: 0.5rem 0;	/*メニューの外側に空けるスペース。上下、左右*/
	border-radius: 0;	/*角を丸くする指定*/
}

/*マウスオン*/
#menubar nav a:hover {
	background: rgba(0,0,0,0.9);	/*背景色。透明度を変更して濃く*/
	border: 1px solid rgba(255,255,255,0.9);	/*枠線。透明度を変更して濃く*/
}

/*900px以下画面でのメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	background: rgba(0,0,0,0.8);		/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}
.small-screen #menubar ul {
	margin: 3rem;	/*メニューブロックの外側に空けるスペース*/
}


/*ハンバーガーアイコン設定*/
/*ハンバーガーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;			/*右からの配置場所指定*/
	top: 30px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（ハンバーガーが出ている場合の幅）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（ハンバーガー）部分。flexはデフォルトで横並びになる、それを縦並びに変更*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: #000;	/*背景色*/
}

/*バー1本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※1本目および2本目のバーの共通設定*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センター*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※1本目のバー*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※3本目のバー*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※2本目のバー*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*2本目は使わないので非表示にする*/
}


/*メニュー内にあるソーシャルメディアアイコン*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
ul.icons i {
	font-size: 20px;	/*Font Awesomeのアイコンサイズ*/
}


/*section*/
/*フェード設定*/
.section::before {
	opacity: 0; /* 初期状態では非表示 */
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
}
.section.active::before {
	opacity: 1; /* フェードイン状態 */
}
.section.inactive::before {
	opacity: 0; /* フェードアウト状態 */
}

/*section要素*/
section {
	padding: 2vw 5vw;	/*ボックス内の余白。上下、左右への順番*/
}

/*４つのsectionブロックの共通設定*/
#section1,#section2,#section3,#section4 {
	min-height: calc(100dvh - 50px);	/*最低の高さ。100dvhは画面の高さ100%のこと。50pxは下のmarginの値*/
	margin-bottom: 50px;	/*ボックスの下に空けるスペース*/
	padding: 5vw;			/*ボックス内の余白*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	#section1,#section2,#section3,#section4 {
		border-radius: 0;	/*角丸なし（角に変更）*/
	}

	}/*追加指定ここまで*/


/*背景画像を置く為の設定*/
#section1::before,#section2::before,#section3::before,#section4::before {
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*section1の設定*/
#section1 {
	color: #fff;	/*文字色*/
}
#section1::before {
	background: url('../images/section1.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*section2の設定*/
#section2 {
	background-color: rgba(80,80,80,0.85);	/*背景色。グレーに変更、透明度を上げて背景に負けない濃さ*/
	color: #fff;	/*文字色*/
}
#section2::before {
	background: url('../images/section2.png') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*section3の設定*/
#section3 {
	background-color: rgba(80,80,80,0.85);	/*背景色。グレーに変更、透明度を上げて背景に負けない濃さ*/
	color: #fff;	/*文字色*/
}
#section3::before {
	background: url('../images/section3.png') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*section4の設定*/
#section4 {
	background-color: rgba(80,80,80,0.85);	/*背景色。グレー。他のセクションと統一*/
	color: #fff;	/*文字色*/
}
#section4::before {
	background: url('../images/section4.png') no-repeat center center / cover;	/*背景画像の読み込み*/
}

	/*縦向き端末用の背景画像（section4）*/
	@media (orientation: portrait) {
	#section4::before {
		background-image: url('../images/section4_portrait.png');
	}
	}

	/*縦向き端末から見た場合に背景画像をチェンジ*/
	@media (orientation: portrait) {

	#section1::before {
		background-image: url('../images/section1_portrait.jpg');
	}
	#section2::before {
		background-image: url('../images/section2_portrait.png');
	}
	#section3::before {
		background-image: url('../images/section3_portrait.png');
	}

	}/*追加指定ここまで*/

/*背景色を入れない場合（画像だけを表示したい場合）*/
.no-bgcolor {background-color: transparent !important;}


/*フッター*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;
	text-align: center;		/*内容をセンタリング*/
	padding-bottom: 1rem;
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}


/*お知らせブロック*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 6rem;			/*幅。６文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: rgba(255,255,255,0.8);		/*背景色*/
	color: #333;			/*文字色*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	}/*追加指定ここまで*/


/*list-grid（gallery.htmlでサムネイルを表示している部分の設定）*/
/*listブロックを囲む外側のボックス*/
.list-grid-trimming {
	display: grid;
	grid-template-columns: repeat(4, 1fr);	/*ここの「4」の数字が横に並べる数。3列がいいなら(3, 1fr)*/
	gap: 1rem;	/*マージン的な数値。サムネイル間を１文字分あける*/
}

/*ボックスを正方形にトリミングする為の指定なので変更しない*/
.list-grid-trimming .list {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 100%;
}
.list-grid-trimming .list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list-grid-trimming .list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;	/*マウスオン時にかける時間。0.5秒*/
	filter: brightness(0.5);	/*通常時は暗め（50%の明るさ）*/
}

/*マウスオン時の画像*/
.list-grid-trimming .list img:hover {
	transform: scale(1.1);	/*1.1倍に拡大*/
	filter: brightness(1);	/*ホバー時は本来の明るさに戻す*/
}


/*PAGE TOP（↑）設定*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 0.2s 0.2s both;	/*一瞬ボタンが出ちゃうのを隠す為の応急措置*/
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

/*その他*/
.clearfix::after {content: "";display: block;clear: both;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: #ffcf0d;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/


/*Contact セクション*/
.contact-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

	@media screen and (min-width:900px) {
	.contact-wrap {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
	}

.contact-subtitle {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

/* フォーム */
.contact-form .form-row {
	margin-bottom: 1.2rem;
}

.contact-form label {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	margin-bottom: 0.4rem;
	color: rgba(255,255,255,0.7);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	background: rgba(255,255,255,0.08);
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	color: #fff;
	font-family: inherit;
	font-size: 0.9rem;
	padding: 0.5rem 0.2rem;
	outline: none;
	transition: border-color 0.3s;
	border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-bottom-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255,255,255,0.3);
}

.contact-form textarea {
	resize: vertical;
	line-height: 1.8;
}

.contact-btn {
	margin-top: 1rem;
	display: inline-block;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	color: #fff;
	font-family: inherit;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	padding: 0.7rem 2.5rem;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 0;
}

.contact-btn:hover {
	background: rgba(255,255,255,0.15);
	border-color: #fff;
}

/* 店舗情報 */
.shop-info {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.8rem 1.5rem;
	align-items: start;
}

.shop-info dt {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.6);
	white-space: nowrap;
	padding-top: 0.15rem;
}

.shop-info dd {
	font-size: 0.9rem;
	line-height: 1.8;
}

.info-note {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.6);
}

.map-link {
	display: inline-block;
	margin-top: 0.3rem;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 1px;
	text-decoration: none;
}

.map-link:hover {
	border-bottom-color: #fff;
}


/*ヒーローエリア（section1のキャッチコピー）*/
#section1 {
	display: flex;
	align-items: flex-end;		/*縦方向：下寄せ*/
	justify-content: flex-start;	/*横方向：左寄せ*/
	min-height: 100dvh;
	padding-bottom: 25vh;		/*下からの余白。どんぶりの真上あたりに調整。*/
	padding-left: 20vw;			/*左からの余白。どんぶりの真ん中あたりに調整。*/
}

.hero-content {
	text-align: left;
	padding: 2rem;
	animation: opa1 1.2s ease both;
	font-family: 'Zen Old Mincho', serif;	/*フォント*/
	color: #111;
}

.hero-sub {
	font-size: 1rem;			/*②サイズ大きく*/
	letter-spacing: 0.3em;
	color: #333;				/*②文字色：黒系*/
	margin: 0 0 0.8rem;
	line-height: 1;
}

.hero-title {
	font-size: clamp(3.5rem, 10vw, 7rem);	/*②サイズ大きく*/
	letter-spacing: 0.2em;
	margin: 0 0 1rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.hero-copy {
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);	/*②サイズ大きく*/
	letter-spacing: 0.25em;
	color: #222;				/*②文字色：黒*/
	margin: 0 0 2.5rem;
	line-height: 1;
}

.hero-btn {
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.5);
	color: #111;
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	padding: 0.8rem 2.5rem;
	transition: 0.4s;
}

.hero-btn:hover {
	background: rgba(0,0,0,0.1);
	border-color: #111;
}



