@charset "UTF-8";
/*******************************************************************************
	サイト名：松山市青少年育成市民会議
	作成会社：Fellow System
--------------------------------------------------------------------------------
 No.│   日付   │区分│						内  容
━━┿━━━━━┿━━┿━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 001│2020.05│新規│[V1.00] 山本
*******************************************************************************/

/*******************************************************************************
	デフォルトセッティング
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.contact_text {
	margin-bottom: 35px;
	font-size: 18px;
	text-align: center;
}

.step_bar {
	display: flex;
	position: relative;
	overflow: hidden;
	max-width: 740px;
	margin: 0 auto 45px;
	justify-content: space-between;
}

.step_bar li {
	position: relative;
	width: calc((100% - 20px ) / 3); /* 余白分を考慮に入れて幅を設定 */
	height: 40px;
}

.step_bar li:not(:first-child) {
	margin-left: 10px;
}

/* 重なり順を設定 */
.step_bar li:first-child {
	z-index: 3;
}

.step_bar li:nth-child(2) {
	z-index: 2;
}

.step_bar li:last-child {
	z-index: 1;
}

.step_bar li .stepbar_inner {
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #e0e0e0;
	justify-content: center;
	align-items: center;
}
.step_bar li:not(:first-child) .stepbar_inner {
	padding-left: 25px;
}

/* 矢印共通 */
.step_bar li:not(:first-child)::before , .step_bar li:not(:first-child)::after , .step_bar li:not(:last-child) .stepbar_inner::before , .step_bar li:not(:last-child) .stepbar_inner::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	content: "";
}
.step_bar li:not(:first-child)::before , .step_bar li:not(:last-child) .stepbar_inner::before {
	border-width: 26.5px 0 26.5px 35px;
	border-width: 20px 0 20px 25px;
	border-left-color: #000000;
}
.step_bar li:not(:first-child)::after , .step_bar li:not(:last-child) .stepbar_inner::after {
	border-width: 25.5px 0 25.5px 34px;
	border-width: 20px 0 20px 25px;
	border-left-color: #ffffff;
}

/* STEP2、3の左側矢印 */
.step_bar li:not(:first-child)::before , .step_bar li:not(:first-child)::after {
	left: 0;
	border-left-color: #ffffff;
}

/* STEP1、2の右矢印 */
.step_bar li:not(:last-child) .stepbar_inner::before , .step_bar li:not(:last-child) .stepbar_inner::after {
	left: 100%;
	border-left-color: #e0e0e0;
}

.step_bar li.step_current .stepbar_inner {
	background-color: #000000;
	color: #ffffff;
}
.step_bar li.step_current .stepbar_inner::before {
	border-left-color: #000000 !important;
}
.step_bar li.step_current .stepbar_inner::after {
	display: none;
}





.select_layout {
	position: relative;
	z-index: 1;
	max-width: 350px;
}
.contact .select_layout::after {
	display: block;
	position: absolute;
	top: 40%;
	right: 8.5715%;
	z-index: -1;
	transform: translateY(-40%) rotate(45deg);
	width: 15px;
	height: 15px;
	border-right: 2px solid #707070;
	border-bottom: 2px solid #707070;
	content: "";
}

select:active + .select_layout::after {
	transform: translateY(-40%) rotate(0deg);
}

.contact_form {
	display: block;
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 150px;
}
.contact_form table {
	width: 100%;
	margin-bottom: 65px;
	border-collapse: collapse;
	border-spacing: 0;
}
.contact_form table tr {
	border-top: 1px solid;
}
.contact_form table th , .contact_form table td {
	padding-top: 20px;
	padding-bottom: 20px;
}
.contact_form table th {
	max-width: 220px;
	min-width: 205px;
	width: 22%;
	font-size: 18px;
	text-align: left;
}
.contact_form table th h4 {
	font-weight: 500;
	font-size: 18px;
}
.contact_form table th .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact_form span.mark-required {
	display: inline-block;
	width: 50px;
	background-color: #e82736;
	color: #ffffff;
	font-size: 13px;
	line-height: 2.35;
	text-align: center;
}

