<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*===========================================================
					複数ページ共通
============================================================*/
header{
	display: block;
	height: auto;
	width: 100%;
}
@media screen and (min-width:480px){
	header {
		min-height: 180px;
	}
}
@media screen and (max-width:480px){
	header {
		padding-bottom: 1px;
	}
}
/*小見出し*/
.subheading {
	margin:0 auto 0 ;
	padding:0.6rem;
	border-bottom : solid 1px #D21577;
}
@media screen and (max-width: 640px){
	.subheading {
		margin:0;
		padding:0.6rem;
		border-bottom : solid 1px #D21577;
		font-size:1rem;
	}
}
.subheading img {
	position: absolute;
	left:0;
	top:3px;
	}
/*小見出し_date*/
.subheading_date {
	margin:0;
	padding:0.6rem 0.6rem 0.6rem 2rem;
	border-bottom : solid 1px #D21577;
}
@media screen and (max-width:480px){
	.subheading_date {
		font-size: 1.2rem !important;
		padding-left:1.2rem;
	}
}
.subheading_date2 {
	margin:0;
	padding:0.6rem 0;
	border-bottom : solid 1px #D21577;
}
@media screen and (max-width:480px){
	.subheading_date2 {
		font-size: 1rem;
	}
}
/* ページタイトル */
h1.pagetitle {
	position: relative;
	top:24px;
	
	color: #D21577;
	text-align:center;
	line-height: 1.4;
	border-top:solid 1px #D21577;
	padding: 0.6rem 3rem;
	margin: 0 0 24px;
	font-weight: normal;
}

	h1.pagetitle:after {
		/*タブ*/
		position: absolute;
		font-weight: 900;
		/*20201106 Delete
		max-width:960px;
		*/
		/*20201106 Add*/
		height:24px;
		/*20201106*/
		width:100%;
		content: 'かんたん3ステップ！';
		background: #D21577;
		color: #fff;
		left: 0px;
		bottom: 100%;
		padding: 3px auto 3px;
		font-size: 1.2rem;
		line-height: 1;
		letter-spacing: 0.05em;
		text-align:center;
	}
@media screen and ( max-width:480px ){
	h1.pagetitle {
		position: relative;
		top:24px;
		font-size:20.8px;
		line-height: 1.4;
		padding: 0.6em 0;
		margin: 0 0 1.1em;
	}
	
		h1.pagetitle:after {
		/*タブ*/
			position: absolute;
			font-weight: 900;
			content: 'かんたん3ステップ！';
			background: #D21577;
			color: white;
			left: 0px;
			bottom: 100%;
			padding: 3px 1rem 1px;
			font-size: 0.7em;
			line-height: 1;
			letter-spacing: 0.05em;
		}
}
/* キャンセルページタイトル */
h1.canceltitle {
	position: relative;
	
	color: white;
	line-height: 1.4;
	padding: 0.25em 0.5em;
	margin: 0 0 3em;
	background: #D21577;
	text-align: center;
}

@media screen and (min-width:481px){
	.step_img_pc {
		display:block;
		width:100%;
		text-align: center;
		background:#FEE9E5;
		margin-bottom:0;
	}
	.step_img_sp {
		display:none;
	}
}
@media screen and (max-width:480px){
	.step_img_pc {
		display:none;
	}
	.step_img_sp {
		display:block;
		text-align: center;
		background:#FEE9E5;
	}
}
@media screen and (min-width:480px){
	.td_titleback1 {
		display:block;
		position:absolute;
		top:0;
		height:50px;
		z-index: -1;
		background:#c54a95;
		width:100%;			
	}
}
@media screen and (max-width:480px){
	.td_titleback1 {
		display:none;			
	}
}
@media screen and (min-width:480px){
	.td_titleback2 {
		display:block;
		height:30px;
		z-index: -1;
		background:#D21577;
		max-width:700px;
		width:100%;;
		margin: -45px auto 1rem			
	}
}
@media screen and (max-width:480px){
	.td_titleback2 {
		display:block;
		height:28px;
		z-index: -1;
		background:#D21577;
		max-width:480px;
		width:calc(100% - 2rem);
		margin: -38px auto 1rem;			
	}
}
	/*20201202add*/
	.newyoyaku_title{ 
		width:100%;
		max-height:106px;
		border-top:solid 28px #D21577;
		padding:0;
		margin:0;
		text-align:center;
	}
	.newyoyaku_title img { 
		margin-top:-24px; 
		max-width:100%;
	}
	/*20201202add-end*/
