/*フォームページ*/

.form table {
	margin-bottom: 0;
	word-break: break-all;
	table-layout: fixed;
}
.form table td, .form table th {
	border: none;
	font-size: 1.5rem;
	display: block;
}
@media (min-width: 769px) {
	#main .article .form table tr th {
		padding: 10px 20px;
		vertical-align: middle;
	}
}


.form-linetext {
	background-color: #e8e8ed;
	border: solid 1px #d1d1db;
	line-height: 1.6;
	width: 100%;
	padding: 1.5rem;
	-webkit-transition: all .3s cubic-bezier(.455,.03,.515,.955) 0s;
	transition: all .3s cubic-bezier(.455,.03,.515,.955) 0s;
}
.form-select {
	background-color: #e8e8ed;
	border: solid 1px #d1d1db;
	color: #666;
	line-height: 1.6;
	cursor: pointer;
	position: relative;
	width: 100%;
	padding: 1rem 4.5rem 1rem 1rem;
	-webkit-transition: all .3s cubic-bezier(.455,.03,.515,.955) 0s;
	transition: all .3s cubic-bezier(.455,.03,.515,.955) 0s;
}
.form-select::before {
	background-color: #08a59f;
	width: 3.5rem;
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
}
.form-select::after {
	border-top: solid .25rem #fff;
	border-right: solid .25rem transparent;
	border-bottom: 0;
	border-left: solid .25rem transparent;
	width: 0;
	height: 0;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 1.5rem;
	bottom: auto;
	left: auto;
}
.form-select::after, .form-select::before {
	content: "";
	display: block;
}
.form-required {
	background-color: red;
	border-radius: .25rem;
	color: #fff;
	font-size: 1.5rem;
	display: inline-block;
	position: relative;
	top: -1px;
	margin-left: .5rem;
	padding: .25rem .5rem;
}
.form .hasCustomSelect {
	width: 100% !important;
	z-index: 3;
}
@media screen and (min-width: 992px) {
.form-linetext {
	
}
.form table td, .form table th {
	font-size: 1.5rem;
	display: table-cell;

}
.form table th{
	width: 25%;
	text-align: left;
	background-color: #fff;
}
.form table td{
	width: 70%;
}

}

/* ボタン */
.btn {
    background-color: #333;
    border: solid 1px #333;
    border-radius: 160px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: block;
    position: relative;
    width: 200px;
    margin: 0 auto;
    padding: 1rem 2.25rem;
    -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.btn:hover {
    opacity: 1;
    background-color: #fff;
    color: #333;
}

/**
 * error message
 */
 .mw_wp_form .error {
	font-size : 93%;
	color : #B70000;
	display : block;
}

/**
 * error message of akismet
 */
.mw_wp_form .akismet_error {
	display: block;
}

/**
 * vertical style of radio and checkbox
 */
.mw_wp_form .vertical-item {
	display: block;
}
.mw_wp_form .vertical-item + .vertical-item {
	margin-top: 5px;
}

/**
 * horizontal style of radio and checkbox
 */
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 10px;
}

/**
 * radio and checkbox
 */
.mwform-checkbox-field label,
.mwform-radio-field label {
	font-weight: normal;
	margin-bottom: 0;
}
.mwform-checkbox-field input,
.mwform-radio-field input {
	margin-right: 5px;
}

/**
 * datepicker
 */
.mw_wp_form .ui-datepicker .ui-datepicker-title select.ui-datepicker-month,
.mw_wp_form .ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
	width: 40%;
	margin: 0 5px;
}

/**
 * deprecated message
 */
.mw-wp-form-deprecated-message {
	background: #fdeeee;
	border: 1px solid #f7bdb8;
	border-radius: 5px;
	color: #af4040;
	font-size: 13px;
	line-height: 1.6;
	margin: 0 0 10px;
	padding: 1em;
}

/**
 * file
 */
.mw_wp_form input[type="file"] {
	display: inline-block;
}

/**
 * file delete button
 */
.mwform-file-delete {
	cursor: pointer;
	visibility: hidden;
}

/**
 * tel and zip
 */
.mwform-tel-field input[type="text"],
.mwform-zip-field input[type="tel"] {
	display: inline-block;
	width: auto;
}

.form .doui {
	font-size: 1.5rem;
}

.form .doui .mwform-checkbox-field {
	margin-top: 1rem;
}

