/* 吹き出しジェネレーター */
.arrow_box {
	position: relative;
	background: #fff;
	border: 2px solid #30a6e6;
	border-radius: 15px;
	padding: 7px 10px;
}
.arrow_box:after, .arrow_box:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 20px;
	margin-left: -20px;
}
.arrow_box:before {
	border-color: rgba(48, 166, 230, 0);
	border-bottom-color: #30a6e6;
	border-width: 23px;
	margin-left: -23px;
}

/* 会社概要のテーブル　はじめ */
table {
	border-collapse: collapse;
	width:100%;
}
th.t_top {
    border-top: #30a6e6 4px solid;
}
th {
	border-bottom: #e3e3e3 1px dotted;
	padding: 10px;
	font-weight: normal;
}
td.t_top {
	border-top: #e3e3e3 4px solid;
}
td {
	border-bottom: #e3e3e3 1px dotted;
	padding: 10px;
}
/* 求人ページのテーブル　おわり */
/* 会社概要のCSS　おわり */

/* 付箋のような見出し */
.fusen {
padding: 0.25em 0.5em;/*上下 左右の余白*/
background: transparent;/*背景透明に*/
border-left: solid 5px #30a6e6;/*左線*/
}

/* シンプルなボタン */
.simple_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #30a6e6;/*ボタン色*/
    color: #000;
    border-bottom: solid 4px #2277a5;
    border-radius: 3px;
}
.simple_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

/* Contact Form 7カスタマイズ */
/* 見出し欄 */
.inquiry th {
 text-align: left;
 font-size: 14px;
 color: #444;
 padding-right: 5px;
 width: 30%;
 background:#f7f7f7;
 border: solid 1px #d7d7d7;
}
/* 通常欄 */
.inquiry td {
 font-size: 13px;
 border: solid 1px #d7d7d7;
}
/* 必須の調整 */
.haveto {
 font-size: 7px;
 padding: 5px;
 background: #ff9393;
 color: #fff;
 border-radius: 2px;
 margin-right: 5px;
 position:relative;
 bottom:1px;
}
/* 任意の調整 */
.any {
 font-size: 7px;
 padding: 5px;
 background: #93c9ff;
 color: #fff;
 border-radius: 2px;
 margin-right: 5px;
 position:relative;
 bottom:1px;
}
/* ラジオボタンを縦並び指定 */
.verticallist .wpcf7-list-item {
 display: block;
}
/* 送信ボタンのデザイン変更 */
.soushinbtn{
 padding:20px!important;
 width:40%;
 background: #37cadd!important;
   border:2px solid #37cadd;
 color: #fff;
 font-size: 18px!important;
 border-radius: 2px!important;}
.soushinbtn:hover{
 background:#2e6da4!important;
 color:#2e6da4;
 border:2px solid #2e6da4;
}
/* スマホContact Form 7カスタマイズ */
@media screen and (max-width: 700px) {
.inquiry th, .inquiry td {
 display:block;
 width: 100%!important;
 border-top: none!important;
}
.inquiry tr:first-child th {
 border-top: 1px solid #d7d7d7!important;
}
.soushinbtn{
 width:80%!important;
}}