@charset "utf-8";


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


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


/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--bg-color: #000;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #fff;		/*上のカラーの「対」として使う色*/
	
	--primary-color: #fdcb06;			/*メインまたはアクセントカラー*/
	--primary-inverse-color: #000;	/*上のカラーの「対」として使う色*/

	--content-space-l: 5vw;			/*主に左右の余白の一括管理用。画面幅100% = 100vwです。*/
	--content-space-s: 2rem;		/*headerやfooter、２カラム以上のレイアウトで主に使います*/
	
	--side-space : 60px;			/*左側の細いsideブロックの幅*/

	--base-font: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;  /*フォント指定*/
	--accent-font: "Jost";  /*アクセント用英語フォント指定*/

}

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

	:root {
		--content-space-l: 10px;	/*余白の一括管理用。小さな端末で余白を狭くする。*/
	}

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


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html {
	font-size: clamp(12px, 0.488vw + 10.17px, 17px);	/*画面幅約375px〜1400pxの間で、12px〜17pxに可変*/
	overflow-x: visible;
}
body {
	margin: 0;padding:0;
	font-family: var(--base-font);	/*フォント指定。冒頭のbase-fontを読み込みます。*/
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*冒頭のbg-colorを読み込みます*/
	color: var(--bg-inverse-color);	/*冒頭のbg-inverse-colorを読み込みます*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

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

/*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;}


/*section
---------------------------------------------------------------------------*/
section {
	padding: 0 var(--content-space-l);	/*上下、左右へのsection内の余白。左右については、冒頭の--content-space-lを読み込みます。*/
	margin: var(--content-space-l) 0;	/*上下、左右へのsectionの外側にとるマージン。上下については、冒頭の--content-space-lを読み込みます。*/
}

/*section間のマージンを消したい場合用。1つ目のsectionにだけclass="mb0"を追加する。*/
section.mb0 {margin-bottom: 0;}
section.mb0 + section {margin-top: 0;}


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

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	text-decoration: none;
}


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.2s both;  /*0.2(2つ目の数字)秒待機後、0.2(1つ目の数字)秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-left: var(--side-space);	/*左側に空ける余白。冒頭のside-spaceを読み込みます。*/
}


/*header（メイン画像やロゴが入った再上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック全体*/
header {
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	padding: 1rem var(--content-space-s);	/*上下に1文字分の余白、左右に冒頭のcontent-space-sの余白*/
}

/*トップページのヘッダー*/
body.home header {
	padding: 0;
	height: 40vw;		/*高さ。メイン画像のバランスを見て調整して下さい。画面幅100% = 100vwです。画面幅に合わせて高さが変動するようにしています。*/
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

	body.home header {
		height: auto;
	}

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


/*テキストブロック（ロゴと文章）*/
header .text {
	margin-left: 10vw;		/*左に空けるスペース。画面幅に対して10%。*/
	position: relative;
	padding-right: 32vw;	/* 画像とかぶらないように必要なら調整 */
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	/*テキストブロック（ロゴと文章）*/
	header .text {
		padding-right: 0;
		margin: 0 auto;			/*センタリング*/
		order: 1;				/*小さな画面では、画像の下にテキストブロックを配置する。逆がよければこの１行を削除。*/
		padding-bottom: 5vw;	/*下に空ける余白*/
		text-align: center;
	}
	
	}/*追加指定ここまで*/


/*ロゴ上のラーメンアイコン*/
header .text::before {
	content: "";
	display: inline-block;
	margin-bottom: 4vw;	/*ロゴとアクセントラインとの距離。お好みで。*/
	width: 5vw;			/*アイコンの幅。画面幅の5%。お好みで。*/
	height: 5vw;		/*アイコンの高さ。お好みで。*/
	background: url("../images/logo-design.png") no-repeat center center / contain;
}

/*ロゴ画像*/
#logo {margin: 0;flex-shrink: 0;}
#logo img {
	display: block;
	width: 200px;	/*画像幅*/
}

/*トップページのロゴ画像*/
body.home #logo img {
	width: 35vw;		/*画像幅。画面の35%。*/
	margin-bottom: 3vw;	/*下のテキストとの間に空けるスペース。*/
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	/*トップページのロゴ画像をセンタリング*/
	body.home #logo img {
		margin-inline: auto;
	}
	
	}/*追加指定ここまで*/


/*ロゴ下の文章*/
header .text p {
	font-size: max(11px, 1vw);	/*文字サイズ。基本は1vw（画面幅の1%）だけど、11pxより小さくしない。*/
}


