@charset "UTF-8";
/*------------------------------
PC用レイアウト（768px以上スクリーン）
------------------------------*/

/*----------
共通設定(PC)
-----------*/

/* 初期スタイル調整 */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* body全体の初期スタイル調整 */
body {
	font-size: 62.5%;
	line-height: 1.6;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
	color: #333;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}

/*リンク文字の設定*/
a {
	text-decoration: underline;
}

a:link,
a:visited {
	color: #39f;
}

a:hover,
a:active {
	color: #f60;
}

p {
	margin: 0 !important;
	padding: 0 !important;
	font-feature-settings: "palt";
	/* フォントプロポーション有効化（日本フォント） */
}

section {
	clear: both;
	/* 配置設定をクリアにしておくため（初期で設定している左右配置をクリアにする） */
	overflow: auto;
	/* 要素の内容が要素自体の領域を超えた場合「aute」 */
}

/* -------------------------------------
見出しタグ設定（PC)
--------------------------------------*/
h2 {
	margin: 0.5em 0 0.5em;
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
}

h3 {
	font-size: 1.5em;
	font-weight: bold;
}



/*カラムが狭くなってもテーブルタグがはみ出ないようにする*/
table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}

/* <section> 間の隙間（margin）をなくすため */
h2,
p {
	margin-top: 0;
	margin-bottom: 0;
}


/* 自動カーニング */
.selector {
	font-feature-settings: "palt";
}


/*--------------------------------------------------------
全体レイアウト/背景設定（PC）
--------------------------------------------------------*/

/*全体エリア(全体背景の設定はここ)*/
.main {
	background-color: #f2f2f2;
}



/*記事(ボディ)エリアの行間*/
.atcl_inr p {
	line-height: 1.6em;
	margin-bottom: 1em;
}

/*記事(ボディ)エリアのフォントサイズ*/
.article {
	font-size: 1.7em;
}

/*カラム全体の幅を変更する*/

.atcl_inr {
	width: 950px;
	margin: 0 auto
}

.header_inr,
.top_image_in {
	width: 1140px;

}

/*PC画面とスマホ画面の切り替え*/

.gamen_pc {
	display: block;
}

.gamen_rps {
	display: none;
}

/*--------------------------------------------------------
上部固定ヘッダー設定
--------------------------------------------------------*/

/*上部固定ヘッダー全体*/
.header {
	position: sticky;
	/* ポジションがピタッとくっつく設定 */
	position: -webkit-sticky;
	top: 0;
	z-index: 5000;
	background-color: #fff;
	border-bottom: 1px;
	overflow: auto;
}

/* ヘッダー内部をカラム幅にする */
.header_inr {
	max-width: 1140px;
	margin: 0 auto;
	overflow: hidden;
}

/*ヘッダーロゴ*/
.header_logo {
	float: left;
	width: 25%;
	margin: 1em 0em 1em;
}

/*ヘッダー 電話ボタン*/
.header_tel {
	width: 15%;
	float: right;
	margin: 1em 0.5em 0em;
}


/*ヘッダー メニュー*/
.header_menu nav ul {
	display: flex;
	gap: 20px;
	/* 各メニューの間隔 */
	list-style: none;
	/* ・を消す */
	margin: 0;
	padding: 0;
}

.header_menu nav li {
	display: inline-block;
}

.header_menu a {
	text-decoration: none;
	color: #222;
	font-size: 1.1em;
	transition: 0.3s;
}

.header_menu a:hover {
	opacity: 0.7;
	color: #004ec2;
}

.header_menu {
	float: right;
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.3em;
	margin: 1.5em 0 0 0;
	padding-right: 2em;
	
}

.header_logo {
	width: 25%;
}

.header_tel {
	width: 15%;
}

.hamburger {
	display: none;
	background: transparent;
	border: 0;
	outline: 0;
}


/*ヘッダー 問い合わせボタン*/
/* .header_mail {
	width: 18%;
	float: right;
	margin: 0.8em 0.3em 0em;
} */

/*ヘッダー内の画像はエリア幅に合わせる*/
.header_logo img,
.header_tel img {
	width: 100%;
}

/*----- スクロール設定 -----*/
/* スムーズスクロール */
html {
	scroll-behavior: smooth;
}

:root {
	--header-h: 90px;
}

