@charset "UTF-8";
/* --------------------------------- */
/* テンプレートの共通デザイン */
/* --------------------------------- */
body {
	background-image: none !important;
	background-color: #fffbf6;
}
.member_block {
	width: 1140px;
	max-width: 1140px;
	padding: 0 20px 120px 20px;
	margin: 40px auto 0 auto;
	display: flex;
	align-items: flex-start;
}
.member_block .left_menu {
	width: 300px;
	min-width: 300px;
	border: solid 1px #bc9c70;
	border-radius: 6px;
	background-color: #f9f2e9;
	padding: 20px;
	margin: 0 40px 0 0;
}
.member_main {
	width: 100%;
}
.member_block .left_menu dt {
	display: flex;
	margin: 0 0 20px 0;
}
.member_block .left_menu .member_detail {
	width: 100%;
}
.member_block .left_menu dt figure {
	width: 80px;
	min-width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 200px;
	border: solid 1px #bc9c70;
	margin: 0 10px 0 0;
}
.member_block .left_menu dt figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member_block .left_menu dt .member_id,
.member_block .left_menu dt .shop_name,
.member_block .left_menu dt .member_edit {
	display: block;
	font-size: 14px;
}
.member_block .left_menu dt .shop_name strong {
	font-weight: bold;
	color: #9b6565;
	font-size: 120%;
}
.member_block .left_menu dt .member_edit {
	padding: 5px 0 0 0;
}
.member_block .left_menu dt .member_edit a {
	width: 100%;
	display: block;
	background-color: #514343;
	color: #FFFFFF;
	line-height: 1;
	padding: 8px 10px;
	text-align: center;
	border-radius: 6px;
	transition: all 150ms 0s ease;
}
.member_block .left_menu dt .member_edit a:hover {
	opacity: 0.9;
}
.member_block .left_menu li {
	margin: 0 0 20px 0;
}
.member_block .left_menu li:last-child {
	margin: 0;
}
.member_block .left_menu li a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #514343;
	color: #FFFFFF;
	line-height: 1;
	padding: 17px 20px;
	text-align: left;
	border-radius: 6px;
	font-size: 16px;
	font-weight: bold;
	transition: all 150ms 0s ease;
	position: relative;
}
.member_block .left_menu li a:hover {
	opacity: 0.9;
}
.member_block .left_menu li a span {
	margin: 0 0 0 auto;
	background-color: #FFFFFF;
	color: #514343;
	min-width: 32px;
	height: 32px;
	border-radius: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	right: 10px;
}
.contents_block {
	background-color: #FFFFFF;
	border: solid 1px #bc9c70;
	border-radius: 6px;
	overflow: hidden;
}
.head_line {
	margin-bottom: 20px;
	font-size: 24px;
}
.member_nickname strong{
	font-weight: bold;
	color:#664c4c;
}
@media screen and (max-width: 760px) {
	.member_block {
		width: 100%;
		max-width: 100%;
		padding: 0 0 20vw 0;
		margin: 0;
	}
	.contents_block {
		border: none;
		border-radius: 6px;
		overflow: hidden;
	}
	.member_main .head_line {
		margin-bottom: 0 !important;
		font-size: 4vw;
		text-align: left;
		padding: 2vw 4vw;
	}
	.head_line::before, .head_line::after {
		content: '';
		display: none;
	}
	.page_back a{
		display: flex;
		align-items: center;
		background-color: #514343;
		color: #FFFFFF;
		line-height: 1;
		padding: 2vw 4vw;
		font-weight: bold;
	}
	.page_back a::before {
		content: '\f104';
		font-family: FontAwesome;
		font-size: 6vw;
		line-height: 1;
		color: #fff;
		margin: 0 2vw 0 0;
	}
}


