@charset "utf-8";


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


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #1a1a2e;		/*テンプレートのメインまたはアクセントカラー（深いネイビー）*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/

	/* ブランドカラー */
	--accent-gold: #D4A017;			/* ゴールド */
	--accent-gold-light: #F0C040;	/* ライトゴールド */
	--accent-coral: #E85D75;		/* コーラルピンク */
	--dark-bg: #0f1722;				/* 暗い背景 */
	--dark-bg2: #1a2333;			/* 少し明るい暗い背景 */
	--surface: #ffffff;				/* カード背景 */
	--text-dark: #1a1a2e;			/* 濃いテキスト */
	--text-muted: #6b7280;			/* サブテキスト */

	/* グラデーション */
	--grad-gold: linear-gradient(135deg, #D4A017 0%, #F0C040 50%, #D4A017 100%);
	--grad-dark: linear-gradient(135deg, #0f1722 0%, #1a2333 100%);
	--grad-hero: linear-gradient(160deg, rgba(15,23,34,0.75) 0%, rgba(26,35,51,0.55) 100%);

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

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

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

	html, body {
		font-size: 14px;
	}

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

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

	html, body {
		font-size: 1vw;
	}

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


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--primary-color);		/*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

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

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

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

/*iframeタグ*/
iframe {width: 80%;}
.contact{height: 600px;min-width: -webkit-fill-available;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	/* overflow-x: hidden; */
	padding: var(--space-small);
	place-items: center;
}


/* 初期：上中央、少し上にずらして透明 */
.logo-wrap{
  position: fixed;
  left: 50%;
  top: 10px; /* 常に同じ位置にしておく */
  transform: translateX(-50%) translateY(-30px);
  z-index: 100;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: transform .6s ease, opacity .6s ease;
}

/* 表示時：上中央にスッと降りる */
.logo-wrap.is-fixed{
  top: 10px;
  opacity: 1;
  pointer-events: auto; /* クリック不要ならなくてもOK */
}


/* ロゴの大きさ */
.logo-inner {
  width: 20vw;
  max-width: 400px;
}

.logo-inner img {
  display: block;
  width: 100%;
  height: auto;
}



/* スマホ側ボタンを隠す用 */
.side-label.pc-none.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(20px);
  transition: opacity .2s ease, transform .2s ease;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .logo-inner {
    width: 30vw;
  }
}
/* 追加 */
/* ★ 画面上に固定で浮かせるロゴ（銭湯ぐらし風） */


/* 追加ここまで */




/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	 align-items: end;			/*垂直揃えの指定。天地中央に配置されるように。 */
	justify-content: space-around;
	height: 120px;					/*ヘッダーの高さ*/
}
header .border-right{
	border-right: solid;
}

/*ヘッダー左上の回転する円形のテキストアニメーション（スライドショー右下のスタイルはslide.cssで設定されています）*/
header .animation-text {
	position: absolute;
	width: 10vw;	/*画像の幅*/
	left: -2vw;		/*右からの距離*/
	top: -5vw;		/*上からの距離*/
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 13vw;	/*ロゴの幅*/
	position: relative;z-index: 1;
	left: 10vw;	/*左からの配置場所*/
	top:-1vw;		/*上からの配置場所*/

}
@media screen and (max-width:900px) {
#logo {
    margin: 0;
	margin-top: 40px;
    padding: 0;
    width: 30vw;
    position: relative;
    z-index: 1;
    left: 18vw;
    top: -4vw;
}
}
	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#logo {
		top: -20px;
        width: 180px;
        left: 10vw;
	}
	.cats .inner {
	margin-top: -50px;
	}
	}/*追加設定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 5vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

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


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態。*/
	padding: 0.3em 1em;				/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;				/*上に空けるスペース。ドロップダウン同士の隙間。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で冒頭のparimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

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

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

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;		/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);					/*文字色*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;		/*上からの配置場所*/
	right: calc(var(--space-small) + 5px);		/*右からの配置場所*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ。基本的にheaderの高さに合わせておけばOKです。*/
	padding: 20px 0;	/*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
}

/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
	mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 1.5px;			/*線の太さ*/
	background-color: #fff;	/*本来は線の色なのですが、mix-blend-modeを使っているので背後の色に合わせて変動します。変動したくないなら#menubar_hdrのmix-blend-modeの行を削除して下さい。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*画面右側の側面にある縦長ボタン（オンライン相談）
---------------------------------------------------------------------------*/
#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: ruby;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	/*右からの配置場所*/
	top: 20vw;	/*上からの配置場所*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	/*background: linear-gradient(#906f53, #6b5038);背景グラデーション*/
	background: linear-gradient(#ec9347, #d36b12);
	color: #f6ebd2;	/*文字色*/
	padding: 2rem 1rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px 0px 0px 3px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}

/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 6vw 0 0;	/*上、左右、下への余白。画面幅100%＝100vwです。*/
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

/*h3見出し（共通）*/
main h3 {
	font-weight: 600;
	font-size: 1.4rem;	/*文字サイズ140%*/
}


/*Google Map　レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 80%;
	height: 0;
	padding-top: 50%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	padding-bottom: 20px;
	position: relative;
	overflow: hidden;
	margin: 7% 10%;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer a {color: inherit;text-decoration: none;}
footer small {font-size: 100%;}

footer {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	font-size: 0.85rem;	/*文字サイズ85%*/
	padding: 5vw;		/*余白*/
	display: flex;
}

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

	footer {
		display: flex;
		justify-content: space-between;
	}

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



/*ロゴが入ったブロック*/
footer .image {
	width: 200px;	/*ボックス幅*/
	text-align: center;	/*中身をセンタリング*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	footer .image {
		width: auto;	/*ボックス幅*/
	}
	footer .image img {
		width: 80px;
	}

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

/*ロゴ*/
footer .logo {
	opacity: 0.5;	/*透明度。色を50%だけ出す設定。全部出したいならこの１行は削除。*/
}

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

	footer .text {
		display: flex;	/*CompanyとFollow Usを横並びにする*/
		gap: 5rem;	/*CompanyとFollow Usの間の余白。５文字分。*/
	}

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


/*h4見出し（CompanyとFollow Usのテキスト部分*/
footer h4 {
	font-weight: 200;	/*太さを細くする*/
	font-size: 1.2rem;	/*文字サイズを120%*/
}

/*著作部分*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*list-c2（お問い合わせ、オンライン相談）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}
.side-label {
    position: fixed;
    right: 0;
    top: 150px;
    z-index: 999;
}
/*画面幅640px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.pc-none{
		display: none;
	}
}

@media screen and (max-width: 639px) {
    .side-label {
        position: fixed;
        bottom: -8px;
        top: auto;
        z-index: 999;
        width: 100%;
        height: auto;
    }
	.side-label img {
        width: 100% !important;
        height: auto;
    }
	.sp-none{
		display: none;
	}
}
.side-label img {
    width: 100px;
    height: auto;
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.pc-none{
		display: none;
	}
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

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


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}

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


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/sample4.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/online.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

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

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

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


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*ボックス内のボタン（.btn2）*/
.list-c2 .list .btn2 a {
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態。*/
}

