@charset "UTF-8";

/* タイトル */
.title-col {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	margin-top: 134px;
	max-width: 1168px;
}

.title-col::after {
	content: "";
	position: absolute;
	top: -409px;
	right: -316px;
	background: url(../img/circle-g.webp) no-repeat;
	background-size: contain;
	width: 852px;
	height: 827px;
	z-index: -1;
}

.title-col h1 {
	background: linear-gradient(90deg, #619E14 0%, #C8C82E 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: flex;
	flex-flow: column;
	flex-shrink: 0;
	font-size: 50px;
	line-height: 1;
	letter-spacing: .08em;
	max-width: max-content;
}

.title-col span {
	line-height: 1;
}

.title-col svg {
	margin-top: 25px;
}

/* 入力画面 */

.contact-wrap {
	margin: 60px auto 205px;
	width: 90%;
	max-width: 1008px;
}

.understand {
	display: none;
}

.mw_wp_form_input .understand {
	display: block;
	text-align: center;
}

.contact-table {
	margin-top: 72px;
	position: relative;
}

.contact-table::before {
	content: "";
	position: absolute;
	bottom: 38px;
	left: -699px;
	background: url(../img/circle-y.webp) no-repeat;
	background-size: contain;
	width: 981px;
	height: 952px;
	z-index: -1;
}

.contact-table tr {
	display: block;
	margin-top: 23px;
}

.contact-table tr:first-child {
	margin-top: 0;
}

.contact-table th,
.contact-table td {
	color: #3D3D3D;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
	text-align: left;
}

.required {
	background: #FF4613;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	padding: 4px 8px;
	white-space: nowrap;
}

.contact-table th:has(.required) {
	display: flex;
    align-items: center;
    gap: 11px;
}

/* フォーム */

::placeholder {
	color: #A3A3A3;
}

.mw_wp_form .horizontal-item+.horizontal-item {
	margin: 0 !important;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	background: #fff;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	padding: 11px 27px;
	resize: vertical;
	width: 100%;
}

.contact-table td:has(textarea) {
	height: 240px;
}

textarea {
	height: 100%;
}

.contact-table td:has(.mwform-radio-field) {
	background: #fff;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	display: flex;
	gap: 8px 38px;
	flex-wrap: wrap;
	line-height: 2.5;
	padding: 26px 34px;
}

.contact-table input[type=radio].radio_btn_item {
	display: none;
}

.contact-table .radio_btn_item+span {
	font-weight: 500;
	padding-left: 30px;
	display: inline-block;
	position: relative;
}

.contact-table .radio_btn_item+span::after,
.contact-table .radio_btn_item+span::before {
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
}

.contact-table .radio_btn_item+span::before {
	background: #fff;
	border: 1px solid #3D3D3D;
	left: 0;
	top: 9px;
	height: 21px;
	width: 21px;
}

.contact-table .radio_btn_item+span::after {
	background: #FF4613;
	left: 7px;
	opacity: 0;
	top: 16px;
	width: 9px;
	height: 9px;
}

.contact-table .radio_btn_item:checked+span::after {
	opacity: 1;
}

.contact-table td:has(span) {
	display: flex;
	align-items: flex-start;
	gap: 0 32px;
}

.contact-table td span input[type="text"] {
	width: 288px;
}

.contact-table td span .input-short {
	width: 160px;
}

.contact-table td span:has(.input-jp),
.contact-table td span .input-jp {
	width: 100% !important;
}

#autozip {
	display: none !important;
}

.consent {
	display: flex;
	align-items: baseline;
	gap: 13px;
	margin: 38px auto 0;
	width: 90%;
    max-width: 1008px;
}

.consent a {
	color: #3D3D3D;
	text-decoration: underline;
}

.consent p,
.consent label {
	font-size: 16px;
	font-weight: 500 !important;
	letter-spacing: .05em;
	line-height: 2.5;
}

.consent .check {
	text-align: left;
}

.consent .check .mwform-checkbox-field-text {
	border-bottom: 1px solid #3D3D3D;
	padding-bottom: 7px;
	position: relative;
}

.consent .check input[type="checkbox"] {
	display: none;
}

.consent .check .mwform-checkbox-field-text::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -45px;
	display: block;
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	border-radius: 5px;
	width: 31px;
	height: 31px;
}

.consent .check .mwform-checkbox-field-text::after {
	content: "";
}

.mwform-checkbox-field>label input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
	width: 10px;
	height: 15px;
	transform: translateY(-50%) rotate(45deg);
	bottom: 0;
	left: -35px;
	border: none;
	border-right: 2px solid #FF4613;
	border-bottom: 2px solid #FF4613;
	content: '';
	display: block;
	position: absolute;
	transition: .1s;
}