/* --------------------------------- */
/* コンテンツ内共通パーツ */
/* --------------------------------- */
/* メンバーの情報 */
.member_main .member_detail {
	display: flex;
	align-items: center;
	padding: 20px;
}
.member_main .member_detail .member_img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 20px 0 0;
}
.member_main .member_detail .member_img figure {
	width: 130px;
	min-width: 130px;
	height: 130px;
	border-radius: 130px;
	overflow: hidden;
	display: block;
	border: solid 1px #bc9c70;
	margin: 0 0 5px 0;
}
.member_main .member_detail .member_img figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member_main .member_detail .member_img a:hover {
	opacity: 0.8;
}
.member_main .member_detail .member_data {
	font-size: 18px;
	margin: 0 0 20px 0;
}
.member_main .member_detail .member_data div {
	margin: 5px 0;
}
.member_main .member_detail strong {
	font-weight: bold;
	color: #9b6565;
}
.member_search_btn {
	background-color: #ffe061;
	color: #514343;
	font-size: 18px;
	font-weight: bold;
	border-radius: 6px;
	width: 360px;
	padding: 16px 0px;
	line-height: 1;
	display: block;
	margin: 40px auto 0;
	text-align: center;
	border: solid 2px #514343;
	transition: all 150ms 0s ease;
}
.member_search_btn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 760px) {
	.member_main .member_detail {
		padding: 4vw;
	}
	.member_main .member_detail .member_img {
		margin: 0 4vw 0 0;
	}
	.member_main .member_detail .member_img figure {
		width: 20vw;
		min-width: 20vw;
		height: 20vw;
		border-radius: 20vw;
		margin: 0 0 1vw 0;
	}
	.member_main .member_detail .member_data {
		font-size: 3.5vw;
		margin: 0 0 4.5vw 0;
	}
	.member_main .member_detail .member_data div {
		margin: 1vw 0;
	}
	.member_main .member_detail strong {
		font-size: 4.5vw;
	}
	.member_search_btn {
		font-size: 4vw;
		width: 100%;
		padding: 3vw 0px;
		margin: 6vw auto 0;
	}
}


/* memberトップページ(Myタイムライン) */
.my_timeline .my_timeline_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 30px 0;
}
.my_timeline .my_timeline_head h1 {
	font-weight: bold;
	font-size: 24px;
	color: #664c4c;
}
.my_timeline .my_timeline_head a {
	background-color: #514343;
	text-align: center;
	color: #FFFFFF;
	border-radius: 6px;
	padding: 6px 10px;
	font-weight: bold;
	letter-spacing: 1px;
	transition: all 150ms 0s ease;
}
.my_timeline .my_timeline_head a:hover {
	opacity: 0.9;
}
.my_timeline .my_timeline_head a::before {
	content: '\f013';
	font-family: FontAwesome;
	font-weight: normal;
	margin: 0 8px 0 0;
	font-size: 120%;
}
.my_timeline .my_timeline_head a:hover {
	opacity: 0.8;
}
.my_timeline > ul > li {
	padding: 30px 20px;
}
.my_timeline > ul > li .info_text {
	margin: 0 0 20px 0;
	font-size: 18px;
}
.my_timeline > ul > li .info_text a {
	color: #9b6565;
	font-weight: bold;
}
.my_timeline > ul > li .item_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 10px 0;
}
.my_timeline > ul > li .item_head .icon {
	display: block;
	padding: 5px 15px 7px 15px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 1;
	border-radius: 50px;
	overflow: hidden;
}
.my_timeline > ul > li .honorific {
	font-weight: bold;
	font-size: 80%;
}

