@charset "UTF-8";


/*テーブル
---------------------------------------------------------*/
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 18px;   /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: .16em;
    line-height: 1.8em;
}
.com_form .tbl_form {
	width: 100%;
	border-top: solid 1px #E6E6E6;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	box-sizing: border-box;
	text-align: left;
	padding: 1.5em 3%;
	border-bottom: solid 1px #E6E6E6;
}
.com_form .tbl_form th {
	width: 23%;
	vertical-align: top;
	font-weight: bold;
	padding-top: 2.0em;
	padding-bottom: 2.0em;
	padding-right: 0;
}
.com_form .tbl_form td {
	width: 77%;
	vertical-align: middle;
}
.com_form .tbl_form th .require {
	display: inline-block;
	vertical-align: middle;
	background: #BA494C;
	color: #fff;
	font-size: 70%;
	letter-spacing: .17em;
	line-height: 1.0em;
	padding: .5em .8em .3em;
	border-radius: .3em;
	margin-left: .5em;
	transform: translateY(-.2em);
}
.com_form .tbl_form th small {
	display: block;
	font-size: 80%;
	letter-spacing: .05em;
	line-height: 1.6em;
	margin-top: .5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 16px;    /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: .05em;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	padding: .8em 3%;
}
.com_form .tbl_form th {
	width: 30%;
}
.com_form .tbl_form td {
	width: 70%;
}
.com_form .tbl_form th small {
	letter-spacing: normal;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 16px;	/*16px以下にしない：iPhoneで入力時に拡大されるため*/  
	letter-spacing: normal;
    line-height: 1.8em;
}
.com_form .tbl_form tr,
.com_form .tbl_form th,
.com_form .tbl_form td {
	display: block;
	width: 100% !important;
	box-sizing: border-box;
	overflow: hidden;
}
.com_form .tbl_form th {
	padding: 1.0em 0 0;
	border-bottom: none;
}
.com_form .tbl_form td {
	padding: 1.0em 0 1.5em;
}
.com_form .tbl_form th small {
	letter-spacing: normal;
}
}



/*入力項目デザイン
-----------------------------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea,
.com_form select {
	width: 100%;
	max-width: 100%;
	padding: .4em .8em .2em;
	box-sizing: border-box;
	background: #FBF9FC;
	outline: none;
	border: solid 1px #E6E6E6;
	border-radius: 5px;
	-webkit-appearance: none;
}
/*プレースホルダ*/
::placeholder{
	color: #B2B2B2;
}
.com_form input[type="file"] {
	max-width: 90vw;	/*iPhoneではみ出す場合があるので制限*/
}

/****************/
/* ラジオボタン */
/****************/
.com_form input[type=radio], .com_form input[type=checkbox] {
	display: inline-block;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	position: relative;
	display: inline-block;
}
@media (min-width: 1px) {
.com_form input[type=radio], .com_form input[type=checkbox] {
	/*display: none;*/
	position: absolute;		/* 上に別の要素が乗るようにする */
	z-index: -1;			/* 最背面にする */
	pointer-events: none;	/* クリック無効 */
	visibility: hidden;		/* 非表示 */
	margin: 0;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	padding: 0 0 0 2.0em;
}
.com_form input[type=radio] + label::before, 
.com_form input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	left: 0;
	box-sizing: border-box;
	display: block;
	width: 1.4em;
	height: 1.4em;
	background: #FBF9FC;
	border: solid 1px #E6E6E6;
}
.com_form input[type=radio] + label::before {
	top: .1em;
	border-radius: 50%;
}
.com_form input[type=checkbox] + label::before {
	top: .15em;
    border-radius: 6px!important;
}
.com_form input[type=radio]:checked + label::after, 
.com_form input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	display: block;
}
.com_form input[type=radio]:checked + label::after {
	left: .4em;
	top: .5em;
	margin: auto;
	width: .6em;
	height: .6em;
	background: #138575;
	border-radius: 50%;
}
.com_form input[type=checkbox]:checked + label::after {
	top: 0.1em;
	left: 0.3em;
	width: 1.3em;
	height: 0.8em;
	border-left: 4px solid #138575;
	border-bottom: 4px solid #138575;
	transform: rotate(-45deg);
}
}

