@charset "UTF-8";

/*------------------------------------------------
	00_style.css の一部リセット
	
    01_共通設定
	└ 入力箇所,placeholder,placeholderの改行,radioボタン,
    selectボタン,アコーディオン　（個別説明会用フォームに使用）topボタン
	
    02_共通設定：装飾
	└ フォーカス時の装飾,住所自動入力ボタン,
	
    03_送付先情報　table

    04_確認画面
	
    05_完了画面
	
    06_ブレイクポイント
	
	07_お問い合わせフォーム
	└ 共通設定,コース一覧,体験/個別説明会/認定　コース,セミナー,確認画面
------------------------------------------------*/


/***********************************************
 00_style.css の一部リセット
***********************************************/

.header {
	position: inherit;
}
.header .inner_header {
    margin: 0 auto 50px;
}
#nav_toggle .toggle_box .toggle_menu {
    top: 30px;
}
@media screen and (max-width:500px) {
	#nav_toggle .toggle_box .toggle_menu {
    top: 10px;
	}
	.header .inner_header {
    padding: 17px 21px;
	}
}


/***********************************************
  01_共通設定
***********************************************/
html {
	height: 100%;
	font-size: 16px;
}
body {
	font: 0.8em/150%;
	font-family: "Times New Roman", Times, "serif","メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	color: #333;
	background-color: #fff;
	-webkit-text-size-adjust: 100%; /*スマホ自動拡大OFF*/
}
body, span {
	line-height: 1.8;
}
.container {
	width: 100%;
	position: relative;
	min-height: 100%;
}
input, textarea, select {
	font-size: 14px;
	font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif
}
input {
	width: 100%;
}
a, a:hover {
	text-decoration: none;
}
input[type="button"]:hover, input[type="submit"]:hover, .submit_wrapper a:hover, .submit_wrapper .back:hover, .submit_wrapper .send:hover {
	opacity: 0.7;
    transition: 0.5s;
}
.display_none {
    display: none;
}
.padding_b {
    padding-bottom: 10px;
}
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}
.txtmode1 {
	ime-mode: active;   /* 全角モード */
}
.txtmode2 {
	ime-mode: inactive; /* 半角モード */
} 


/* 入力箇所 
---------------------------------------------*/
input, select, textarea{
	height: 40px;
	border: none;
	background-color: #f1f1f1;
	box-sizing: border-box;
	border-radius: 3px;
}
textarea{
	min-height: 100px;
}

/* placeholder
---------------------------------------------*/
/* Chrome, Safari */
::-webkit-input-placeholder {
 color: #515151;
 opacity: 0.4;
}
/* Firefox */
::-moz-placeholder {
 color: #515151;
 opacity: 0.45;
}
/* Firefox 18以前 */
:-moz-placeholder {
 color: #515151;
 opacity: 0.45;
}
/* IE */
:-ms-input-placeholder {
 color: #515151;
 opacity: 0.45;
}
/*　placeholderの改行
--------------------------------------------*/
textarea::-webkit-input-placeholder::after {
	display:block;
	content:"Second line \a Third line";
}


/* radioボタン 
---------------------------------------------*/
label.radio_box {
	display: block;
}
.detail input[type="radio"] {
	vertical-align: top;
}
.detail .inner-box > label {
	margin-bottom: 15px;
}
.detail .inner-box > label:last-of-type {
	margin-bottom: 10px;
}

/* selectボタン
---------------------------------------------*/
.select_wrap {
	position: relative;
	overflow: hidden;
}
.select_wrap:before {
	position: absolute;
	left: 225px;
	display: block;
	width: 25px;
	height: 40px;
	content: '';
	pointer-events: none;
	background: #d2d2d2;
}
.select_wrap:after {
	position: absolute;
	top: 13px;
	left: 234px;
	display: block;
	width: 8px;
	height: 8px;
	content: '';
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	pointer-events: none;
	border: none;
	border-right: solid 1px #000;
	border-bottom: solid 1px #000;
}
.detail select {
	width: 250px;
	line-height: 40px;
	height: 40px;
	padding: 0 10px;
	vertical-align: middle;
	color: inherit;
	border: solid #d2d2d2 2px;
	border-radius: 0;
	background: #fff;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
    margin-bottom: 50px;
}
@media screen and (max-width:640px) {
    .select_wrap::before {
        left: 234px;
    }
    .select_wrap::after {
        left: 242px;
    }
}