/*メイン画像
---------------------------------------------------------------------------*/
#mainimg {
	display: block;
	width: 45vw;	/*画像の幅。メイン画像のバランスを見て調整して下さい。画面幅100% = 100vwです。画面幅に合わせて高さが変動するようにしています。*/
	position: absolute;
	right: 0;
	top: 0;
}
#mainimg img {
	display: block;
	width: 100%;
	height: auto;
}

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

	#mainimg {
		width: 100%;
		position: static;
	}

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

/*contents
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	min-height: 0;
}


/*main
---------------------------------------------------------------------------*/
main {overflow-x: hidden;}

/*main内で使用するul,ol要素（リストタグ）*/
main ul,main ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*「今月のピックアップ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.pickup-container {
	margin-top: 0;	/*sectionの上マージンをけす*/
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*2カラムに*/
.pickup-container > div {
	display: flex;
	align-items: center;
	gap: var(--content-space-s);	/*写真とテキストブロックの間に空ける余白。冒頭のcontent-space-sを読み込みます*/
}

/*画像ブロック*/
.pickup-container > div .img {
	width: 40%;		/*幅。お好みで。*/
}

/*テキストブロック*/
.pickup-container > div .text {
	flex: 1;
	padding-block: 8vw;	/*メイン画像に重ならないように上下に余白をとる*/
}

/*「今月のピックアップ」テキスト*/
.pickup-container > div .text .hosoku {
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	display: inline-block;
	padding: 0 1rem;	/*上下に0、左右に1文字分の余白*/
	font-size: 0.75rem;	/*文字サイズ75%*/
}

/*h3見出し*/
.pickup-container > div .text h3 {
	margin: 0;
	line-height: 1.5;
	font-size: 2rem;	/*文字サイズ。2倍。*/
	font-weight: 400;	/*文字の太さ。200〜900まで指定可能。*/
}


/*list1（カラムブロック）
---------------------------------------------------------------------------*/
.list1 * {margin: 0;padding: 0;}

/*ボックス全体*/
.list1 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));	/*4列*/
	font-size: 0.9rem;	/*文字サイズ90%*/
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	gap: 1px;			/*ボックス同士の余白。今回は、線の代わりになります。*/
	padding: 1px;	/*ボックスの上下の余白。今回は、線の代わりになります。*/
}

/*bleed-x内で使う場合のみ、左右の線を消す*/
.bleed-x .list1 {
	padding-inline: 0;
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	.list1 {
		grid-template-columns: repeat(2, minmax(0, 1fr));	/*2列*/
	}
	
	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list1 .list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;	/*画像、タイトル、説明の間に空ける余白。0.5文字分。*/
	position: relative;
	background: var(--bg-color);	/*冒頭のbg-colorを読み込みます*/
	color: var(--bg-inverse-color);	/*冒頭のbg-inverse-colorを読み込みます*/
	padding: 2vw;	/*ボックス内の余白。画面幅の2%。*/
}

/*テキストボックス*/
.list1 .list .text {
	flex: 1;
}

/*h4見出し*/
.list1 .list h4 {
	text-align: center;	/*センタリング*/
}

/*説明*/
.list1 .list p {
	font-size: 0.9em;	/*文字サイズを90%*/
	line-height: 1.5;	/*行間を少し狭く*/
}


/*list1用のアイコン。今回は価格表示に使っています。
---------------------------------------------------------------------------*/
/*icon1*/
.list1 .icon1 {
	display: block;
	pointer-events: none;
	font-size: 0.8rem;	/*文字サイズ80%*/
	letter-spacing: 0.05em;
	position: absolute;
	left: 0px;	/*ボックスの左からの配置*/
	top: 0px;	/*ボックスの上からの配置*/
	padding: 0 0.5rem;	/*アイコン内の余白。上下は0、左右に0.5文字分。*/
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	font-family: var(--accent-font), var(--base-font);	/*フォントの指定。冒頭の--accent-fontを読み込み。日本語フォントならbase-fontに変更。*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*開閉メニューの出現アニメーション*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: var(--side-space);	/*冒頭のside-spaceを読み込みます*/}
}