/* ヘッダー実高さに合わせて調整 */

section[id] {
	scroll-margin-top: calc(var(--header-h) + 10px);
}


/*-----------------------------------------
ファーストビュー設定
-----------------------------------------*/
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	white-space: nowrap;
}

.top_image {
	background: url(../images/haikei_BrG_top.png) center no-repeat #fff;
	height: auto;
	background-size: cover;
}

.top_image_in {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	align-items: center;
	gap: 20px;
	padding: 2em 0em;
}

.top_image_in img {
	height: auto;

}

.top_img img {
	max-height: 400px;
}


/* --------------------------
悩みエリア設定
----------------------------*/

.sec_BrG_nayami {
	background-color: #fbf8f3;
	text-align: center;
	padding: 2em 0em;
}

.sec_BrG_nayami h2 {
	color: #2158cf;

}

.sec_BrG_nayami img {
	max-width: 800px;
}

/*------------
エリア区切りの設置
-------------*/
.sales_triangle {
	width: 0;
	height: 0;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	border-bottom: 40px solid #fbf8f3;
	transform: rotate(180deg);
	margin: 0 auto;
	position: relative;
	top: 0;
	filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.25));

}

/* ----------------- */
.BrG_nayami_text {
	font-size: 1.5em;
	font-weight: bold;
}

/* --------------------------
サービスエリア設定
----------------------------*/
.sec_Brg_jirei {
	background-color: #fff;
	overflow-x: hidden;
}

.jirei_area {
	display: flex;
	justify-content: center;
	gap: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	padding: 2em 0em;
}

.jirei_area img {
	max-width: 300px;

}

.jirei_mds {
	text-align: center;
	margin-bottom: .8em;
	padding-top: 2em;

}

/* -----黒枠の装飾----- */
.jirei_mds p {
	display: inline-block;
	padding: .2em 1em;
	border: 2px solid #000;
	font-weight: bold;
	font-size: 1.4em;
}

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

/*----------
 緑の下線装飾 
 ----------*/
/* 見出し本体 */
.jirei_title {
	position: relative;
	display: table;
	margin: 0 auto;
	position: relative;
}

/* 左右の水平ライン */
.jirei_title::before,
.jirei_title::after {
	content: "";
	position: absolute;
	bottom: 0;
	height: 3px;
	background: #257150;
}

.jirei_title::before {
	left: 0;
	width: calc(50% - 14px);
}

.jirei_title::after {
	right: 0;
	width: calc(50% - 14px);
}

/* 中央のV字部分の箱 */
.jirei_title .jirei_v {
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 35px;
	/* V字の横幅 */
	height: 11px;
	/* V字の深さ */
}

/* V字の左側の斜線 */
.jirei_title .jirei_v::before,
.jirei_title .jirei_v::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 50%;
	height: 3px;
	background: #257150;
}

.jirei_title .jirei_v::before {
	left: 0;
	transform-origin: 100% 50%;
	transform: rotate(35deg);
}

.jirei_title .jirei_v::after {
	right: 0;
	transform-origin: 0 50%;
	transform: rotate(-35deg);
}

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