/* アコーディオン　（個別説明会用フォームに使用）
---------------------------------------------*/
.acMenu dt{
	position: relative;
	font-weight: bold;
    border-bottom: 2px solid #41499C;
	cursor: pointer;
	padding: 18px;
}
.acMenu dd {
    border-bottom: 2px solid #41499C;
}
.acMenu .inner_box:last-of-type dd{
    border-bottom: none;
}
.acMenu dt a {
	display: block;
	margin-right: 30px;
}
.acMenu dt span{
	display: block;
	font-size: 13px;
}
.acMenu dt span:first-of-type {
	font-size: 18px;
	font-weight: bold;
}
.acMenu dt span.attention_txt {
    font-size: 11px;
    vertical-align: top;
    display: inline-block;
    color: #fff;
    background-color: #FFA533;
    padding: 2px 6px 3px 4px;
    margin-left: 12px;
}
.acMenu dt img{
    position: absolute;
    max-width: 35px;
    top: 20px;
    right: 20px;
}
/*アコーディオン内*/
.acMenu dd {
	padding: 22px 10px 0;
}
.acMenu .section_box .list{
	margin: 24px 0;
}
.acMenu .section_box ul.list li{
	display: inline;
	margin-right: 14px;
}
/*個別説明会_同伴者情報*/
.acMenu.person dd {
	display: none;
}

/*topボタン*/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#page-top a {
	width: 100px;
	display: block;
}
#page-top img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}
#page-top a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


/***********************************************
  共通設定：装飾
***********************************************/
/*フォーカス時の装飾*/
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus
{
  border: 2px solid #ff3366;
  outline: 0;
}
.select_wrap:hover::before {
	background: #ff3366;
}
select:hover {
	border: 2px solid #ff3366;
}

/*住所自動入力ボタン*/
input.addr_btn {
	max-width: 100px;
	height: 34px;
	background-color: #f24949;
	border-radius: 4px !important;
	border: none !important;
	color: #fff;
	margin-left: 8px;
	padding: 4px;
}

/* radio ボタン*/
label.radio_box {
	position : relative;
	cursor : pointer;
	overflow : hidden;
}
.radio_txt{
	padding-left: 4px;
}
@media screen and (max-width: 413px){
	.course{
		font-size: 12px;
	}
}
.sub_txt{
	font-size: 13px;
}
@media screen and (max-width: 910px){
	.sub_txt{
		display: block;
	}
}
label.radio_box {
	display: inline-block;
	min-height : calc(18px + 5px);
	padding-left : calc(18px + 5px);
	line-height : calc(18px + 5px);
	margin-right: 50px;
	margin-bottom: 30px;
}
label.radio_box:first-of-type {
	
}
/** before after **/
label.radio_box:before, label.radio_box:after {
	content : '';
	position : absolute;
	box-sizing : border-box;
}
label.radio_box:before {
	border-radius : 100%;
}
label.radio_box:before, label.radio_box:after {
	top : 0px;
	bottom : 0px;
	margin-top : auto;
	margin-bottom : auto;
}
label.radio_box:before {
	width : 18px;
	height : 18px;
	border : 1px solid #a3a1a1;
	left : 0px;
	z-index : 3;
}
label.radio_box:after {
	width : 10px;
	height : 10px;
	border-radius : 100%;
 left : calc(((18px/2) - (10px) / 2));
	background-color : #ff3366;
	z-index : 1;
}
/** input **/
label.radio_box input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position : absolute;
	z-index : 2;
	margin : 0px;
	width : 18px;
	height : 18px;
	box-sizing : border-box;
	outline : none;
	left: 3px;
}
label.radio_box input[type="radio"] {
 left : calc(18px * -1);
	width : 18px;
	height : 18px;
	top : 2px;
	bottom : 0px;
	margin-top : auto;
	margin-bottom : auto;
	border-radius : 100%;
}
label.radio_box input[type="radio"] {
	box-shadow : 18px 0px #FFF;
}
/** checked forcus */
label.radio_box input[type="radio"]:checked {
	box-shadow : none;
}


