@charset "UTF-8";


/* Sass Document */
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	outline: none;
	background: transparent;
	font: inherit;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	/* IE11だとクリックでページがうごくからIE11のみ position: static;*/
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.ly-content-heading {
	padding-top: 5.5rem;
}

.ly-content-body {
	padding-top: 0;
}

.contact__title {
	margin-bottom: 4rem;
	font-size: 2.4rem;
	line-height: 2;
	text-align: center;
}

.info__title {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.info__text {
	margin-top: 4rem;
	font-size: 1.5rem;
}
ul.list{
	margin-top: 4rem;

}
li.item{
	padding-left: .5em;
	text-indent: -.5em;
}
.info_text{
	padding-left: 1em;
	text-indent: -1em;
}
.field-content {
	margin-top: 2rem;
	margin-right: 2rem;
	padding-top: 4rem;
	padding-bottom: 10rem;
	border-top: 1px solid #000;
}

.confirm .field-content {
	max-width: 94rem;
	margin: 0 auto;
	padding-top: 0;
	border-top: none;
}

.confirm .ly-content-heading {
	padding-top: 6.5rem;
	padding-bottom: 0;
}

.confirm .field-label__wrapper {
	margin-top: 0;
}

.field-block {
	display: flex;
	align-items: flex-start;
	padding: 2rem 0;
}

.field-label__wrapper {
	display: flex;
	justify-content: space-between;
	min-width: 21.5rem;
	margin-top: 1.2rem;
	margin-right: 2rem;
}

.confirm .required,
.confirm .field-area .m-text {
	display: none;
}

.ly-textarea {
	margin-top: 1.5rem;
}

.ly-textarea .field-label__wrapper {
	margin-top: 0;
}

.required {
	display: inline-block;
	margin-left: 1rem;
	padding: .2em 1.2em;
	background: #000;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: .1em;
}

.field-area {
	flex-grow: 1;
}

.field-area .m-text {
	display: inline-block;
	margin-top: .5rem;
	font-size: 1.3rem;
}

input[type="text"],
input[type="email"],
input[type="tel"]{
	width: 100%;
	padding: 1rem;
	border: 1px solid #000;
	border-radius: 5px;
	font-size: 1.6rem;
	line-height: normal;
}

textarea {
	width: 100%;
	min-height: 16rem;
	padding: 1rem;
	border: 1px solid #000;
	font-size: 1.6rem;
}

::placeholder {
	color: #A1A1A1;
}

.m-btn-wrapper {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	margin-top: 4rem;
	text-align: center;
}

a.m-btn {
	display: inline-block;
	min-width: 24rem;
}

.m-btn {
	position: relative;
	min-width: 32rem;
	margin: 0 1rem;
	padding: 1.6rem;
	border: 1px solid #000;
	background: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	color: #000;
}

.m-btn.m-return {
	border-color: #999;
	color: #999;
}

.m-btn:hover .m-arrow {
	animation-name: arrowMove;
	animation-duration: .4s;
}

.m-btn:hover .m-rev-arrow {
	animation-name: revArrowMove;
	animation-duration: .4s;
}

.m-btn .m-arrow {
	position: absolute;
	top: 48%;
	right: 2rem;
	transform: translateY(-50%);
	font-size: 1.6rem;
}

.m-btn .m-rev-arrow {
	position: absolute;
	top: 48%;
	left: 2rem;
	transform: translateY(-50%);
	font-size: 1.6rem;
}

@keyframes arrowMove {
	0% {
		opacity: 1;
	}
	40% {
		transform: translateX(100%) translateY(-50%);
		opacity: 0;
	}
	60% {
		transform: translateX(-100%) translateY(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%) translateY(-50%);
		opacity: 1;
	}
}

@keyframes revArrowMove {
	0% {
		opacity: 1;
	}
	40% {
		transform: translateX(-100%) translateY(-50%);
		opacity: 0;
	}
	60% {
		transform: translateX(100%) translateY(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%) translateY(-50%);
		opacity: 1;
	}
}

.complete .ly-content-body {
	padding-top: 6rem;
	padding-bottom: 15rem;
}

.compleat__text {
	margin-bottom: 10rem;
	font-size: 2.4rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.contact__title {
		font-size: 5.2vw;
	}
	.info__title {
		font-size: 3.6vw;
	}
	.info__text {
		font-size: 3.6vw;
	}
	.field-content {
		margin-right: 0;
		padding-top: 2rem;
		padding-bottom: 8rem;
		border-top: none;
	}
	.field-block {
		display: block;
		padding: 1.5rem 0;
	}
	.field-label__wrapper {
		display: block;
		margin-bottom: 1rem;
	}
	.confirm .field-block {
		padding: 2rem 0;
	}
	.confirm .field-label__wrapper {
		margin-bottom: 2rem;
	}
	.required {
		font-size: 3.1vw;
	}
	input[type="text"] {
		font-size: 4.2vw;
	}
	textarea {
		font-size: 4.2vw;
	}
	.m-btn-wrapper {
		display: block;
	}
	.m-btn {
		min-width: 80%;
		margin: 1rem 0;
		padding: 2rem;
	}
	.complete .ly-content-body {
		padding-bottom: 9rem;
	}
	.compleat__text {
		margin-bottom: 5rem;
	}
}

/*# sourceMappingURL=sourcemaps/contact.css.map */

input + .mwform-radio-field-text {
	display: inline-block;
	position: relative;
	padding-left: 2.5rem;
	cursor: pointer;
}

/* inputの位置と枠　*/
input + .mwform-radio-field-text:before {
	display: block;
	position: absolute;
	border: 1px solid #333333;
	content: '';
}

input[type=checkbox] + .mwform-radio-field-text:before {
	top: 50%;
	left: 0;
	width: 13px;
	height: 13px;
	transform: translateY(-50%);
}

/*　チェックマーク　*/
input[type=checkbox]:checked + span:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 4px;
	width: 10px;
	height: 14px;
	transform: rotate(45deg);
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	content: '';
}

input[type=radio] + .mwform-radio-field-text:before {
	top: 50%;
	left: 0;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 1rem;
	transform: translateY(-50%);
}
/* ラジオボタンのチェック　*/
input[type=radio]:checked + .mwform-radio-field-text:after {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .4rem;
	width: 1rem;
	height: 1rem;
	border-radius: 2rem;
	background-color: #000;
	content: '';
}
.mwform-radio-field.horizontal-item{
	margin-top: 1.2rem;
	display: inline-block;
	margin-right: 2rem;
}
@media screen and (max-width: 767px) {
	.mwform-radio-field.horizontal-item{
		margin-right: .6rem;
	}
}