/* --------------------------
おすすめエリア設定
----------------------------*/
.SEC_BrG_osusume {
	background: linear-gradient(90deg,
			#8dd6b5 0%,
			#5ec296 25%,
			#3daa7c 50%,
			#2e8e64 75%,
			#257150 100%);
	padding: 2em 0em 2.5em;
}

.SEC_BrG_osusume h2 {
	color: #fff;
	padding: 1em 0em 1.5em;
}

.osusume_cntnr {
	background-color: #fff;
	display: flex;
	justify-content: center;
	padding: 1em 1.5em 2em;
	align-items: center;
	margin-bottom: 1em;
	border-radius: 12px;
}

.cntnr02 {
	flex-direction: row-reverse;
}

.osusume_mds {
	display: flex;
	border-bottom: 2px solid #0c8656;
	gap: 15px;
	align-items: center;
}

.mds_nnvr {
	text-align: center;
}

.osusume_mds h3 {
	margin: 0;
	padding: 0.8em 0 0.4em;
	/* ←距離調整用（なくてもOK） */
}

.osusume_text {
	flex: 1 1 70%;
}

.osusume_img {
	flex: 0 1 30%;
}

.osusume_img img {
	width: 100%;
}

/* --------------------------
サービスエリア設定
----------------------------*/
.sec_BrG_deta {
	text-align: center;
	background-color: #fff;
	padding: 2em 0em 2.5em;

}

.mds_green {
	color: #fff;
	background-color: #0c8656;
	padding: 0.2em 0.4em;
	font-size: .9em;
}

.mds_small {
	font-size: .8em;
}



.deta_cntnr {
	display: flex;
	justify-content: center;
	gap: 20px;
	border: 3px solid #0c8656;
	border-radius: 12px;
	padding: 1em 1.5em;
	max-width: 800px;
	margin: 0 auto;
}

.deta_cntnr_text {
	text-align: left;
}

.deta_cntnr_text img {
	width: 150px;
}

.deta_cntnr_img img {
	max-width: 250px;
}

/* --------------------------
CVエリア設定
----------------------------*/
.Brg_cv {
	background: url(../images/haikei_BrG_CV.png) center top no-repeat #fff;
	background-color: #111;
	height: auto;
	padding-top: 2em;
	padding-bottom: 2em;
	text-align: center;
}

.Brg_cv h2 {
	color: #fff;
}

.cv_text {
	font-size: 1.4em;
	font-weight: bold;
}

.cv_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 1em 0em;
}

.cv_logo img {
	max-width: 350px;
}

.Brg_cv p {
	color: #fff;
	font-weight: bold;
}

.emphasis_triangle {
	position: relative;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 0em 3.5em;
	/* ← 三角が被らないように余白を持たせる */
}

/* 左側の三角形 */
.emphasis_triangle::before {
	content: "";
	position: absolute;
	left: -22px;
	/* ← 文字に被らないよう外へ逃がす */
	top: 65%;
	transform: translateY(-50%) rotate(-205deg);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 32px solid #ff3a3a;
}

/* 右側の三角形 */
.emphasis_triangle::after {
	content: "";
	position: absolute;
	right: -22px;
	top: 65%;
	transform: translateY(-50%) rotate(205deg);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 32px solid #ff3a3a;
}


/* --------------------------
特徴エリア設定
----------------------------*/
.sec_Brg_features {
	background-color: #f1fcf8;
	padding: 2em 0em 3em;
}
h2 {
  font-feature-settings: "palt";
  letter-spacing: 0;
}


.Brg_features_area {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 20px;
	padding-top: 1.5em;
	justify-content: center;
	margin: 0 auto;
	width: fit-content;
}

.Brg_features_cntnr {
	background-color: #fff;
	max-width: 400px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
	padding: 0em 0.8em 1.5em;
}

.Brg_features_cntnr h3 {
	color: #00804e;
	padding: 0.5em 0em 0em;
	font-size: 1.2em;
}

.Brg_features_cntnr img {
	width: 160px;
}

.features_cntnr_text {
	text-align: left;
}

.Brg_features_mssg {
	font-size: 1.4em;
	text-align: center;
	font-weight: bold;
	padding-top: 2em;
}

/* --------------------------
比較エリア設定
----------------------------*/
.sec_BrG_compare {
	background: url(../images/haikei_BrG_compare.png) center top #fff;
	background-size: cover;
	height: auto;
	padding-top: 2em;
	padding-bottom: 2em;
}


.sec_BrG_compare h2 {
	color: #fff;
}

.BrG_compare_cntnr {
	background-color: #fff;
	border-radius: 12px;
	padding: 0.4em 1.5em;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 1.5em;
}

.sec_BrG_compare h3 {
	color: #fff;
	font-size: 1.2em;
}

.compare_mds {
	background-color: #00804e;
	padding: 0.3em 0.5em;
}

.BrG_compare_cntnr img {
	max-width: 450px;
}


/*-----
 吹き出し本体 01
 ------*/
.compare_fd_o1 {
	position: relative;
	font-size: 1em;
	font-weight: bold;
	padding: 1.2em 1.5em;
	border: 2px solid #ff7a57;
	/* 赤い枠線 */
	border-radius: 12px;
	background: #fff;
	/* 中身は白 */
	max-width: 420px;
	/* お好みで調整 */
}

/* 左側の三角（吹き出しの突起） */
.compare_fd_o1::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 18px solid #ff7a57;
}