/***********************************************
 03_送付先情報　table
***********************************************/
table {
	width: 100%;
}
th, td {
	display: block;
}
input,
textarea {
	padding: 10px;
}
textarea {
	line-height: 1.8;
}
.input_txt00 {
	width: 50%;
}
.input_txt01 {
	width: 100%;
}
.input_txt02 {
	width: 46%;
	padding-right: 4%;
}
.input_txt03 {
	width: 27%;
}
.input_txt03 input{
	max-width: 150px;
	margin-right: 6px;
}
.span_old {
	display: inline-block;
	vertical-align: middle;
	padding-bottom: 20px;
}
.attention_txt{
	font-size: 11px;
	vertical-align: top;
	display: inline-block;
	color: #fff;
	background-color: #FFA533;
	padding: 0 6px 0px 4px;
	margin-top: 2px;
	margin-left: 12px;
}

/*入力詳細*/
.detail {
	vertical-align: middle;
}
.detail th {
	text-align: left;
	font-size: 14px;
	vertical-align: middle;
    white-space: break-spaces;
	margin-bottom: 8px;
}
.detail th .th_border{
	display: inline-block;
	height: 18px;
	vertical-align: middle;
	line-height: 1.2;
	border-left: 4px solid #41499C;
	padding-right: 6px;
}
.detail th p {
	font-size: 12px;
	margin: 6px 0;
}
.address,.contact_category{
    display: none;
}
@media screen and (max-width:380px){
	.detail th p .sp_block{
		display: block;
	}
}
.detail td {
	text-align: left;
}
.detail td input.input_other {
	width: 80%;
	max-width: 600px;
	margin-bottom: 0;
	margin-left: 10px;
}

/***********************************************
 04_確認画面
***********************************************/
/*入力フォーム → 確認画面へ*/
.submit_wrapper {
	width: 100%;
	text-align: center;
	margin: 3em auto 1.5em;
}
#entry .submit_wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto 150px;
}
.submit_wrapper.complete {
	margin: 0 auto 150px;	
}
.submit_wrapper a, .submit_wrapper input {
	display: inline-block;
    line-height: 2.0;
	height: 50px;
	text-align: center;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	border-radius: 4px;
	background-color: #f24949;
	background-size: 16px;
	border: none;
	padding: 4px 0;
}
.submit_wrapper > p {
	padding: 0;
}
.submit_wrapper .index_btn {
	width: 60%;
	max-width: 640px;
}
@media screen and (max-width:700px) {
	.submit_wrapper {
    margin: 5em auto 1em;
	}
}

/*エラー表示*/
#entry .header_img {
	margin-bottom: 50px;
}
#entry_err, .back100 {
	max-width: 510px;
	font-size: 1em;
	line-height: 1.8;
	border: 1px solid #FF5B5E;
	padding: 1.0625em; /*17px*/
	margin: 0 auto;
 }
#entry_err {
	max-width: 650px;
}
.back100 {
	max-width: 250px;
	width: 80%;
    margin-top: 50px;
}
#entry_err h4 {
	font-size: 15px;
	color: #FF4B4E;
	margin-bottom: 18px;
}
@media screen and (max-width:650px) {
	#entry .submit_wrapper {
		max-width: 800px;
		width: 87.5%;
	}
	#entry .customer th{
		width: 100%;
	}
}
/*エラー無し*/
#entry .wrapper_inner {
	max-width: 650px;
	margin: 0 auto;
}
@media screen and (max-width:700px) {
	#entry .wrapper_inner {
		padding: 0 10%;
	}
}
#entry .submit_wrapper {
	text-align: center;
}
#entry .detail {
	width: 100%;
}
#entry .submit_wrapper {
	width: 100%;
	max-width: 640px;
}
#entry .submit_wrapper.complete {
	width: 100%;
	max-width: 640px;
}
#entry .submit_wrapper .back {
	width: 40%;
	background-color: #f26348;
}
#entry .submit_wrapper .send {
	width: 40%;
	margin-left: 10%;
}
#entry fieldset{
	max-width: 680px;
	margin: 0 auto 30px;
}
#entry .detail td {
	font-weight: bold;
}
#entry .info th {
	width: 65%;
}
#entry .info td{
	padding: 0;
	padding: 0 0 20px 20px;
}
/*#entry .customer th{
	width: 55%;
}*/

/***********************************************
  05_完了画面
***********************************************/
/*footerを常に画面下部に表示*/
body {
	min-height: 100%;
	position: relative;
}
#thanks_page .header_img {
	max-width: 750px;
	margin: 20px auto 50px;
}
#thanks_page .footer {
	width: 70%;
	margin-top: 50px;
}
#thanks_page .footer {
	width: 100%;
	height: 2em;
	vertical-align: middle;
	position: absolute;
	bottom: 20px;
}
#thanks_page .footer p {
	padding: 2px 0;
}
#thanks {
	font-size: 26px;
	max-width: 750px;
	text-align: center;
	padding: 40px;
}
#thanks > p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 24px;
}
#thanks h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 12px;
}
@media screen and (max-width:650px)  {
	#thanks {
		padding: 0;
	}
	#thanks > p {
		font-size: 16px;
		margin-bottom: 16px;
	}
}
.copyright {
	font-size: .8rem;
	color: #333;
	text-align: center;
}