/*ボックス内のボタン（.btn3）*/
.list-c2 .list .btn1 a {
	text-shadow: none;	/*テキストの影を消す*/
}


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

/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 2rem;				/*上の余白*/
	padding-bottom: 2rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 4rem;			/*右の余白*/
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*faqブロック全体*/
.faq {
	background: #5E5C5A;	/*背景色*/
	color: #fff;			/*文字色*/
	position: relative;
}

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

	.faq {
		display: flex;
		flex-direction: row-reverse;	/*左右の並びをデフォルトと逆に*/
		justify-content: space-between;
	}

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


/*faq内のh2見出し*/
.faq h2 {
	margin: 0;padding: 0;
	font-size: 2rem;	/*文字サイズを2倍*/
	font-weight: 200;	/*文字を細く*/
	letter-spacing: 0.4em;	/*文字間隔を広くする*/
}

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

	/*faq内のh2見出し*/
	.faq h2 {
		writing-mode: vertical-lr;	/*日本語は縦書き。英語は90度回転。*/
		margin-right: 18vw;	/*右側に画面18%程度のスペースを空ける。そこに英語の飾り文字を入れる為。*/
	}

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


/*右側の英語の飾り文字*/
.faq h2 .kazari {
	line-height: 1;
	font-size: 0.9rem;	/*文字サイズ90%*/
}

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

	/*右側の英語の飾り文字*/
	.faq h2 .kazari {
		font-size: 20vw;	/*文字サイズ*/
		position: absolute;
		right: 0px;
		top: var(--space-large);
    	color: rgba(255,255,255,0.05);	/*文字色。255,255,255は白のことで、0.05は色が5%出た状態。*/
	}

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


/*質問*/
.faq dt {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-top: 1px solid rgba(255,255,255,0.2);	/*上の線の幅、線種、色。255,255,255は白のことで、0.2は色が20%出た状態。*/
	padding: 2rem 0 1rem 0;	/*上、右、下、左への余白*/
}

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

	.faq dt {
		padding: 2rem 2rem 1rem 2rem;	/*上、右、下、左への余白*/
	}

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


/*回答*/
.faq dd {
	padding: 0 0 2rem 0;	/*上、右、下、左への余白*/
	font-size: 0.9rem;	/*文字サイズ90%*/
}

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

	.faq dd {
		padding: 0 2rem 2rem 2rem;	/*上、右、下、左への余白*/
	}

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


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

	/*左側のテキストブロック*/
	.faq .text {
		width: 50%;	/*幅*/
	}
	
	}/*追加指定ここまで*/



/*list-yoko-scroll（お客様の声）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	margin-right: calc(-1 * var(--space-large));	/*右マージンをなくす為にネガティブマージンで相殺*/
	padding-bottom: 3vw;	/*下に空ける余白*/
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 1rem;		/*ブロック内の余白。1文字分。*/
	position: relative;
	display: flex;
	flex-direction: column;
}

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

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
		padding: 2rem;		/*ブロック内の余白。２文字分。*/
	}

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


/*テキストブロックが高さを目一杯とる指定*/
.list-yoko-scroll .list .text {
	flex: 1;
}

/*ブロックのカギカッコ（共通）*/
.list-yoko-scroll .list::before,.list-yoko-scroll .list::after {
	content: "";
	position: absolute;
	width: 30px;	/*カギカッコの幅。お好みで。*/
	height: 10px;	/*カギカッコの高さ。お好みで。*/
	border: 0.5px solid var(--primary-color);	/*線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
}

/*左上のカギカッコへの追加指示*/
.list-yoko-scroll .list::before {
	left: 0px;	/*左からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	border-right: none;		/*右の線を消す*/
	border-bottom: none;	/*下の線を消す*/
}

/*右上のカギカッコへの追加指示*/
.list-yoko-scroll .list::after {
	right: 0px;		/*右からの配置場所*/
	bottom: 0px;	/*下からの配置場所*/
	border-top: none;	/*上の線を消す*/
	border-left: none;	/*左の線を消す*/
}

/*faq内のh4見出し（「とても満足です。」のところ）*/
.list-yoko-scroll h4 {
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*faq内のp段落（「とても満足です。」の下のテキスト）*/
.list-yoko-scroll p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
}

/*お客様の名前*/
.list-yoko-scroll .name {
	text-align: right;	/*右に寄せる*/
}

/*お客様の写真*/
.list-yoko-scroll .name img {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	object-fit: cover;
	object-position: center;
	border-radius: 50%;	/*円形にする。この１行を削除すれば正方形になります。*/
	margin-left: 20px;	/*写真の左に空けるスペース*/
}


/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background-image:url(../images/bg_workflow.png);	/*背景色*/
	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}
.box1 a {
	color: inherit;
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #decfae;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（1つ目）*/
.box1 .illust1 {
	position: absolute;
	right: 20vw;	/*右からの配置場所*/
	top: 9vw;		/*上からの配置場所*/
	width: 23vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
}

/*ボックスの左上イラスト（2つ目）*/
.box1 .illust2 {
	position: absolute;
	right: 4vw;		/*右からの配置場所*/
	top: 2vw;		/*上からの配置場所*/
	width: 13vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
}

/*テキストボックス*/
.box1 .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}

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

	.box1 {
		display: flex;	/*横並びにする*/
		/* gap: 5vw;		 */
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box1 > * {flex: 1;}

	/*ボックスの左上イラスト（1つ目）*/
	.box1 .illust1 {
		right: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -4vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 8vw;		/*イラストの幅。*/
	}

	/*ボックスの左上イラスト（2つ目）*/
	.box1 .illust2 {
		right: auto;
		left: 14vw;		/*左からの配置場所*/
		top: -8vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 5vw;		/*イラストの幅。*/
	}

	/*テキストボックスの上の小さなイラスト*/
	.box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

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


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
	overflow: hidden;	/* スマホ時にパララックス無効化後も画像がはみ出さないよう保険 */
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 80%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
	width: 60%;	/*画像の幅*/
}
.box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 20vw;	/*画像ブロックに対して上からの配置場所*/
}


/*list1（企業理念コーナー）
---------------------------------------------------------------------------*/
/*冒頭の大きなロゴの飾り*/
.logo-kazari {
	background: url("../images/logo_kazari.svg") no-repeat left top / 70%;	/*ロゴ画像の読み込み。左上に配置し、幅は70%。*/
}

/*１枚目の写真*/
.list1.image1 {
	background: url("../images/imgi_3.jpg") no-repeat center center / cover;
}

