@charset "utf-8";
/* ===================================================
Modify K.Yagi
2023/5/22 415px -> 429px へ変更
2023/11/10 .ca-colm-upper display:none;
2023/11/10 .choice-btn 追加
2023/11/13 .notice-txt-bk Add
2023/11/17 .btn-submit noneselect Add
*  =================================================== */

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: #f3f1f1;
	font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック  Medium', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
	height: 100%;
	animation: fadeIn 1s ease 0s 1 normal;
	-webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* ===================================================
wrap
*  =================================================== */

.wrap {
	margin: 0 auto;
	padding-top: 64px;
	position: relative;
}

.wrap img {
	height: auto;
	vertical-align: top;
	width: 100%;
}

/* ===================================================
gnav
*  =================================================== */

.gnav {
	background-color: #a6c1ee;
	box-sizing: border-box;
	height: 24px;
	margin: 0 auto;
	position: fixed;
		top: 0;
		left: 0;
	width: 100%;
	z-index: 2000;
}

.gnav-list {
	padding-left: 8px;
}

.gnav-list li {
 display: inline-block;
	color: #fff;
	font-size: 1.0rem;
	font-weight: bold;
	padding-right: 4px;
	padding-top: 8px;
}

.gnav-list li :last-child {
	padding-right: 0;
}

@media screen and (min-width: 361px) {
	.gnav-list li {
		font-size: 1.2rem;
		padding-top: 7px;
	}
}


/* ===================================================
pagettl
*  =================================================== */

.pagettl {
	background-color: #fff;
	border-bottom: 1px solid #dedede;
	box-sizing: border-box;
	height: 40px;
	margin: 0 auto;
	position: fixed;
		top: 24px;
		left: 0;
	width: 100%;
	z-index: 2000;
}

.pagettl-blk {
	font-size: 1.4rem;
	padding-left: 8px;
	padding-top: 14px;
}

@media screen and (min-width: 361px) {
	.pagettl-blk {
		font-size: 1.6rem;
		padding-top: 12px;
	}
}

/* ===================================================
colm-upper
*  =================================================== */

.colm-upper {
	margin: 16px auto 16px;
}

@media screen and (min-width: 361px) {
	.colm-upper {
		margin: 24px auto 0px;
	}
}

/* ===================================================
ca-colm-upper
*  =================================================== */

.ca-colm-upper {
	display:none;
	margin: 16px auto 0;
}

@media screen and (min-width: 361px) {
	.ca-colm-upper {
		margin: 24px auto 0;
	}
}

/* ===================================================
stepbar
*  =================================================== */

.stepbar {
	text-align: center;
}

.stepbar li {
	color: #000;
	counter-increment: steps;
	display: inline-block;
	position: relative;
	text-align: center;
	width: 40px;
}

.stepbar li::after {
	background-color: #b5b5b6;
	content: '';
	height: 2px;
	position: absolute;
		top: 9px;
		left: 50%;
		right: auto;
	width: 100%;
}

.stepbar li > * {
	display: inline-block;
	font-size: 1.0rem;
	padding-top: 28px;
}

.stepbar li > *::before {
	border-radius: 50%;
	background-color: #b5b5b6;
	content: '';
	color: #fff;
	content: counter(steps);
	font-size: 1.2rem;
	height: 20px;
	line-height: 20px;
	position: absolute;
		top: 0;
		left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 20px;
	z-index: 1;
}

.stepbar li:last-of-type::after {
	display: none;
}

.stepbar li.visited > *::before ,
.stepbar li.current > *::before {
	background-color: #a6c1ee;
}

.stepbar li.visited::after {
	background-color: #a6c1ee;
}

@media screen and (min-width: 429px) {
	.stepbar li {
		width: 64px;
	}
	.stepbar li::after {
		height: 4px;
		position: absolute;
			top: 11px;
	}
	.stepbar li > * {
		font-size: 1.2rem;
		padding-top: 32px;
	}
	.stepbar li > *::before {
		font-size: 1.6rem;
		height: 24px;
		line-height: 24px;
		width: 24px;
	}
}

/* ===================================================
stepbar-finish
*  =================================================== */

.stepbar-finish {
	text-align: center;
}

.stepbar-finish li {
	color: #000;
	counter-increment: steps;
	display: inline-block;
	position: relative;
	text-align: center;
	width: 40px;
}

.stepbar-finish li > * {
	display: inline-block;
	font-size: 1.0rem;
	padding-top: 28px;
}

.stepbar-finish li > *::before {
	border-radius: 50%;
	background-color: #a6c1ee;
	content: '';
	color: #fff;
	content: counter(steps);
	font-size: 1.2rem;
	height: 20px;
	line-height: 20px;
	position: absolute;
		top: 0;
		left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 20px;
	z-index: 1;
}

.stepbar-finish li::after {
	background-color: #a6c1ee;
	content: '';
	height: 2px;
	position: absolute;
		top: 9px;
		left: 50%;
		right: auto;
	width: 100%;
}

