@charset "Shift_JIS";



/*======================================================================================================================
========================================================================================================================

contact.css

お問い合わせ・参加登録ページ専用スタイル

========================================================================================================================
======================================================================================================================*/



/* コンテンツ基本指定
-------------------------------------------------------------------------------------------------------- */

/* コンテンツ全体枠 */
#contents {
	margin:         0px 0px 20px 0px;
	padding:        0px 22px 0px 22px;
}

/* メインエリア（サブナビなし　センター寄せ） */
#main {
	margin:         0px auto;
	padding:        0px;
	float:          none;
	
}
#main .m_inner {
	margin:         0px 0px 0px 0px;
	text-align:     left;
	min-height:     300px;
}

/*レスポンシブ化追記*/

input:not([type="radio"],[type="checkbox"]){
    -webkit-appearance: none;
}

input {
	max-width: 100%;
	box-sizing: border-box;
}

.form_table{
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-all;
}

.form_table input[type="text"],
.form_table select,
.form_table textarea{
	padding: 2px 5px;
	border: solid 1px #767676 !important;
}

.form_table select{
	width: 100%;
	box-sizing: border-box;
	max-width: 280px;
}

.form_table input[type="checkbox"]{
	margin-right: 5px;
}

.form_table_ttl{
	padding: 10px 5px;
	font-weight: bold;
}

.form_table tr.is-pc{
	display: none;
}

.form_table td{
	display: block;
	padding: 10px;
	width: auto;
	line-height: 1.7;
	min-height: 20px;
}

.form_table td.is-pt0{
	padding-top: 0;
}

.form_table td.is-bd_b{
	border-bottom: 1px solid #ccc;
}

.form_table td.is-hasLabel{
	padding: 0 10px 10px;
}

.form_table td.is-hasLabel::before {
	display: block;
	content: attr(data-label);
	color: #333;
	background-color: #eee;
	margin: 0 -10px 0;
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
}

.w400,
.w200,
.w280,
.w180{
	margin: auto;
	width: 100%;
	box-sizing: border-box;
}

.w400{
	max-width: 400px;
}

.w280{
	max-width: 400px;
}

.w200{
	max-width: 400px;
}

.w180{
	max-width: 180px;
}

@media(min-width:451px){
	.maxW450{
		display: none
	}
}

.text10{
	display: block;
	margin-top: 10px;
}

.is-mb10{
	margin-bottom: 10px;
}

.is-note{
	display: inline-block;
	position: relative;
	padding-left: 1.1em;
}

.is-note::before{
	content: '\203b';
	position: absolute;
	left: 0;
	top: 0;
}

.statusList li{
	position: relative;
	border: solid 1px #ccc;
	background-color: #fff;
	text-align: center;
	padding: 5px 10px;
}

.statusList li:not(:last-child)::before{
    content: '';
    position: absolute;
    z-index: 3;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transform: rotate(135deg);
}

.statusList li:not(:last-child)::after{
    content: '';
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 3px;
    background-color: #FFF;
}

.statusList li.is-current{
    border: solid 1px #FD9B1C;
    background-color: #FD9B1C;
    color: #fff;
}

.statusList li.is-current:not(:last-child)::before{
    content: '';
    position: absolute;
    left: 30px;
    right: 0;
    bottom: -15px;
    margin: auto;
    transform:  translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #fd9b1c transparent transparent transparent;
}

.statusList li.is-current:not(:last-child)::after{
    display: none;
}

.statusList li:not(:last-child){
	margin-bottom: 20px;
}

.btn{
    -webkit-appearance: none;
}

.btn.is-registration{
	box-sizing: border-box;
	display: block;
	text-align: center;
	position: relative;
	width: 100%;
	max-width: 330px;
	margin: 20px auto 0;
	padding: 10px 20px;
	border: 1px solid #FD9B1C;
	color: #fff;
	border-radius: 8px;
	background: #FD9B1C;
	font-weight: bold;
	font-size: 116%;
	letter-spacing: 0.05em;
	transition: .3s;
	cursor: pointer;
}

.btn.is-registration.is-red{
	border: 1px solid #FF5150;
	background: #FF5150;
}

.btn.is-registration.is-nonArrow::before{
	content: none;
}

.btnWr{
	margin-top: 20px;
}

/* 必須項目のラベル 2022.12追加*/
.required-label{
	padding: 3px 6px 4px;
	background-color: #B5031C;
	font-weight: bold;
	color: #fff;
	border-radius: 2px;
	margin-left: 5px;
}
.required-label.mr5{
	margin-right: 5px;
}
.form_table label[for="mb_questionnaire_03_011"],
.form_table label[for="mb_questionnaire_03_012"]{
	padding-right: 3em;
}