.compare_fd_o1::after {
	content: "";
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 15px solid #fff;
}

/* ------------- */
/*-------------------
 比較本体 02
 -------------------*/

.BrG_compare_cntnr02 {
	background-color: #fff;
	border-radius: 12px;
	padding: 0.4em 0.5em 1.5em;
	margin-top: 1.5em;
}

.compare_cntnr02_inr {
	display: flex;
	justify-content: center;
	align-items: center;
	 flex-direction: row-reverse;
}

.compare_cntnr02_text {
	text-align: center;
}

/*-----
 吹き出し本体 02（右向き）
 ------*/

.compare_fd_o2 {
	position: relative;
	font-weight: bold;
	padding: 1.2em 1.5em;
	border: 2px solid #ff7a57;
	border-radius: 12px;
	background: #fff;
	max-width: 300px;
}

/* 右側の三角（吹き出しの突起） */
.compare_fd_o2::before {
	content: "";
	position: absolute;
	right: -18px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #ff7a57;
}

/* 三角の中の白抜き（三角の内側） */
.compare_fd_o2::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
}

/* ------------- */
/* -ーーーー
比較02吹き出し
--------- */
.emphasis_triangle02 {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0em .5em;
	font-size: 1.2em;
}

/* 左側の三角形 */
.emphasis_triangle02::before {
	content: "";
	position: absolute;
	left: -22px;
	/* ← 文字に被らないよう外へ逃がす */
	top: 65%;
	transform: translateY(-50%) rotate(-205deg);
	width: 0;
	height: 0;
	border-left: 2px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 32px solid #ff3a3a;
}

/* 右側の三角形 */
.emphasis_triangle02::after {
	content: "";
	position: absolute;
	right: -22px;
	top: 65%;
	transform: translateY(-50%) rotate(205deg);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 32px solid #ff3a3a;
}

/* ------------- */
/* ------比較_表設定----------- */
.table-wrap {
	width: 600px;
	display: flex;
	justify-content: center;
}

.compare-table {
	width: 550px;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	font-size: 14px;
}

.compare-table th,
.compare-table td {
	padding: 10px 12px;
	border: 1px solid #eee;
}

.compare-table thead th {
	background: #f7f7f7;
	font-weight: 700;
	text-align: center;
}

.compare-table tbody th {
	background: #fafafa;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
}

.compare-table tbody td {
	text-align: center;
}

/* BRILIDGE列のベース色 */
.compare-table td.main-col {
	background: #f5fce9;
	font-weight: 600;
}


/* ------------- */
/*-------------------
 比較本体 03
-------------------*/
.BrG_compare_cntnr03 {
	background-color: #fff;
	border-radius: 12px;
	padding: 1.5em ;
	margin-top: 1.5em;
	display: block;
	font-weight: bold;
}

