@charset "UTF-8";
@-webkit-keyframes btnArrowAnim {
	0%, 100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	33% {
		-webkit-transform: translateX(110%);
		        transform: translateX(110%);
		opacity: 0;
	}
	66% {
		-webkit-transform: translateX(-110%);
		        transform: translateX(-110%);
		opacity: 0;
	}
}
@keyframes btnArrowAnim {
	0%, 100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	33% {
		-webkit-transform: translateX(110%);
		        transform: translateX(110%);
		opacity: 0;
	}
	66% {
		-webkit-transform: translateX(-110%);
		        transform: translateX(-110%);
		opacity: 0;
	}
}
/* --------------------------------------------------
p-contactSec01
-------------------------------------------------- */
.p-contactSec01 {
	margin-top: 6rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01 {
		margin-top: 12rem;
		text-align: center;
	}
}

.p-contactSec01__title {
	font-weight: 600;
	font-size: 4.8rem;
	line-height: 1.6875;
	letter-spacing: 0.025em;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01__title {
		font-size: 3rem;
		letter-spacing: 0;
	}
}
.p-contactSec01__title.m-thanks {
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01__title.m-thanks {
		letter-spacing: -0.08em;
	}
}

.p-contactSec01__text {
	font-weight: 600;
	font-size: 3rem;
	line-height: 2.0666666667;
	letter-spacing: -0.01em;
	margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01__text {
		font-size: 1.7rem;
		line-height: 2.2352941176;
	}
}

.p-contactSec01__list {
	margin-top: 4rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.p-contactSec01__list li {
	position: relative;
	padding-left: 1.5em;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.84;
	float: none;
}
@media print, screen and (min-width: 768px) {
	.p-contactSec01__list li {
		font-size: 1.5rem;
		line-height: 2;
	}
}
.p-contactSec01__list li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.p-contactSec01__button {
	text-align: center;
	margin-top: 7rem;
}

/* --------------------------------------------------
p-contactSec02
-------------------------------------------------- */
.p-contactSec02 {
	margin-top: 7.5rem;
	font-family: var(--notoGothic);
}
@media print, screen and (min-width: 768px) {
	.p-contactSec02 {
		margin-top: 14rem;
	}
}

.p-contactForm {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
	gap: 6rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm {
		gap: 4.6rem;
		max-width: 77rem;
		margin-inline: auto;
	}
}
.p-contactForm dt {
	line-height: 1;
	position: relative;
	padding-left: 11rem;
	font-size: 3rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm dt {
		padding: 1.1rem 0 0;
		font-size: 1.8rem;
	}
}
.p-contactForm dt .p-contactForm__icon {
	position: absolute;
	top: -0.1rem;
	left: 0;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm dt .p-contactForm__icon {
		top: 1.1rem;
		left: auto;
		right: 0;
	}
}
.p-contactForm dd {
	margin-top: 4rem;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm dd {
		margin-top: 0;
	}
}
.p-contactForm input {
	background: #f2f4f6;
	border-radius: 5px;
	font-size: 3.2rem;
	padding: 0.8em;
	width: 100%;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm input {
		border-radius: 3px;
		padding: 0.6em;
		font-size: 1.8rem;
	}
}
.p-contactForm textarea {
	background: #f2f4f6;
	border-radius: 5px;
	font-size: 3.2rem;
	line-height: 1.5;
	padding: 0.8em;
	height: 42rem;
	width: 100%;
	resize: vertical;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm textarea {
		border-radius: 3px;
		padding: 0.6em;
		height: 24rem;
		font-size: 1.8rem;
	}
}
.p-contactForm p.error {
	color: #b03121;
	font-size: 2.8rem;
	margin-top: 0.2em;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm p.error {
		font-size: 1.2rem;
	}
}

@media print, screen and (min-width: 768px) {
	.p-contactForm__item {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 31% 3.8% 1fr;
		grid-template-columns: 31% 1fr;
		gap: 0 3.8%;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
	}
}

.p-contactForm__icon {
	width: 8.4rem;
	aspect-ratio: 42/20;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 2.2rem;
	text-align: center;
	border-radius: 3px;
	background: #b03121;
	color: white;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__icon {
		width: 5.3rem;
		aspect-ratio: 53/22;
		font-size: 1.3rem;
	}
}

.p-contactForm__privacy {
	margin-top: 8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem 0;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__privacy {
		margin-top: 9.5rem;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 0 1rem;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
	}
	.p-contactForm__privacy .p-contactForm__icon {
		margin-top: 0.6rem;
	}
}
.p-contactForm__privacy input[type=checkbox] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	overflow: hidden;
	padding: 0;
	clip: rect(0, 0, 0, 0);
}
.p-contactForm__privacy input[type=checkbox]:checked + span::after {
	opacity: 1;
}
.p-contactForm__privacy input[type=checkbox] + span {
	position: relative;
	padding-left: 6rem;
	font-size: 3rem;
	letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__privacy input[type=checkbox] + span {
		padding-left: 4rem;
		font-size: 1.8rem;
		letter-spacing: 0;
	}
}
.p-contactForm__privacy input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.6rem;
	left: 0;
	border: 1px solid #898989;
	background: #fff;
	width: 3.4rem;
	aspect-ratio: 1/1;
	border-radius: 3px;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__privacy input[type=checkbox] + span::before {
		width: 2.2rem;
		height: 2.2rem;
	}
}
.p-contactForm__privacy input[type=checkbox] + span::after {
	content: "";
	position: absolute;
	top: 0.8rem;
	left: 1rem;
	border-bottom: 1px solid #898989;
	border-right: 1px solid #898989;
	width: 1.6rem;
	aspect-ratio: 5/7;
	rotate: 45deg;
	opacity: 0;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__privacy input[type=checkbox] + span::after {
		top: 0.7rem;
		left: 0.7rem;
		width: 0.9rem;
	}
}
.p-contactForm__privacy input[type=checkbox] + span a {
	text-decoration: underline;
	text-underline-offset: 2px;
	color: inherit;
}
.p-contactForm__privacy input[type=checkbox] + span a:active, .p-contactForm__privacy input[type=checkbox] + span a:visited, .p-contactForm__privacy input[type=checkbox] + span a:link, .p-contactForm__privacy input[type=checkbox] + span a:hover {
	color: inherit;
}
.p-contactForm__privacy p.error {
	color: #b03121;
	font-size: 2.8rem;
	margin-top: 0.2em;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__privacy p.error {
		font-size: 1.2rem;
		padding-left: 4rem;
	}
}