/*ファイル選択ボタン*/
.com_form .btn_file { 
  /*「選択されていません（選択後はファイル名）」のスタイル */
}
.com_form .btn_file::file-selector-button {
  /*「ファイルを選択」ボタンのスタイル */
	text-align: center;
	color: #333;
	font-weight: normal;
	letter-spacing: .1em;
	line-height: 1.2em;
	background: #fff;
	border: solid 1px #BBBBBC;
	padding: .6em 1.5em;
	border-radius: .8em;
	cursor: pointer;
	margin-right: 1.0em;
	display: inline-block;
	vertical-align: middle;
}

/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	-webkit-appearance: none;
	width: 100%;
	height: 4.0em;
	border: none;
	border-radius: 1.0em;
	cursor: pointer;
	color: #fff;
	background-color: #B3B3B3;
	text-align: center;
	opacity: 1.0;
	transition: opacity 1.0s;
}
.com_form input[type="submit"] {
	background-color: #138575;
	background-image: url("../images/recruit/arrow@2x.png");
	background-repeat: no-repeat;
	background-position: right 2.0em top 50%;
	background-size: .4em auto;
}
.com_form input[type="submit"]:hover, 
.com_form input[type="button"]:hover, 
.com_form input[type="reset"]:hover {
	opacity: 0.6;
}

/**********/
/* チェックを入れて送信 */
/**********/ 
/* 送信ボタン - 押せないとき */
.com_form input[type="submit"][disabled] {
	opacity: 0.3 !important;
	cursor: default;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*ファイル選択ボタン*/
.com_form .btn_file { 
	/*「選択されていません（選択後はファイル名）」のスタイル */
}
.com_form .btn_file::file-selector-button {
  /*「ファイルを選択」ボタンのスタイル */
	letter-spacing: .05em;
}
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea,
.com_form select {
	padding: .3em .5em .3em;
}
/*ファイル選択ボタン*/
.com_form .btn_file { 
	/*「選択されていません（選択後はファイル名）」のスタイル */
}
.com_form .btn_file::file-selector-button {
  /*「ファイルを選択」ボタンのスタイル */
	letter-spacing: .05em;
	padding: .6em 1.0em;
	display: block;
}
}