/***********************************************
 06_ブレイクポイント
***********************************************/
@media screen and (max-width:650px) {
	.detail th, .detail td {
		display: block;
		width: 100%;
		border: none;
	}
	.detail tr {
		border-bottom: none;
		margin-bottom: 15px;
	}
}
@media screen and (max-width:450px) {
	.insection {
		width: 100%;
	}
	fieldset {
		padding: 14px 2% 8px;
	}
	form {
		font-size: 14px;
	}
	.hyphen{
		font-size: 8px;
	}
	fieldset {
		padding: 20px 4% 10px;
	}
	input, textarea, select {
		font-size: 16px;/* スマホ自動拡大OFF　body:-webkit-text-size-adjust: 100%; */
	}
	.select_city {
		width: 100%;
	}
	.detail input.col_l{
		margin-right: 2%;
	}
	.input_txt03{
		width: 25%;
	}
	.addr_btn {
		font-size: 12px;
	}
	.copyright {
		font-size: 0.6rem;
	}
	#page-top {
		right: -30px;
	}
	#page-top img {
		width: 60px;
	}
}
@media screen and (max-width:374px) {
	.detail select{
		width: 230px;
	}
	.select_wrap:before {
		left: 203px;
	}
	.select_wrap:after {
		left: 210px;
	}
	.detail th, .detail td {
		padding-left: 0;
	}
	.input-txt02{
		width: 32%;
	}
	input.addr_btn {
		width: 80px;
		margin-left: -0.15%;
	}
}

/***********************************************
 07_お問い合わせフォーム  
***********************************************/

/* 共通設定
--------------------------------------------*/
.insection {
	max-width: 750px;
	padding: 10px 5%;
	margin: 0 auto 50px;
}
form .ttl_txt {
	display: block;
	text-align: left;
	line-height: 1.4;
	color: #333;
	font-size: 20px;
	border-left: 4px solid #41499C;
	border-bottom: 2px solid #41499C;
	padding: 6px 0 6px 1em;
	margin-bottom: 12px;
}
.mail .wrapper {
	margin-top:  -30px;
}
.mail .info_txt .attention_txt{
	margin-left: 0;
	margin-right: 6px;
}
.mail input, .mail textarea {
	margin-bottom: 50px;
}
.mail .info_txt {
    margin-bottom: 30px;
}
.mail .slidetable {
	display: none;
}


/*　コース一覧
--------------------------------------------*/
.course_list .list_area {
    max-width: 300px;
    margin: 100px auto 40px;
}
.course_list .list_area li:nth-of-type(2) {
    margin: 40px auto;
}
.course_list .list_area li:hover {
    opacity: 0.5;
    transition: 0.5s;
}
.course_list .txt_link {
    max-width: 700px;
    padding: 0 50px;
    margin: 0 auto 100px;
}
.course_list .txt_link li {
    text-align: left;
    margin-bottom: 10px;
}
.course_list .txt_link  a {
    color: #0000ff;
    text-decoration: underline;
}
@media screen and (max-width:700px) {
    .course_list .list_area {
        margin: 140px auto 40px;
    }
}
@media screen and (max-width:500px) {
    .course_list .list_area {
        width: 76%;
        margin: 150px auto 30px;
    }
    .course_list .list_area li:nth-of-type(2) {
        margin: 30px auto;
    }
        .course_list .txt_link {
        font-size: 14px;
    }
}
@media screen and (max-width:400px) {
    .course_list .list_area {
        margin-top: 120px;
    }
    .course_list .txt_link {
        margin-bottom: 60px;
    }
}


/*　お問い合わせ
--------------------------------------------*/
.contact .btn_area {
    text-align: center;
    margin-bottom: 100px;
}
.contact .btn_area > p{
    display: inline-block;
    border-bottom: 2px solid #41499C;
    margin-bottom: 40px;
}
.contact .btn_area ul {
    display: flex;
    justify-content: center;
}
.contact .btn_area li {
    width: 210px;
}
.contact .btn_area li:first-of-type {
    margin-right: 60px;
}
.contact .btn_area li a {
    display: block;
    color: #fff;
    border-radius: 4px;
    background: #41499C;
    padding: 14px;
}
.contact .btn_area a:hover {
    opacity: 0.7;
    transition: 0.5s;
}