.p-contactForm__submit {
	width: 45rem;
	aspect-ratio: 450/96;
	margin: 13rem auto 0;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__submit {
		width: 28.5rem;
		aspect-ratio: 285/56;
		margin: 7.5rem auto 0;
	}
}
.p-contactForm__submit input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 100vmax;
	background: #113a57;
	border: 1px solid #113a57;
	color: white;
	font-weight: 500;
	font-size: 2.8rem;
	letter-spacing: 0.06em;
	font-family: var(--zenKakuGothic);
	letter-spacing: 0.5em;
	padding-left: 0.5em;
	cursor: pointer !important;
}
@media print, screen and (min-width: 768px) {
	.p-contactForm__submit input {
		font-size: 1.7rem;
	}
}
.p-contactForm__submit input[disabled] {
	opacity: 0.6;
	pointer-events: none;
}
.p-contactForm__submit input:link, .p-contactForm__submit input:visited, .p-contactForm__submit inputa:hover, .p-contactForm__submit input:active {
	color: white;
}
@media (any-hover: hover) {
	.p-contactForm__submit input {
		-webkit-transition: color 0.3s, background-color 0.3s;
		transition: color 0.3s, background-color 0.3s;
	}
	.p-contactForm__submit input:hover {
		color: #113a57;
		background: white;
		opacity: 1;
	}
}

.c-buttonBlue01 {
	display: inline-block;
	text-align: center;
	min-width: 45rem;
	padding: 1em 9rem;
	border-radius: 100vmax;
	background: #113a57;
	border: 1px solid #113a57;
	color: white;
	font-weight: 500;
	font-size: 2.6rem;
	line-height: 1.3;
	letter-spacing: 0.06em;
	font-family: var(--zenKakuGothic);
}
@media print, screen and (min-width: 768px) {
	.c-buttonBlue01 {
		min-width: 28.5rem;
		font-size: 1.8rem;
		padding: 0.9em 4.5rem;
	}
}
.c-buttonBlue01:link, .c-buttonBlue01:visited, .c-buttonBlue01:active {
	color: white !important;
}
@media (any-hover: hover) {
	.c-buttonBlue01 {
		-webkit-transition: color 0.3s, background-color 0.3s;
		transition: color 0.3s, background-color 0.3s;
	}
	.c-buttonBlue01:hover {
		color: #113a57 !important;
		background: white;
	}
}
/*# sourceMappingURL=contact.css.map */