.contact_form table td {
	font-size: 15px;
}
.contact_form table tr.agreement td {
	padding-left: 0;
	padding-bottom: 0
}
.contact_form input , .contact_form select , .contact_form textarea {
	height: 60px;
	border-width: 1px;
	background-color: rgba(224, 224, 224, 0.5);
}
.contact_form input::placeholder , .contact_form textarea::placeholder {
	padding-left: 22.5px;
}
.mwform-tel-field input:not(:first-child)::placeholder , .mwform-zip-field input::placeholder {
	padding-left: 0;
}
.contact_form select {
	padding-left: 30px;
}
.address td > input {
	margin-top: 10px;
}
.contact_form textarea {
	min-height: 300px;
	height: 170px;
	resize: vertical;
}
.contact_caution {
	display: block;
	width: 100%;
	margin-top: 13px;
	padding-left: 30px;
	font-size: 16px;
}
.confirm .contact_caution {
	display: none;
}
@media screen and (min-width: 768px) {
	.contact_text {
		font-size: 18px;
	}
	.contact_text br {
		display: none;
	}
	.step_bar {
		width: 90%;
	}
	.step_bar h3 {
		font-size: 17px;
	}


	.contact_form table td {
		padding-left: 7.5%;
	}
}
@media screen and (max-width: 767px) {
	.contact .page_container , .confirm .page_container , .complete .page_container {
		padding: 0 30px;
		margin-top: 30px;
	}
	.contact_text {
		font-size: 15px;
	}
	.step_bar {
		width: 100%;
	}
	.step_bar h3 {
		font-size: 15px;
	}
}







input.common_btn {
	max-width: 395px !important;
	width: 47% !important;
	width: 100%;
	border-radius: 35px;
	color: #ffffff;
	font-family: "icomoon" !important;
}
.contact_font_img {
	max-width: 130px;
	width: 100%;
	margin: auto;
}



@media screen and (min-width: 768px) {
	.contact .address th , .contact .tel th , .contact .mail th , .contact .inquiry th {
		padding-top: 38px!important;
		vertical-align: top;
	}
}
.confirm .agreement {
	display: none;
}
.agreement_content p {
	margin-bottom: 20px;
	line-height: 2.2;
	text-align: justify;
}
.agreement_content a {
	margin-top: 9px;
	padding-bottom: 1px;
	border-bottom: 1px solid;
	color: #4687d6;
	line-height: 1.45;
}



input[type=checkbox] , input[type=radio] {
	display: none;
}
.mwform-checkbox-field-text , .mwform-radio-field-text {
	position: relative;
	white-space: nowrap;
}
.mwform-checkbox-field-text {
	margin-right: 40px;
}
.mwform-radio-field-text {
	padding: 3.5px 0 3.5px 38px;
}
.mwform-checkbox-field-text:before , .mwform-checkbox-field-text:after , .mwform-radio-field-text:before , .mwform-radio-field-text:after {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}
.mwform-radio-field-text:before {
	left: 0;
	width: 28px;
	height: 28px;
	border: 1px solid #808080;
	border-radius: 50%;
}
.mwform-checkbox-field-text:after , .mwform-radio-field-text:after {
	opacity: 0;
}
input[type=checkbox]:checked + .mwform-checkbox-field-text:after , input[type=radio]:checked + .mwform-radio-field-text:after {
	opacity: 1;
}
.mwform-radio-field-text:after {
	left: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #808080;
}

.mwform-checkbox-field-text:before {
	left: 0;
	width: 25px;
	height: 25px;
	background-color: #ebebeb;
}

input[type=checkbox]:checked + .mwform-checkbox-field-text:before {
	border: 1px solid #000000;
	border-radius: 3px;
	background-color: #ffffff;
}

.mwform-checkbox-field-text:after {
	left: 9px;
	transform: rotate(45deg);
	width: 7px;
	height: 15px;
	margin-top: -9px;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
}