.type_new_cast {
	background: linear-gradient(to bottom,  rgba(255,232,232,1) 5%,rgba(255,232,232,0) 100%);
}
.type_new_cast .icon {
	background-color: #e28686;
}
.type_cast_schedule,
.type_shop_cast_schedule {
	background: linear-gradient(to bottom,  rgba(233,247,255,1) 5%,rgba(233,247,255,0) 100%);
}
.type_cast_schedule .icon,
.type_shop_cast_schedule .icon {
	background-color: #5097bf;
}
.type_shop_review_checked,
.type_shop_review_reply {
	background: linear-gradient(to bottom,  rgba(232,255,245,1) 5%,rgba(232,255,245,0) 100%);
}
.type_shop_review_checked .icon,
.type_shop_review_reply .icon {
	background-color: #20bc7b;
}
@media screen and (max-width: 760px) {
	.my_timeline .my_timeline_head {
		padding: 6vw 4vw 3vw 4vw;
		margin: 0;
	}
	.my_timeline .my_timeline_head h1 {
		font-size: 4vw;
	}
	.my_timeline .my_timeline_head a {
		padding: 1.2vw 2vw;
		font-size: 3.4vw;
	}
	.my_timeline .my_timeline_head a::before {
		margin: 0 1.2vw 0 0;
	}
	.my_timeline > ul > li {
		padding: 6vw 4vw;
	}
	.my_timeline > ul > li .info_text {
		margin: 0 0 3vw 0;
		font-size: 3.5vw;
	}
	.my_timeline > ul > li .item_head {
		margin: 0 0 2vw 0;
	}
	.my_timeline > ul > li .item_head .icon {
		padding: 5px 15px 7px 15px;
		border-radius: 50px;
	}
}