/*２枚目の写真*/
.list1.image2 {
	background: url("../images/2.jpg") no-repeat center center / cover;
}

/*３枚目の写真*/
.list1.image3 {
	background: url("../images/3.jpg") no-repeat center center / cover;
}

/*４枚目の写真*/
.list1.image4 {
	background: url("../images/ennichi.png") no-repeat center center / cover;
}

/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);	/*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	/*下に空けるスペース。ボックス同士の隙間です。*/
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}
.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		/*幅*/
	height: 100%;
	color: #fff;	/*文字色*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

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

	/*テキストブロック*/
	.list1 .text {
		width: 40%;		/*幅*/
	}

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


/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
	margin-left: auto;
}

/*list1内のh3見出し*/
.list1 h3 {
	margin: 0;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 2rem;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.2;		/*行間を狭くする*/
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
	font-size: 2rem;	/*文字サイズを7倍*/
}

/*見出しの右上にある英語の小さな文字*/
.list1 h3 span:not(.large) {
	font-size: 1rem;	/*文字サイズを標準に戻す*/
	opacity: 0.5;		/*透明度50%*/
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: -20px;	/*上からの配置場所*/
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

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


/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
}

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-bottom: 3vw;
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 3vw;	/*下に空けるスペース*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	opacity: 0.5;	/*透明度50%*/
}


/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*上下、左右へのボタン内の余白*/
	margin-top: 2rem;		/*ボタンの上に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
}
/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover, .btn2 a:hover {
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*btn2への追加設定*/
.btn2 a {
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
	text-align: right;	/*テキストを右寄せ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: #e19212;
	position: relative;
	padding-right: 5rem;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
	content: "";
	background: url("../images/arrow1.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;		/*下からの配置場所*/
	width: 50px;		/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
	height: 50px;		/*アイコンの高さ*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;		/*hover時に切り替えをなめらかにする*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
	background-color: var(--primary-color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
	color: #fff;	/*文字色*/
}
.btn3.white a::after {
	background: url("../images/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
.btn3.white a:hover::after {
	background-color: #fff;				/*背景色を白に*/
	background-position: left center;	/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--primary-color);		/*背景色*/
	color: var(--primary-inverse-color);	/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--primary-color);	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--primary-color);	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #eee;	/*背景色*/
}

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

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

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


/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
	place-items: stretch;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.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 {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: var(--dark-bg2);color:#fff;}.bg1 a {color: inherit;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}




/* ============================================================
   ★ REDESIGN 2025 — eventsaiji.jp参考：明るく・カラフル・エネルギッシュ
   ============================================================ */


/* -----------------------------------------------------------
   Google Fonts（Playfair Display + Montserrat）は <head> 側で読込済み
   ----------------------------------------------------------- */


/* -----------------------------------------------------------
   ヘッダー — 白背景・シンプルクリーン（参考サイト準拠）
   ----------------------------------------------------------- */
header {
	background: #fff !important;
	position: sticky;
	top: 0;
	/* margin-top: 40px; */
	z-index: 200;
	height: 80px;
	border-bottom: 3px solid #e0e0e0;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	align-items: center;
}
/* ナビゲーションリンク */
header nav li a {
	color: #333 !important;
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
}
header nav li a:hover {
	color: #e05a00 !important;
	opacity: 1;
}
/* ロゴを通常表示（フィルター解除） */
#logo img {
	filter: none;
}
/* ナビ区切り線 */
header nav .border-right {
	border-right: 1px solid #ccc;
}


/* -----------------------------------------------------------
   #svg-box — ヒーローエリア（全幅写真 + 中央テキスト）
   ----------------------------------------------------------- */
#svg-box {
	position: relative;
	width: 100%;
	height: 65vh !important;
	min-height: 420px;
	max-height: 700px;
	overflow: hidden;
	border-top: none !important;
}
/* グラデーションオーバーレイ（やや暗め・中央をやや明るく） */
#svg-box::after {
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.55) 0%,
		rgba(0,0,0,0.30) 40%,
		rgba(0,0,0,0.50) 100%
	) !important;
	z-index: 2;
}
/* ゴールドのアクセントライン（下部） */
#svg-box::before {
	content: "";
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b00, #ffcc00, #00cc88, #0099ff, #cc44ff);
	z-index: 5;
	pointer-events: none;
}


/* -----------------------------------------------------------
   .hero-copy — 中央配置の大きなテキストオーバーレイ
   ----------------------------------------------------------- */
.hero-copy {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 90%;
	max-width: 860px;
	padding: 2rem 3rem;
	animation: heroFadeUp 1s ease both;
}
@keyframes heroFadeUp {
	from { opacity: 0; transform: translate(-50%, calc(-50% + 20px)); }
	to   { opacity: 1; transform: translate(-50%, -50%); }
}
.hero-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(0.7rem, 1.2vw, 0.85rem);
	font-weight: 700;
	letter-spacing: 0.3em;
	color: #ffdd88;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1.5px;
	background: #ffdd88;
}
.hero-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(2.2rem, 5.5vw, 4.2rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1rem;
	letter-spacing: 0.05em;
	text-shadow: 0 3px 20px rgba(0,0,0,0.6);
}
/* 大きな括弧装飾（参考サイル「 」スタイル） */
.hero-title::before { content: "「"; color: #ffdd88; }
.hero-title::after  { content: "」"; color: #ffdd88; }
.hero-sub {
	font-size: clamp(0.9rem, 1.6vw, 1.1rem);
	color: rgba(255,255,255,0.92);
	margin: 0 0 2rem;
	line-height: 1.8;
	text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	width:max-content;
}

/* ヒーローボタン */
.hero-actions .btn {
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.85rem 2.2rem;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.hero-actions .btn:not(.btn-outline) {
	background: #e05a00;
	color: #fff;
	box-shadow: 0 4px 16px rgba(224,90,0,0.45);
}
.hero-actions .btn:not(.btn-outline):hover {
	background: #c04a00;
	transform: translateY(-2px);
	opacity: 1;
	box-shadow: 0 8px 24px rgba(224,90,0,0.55);
}
.hero-actions .btn-outline {
	background: rgba(255,255,255,0.15);
	color: #fff;
	border: 2px solid rgba(255,255,255,0.7);
	backdrop-filter: blur(4px);
}
.hero-actions .btn-outline:hover {
	background: rgba(255,255,255,0.28);
	border-color: #fff;
	opacity: 1;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
	.hero-copy {
		padding: 1.5rem 1rem;
	}
	.hero-title {
		font-size: clamp(1.8rem, 8vw, 2.8rem);
	}
}


/* -----------------------------------------------------------
   .cats — カテゴリセクション（参考サイトのカード群スタイル）
   ----------------------------------------------------------- */
.cats {
	background: #f5f5f5;
	padding: 4vw 0;
	margin-top: 0;
}
.cats .inner {
	margin-top: 0 !important;
	padding: 2vw var(--space-large);
}
.cats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 900px) {
	.cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 560px) {
	.cats-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* カード共通 — 白背景 + カラフルなボーダー */
.cat {
	--cat-color: #333;
	background: #fff !important;
	border: 3px solid var(--cat-color) !important;
	border-radius: 0;
	padding: 2rem 1.5rem 1.8rem;
	text-decoration: none;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}
.cat:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.15);
	opacity: 1;
}
.cat::before { display: none; } /* 旧デザインのoverlay削除 */

/* 英語タイトル */
.cat-en {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1rem, 2vw, 1.3rem);
	font-weight: 800;
	letter-spacing: 0.05em;
	color: var(--cat-color) !important;
	margin: 0 0 1rem;
	text-transform: uppercase;
	line-height: 1.2;
}

