@charset "UTF-8";

/*テーブル
---------------------------------------------------------*/
.tbl_form,
.tbl_form input,
.tbl_form select,
.tbl_form option,
.tbl_form textarea{
    font-size: 19px;   /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: .05em;
    line-height: 1.8em;
}
.tbl_form table{
	width: 100%;
	border-top: solid 1px #d4d2d0;
}
.tbl_form th,
.tbl_form td {
	box-sizing: border-box;
	text-align: left;
	font-weight: normal;
	padding: 2em 3%;
	border-bottom: solid 1px #bebebe;
}
.tbl_form th {
	width: 25.7%;
	background: #e6dfce;
}
.tbl_form th.top{
	vertical-align: top;
}
.tbl_form th　p{
	font-size: 105%;
	letter-spacing: 0.1em;
	line-height: 1.4em;
}
.tbl_form th .required{
	color:#b03a39; 
}
.tbl_form td {
	width:74.3%;
	vertical-align: middle;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form,
.tbl_form input,
.tbl_form select,
.tbl_form option,
.tbl_form textarea{
    font-size: 16px;    /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: normal;
}
.tbl_form th,
.tbl_form td {
	padding: 1em 3%;
}
.tbl_form th {
	width: 25%;
}
.tbl_form td {
	width: 75%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form,
.tbl_form input,
.tbl_form select,
.tbl_form option,
.tbl_form textarea{
    font-size: 16px;	/*16px以下にしない：iPhoneで入力時に拡大されるため*/  
	letter-spacing: normal;
    line-height: 1.8em;
}
.tbl_form tr,
.tbl_form th,
.tbl_form td {
	display: block;
	width: 100% !important;
	box-sizing: border-box;
}
.tbl_form th {
	padding: .6em 5%;
	border-bottom: none;
}
.tbl_form td {
	padding: 1.0em 0 5%;;
}
}




/*入力項目デザイン
-----------------------------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.tbl_form input[type="text"],
.tbl_form textarea,
.tbl_form select {
	width: 100%;
	max-width: 100%;
	padding: .55em 1em;
	box-sizing: border-box;
	background: #fff;
	outline: none;
	border: solid 1px #dfdee2;
	-webkit-appearance: none;
}
/*プレースホルダ*/
::placeholder{
	color: rgba(62,58,57,0.6);
}

/****************/
/* ラジオボタン */
/****************/
.tbl_form input[type=radio], .tbl_form input[type=checkbox] {
	display: inline-block;
}
.tbl_form input[type=radio] + label, 
.tbl_form input[type=checkbox] + label {
	position: relative;
	display: inline-block;
}
@media (min-width: 1px) {
.tbl_form input[type=radio], .tbl_form input[type=checkbox] {
	/*display: none;*/
	position: absolute;		/* 上に別の要素が乗るようにする */
	z-index: -1;			/* 最背面にする */
	pointer-events: none;	/* クリック無効 */
	visibility: hidden;		/* 非表示 */
	margin: 0;
}
.tbl_form input[type=radio] + label, 
.tbl_form input[type=checkbox] + label {
	padding: 0 0 0 2.0em;
}
.tbl_form input[type=radio] + label::before, 
.tbl_form input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	left: 0;
	box-sizing: border-box;
	display: block;
	width: 1.2153em;
	height: 1.2153em;
	background: #fff;
	border: solid 1px #dfdee2;
}
.tbl_form input[type=radio] + label::before {
	top: .3em;
	border-radius: 50%;
}
.tbl_form input[type=checkbox] + label::before {
	top: .3em;
}
.tbl_form input[type=radio]:checked + label::after, 
.tbl_form input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	display: block;
}
.tbl_form input[type=radio]:checked + label::after {
	left: .3em;
    top: .6em;
	margin: auto;
	width: .6em;
	height: .6em;
	background: #b03a39;
	border-radius: 50%;
}
.tbl_form input[type=checkbox]:checked + label::after {
	top: 0.1em;
	left: 0.3em;
	width: 1.3em;
	height: 0.8em;
	border-left: 4px solid #b03a39;
	border-bottom: 4px solid #b03a39;
	transform: rotate(-45deg);
}

}