/* タイムライン表示データが無い時の案内 */
.keep_info_head {
	padding: 40px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.keep_info .keep_info_head p {
	text-align: center;
	font-size: 26px;
}
.keep_info p {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 30px 0;
}
.keep_info_body {
	background-color: #FFFFFF;
	border: solid 1px #dddddd;
	padding: 30px;
}
.keep_info dl {
	margin: 0 0 50px 0;
}
.keep_info dt {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 10px 0;
	color: #664c4c;
}
.keep_info dl dd p {
	font-size: 16px;
	font-weight: normal;
}
@media screen and (max-width: 760px) {
	.keep_info_head {
		padding: 10vw 0;
	}
	.keep_info .keep_info_head p {
		font-size: 4vw;
	}
	.keep_info p {
		padding: 4vw;
		font-size: 3.5vw;
		font-weight: bold;
		margin: 0 0 2vw 0;
	}
	.keep_info_body {
		background-color: #FFFFFF;
		border: solid 1px #dddddd;
		padding: 4vw;
		margin: 0 4vw;
	}
	.keep_info dl {
		margin: 0 0 15vw 0;
	}
	.keep_info dt {
		font-size: 4vw;
		margin: 0 0 2vw 0;
	}
	.keep_info dl dd p {
		font-size: 3.5vw;
		font-weight: normal;
		padding: 0;
	}
	.keep_info dl dd img {
		max-width: 100%;
		height: auto;
	}
}


/* 角丸のリストリンク */
.round_list {
	list-style: none;
}
.round_list li {
	margin: 0 0 20px 0;
}
.round_list li:last-child {
	margin: 0;
}
.round_list li a {
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #FFFFFF;
	padding: 10px 20px;
	border-radius: 6px;
	border: solid 1px #b6b6b6;
	cursor: pointer;
	transition: all 150ms 0s ease;
}
.round_list li a:hover {
	background-color: #fffbeb;
}
.round_list li a figure {
	width: 60px;
	min-width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 100px;
	border: solid 1px #bc9c70;
	overflow: hidden;
	margin: 0 10px 0 0;
}
.round_list li a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.round_list li a span.name {
	font-weight: bold;
	color: #9b6565;
	max-width: 440px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.round_list li a span.link_text {
	margin: 0 0 0 auto;
	display: flex;
	align-items: center;
	color: #514343;
	font-weight: bold;
}
.round_list li a span.link_text::after {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 26px;
	line-height: 1;
	margin: 0 0 0 10px;
}
@media screen and (max-width: 760px) {
	.round_list li {
		margin: 0 0 4vw 0;
	}
	.round_list li:last-child {
		margin: 0;
	}
	.round_list li a {
		padding: 3vw 4vw;
	}
	.round_list li a figure {
		width: 10vw;
		min-width: 10vw;
		height: 10vw;
		margin: 0 2vw 0 0;
	}
	.round_list li a span.name {
		max-width: 42vw;
	}
	.round_list li a span.link_text::after {
		font-size: 5vw;
		margin: 0 0 0 1.5vw;
	}
}


/* --スマホのみ表示するプロフィール＆メニュー */
@media screen and (max-width: 760px) {
	.sp_top_profile {
		border-top: solid 2px #75633b;
		background-color: #f2e6cb;
		padding: 4vw;
	}
	.member_main .sp_top_profile .member_detail {
		padding: 0;
		margin: 0 0 3vw 0;
	}
	.member_main .sp_top_profile .member_detail .member_img {
		margin: 0 2vw 0 0;
	}
	.sp_top_profile .mypage_menu ul {
		list-style: none;
		display: flex;
		justify-content: space-between;
	}
	.sp_top_profile .mypage_menu ul li {
		width: 31%;
	}
	.sp_top_profile .mypage_menu ul li a {
		display: block;
		background-color: #514343;
		text-align: center;
		color: #FFFFFF;
		border-radius: 6px;
		font-size: 3.6vw;
		font-weight: bold;
		padding: 1.5vw 0;
	}
	.member_main .sp_top_profile .member_detail .member_img figure {
		width: 14vw;
		min-width: 14vw;
		height: 14vw;
		border-radius: 16vw;
		margin: 0;
	}
	.member_main .sp_top_profile .member_detail .member_data {
		font-size: 3.5vw;
		margin: 0;
	}
	.member_main .sp_top_profile .member_detail .member_data div {
		margin: 0;
	}
	.member_main .sp_top_profile .member_edit_btn {
		margin: 0 0 0 auto;
	}
	.member_main .sp_top_profile .member_edit_btn a {
		display: block;
		background-color: #514343;
		text-align: center;
		color: #FFFFFF;
		border-radius: 6px;
		font-size: 3.6vw;
		font-weight: bold;
		padding: 1.5vw 4vw;
	}
}


/* 設定リスト */
.list_block {
	margin: 0 0 30px 0;
}
.list_block:last-child {
	margin: 0;
}
.list_block dt {
	font-size: 24px;
	font-weight: bold;
	padding: 15px 15px 10px 15px;
	color: #664c4c;
}
.list_block dt .small {
	font-size: 60%;
	margin: 0 0 0 5px;
}
.list_block dd {
	font-size: 18px;
}
.list_block ul {
	display: flex;
	flex-direction: column;
	list-style: none;
}
.list_block ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 1px #bc9c70;
}
.list_block ul li:first-child {
	border-top: solid 1px #bc9c70;
}
.list_block:last-child li:last-child {
	border-bottom: none;
}
.list_block ul li div.data {
	padding: 15px;
	display: flex;
}
.list_block ul li div.data > span:first-child {
	text-align: right;
	width: 120px;
	display: block;
	margin:  0 10px 0 0;
}
.list_block ul li div.data .not_setting {
	color: #929292;
}
.list_block ul li > a {
	padding: 15px 20px 15px 15px;
}
.list_block ul li > a:hover {
	opacity: 0.8;
}
.list_block ul li > a::after {
	content: '\f105';
	font-family: FontAwesome;
	line-height: 1;
	font-weight: bold;
	font-size: 26px;
	margin: 0 0 0 10px;
}
@media screen and (max-width: 760px) {
	.list_block {
		margin: 0 0 6vw 0;
	}
	.list_block dt {
		font-size: 5vw;
		padding: 4vw 4vw 2vw 4vw;
	}
	.list_block dt .small {
		margin: 0 0 0 1vw;
	}
	.list_block dd {
		font-size: 3.5vw;
	}
	.list_block ul li div.data {
		padding: 4vw 4vw 4vw 0vw;
	}
	.list_block ul li div.data > span:first-child {
		width: 25vw;
		margin:  0 2vw 0 0;
	}
	.list_block ul li > a {
		padding: 3vw 4vw 3vw 3vw;
	}
	.list_block ul li > a::after {
		font-size: 5vw;
		margin: 0 0 0 2vw;
	}
}


/* 下層ヘッダー共通見出し */
.member_heder {
	padding: 30px;
	font-size: 18px;
}
.member_heder h1 {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 26px;
	color: #664c4c;
	line-height: 1;
	margin: 0 0 10px 0;
}
.member_contents {
	padding: 0 30px 30px 30px;
}
.member_heder h1 .required_icon {
	display: inline-block;
	font-size: 14px;
	background-color: #ff3c40;
	color: #FFFFFF;
	line-height: 1;
	padding: 4px 10px;
	margin: 0 0 0 10px;
}
@media screen and (max-width: 760px) {
	.member_heder {
		padding: 4vw;
		font-size: 3.6vw;
	}
	.member_heder h1 {
		font-size: 4.8vw;
		margin: 0 0 2vw 0;
	}
	.member_contents {
		padding: 0 4vw 4vw 4vw;
	}
	.member_heder h1 .required_icon {
		font-size: 3.6vw;
		padding: 1vw 2vw;
		margin: 0 0 0 2vw;
	}
}


/* 注意事項 */
.member_attention dt {
	font-weight: bold;
	font-size: 18px;
	color: #ff3c40;
}
.member_attention dd {
	color: #ff3c40;
}
@media screen and (max-width: 760px) {
	.member_attention dt {
		font-size: 4vw;
	}
}


/* 画像選択リスト */
.img_select {
	display: flex;
	flex-wrap: wrap;
}
.img_select li {
	width: 16%;
	margin-right: 5%;
	margin-bottom: 5%;
	overflow: hidden;
	border-radius: 200px;
	border: solid 1px #bc9c70;
	transition: 100ms ease-in-out 0s;
}
.img_select li:nth-child(5n) {
	margin-right: 0;
}
.img_select li:hover {
	transform: scale(1.2, 1.2);
}
.img_select li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 760px) {
	.img_select li,
	.img_select li:nth-child(5n) {
		width: 30%;
		margin-right: 5%;
		margin-bottom: 5%;
		overflow: hidden;
		border-radius: 200px;
		border: solid 1px #bc9c70;
		transition: 100ms ease-in-out 0s;
	}
	.img_select li:nth-child(3n) {
		margin-right: 0;
	}
	.img_select li:hover {
		transform: none;
	}
}