/*===========================================================
					newyoyaku_tenpo
============================================================*/
	.new_oritatami_box {
		margin: 2rem 0 -1rem;
		padding: 0; 
		max-width: 100%;/*最大幅*/
	}

		/*ラベル*/
		.new_oritatami_box label {
			position: relative;
			display: block;
			color :#D21577;
			font-weight: bold;
			cursor :pointer;
			transition: all 0.5s;
			margin: 1rem auto 0.5rem ;
		}
		@media screen and (max-width:480px){
			.new_oritatami_box label {
				margin:1rem 1rem 0.5rem 1rem;
			}
		}
		.new_oritatami_box label img {
			width:100%;
		}

		/*ラベルホバー時*/
		.new_oritatami_box label:hover {
			background : #ea64ae;
			color: white;
		}

		/*チェックは隠す*/
		.new_oritatami_box input {
			display: none;
		}

		/*中身を非表示にしておく*/
		.new_oritatami_box .oceshow {
			height: 0;
			padding: 0;
			overflow: hidden;
			opacity: 0;
			transition: 0.8s;
		}
		/*クリックで中身表示*/
		.ocextension:checked + .oceshow {
			height: auto;
			padding: 1.5rem;
			margin: 0 auto 10px ;
			color: #565656;
			background: white;
			border: dashed 2px #D21577;

			border-radius: 8px;
			opacity: 1;
		}
		/*メディアクエリ*/
		@media screen and (max-width: 570px){
			.ocextension:checked + .oceshow {
				margin: 0 1rem 2rem 1rem;
				padding:1rem;
			}
		}
		@media screen and (min-width: 641px){
			.oceshow img {
				float:left;
			}
			.responsible_br_tenpo br{
				display:none;
			}
		}
		@media screen and (max-width: 640px){
			.oceshow img {
				clear: both;
			}  
			.responsible_br_tenpo br{
				display:inline;
			}
		}
		@media screen and (min-width: 421px){
			img.campaign {
				display: block;
				-moz-border-radius:8px;
				-webkit-border-radius:8px;
				border-radius:8px;
			}
			img.campaign_sp {
				display: none;

			}
		}
		@media screen and (max-width: 420px){
			img.campaign {
				display: none;
			}
			img.campaign_sp {
				display: block;
				-moz-border-radius:8px;
				-webkit-border-radius:8px;
				border-radius:8px;
			}
		}
		@media screen and (min-width: 481px){
			.otomodachi_message{
				margin:0 0 -1rem 0;
			}
		}
		@media screen and (max-width: 480px){
			.otomodachi_message{
				width: 90%;
				margin:0 auto -1rem ;
			}
		}
	/*-----折りたたみメニューend-----*/
	  /*友達紹介リンクボタン*/
  .link_btn {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.25em 0.5em;
	margin-left:1em;
	text-decoration: none;
	color: white;
	background: #36a3c7;
	border: solid #36a3c7 1px;
	border-radius: 12px;
	transition: .4s;
	}
	  
	  .link_btn:hover {
		background:white;
		color: #36a3c7;
	  }
  	/*性別選択*/
	.sebox {
		position: relative;
		width: 100%;
		display: flex;
		margin: 0 0 2rem;
	}

	@media screen and (max-width: 640px){
		.sebox {
			justify-content: center;
		}
	}	
	.sebox_item {
		position: relative;
		max-width:180px;
		padding : 1rem 2rem;
		color : #D21577;
		font-weight: bold;
		border:solid 1px;
		border-color: #D21577;
		cursor:pointer;
		transition: all 0.5s;
		border-radius: 0.5rem;
	}	
	.sebox_item_selected {
		position: relative;
		max-width:180px;
		padding : 1rem 2rem;
		color : white;
		font-weight: bold;
		border:solid 1px;
		background: #D21577;
		border-color: #D21577;
		transition: all 0.5s;
		border-radius: 0.5rem;
	}
	@media screen and (min-width: 640px){
		.sebox_item , .sebox_item_selected {
			margin: 0.8rem 0 0 1rem;
		}
	}
	@media screen and (max-width: 640px){
		.sebox_item , .sebox_item_selected {
			margin: 0.8rem 0.5rem 0;
		}
	}
	.sebox_item_selected::before {
		content: "\e876";
		font-family:"Material Icons";
		position:absolute;
		top: 1rem;
		left: 1rem;
	}
	.sebox_item:hover {
		background : white;
		color: midnightblue;
		border-color: midnightblue;
	}
	.sebox_item:hover:before {
		content: "\e876";
		font-family:"Material Icons";
		position:absolute;
		top: 1rem;
		left: 1rem;
	}
	.sebox label{
		display:block;
		position:relative;
		padding-left:1rem;		  
	}
	.sebox label input{
		position:absolute;
		top:0;
		bottom:0;
		left:0.5rem;
		margin:auto;
	}
	.sebox a:hover {
		opacity: 1;
		filter: alpha(opacity=100);
	}
	/*電話予約*/
	.tel_bt a{
		background: #D21577;
		border-radius: 44px;
		text-align: center;
		margin: 2rem auto 3rem;
		display: table;
		max-height:80px;
		width: 100%;
		padding:2rem;
		max-width:680px;
		color: #fff;
		position: relative;
		font-size:1rem;
	}
	@media screen and (max-width:480px){
		.tel_bt a{
			width:calc(100% - 2rem);
			margin:0 auto 3rem;
		}
	}
	/*11292020Add*/
	/*年齢確認*/
	.nenreibox {
		position: relative;
		max-width: 870px;
		display: flex;
		margin:0 0 2rem;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	@media screen and (max-width: 640px){
		.nenreibox {
			display: block;
		}
	}
	.nenreibox_item {
		position: relative;
		min-width:160px;
		margin: 1rem 0 1rem;
		padding : 1rem 1rem 1rem 2rem;
		color : #696969;
		font-weight: bold;
		border:solid 1px;
		border-color: silver;
		cursor:pointer;
		transition: all 0.5s;
		border-radius: 0.5rem;
	}
	@media screen and (max-width: 640px){
		.nenreibox_item {
			width:100%;
			margin:1rem auto 1rem;
		}
	}
		.nenreibox_item.ck2,
		.nenreibox_item:hover
		{
			background : #D21577;
			border-color:#D21577;
			color: white;
		}
		/*2023.06.05del
		.nenreibox label{
			position:relative;
			padding-left:0;
		}
		.nenreibox label input{
			position:absolute;
			top:0;
			bottom:0;
			left:1rem;
			margin:auto;
		}
		*/
	@media screen and (min-width:640px){
		#jhs_mes {
			position: relative;
			margin-right:-24rem;
		}
		#hs_mes {
			position: relative;
			margin-right:-24rem;
		}
		#sei_mes {
			position: relative;
			margin-right:-24rem;
		}
	}
	/*11292020Addend*/
	/*2023.06.05*/
	.jobbox {
		position: relative;
		max-width: 870px;
		display: flex;
		margin:0 0 2rem;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	@media screen and (max-width: 640px){
		.jobbox {
			display: block;
		}
	}
	.jobbox_item {
		position: relative;
		min-width:calc(840px / 4);
		margin: 1rem 0 1rem;
		padding : 1rem 1rem 1rem 2rem;
		color : #696969;
		font-weight: bold;
		border:solid 1px;
		border-color: silver;
		cursor:pointer;
		transition: all 0.5s;
		border-radius: 0.5rem;
	}
	@media screen and (max-width: 640px){
		.jobbox_item {
			width:100%;
			margin:1rem auto 1rem;
		}
	}
		.jobbox_item.ck4,
		.jobbox_item:hover
		{
			background : #D21577;
			border-color:#D21577;
			color: white;
		}
		.jobbox label{
			position:relative;
			padding-left:0;
		}
		.jobbox label input{
			position:absolute;
			top:0;
			bottom:0;
			left:1rem;
			margin:auto;
		}
	/*2023.06.05end*/
	/*地域選択*/
	/*20201106 Add*/
	.area-container .area-title {
		position: relative;
		margin: 0;
		padding: 0.68rem 0.68rem 0.68rem 2rem;
		border-bottom:1px solid #D21577;
		font-size: 1.25rem;
		font-weight: normal;
		color: #D21577;
		cursor: pointer;
	}
	@media screen and (max-width:480px){
		.area-container .area-title {
			padding: 0.68rem 0.68rem 0.68rem 1rem;
		}
	}

	/*20201202add*/
	.area-title div {
		text-align: right;
		margin-top:-1rem;
		margin-right:2rem;
		font-size: 1rem;
	}
	/*20201202add-end*/

		.area-container .area-title:hover,
		.area-container .area-title:active,
		.area-title.open { 
		background-color: #D21577;
		color:white;
	}

	.area-container .area-title::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		width: 15px;
		height: 1px;
		/*縦線に*/
		transform: rotate(90deg);
		background: #D21577;
		transition: all .3s ease-in-out;
	}

	.area-container .area-title::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		/*横線*/
		width: 15px;
		height: 1px;
		background: #D21577;
		transition: all .2s ease-in-out;
	}
	.area-container .area-title:active:before {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		width: 15px;
		height: 1px;
		/*縦線に*/
		transform: rotate(90deg);
		background: white;
		transition: all .3s ease-in-out;
	}

	.area-container .area-title:active:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		/*横線*/
		width: 15px;
		height: 1px;
		background: white;
		transition: all .2s ease-in-out;
	}
	.area-container .area-title:hover:before {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		width: 15px;
		height: 1px;
		/*縦線に*/
		transform: rotate(90deg);
		background: white;
		transition: all .3s ease-in-out;
	}

	.area-container .area-title:hover:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 25px;
		/*横線*/
		width: 15px;
		height: 1px;
		background: white;
		transition: all .2s ease-in-out;
	}

	.area-container .area-title.open::before {
		transform: rotate(180deg);
		background: white;
	}

	.area-container .area-title.open::after {
		opacity: 0;
	}

	.area-content {
		display: flex;
		margin:0;
		justify-content: space-between;
		flex-wrap: wrap;
		padding:0;
	}
		@media screen and (max-width:480px){
		.area-content{
			width:100%;
			margin :0; 
		}
	}
	.area-content::after{
		content:"";
		display:block;
		width:300px;
		height:0;
	}
	.area-content_date {
		max-width: 870px;
		display: flex;
		margin:0 1rem 0 1rem;
		justify-content: space-between;
		flex-wrap: wrap;
		padding:0;
	}
		@media screen and (max-width:480px){
		.area-content_date{
			width:100%;
			margin :0; 
		}
	}
	.area-content_date::after{
		content:"";
		display:block;
		width:280px;
		height:0;
	}

		/* CSS for CodePen */
		.area-container {
		width: 100%;
		margin: 0 auto;
	}
	/*20201029*/

	.selectarea {
		position: relative;
		display: inline-block;
		max-width: 360px;
		border: solid 1px #D21577;
		background: white;
		border-radius: 1em;
		font-size:16px;
		padding:8px 12px 12px;
		margin:12px 2rem 36px;
	}
	@media screen and (max-width: 640px){
		.selectarea {
			margin:12px 1em 36px;
		}
	}
	
	.selectarea:after {
		position: absolute;
		top: 50%;
		right: 0px;
		margin-right: 5px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
	}

	.selectarea select, option { 
		width: 100%;
		height: 40px;
		line-height: 30px;
		padding: 0px;
		margin: 0;
		text-indent: 1em;
		background-color: transparent;
		border: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none;
		}

	/*地域選択newyoyaku_date*/
	.selectarea_date {
		position: relative;
		display: inline-block;
		max-width: 360px;
		border: solid 1px #D21577;
		background: white;
		border-radius: 1em;
		font-size:16px;
		padding:8px 12px 12px;
		margin:12px 1em 36px;
	}
	@media screen and (max-width: 640px){
		.selectarea_date {
			margin:12px 1em 36px;
		}
	}
	
	.selectarea_date:after {
		position: absolute;
		top: 50%;
		right: 0px;
		margin-right: 5px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
	}

	.selectarea_date select, option { 
		width: 100%;
		height: 40px;
		line-height: 30px;
		padding: 0px;
		margin: 0;
		text-indent: 1em;
		background-color: transparent;
		border: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none;
	}

	/*店舗選択*/
	.area{
		width:100%;
		/*20201106 Delete
		display: flex;              
		margin:0 auto 36px; 
		justify-content: space-between;
		max-width: 870px;
		flex-wrap: wrap;
		padding:0;
		*/
	}
	/*
	.area::after{
		content:"";
		display:block;
		width:260px;
		height:0;
	}
	@media screen and (max-width:480px){
		.area{
			width:100%;
		}
	}*/
		.area input {display:none;}
		/*.area h3 {
			width:100%;
			color: white;
			padding: 0.5em;
			display: inline-block;
			line-height: 1.3;
			background: #D21577;
			vertical-align: middle;
			font-size:1.4rem;
		}
		*/
		.area h3.date {
			width:100%;
			color: white;/*文字色*/
			padding: 0.5em;/*文字周りの余白*/
			display: inline-block;/*おまじない*/
			line-height: 1.3;/*行高*/
			background: #D21577;/*背景色*/
			vertical-align: middle;
			font-size:1.4rem;
			margin-left:0;
			/*20201106 Add*/
			font-weight: bold;
		}
		.area-content .label_area {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:300px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;
		}
		.area-content_date .label_area {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:280px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;
		}
		@media screen and (max-width:599px){
			.area-content .label_area , .area-content_date .label_area ,.area-content .label_area_new , .area-content_date .label_area_new{
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:46vw;
			}
		}
		@media screen and (max-width:399px){
			.area-content .label_area , .area-content_date .label_area ,.area-content .label_area_new , .area-content_date .label_area_new{
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:45vw;
			}
		}

		.label_area:hover {
			background : #D21577;
			color: white;
		}
		.area-content .label_area_unis {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:300px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		.area-content_date .label_area_unis {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:280px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		@media screen and (max-width:420px){
			.area-content .label_area_unis , .area-content_date .label_area_unis {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;					
				font-size:1.2rem;
				max-width:178px;
			}
		}
		@media screen and (max-width:380px){
			.area-content .label_area_unis , .area-content_date .label_area_unis {
				padding:1.1rem 0.5rem ;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:170px;
			}
		}
		@media screen and (max-width:360px){
			.area-content .label_area_unis , .area-content_date .label_area_unis {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:164px;
			}
		}
		.label_area_unis:hover {
				background : #D21577;
				color: white;
			}
		@media screen and (min-width:481px){
			.label_area_unis::after {
				content:"男女OK";
				font-size:0.9rem;
				position:absolute;
				top:1rem;
				right:1rem;
				color:#515ade;
			}
		}
		@media screen and (max-width:480px){
			.label_area_unis::after {
				content:"男女OK";
				font-size:0.9rem;
				position:absolute;
				top:2.4rem;
				right:0.5rem;
				color:#515ade;
			}
		}

		.area-content .label_area_lonly {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:300px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		.area-content_date .label_area_lonly {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:280px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		@media screen and (max-width:420px){
			.area-content .label_area_lonly , .area-content_date .label_area_lonly {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;					
				font-size:1.2rem;
				max-width:178px;
			}
		}
		@media screen and (max-width:380px){
			.area-content .label_area_lonly , .area-content_date .label_area_lonly {
				padding:1.1rem 0.5rem ;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:170px;
			}
		}
		@media screen and (max-width:360px){
			.area-content .label_area_lonly , .area-content_date .label_area_lonly {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:164px;
			}
		}
		@media screen and (min-width:481px){
			.label_area_lonly::after {
				content:"女性のみ";
				font-size:0.9rem;
				position:absolute;
				top:1rem;
				right:1rem;
				color:#de5151;
			}
		}
		@media screen and (max-width:480px){
			.label_area_lonly::after {
				content:"女性のみ";
				font-size:0.9rem;
				position:absolute;
				top:2.4rem;
				right:0.5rem;
				color:#de5151;
			}
		}

		.area-content .label_area_monly {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:300px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		.area-content_date .label_area_monly {
			position: relative;
			margin:0.8rem 0;
			padding:0.8rem 0.5rem 0.8rem;
			font-size:1.2rem;
			width:100%;
			max-width:280px;
			color :#D21577;
			font-weight: bold;
			border:solid 1px;
			border-color:#D21577;
			cursor:pointer;
			transition: all 0.5s;
			border-radius: 0.5rem;				
		}
		@media screen and (max-width:420px){
			.area-content .label_area_monly , .area-content_date .label_area_monly {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;					
				font-size:1.2rem;
				max-width:178px;
			}
		}
		@media screen and (max-width:380px){
			.area-content .label_area_monly , .area-content_date .label_area_monly {
				padding:1.1rem 0.5rem ;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:170px;
			}
		}
		@media screen and (max-width:360px){
			.area-content .label_area_monly , .area-content_date .label_area_monly {
				padding:1.1rem 0.5rem;
				margin:0.65rem 0.5rem;
				font-size:1.2rem;
				max-width:164px;
			}
		}
		@media screen and (min-width:481px){
			.label_area_monly::after {
				content:"男性のみ";
				font-size:0.9rem;
				position:absolute;
				top:1rem;
				right:1rem;
				color:black;
			}
		}
		@media screen and (max-width:480px){
			.label_area_monly::after {
				content:"男性のみ";
				font-size:0.9rem;
				position:absolute;
				top:2.4rem;
				right:0.5rem;
				color:black;
			}
		}
		.label_area_unis:hover , .label_area_lonly:hover , .label_area_monly:hover{
			background : #D21577;
			color: white;
		}
	/*ブラウザバック注意文*/
	@media screen and (min-width:481px){
		.browserback_caution{
			margin:0 2rem 2rem;
		}
	}
	@media screen and (max-width:480px){
		.browserback_caution{
			margin:0 1rem 2rem 1rem;
		}
	}
	/*tenpo注意書き*/
	.guidesection{
		background:#FEE9E5;
		padding:1rem 0 1rem 0;
		margin:0 0 -16px 0;
		border-top: solid #D21577 1px;
		}
		.guide_box {
			position: relative;
			margin: 2em 0;
			padding: 1rem 2rem;
			border: solid 1px #D21577;
			background: white;
			border-radius: 8px;
			/*20201106 Edit*/
			max-width:960px;
			/*20201106 Edit*/
			margin-left:auto;
			margin-right:auto;
		}
		@media screen and (max-width:480px){
			.guide_box {
				position: relative;
				padding: 1rem 1rem;
				margin: 1rem;
			}
		}

		.guide_box .box-title{
			font-size: 1.2rem;
			background: white;
			color: #D21577;
			font-weight: 900;
		}

		.guide_box p{
			margin: 0; 
			padding: 0;
			}	
		.guide_box h4{
			color: #ea64ae;
			margin-bottom: 1rem;
		}	
/*===========================================================
					newyoyaku_date
============================================================*/
	/*店舗情報表示枠*/
	.tenpomei_box_tenpo {
		position: relative;
		padding: 12px 24px 12px 0; /*上 右 下 左*/
		margin:0 auto;
		/*20201106 Add*/
		width:100%;
		/*20201106*/
		background-color: #F15477;
		color: white;
		font-weight: bold;
		
		border-bottom: dashed 1px white;
	}
	@media screen and (max-width:480px){
		.tenpomei_box_tenpo {
			width:100%;
		}
	}
	.tenpomei_box_tenpo h3 {
		max-width:870px;
		margin:0 auto;
	}
	/*20201106 Add*/
	@media screen and (max-width:480px){
		.tenpomei_box_tenpo h3 {
			font-size:1.8rem;
			/*20201103*/
			padding-left: 0.5rem;
		}
	}
	/*20201106*/
	.tenpomei_box_adress {
		position: relative;
		padding: 0.25em 2rem;
		/*20201106 Delete
		max-width:870px;
		*/
		/*20201106 Add*/
		width:100%;
		/*20201106*/
		margin:0 auto;
		background-color: #F15477;
		color: white;
		font-size:0.9rem;
	}
	@media screen and (max-width:480px){
		.tenpomei_box_adress {
			padding: 0.25em 1rem;
			width:100%
		}
	}
	/*20201106 Add*/
	.tenpomei_box_adress div {
		max-width:870px;
		margin:0 auto;
	}
	/*20201106*/
	.tenpomei_box_adress a {
		color: khaki;
	}

	.t_title_msg{
		border-bottom: white solid 1px;
	}

	/*予約状況確認ポップアップ*/
	.info_pop{
		width:100%;
		margin:0 auto;
		/*20201106 Add*/
		background:#F15477;
		/*20201106*/
		z-index:100;
	}
	.g-nav{
		max-width:870px;
		margin: 0 auto;
		background:#F15477;
		}
		.g-nav-menu{
		font-size:1.4rem;
		}
		.g-nav-menu li{
		color: #F15477;
		padding: 0 4px;
		list-style-type: none;
		display: inline-block;
		line-height: auto;
		
		}
		.fixed{
		position: fixed;
		top: 0;
		left: 0;
		}
		.fixed .g-nav-menu li{
		line-height: 40px; 
		color:white;
		}
		/*20201110Add*/
		@media screen and (min-width:571px){
			.sp_hidden {
				display: inline;
				font-size: 0.8rem;
			}
		}
		@media screen and (max-width:570px){
			.sp_hidden {
				display: none;
			}
		}

	@media screen and (min-width: 641px){
		#wrapper2{ 
			width:100%;
			max-width:870px;
			margin:0 auto;
		}
	}
	@media screen and (max-width: 640px){
		#wrapper2{ 
			width:90%;
			margin:0 auto;
		}
	}
	@media screen and (min-width: 641px){
		.cal_wrapper{ 
			width:100%;
			max-width:870px;
			margin:0 auto;
		}
	}
	@media screen and (max-width: 640px){
		.cal_wrapper{ 
			width:90%;
			margin:0 auto;
		}
	}
	
/*11292020add*/	
/*店舗情報*/
.tenpo_box{
	max-width: 100%;
	margin: 0 auto;
	
	position: relative;
	overflow: hidden;
	padding: 0 0 1rem;
}
@media screen and (max-width:570px){
	.tenpo_box{
		padding: 0.6rem 0 1rem;
	}
}
#tel_mem {
	display: none;
}

.tenpo_box .shop_data_text,.clinic_data_text{
	display:none;
}


.tenpo_box .shop_data_bt .clinic_data_bt {
	display: block;
	cursor :pointer;
	color: white;
	max-width: 140px;
    height: auto;
	/*position: absolute;*/
	bottom: 0;
	right: 0;
	padding: 0;
	border:1px solid white;
	padding:0.5rem 1rem;
	text-align:center;
}

.tenpo_box .shop_data_bt .clinic_near_bt{
	display: none;
}

.tenpo_box .clinic_data_text{
	float: left;
	width: 67%;
}

.tenpo_box .clinic_data_text h4{
	color: #6393eb;
}

.data_area{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	float: left;
	width: 100%;
}

.dlist{
	float: left;
	width: 50%;
}

.dlist dl{
	border-bottom: 1px dotted #ccc;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.dlist dt{
	display: block;
}

.dlist dd{
	font-size: 13px;
}
@media screen and (max-width:570px){
	.dlist {
		width: 100%;
		margin-bottom: 20px;
	}

	.data_area .image_area {
		float: none;
		width: 100%;
		text-align: center;
	}

	.data_area .image_area div{
		text-align: center;
	}
}

.data_area .image_area{
	float: right;
	/*width: 50%;*/
	text-align: center;
}

.data_area .image{
	margin-bottom: 25px;
}
@media screen and (min-width:571px){
	.data_area .image img{
		max-width:192px;
	}
}


.data_area .bt{
	margin-bottom: 15px;
}

.data_area .bt a{
	display: block;
	background: #347ee9;
	width: 100%;
	border-radius: 60px;
	text-align: center;
	color: #fff;
	padding: 10px 0;
}

.data_area .bt.tenpo a{
	display:none;
}

.shop_name{
	text-align: center;
	margin: 2rem auto;
	font-size: 15px;
	position: relative;
	border: 1px solid #D21577; /*左枠線*/
	width: 90%;
	max-width:870px;
	padding: 30px;
	z-index: 0;
}

	.shop_name::before,
	.shop_name::after {		
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
	}
	.shop_name::before {
		border: 1px solid #D21577; /*中枠線*/
		bottom: -4px;
		right: -4px;
		z-index: 1;
		}
	.shop_name::after {
		border: 1px solid #D21577; /*右枠線*/
		bottom: -7px;
		right: -7px;
		z-index: 2;
	}
/*11292020add*/	
/*=====================================================
		newyoyaku_kakunin
======================================================*/
	#yoyaku_one{
		max-width: 100%;
	}
	
		#yoyaku_one li{
			border-bottom: 1px dotted #ccc;
			text-align: left;
			padding: 3vw 0;
			font-size: 25px;
		}
	
		@media screen and(min-width:481px){
			#yoyaku_one li div{
				display: inline-block;
				margin-right: 10%;
			}
		}
		@media screen and(max-width:480px){
			#yoyaku_one li div{
				display: inline-block;
				margin-right: 10%;
				font-size:18px;
			}
		}
	
				#yoyaku_one li div i{
					color: #cf1674;
				}
	
				#yoyaku_one li p{
					display: inline-block;
					text-indent: 2rem;
				}
/*=====================================================
		newyoyaku_run
======================================================*/
	#thanks_title{
		text-align: center;
		max-width: 100%;
		margin: 0 3rem;
	}
	@media screen and (max-width:480px){
		#thanks_title{
			margin: 0 1rem;
		}
	}
	#thanks_title h3{
		margin: 0 auto 30px;
		text-align: center;
		border: 1px solid #cf1674;
		display: inline-block;
		color: #cf1674;
		padding: 1rem 2rem;
		font-size: 1.2rem;
		line-height: 1.6rem;
	}
	@media screen and (max-width:480px){
		#thanks_title h3{
			font-size: 0.9rem;
			line-height: 1.2rem;
		}
	}
			#thanks_title div{
			width:100%;
			min-height :120px;
			padding: 46px 12px;
			text-align: center;
			display: block;
			border: 1px solid #00B900;
			color: #00B900;
			font-size: 22px;
			max-width: 900px;
			font-weight: 900;
		}

	.yoyakupage_bt{
		padding: 15px;
		font-weight: bold;
		border: solid 2px #ff0573;
		cursor: pointer;
		color: #ff0573 !important;
		display: inline-block;
		margin: 10px 0 0;
		border-radius: 5px;
	}

	</pre></body></html>