/* アイコン */
.cat-icon {
	width: 56px;
	height: 56px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border: 2px solid var(--cat-color);
	transition: background 0.2s;
}
.cat:hover .cat-icon {
	background: color-mix(in srgb, var(--cat-color) 10%, transparent);
}
.cat-icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	filter: none;
}

/* 日本語見出し */
.cat-jp {
	font-size: 1rem;
	font-weight: 800;
	color: #222;
	margin: 0 0 0.7rem;
	line-height: 1.5;
}

/* 説明文 */
.cat-desc {
	font-size: 0.8rem;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

/* カテゴリ別カラー（参考サイト準拠 — --catと--cat-color両方定義して互換性確保） */
.cat--event   { --cat-color: #e05a00; --cat: #e05a00; } /* オレンジ */
.cat--food    { --cat-color: #ccaa00; --cat: #ccaa00; } /* ゴールド */
.cat--rental  { --cat-color: #00aa55; --cat: #00aa55; } /* グリーン */
.cat--ennichi { --cat-color: #00aacc; --cat: #00aacc; } /* シアン */
.cat--design  { --cat-color: #cc44aa; --cat: #cc44aa; } /* ピンク */
.cat--safety  { --cat-color: #5566dd; --cat: #5566dd; } /* ブルー */

/* アイコンを色付きに */
.cat--event .cat-icon img   { filter: invert(35%) sepia(90%) saturate(500%) hue-rotate(0deg); }
.cat--food .cat-icon img    { filter: invert(65%) sepia(80%) saturate(400%) hue-rotate(10deg); }
.cat--rental .cat-icon img  { filter: invert(45%) sepia(70%) saturate(400%) hue-rotate(130deg); }
.cat--ennichi .cat-icon img { filter: invert(45%) sepia(70%) saturate(400%) hue-rotate(185deg); }
.cat--design .cat-icon img  { filter: invert(35%) sepia(70%) saturate(500%) hue-rotate(285deg); }
.cat--safety .cat-icon img  { filter: invert(35%) sepia(50%) saturate(500%) hue-rotate(220deg); }


/* -----------------------------------------------------------
   .pickups — 人気コンテンツセクション
   ----------------------------------------------------------- */
.pickups {
	background: #fff;
	padding: 6vw var(--space-large);
}
.section-head {
	text-align: center;
	margin-bottom: 2.5rem;
}
.section-head h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 900;
	color: #222;
	margin: 0 0 0.5rem;
	display: block;
	position: relative;
	padding-bottom: 1rem;
}
.section-head h2::after {
	content: "";
	position: absolute;
	bottom: 0; left: 50%; transform: translateX(-50%);
	width: 50px; height: 3px;
	background: linear-gradient(90deg, #e05a00, #ffcc00);
}
.section-head p {
	font-size: 0.9rem;
	color: #888;
	margin: 0.5rem 0 0;
}
.pickup-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.8rem;
}
@media screen and (max-width: 900px) {
	.pickup-grid { grid-template-columns: 1fr; }
}

/* ピックアップカード */
.pickup-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-top: 5px solid #ccc;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
}
.pickup-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);
	opacity: 1;
}
/* カード上部カラーライン（slide.cssの--catを上書き） */
.pickup-card::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 5px;
	z-index: 1;
	background: transparent !important;
}
/* border-topで色を表現 */
.pickup-card.cat--ennichi { border-top: 5px solid #00aacc !important; }
.pickup-card.cat--food    { border-top: 5px solid #ccaa00 !important; }
.pickup-card.cat--rental  { border-top: 5px solid #00aa55 !important; }

/* バッジ */
.pickup-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	background: #e05a00;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.7rem;
	border-radius: 2px;
	font-family: 'Montserrat', sans-serif;
}

/* 画像エリア */
.pickup-media {
	width: 100%;
	aspect-ratio: 16/10;
	overflow: hidden;
}
.pickup-media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.pickup-card:hover .pickup-media img { transform: scale(1.05); }

/* テキストエリア */
.pickup-body { padding: 1.4rem 1.5rem 1.6rem; }
.pickup-tag {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #e05a00;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
	display: inline-block;
	background: #fff5ee;
	padding: 0.2rem 0.6rem;
	border-radius: 2px;
}
.pickup-body h3 {
	font-size: 1.05rem;
	font-weight: 800;
	color: #222;
	margin: 0 0 0.6rem;
	line-height: 1.45;
}
.pickup-body p {
	font-size: 0.82rem;
	color: #666;
	line-height: 1.75;
	margin: 0 0 1rem;
}
.pickup-more {
	font-size: 0.8rem;
	font-weight: 700;
	color: #e05a00;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}
.pickup-card:hover .pickup-more { gap: 0.6rem; }

/* ピックアップのCTAボタン */
.pickups-cta {
	text-align: center;
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.pickups-cta .btn {
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.9rem 2.2rem;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.pickups-cta .btn:not(.btn-outline) {
	background: #e05a00;
	color: #fff;
	box-shadow: 0 4px 16px rgba(224,90,0,0.3);
}
.pickups-cta .btn:not(.btn-outline):hover {
	background: #c04a00;
	transform: translateY(-2px);
	opacity: 1;
}
.pickups-cta .btn-outline {
	background: transparent;
	color: #e05a00;
	border: 2px solid #e05a00;
}
.pickups-cta .btn-outline:hover {
	background: #e05a00;
	color: #fff;
	opacity: 1;
}

/* タグカラー対応 */
.pickup-card.cat--ennichi .pickup-tag { color: #00aacc; background: #e8f8fc; }
.pickup-card.cat--food    .pickup-tag { color: #ccaa00; background: #fdf9e8; }
.pickup-card.cat--rental  .pickup-tag { color: #00aa55; background: #e8f8ef; }
.pickup-card.cat--ennichi .pickup-more { color: #00aacc; }
.pickup-card.cat--food    .pickup-more { color: #ccaa00; }
.pickup-card.cat--rental  .pickup-more { color: #00aa55; }


/* -----------------------------------------------------------
   サムネイルスライドショー
   ----------------------------------------------------------- */
.slide-thumbnail-box {
	background: #f0f0f0;
	padding: 3vw 0 6vw;	/* 下余白を増やして translateY で下にずれた偶数画像が切れないようにする */
}
.slide-thumbnail1 .img img {
	border-radius: 4px;
	height: clamp(110px, 18vw, 180px);	/* PC は最大180px、スマホはvw基準で縮小 */
	object-fit: cover;
	width: clamp(180px, 30vw, 300px);	/* PC は最大300px、スマホはvw基準で縮小 */
	padding: 0 0.3rem;
}

/* スマホ：さらに小さく調整 */
@media screen and (max-width: 600px) {
	.slide-thumbnail-box {
		padding: 5vw 0 10vw;	/* 縦の余白を広げて切れを防ぐ */
	}
	.slide-thumbnail1 {
		margin-bottom: 8vw;
	}
	.slide-thumbnail1 .img img {
		height: 20vw;	
		width: 46vw;	
	}
	/* 偶数画像のズレ量もスマホに合わせて小さくする */
	.slide-thumbnail1 .img div:nth-of-type(even) {
		transform: translateY(4vw);
	}
}


/* -----------------------------------------------------------
   .box1 — アンジュ紹介セクション
   ----------------------------------------------------------- */
.box1 {
	background: linear-gradient(135deg, #fffdf7 0%, #fff8e8 100%);
	border-left: 5px solid #e05a00;
}
.box1 .deco-text {
	color: rgba(224,90,0,0.15);
	font-family: 'Montserrat', serif;
	font-weight: 900;
}


/* -----------------------------------------------------------
   サービスセクション (.list1) — オーバーレイ更新
   ----------------------------------------------------------- */
.list1::before {
	background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(224,90,0,0.12) 100%);
}


/* -----------------------------------------------------------
   .bg1 — 実績セクション
   ----------------------------------------------------------- */
.bg1 {
	background: #1a1a2e !important;
}
.bg1 h2 .sub-text {
	color: #ffcc44;
	border-top-color: #ffcc44;
}


/* -----------------------------------------------------------
   .faq セクション
   ----------------------------------------------------------- */
.faq {
	background: linear-gradient(135deg, #1a2333 0%, #0f1722 100%);
}
.faq h2 .kazari {
	color: rgba(255,180,0,0.06) !important;
}
.faq dt {
	border-top-color: rgba(255,200,50,0.25);
}
.faq dt::before {
	content: "Q.";
	color: #ffcc44;
	font-weight: 800;
	margin-right: 0.5em;
	font-family: 'Montserrat', sans-serif;
}


/* -----------------------------------------------------------
   ボタン全体
   ----------------------------------------------------------- */
.btn1 a {
	background: #e05a00 !important;
	color: #fff !important;
	border-radius: 3px;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(224,90,0,0.3);
	transition: all 0.3s ease !important;
}
.btn1 a:hover {
	background: #c04a00 !important;
	box-shadow: 0 6px 20px rgba(224,90,0,0.45) !important;
	transform: translateY(-2px);
}
.btn2 a {
	border-color: #fff !important;
	border-radius: 3px;
	font-weight: 700;
}


/* -----------------------------------------------------------
   フッター
   ----------------------------------------------------------- */
footer {
	background: #1a1a2e !important;
	border-top: 4px solid #e05a00;
}
footer h4 {
	color: #ffcc44;
}
.icons i {
	color: rgba(255,255,255,0.75);
	transition: color 0.3s;
}
.icons i:hover {
	color: #ffcc44;
}


/* -----------------------------------------------------------
   ロゴフロート（スクロール時）
   ----------------------------------------------------------- */
.logo-wrap.is-fixed {
	transform: translateX(-50%) translateY(0);
}


/* -----------------------------------------------------------
   セクション共通の見出し装飾
   ----------------------------------------------------------- */
main h2 .main-text {
	font-weight: 900;
}
main h2 .sub-text {
	color: #e05a00;
	border-top-color: #e05a00;
	opacity: 0.85;
}


/* -----------------------------------------------------------
   お知らせセクションのボーダー
   ----------------------------------------------------------- */
.new dt, .new dd {
	border-bottom-color: rgba(0,0,0,0.08);
}


/* -----------------------------------------------------------
   スクロールアニメーション（inview.css + jquery.inview_set.js に委譲）
   ※ .blur → .blurstyle、.up → .upstyle でトリガーされるため
   ※ ここでは上書きしない
   ----------------------------------------------------------- */


/* -----------------------------------------------------------
   Inner コンテナ
   ----------------------------------------------------------- */
.inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--space-large);
	padding-right: var(--space-large);
}


/* -----------------------------------------------------------
   スライドショー フェード
   ----------------------------------------------------------- */
.slide-type1 .slide {
	opacity: 0;
	transition: opacity 1.5s ease;
}
.slide-type1 .slide.is-active {
	opacity: 1;
}

/* -----------------------------------------------------------
   右サイドの「お問い合わせ」ボタン — オレンジに
   ----------------------------------------------------------- */
#btn-special a {
	background: linear-gradient(#e05a00, #c04a00);
	color: #fff;
}



/* -----------------------------------------------------------
   Instagram 出店者募集バナー
   ----------------------------------------------------------- */
.insta-recruit {
	background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
	color: #fff;
	padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	position: relative;
	overflow: hidden;
}

/* 背景の薄いロゴ装飾 */
.insta-recruit::before {
	content: "\f16d";
	font-family: "Font Awesome 6 Brands";
	position: absolute;
	right: -2rem;
	bottom: -2rem;
	font-size: clamp(10rem, 25vw, 22rem);
	color: rgba(255,255,255,0.07);
	line-height: 1;
	pointer-events: none;
}

.insta-recruit-inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	position: relative;
	z-index: 1;
}

/* 左のアイコン */
.insta-recruit-icon {
	font-size: clamp(3.5rem, 8vw, 6rem);
	line-height: 1;
	flex-shrink: 0;
	opacity: 0.92;
}

/* 右のテキストエリア */
.insta-recruit-label {
	margin: 0 0 0.3rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.75;
}

.insta-recruit-title {
	margin: 0 0 0.8rem;
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.insta-recruit-text {
	margin: 0 0 1.6rem;
	font-size: clamp(0.82rem, 1.5vw, 0.92rem);
	line-height: 1.9;
	opacity: 0.88;
}

/* ボタン */
.insta-recruit-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	color: #c0306a;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	padding: 0.85rem 1.8rem;
	border-radius: 2rem;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.insta-recruit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	opacity: 1;
}
.insta-recruit-btn i {
	font-size: 1rem;
}

/* スマホ：縦積みに */
@media screen and (max-width: 600px) {
	.insta-recruit-inner {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}
	.insta-recruit-btn {
		width: 100%;
		justify-content: center;
	}
}


/* -----------------------------------------------------------
   地方創生 PR セクション
   ----------------------------------------------------------- */
.chiiki-pr {
	background: linear-gradient(160deg, #0f1f0f 0%, #1a3020 60%, #0a1a10 100%);
	color: #fff;
	padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
	position: relative;
	overflow: hidden;
}

/* 背景の装飾テキスト */
.chiiki-pr::before {
	content: "LOCAL";
	position: absolute;
	left: -0.5rem;
	bottom: -1rem;
	font-size: clamp(5rem, 18vw, 14rem);
	font-weight: 900;
	color: rgba(255,255,255,0.03);
	line-height: 1;
	letter-spacing: -0.02em;
	pointer-events: none;
	white-space: nowrap;
}

.chiiki-pr-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* ヘッド */
.chiiki-pr-head {
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.chiiki-pr-label {
	margin: 0 0 0.8rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: #6fcf82;
}

.chiiki-pr-title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 4vw, 2.4rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.chiiki-pr-lead {
	margin: 0;
	font-size: clamp(0.83rem, 1.5vw, 0.95rem);
	line-height: 1.9;
	opacity: 0.7;
}

.pc-only { display: none; }
@media screen and (min-width: 768px) {
	.pc-only { display: inline; }
}

/* 3ポイントグリッド */
.chiiki-pr-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.2rem, 3vw, 2rem);
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media screen and (max-width: 768px) {
	.chiiki-pr-points {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}
}

.chiiki-pr-point {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-top: 3px solid #6fcf82;
	padding: clamp(1.5rem, 3vw, 2rem);
	transition: background 0.3s;
}

.chiiki-pr-point:hover {
	background: rgba(255,255,255,0.1);
}

.chiiki-pr-point-icon {
	font-size: 1.8rem;
	color: #6fcf82;
	margin-bottom: 0.9rem;
	line-height: 1;
}

.chiiki-pr-point h3 {
	margin: 0 0 0.7rem;
	font-size: clamp(0.95rem, 1.8vw, 1.05rem);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.chiiki-pr-point p {
	margin: 0;
	font-size: 0.83rem;
	line-height: 1.9;
	opacity: 0.72;
}

/* CTAボタン */
.chiiki-pr-cta {
	text-align: center;
	margin: 0;
}

.chiiki-pr-cta a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 2px solid #6fcf82;
	color: #6fcf82;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	padding: 0.9rem 2.2rem;
	transition: background 0.2s, color 0.2s;
}

.chiiki-pr-cta a:hover {
	background: #6fcf82;
	color: #0f1f0f;
	opacity: 1;
}


/*▼▼▼▼▼ 会社概要ページ（company.html）
---------------------------------------------------------------------------*/

/* 会社概要テーブル */
.company-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto 2rem;
	font-size: clamp(0.85rem, 1.6vw, 0.95rem);
	line-height: 1.9;
}

.company-table th,
.company-table td {
	padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1rem, 2.5vw, 1.5rem);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	text-align: left;
	vertical-align: top;
}

.company-table th {
	width: 30%;
	font-weight: 700;
	color: var(--primary-color);
	white-space: nowrap;
	background: rgba(26, 26, 46, 0.04);
}

.company-table td a {
	color: var(--primary-color);
	text-decoration: underline;
}

.company-table td a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 600px) {
	.company-table th {
		width: 38%;
		white-space: normal;
	}
}

/* 事業内容カード */
.company-services {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.2rem, 3vw, 2rem);
	margin: 0 auto;
	max-width: 960px;
}

.company-service-item {
	display: flex;
	gap: 1.2rem;
	align-items: flex-start;
	background: #fff;
	border: 1px solid rgba(26,26,46,0.1);
	border-top: 4px solid var(--primary-color);
	padding: clamp(1.3rem, 3vw, 1.8rem);
	transition: box-shadow 0.25s;
}

.company-service-item:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.company-service-icon {
	flex-shrink: 0;
	font-size: 1.6rem;
	color: var(--primary-color);
	padding-top: 0.15rem;
	opacity: 0.75;
}

.company-service-body h3 {
	margin: 0 0 0.6rem;
	font-size: clamp(0.9rem, 1.7vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--primary-color);
}

.company-service-body p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.9;
	color: #555;
}

@media screen and (max-width: 768px) {
	.company-services {
		grid-template-columns: 1fr;
	}
}


/*▼▼▼▼▼ お客様の声 — 区分見出しと参加者カード
---------------------------------------------------------------------------*/

/* 主催者／参加者の区分見出し */
.koe-sub-head {
	text-align: center;
	font-size: clamp(0.85rem, 1.6vw, 0.95rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--primary-color);
	margin: 0 0 1.4rem;
	padding: 0.55rem 1.4rem;
	display: inline-block;
	border-bottom: 2px solid var(--primary-color);
	opacity: 0.75;
}

.koe-sub-head--visitor {
	color: #c05c2a;
	border-bottom-color: #c05c2a;
}

/* 参加者カードのアクセント */
.koe-visitor {
	border-top: 4px solid #c05c2a !important;
}

.koe-visitor h4::before {
	content: "💬 ";
}


/*▼▼▼▼▼ FAQ セクションナビ
---------------------------------------------------------------------------*/
.faq-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(0.6rem, 1.5vw, 1rem);
	padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1rem, 4vw, 2rem);
	background: #f5f5f8;
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq-nav-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	color: var(--primary-color);
	text-decoration: none;
	font-size: clamp(0.8rem, 1.5vw, 0.88rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.65rem 1.3rem;
	border: 2px solid var(--primary-color);
	transition: background 0.2s, color 0.2s;
}

.faq-nav-item i {
	font-size: 0.9em;
	opacity: 0.8;
}

.faq-nav-item:hover {
	background: var(--primary-color);
	color: #fff;
	opacity: 1;
}

@media screen and (max-width: 600px) {
	.faq-nav {
		gap: 0.5rem;
	}
	.faq-nav-item {
		font-size: 0.78rem;
		padding: 0.55rem 1rem;
	}
}


/*▼▼▼▼▼ ご依頼の流れページ（work-flow.html）
---------------------------------------------------------------------------*/

/* リード文 */
.wf-lead {
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
	background: #f5f5f8;
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

.wf-lead p {
	margin: 0;
	font-size: clamp(0.88rem, 1.6vw, 1rem);
	line-height: 2;
	color: #444;
}

/* フロー全体ラッパー */
.wf-section {
	padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
	max-width: 860px;
	margin: 0 auto;
}

.wf-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* 矢印 */
.wf-arrow {
	text-align: center;
	font-size: 1.4rem;
	color: var(--primary-color);
	opacity: 0.3;
	padding: 0.6rem 0;
	line-height: 1;
}

/* 各ステップ */
.wf-step {
	display: grid;
	grid-template-columns: 80px 56px 1fr;
	gap: 0 clamp(1rem, 3vw, 1.8rem);
	align-items: flex-start;
	background: #fff;
	border: 1px solid rgba(26,26,46,0.1);
	border-left: 5px solid var(--primary-color);
	padding: clamp(1.4rem, 3vw, 2rem) clamp(1.2rem, 3vw, 1.8rem);
	transition: box-shadow 0.25s;
}

.wf-step:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* イベント当日ステップを強調 */
.wf-step--highlight {
	border-left-color: var(--accent-gold);
	background: #fffdf4;
}

.wf-step--highlight .wf-step-num .wf-step-digit {
	color: var(--accent-gold);
}

.wf-step--highlight .wf-step-icon {
	color: var(--accent-gold);
}

/* ステップ番号 */
.wf-step-num {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 0.2rem;
}

.wf-step-label {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--primary-color);
	opacity: 0.5;
	line-height: 1;
	margin-bottom: 0.2rem;
}

.wf-step-digit {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
	letter-spacing: -0.02em;
}

/* アイコン */
.wf-step-icon {
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	color: var(--primary-color);
	opacity: 0.7;
	padding-top: 0.3rem;
}

/* テキスト本体 */
.wf-step-body h2 {
	margin: 0 0 0.6rem;
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--primary-color);
}

.wf-step-body > p {
	margin: 0 0 0.9rem;
	font-size: 0.88rem;
	line-height: 1.95;
	color: #555;
}

/* チェックリスト */
.wf-step-note {
	list-style: none;
	padding: 0;
	margin: 0 0 0.8rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 1.2rem;
}

.wf-step-note li {
	font-size: 0.8rem;
	color: #555;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.wf-step-note li i {
	color: #4caf72;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* ステップ内CTAリンク */
.wf-step-cta a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.15rem;
	transition: opacity 0.2s;
}

.wf-step-cta a:hover {
	opacity: 0.65;
}

/* FAQバナー */
.wf-faq-banner {
	background: #f0f0f5;
	padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 5vw, 3rem);
}

.wf-faq-banner-inner {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.wf-faq-banner-label {
	margin: 0 0 0.3rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--primary-color);
	opacity: 0.5;
}

.wf-faq-banner h2 {
	margin: 0 0 0.3rem;
	font-size: clamp(1.1rem, 2.2vw, 1.3rem);
	font-weight: 700;
	color: var(--primary-color);
}

.wf-faq-banner p {
	margin: 0;
	font-size: 0.85rem;
	color: #666;
}

.wf-faq-banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.85rem 1.8rem;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.wf-faq-banner-btn:hover {
	opacity: 0.75;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
	.wf-step {
		grid-template-columns: 60px 44px 1fr;
		gap: 0 0.8rem;
		padding: 1.2rem 1rem;
	}

	.wf-step-digit {
		font-size: 1.6rem;
	}

	.wf-step-icon {
		font-size: 1.2rem;
	}

	.wf-step-note {
		flex-direction: column;
		gap: 0.25rem;
	}

	.wf-faq-banner-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* フロー内 電話番号 */
.wf-step-tel {
	margin: 0 0 0.8rem;
}

.wf-step-tel a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	font-weight: 900;
	color: var(--primary-color);
	text-decoration: none;
	letter-spacing: 0.04em;
}

.wf-step-tel a:hover {
	opacity: 0.7;
}


/*▼▼▼▼▼ お問い合わせページ（contact.html）
---------------------------------------------------------------------------*/

/* 電話案内バー */
.contact-tel-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
	background: #f0f0f5;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding: 1rem clamp(1.5rem, 5vw, 3rem);
	font-size: 0.88rem;
	color: #555;
}

.contact-tel-bar p {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
}

.contact-tel-bar a {
	font-size: clamp(1.3rem, 3vw, 1.7rem);
	font-weight: 900;
	color: var(--primary-color);
	text-decoration: none;
	letter-spacing: 0.04em;
}

.contact-tel-bar a:hover { opacity: 0.7; }

.contact-tel-bar span {
	font-size: 0.8rem;
	color: #777;
}

/* フォームセクション */
.contact-section {
	max-width: 780px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

/* フォーム全体 */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

/* 各行 */
.cf-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0.5rem 1.5rem;
	align-items: flex-start;
}

.cf-row label {
	padding-top: 0.65rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.5;
}

/* 必須ラベル */
.cf-required label::after {
	content: '必須';
	display: inline-block;
	margin-left: 0.4rem;
	font-size: 0.68rem;
	font-weight: 700;
	color: #fff;
	background: #c0392b;
	padding: 0.1em 0.45em;
	border-radius: 2px;
	vertical-align: middle;
	line-height: 1.6;
}

/* 入力欄 */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 0.9rem;
	font-family: inherit;
	color: #333;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(26,26,46,0.1);
}

/* セレクトボックス */
.cf-select-wrap {
	position: relative;
}

.cf-select-wrap::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #666;
	font-size: 0.9rem;
}

.contact-form select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

/* テキストエリア */
.contact-form textarea {
	resize: vertical;
	line-height: 1.8;
}

/* 同意チェック */
.cf-agree label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 400;
	font-size: 0.88rem;
	color: #444;
	cursor: pointer;
	padding-top: 0;
}