/* ボタンでのセレクト */
.select_btns {
	margin: 0 0 30px 0;
}
.select_btns .title_text {
	font-weight: bold;
	color: #664c4c;
	font-size: 22px;
	margin: 0 0 10px 0;
}
.select_btns .select_data {
	display: flex;
	flex-wrap: wrap;
}
.select_btns .item {
	border: solid 1px #664c4c;
	background-color: #fffbeb;
	color: #664c4c;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 23.5%;
	margin: 0 2% 2% 0;
	padding: 8px 0;
	border-radius: 6px;
	overflow: hidden;
}
.select_btns .item:hover {
	background-color: #fff0b5;
}
.select_btns .item.active {
	background-color: #ffe061;
}
.select_btns .item:nth-child(4n) {
	margin-right: 0;
}
@media screen and (max-width: 760px) {
	.select_btns {
		margin: 0 0 6vw 0;
	}
	.select_btns .title_text {
		font-size: 4.5vw;
		margin: 0 0 2vw 0;
	}
	.select_btns .item:nth-child(4n),
	.select_btns .item {
		color: #664c4c;
		font-size: 3.6vw;
		width: 32%;
		margin: 0 2% 3% 0;
		padding: 1.8vw 0;
	}
	.select_btns .item:nth-child(3n) {
		margin-right: 0;
	}
}