.stepbar-finish li:last-of-type::after {
	display: none;
}

@media screen and (min-width: 429px) {
	.stepbar-finish li {
		width: 64px;
	}
	.stepbar-finish li > * {
		font-size: 1.2rem;
		padding-top: 32px;
	}
	.stepbar-finish li > *::before {
		font-size: 1.6rem;
		height: 24px;
		line-height: 24px;
		width: 24px;
	}
	.stepbar-finish li::after {
		height: 4px;
		position: absolute;
			top: 11px;
	}
}

/* ===================================================
colm-lower
*  =================================================== */

.colm-lower {
	margin: 16px auto;
}

.notice-txt-large {
	color: #7ba3e6;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.notice-txt-large {
	color: #7ba3e6;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.mailto-link {
	color: #7ba3e6;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}

.dial-number-link {
	color: #7ba3e6;
	font-size: 3.0rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}



@media screen and (min-width: 429px) {
	.colm-lower {
		margin: 16px auto;
	}
}

.entry_contents {
     width: 100%;
/*     max-width: 800px; */
     margin: auto;
}

.entry_area {
   display: flex;
}


.entry_nameblank {
   width: 6%;
   margin: auto;
   text-align: center;
}

.entry_name {
   width: 47%;
   margin: auto;
   text-align: center;
}

.entry_name_left {
   width: 47%;
   margin: auto;
   text-align: left;
}

.form-name {
   width: 100%;
   margin: 0 auto;
}


.choice_contents {
     width: 100%;
     max-width: 2400px;
     margin: auto;
}

.choice_gender {
   display: flex;
}

.choice_gender_select {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice-gender-list {
	justify-content: center;
}

.choice-gender-list {
    text-align: center;
}

.choice-gender-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice-gender-list li:last-child {
	margin-bottom: 0;
}


.choice_commodity {
   display: flex;
}

.choice_commodity_select {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice_commodity-list {
	justify-content: center;
}

.choice_commodity-list {
    text-align: center;
}

.choice_commodity-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice_commodity-list li:last-child {
	margin-bottom: 0;
}


.choice_examination_select {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice-examination-list {
	justify-content: center;
}

.choice-examination-list {
    text-align: center;
}

.choice-examination-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice-examination-list li:last-child {
	margin-bottom: 0;
}


.choice_pharmaceutical {
   display: flex;
}

.choice_pharmaceutical_select {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice_pharmaceutical-list {
	justify-content: center;
}

.choice_pharmaceutical-list {
    text-align: center;
}

.choice_pharmaceutical-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice_pharmaceutical-list li:last-child {
	margin-bottom: 0;
}

.choice_areasBody {
   display: flex;
}

.choice_areasBody_select {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice_areasBody-list {
	justify-content: center;
}

.choice_areasBody-list {
    text-align: center;
}

.choice_areasBody-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice_areasBody-list li:last-child {
	margin-bottom: 0;
}


.choice_area {
   display: flex;
}

.choice_area_store {
   width: 100%;
   margin: auto;
   text-align: center;
}

ul.choice-area-list {
/*	display: flex;	*/
	justify-content: center;
}

.choice-area-list {
/*	font-size: 0;	*/
    text-align: center;
}


.choice_store {
   width: 50%;
   margin: auto;
   text-align: center;
}

.choice_timearea {
   display: flex;
}

.choice_title {
   width: 100%;
   margin: auto;
   text-align: left;
}

.choice_daytime {
   width: 50%;
   margin: auto;
   text-align: center;
}

ul.choice-time-list {
/*	display: flex;	*/
	justify-content: center;
}

.choice-time-list {
/*	font-size: 0;	*/
	text-align: center;
}

@media screen and (max-width: 429px) {
     .entry_area {
         display: block;
     }

     .entry_area .entry_name {
         width: 100%;
         margin: 0 auto;
     }

     .entry_area .entry_name_left {
         width: 100%;
         margin: 0 auto;
     }

     .entry_nameblank {
	display: none;
     }
}

@media screen and (max-width: 767px) {
     .choice_area {
         display: block;
     }

     .choice_area .choice_store {
         width: 100%;
         margin: 0 auto;
     }

     .choice_timearea {
         display: block;
     }
     .choice_daytime {
         width: 100%;
         margin: 0 auto;
     }
}

.choice-area-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice-area-list li .time-number {
	display: none;
}

.choice-area-list li:last-child {
	margin-bottom: 0;
}

.choice-area-list li .time-number + label {
	visibility: visible;
	background: #fff;
	border: 1px solid #999999;
	border-radius: 4px;
	box-sizing: border-box;
	color: #999999;
	cursor: pointer;
	display: block;
	height: 60px;
	width: 160px;
	padding-top: 11px;
	margin: 4px;
}

.choice-area-list li .time-number:checked + label {
	visibility: visible;
	background: #a6c1ee;
	border: 2px solid #a6c1ee;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 60px;
	width: 160px;
	padding-top: 11px;
	margin: 4px;
}

.choice-area-list li .time-number + label.close {
	background: #dddddd;
	pointer-events: none;
	color: #fff;
}

.choice-area-list li .time-number + label:before {
	display: none;
}

.choice-area-list li .time-number + label.close:before  {
	display: none;
}


.choice-area-list li .time-number:checked + label:before {
	display: none;
}

.choice-area-list li .time-number + label:after {
	display: none;
}

.choice-area-list li .time-number:checked + label:after {
	display: none;
}


.choice-area-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 60px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice-area-list li .time-number {
	display: none;
}

.choice-area-list li:last-child {
	margin-bottom: 0;
}

.choice-area-list li .time-number + label {
	visibility: visible;
	background: #fff;
	border: 1px solid #999999;
	border-radius: 4px;
	box-sizing: border-box;
	color: #999999;
	cursor: pointer;
	display: block;
	height: 40px;
	width: 80px;
	padding-top: 11px;
	margin: 4px;
}

.choice-area-list li .time-number:checked + label {
	visibility: visible;
	background: #a6c1ee;
	border: 2px solid #a6c1ee;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 40px;
	width: 80px;
	padding-top: 11px;
	margin: 4px;
}

.choice-area-list li .time-number + label.close {
	background: #dddddd;
	pointer-events: none;
	color: #fff;
}

.choice-area-list li .time-number + label:before {
	display: none;
}

.choice-area-list li .time-number + label.close:before  {
	display: none;
}


.choice-area-list li .time-number:checked + label:before {
	display: none;
}

.choice-area-list li .time-number + label:after {
	display: none;
}

.choice-area-list li .time-number:checked + label:after {
	display: none;
}


.choice-time-list li {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	height: 40px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.choice-time-list li .time-number {
	display: none;
}

.choice-time-list li:last-child {
	margin-bottom: 0;
}

.choice-time-list li .time-number + label {
/*	visibility: visible; */
	background: #fff;
/*	border: 1px solid #999999; */
	border: 1px solid #a6c1ee;
	border-radius: 4px;
	box-sizing: border-box;
	color: #7ba3e6;
	cursor: pointer;
	display: block;
	height: 40px;
	width: 80px;
	padding-top: 11px;
	margin: 4px;
}

.choice-time-list li .time-number:checked + label {
/*	visibility: visible; */
	background: #a6c1ee;
	border: 1px solid #a6c1ee;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 40px;
	width: 80px;
	padding-top: 11px;
	margin: 4px;
}

.choice-time-list li .time-number + label.close {
	background: #dddddd;
	pointer-events: none;
	color: #fff;
	border: 1px solid #999;
}

.choice-time-list li .time-number + label.close:before,
.choice-time-list li .time-number + label.close:after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 70%;
  height: 0px;
  display: block;
  border-top: 3px solid #fff;
}
 
.choice-time-list li .time-number + label.close:before {
  content: "";
  transform: translate(-50%, -50%) rotate(30deg);
}
 
.choice-time-list li .time-number + label.close:after {
  content: "";
  transform: translate(-50%, -50%) rotate(-30deg);
}

/* .choice-time-list li .time-number + label:before {
	display: none;
} */

/* .choice-time-list li .time-number + label.close:before  {
	display: none;
} */


.choice-time-list li .time-number:checked + label:before {
	display: none;
}

.choice-time-list li .time-number + label:after {
	display: none;
}

.choice-time-list li .time-number:checked + label:after {
	display: none;
}

 
/* ===================================================
pnl
*  =================================================== */

.pnl_forS {
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 8px;
	box-shadow: 0 0 8px #cecece;
	box-sizing: border-box;
	height: auto;
	min-height: 140px;
	min-width: 140px;
	margin-top: 16px;
	margin-left: 16px;
	margin-right: 12px;
	overflow: hidden;
	position: relative;
}

.pnl_forS-blk {
	padding: 20px 4px 20px;
}


.pnl {
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 8px;
	box-shadow: 0 0 8px #cecece;
	box-sizing: border-box;
	height: auto;
	min-height: 240px;
	margin-left: 16px;
	margin-right: 12px;
	overflow: hidden;
	position: relative;
}

.pnl-hdr {
	background-color: #a6c1ee;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 12px 16px 8px;
}

.pnl-blk {
	padding: 0 16px 102px;
}

.guide-txt {
	font-size: 1.4rem;
	line-height: 2.0rem;
	margin-top: 24px;
}

.warning-txt {
	font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #ff0000;
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 2.0rem;
	margin-bottom: 24px;
}

.warning-cyan-txt {
	font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #22b1b1;
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 2.0rem;
	margin-bottom: 24px;
}

.notice-txt {
	color: #7ba3e6;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.notice-txt-bk {
	color: #444;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.notice-txt-booking {
	color: #7ba3e6;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.notice-txt-head {
	color: #7ba3e6;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 24px;
}

.notice-txt-body {
	color: #7ba3e6;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8rem;
	margin-top: 12px;
}

@media screen and (min-width: 361px) {
	.pnl-hdr {
		font-size: 1.8rem;
		padding: 16px 16px 10px;
	}
	.notice-txt {
		font-size: 1.4rem;
		line-height: 2.0rem;
		margin-top: 32px;
	}
}

@media screen and (min-width: 413px) {
	.pnl-blk {
		padding: 0 24px 102px;
	}
}

/*@media screen and (min-width: 429px) {*/
/*	.pnl-blk.confirm {*/
/*		padding: 16px 80px 102px;*/
/*	}*/
/*}*/

.privacy-consent-txt {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
    margin-top: 16px;
}

.grecaptcha-badge { visibility: hidden; }

/* ===================================================
pnl >>> finish
*  =================================================== */

.pnl-hdr-finish {
	background-color: #a6c1ee;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2.2rem;
	padding: 24px 0 16px;
	text-align: center;
}

.pnl-blk-finish {
	padding: 24px;
}

.pnl-blk-finish-guidance {
	padding: 0 12px 0 12px;
}

.pnl-blk-finish .txt {
	font-size: 1.4rem;
	line-height: 2.2rem;
	margin-bottom: 16px;
}

@media screen and (min-width: 361px) {
	.pnl-hdr-finish {
		font-size: 2.0rem;
		line-height: 2.6rem;
		padding: 24px 0 16px;
	}
	.pnl-blk-finish {
		padding: 32px;
	}
	.pnl-blk-finish .txt {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
}

/*@media screen and (min-width: 429px) {*/
/*	.pnl-blk-finish {*/
/*		padding: 48px 80px;*/
/*	}*/
/*}*/

/* --------------------
pnl-blk-finish >>> dl
----------------------- */

.pnl-blk-finish dl {
	margin-bottom: 24px;
}

.pnl-blk-finish dl dt {
	font-size: 1.4rem;
	line-height: 2.0rem;
	margin-bottom: 4px;
}

.pnl-blk-finish dl dt::before {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 10px solid #a6c1ee;
	display: inline-block;
	margin-right: 4px;
}

.pnl-blk-finish dl dd {
	font-size: 2.4rem;
	margin-bottom: 16px;
}

.pnl-blk-finish dl dd a {
	color: #7ba3e6;
}

.pnl-blk-finish dl dd a::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 20px;
	background-image: url(/icon/icon-app.svg);
	background-size: contain;
}

@media screen and (min-width: 361px) {
	.pnl-blk-finish dl dd {
		font-size: 2.8rem;
	}
}

/* --------------------
finish-btn-blk
----------------------- */

.pnl-blk-finish .finish-btn-blk {
	margin-bottom: 24px;
}

.pnl-blk-finish .finish-btn-blk .btn-patientsite a {
	background: #a6c1ee;
	border-radius: 24px;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6rem;
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
	width: 100%;
}

/* --------------------
pnl-blk-finish >>> doisho
----------------------- */

.pnl-blk-finish .doisho {
	background: #fcf8f0;
	margin-top: 16px;
	padding: 16px;
}

.pnl-blk-finish .doisho .doisho-ttl {
	color: #7ba3e6;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2.4rem;
	margin-bottom: 16px;
	text-align: center;
}

.pnl-blk-finish .doisho .doisho-ttl-pair {
	color: #7ba3e6;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 2.4rem;
	margin-top: 60px;
	margin-bottom: 16px;
	text-align: center;
}

.pnl-blk-finish .doisho .doisho-txt {
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 24px;
}

.pnl-blk-finish .doisho .doisho-btn-blk {
	margin: 0 auto 16px;
	text-align: center;
}

.pnl-blk-finish .doisho .doisho-btn-blk .btn-doisho {
	background: #fff;
	border: 1px solid #77d1c3;
	border-radius: 8px;
	color: #22b1b1;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding: 10px 32px;
	text-align: center;
}

@media screen and (min-width: 361px) {
	.pnl-blk-finish .doisho .doisho-ttl {
		font-size: 2.0rem;
		line-height: 2.4rem;
	}
	.pnl-blk-finish .doisho .doisho-btn-blk .btn-doisho {
		padding: 12px 32px;
	}
}

@media screen and (min-width: 429px) {
	.pnl-blk-finish .doisho {
		padding: 32px;
	}
}

/* --------------------
pnl-blk-finish-guidance >>> doisho-guidance
----------------------- */

.pnl-blk-finish-guidance .doisho-guidance {
	background: #fcf8f0;
	margin-top: 16px;
	padding: 16px;
}

.pnl-blk-finish-guidance .doisho-guidance .doisho-guidance-ttl {
	color: #7ba3e6;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2.4rem;
	margin-bottom: 16px;
	text-align: center;
}

.pnl-blk-finish-guidance .doisho-guidance .doisho-guidance-txt {
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 24px;
}

.pnl-blk-finish-guidance .doisho-guidance .doisho-guidance-btn-blk {
	margin: 0 auto 16px;
	text-align: center;
}

.pnl-blk-finish-guidance .doisho-guidance .doisho-guidance-btn-blk .btn-doisho-guidance {
	background: #fff;
	border: 1px solid #77d1c3;
	border-radius: 8px;
	color: #22b1b1;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding: 10px 32px;
	text-align: center;
}

@media screen and (min-width: 361px) {
	.pnl-blk-finish-guidance .doisho-guidance .doisho-guidance-btn-blk .btn-doisho-guidance {
		padding: 12px 32px;
	}
}

@media screen and (min-width: 429px) {
	.pnl-blk-finish-guidance .doisho-guidance {
		padding: 32px;
	}
}

/* --------------------
pnl-blk-finish >>> footer
----------------------- */

.pnl-blk-finish .footer {
	margin: 40px auto 0;
	width: 100%;
}

.pnl-blk-finish .footer .footer-ttl {
	color: #7ba3e6;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}

.pnl-blk-finish .footer .footer-btn-blk {
	margin: 16px auto 40px;
	text-align: center;
}

.pnl-blk-finish .footer .footer-btn-blk .btn-footer {
	background: #a6c1ee;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding-bottom: 16px;
	padding-top: 16px;
	text-align: center;
	width: 100%;
}

@media screen and (min-width: 361px) {
	.pnl-blk-finish .footer .footer-ttl {
		font-size: 1.6rem;
	}
}

/* ===================================================
form
*  =================================================== */

.form {
	padding-top: 24px;
}

@media screen and (min-width: 361px) {
	.form {
		padding-top: 32px;
	}
}

/* --------------------
transfer-ttl
----------------------- */

.form .transfer-ttl {
	font-size: 1.2rem;
	line-height: 1.2rem;
}

.form .transfer-ttl:before {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 10px solid #a6c1ee;
	display: inline-block;
	margin-right: 4px;
}

/* --------------------
radio
----------------------- */

.form .radio label {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 40px;
	margin-bottom: 24px;
	padding-left: 48px;
	position: relative;
}

.form .radio label:before {
	background-color: #eee;
	border-radius: 50%;
	content: '';
	height: 40px;
	position: absolute;
		top: 0;
		left: 0;
	width: 40px;
}

.form .radio input[type="radio"] {
	display: none;
}

.form .radio input[type="radio"]:checked + label:after {
	background-color: #eb6ea5;
	border-radius: 50%;
	content: '';
	height: 16px;
	position: absolute;
		top: 12px;
		left: 12px;
	width: 16px;
}

/* --------------------
birthday
----------------------- */

.form .birthday {
	position: relative;
	width: 100%;
}
.form .datepicker {
	width: 100%;
}

.form .birthday:before {
	content: url(/icon/icon-birthday.svg);
	display: inline-block;
	height: 28px;
	padding: 0;
	position: absolute;
		top: 9px;
		right: 8px;
	width: 28px;
	vertical-align: middle;
}

/* --------------------
text
----------------------- */

.form input[type=text],
.form input[type=email],
.form input[type=url],
.form input[type=tel]{
	background-color: #efefef;
	border: 1px solid #c9caca;
	border-radius: 8px;
	box-sizing: border-box;
	display: block;
	font-size: 1.6rem;
	height: 44px;
	letter-spacing: 0;
	line-height: 1.6rem;
	margin-top: 4px;
	margin-bottom: 24px;
	padding: 8px;
	width: 100%;
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=url]:focus,
.form input[type=tel]:focus{
	border: 1px solid #febbbb;
}

.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=url]::placeholder,
.form input[type=tel]::placeholder {
	color: #aaa;
	font-size: 1.6rem;
	line-height: 1.6rem;
}

.form input[type=text]::-webkit-input-placeholder,
.form input[type=email]::-webkit-input-placeholder,
.form input[type=url]::-webkit-input-placeholder,
.form input[type=tel]::-webkit-input-placeholder {
	padding-top: 2px;
}


.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=url]:focus,
.form input[type=tel]:focus{
	border: 1px solid #febbbb;
}

.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=url]::placeholder,
.form input[type=tel]::placeholder {
	color: #aaa;
	font-size: 1.6rem;
	line-height: 1.6rem;
}

.form input[type=text]::-webkit-input-placeholder,
.form input[type=email]::-webkit-input-placeholder,
.form input[type=url]::-webkit-input-placeholder,
.form input[type=tel]::-webkit-input-placeholder {
	padding-top: 2px;
}

/* --------------------
select
----------------------- */

.form .selectbtn {
	display: inline-block;
	position: relative;
	width: 120px;
}

.form .selectbtn:before {
	border-top: 4px solid #aaa;
	border-right: 4px solid #aaa;
	content: '';
	height: 8px;
	padding: 0;
	pointer-events: none;
	position: absolute;
		top: 18px;
		right: 8px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	width: 8px;
	z-index: 1;
}

.form .selectbtn select {
	background-color: #efefef;
	border: 1px solid #c9caca;
	border-radius: 8px;
	box-sizing: border-box;
	display: block;
	font-size: 1.6rem;
	height: 44px;
	letter-spacing: 0;
	line-height: 1.6rem;
	margin-top: 4px;
	margin-bottom: 12px;
	padding: 8px;
	width: 100%;
}

.form .selectbtn select::-ms-expand {
	display: none;
}

.form .selectbtn select:-moz-focusring {
	color: transparent;
}

/* ===================================================
counseling-reserve
*  =================================================== */

.counseling-reserve-conts {
	margin-bottom: 16px;
}

.counseling-reserve-contsL {
	width: 100%;
}

.counseling-reserve-contsR {
	width: 100%;
}

.reserve-time {
	background: linear-gradient(to top, #b2b2b2, #b2b2b2) repeat-y center/1px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.counseling-reserve-conts-ttl {
	font-size: 2.0rem;
	font-weight: bold;
	padding-bottom: 16px;
	padding-top: 24px;
}

.counseling-reserve-conts-ttl .font {
	color: #7ba3e6;
}

@media screen and (min-width: 361px) {
	.counseling-reserve-conts-ttl {
		padding-bottom: 24px;
		padding-top: 32px;
	}
	.counseling-reserve-conts-ttl {
		font-size: 2.2rem;
	}
}

@media screen and (min-width: 429px) {
	.counseling-reserve-conts {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.counseling-reserve-contsL {
		margin-right: 32px;
		width: 340px;
	}
	.counseling-reserve-contsR {
		width: 300px;
	}
	.reserve-time {
/*		margin-top: 78px;	*/
		margin-top: 24px;
	}
}

/* --------------------
calendar-hdr
----------------------- */

.calendar-hdr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.calendar-hdr .prevarrow {
	background: #a6c1ee;
	border-bottom: solid 2px #a2a2a2;
	border-radius: 4px;
	display: inline-block;
	height: 32px;
	margin-left: 2px;
	position: relative;
	text-decoration: none;
	vertical-align: middle;
	width: 32px;
}

.calendar-hdr .prevarrow:active {
	background: #ebebeb;
	border-bottom: none;
}

.calendar-hdr .prevarrow::before {
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	content: '';
	height: 10px;
	padding: 0;
	position: absolute;
		top: 9px;
		left: 11px;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	width: 10px;
	z-index: 1;
}

.calendar-hdr .yearmonth {
	font-size: 2.4rem;
	font-weight: bold;
 padding-top: 7px;
	text-align: center;
}

.calendar-hdr .nextarrow {
	background: #a6c1ee;
	border-bottom: solid 2px #a2a2a2;
	border-radius: 4px;
	display: inline-block;
	height: 32px;
	margin-right: 2px;
	position: relative;
	text-decoration: none;
	vertical-align: middle;
	width: 32px;
}

.calendar-hdr .nextarrow:active {
	background: #ebebeb;
	border-bottom: none;
}

.calendar-hdr .nextarrow::before {
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	content: '';
	height: 10px;
	padding: 0;
	position: absolute;
		top: 9px;
		right: 11px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 10px;
	z-index: 1;
}

@media screen and (min-width: 361px) {
	.calendar-hdr .prevarrow {
		height: 40px;
		margin-left: 4px;
		width: 40px;
	}
	.calendar-hdr .prevarrow::before {
		position: absolute;
			top: 13px;
			left: 16px;
	}
	.calendar-hdr .yearmonth {
		font-size: 2.8rem;
	}
	.calendar-hdr .nextarrow {
		height: 40px;
		margin-right: 4px;
		width: 40px;
	}
	.calendar-hdr .nextarrow::before {
		position: absolute;
			top: 13px;
			right: 16px;
	}
}

/* --------------------
calendar-tbl
----------------------- */

.calendar-tbl {
	border-collapse: separate;
	border-spacing: 2px 0;
	width: 100%;
	table-layout: fixed;
}

@media screen and (min-width: 361px) {
	.calendar-tbl {
		border-spacing: 4px 0;
	}
}

/* --------------------
calendar-tbl >>> thead
----------------------- */

.calendar-tbl thead th {
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
 padding-bottom: 12px;
 padding-top: 12px;
}

.calendar-tbl thead th.sat {
	color: #0b4cff;
}

.calendar-tbl thead th.sun {
	color: #d93232;
}

/* --------------------
calendar-tbl >>> tbody
----------------------- */

.calendar-tbl tbody td {
	box-sizing: border-box;
 padding-bottom: 8px;
	position: relative;
	text-align: center;
}

.calendar-tbl tbody td .day-number {
	display: none;
}

.calendar-tbl tbody td .day-number + label {
	background: #a6c1ee;
	border-bottom: solid 2px #a2a2a2;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	height: 44px;
	padding: 4px 0 0;
	text-decoration: none;
}

.calendar-tbl tbody td .day-number:checked + label {
	background: #f6d365;
	border-bottom: none;
}

.calendar-tbl tbody td .day-number.another + label {
	background: #ebebeb;
	border-bottom: none;
	pointer-events: none;
}

.calendar-tbl tbody td .day-number + label .level-1::before {
	content: "";
	border: 2px solid #999999;
	border-radius: 50%;
	display: block;
	height: 8px;
	margin: auto;
	position: absolute;
		top: 10px;
		right: 0;
		bottom: 0;
		left: 0;
	width: 8px;
}

.calendar-tbl tbody td .day-number + label .level-2::before {
	content: "\025b2";
	display: block;
	font-size: 1.4rem;
	margin-top: 4px;
}

/* --------------------
reserve-time-list
----------------------- */

.reserve-time-list {
	width: 114px;
}

.reserve-time-list li {
	font-size: 1.8rem;
	font-weight: bold;
	height: 40px;
	line-height: 1.8rem;
	margin-bottom: 12px;
	position: relative;
}

.reserve-time-list li:last-child {
	margin-bottom: 0;
}

.reserve-time-list li label {
	background: #f6d365;
	border-radius: 4px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 40px;
	padding-left: 32px;
	padding-top: 11px;
}

.reserve-time-list li label.close {
	background: #ebebeb;
	pointer-events: none;
}

.reserve-time-list li label:before {
	background: #fff;
	border-radius: 4px;
	content: '';
	height: 24px;
	position: absolute;
		top: 7px;
		left: 6px;
	width: 24px;
}

.reserve-time-list li label.close:before  {
	background: #ebebeb;
}

.reserve-time-list li input[type="radio"] {
	display: none;
}

.reserve-time-list li input[type="radio"]:checked + label:after {
	border-left: 4px solid #eb6ea5;
	border-bottom: 4px solid #eb6ea5;
	content: '';
	height: 8px;
	position: absolute;
		top: 12px;
		left: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 12px;
}

.reserve-time-list li label .level-1::before {
	content: "";
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-block;
	height: 12px;
	margin-left: 10px;
	vertical-align: middle;
	width: 12px;
}

.reserve-time-list li label .level-2::before {
	content: "\025b2";
	font-size: 1.8rem;
	margin-left: 8px;
	vertical-align: middle;
}

@media screen and (min-width: 321px) {
	.reserve-time-list {
		width: 128px;
	}
	.reserve-time-list li label {
		padding-left: 40px;
	}
	.reserve-time-list li label .level-1::before {
		margin-left: 16px;
	}
	.reserve-time-list li label .level-2::before {
		margin-left: 14px;
	}
}

@media screen and (min-width: 361px) {
	.reserve-time-list {
		width: 144px;
	}
	.reserve-time-list li label .level-1::before {
		margin-left: 32px;
	}
	.reserve-time-list li label .level-2::before {
		margin-left: 30px;
	}
}

@media screen and (min-width: 429px) {
	.reserve-time-list {
		width: 128px;
	}
	.reserve-time-list li label .level-1::before {
		margin-left: 16px;
	}
	.reserve-time-list li label .level-2::before {
		margin-left: 14px;
	}
}

/* ===================================================
definition list
*  =================================================== */

.dl {
	border-top: 1px solid #dedede;
}

.dl dl {
	border-bottom: 1px solid #dedede;
	box-sizing: border-box;
	display: block;
	padding: 12px 4px;
	width: 100%;
}

.dl dl dt {
	color: #7ba3e6;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.08rem;
	line-height: 1.2rem;
	padding-bottom: 12px;
}

.dl dl dd {
	color: #000;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: none;
}

.dl dl dd.day {
	padding-bottom: 8px;
}

.dl dl dd a {
	color: #000;
	text-decoration: none;
}

.dl dl dd dl {
	border-bottom: none;
	padding: 0 0 12px;
}

.dl dl dd dl:last-child {
	padding: 0;
}

.dl dl dd dl dt {
	color: #555;
	font-size: 1.0rem;
	font-weight: normal;
	padding: 0 0 4px;
}

.dl dl dd dl dt::after {
	content: "：";
}

.dl dl dd dl dd {
 line-height: 1.8rem;
}

.dl dl dd dl dd.name::after {
	content: "様";
}

@media screen and (min-width: 361px) {
	.dl dl {
		padding: 16px 4px;
	}
	.dl dl dt {
		font-size: 1.4rem;
		padding-bottom: 16px;
	}
	.dl dl dd {
		font-size: 2.0rem;
	}
	.dl dl dd dl {
		padding: 0 0 16px;
	}
	.dl dl dd dl dt {
		font-size: 1.2rem;
	}
}


.influencer_confirm dl {
  display: flex;
  flex-wrap: wrap;
}

.influencer_confirm dt {
  width: 150px;
}

.influencer_confirm dd {
  width: 100%;
}


/* ===================================================
privacy
*  =================================================== */

.privacy {
	background: #fcf8f0;
	margin-top: 16px;
	padding: 16px;
}

.privacy-ttl {
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 16px;
}

.hide .hide-ttl {
	color: #7ba3e6;
	cursor :pointer;
	font-size: 1.4rem;
	font-weight: bold;
}

.hide .hide-ttl:before {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 12px solid #a6c1ee;
	display: inline-block;
	margin-right: 4px;
}

.hide-blk {
	margin-top: 8px;
	height: 200px;
	overflow-y: auto;
	opacity: 1;
}

.hide .hide-blk::-webkit-scrollbar {
	width: 12px;
}

.hide .hide-blk::-webkit-scrollbar-track {
	background: #fff;
	border: none;
	border-radius: 8px;
	box-shadow: inset 0 0 2px #777;
}

.hide .hide-blk::-webkit-scrollbar-thumb {
	background: #b5b5b6;
	border-radius: 8px;
	box-shadow: none;
}

.privacy-txt {
	background: #fff;
	font-size: 1.2rem;
	line-height: 1.8rem;
	padding: 12px 8px;
}

/* ===================================================
auth
*  =================================================== */

.auth {
	margin-top: 16px;
}

@media screen and (min-width: 429px) {
	.auth {
		width: 280px;
	}
}

/* ===================================================
button
*  =================================================== */

/* --------------------
btn-blk
----------------------- */

.btn-blk {
	clear: both;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: absolute;
	right: 16px;
	bottom: 40px;
}

.btn-blk :last-child {
	margin-left: 12px;
}

@media screen and (min-width: 413px) {
	.btn-blk {
		position: absolute;
		right: 24px;
	}
}

@media screen and (min-width: 429px) {
	.btn-blk.confirm {
		position: absolute;
		right: 80px;
	}
}


/* ====================================================
btn-list
*  ==================================================== */

.btn-list {
	margin-top: 16px;
}

.btn-list li {
	display: block;
	margin-bottom: 16px;
	padding: 0 10px;
}

.btn-list li a {
	text-decoration: none;
	color: #fff;
}

/* --------------------
btn
----------------------- */

.btn {
	background: #a6c1ee;
	border-radius: 32px;
	color: #fff;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: bold;
	height: 48px;
	line-height: 48px;
	width: 100%;
}

.choice-btn {
	background: #a6c1ee;
	border: solid 5px #a6c1ee;
	border-radius: 32px;
	border-color: #a6c1ee;
	color: #fff;
	cursor: pointer;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.0rem;
	padding-bottom: 8px;
	padding-top: 8px;
	text-align: center;
	width: 100%;
}

.btn-blk .btn-submit.noneselect {
	background: #dedede;
	pointer-events: none;
}

.btn-blk .btn-submit {
	background: #a6c1ee;
	border-radius: 24px;
	color: #fff;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
	width: 144px;
	pointer-events: auto;
}

.btn-blk .btn-cancel {
	background: #fff;
	border: 1px solid #a6c1ee;
	border-radius: 24px;
	box-sizing: border-box;
	color: #7ba3e6;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
	width: 80px;
}

.btn-blk .btn-submit-patient-confirm {
	background: #a6c1ee;
	border-radius: 24px;
	color: #fff;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2rem;
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
	width: 112px;
}

.btn-blk2 .btn-submit-patient-confirm {
	background: #a6c1ee;
	border-radius: 24px;
	color: #fff;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2rem;
	padding-bottom: 14px;
	padding-top: 14px;
	text-align: center;
	width: 112px;
}

.btn-blk.confirm button:last-of-type {
	margin-left: 10px;	
}


.btn-blk-confirm .btn-submit {
background: #a6c1ee;
border-radius: 32px;
color: #fff;
cursor: pointer;
display: block;
font-size: 1.8rem;
font-weight: bold;
line-height: 1.4rem;
padding-bottom: 20px;
padding-top: 20px;
text-align: center;
width: 240px;
margin: 0 auto;
}

.btn-blk-confirm .btn-cancel {
background: #fff;
border: 1px solid #a6c1ee;
border-radius: 24px;
box-sizing: border-box;
color: #7ba3e6;
cursor: pointer;
display: block;
font-size: 1.4rem;
font-weight: bold;
line-height: 1.4rem;
padding-bottom: 14px;
padding-top: 14px;
text-align: center;
width: 80px;
margin: 16px auto 0;
}

@media screen and (min-width: 361px) {
	.btn-blk .btn-submit-patient-confirm {
		font-size: 1.4rem;
		line-height: 1.4rem;
		width: 128px;
	}
	.btn-blk2 .btn-submit-patient-confirm {
		font-size: 1.4rem;
		line-height: 1.4rem;
		width: 128px;
	}
}

@media screen and (min-width: 429px) {
	.btn-blk .btn-submit-patient-confirm {
		width: 144px;
	}
	.btn-blk2 .btn-submit-patient-confirm {
		width: 144px;
	}
}
/* error message */
.error-message {
	color: #7ba3e6 !important;
}
 .over-write  {
	font-size: 1.2rem;
	color: #ff4040;
	line-height: 1.8rem;
}

.text-red {
        color: #ff0000 !important;
        font-weight: 900;
}


.text-blue {
	color: #0000ff !important;
}

.text-cyan {
	color: #77d1c3 !important;
}

.text-magenta {
	color: #fca0aa !important;
}

.text-bold {
	font-weight: bold;
}