@charset "utf-8";


/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

form#mail_form * {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
}

form#mail_form {
	width: 816px;
	margin: 0 0 0 145px;
	/* background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
	line-height: 1.8; */
}

form#mail_form dl::after,
form#mail_form dl dt::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

form#mail_form dl dt {
	width: 247px;
	font-size: 19px;
	font-weight: 100;
	float: left;
	padding: 7px 0 7px;
}

form#mail_form dl dd {
	width: calc(100% - 247px);
	margin-bottom: 47px;
	float: right;
}
form#mail_form dl#contents dd {
	margin-bottom: 44px;
}

form#mail_form dl dt i {
	display: none;
	float: left;
	position: relative;
	top: -2px;
}




/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	font-size: 85%;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 3px;
}

form#mail_form dl dt span.required {
	background: #d9534f;
	border: 1px solid #d43f3a;
}

form#mail_form dl dt span.optional {
	background: #337ab7;
	border: 1px solid #2e6da4;
}




/* -- error message -------------------------------------------------------------------------------- */

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 5px;
	font-size: 12px;
	letter-spacing: 0.25em;
}




/* -- loading -------------------------------------------------------------------------------- */

div.loading-layer {
	width: 100vw;
	height: 100vh;
	background: rgba( 0, 0, 0, 0.7 );
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 10000;
}

span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}




/* -- input, select, textarea -------------------------------------------------------------------------------- */

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"],
form#mail_form input[type="date"] {
	width: calc( 100% - 4% - 2px );
	min-height: 1em;
	padding: 7px 2%;
	border-radius: 18px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
	/* box-shadow: 0px 0px 5px #55ccff; */
	/* border: 1px solid #55ccff; */
	/* outline: 2px solid #333; */
	outline: none;
	box-shadow: 0 0 0 1px #333;
	background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form#mail_form select {
	padding: 7px 2%;
	border: 1px solid #cccccc;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}

form#mail_form textarea {
	display: block;
	width: calc( 100% - 4% - 2px );
	height: 313px;
	padding: 7px 2%;
	resize: vertical;
	border-radius: 18px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
}




/* -- ul, li -------------------------------------------------------------------------------- */

form#mail_form ul {
	list-style-type: none;
}

form#mail_form ul li label {
	display: block;
	margin-top: 10px;
	padding: 7px 2%;
	border-radius: 3px;
	background: #f0f0f0;
}

form#mail_form ul li:first-child label {
	margin-top: 0px;
}

form#mail_form ul li label:hover {
	cursor: pointer;
	background: #e0e0e0;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="company"] {
	width: 70%;
}

form#mail_form input[name="name_1"],
form#mail_form input[name="name_2"],
form#mail_form input[name="read_1"],
form#mail_form input[name="read_2"],
form#mail_form input[name="postal"],
form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: calc( 100% - 4% - 2px );
}

form#mail_form input[name="mail_address"],
form#mail_form input[name="mail_address_confirm"] {
	width: calc( 100% - 4% - 2px );
}

form#mail_form input[name="postal"] + a {
	display: inline-block;
	padding: 7px 20px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 16px;
	line-height: normal;
	color: #ffffff;
	text-decoration: none;
}

form#mail_form input[name="postal"] + a:hover {
	cursor: pointer;
	background: #31b0d5;
	border: 1px solid #269abc;
}

form#mail_form input[name="address"] {
	width: calc( 100% - 4% - 2px );
}
form#mail_form input[name="age"] {
	width: 50px;
	margin-right: 10px;
}

/* Added on Oct 19, 2022. */
/* -- #reply_deadline design -------------------------------------------------------------------------------- */
form#mail_form .reply_deadline_radio_wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
/*
form#mail_form .reply_deadline_radio_wrapper > * {
	width: 50%;
}
*/
#reply_deadline .radio {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: .5rem;
}
#reply_deadline input[type="radio"] {
	display: none;
	visibility: hidden;
}
#reply_deadline .radio_button {
	flex-shrink: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 1.8rem;
	height: 1.8rem;
	background: white;
	border-radius: 9999px;
	position: relative;
}
#reply_deadline .radio_button::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	/* darken(#d2e0e0, 34%) */
	/* background: #6b9999; */
	/* background: #d2e0e0; */
	background: #333;
	border-radius: 9999px;
	opacity: 0;
	transition: all .4s ease;
}
#reply_deadline .radio:hover .radio_button::after {
	width: 18%;
	height: 18%;
	opacity: .68;
}
#reply_deadline input[type="radio"]:checked + .radio_button::after {
	/* width: 68%;
	height: 68%; */
	width: calc(24 / 56 * 100%);
	height: calc(24 / 56 * 100%);
	opacity: 1;
}

#reply_deadline .small{
	font-size: 12px;
	display: inline-block;
	margin: -12px 0 0 38px;
}