/* 共通のフォームレイアウト */
.form_error_info {
	border: solid 1px #ff3c40;
	color: #ff3c40;
	padding: 15px;
	margin: 0 0 20px 0;
}
.form_block {
	display: flex;
	flex-direction: column;
}
.form_block input {
	padding: 10px;
	font-size: 16px;
	border: solid 1px #dddddd;
	background-color: #fffbeb;
	margin: 0 0 3px 0;
}
.form_block input[name="mail"],
.form_block input[name="login_id"] {
	width: 100%;
}
.form_block .save_btn {
	margin: 30px 0 0 0;
	display: flex;
}
.form_block button {
	margin: 0 0 0 0;
	min-width: 180px;
	padding: 9px 0;
	font-size: 18px;
	font-weight: bold;
	background-color: #ffe061;
	border: solid 1px #514343;
	color: #514343;
	border-radius: 6px;
	cursor: pointer;
}
.form_block .cancel {
	text-align: center;
	margin: 0 0 0 15px;
	min-width: 180px;
	padding: 9px 0;
	font-size: 18px;
	font-weight: bold;
	background-color: #fFFFFF;
	border: solid 1px #514343;
	color: #514343;
	border-radius: 6px;
	cursor: pointer;
}
.form_block .cancel:hover,
.form_block button:hover {
	opacity: 0.8;
}
@media screen and (max-width: 760px) {
	.form_error_info {
		padding: 3vw;
		margin: 0 0 4vw 0;
		font-size: 3.5vw;
	}
	.form_block {
		flex-direction: column;
	}
	.input_area {
		margin: 0 0 3vw 0;
	}
	.form_block input {
		padding: 3vw;
		font-size: 3.6vw;
		border: solid 1px #dddddd;
		background-color: #fffbeb;
		width: 100%;
	}
	.form_block .save_btn {
		margin: 3vw 0 0 0;
		flex-direction: column;
	}
	.form_block button {
		margin: 0;
		width: 100%;
		padding: 3vw 0;
		font-size: 4vw;
	}
	.form_block .cancel {
		margin: 4vw 0 0 0;
		width: 100%;
		padding: 3vw 0;
		font-size: 4vw;
	}
}


/* 退会後のページ */
.delete_comp {
	margin: 60px auto 120px auto;
	width: 760px;
	background-color: #FFFFFF;
	border: solid 1px #bc9c70;
	border-radius: 6px;
	overflow: hidden;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.delete_comp .member_attention {
	margin: 0 0 30px 0;
}
.delete_comp .btn {
	display: block;
	text-align: center;
	min-width: 200px;
	padding: 9px 0;
	font-size: 18px;
	font-weight: bold;
	background-color: #fFFFFF;
	border: solid 1px #514343;
	color: #514343;
	border-radius: 6px;
	cursor: pointer;
}
.delete_comp .btn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 760px) {
	.delete_comp {
		margin: 0 auto 20vw auto;
		width: 100%;
		border-radius: 0;
		padding: 4vw 8vw;
		border: none;
	}
	.delete_comp > div {
		width: 100%;
		text-align: center;
	}
	.delete_comp .member_heder {
		display: flex;
		justify-content: center;
	}
	.delete_comp .member_attention {
		margin: 0 0 8vw 0;
	}
	.delete_comp .btn {
		display: block;
		text-align: center;
		width: 100%;
		padding: 2.5vw 0;
		font-size: 4vw;
	}
}