/* ---------------------- */
/*   2カラム並び設定       */
/* ---------------------- */
.compare03_inr {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

/* 左カラム（採用単価） */
.saiyou_cntnr {
	flex: 0 0 50%;
	padding-right: 2em;
	border-right: 2px solid #000;
	/* ← ココを追加！中央寄りの原因を消す */
	margin: 0;
	text-align: left;
	/* 必要であれば */
}

/* 右カラム（面接比率） */
.mensetu_cntnr {
	flex: 0 0 50%;
	padding-left: 2em;
}

.mensetu_cntnr img {
	width: 200px;
}

.saiyou_top {
	display: flex;
	gap: 10px;
	align-items: center;
	padding-bottom: 1em;
}



/* -ーーーー
比較03吹き出し
--------- */

.speech_red {
	position: relative;
	display: inline-block;
	border: 2px solid #ff7a57;
	border-radius: 10px;
	background: #fff;
	font-weight: bold;
	text-align: center;
	padding: 0.2em .8em !important;
}

/* 下向きの三角（外側：赤枠） */
.speech_red::before {
	content: "";
	position: absolute;
	bottom: -14px;
	/* ▼ の位置調整 */
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 14px solid #ff7a57;
	/* 赤い枠線の色 */
}

/* 下向きの三角（内側：白背景） */
.speech_red::after {
	content: "";
	position: absolute;
	bottom: -11px;
	/* 内側三角の位置 */
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 12px solid #fff;
	/* 中の白 */
}

/* ------------- */
.nabi_site {
	background-color: #f7fbf0;
	text-align: center;
	margin-top: 1em;
	padding: 0.3em 0.6em;
}

.saiyou_under {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.nabi_site_inr {
	background-color: #f2f2f2;
	padding: 0.2em 0.3em !important;
	border-radius: 2px;
}

/* --------------------------
流れエリア設定
----------------------------*/

.sec_BrG_nagare {
	background-color: #fff;
	padding: 2em 0em 2.5em;
}

.nagare_cntnr {
	background-color: #f7fbf0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	padding: 0.5em 0.8em;
	gap: 20px;
	max-width: 750px;
	margin: 0 auto;
	margin-top: 1em;
}

.nagare_cntnr h3 {
	margin: 0;
	font-size: 1.3em;
	color: #00804e;
}

.nagare_icon img {
	width: 80px;
	padding-top: 10px;
}

/* --------------------------
CV03エリア設定
----------------------------*/
.CV03_text{
	font-size: 1.6em;
	color: #fff;
	padding: 1.5em;
}

/* --------------------------
Q&Aエリア設定
----------------------------*/

.sec_BrG_qa {
	background-color: #fff;
	padding: 2em 0em 3em;
}
.BrG_qa_cntnr{
	max-width: 700px;
	margin: 0 auto;
	margin-top: 1.5em;
}
/* ---------------
 Q（質問）の白吹き出し 
 --------------- */
.qa-q {
	position: relative;
	background: #fff;
	padding: 0.5em 1.2em !important;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
	margin: 2em 0 0.5em;
	font-size: 1.1em;
	max-width: 660px;
	border: 1px solid #333; /* ← 黒枠追加 */
}
.qa-q::before,
.qa-q::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

/* 黒い外側の三角 */
.qa-q::before {
  left: -16px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid #333;
}

/* 白い内側の三角 */
.qa-q::after {
  left: -15px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 15px solid #fff;
}

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

.qa_a_cntnr {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.3em;
}

.qa-a {
	position: relative;
	background: #f7fbf0;
	padding: 0.5em 1.2em !important;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
	margin: 2em 0 0.5em;
	font-size: 1em;
	max-width: 660px;
}

/* ---------------
ボタンエリア設定
------------------*/
/* === CTA行レイアウト === */
.cv-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	justify-content: center;
}

/* === ボタン === */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 260px;
	padding: 16px 24px;
	border-radius: 999px;
	font-weight: 800;
	font-size: clamp(16px, 2vw, 20px);
	text-decoration: none;
	color: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
	transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .34);
}

/* オレンジ／グリーン（色は後で微調整可） */
.btn--orange {
	background: #ff6a3d;
}

/* 例: 資料請求 */
.btn--green {
	background: #18c776;
}

/* 例: お問い合わせ */
.btn {
	color: #fff !important;
	text-decoration: none !important;
}





/* --------------------------
お問い合わせフォームエリア設定
----------------------------*/
.sec_BRILIDGE_form {
	background-color: #fff;
}

.form_tel_area {
	text-align: center;
	background-color: #fff;
	padding: 0.5em 0em;
}

.form_tel_area img {
	max-width: 300px;
}

/* 基本トークン（色/サイズ） */
:root {
	--bg: #e9e9e9;
	--field: #ffffff;
	--line: #c9c9c9;
	--title: #4b4b4b;
	--text: #333;
	--accent: #e91e63;
	/* ピンク（スクショの差し色想定） */
	--hours: #d72626;
	/* 営業時間の赤 */
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 1px 0 rgba(0, 0, 0, .02), 0 4px 12px rgba(0, 0, 0, .06);
}

/* ラッパー */
.inq-wrap {
	max-width: 720px;
	margin: 32px auto 20px;
	padding: 24px 20px 32px;
	background: var(--bg);
	border-radius: 10px;
}

/* 見出し */
.inq-title {
	margin: 0 0 6px;
	text-align: center;
	color: var(--title);
	font-weight: 700;
	font-size: clamp(20px, 3.2vw, 34px);
}

.inq-sub {
	text-align: center;
	color: #6a6a6a;
	font-size: clamp(12px, 2.2vw, 18px);
	margin: 0 0 14px;
}

