@charset "utf-8";


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

@media screen and (max-width:600px) {
	form#mail_form * {
		font-size: 14px;
	}
}

form#mail_form {
	width: 635px;
	margin: 30px auto;
	padding: 10px 0;
	background: #ffffff;
	/*
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
*/
	font-size: 95%;
	line-height: 1.8;
}

form#mail_form dl {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	font-size: 120%;
}

form#mail_form dl dt {
	width: 100%;
	padding: 10px;
	background-color: #f4edcb;
	box-sizing: border-box;
}

form#mail_form dt.hide,
form#mail_form dd.hide {
	display: none;
}

form#mail_form .request_medicine_ttl,
form#mail_form .item_ttl {
	width: 100%;
	padding: 10px;
	background-color: #f4edcb;
	box-sizing: border-box;
	font-size: 120%;
}

form#mail_form .request_medicine.note {
	padding: 10px;

	font-size: 120%;
}

@media screen and (max-width:600px) {

	form#mail_form .request_medicine_ttl,
	form#mail_form .item_ttl {
		font-size: 14px;
	}

	form#mail_form .request_medicine.note {
		font-size: 14px;
	}
}

form#mail_form dl dd {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

form#mail_form dl dt span {
	display: block;
	font-size: 85%;
	color: #3377ff;
	display: none;
}

form#mail_form dl dt .require,
form#mail_form .request_medicine_ttl .require,
form#mail_form .item_ttl .require {
	display: inline-block;
	padding: 1px 6px;
	margin-left: 6px;
	color: #fff;
	background-color: #e53b3b;
	border-radius: 3px;
	font-size: 12px;
}

form#mail_form dl dt .note {
	display: inline-block;
	margin-left: 6px;
	color: inherit;
}

form#mail_form dl dt .free {
	display: inline-block;
	padding: 1px 6px;
	margin-left: 6px;
	color: #fff;
	background-color: #3886da;
	border-radius: 3px;
	font-size: 12px;
}

form#mail_form dl dd .caution {
	margin-top: 10px;
	color: #e53b3b;
	font-size: 100%;
}

form#mail_form dl dd .note {
	margin-top: 6px;
	font-size: 100%;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

/*
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	float: left;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 3px;
}
*/
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: none;
}


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;
}

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: table;
	color: #881713;
	margin-top: 3px;
	background-color: #ffbebe;
	padding: 0 10px;
}


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);
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */
form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	max-width: 330px;
	width: 100%;
	padding: 9px 4px;
	border: 1px solid #B3B3B3;
	border-radius: 3px;
	background: #fff;
	-webkit-appearance: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
	font-size: 100%;
	font-family: inherit;
	margin-top: 0px;
}

@media screen and (max-width:600px) {

	form#mail_form input[type="text"],
	form#mail_form input[type="email"],
	form#mail_form input[type="tel"] {
		max-width: 100%;
	}
}

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;
	background: #ffffff;
}

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

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

form#mail_form select {
	padding: 9px 4px;
	border: 1px solid #B3B3B3;
	border-radius: 3px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	font-size: 100%;
	font-family: inherit;
}

form#mail_form textarea {
	display: block;
	width: 90%;
	max-width: 90%;
	height: 200px;
	padding: 9px 4px;
	border: 1px solid #B3B3B3;
	border-radius: 3px;
	background: #fff;
	-webkit-appearance: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
	resize: vertical;
	font-size: 100%;
	font-family: inherit;
}


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

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


form#mail_form input#company {
	width: 60%;
}

form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2,
form#mail_form input#postal,
form#mail_form input#phone,
form#mail_form input#schedule {}

form#mail_form input#mail_address {}

form#mail_form input#postal,
form#mail_form input#postal2 {
	width: 180px;
	margin-left: .5em;
}

form#mail_form input#postal+a {
	display: inline-block;
	padding: 5px 15px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 100%;
	color: #ffffff;
	text-decoration: none;
}

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

form#mail_form input#address,
form#mail_form input#address2 {
	display: block;
	width: 100%;
}


form#mail_form p#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0 15px;
	font-size: 120%;
}

@media screen and (max-width: 600px) {
	form#mail_form p#form_submit {
		text-align: center;
	}
}

form#mail_form input[type="button"] {
	display: block;
	width: 200px;
	height: 0;
	padding-top: 36px;
	margin: 0 auto;
	border: none;
	background: url(../img/btn_confirm_re.png)no-repeat center/contain;
	font-size: 100%;
	color: transparent;
	-webkit-appearance: none;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	opacity: .7;
}