.cf-agree input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 0.15rem;
	accent-color: var(--primary-color);
	cursor: pointer;
}

.cf-agree a {
	color: var(--primary-color);
}

/* 送信ボタン */
.cf-submit {
	text-align: center;
	margin-top: 0.5rem;
}

.cf-submit button {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--primary-color);
	color: #fff;
	border: none;
	padding: 1rem 3rem;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	font-family: inherit;
	transition: opacity 0.2s;
}

.cf-submit button:hover {
	opacity: 0.8;
}

/* スマホ対応 */
@media screen and (max-width: 640px) {
	.cf-row {
		grid-template-columns: 1fr;
		gap: 0.3rem;
	}

	.cf-row label {
		padding-top: 0;
	}

	.contact-tel-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.3rem;
	}
}


/*▼▼▼▼▼ 送信完了ページ（thanks.html）
---------------------------------------------------------------------------*/

.thanks-section {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 8vw, 6rem) 1.5rem;
	background: #f5f5f8;
}

.thanks-inner {
	background: #fff;
	border-top: 5px solid var(--primary-color);
	padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
	max-width: 600px;
	width: 100%;
	text-align: center;
}

.thanks-icon {
	font-size: 3.5rem;
	color: #4caf72;
	margin-bottom: 1rem;
	line-height: 1;
}