/*　体験/個別説明会/認定　コース
--------------------------------------------*/
.course .gaiyou {
    margin-bottom: 50px;
}
.course .gaiyou p,
.course .gaiyou li {
    font-size: 14px;
}
.course p,
.course span,
.course li {
    word-break: break-all;
}
.course .gaiyou a {
    color: #2200FF;
    text-decoration: underline;
}
.course .gaiyou .sub_ttl {
    font-size: 16px;
    margin-bottom: 20px;
}
.course .gaiyou + .btn_area {
    text-align: center;
    margin-bottom: 100px;
}
.course .gaiyou + .btn_area > p{
    display: inline-block;
    border-bottom: 2px solid #41499C;
    margin-bottom: 40px;
}
.course .gaiyou + .btn_area ul {
    display: flex;
    justify-content: center;
}
.course .gaiyou + .btn_area li {
    width: 175px;
}
.course .gaiyou + .btn_area li:first-of-type {
    margin-right: 60px;
}
.course .gaiyou + .btn_area li a {
    display: block;
    color: #fff;
    border-radius: 4px;
    background: #41499C;
    padding: 14px;
}
.course .gaiyou + .btn_area a:hover {
    opacity: 0.7;
    transition: 0.5s;
}

/*入力エリア*/
.course .width_150 {
    width: 150px;
}
.course .font_small {
    font-size: 13px;
}
.course .font_small:last-of-type {
    margin-bottom: 10px;
}
.course .year_box select {
    width: 70px;
}
.course .year_box td {
    display: inline !important;
}
.course .year_box span {
    line-height: 0;
    vertical-align: text-top;
    display: inline-block;
    margin-right: 20px;
}
.course .year_box td:last-of-type span {
    margin-right: 0;
}

/*勤務先情報*/
.course .other_area > td {
    background-color: #FFFDEE;
    padding: 24px 30px;
    margin-bottom: 50px;
}
.course .txt_bg {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    background-color:#FFA533;
    padding: 0 6px 0px 4px;
    margin-bottom: 14px;
}
.course .other_area .ttl_txt {
    margin-bottom: 30px;
}
.course .other_area th {
    text-align: left;
}
.course .other_area .r_border.padding_b14 {
    padding-bottom: 14px;
}
.course .other_area .acMenu .padding_b14 img {
    top: 10px;
}

/*同伴者情報*/
.course .other_area.others > td { /*黄背景の下余白*/
    padding-bottom: 40px;
}
.course .other_area.others tr:last-of-type td { /*タブ開いた際の最後行の下部余白*/
    margin-bottom: 40px;
}
.course .other_area.others tr:last-of-type label.radio_box{
    margin-bottom: 0;
}
.course .other_area.others .inner_box:last-child td:last-of-type {
    margin-bottom: 0;
}

/*体験コース希望日時情報*/
.mail .detail .lesson_date .datepicker{
    margin-bottom:20px;
}
.ui-datepicker th,.ui-datepicker td{
    display: table-cell;
}
.ui-datepicker-month,.ui-datepicker-year{
    color:#ffffff;
}
.select_wrap_box{
    display: flex;
}
.mail .detail .lesson_date .select_wrap_box span{
    padding-top:4px;
    margin:0 auto;
    height:40px;
}
#ui-datepicker-div>.ui-datepicker-calendar>tbody>tr{
    font-size:16px;
}

