@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:wght@300;400;500;700&display=swap');
/* =========================================================
   Modern base (2026)
   - modern reset
   - responsive container
   - accessibility (focus-visible)
   - utility set (minimum)
========================================================= */

/* -----------------------------
   CSS Variables / Theme
----------------------------- */
:root{
	--font-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
	--font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS P明朝", serif;

}

/* -----------------------------
   Modern Reset
----------------------------- */
*,
*::before,
*::after{
	box-sizing: border-box;
}

html{
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	/*scroll-behavior: smooth;*/
	-webkit-text-size-adjust: 100%;
}

body{
	margin: 0;
	min-height: 100svh;
	font-family: var(--font-sans);
	color: #262626;
	line-height: 1.6;
	letter-spacing: .02em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

/* Headings: “勝手にデカい余白”は付けない（余白はレイアウト側で管理） */
h1,h2,h3,h4,h5,h6{
	margin: 0;
	font: inherit;
}

/* block elements */
p,ul,ol,dl,dd,figure,blockquote{
	margin: 0;
	padding: 0;
}

ul,ol{
	list-style: none;
}

/* media */
img,svg,video,canvas{
	display: block;
	max-width: 100%;
	height: auto;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

/* form controls */
input,button,textarea,select{
	font: inherit;
	color: inherit;
}

button{
	cursor: pointer;
}

textarea{
	resize: vertical;
}

/* links */
a{
	color: var(--link);
	text-decoration: none;
	text-underline-offset: .2em;
}

a:hover{
	color: var(--link-hover);
	text-decoration: underline;
}

/* ✅ outline を消さない。キーボード操作のときだけ見せる */
:focus{
	outline: none;
}
:focus-visible{
	outline: var(--focus);
	outline-offset: var(--focus-offset);
}

/* selection */
::selection{
	background: rgba(37, 99, 235, .2);
}

/* motion */


/* -----------------------------
   Layout helpers
----------------------------- */
.container{
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* 旧 #wrapper 互換（必要ならHTML側で置き換え）
   既存で #wrapper が残ってても崩れにくくする */
#wrapper{
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* -----------------------------
   Utility (minimum)
----------------------------- */
.u-hidden{
	display: none !important;
}

.u-visually-hidden{
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.u-text-left{ text-align: left !important; }
.u-text-center{ text-align: center !important; }
.u-text-right{ text-align: right !important; }

.u-flex{ display: flex !important; }
.u-inline-flex{ display: inline-flex !important; }
.u-items-center{ align-items: center !important; }
.u-justify-center{ justify-content: center !important; }
.u-justify-between{ justify-content: space-between !important; }
.u-flex-col{ flex-direction: column !important; }
.u-gap-8{ gap: 8px !important; }
.u-gap-12{ gap: 12px !important; }
.u-gap-16{ gap: 16px !important; }

.u-relative{ position: relative !important; }
.u-absolute{ position: absolute !important; }

/* hover helper (必要なときだけ使う) */
.u-hover{
	transition: opacity .2s ease;
}
.u-hover:hover{
	opacity: .8;
}

/* -----------------------------
   Optional: Card base
----------------------------- */
.card{
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	background: #fff;
}

/* -----------------------------
   header
----------------------------- */

.header {
	background: rgba(255, 255, 255, 0.80);
	padding: 16px 40px;
	color: #1a3a2a; /* ロゴや文字の濃いグリーン */
	height: 68px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 15;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px; /* 画面幅に応じて調整 */
	margin: 0 auto;
}

/* ロゴのスタイル */
.header__logo {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 1.2;
}

/* ナビゲーションのスタイル */
.nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px; /* 項目間の余白 */

}

.nav-item a {
	text-decoration: none;
	font-family: new-spirit, serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
}

.nav-item a:hover {
	text-decoration: underline;
}

/* PCサイズではハンバーガーボタンを非表示にする */
.header__menu-btn {
	display: none;
}

.sp{
	display: none;
}

@media (max-width: 900px) {
	.nav-list {
		gap: 20px; /* 項目間の余白 */
	}
}

@media (max-width: 768px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	/*
	html,
	body{
		width: 100%;
		overflow-x: hidden;
	}

	/* ヘッダーの調整 */
	.header {
		padding: 12px 0 0 16px; /* 左右の余白をスマホ用に縮める */
		height: 56px; /* 高さも少しスリムに */
		background: #F1F1F1; /* 画像に合わせて少しグレーっぽい背景に調整 */
		position: fixed;
		left: 0;
		top: 0;
	}

	.header h1 svg{
		width: 90px;
		height: auto;
	}

	/* =========================================
     1. header__nav の display:none を書き換え
  ========================================= */
	.header__nav {
		/* display: none; の代わりに opacity と visibility で隠す（アニメーションさせるため） */
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;

		position: fixed;
		left: 0;
		top: 56px;
		background: #F1F1F1;
		width: 100%;
		height: calc(100vh - 56px);
	}

	/* =========================================
     2. JSで追加されるクラス（ここを新規追加！）
  ========================================= */
	/* メニューが開いた状態 */
	.header__nav.is-active {
		opacity: 1;
		visibility: visible;
	}

	/* メニュー展開時の背景スクロール防止 */
	body.is-drawer-open {
		overflow: hidden;
	}

	/* ナビゲーションのスタイル */
	.nav-list {
		display: block;
		list-style: none;
		margin: 0;
		padding: 64px 0 0;
		gap: 0px; /* 項目間の余白 */

	}

	.nav-item a {
		display: block;
		text-align: center;
		color: #262626;
		font-size: 19px;
		font-weight: 500;
		line-height: 150%; /* 28.5px */
		letter-spacing: 0.76px;
		margin-bottom: 30px;
	}


	/* ハンバーガーボタン（2本線） */
	.header__menu-btn {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		background: transparent;
		border: none;
		padding: 0;
		cursor: pointer;
		z-index: 100; /* ナビより前面に出す */
		right: 0;
		top: 0;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.header__menu-btn span {
		display: block;
		width: 24px;
		height: 2px;
		background-color: #254B3D; /* ロゴと同じ色 */
		transition: transform 0.3s ease;
		border-radius: 6px;
	}

	.header__menu-btn span:nth-child(1){
		margin-bottom: 8px;
	}

	/* 👇 メニューを開いた時（is-activeクラス付与時）の×印アニメーション（おまけ） */
	.header__menu-btn.is-active span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}
	.header__menu-btn.is-active span:nth-child(2) {
		transform: translateY(-5px) rotate(-45deg);
	}
}

/* -----------------------------
   header
----------------------------- */



/* フッター全体のベース設定 */
.footer {
	background-color: #111111; /* 深い黒系の背景色 */
	color: #ffffff;
	padding: 150px 0px 80px;
	position: relative;
	overflow: hidden;

	/* 右側の大きなグラフィックを入れる場合はここを使います */
	/* background-image: url('../images/footer-bg-mark.png'); */
	/* background-position: right bottom; */
	/* background-repeat: no-repeat; */
	/* background-size: contain; */
}

.footer__inner {
	max-width: 1220px; /* サイト幅に合わせて調整 */
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1; /* 背景画像より手前に出すため */
}


.footer__nav-label {
	color: #B9B9B9;
	font-family: new-spirit, serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
	margin-bottom: 10px;
}

.footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
}

.footer__nav-list a {
	color: #FFF;

	font-family: new-spirit, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%; /* 27px */
	letter-spacing: 0.72px;
}

.footer__nav-list a:hover {
	text-decoration: underline;
}


/* ロゴエリア */
.footer__logo {
	display: flex;
	flex-direction: column;
	margin-top: 120px;
	line-height: 1.2;
	margin-bottom: 55px;
}


/* 店舗情報エリア（住所・営業時間など） */
.footer__info {
	display: flex;
	gap: 80px; /* 住所エリアと営業時間エリアの隙間 */
	margin-bottom: 90px;
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%; /* 21px */
	letter-spacing: 0.56px;
}

.footer__contact p {
	margin: 0 0 15px 0;
	line-height: 200%;
}

.footer__contact a {
	color: #ffffff;
	text-decoration: none;
}

.footer__contact a:hover {
	text-decoration: underline;
}

/* 営業時間などの定義リスト */
.footer__hours dl {
	display: flex;
	margin: 0 0 15px 0;
}

.footer__hours dt {
	width: 82px; /* 見出しの幅を固定して揃える */
}

.footer__hours dd {
	margin: 0;
}

/* コピーライト */
.footer__copyright {
	color: #FFF;
	font-family: source-han-serif-sc, serif;
	font-size: 10px;
	font-weight: 500;
	line-height: 180%; /* 18px */
	letter-spacing: 0.4px;
}

@media (max-width: 900px) {
	.footer__nav-list {

		gap: 20px;
	}
}

@media (max-width: 768px) {
	/* フッター全体のベース設定 */
	.footer {

		padding: 55px 24px 50px;
	}

	.footer__inner {
		max-width: 100%; /* サイト幅に合わせて調整 */
		margin: 0 auto;
		padding: 0 0px;
	}


	.footer__nav-label {
		font-size: 11px;
		margin-bottom: 20px;
	}

	.footer__nav-list {
		display: block;
		gap: 0px;
	}

	.footer__nav-list a {
		display: block;
		font-size: 16px;
		margin-bottom: 12px;
	}


	/* ロゴエリア */
	.footer__logo {
		display: block;
		margin-top: 60px;
		line-height: 1.2;
		margin-bottom: 30px;
	}

	.footer__logo svg{
		width: 158px;
		height: auto;
	}


	/* 店舗情報エリア（住所・営業時間など） */
	.footer__info {
		display: flex;
		gap: 28px; /* 住所エリアと営業時間エリアの隙間 */
		margin-bottom: 40px;
		font-size: 13px;
	}
	.footer__contact{
		margin-top: 40px;
	}
	.footer__contact p {
		margin: 0 0 10px 0;
		font-size: 14px;
	}

	.footer__contact p a{
		text-decoration: underline;
	}

	/* 営業時間などの定義リスト */
	.footer__hours dl {
		display: flex;
		margin: 0 0 15px 0;
	}

	.footer__hours dt {
		width: 72px; /* 見出しの幅を固定して揃える */
	}

	.footer__hours dd {
		margin: 0;
	}

}