.thanks-inner h1 {
	font-size: clamp(1.3rem, 3vw, 1.7rem);
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 1rem;
}

.thanks-lead {
	font-size: 0.92rem;
	line-height: 1.9;
	color: #555;
	margin-bottom: 1.8rem;
}

.thanks-note {
	background: #f5f5f8;
	border-left: 4px solid var(--primary-color);
	padding: 1.2rem 1.4rem;
	text-align: left;
	margin-bottom: 2rem;
}

.thanks-note p {
	margin: 0 0 0.6rem;
	font-size: 0.88rem;
	color: #444;
	line-height: 1.8;
}

.thanks-note p:last-child { margin: 0; }

.thanks-tel {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--primary-color);
	text-decoration: none;
	display: inline-block;
	margin-top: 0.2rem;
}

.thanks-back a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.15rem;
	transition: opacity 0.2s;
}

.thanks-back a:hover { opacity: 0.65; }


/*▼▼▼▼▼ お問い合わせフォーム — 種別選択・動的セクション
---------------------------------------------------------------------------*/

/* 種別ラジオボタン */
.cf-type-row {
	align-items: flex-start;
}

.cf-type-selector {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
}

.cf-type-btn {
	display: flex;
	cursor: pointer;
}

.cf-type-btn input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.cf-type-btn span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #ccc;
	font-size: 0.85rem;
	font-weight: 700;
	color: #555;
	background: #fff;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	line-height: 1.4;
}