/****************/
/* セレクトボックス */
/****************/
.tbl_form select {
	/* デフォルトのスタイルを解除 */
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/* スタイル */
	display: inline-block;
	cursor: pointer;
	width: 13.6em;	/*サイズは適宜変更*/
	background-color: #f7f6f5;
	background-image: url("../images/reserve/arrow2@2x.png");
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: 14px auto;
}
/* フォーカス時 */
.tbl_form select:focus {
	outline: 0;
}
/* IEでデフォルトの矢印を消す */
.tbl_form select::-ms-expand {
	display: none;
}

/*checkBtn*/
.tbl_form .submit_txt {
	font-size: 90%;
	letter-spacing: 0.1em;
	line-height: 2em;
}
/**********/
/* ボタン */
/**********/
.tbl_form input[type="submit"], 
.tbl_form input[type="button"], 
.tbl_form input[type="reset"] {
	-webkit-appearance: none;
	width: 100%;
	height: 4.2em;
	border: none;
	cursor: pointer;
	font-size: 125%;
	line-height: 1.5em;
	letter-spacing: 0.15em;
	font-family: dnp-shuei-mincho-pr6,sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #fff;
	background-color: #b5a07a;
}
.tbl_form input[type="submit"]:hover, 
.tbl_form input[type="button"]:hover, 
.tbl_form input[type="reset"]:hover {
	opacity: 0.8;
}
.tbl_form input[type="button"], .tbl_form input[type="reset"] {
	background-color: #bebebe!important;
}
/**********/
/* チェックを入れて送信 */
/**********/ 
/* 送信ボタン - 押せないとき */
.tbl_form input[type="submit"][disabled] {
	opacity: 0.3 !important;
	cursor: default;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
/********************/
/* テキストボックス */
/********************/
.tbl_form input[type="text"],
.tbl_form textarea,
.tbl_form select {
	padding: .3em .5em .3em;
}
	
/**********/
/* ボタン */
/**********/
.tbl_form input[type="submit"], 
.tbl_form input[type="button"], 
.tbl_form input[type="reset"] {
	font-size: 115%;
}
}



