@charset "UTF-8";
/* リセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	background:transparent;
}
body {
	line-height:1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none none outside;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

img{
	image-rendering: -webkit-optimize-contrast;
}
input, textarea, select{
	font-size: 1em;
}
input, textarea{
	margin: 0;
	padding: 0;
}
input, select {
	vertical-align:middle;
}
input::placeholder, textarea::placeholder{
	font-size: .95em;
}
fieldset, img, iframe  {
	vertical-align: bottom;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0;
}

/* デザイン */
body {
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1em;
	-webkit-text-size-adjust:none;/* iPhoneのリサイズ対策 */
	background: #f4f4f4;
}
header{
	display: flex;
	justify-content: space-between;
}
.bengoshi header{ /* 弁護士サイトのヘッダー*/
	border-top: #079800 .2em solid;
	background: #faf2e0;
}
.zeirishi header{ /* 税理士サイトのヘッダー*/
	border-top: #fb5779 .2em solid;
	background: #faf2e0;
}
.sharoushi header{ /* 社労士サイトのヘッダー*/
	border-top: #7a7a7a .2em solid;
	background: #faf2e0;
}
.group header{ /* グループサイトのヘッダー*/
	border-top: #3aa3f5 .2em solid;
	background: #faf2e0;
}
header p:has(.btn_cls){
	display: flex;
	align-items: center;
	margin-right: 2%;
}
h1{
	font-weight: bold;
	padding: .375em;
	border-style: solid;
	border-width: 1px 0;
}
/* フォーム */
form{
	padding:.75em 1em 1.5em;
	margin:0;
}
label {
	display:block;
	margin-bottom: .2em;
	line-height:1.25em;
}
label~label {
	margin-top: 1em;
}
.txtform, textarea {
	box-sizing:border-box;
	width:100%;
	color:#000;
	padding: .375em;
	border: 1px solid #999;
	border-radius: .375em;
	background: #fff;
}
.txtform {
	display: block;
	padding: .375em;
	max-width: 400px;
}
.txtform.number {
	display: inline-block;
}
.txtform:focus, .txtform:hover {
	background:#fff;
}
textarea {
	height: 9em;
}
.txtform.number{
	max-width: 120px;
}
.note,.note_li li{
	margin: .2em 0;
	padding-left: 1em;
	text-indent: -1em;
	font-size: .8125em;
	line-height: 1.25em;
}
.note_li li img{
	vertical-align:middle;
}
#telchk {
	margin-bottom: .75em;
	padding: .4em .4em .2em;
	border: 2px solid green;
	margin-top: 1.5em;
	position: relative;
}
#telchk:before {
	content: '電話相談をチェックされた方へ';
	position: absolute;
	top: -1.5em;
	left: -2px;
	display: block;
	text-align: center;
	background: green;
	color: #fff;
	padding: .25em;
}