/* form#mail_form input#form_submit_button {
	margin-left: 35%;
}
 */







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

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

	form#mail_form {
		width: 95%;
		font-size: 100%;
		text-align: left;
	}

	form#mail_form dl {
		overflow: visible;
	}

	/* form#mail_form dl dt {
		width: auto;
		text-align: left;
		padding: 15px 0 5px;
		font-weight: bold;
	}

	form#mail_form dl dd {
		width: auto;
		border-top: none;
		padding: 0px 0 20px 0px;
	} */

	form#mail_form dl dt span {
		font-weight: normal;
	}


	/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

	form#mail_form dl dt span.required,
	form#mail_form dl dt span.optional {
		margin-right: 1em;
		margin-bottom: 2em;
	}


	/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

	form#mail_form input[type="text"],
	form#mail_form input[type="email"],
	form#mail_form input[type="tel"] {
		margin-top: 0px;
	}

	form#mail_form input#postal+a {
		padding: 6px 15px 5px;
	}

	/* form#mail_form input#form_submit_button {
		margin-left: 0;
	}

	form#mail_form select {
		font-size: 16px;
		margin-top: 0;
	}

	form#mail_form input#phone,
	form#mail_form input#schedule {
		width: 50%;
	} */

}

/* 1000pixel end */

.kind {
	width: 13px;
}

#cvNav #cvPagePath {
	margin-left: 18px;
	font-size: 12px;
	margin-bottom: 30px;
}

.lead_area {
	max-width: 635px;
	margin: 0 auto 30px;
	padding: 0;
}

/* オンライン診療研修修了証と理事長画像 */
.img_area {
	width: 95%;
	max-width: 635px;
	margin: 0 auto 30px;
	padding: 0;
}
.img_area::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	margin: 2em auto 0;
	background: url(../../img/line01.gif) center no-repeat;
	background-size: contain;
}
.img_area .box{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.img_area .box figure{
	width: 25%;
	margin: 0 5% 0;
}
.img_area .box figure img{
	display: block;
	width: 100%;
}
.img_area p{
	font-size: 120%;
}

@media screen and (max-width:600px) {
	.img_area .box figure{
		width: 40%;
	}
}

/* 理事長画像下の注意書き */
.formNote {
	width: 95%;
	max-width: 635px;
	margin: 0 auto 30px;
	padding: 0;
	font-size: 1.5em;
	line-height: 1.5;
}


/*  */
#outline01 {
	max-width: 900px;
	width: 100%;
}

/* -- ラジオボタン
-------------------------------------------------------------------------------- */
form#mail_form dd .row_group,
form#mail_form .row_group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 2em;
}

form#mail_form ul.row_group li input[type="radio"],
form#mail_form ul.row_group li input[type="checkbox"] {
	margin-top: 0;
}

form#mail_form .schedule dd .row_group,
form#mail_form .row_group {
	gap: 5px 1em;
	max-width: 300px;
}

form#mail_form .birthday dd .point {
	padding: 0 1em 0 .5em;
}

form#mail_form .postal_adoress dd:first-of-type {
	padding-bottom: 0;
	margin-bottom: 20px;
}

form#mail_form .postal_adoress dd ul {
	padding-top: .5em;
	padding-left: .5em;
}

form#mail_form dd #address,
form#mail_form dd #address2 {
	margin-top: 10px;
}

/* 希望クリニックラジオ */
form#mail_form .clinic_r_box .row_group {
	padding: 10px;
	font-size: 120%;
max-width: inherit;
}

form#mail_form .clinic_r_box .note {
	padding: 0 10px;
	margin-bottom: 10px;
	font-size: 120%;
}

@media screen and (max-width:600px) {
	form#mail_form .clinic_r_box .note {
		font-size: 14px;
	}
}

/* 希望クリニックセレクト */
form#mail_form .customize_clinic dd {
	padding: 0 10px;
	margin-bottom: 10px;
}

form#mail_form .customize_clinic dd select {
	display: none;
}

/* 処方履歴 */
form#mail_form dl.show .used_note {
	display: none;
}

form#mail_form dl.show a.used_note {
	width: fit-content;
	margin: 10px auto 0;
	color: #000;
	text-align: center;
}

/* 生年月日 */
form#mail_form dl.birthday select#month {
	width: 70px;
}

form#mail_form dl.birthday select#year,
form#mail_form dl.birthday select#day {
	width: 50px;
}

/* 送付先住所 */
form#mail_form dl.postal_adoress .address2_dd {
	margin-top: -20px;
	display: none;
}

form#mail_form dl.show .caution {
	display: none;
}


/* フッター文章 */
form#mail_form #lead {
	padding-top: 30px;
	font-size: 120%;
}

form#mail_form #lead .ttl {
	margin-bottom: 5px;
	color: #3E070D;
	font-family: "游明朝",
		YuMincho,
		"ヒラギノ明朝 ProN W3",
		"Hiragino Mincho ProN",
		"HG明朝E",
		"ＭＳ Ｐ明朝",
		"ＭＳ 明朝",
		serif;
	font-weight: bold;
	font-size: 18px;
}