.cf-type-btn input[type="radio"]:checked + span {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: rgba(26,26,46,0.05);
}

.cf-type-btn span i {
	font-size: 1rem;
	flex-shrink: 0;
}

/* 動的セクション */
.cf-dynamic-section {
	border: 1px solid rgba(26,26,46,0.15);
	border-top: 3px solid var(--primary-color);
	padding: clamp(1.2rem, 3vw, 1.8rem);
	background: #fafafa;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.cf-section-head {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 0.05em;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(26,26,46,0.1);
}

/* チェックボックス */
.cf-checks {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cf-check-item {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	cursor: pointer;
	font-size: 0.88rem;
	color: #333;
}

.cf-check-item input[type="checkbox"] {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 0.15rem;
	accent-color: var(--primary-color);
	cursor: pointer;
}

.cf-check-item small {
	font-size: 0.78rem;
	color: #888;
}

/* ファイルアップロード */
input.cf-file {
	border: 2px dashed #ccc !important;
	padding: 0.6rem 0.8rem !important;
	background: #fff !important;
	cursor: pointer;
	font-size: 0.85rem !important;
	color: #555;
}

input.cf-file:hover {
	border-color: var(--primary-color) !important;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
	.cf-type-selector {
		grid-template-columns: 1fr;
	}
}

/* 種別「その他」ボタンを横幅いっぱいに */
.cf-type-btn--other {
	grid-column: 1 / -1;
}

.cf-type-btn--other span {
	justify-content: center;
	border-color: #aaa;
	color: #777;
}


/* ===================================================
   performance.html — 運営実績ページ
   =================================================== */

/* セクション共通 */
.perf-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 960px;
  margin: 0 auto;
}