/* My出勤リスト */
.cast_schedule h1 {
	font-weight: bold;
	font-size: 24px;
	color: #664c4c;
	margin: 0 0 30px 0;
}
.cast_schedule h2 {
	font-weight: bold;
	font-size: 20px;
	color: #664c4c;
	margin: 0 0 15px 0;
}
.contents_block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media screen and (max-width: 760px) {
	.cast_schedule h1 {
		font-size: 4vw;
		padding: 6vw 4vw 3vw 4vw;
		margin: 0;
	}
	.cast_schedule h2 {
		padding: 4vw 4vw 2vw 4vw;
		font-size: 3.8vw;
		margin: 0 0 15px 0;
	}
	.contents_block {
		padding: 4vw;
	}
	.cast_schedule .contents_block {
		background-color: transparent;
	}
}


/* 日付選択 */
.schedule_select ul {
	display: flex;
	justify-content: space-between;
	margin: 0 0 20px 0;
}
.schedule_select li {
	width: 13%;
}
.schedule_select li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: solid 1px #8e8e8e;
	background-color: #FFFFFF;
	color: #5a3e3e;
	border-radius: 6px;
	padding: 8px 0;
	transition: all 150ms 0s ease;
}
.schedule_select li a:hover {
	background-color: #fff7e3;
}
.schedule_select li a.current {
	background-color: #ffe061;
	color: #5a3e3e;
}
.schedule_select li a .date {
	font-weight: bold;
}
.schedule_select li a .date.week0 {
	color: #FF0000;
}
.schedule_select li a .date.week6 {
	color: #006dff;
}
.check_schedule_btn {
	padding: 10px 15px 10px 18px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	color: #514343;
	border: 1px solid #8e8e8e;
	background-color: #FFFFFF;
	font-weight: bold;
}
@media screen and (max-width: 760px) {
	.schedule_select {
		max-width: 100%;
		overflow-x: auto;
		padding: 0 4vw;
	}
	.schedule_select ul {
		width: 180vw;
	}
	.schedule_select li a {
		padding: 2vw 0;
	}
}



/* キープ、店舗・キャスト共通 */
.keep_shop h1,
.keep_cast h1 {
	font-weight: bold;
	font-size: 24px;
	color: #664c4c;
	margin: 0 0 30px 0;
}
@media screen and (max-width: 760px) {
	.keep_shop h1,
	.keep_cast h1 {
		font-size: 4vw;
		padding: 6vw 4vw 3vw 4vw;
		margin: 0;
	}
	.keep_btns ul {
		display: flex;
		width: 100%;
		list-style: none;
		padding: 0;
		border: none;
	}
	.keep_btns ul li {
		width: 50%;
	}
	.keep_btns ul li a {
		display: flex;
		width: 100%;
		border: solid 1px #5a3e3e;
		color: #5a3e3e;
		padding: 1.5vw 2vw;
		font-size: 3.6vw;
		background-color: #FFFFFF;
		font-weight: bold;
		align-items: center;
	}
	.keep_btns ul li a.active {
		background-color: #ffe061;
	}
	.keep_btns ul li a span {
		display: flex;
		justify-content: center;
		align-items: center;
		line-height: 1;
		margin: 0 0 0 auto;
		width: 7vw;
		height: 7vw;
		background-color: #514343;
		color: #FFFFFF;
		border-radius: 200px;
	}
	.keep_btns ul li:first-child a {
		border-right: none;
		border-radius: 6px 0 0 6px;
	}
	.keep_btns ul li:last-child a {
		border-radius: 0 6px 6px 0;
	}
}

canvas#sineCanvas{
	margin-top: auto;
}
@media screen and (max-width: 760px) {
	canvas#sineCanvas {
		margin-top: -10vw;
	}
	.search_type ul{
		border: initial !important;
		border-radius: initial !important;
	}
	.search_type ul li {
		border: initial !important;
	}
}

/* もっと見るボタン */
.get_keep_list {
	width: 200px;
	height: 40px;
	margin: auto;
	background-color: #FFFFFF;
	border: solid 1px #8e8e8e;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5a3e3e;
	font-size: 16px;
	font-weight: normal;
	cursor: pointer;
}