/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	--border-color: rgba(255,255,255,0.5);	/*ブロックの右側の線幅、線種、255,255,255は白のことで0.5は色が50%出た状態。*/
	position: fixed;overflow: auto;z-index: 100;
	top: 0px;
	width: 50%;		/*メニューが開いた時の幅。お好みで。*/
	height: 100%;
	padding: 7vw;	/*メニュー内の余白。お好みで。*/
	background: rgba(0,0,0,0.95);	/*背景色。0,0,0は黒のことで0.95は色が95%出た状態。*/
	color: #fff;	/*文字色*/
	border-right: 1px solid var(--border-color);	/*右側の線。ここの設定の--border-colorを読み込みます。*/
	font-size: 0.9rem;	/*文字サイズ90%*/
}

.small-screen #menubar {display: none;}

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

	.small-screen #menubar {
		width: calc(100% - var(--side-space));		/*メニューが開いた時の幅*/
	}

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


/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	padding: 0.5rem 2rem;	/*メニュー内の余白。上下に0.5文字分、左右に２文字分。*/
	border-radius: 5px;		/*角を少し丸くする*/
	border: 1px solid var(--border-color);	/*線の設定。上の「.small-screen #menubar」の--border-colorを読み込みます。*/
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	border: none;border-radius: 0;
	margin-left: 2rem;		/*左に２文字分のスペースを空ける*/
	padding: 0.5rem 1.5rem;	/*メニュー内の余白。上下に0.5文字分、左右に1.5文字分。*/
	border-bottom: 1px solid var(--border-color);	/*下の線の設定。上の「.small-screen #menubar」の--border-colorを読み込みます。*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f078";		/*このアイコンを使う*/
	margin-right: 1em;		/*アイコンとメニューテキストとの間に空けるスペース。1文字分。*/
	font-size: 0.7em;		/*アイコンサイズ。70%*/
	vertical-align: middle;
	display: inline-block;
	line-height: 1;
}

/*ドロップダウン共通（デフォルトで非表示。チラつかないよう念の為。）*/
#menubar ul ul {display: none;}


/*side（ハンバーガーアイコン、SNSアイコンが入ったブロック）
---------------------------------------------------------------------------*/
#side {
	position: fixed;	/*画面をスクロールしても動かさない*/
	z-index: 101;
	left: 0px;
	top: 0px;
	width: var(--side-space);	/*冒頭のside-spaceを読み込みます*/
	height: 100vh;
	background: #222;	/*背景色*/
}


/*SNSアイコン
---------------------------------------------------------------------------*/
.others-sns1 {
	list-style: none;
	margin: 0;padding: 0;
	margin-top: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;		/*アイコン同士のマージン的な要素。1.5文字分。*/
}

.others-sns1 i {
	font-size: 20px;	/*アイコンサイズ*/
	color: #777;		/*アイコの色。お好みで。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	position: fixed;
	z-index: 101;
	left: 0px;
	top: 0px;		/*上からの配置場所*/
	width: var(--side-space);	/*冒頭のside-spaceを読み込みます*/
	height: 70px;	/*高さ*/
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	position: absolute;
	left: 12px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;	/*背景色*/
}
#menubar_hdr.ham span {
	background: #fff;	/*線の色*/
}

/*以下変更不要*/
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*c2。section内で使う2カラムパーツ（※800px未満では１カラム）
---------------------------------------------------------------------------*/

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

	.c2 {
		display: flex;
		justify-content: space-between;
		gap: var(--content-space-l);	/*２カラムの間に空けるスペース。冒頭のcontent-space-lを読み込みます。。*/
	}
	
	/*title側*/
	.title {
		width: 30%;	/*幅。お好みで。*/
	}
	
	/*text側*/
	.c2 .text {
		flex: 1;
	}
	
	/*左右逆で使いたい場合*/
	.c2.reverse {
		flex-direction: row-reverse;
	}
	
	}/*追加指定ここまで*/


/*news（お知らせ）
---------------------------------------------------------------------------*/
dl.news2 * {margin: 0;padding: 0;}

/*日付*/
dl.news2 dt {
	display: flex;
	font-family: var(--accent-font), var(--base-font);	/*フォントの指定。冒頭の--accent-fontを読み込み。日本語フォントならbase-fontに変更。*/
}

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

	dl.news2 {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr);	/*日付幅は最大の文字数幅に自動調整し、右側テキストは残り一杯使う。*/
		gap: 0 2rem;	/*2remが、日付とテキストとの間に空けるスペース。お好みで。*/
		align-items: start;
	}

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


/*フッター
---------------------------------------------------------------------------*/
footer ul {list-style: none;}