/*入力項目レイアウト
---------------------------------------------------------*/
.tbl_form .sub_txt_l {
	display: inline-block;
	vertical-align: middle;
	margin-right: .8em;
}
.tbl_form .sub_txt_r {
	display: inline-block;
	vertical-align: middle;
	margin-left: .8em;
}
.tbl_form .sub_txt_b {
	margin-bottom: .25em;
}
.tbl_form .txt_sub {
	font-size: 90%;
	letter-spacing: .05em;
	line-height: 1.6em;
	margin-top: .5em;
}
/*テキストボックス*/
.tbl_form input.max_txt{
	width: 100%;
}
.tbl_form input.age_txt{
	width: 10.4em;
	max-width: calc(100% - 2.3em);
}
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.tbl_form .radio_list {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.tbl_form .radio_list li {
	margin: .4em 0;
	margin-right: 8%;
}
.tbl_form .radio_list li:last-child {
	margin-right: 0;
}
.tbl_form .radio_list .card_no {
	margin-top: 0;	/*診察券No.*/
}
.tbl_form .radio_list .card_no input{
	max-width: 22em;
	width: calc(100% - 4.8em);
}
.tbl_form .imput_name{
	display: flex;
	justify-content: space-between;
}
.tbl_form .imput_name li{
	width: 47%;
}
.tbl_form .imput_name span{
	margin-right: 0.8em;
}
.tbl_form .imput_name input{
	width: calc(100% - 1.9em);
}
.tbl_form .imput_name.huri input{
	max-width: calc(100% - 2.9em);
}
.tbl_form .post_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tbl_form input.post_txt{
	width: 11em;
}
.tbl_form input.addresst_txt{
	width: calc(100% - 14.8em);
}
.tbl_form .email_txt {
	margin-bottom: 1em;
}
.tbl_form .kakunin{
	font-size: 90%;
}
.tbl_form textarea{
	height: 18em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form .sub_txt_l {
	margin-right: .5em;
}
.tbl_form .sub_txt_r {
	margin-left: .5em;
}
.tbl_form .txt_sub {
	letter-spacing: normal;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .sub_txt_l {
	margin-right: .4em;
}
.tbl_form .sub_txt_r {
	margin-left: .4em;
}
.tbl_form .sub_txt_b {
	margin-bottom: .4em;
}
.tbl_form .txt_sub {
	letter-spacing: normal;
}	
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.tbl_form .radio_list li {
	margin-right: 6%;
}
.tbl_form .post_flex{
	display: block;
}
.tbl_form input.addresst_txt{
	width: 100%;
	margin-top: 0.5em;
}
}



/* ボタンレイアウト
--------------------------------------------------------------------*/
.tbl_form .submit_box {
	margin-top: 60px;
	text-align: center;
}
.tbl_form .submit_box ul {
	width: 100%;
	max-width: 770px;
	margin: 50px auto 0;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.tbl_form .submit_box ul li {
	width: 48%;
}
.tbl_form .submit_box .btn_size_change li {
	width: 60%;
}
.tbl_form .submit_box .btn_size_change li:nth-child(2){
    width: 36%;
}
.tbl_form .submit_box ul.btn1 {
    justify-content: center;
}
/* 同意ボタン */
.tbl_form .checkBtn {
	margin-top: 50px;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form .submit_box {
	margin-top: 5%;
}
.tbl_form .submit_box .txt {
	text-align: left;
}
.tbl_form .submit_box ul {
	margin-top: 4%;
}
/* 同意ボタン */
.tbl_form .checkBtn {
	margin-top: 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .submit_box {
	margin-top: 8%;
}
.tbl_form .submit_box .txt {
	text-align: left;
}
.tbl_form .submit_box ul {
	max-width: 100%;
	margin-top: 8%;
	display: block;
}
.tbl_form .submit_box ul li {
	width: 75% !important;
	max-width: 100% !important;
	margin: 1.0em auto 0;
}
.tbl_form .submit_box ul li:first-child {
	margin-top: 0;
}
/* 同意ボタン */
.tbl_form .checkBtn {
	margin-top: 8%;
}
}



/* ドメイン設定
---------------------------------------------------------*/
.tbl_form .mobile_attention {
	width: 100%;
	background: #b5a07a;
	color: #fff;
	margin-top: 2em;
}
.tbl_form .mobile_attention .open_trigger {
	font-size: 105%;
	letter-spacing: 0.1em;
	line-height: 1.4em;
	text-align: center;
	cursor: pointer;
	padding: 30px 0;
	box-sizing: border-box;
}
.tbl_form .mobile_attention .open_trigger .icon_open {
	letter-spacing: normal;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	transform: translateY(-.1em);
	position: relative;
	transition: all .4s;
	margin-left: 0.5em;
	background: #fff;
	border-radius: 1.2em;
}
.tbl_form .mobile_attention .open_trigger .icon_open::before,
.tbl_form .mobile_attention .open_trigger .icon_open::after {
	content: "";
	position: absolute;
	width: 0.6em;
	height: 2px;
	background: #b5a07a;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 1px;
}
.tbl_form .mobile_attention .open_trigger .icon_open::after {
	transform: rotate(90deg);
	transition: transform 0.4s;
}
.tbl_form .mobile_attention .open_trigger.active .icon_open::after {
	transform: rotate(0deg);
}
.tbl_form .mobile_attention .open_box {
	font-size: 80%;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	display: none;
	padding: 0 5% 30px;
}
.tbl_form .mobile_attention ul {
	margin-top: 0.6em;
	font-size: 127%;
	letter-spacing: 0.1em;
	line-height: 1em;
}
.tbl_form .mobile_attention li {
	margin-top: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 20px;
	position: relative;
	line-height: 1.2em;
}
.tbl_form .mobile_attention li::before {
	position: absolute;
	left: 0;
	top: 55%;
    transform: translateY(-50%) rotate(45deg);
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.tbl_form .mobile_attention a{
	color: #fff;
}
.tbl_form .mobile_attention a:hover {
	text-decoration: underline;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.tbl_form .mobile_attention {
	letter-spacing: normal;
}
.tbl_form .mobile_attention .open_trigger {
		padding:3% 0;
}
.tbl_form .mobile_attention .open_box {
	letter-spacing: normal;
	padding:0 5% 3%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .mobile_attention {
	letter-spacing: normal;
}
.tbl_form .mobile_attention .open_trigger {
	padding:5% 0;
}
.tbl_form .mobile_attention .open_box {
	font-size: 90%;
	letter-spacing: normal;
	padding:0 5% 5%;
}
}



/* タイトル
---------------------------------------------------------*/
.tbl_form .form_index{
	font-size: 120%;
	letter-spacing: 0.1em;
	line-height: 1.5em;
	text-align: left;
	padding-left: 1.23em;
	position: relative;
	margin-bottom: 0.8em;
}
.tbl_form .form_index::before{
	position: absolute;
	content: "";
	background: #b5a07a;
	width: 0.73em;
	height: 0.73em;
	border-radius: 0.73em;
	left: 0;
	top:0.4em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_form .form_index{
	letter-spacing: 0.05em;
}
}


/* 個人情報
---------------------------------------------------------*/
.privacy {
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #b5a07a;
	max-width: 1100px;
}
.privacy .open_trigger{
	padding: 25px 4%;
	box-sizing: border-box;
}
.privacy .open_trigger{
	font-weight: normal;
	font-size: 105%;
	color: #b5a07a;
	letter-spacing: 0.1em;
	line-height: 1.5em;
	text-align: center;
	margin-top: 0;
}
.privacy .open_trigger .icon_open {
	letter-spacing: normal;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	transform: translateY(-.1em);
	position: relative;
	transition: all .4s;
	margin-left: 0.5em;
	background: #fff;
	border-radius: 1.2em;
}
.privacy .open_trigger .icon_open::before,
.privacy .open_trigger .icon_open::after {
	content: "";
	position: absolute;
	width: 0.6em;
	height: 2px;
	background: #b5a07a;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 1px;
}
.privacy .open_trigger .icon_open::after {
	transform: rotate(90deg);
	transition: transform 0.4s;
}
.privacy .open_trigger.active .icon_open::after {
	transform: rotate(0deg);
}
.privacy .open_box{
	display: none;	/* 初期表示 */
	padding: 0 4% 25px;
	font-size: 80%;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}
.privacy .open_box dl{
	padding-top: 2em;
}
.privacy .open_box dt{
	font-size: 115%;
	letter-spacing: .1em;
	line-height: 1.5em;
	margin-bottom: .5em;
}
.privacy li {
	text-indent: -1.1em;
	margin-left: 1.1em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.privacy .open_trigger {
	padding: 3% 4%;
}
.privacy .open_box{
	letter-spacing: normal;
	padding: 0 4% 3%;
}
.privacy .open_box dl{
	padding-top: 1.5em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.privacy .open_trigger{
	padding: 5%;
}
.privacy .open_box{
	font-size: 90%;
	letter-spacing: normal;
	padding: 0 5% 5%;
}
.privacy .open_box dl{
	padding-top: 1.5em;
}
.privacy .open_box dt{
	letter-spacing: .05em;
	margin-bottom: .4em;
}
}
	
	
	