/*入力項目レイアウト
---------------------------------------------------------*/
.com_form .tbl_form .sub_txt_l {
	display: inline-block;
	vertical-align: middle;
	margin-right: .6em;
}
.com_form .tbl_form .sub_txt_r {
	display: inline-block;
	vertical-align: middle;
	margin-left: .6em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: .8em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: .8em;
}
.com_form .tbl_form .txt_sub {
	font-size: 85%;
	line-height: 1.6em;
}
/*テキストボックス*/
.com_form .tbl_form .text_s {
	width: 6em;
}
.com_form .tbl_form .text_m {
	width: 16em;
}
.com_form .tbl_form .text_l {
	width: 100%;	
}
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.com_form .tbl_form .radio_list {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.com_form .tbl_form .radio_list li {
	margin: .4em 0;
	margin-right: 6%;
}
.com_form .tbl_form .radio_list li:last-child {
	margin-right: 0;
}
/*テキストボックスの高さ*/
.com_form .height_18 {
	height: 18em;
}
.com_form .height_12 {
	height: 12em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .tbl_form .sub_txt_l {
	margin-right: .5em;
}
.com_form .tbl_form .sub_txt_r {
	margin-left: .5em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: .5em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: .5em;
}
.com_form .tbl_form .txt_sub {
	letter-spacing: normal;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .tbl_form .sub_txt_l {
	margin-right: .4em;
}
.com_form .tbl_form .sub_txt_r {
	margin-left: .4em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: .4em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: .4em;
}
.com_form .tbl_form .txt_sub {
	letter-spacing: normal;
}
/*テキストボックス*/
.com_form .tbl_form .text_s {
	width: 5em;
}
.com_form .tbl_form .text_m {
	width: 16em;
}
.com_form .tbl_form .text_l {
	width: 100%;	
}
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.com_form .tbl_form .radio_list li {
	margin-right: 5%;
}
/*テキストボックスの高さ*/
.com_form .height_18 {
	height: 10em;
}
.com_form .height_12 {
	height: 10em;
}
/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"] {
	background-position: right 1.0em top 50%;
}
}



/* ボタンレイアウト
--------------------------------------------------------------------*/
.com_form .submit_box {
	margin-top: 60px;
	text-align: center;
	font-size: 95%;
	letter-spacing: .14em;
	line-height: 2.0em;
}
.com_form .submit_box .txt .red {
	font-size: 90%;
	letter-spacing: .14em;
	line-height: 1.8em;
}
.com_form .submit_box .btn_list {
	margin-top: 50px;
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.com_form .submit_box .btn_list li {
	width: 20em;
	max-width: 48%;
	margin: 0 0.5%;
}
.com_form .submit_box .btn_size_change .btn_large {
	width: 24em;
	max-width: 58%;
}
.com_form .submit_box .btn_size_change .btn_small {
	width: 16em;
    max-width: 38%;
}
/* 同意ボタン */
.com_form .checkbtn {
	margin-top: 50px;
	font-size: 110%;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .submit_box {
	margin-top: 5%;
	letter-spacing: .05em;
}
.com_form .submit_box .txt .red {
	letter-spacing: normal;
}
.com_form .submit_box .btn_list {
	margin-top: 4%;
}
/* 同意ボタン */
.com_form .checkbtn {
	margin-top: 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .submit_box {
	margin-top: 8%;
	text-align: left;
	letter-spacing: normal;
	line-height: 1.8em;
}
.com_form .submit_box .txt .red {
	font-size: 95%;
	letter-spacing: normal;
}
.com_form .submit_box .btn_list {
	margin-top: 8%;
	display: block;
}
.com_form .submit_box .btn_list li {
	width: 85% !important;
	max-width: 100% !important;
	margin: 2% auto 0;
}
/* 同意ボタン */
.com_form .checkbtn {
	margin-top: 8%;
	text-align: center;
	font-size: 110%;
}
}



/* 個人情報
--------------------------------------------------------------------*/
.com_form .privacy {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(224,206,199,0.2);
	font-size: 90%;
	letter-spacing: .14em;
	line-height: 1.8em;
}
.com_form .privacy .open_trigger {
	text-align: center;
	padding: 2.0em 4%;
	cursor: pointer;
}
.com_form .privacy .icon_open {
	background: #138575;
	width: 1.6em;
	height: 1.6em;
}
.com_form .privacy .icon_open::before,
.com_form .privacy .icon_open::after {
	width: .7em;
	background: #fff;
}
.com_form .privacy .open_box {
	display: none;
	text-align: left;
	padding: 0 4% 2.0em;
}
.com_form .privacy .privacy_detail {
	margin-top: 1.5em;
	display: flex;
    justify-content: space-between;
}
.com_form .privacy .privacy_detail dl {
	width: 47%;
}
.com_form .privacy .privacy_detail dt {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: .5em;
}
.com_form .privacy .privacy_detail li {
	text-indent: -1.7em;
	margin-left: 1.7em;
	line-height: 1.6em;
	margin-bottom: .5em;
}
.com_form .privacy .privacy_detail li:last-child {
	margin-bottom: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .privacy {
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .privacy {
	font-size: 95%;
	letter-spacing: normal;
}
.com_form .privacy .open_trigger {
	padding: 1.5em 4%;
}
.com_form .privacy .open_box {
	padding: 0 6% 2.0em;
}
.com_form .privacy .privacy_detail {
	margin-top: 0;
	display: block;
}
.com_form .privacy .privacy_detail dl {
	width: 100%;
	margin-top: 1.5em;
}
}



/* 確認ページ
---------------------------------------------------------*/
.com_form.kakunin .tbl_txt {
	margin-bottom: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
}



/* 完了ページ
---------------------------------------------------------*/
.recr_style1 > dt {
	font-size: 160%;
	letter-spacing: .1em;
	line-height: 1.4em;
	margin-bottom: .8em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
}



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

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
}