/*フッターボックス全体*/
footer {
	font-size: 0.85rem;	/*文字サイズ85%*/
    padding: var(--content-space-s);		/*ボックス内の余白。冒頭のcontent-space-sを読み込みます。*/
    background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*ロゴの最大幅*/
footer .logo {
	max-width: 400px;
}

/*フッター直下のdiv（２つのブロックそれぞれ）*/
footer > div {
	display: flex;
	flex-direction: column;	/*縦積み*/
}


	/*画面幅900px以上の追加指定*/
	@media (min-width: 900px){
	
	/*フッターボックス全体*/
	footer {
		display: flex;	/*横並びにする*/
		justify-content: space-between;
		gap: var(--content-space-s);	/*左右のボックスの間に空けるスペース。冒頭のcontent-space-sを読み込みます。*/
	}
	
	/*1つ目（左側）ブロック*/
	footer > div:nth-of-type(1) {
		flex: 0 0 50%;	/*幅を50%。お好みで。*/
	}

	/*2つ目（右側）ブロック*/
	footer > div:nth-of-type(2) {
		flex: 1;
		min-width: 0;
	}

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

/*Copyright部分*/
footer small {
	display: block;
	text-align: right;	/*右寄せ*/
	margin-top: auto;	/*下に*/
}


/*Google Map用
---------------------------------------------------------------------------*/
.others-iframe1 {
	width: 100%;
	aspect-ratio: 16 / 9;	/*マップのアスペクト比。お好みで。*/
	position: relative;
	overflow: hidden;
}
.others-iframe1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*テーブル（ta-week2）
---------------------------------------------------------------------------*/
/*テーブルブロック設定*/
.ta-week2 {
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 5px;	/*角を丸くする指定*/
	width: 100%;
	border: 1px solid var(--primary-inverse-color);	/*テーブル外側の線の幅、線種、varは色の指定で冒頭のprimary-inverse-colorを読み込みます。*/
}

/*受付時間の幅*/
.ta-week2 th:first-child,
.ta-week2 td:first-child {
	width: 25%;
}

/*各曜日の幅*/
.ta-week2 th:not(:first-child),
.ta-week2 td:not(:first-child) {
	width: calc(75% / 7);	/*受付時間で25%とっているので残りの75%を7で割る*/
}

/*th(曜日)とtd(時間)*/
.ta-week2 th,
.ta-week2 td {
	padding: 0.5rem;	/*ボックス内の余白。0.5文字分。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid var(--primary-inverse-color);	/*下の線の幅、線種、varは色の指定で冒頭のprimary-inverse-colorを読み込みます。*/
	border-right: 1px solid var(--primary-inverse-color);	/*右の線の幅、線種、varは色の指定で冒頭のprimary-inverse-colorを読み込みます。*/
}

/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.ta-week2 th:last-child,
.ta-week2 td:last-child {
	border-right: none;
}

/*最後の行の下線を消す*/
.ta-week2 tr:last-child td {
	border-bottom: none;
}

/*１行目。th(曜日)の追加指定*/
.ta-week2 th {
}

/*２行目以降。*/
.ta-week2 td {
	border-bottom: 1px solid var(--primary-inverse-color);	/*下の線の幅、線種、、varは色の指定で冒頭のprimary-inverse-colorを読み込みます。*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.5);
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: 900;
	margin-right: 0.5em;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;	/*ボックス内の余白。上下に0.2文字分、左右に1文字分。*/
	margin-bottom: 1rem;	/*下に空けるスペース。１文字分。*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--bg-inverse-color);	/*テーブルの一番上の線。幅、線種、varは色の設定で冒頭のbg-inverse-colorを読み込みます。。*/
	width: 100%;
	margin-bottom: 2rem;	/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--bg-inverse-color);	/*テーブルの下線。幅、線種、varは色の設定で冒頭のbg-inverse-colorを読み込みます。。*/
}

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 13rem;		/*幅。13文字分。*/
	text-align: left;	/*左よせにする*/
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s 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%;	/*円形にする*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg {
	padding-top: var(--content-space-l);	/*ボックス内の上に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
	padding-bottom: var(--content-space-l);	/*ボックス内の下に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
}

/*背景色が続く場合に隙間を空けない*/
.bg + .bg {
	margin-top: calc(-1 * var(--content-space-l)) !important;
}

/*bg1の色設定*/
.bg1 {
	background: #ef9800;
}


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/
.bleed-x {
	--bleed-x: var(--content-space-l);	/*エイリアスに*/
	width: calc(100% + (var(--bleed-x) * 2));	/*section内容の幅＋両サイドpadding（対象要素の幅）*/
	margin-left: calc(var(--bleed-x) * -1);
	margin-right: calc(var(--bleed-x) * -1);
	max-width: none;
}


/*左右によせる専用
---------------------------------------------------------------------------*/
.bleed-left {
	width: calc(100% + var(--content-space-l));
	margin-left: calc(-1 * var(--content-space-l));
}
.bleed-right {
	width: calc(100% + var(--content-space-l));
	margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #ff0000 !important;}
.bg1-accent .color-check, .color-check a {color: #fef500 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.padding-x {padding: 0 var(--content-space-l);}
.mt0 {margin-top: 0px !important;}
.mt1rem {margin-top: 1rem !important;}
.mt3rem {margin-top: 3rem !important;}
.mb0 {margin-bottom: 0px !important;}
.mb1rem {margin-bottom: 1rem !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #333;color: #ccc; 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;}
.is-clip {overflow: hidden;}

/*大きな画面の場合*/
.large-screen .ws {width: 50%;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}


/*form1用
---------------------------------------------------------------------------*/
.contact-form-block {
    width: 100%;
}

.form-global-error {
    border: 1px solid #f0c2c2;
    background: #fff4f4;
    color: #9b2e2e;
}

.js-ajax-form[hidden] {
    display: none !important;
}

.form-row + .form-row {
    margin-top: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: #1f2947;
    line-height: 1.5;
}

.required-badge {
    display: inline-block;
    margin-left: 0.45rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: #d94c4c;
    vertical-align: middle;
}

.contact-form-inner input[type="text"],
.contact-form-inner input[type="email"],
.contact-form-inner input[type="file"],
.contact-form-inner select,
.contact-form-inner textarea {
    width: 100%;
    appearance: none;
    border: 1px solid #d6dbeb;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: #fff;
    font: inherit;
    line-height: 1.6;
    color: #222;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.contact-form-inner input[type="file"] {
    padding: 0.8rem 1rem;
    cursor: pointer;
}

.contact-form-inner input[type="file"]::file-selector-button {
    margin-right: 0.9rem;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: #eef2ff;
    color: #2f55d4;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-form-inner textarea {
    resize: vertical;
    min-height: 12em;
}

.contact-form-inner input[type="text"]:focus,
.contact-form-inner input[type="email"]:focus,
.contact-form-inner input[type="file"]:focus,
.contact-form-inner select:focus,
.contact-form-inner textarea:focus {
    outline: none;
    border-color: #5d7bff;
    box-shadow: 0 0 0 4px rgba(93, 123, 255, 0.12);
}

.select-inline-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.select-inline {
    width: 100%;
}

.check-group,
.radio-group {
    display: grid;
    gap: 0.7rem;
}

.check-item,
.radio-item,
.check-single {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.6;
}

.check-item input,
.radio-item input,
.check-single input {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-help-text,
.form-file-reset-text {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-row.is-error input[type="text"],
.form-row.is-error input[type="email"],
.form-row.is-error input[type="file"],
.form-row.is-error select,
.form-row.is-error textarea {
    border-color: #d94c4c;
    background: #fff8f8;
}

.form-row.is-error .form-label,
.form-row.is-error .check-single,
.form-row.is-error .check-item,
.form-row.is-error .radio-item {
    color: #972f2f;
}

.form-error-text {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #b23838;
}

.form-actions {
    margin-top: 1.8rem;
	text-align: center;
}

/*個人情報同意チェックを中央寄せ*/
.form-row.js-privacy-row .check-single {
	display: flex;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	gap: 0.5rem;
}

/*送信ボタン*/
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13em;
    min-height: 56px;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #2f55d4 0%, #5d7bff 100%);
    color: #fff;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(47, 85, 212, 0.18);
}

.submit-button:hover {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .contact-form-inner {
        border-radius: 22px;
    }

    .select-inline-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .js-date-select-group[data-date-mode="ymd"] .select-inline-group {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
        min-width: 0;
    }
}

/*郵便番号・都道府県はPCで少し短くする*/
@media (min-width: 768px) {

	.h-adr input[name="postal_code"],
	.h-adr input[name="address_pref"] {
		width: min(100%, 10rem);
	}

}

/*プルダウンを見た目でわかりやすくする*/
.h-adr select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 2.6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	background-size: 0.8rem auto;
	cursor: pointer;
}