.form-btn {
	background: linear-gradient(to right, #F8F846, #A1C574);
    border-radius: 10px;
	cursor: pointer;
    display: block;
    padding: 2px;
    width: max-content;
    transition: .3s;
	margin: 0 auto;
}

.form-btn input {
	border: none;
	border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    color: #508F02;
    display: inline-block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
    padding: 10px 82px;
	width: 248px;
    transition: .3s;
}

.form-btn div {
	position: relative;
}

.form-btn div::before {
	content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #508F02;
    border-radius: 50%;
    width: 8px;
    height: 8px;
	margin: 0px 64px;
}

.form-btn:hover {
	background: url(../img/noise-btn.webp);
    background-size: contain;
}

.form-btn:hover div::before {
	background: #fff;
}

.form-btn:hover input {
	background: transparent;
    color: #fff;
}

.mw_wp_form_input .form-btn {
	margin-top: 84px;
}

.mw_wp_form_input .form-btn:has(.fix) {
	display: none;
}

/* 確認画面 */

.confirm-title {
	display: none;
}

.mw_wp_form_confirm .confirm-title {
	display: block;
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	text-align: center;
}

.contact-wrap:has(.mw_wp_form_confirm) {
	margin: 45px auto 258px;
}

.mw_wp_form_confirm .contact-table {
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 68px 48px 55px;
	margin-top: 56px;
	width: 100%;
}

.mw_wp_form_confirm .contact-table tr {
	border-bottom: 1px solid #A1C574;
	padding-bottom: 16px;
}

.mw_wp_form_confirm .contact-table th {
	color: #508F02;
}

.mw_wp_form_confirm .contact-table td:has(span) {
	gap: 1em;
	flex-flow: row;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .consent {
	display: none;
}

.mw_wp_form_confirm .btn-submits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 36px;
	margin-top: 64px;
}

.mw_wp_form_confirm .btn-submits .form-btn {
	margin: 0;
}

.mw_wp_form_confirm .form-btn .send::before {
	margin: 0px 90px;
}

/* 完了画面 */
.completed-wrap {
	width: 90%;
	margin: 0 auto 258px;
	max-width: 1008px;
}

.completed-title {
	display: block;
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	text-align: center;
}

.completed-wrap .completed {
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 69px 64px 72px;
	margin: 56px auto 40px;
	text-align: center;
	width: 100%;
}

.completed-wrap .completed div {
	background: #DFEAD2;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 24px 16px 22px;
	margin: 60px auto 0;
	max-width: 512px;
}

.completed-wrap ul {
	margin-top: 24px;
}

.completed-wrap li {
	color: #3D3D3D;
	padding-left: 1em;
	position: relative;
}

.completed-wrap li::before {
	content: "●";
	position: absolute;
	left: 0;
}

.completed-wrap .btn {
	background: linear-gradient(to right, #F8F846, #A1C574);
    border-radius: 10px;
    display: block;
    padding: 2px;
	margin: 60px auto 0;
    width: max-content;
    transition: .3s;
}

.completed-wrap .btn a {
	border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    color: #508F02;
    display: inline-block;
    padding: 10px;
	text-align: center;
    transition: .3s;
	width: 248px;
}

.completed-wrap .btn a span {
	padding-left: 18px;
    position: relative;
}

.completed-wrap .btn a span::before {
	content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #508F02;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.completed-wrap .btn:hover {
	background: url(../img/noise-btn.webp);
    background-size: contain;
}

.completed-wrap .btn:hover a {
	background: transparent;
    color: #fff;
}

.completed-wrap .btn:hover a span::before {
	background: #fff;
}

/* タブレット */
@media screen and (max-width: 1140px) {
	.title-col::after {
		top: -287px;
		right: -231px;
		width: 638px;
		height: 619px;
	}
}

/* sp */
@media screen and (max-width: 767px) {
	.title-col h1 {
		font-size: 30px;
		letter-spacing: .08em;
		line-height: 1.2;
	}
	
	.title-col::after {
		top: -90px;
		right: -58px;
		width: 244px;
		height: 237px;
	}

	/* 入力画面 sp */

	.contact-table {
		margin-top: 54px;
	}

	.contact-wrap .understand {
		line-height: 1.68;
	}

	.contact-table td:has(span) {
		flex-flow: column;
		gap: 23px;
	}

	.contact-table td span input[type="text"] {
		width: 100%;
	}

	.consent p, .consent label {
		font-size: 14px;
		line-height: 1.68;
	}

	.mw_wp_form_input .form-btn {
		margin-top: 47px;
	}

	.contact-table::before {
		background: url(../img/circle-g.webp) no-repeat;
		background-size: contain;
		top: 380px;
		left: -67px;
		width: 205px;
		height: 200px;
	}

	.contact-table::after {
		content: "";
		position: absolute;
		top: 690px;
		right: -90px;
		background: url(../img/circle-y.webp) no-repeat;
		background-size: contain;
		width: 244px;
		height: 237px;
		z-index: -1;
	}

	.contact-table tr:last-child {
		position: relative;
	}

	.contact-table tr:last-child::before {
		content: "";
		position: absolute;
		bottom: -20px;
		left: -67px;
		background: url(../img/circle-g.webp) no-repeat;
		background-size: contain;
		width: 205px;
		height: 200px;
		z-index: -1;
	}

	/* 確認画面 sp */
	.mw_wp_form_confirm .contact-table {
		margin-top: 60px;
	}

	.mw_wp_form_confirm .btn-submits {
		gap: 24px;
		margin-top: 32px;
	}

	/* 完了画面 sp */

	.completed-wrap {
		margin-bottom: 300px;
	}

	.completed-title {
		line-height: 1.2;
	}

	.completed-wrap .completed {
		margin-bottom: 24px;
		padding: 32px 0 24px;
	}

	.completed-wrap .completed div {
		margin: 32px 24px 0;
		padding: 9px 15px 15px;
	}

	.completed-wrap ul {
		margin-top: 32px;
	}
}