@media screen and (max-width:640px) {
    .course .gaiyou p,
    .course .gaiyou li {
        font-size: 13px;
    }
    .course .gaiyou {
        margin-bottom: 40px;
    }
    .course .year_box span {
        margin-right: 0;
    }
    .mail .detail .lesson_date .select_wrap_box .cmn_select_wrap .cmn_select{
        width:140px;
        font-size:14px;
    }
    .ui-datepicker .ui-datepicker-prev{
        background-size:20px!important;
        top: 6px!important;
        left: 6px!important;
    }
    .ui-datepicker .ui-datepicker-next{
        background-size: 20px!important;
        top: 6px!important;
        right: 6px!important;
    }
}
@media screen and (max-width:550px) {
    .course .gaiyou + .btn_area,
    .contact .btn_area {
        text-align: center;
        margin-bottom: 60px;
    }
    .course .gaiyou + .btn_area > p,
    .contact .btn_area > p {
        margin-bottom: 24px;
    }
    .course .gaiyou + .btn_area li:first-of-type {
        margin-right: 20px;
    }
    .contact .btn_area li:first-of-type {
        margin-right: 10px;
    }
    .course .gaiyou + .btn_area li:last-of-type span,
    .contact .btn_area li:last-of-type span {
        font-size: 14px;
    }
    .course .gaiyou + .btn_area li a {
        padding: 10px;
    }
    .contact .btn_area li a {
        font-size: 13px;
        padding: 10px 4px;
    }
    .acMenu dt {
        padding: 14px;
    }
    .acMenu dt img,
    .course .other_area .acMenu .padding_b14 img {
        top: 14px;
    }
    .course .other_area > td {
        padding: 24px 14px;
    }
    .course .other_area.others > td {
        padding-bottom: 40px;
    }
    .course .other_area .r_border.padding_b14 {
        padding-bottom: 0;
    }
    .course .info_txt .attention_txt {
        margin-bottom: 20px;
    }
    .course input,
    .course textarea,
    .course select {
        margin-bottom: 30px;
    }
}



/* セミナー
--------------------------------------------*/
.seminar  .submit_wrapper {
    margin: 2em auto 4em;
}
.seminar table {
	border-collapse: separate;
}
.seminar td ul,
.seminar td ul li {
	display: inline-block;
}
.seminar td ul:first-of-type {
	margin-right: 40px;
}
.seminar td ul li:first-of-type {
	width: 30px;
}
.seminar td ul li:last-of-type {
	max-width: 200px;
}
.seminar_ttl th {
    white-space: normal;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 14px;
}
.seminar_ttl td {
    font-size: 12px;
    color: #FF484B;
    padding-left: 14px;
    margin-bottom: 30px;
}
.seminar_ttl th span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}
.seminar_section th,
.seminar_section td {
    display: table-cell;
}
.seminar_section th {
    vertical-align: top;
    border-right: 2px dotted #666;
}
.seminar_section td {
    padding-left: 14px;
}
.seminar_section table {
    margin-bottom: 40px;
}
#entry .seminar .detail th {
	margin-bottom: 0;
}
#entry .seminar .detail td {
	margin-bottom: 20px;
}

/* 確認画面
--------------------------------------------*/
#entry .contact.wrapper th {
	margin-bottom: 0;
}
#entry .contact.wrapper td {
	margin-bottom: 30px;
}
#entry .contact.wrapper .margin_reset td:not(:last-of-type) {
	margin-bottom: 0;
}

@media screen and (max-width:700px) {
	.mail .wrapper {
		margin-top: -60px;
	}
    /*問合せフォーム*/
    .course_list .list_area li:nth-of-type(2) {
        margin: 20px auto;
    }
	.contact input {
   		margin-bottom: 30px;
	}
	.seminar input {
    	margin-bottom: 30px;
	}
	.seminar .detail select {
		margin-bottom: 30px;
	}
    .detail .seminar_section th {
        width: 30%;
    }
}
@media screen and (max-width:500px) {
	.mail .header #nav_toggle .toggle_box .toggle_menu {
		top: 10px;
	}
	.mail .wrapper {
		margin-top: -80px;
	}
	.mail .ttl_txt {
		font-size: 18px;
	}
    .mail table:last-of-type tr:last-of-type textarea:last-of-type {
        margin-bottom: 0;
    }
	.contact input {
		margin-bottom: 30px;
	}
	.seminar .radio_txt {
		font-size: 13px;
	}
	.seminar .radio_box.date {
		margin-right: 0;
	}
	#entry .submit_wrapper {
    	margin: 0 auto 40px;
	}
    .detail .seminar_ttl th,
    .detail .seminar_ttl td {
        padding-left: 0;
    }
    .detail .seminar_ttl th span {
        font-size: 12px;
    }
    .detail .seminar_ttl td {
    margin-bottom: 10px;
    }
    .detail .seminar_section th,
    .detail .seminar_section td {
        width: 100%;
        display: block;
    }
    .detail .seminar_section th {
        border-right: none;
        margin-bottom: 0;
    }
    .detail .seminar_section th:not(:last-child)  {
        margin-top: 12px;
    }
    .detail .seminar_section td {
        padding: 0;
    }
}