#reply_deadline .small a{
	text-decoration: underline;
	text-decoration-color:#888;
}

#reply_deadline .small a:hover{
	text-decoration: none;
}

form#mail_form .date_wrap {
	display: block;
	position: relative;
	min-width: 200px;
	/* min-height: 1.3em; */
}

form#mail_form .date_wrap::before {
	content: attr(data-placeholder);
	display: flex;
	align-items: center;
	position: absolute;
	/* left: 0.5em; */
	left: 0;
	top: 0;
	text-indent: .5em;
	/* bottom: 0; */
	/* color: #888; */
	/* color: rgb(95, 95, 95); */
	color: #333;
	background: #fafafa;
	border-radius: 9999px;
	height: 96%;
}



form#mail_form input.reply_deadline_date {
	letter-spacing: 0.25em;
	/* padding: 7px 2%; */
	padding: 7px calc(2% / 197.98 * 566.97);
	text-align: center;
}

.xdsoft_datetimepicker {
	font-family: 'Montserrat','M PLUS 1p', sans-serif;
}

.xdsoft_datetimepicker .xdsoft_mounthpicker {
	display: flex;
}
.xdsoft_datetimepicker .xdsoft_mounthpicker > * {
	float: none;
}

.xdsoft_datetimepicker button.xdsoft_today_button {
	order: 4;
	background: none;
	margin-left: 0;
}

.xdsoft_datetimepicker button.xdsoft_today_button::before {
	content: "";
	width: .8em;
	height: .8em;
	margin-left: .2em;
	border-radius: 9999px;
	/* background-color: rgb(95,95,95); */
	background-color: #333;
	display: block;
}

.xdsoft_datetimepicker button.xdsoft_prev {
	order: 3;
	background: none;
}

.xdsoft_datetimepicker button.xdsoft_next {
	order: 5;
	background: none;
	/* margin-left: 5px; */
	margin-left: 7px;
}

.xdsoft_datetimepicker button.xdsoft_prev::before, 
.xdsoft_datetimepicker button.xdsoft_next::before {
	content: "";
	width: 0;
	height: 0;
	border: .4em solid transparent;
	display: block;
}

.xdsoft_datetimepicker button.xdsoft_prev::before {
	/* border-right-color: rgb(95,95,95); */
	border-right-color: #333;
}

.xdsoft_datetimepicker button.xdsoft_next::before {
	/* border-left-color: rgb(95,95,95); */
	border-left-color: #333;
}

.xdsoft_datetimepicker .xdsoft_label.xdsoft_month {
	order: 2;
	text-align: left;
	font-weight: 200;
}

.xdsoft_datetimepicker .xdsoft_label.xdsoft_month i {
	display: none;
}

.xdsoft_datetimepicker .xdsoft_label.xdsoft_year {
	order: 1;
	width: 90px;
	font-weight: 200;
}
.xdsoft_datetimepicker .xdsoft_label.xdsoft_year i {
	display: none;
}
.xdsoft_label.xdsoft_year > span:after {
	content: "年";
}

.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
	letter-spacing: 0;
	/* color: rgb(95, 95, 95); */
	color: #333;
	background: rgb(255,255,255);
	font-weight: 200;
	border: none;
	text-align: center;
}
.xdsoft_datetimepicker .xdsoft_calendar td > div {
	padding-right: 0;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
	background: rgb(255,255,255);
	/* border-bottom: 1px solid rgb(95, 95, 95); */
	border-bottom: 1px solid #333;
}

.xdsoft_datetimepicker .xdsoft_calendar td {
	font-weight: 400;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
	background: rgb(211, 244, 244);
	box-shadow: none;
	color: rgb(255, 255, 255);
	opacity: 1;
}



.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
	opacity: 1;
	/* color: rgb(170, 170, 170); */
	color: #333;
	background: rgb(255,255,255);
	font-weight: 100;
	-ms-filter: none;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
	font-weight: 100;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
	color: #fff;
	background: rgb(211, 244, 244);
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
	background: rgb(211, 244, 244) !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
	/* color: rgb(95, 95, 95); */
	color: #333;
}


/* Added on Oct 19, 2022. */
/* -- attachment_file design -------------------------------------------------------------------------------- */
form#mail_form input[type="file"][name="attachment_file"] {
	display: none;
}
form#mail_form .attachment_file_name {
	display: block;
	width: calc( 100% - 4% - 2px );
	/* padding: 7px 2%; */
	padding: 5px 2%;
	border-radius: 18px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
	/* letter-spacing: 0.025em; */
	text-align: center;
}


/* 
// Color input fields in case of errors. Added on Oct 19, 2022.
 */