@media screen and (max-width:px) {
	form#mail_form #lead {
		font-size: 14px;
	}
}


/* ご希望の薬 */
form#mail_form .mb20 {
	margin-bottom: 20px;
}

form#mail_form .symptoms_type_ttl {
	padding-top: 20px;
	padding-left: 10px;
	color: #3E070D;
	font-family: "游明朝",
		YuMincho,
		"ヒラギノ明朝 ProN W3",
		"Hiragino Mincho ProN",
		"HG明朝E",
		"ＭＳ Ｐ明朝",
		"ＭＳ 明朝",
		serif;
	font-weight: bold;
	font-size: 18px;
}

form#mail_form .symptoms_type {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px;
	background-color: #F8F8F8;
}

form#mail_form .symptoms_item {
	width: calc(50% - 5px);
	display: grid;
	grid-template-rows: 1fr auto;
	grid-template-columns: 41% 1fr;
	gap: 5px 10px;
	padding: 7px;
	background-color: #fff;
}

form#mail_form .symptoms_item.full {
	width: 100%;
	grid-template-columns: 20% auto 1fr;
}

form#mail_form .symptoms_item img {
	display: block;
	max-width: 120px;
	width: 100%;
}

form#mail_form .symptoms_item:not(.full) img {
	grid-row: 1/3;
}

form#mail_form .symptoms_item .txt_group_ttl {
	font-weight: bold;
	font-size: 15px;
}

form#mail_form .symptoms_item .for_male {
	display: block;
	width: fit-content;
	padding: 0 .8em;
	color: #fff;
	border-radius: 3px;
	background-color: #2EA7E0;
	font-size: 14px;
	font-weight: normal;
}

form#mail_form .symptoms_item .for_female {
	display: block;
	width: fit-content;
	padding: 0 .8em;
	color: #fff;
	border-radius: 3px;
	background-color: #E61673;
	font-size: 14px;
	font-weight: normal;
}

form#mail_form .symptoms_item .txt_group_note {
	padding-top: 5px;
	font-size: 110%;
	line-height: 1.5;
}

form#mail_form .symptoms_item dl {
	text-align: right;
}

form#mail_form .symptoms_item dl dd {
	padding: 0;
	margin: 0;
}

form#mail_form .symptoms_item dl dd:not(:first-of-type) {
	padding-top: 6px;
}

form#mail_form .symptoms_item dl select {
	width: 80px;
	background-color: #EFEFEF;
	box-shadow: none;
	border: none;
}

@media screen and (max-width:600px) {
	form#mail_form .symptoms_item {
		width: 100%;
		grid-template-columns: auto 1fr;
	}

	form#mail_form .symptoms_item.full {
		grid-template-rows: 1fr auto;
		grid-template-columns: auto 1fr;
	}

	form#mail_form .symptoms_item.full dl {
		grid-column: 1/3;
	}

	form#mail_form .symptoms_item .txt_group_note {
		font-size: 14px;
	}
}

@media screen and (max-width:370px) {
	form#mail_form .symptoms_item {
		grid-template-columns: 36% 1fr;
	}

	form#mail_form .symptoms_item.full {
		grid-template-columns: 36% 1fr;
	}
}

/* ご希望の薬 ここまで */





/* デートピッカー */
@media screen and (max-width:768px) {

	/* table:not(.ui-datepicker-calendar) th,
	table:not(.ui-datepicker-calendar) td {
		display: table-cell;
	} */

	.xdsoft_calendar table th,
	.xdsoft_calendar table td {
		display: table-cell;
	}
}





/* 確認画面 */
@media screen and (max-width:1000px) {
	div#confirm_field>h2 {
		font-size: 16px;
	}

	div#confirm_field dl dt,
	div#confirm_field dl dd {
		font-size: 14px;
	}

	#outline01 div#confirm_field input[type="button"] {
		font-size: 14px;
	}
}


/* 追加 */
form#mail_form input.w180{
	width: 180px;
}


form#mail_form .number_in {
	width: 100%;
	padding: 15px 0 15px 0;
}

form#mail_form .number_in div {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

form#mail_form .number_in div dt {
	text-align: left;
	width: 150px;
	padding: 0;
	background-color: transparent;
}

form#mail_form .number_in div dd {
	width: calc(100% - 170px);
	padding: 0;
	margin-bottom: 0;
}

form#mail_form .number_in div p {
	width: 90px;
}

form#mail_form .number_in div input {
	width: 200px !important;
}

form#mail_form .number_in p.note {
	margin-bottom: 20px;
}