.perf-section--dark {
  background: #1a1a2e;
  max-width: 100%;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.perf-section--dark .perf-section {
  max-width: 960px;
  margin: 0 auto;
}

.perf-section--gray {
  background: #f7f7f9;
  max-width: 100%;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

/* セクション見出し */
.perf-h2 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 0 2rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1a1a2e;
}

.perf-h2--white {
  color: #fff;
}

.perf-h2--white .perf-en {
  color: rgba(255,255,255,0.35);
}

.perf-en {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: #aaa;
  text-transform: uppercase;
}

/* 主な仕事内容グリッド */
.perf-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.perf-overview-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #f4f5f8;
  border-left: 3px solid var(--primary-color, #a28060);
  padding: 1rem 1.2rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: #222;
  line-height: 1.5;
}

.perf-overview-item i {
  font-size: 1.2rem;
  color: var(--primary-color, #a28060);
  flex-shrink: 0;
}

.perf-period {
  font-size: 0.82rem;
  color: #888;
  text-align: right;
  margin: 0.5rem 0 0;
}

/* タイムライン */
.perf-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.perf-timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.perf-section:not(.perf-section--dark) .perf-timeline-item {
  border-bottom-color: #eee;
}

.perf-timeline-date {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  padding-top: 0.25rem;
  line-height: 1.6;
}

.perf-section:not(.perf-section--dark) .perf-timeline-date {
  color: #888;
}

.perf-timeline-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.perf-section:not(.perf-section--dark) .perf-timeline-body h3 {
  color: #1a1a2e;
}

.perf-timeline-body p {
  margin: 0 0 0.6rem;
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.perf-section:not(.perf-section--dark) .perf-timeline-body p {
  color: #555;
}

.perf-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.perf-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* キャスティンググリッド */
.perf-cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.perf-cast-item {
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 8px;
  overflow: hidden;
}

.perf-cast-date {
  background: #1a1a2e;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
}

.perf-cast-body {
  padding: 0.9rem 1rem;
}

.perf-cast-venue {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  color: #888;
}

.perf-cast-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* 暗色背景セクション内タイムライン幅 */
.perf-section--dark .perf-timeline {
  max-width: 800px;
  margin: 0 auto;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .perf-timeline-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .perf-overview-grid {
    grid-template-columns: 1fr;
  }
}


/* ===================================================
   privacy.html — プライバシーポリシーページ
   =================================================== */

.privacy-wrap {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-lead {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #444;
  margin: 0 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8ec;
}

.privacy-block {
  margin-bottom: 2.2rem;
}

.privacy-block h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.7rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--primary-color, #a28060);
}

.privacy-block p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #555;
  margin: 0 0 0.5rem;
}

.privacy-list {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
  font-size: 0.87rem;
  color: #555;
  line-height: 1.9;
}

.privacy-contact-box {
  background: #f7f7f9;
  border: 1px solid #e8e8ec;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-top: 0.8rem;
}

.privacy-contact-box p {
  margin: 0 0 0.3rem;
}

.privacy-contact-box a {
  color: var(--primary-color, #a28060);
  text-decoration: none;
}

.privacy-contact-box a:hover {
  text-decoration: underline;
}

.privacy-date {
  font-size: 0.8rem;
  color: #aaa;
  text-align: right;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8ec;
}

.privacy-back-btn {
  display: inline-block;
  font-size: 0.88rem;
  color: #555;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.privacy-back-btn:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}


/* ===================================================
   お知らせ 準備中 & アーカイブ
   =================================================== */

/* 準備中ボックス */
.news-preparing {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
  background: #f7f7f9;
  border: 2px dashed #ddd;
  border-radius: 10px;
  margin: 0 0 2rem;
}

.news-preparing-icon {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  color: var(--primary-color, #a28060);
  opacity: 0.7;
}

.news-preparing-text {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.05em;
}

.news-preparing-sub {
  margin: 0;
  font-size: 0.82rem;
  color: #999;
  line-height: 1.75;
}

/* 過去のニュース */
.news-archive-block {
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 8px;
  padding: 1.8rem 2rem;
}

.news-archive-month {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.05em;
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e8e8ec;
}