form#mail_form .isError input[type="text"],
form#mail_form .isError input[type="email"],
form#mail_form .isError input[type="tel"],
form#mail_form .isError textarea,
#reply_deadline .isError .radio_button,
form#mail_form .isError input[type="date"],
form#mail_form .isErrorDate input[type="date"] ,
form#mail_form .isErrorMail input[type="email"],
form#mail_form .isError .date_wrap::before,
form#mail_form .isErrorDate .date_wrap::before {
	 /* background: #f9b9b9; */
	 /* #d2e0e0 <-> lighten(#f9b9b9, 5%) */
	 /* background: #fbd0d0; */
 }


/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	width: calc(100% - 247px);
	margin-left: 247px;
	display: flex;
	justify-content: center;
}

form#mail_form input[type="button"] {
	/* width: 100%; */
	width: 300px;
	padding: 8px 0;
	/* padding: 1.5rem 0; */
	/* border-radius: 18px; */
	border-radius: 9999px;
	background: #ffffff;
	font-size: 19px;
	/* color: #646464; */
	/* color: rgb(95, 95, 95); */
	color: #333;
	font-family: inherit;
	-webkit-appearance: none;
	text-align: center;
	background-image: url(/assets/images/arrow-send.svg);
	background-repeat: no-repeat;
	background-size: 10px 14px;
	background-position: center right 28px;
	letter-spacing: 0.2em;
	/* darken(#d2e0e0, 18%) */
	box-shadow: 0px 5px 5px -3px rgb(156 187 187 / 20%), 0px 8px 10px 1px rgb(156 187 187 / 14%), 0px 3px 14px 2px rgb(156 187 187 / 12%);;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	/* background: #449d44; */
}

form#mail_form input[type="button"] {
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1024px ) {


/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

form#mail_form {
	width: 73.333%;
	font-size: 100%;
	margin: 0 auto;
}

form#mail_form dl dt {
	width: auto;
	float: none;
	font-size: 15px;
	padding: 0 0 21px;
	text-align: left;
	letter-spacing: 0.2em;
	font-weight: 100;
	color: #555555;
}

form#mail_form dl dd {
	width: auto;
	float: none;
	padding: 0;
	margin-bottom: 25px;
}

form#mail_form dl dt i {
	float: none;
	position: static;
	font-weight: normal;
}

form#mail_form textarea {
	height: 191px;
	border-radius: 10px;
}
form#mail_form dl#contents dd {
	margin-bottom: 37px;
}

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"],
form#mail_form input[type="date"] {
	padding: 2px 2%;
	border-radius: 18px;
}


/* -- span.required, span.optional -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	margin: 0 15px 0 0;
}




/* -- input design -------------------------------------------------------------------------------- */

form#mail_form input[name="phone"],
form#mail_form input[name="schedule"] {
	width: calc( 100% - 4% - 2px );
}

/* Added on Oct 19, 2022. */
/* -- #reply_deadline design -------------------------------------------------------------------------------- */
form#mail_form .reply_deadline_radio_wrapper {
	flex-direction: column;
	align-items: flex-start;
	gap: .8rem;
}
form#mail_form .reply_deadline_radio_wrapper > * {
	width: 100%;
	/* width: min(100%, 180px); */
}
#reply_deadline .radio_button {
	width: 1.2rem;
	height: 1.2rem;
}
#reply_deadline .radio:hover .radio_button::after {
	width: 0;
	height: 0;
	opacity: 0;
}

#reply_deadline .small{
	font-size: 10px;
	display: inline-block;
	margin: -4px 0 0 28px;
	line-height: 1.8;
}

#reply_deadline .small a{
	display: block;
}

form#mail_form .date_wrap::before {
	font-size: 1rem;
	/* line-height: 1rem; */
	max-height: 100%;
}


/* -- button -------------------------------------------------------------------------------- */

form#mail_form p#form_submit {
	margin: 0;
	width: 100%;
	padding: 25px 0;
}

form#mail_form input[type="button"] {
	margin-left: 0;
	/* font-size: 12px; */
	padding: 5.5px 0;
	/* padding: 1.2rem 0; */
	background-size: 9px 7px;
	color: #555555;
	background-image: url(/assets/images/arrow-send-sp.svg);
	width: min(88%, 300px);
}


}
/* 1000pixel end */


/* 2022.10.15 追加 */
form#mail_form dl dd span.annotation {
	display: block;
	/* color: #ff0000; */
	/* lighten(#555, 18%) */
	/* color: #838383; */
	/* color: rgb(95, 95, 95); */
	color: #333;
	/* margin-top: 5px; */
	margin-top: .5rem;
	font-size: 12px;
	letter-spacing: 0.25em;
	text-indent: -1.25em;
	padding-left: 1.25em;
}

form#mail_form dl dt span.required_mark {
	/* color: #fff; */
	color: inherit;
}