@media screen and (max-width: 540px){/*////////// SP //////////*/
.side_li li~li {
	margin-top: .5em;
}
}/*////////// SP(max-width: 540px) //////////*/
@media screen and (min-width: 541px){/*////////// PC //////////*/
.side_li {
	display: flex;
	flex-wrap: wrap;
	row-gap: .5em;
	column-gap: .75em;
}
}/*////////// PC(min-width: 541px) //////////*/
.side_li li {
	display: flex;
	align-items: center;
}
.side_li li input,
.side_li li label {
	display: inline;
	font-size: .9375em;
	line-height: 1;
}
.side_li input {
	vertical-align: baseline;
	margin-right: .25em;
}
.side_li label {
	margin-bottom: 0;
}
button{
	color:#2e2e2e;
	line-height:2em;
	letter-spacing:.1em;
	font-size:1em;
	font-weight:bold;
	padding:.4em 1.25em;
	margin: .4em;
	border-radius:.25em;
	box-shadow: 0px 1px 2px rgba(0,0,0,.6),  inset 0px 1px 1px rgba(255,255,255,.4);
}
.bengoshi button{ /* 弁護士サイトの送信ボタン*/
	border: 1px solid #92b027;
	background-color:#cee08e;
	background: linear-gradient(#cee08e, #a7dc1a);
}
.zeirishi button{ /* 税理士サイトの送信ボタン*/
	border: 1px solid #D693A9;
	background-color:#F2DEE5;
	background: linear-gradient(#F2DEE5, #F4C6D5);
}
.sharoushi button{ /* 社労士サイトの送信ボタン*/
	border: 1px solid #676567;
	background-color:;
	background: linear-gradient(180deg, #8c8c8c 0%, #d5d5d5 25%, #fbfbfb 45%, #fbfbfb 55%, #d5d5d5 75%, #8c8c8c 100%);
	text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}
.group button{ /* グループサイトの送信ボタン*/
	border: 1px solid #4af;
	background-color:#ddeeff;
	background: linear-gradient(#ddeeff, #88ccff);
}
.alignC{text-align:center;}
.alignC:has(.btn_cls){margin-top: 1em;}

/* 問合せ完了 */
.thanks {
	padding:10px 15px;
	margin:0;
}
.thanks h2{
	font-size: 1.125em;
	font-weight: bold;
	line-height:1.2em;
	padding: .375em .375em 3px;
	margin: .25em 0;
}
.bengoshi .thanks h2{ /* 弁護士サイト*/
	border-bottom: 1px solid #079800;
	border-left: .375em solid #079800;
}
.zeirishi .thanks h2{ /* 税理士サイト*/
	border-bottom: 1px solid #fb5779;
	border-left: .375em solid #fb5779;
}
.sharoushi .thanks h2{ /* 社労士サイト*/
	border-bottom: 1px solid #7a7a7a;
	border-left: .375em solid #7a7a7a;
}
.group .thanks h2{ /* グループサイト*/
	border-bottom: 1px solid #3aa3f5;
	border-left: .375em solid #3aa3f5;
}
.thanks p{
	line-height:1.5em;
	font-size: .9375em;
	text-indent:1em;
}
.thanks p.thanks_cmt{
	padding-left: 1em;
	text-indent: -1em;
}
.thanks p em{
	color:#FF5400;
}

/* 閉じる */
.btn_cls{
	display:inline-block;
	border: 1px solid #999;
	border-radius:.35em;
	box-shadow: 0px 1px 2px rgba(0,0,0,.6), inset 0px 1px 1px rgba(255,255,255,.4);
	padding: .625em;
	background-color:#ccc;
	color:#000;
	font-size:.75em;
	font-weight:bold;
	text-decoration:none;
}
.btn_cls:after {
	font-family: FontAwesome;
	font-size: 1.25em;
	font-weight: normal;
	speak: none;
	content: '\f057';/*×マーク*/
	margin-left: .15em;
}

.required{
	margin-left: .5em;
	border: 1px solid red;
	font-size: .75em;
	color: red;
	line-height: 1.25em;
	letter-spacing: .1em;
}

@media screen and (max-width: 540px){/*:::::::::: SP ::::::::::*/
body{font-size: 5vw;}
.bengoshi .header_ttl{/* 弁護士サイトのヘッダータイトル*/
	width: 72%;
}
.zeirishi .header_ttl{/* 税理士サイトのヘッダータイトル*/
	width: 72%;
}
.sharoushi .header_ttl{/* 社労士サイトのヘッダータイトル*/
	width: 72%;
	padding: 1.5% 0;
}
.group .header_ttl{/* グループサイトのヘッダータイトル*/
	width: 65%;
}
.txtform{width: 100%;}
.note_li li img{height: 5.1vw;}
.required{
	padding: .1em .15em .1em .2em;
	vertical-align: baseline;
}
}/*::::::::::SP(max-width: 540px)::::::::::*/
@media screen and (min-width: 541px){/*:::::::::: PC ::::::::::*/
body{font-size: 16px;}
.bengoshi .header_ttl{width: 300px;}/* 弁護士サイトのヘッダータイトル*/
.zeirishi .header_ttl{width: 285px;}/* 税理士サイトのヘッダータイトル*/
.sharoushi .header_ttl{width: 390px;}/* 社労士サイトのヘッダータイトル*/
.group .header_ttl{width: 265px;}/* グループサイトのヘッダータイトル*/
.br_sp{display: none;}
.note_li li img{height: 16px;}
.required{
	padding: .1em .15em 0em .2em;
	vertical-align: middle;
}
}/*::::::::::PC(min-width: 541px::::::::::)*/