/* 電話ボックス */
.inq-callbox {
	background: #f4f4f4;
	border: 2px solid #bdbdbd;
	border-radius: 18px;
	box-shadow: var(--shadow);
	padding: 14px 18px;
	margin: 0 auto 28px;
}

.inq-callbox-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-auto-rows: auto;
	align-items: center;
	gap: 8px 10px;
}

.inq-phoneicon {
	color: #4b4b4b;
	display: flex;
	align-items: center;
}

.inq-tel {
	font-weight: 700;
	text-decoration: none;
	color: #222;
	font-size: clamp(16px, 2.6vw, 22px);
}

.inq-hours {
	grid-column: 1 / -1;
	color: #444;
	font-size: clamp(12px, 2.2vw, 16px);
}

.inq-hours span {
	color: var(--hours);
	font-weight: 800;
}

/* フォーム本体 */
.inq-form {
	margin-top: 12px;
}

.fld-label {
	display: block;
	margin: 12px 0 6px;
	color: #4b4b4b;
	font-weight: 700;
	font-size: clamp(13px, 2.1vw, 16px);
}

.req {
	color: #666;
	font-weight: 700;
}

.opt {
	color: #888;
}

.fld input,
.fld select,
.fld textarea {
	width: 100%;
	background: var(--field);
	border: 1.5px solid var(--line);
	border-radius: 6px;
	padding: 14px 14px;
	font-size: 16px;
	color: var(--text);
	outline: none;
	transition: border-color .2s, box-shadow .2s;
}

.fld textarea {
	resize: vertical;
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
	border-color: #9aa6b2;
	box-shadow: 0 0 0 3px rgba(56, 132, 255, .15);
}

/* セレクトの▼カスタム */
.fld select {
	appearance: none;
	-webkit-appearance: none;
	background-image:
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px 18px;
	padding-right: 42px;
}

/* 同意チェック */
.agree {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0 18px;
	font-size: 14px;
	color: #444;
}

.agree a {
	color: #1a7fd9;
	text-decoration: underline;
}

.agree input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
}

/* 送信ボタン */
.btn-submit {
	display: block;
	width: min(320px, 85%);
	margin: 0 auto;
	padding: 14px 10px;
	border: none;
	border-radius: 999px;
	background: #ff6a3d;
	color: #fff;
	font-weight: 800;
	font-size: clamp(16px, 2.4vw, 20px);
	box-shadow: 0 4px 0 #b3bac0;
	/* 下に濃い影をつけて立体感 */
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

/* ホバー時：少し浮く感じ */
.btn-submit:hover {
	transform: translateY(2px);
	box-shadow: 0 6px 0 #a4acb3;
	filter: brightness(1.02);
}

/* クリック時（押し込まれる感じ） */
.btn-submit:active {
	transform: translateY(2px);
	box-shadow: 0 2px 0 #a4acb3;
	filter: brightness(0.97);
}

/*---------
フッター部分
-------*/

.footer {
	background: #028150;
	padding: 2em 0 0.5em;
	text-align: center;
	font-size: 1.4em;
	color: #fff;
}

.footer a {
	color: #fff;
}

/*スマホ用下部固定メニュー*/
.fix_menu_smartphone {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 100vw;
	display: flex;
	z-index: 10000;
	box-sizing: border-box;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, .08);
	background: transparent;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 1em 0em;
}

.cv-cta_footer {
	display: flex;
	gap: 16px 24px;
	justify-content: center;
	padding: 0.5em 0em;
}

.fix_menu_smartphone {
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fix_menu_smartphone.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}


/*---------
サンクスページ部分
-------*/
.main_thanks {
	background-color: #fff;
}

.thanks_pase {
	background-color: #fff;
	text-align: center;
	padding-top: 4em;

}

/* =========
   サンクスページ：戻るボタン
   ========= */
.thanks_pase h2 {
	margin-top: 1em;
	margin-bottom: 1em;
}

.thanks_back_btn {
	display: inline-block;
	padding: 10px 28px;
	border: 1px solid #333;
	/* 枠線（SSGFormに近い色） */
	color: #333 !important;
	font-size: 1rem;
	text-decoration: none;
	background-color: #fff;
	transition: all 0.25s ease;
}

/* ホバー時のカラー反転（添付画像に近い） */
.thanks_back_btn:hover {
	background-color: #333;
	color: #fff !important;
}