.row-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.row-wrap dt {
	margin-right: 4.1096%;
}


.mw_wp_form_complete {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
	line-height: 2;
}
.mw_wp_form_complete p {
	font-size: 15px;
	text-align: justify;
}
.mw_wp_form_complete p:not(:nth-of-type(1)) {
	margin-top: 10px;
}

.contact_profile {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px dashed;
}
.contact_profile dl {
	line-height: 2;
}
.contact_profile dl dt {
	display: flex;
	float: left;
	clear: both;
	justify-content: space-between;
}
.contact_profile dl dt::after {
	content: "：";
}
/* お問い合わせ完了 */
.finish .mw_wp_form p:not(:first-child) {
	margin-top: 20px;
}
.finish .mw_wp_form .contact_profile h3 {
	margin-bottom: 20px;
	font-size: 23px;
}
.finish .mw_wp_form .contact_profile dl dt {
	width: 60px;
}

.g-recaptcha {
	margin-top: 30px;
}

.send_btn:disabled {
	opacity: 0.5;
	/*background: #cd2e3a;*/
	cursor: not-allowed;
}
.grad_btn:hover:disabled {
	animation: none;
}
.sub_btn {
	font-size: 1em;
	cursor: pointer;
}


.contact_btn {
	display: flex;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	font-size: 21px;
	justify-content: space-between;
	align-items: center;
}
.contact_btn input {
	border: 1px solid;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	background-color: #f0f0f0;
	color: #000000;
	font-weight: bold;
}
.contact_btn input:hover {
	background-color: #000000;
	color: #f0f0f0;
}
.contact_btn input:focus {
	border: none;
}
/* #submit-button:disabled, .grad_btn.send_btn{
	background: linear-gradient(90deg, #007adf 0%, #00ecbc 100%);
}
#submit-button:disabled:hover, .grad_btn.send_btn{
	background-color: #007adf;
} */

.contact_hidden {
	display: none;
}
.confirm .reset {
	display: none;
}
@media screen and (max-width: 767px) {
	.contact .main , .confirm .main , .complete .main {
		width: 100%;
		padding: 68px 30px 0;
	}

	.contact_text {
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 1.85;
		text-align: justify;
		text-indent: 15px;
	}
	.contact_text br {
		display: none;
	}

	.contact_form {
		width: 100%;
	}

	.contact_form {
		margin-bottom: 100px;
	}
	.contact_form table th , .contact_form table td {
		display: block;
		width: 100%;
	}
	.contact_form table th {
		min-width: auto;
		padding-top: 15px;
		padding-bottom: 20px;
	}
	.contact_form span.mark-required {
		width: 45px;
		margin-left: 20px;
		font-size: 13px;
		line-height: 1.92;
	}
	.contact_form table td {
		/* padding-top: 0; */
		padding-bottom: 20px;
		padding-left: 20px;
	}
	.row_input {
		max-width: none;
		flex-direction: column;
	}
	.row_input dt {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.contact_form input {
		max-width: none;
	}
	.row-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.row-wrap dt {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.confirm .row-wrap dt {
		margin-bottom: 0;
	}
	.mail .row-wrap {
		margin-top: 10px;
	}
	.contact_form textarea {
		max-width: none;
	}.contact_form table {
		margin-bottom: 40px;
	}
	.contact_form .contact_form__h3 {
		font-size: 15px;
	}
	.contact_btn {
		flex-direction: column;
	}
	.contact_btn input:last-of-type {
		margin-top: 20px;
	}
	.contact_btn input {
		max-width: 240px !important;
		width: 100% !important;
	}
	.common_btn {
		max-width: 240px !important;
		width: 100% !important;
	}
	.send_btm {
		margin-top: 20px;
	}
	.mw_wp_form_complete p {
		font-size: 14px;
	}

	/*@media screen and (max-width: 374px) {
		.g-recaptcha > div {
			width: 260px !important;
			height: 67px !important;
		}
		.g-recaptcha iframe {
			transform: scale(0.86) !important;
			transform-origin: 0 0;
		}
	}*/
}
