@charset "UTF-8";

/*-------------------------------

　共通 style

-------------------------------*/

/*---------- base ----------*/

body {
	color: #333;
	font-size: 16px;
	line-height: 1.5em;
	background-color: rgba(0, 0, 0, 0.05);
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	margin-top: 56px;
}
#wrapper {
	width: 640px;
	min-height: 100%;
	max-width: 100%;
	margin: auto;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background-image: url(/maugroup/estee/img/bg.png);
	background-repeat: repeat;
	background-position: center;
	background-size: 150px auto;
	position: relative;
	overflow: hidden;
}
section {
	padding: 10px 10px;
}
p {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
a {
	color: #555;
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
}
a, a:hover {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.fuwafuwa {
	-webkit-animation: fuwafuwa 3s infinite linear alternate;
	animation: fuwafuwa 3s infinite linear alternate;
}
@-webkit-keyframes fuwafuwa {
	0% {
		-webkit-transform: translate(0, 0) rotate(-3deg);
	}
	50% {
		-webkit-transform: translate(0, -2px) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(0, 0) rotate(3deg);
	}
}
@keyframes fuwafuwa {
	0% {
		-webkit-transform: translate(0, 0) rotate(-3deg);
		transform: translate(0, 0) rotate(-3deg);
	}
	50% {
		-webkit-transform: translate(0, -3px) rotate(0deg);
		transform: translate(0, -3px) rotate(0deg);
	}
	100% {
		-webkit-transform: translate(0, 0) rotate(3deg);
		transform: translate(0, 0) rotate(3deg);
	}
}

/*---------- title ----------*/

h1, h2, h4 {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
h1 {
	background-color: #222;
	color: #fff;
	text-align: left;
	font-size: 1.0em;
	line-height: 1.4em;
	font-weight: normal;
	margin: 0 0 0 0;
	padding: 15px 15px 13px 15px;
	word-break: break-all;
}
h1 small, .caption small {
	font-size: 0.7em;
	margin-right: 4px;
}
h2 {
	background-color: #222;
	color: #fff;
	font-size: 1.4em;
	line-height: 1.6em;
	font-weight: normal;
	margin: 0 0 0 0;
	padding: 15px 15px 12px 20px;
	position: relative;
	display: block;
	letter-spacing: 1px;
}
h2 small {
	font-size: 0.7em;
	margin-left: 8px;
	opacity: 0.8;
	letter-spacing: 0;
	font-weight: normal;
}
h2:before {
	content: "";
	position: absolute;
	left: 0;
	width: 8px;
	height: 30px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	display: block;
}
h3 {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
h4 {
	font-size: 1.2em;
	border-radius: 2px;
	padding: 10px;
	color: #fff;
}
h5 {
	font-size: 1.1em;
	margin: 0px 0 10px 0;
	padding: 5px 0;
}
.caption {
	background-color: #222;
	color: #fff;
	text-align: center;
	font-size: 1.1em;
	line-height: 1.5em;
	font-weight: normal;
	margin: 0 0 0 0;
	padding: 15px 15px 12px 15px;
}
.inner {
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}

/*---------- header ----------*/

#top-head {
	top: -130px;
	position: absolute;
	width: 640px;
	max-width: 100%;
	margin: 100px auto 0;
	padding: 30px 0 0;
	line-height: 1;
	z-index: 999;
}
#top-head .inner {
	position: relative;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 14px;
}
#global-nav ul li {
	float: left;
}
#global-nav ul li a {
	padding: 0 30px;
	position: relative;
}
#global-nav ul li a:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-size: 1.1em;
	font-weight: 400;
	left: 15px;
	top: 0;
	bottom: 0;
	height: 18px;
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
}
#global-nav ul li.icon-top a:before {
	content: "\F186";
}
#global-nav ul li.icon-cast a:before {
	content: "\F118";
}
#global-nav ul li.icon-blog a:before {
	content: "\F075";
}
#global-nav ul li.icon-news a:before {
	content: "\F0F3";
}
#global-nav ul li.icon-access a:before {
	content: "\F279";
}
#global-nav ul li.icon-recruit a:before {
	content: "\F3A5";
}

/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 10px;
	height: 55px;
	background: #fff;
	background: rgba(255, 255, 255, 0.9);
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
	font-size: 24px;
	color: #333;
}
#top-head.fixed #global-nav ul li a {
	color: #333;
	padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	left: 6px;
	top: 6px;
	width: 25px;
	height: 35px;
	cursor: pointer;
	z-index: 101;
	background-color: #eee;
	padding: 5px 10px;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle div .menu {
	position: absolute;
	bottom: -31px;
	left: -3px;
	height: 5px;
	font-size: 9px;
	letter-spacing: 1px;
}
#nav-toggle span:nth-child(1) {
	top: 2px;
}
#nav-toggle span:nth-child(2) {
	top: 9px;
}
#nav-toggle span:nth-child(3) {
	top: 17px;
}
.nav-tel a {
	color: #fff;
	background-color: rgba(0, 153, 204, 1);
	display: block;
	padding: 4px;
	position: absolute;
	right: 6px;
	top: 6px;
	cursor: pointer;
	z-index: 101;
	border: 1px solid rgba(255, 255, 255, 0);
	text-align: center;
	letter-spacing: 1px;
	font-size: 9px;
	border-radius: 100%;
	width: 35px;
	height: 35px;
}
.nav-tel span {
	opacity: 0.8;
}
.nav-tel i {
	display: block;
	padding: 3px;
	font-size: 16px;
	margin-bottom: 1px;
}
.logo {
	position: relative;
}
.logo img {
	width: 100px;
	height: 50px;
	position: fixed;
	left: 0;
	right: 0;
	top: 2.5px;
	margin-left: auto;
	margin-right: auto;
}
#global-nav ul {
	padding: 0;
	margin: 0;
}
#top-head, .inner {
	width: 640px;
	max-width: 100%;
	padding: 0;
}
#top-head {
	top: 0;
	position: fixed;
	margin-top: 0;
}

/* Fixed reset */
#top-head.fixed {
	padding-top: 0;
	background: transparent;
}
#mobile-head {
	background: #fff;
	width: 640px;
	max-width: 100%;
	height: 56px;
	z-index: 999;
	position: relative;
}
#top-head.fixed .logo, #top-head .logo {
	position: absolute;
	left: 13px;
	top: 13px;
	color: #333;
	font-size: 26px;
}
#global-nav {
	position: absolute;
	/* 開いてないときは画面外に配置 */
	top: -500px;
	background: #fff;
	width: 640px;
	max-width: 100%;
	text-align: center;
	padding: 0px 0;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
#global-nav ul {
	list-style: none;
	position: static;
	right: 0;
	bottom: 0;
	font-size: 16px;
	border-top: 1px solid #ddd;
}
#global-nav ul li {
	float: none;
	position: static;
	border-bottom: 1px solid #ddd;
}
#top-head #global-nav ul li a, #top-head.fixed #global-nav ul li a {
	width: 640px;
	max-width: 100%;
	display: block;
	color: #555;
	padding: 18px 0;
	text-decoration: none;
}
#nav-toggle {
	display: block;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
	/* #global-nav top + #mobile-head height */
	-webkit-transform: translateY(556px);
	transform: translateY(556px);
}
#global-nav ul li a:hover {
	background-color: #eee;
}
.hide {
	display: none;
}

/*---------- footer ----------*/

footer {
	margin: 75px 0 0 0;
	padding: 0px 10px 10px 10px;
	border-top: solid 6px;
	background-color: #fff;
	font-size: 0.9em;
	position: relative;
	z-index: 99;
}
.footer {
	position: relative;
}
.attention {
	font-size: 0.9em;
	line-height: 1.6em;
	text-align: center;
	margin-top: 10px;
}
.info {
	text-align: center;
	line-height: 1.6em;
	margin: 20px 0 0 0;
}
.info img {
	display: block;
	width: 150px;
	max-width: 100%;
	margin: 5px auto 5px;
}
.info p {
	line-height: 1.3em;
	margin-bottom: 5px;
}
footer ul.lnk {
	margin: 0 -10px 10px -10px;
	padding: 0 0 0 0;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
footer ul.lnk li {
	display: inline-block;
	width: 48%;
	font-size: 0.85em;
}
footer ul.lnk li:first-child {
	border-right: 1px solid #ccc;
}
footer ul.lnk li i {
	margin-right: 5px;
	opacity: 0.45;
}
footer ul.lnk li a {
	color: #555;
	background-color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	padding: 8px 0;
	text-decoration: none;
}
footer ul.sns {
	margin: 20px 0 0 0;
	padding: 0 0 0 0;
	font-size: 1.8em;
	text-align: center;
}
footer ul.sns li {
	margin: 0 0 0 15px;
	padding: 0 0 0 0;
	display: inline-block;
}
footer ul.sns li a {
	background-color: #555;
	color: #fff;
	border-radius: 20px;
	width: 30px;
	height: 30px;
	padding: 10px;
	display: block;
}
footer ul.sns li a i {
	font-size: 30px;
}
footer ul.sns li a:hover {
	opacity: 0.6;
}
.recommended-frame {
	border: 2px solid #eee;
	padding: 1px;
}
.recommended {
	padding: 10px 0 6px 0;
	text-align: center;
	background-color: #eee;
}
.recommended a:hover {
	text-decoration: underline;
}
.recommended p {
	margin: 0 0 8px;
	color: #888;
	font-size: 13px;
	font-weight: bold;
}
.recommended p::before {
	content: "＼";
	opacity: 0.3;
	margin-right: 10px;
}
.recommended p::after {
	content: "/";
	opacity: 0.3;
	margin-left: 10px;
}
.recommended ul {
	margin: 0 0 0 0;
	padding: 0px 10px 5px;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.recommended ul li {
	list-style-type: none;
}
.recommended ul li a {
	display: block;
	font-size: 11px;
	background-color: #fff;
	list-style-type: none;
	padding: 7px 7px 0 0;
	border-bottom: solid 2px #ddd;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	font-weight: bold;
	position: relative;
}
.recommended ul li a:hover {
	text-decoration: none;
	color: #fff;
	position: relative;
	box-shadow: 0px 0px 1px rgba(255, 255, 255, 0.3);
	border-bottom: solid 2px #bbb;
	opacity: 0.7;
}
.recommended ul li a:hover::before {
	content: "";
	border: 1px solid #888;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	top: -0.5px;
	left: -0.5px;
	opacity: 0.5;
}
.recommended ul li a::after {
	content: "\f360";
	font-family: "Font Awesome 5 Free";
	width: 23px;
	height: 23px;
	font-size: 12px;
	display: block;
	position: absolute;
	right: 3px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	color: #ddd;
}
.recommended ul li img {
	max-width: 100%;
	height: 50px;
	margin: 0;
	border-radius: 5px;
}
.copyright {
	text-align: center;
	font-size: 0.75em;
	letter-spacing: 1px;
	margin-top: 10px;
}

/*---------- pagetop ----------*/

.footer .pagetop {
	width: 100px;
	height: 100px;
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	color: #fff;
	border-radius: 100%;
	z-index: 1;
}
.footer .pagetop-txt {
	width: 100px;
	height: 100px;
	display: block;
	position: relative;
}
.footer .pagetop-txt:before {
	content: "\F102";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	top: 6px;
	margin: 0 auto;
	opacity: 0.6;
	letter-spacing: 0;
}
.footer .pagetop-txt p {
	position: absolute;
	text-align: center;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 100px;
	height: 75px;
	margin: auto;
	font-size: 0.9em;
	letter-spacing: 2px;
}

/*---------- line ----------*/
#wrapper #btn-line {
	position: fixed;
	width: 28%;
	height: auto;
	margin: auto;
	max-width: 135px;
	z-index: 998;
}
#btn-line img {
	-webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
	margin-left: 5%;
}
#btn-line img, #btn-line a {
	display: block;
	width: 100%;
	height: 100%;
}
#btn-line:hover {
	opacity: 0.95;
}

/*---------- btn ----------*/

.btn {
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	padding: 15px 15px 15px 0px;
	margin: 10px auto 30px auto;
	width: 250px;
	max-width: 100%;
	position: relative;
}
.btn:hover {
	opacity: 0.7;
	color: #fff;
	cursor: pointer;
}
.btn i {
	margin-right: 10px;
	opacity: 0.8;
}
.btn:after {
	content: "\F105";
	font-family: "Font Awesome 5 Free";
	width: 23px;
	height: 23px;
	display: block;
	position: absolute;
	right: 8px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	color: rgba(255, 255, 255, 0.6);
}
.btns {
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 30px 15px 20px 15px;
}
.btn_entry {
	width: 640px;
	max-width: 90%;
	margin: 0 auto 10px auto;
	text-decoration: none;
	color: #fff;
	background-color: #ff8b5f;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
	border-bottom: solid 3px #c58668;
	border-radius: 4px;
	display: block;
	position: relative;
	padding: 14px 10px 12px;
}
.btn_entry i {
	width: 20px;
	height: 20px;
	margin: auto;
	font-size: 20px;
	left: 15px;
	position: absolute;
	top: 0;
	bottom: 0;
	opacity: 0.6;
}
.btn_entry::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	width: 20px;
	height: 20px;
	margin: auto;
	font-size: 20px;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	opacity: 0.4;
	font-weight: bold;
}
.btn_mail {
	background-image: -webkit-linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
	background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
}
.btn_mail small {
	display: block;
	font-weight: normal;
	font-size: 0.8em;
}
.btn_mail small::before {
	content: "＼";
	margin-right: 5px;
	opacity: 0.5;
}
.btn_mail small::after {
	content: "／";
	margin-left: 5px;
	opacity: 0.5;
}
.btn_tel {
	font-size: 14px;
	border-bottom: solid 3px #006699;
	background-image: -webkit-linear-gradient(45deg, #0099CC 0%, #4682b4 100%);
	background-image: linear-gradient(45deg, #0099CC 0%, #4682b4 100%);
}
.btn_line {
	font-size: 14px;
	border-bottom: solid 3px #6b8e23;
	background-image: -webkit-linear-gradient(45deg, #7ece46 0%, #65b130 100%);
	background-image: linear-gradient(45deg, #7ece46 0%, #65b130 100%);
}
.btn_line i {
	opacity: 0.8;
	font-size: 1.9em;
	margin-top: 12px;
	margin-left: -2px;
}

/*---------- cast ----------*/

#cast {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
}
#cast:before, #cast:after {
	content: " ";
	display: table;
}
#cast:after {
	clear: both;
}
#cast {
	*zoom: 1;
}
#cast .card:nth-of-type(1), #cast .card:nth-of-type(2), #cast .card:nth-of-type(4), #cast .card:nth-of-type(5) {
	margin-right: 2%;
}
.card {
	background-color: #fff;
	padding: 2%;
	float: left;
	width: 26%;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 5px 0;
	position: relative;
}

.card img{
	position: absolute;
  top: -8px;
  left: -4px;
  width: 40px;
  height: 44px;
  opacity: 0.85;
}

.cast-img {
	background-size: cover;
	background-position: center;
	padding-top: 100%;
	display: block;
}
.card h3 {
	text-align: center;
	margin: 8px 0 0 0;
	padding: 0 0 0 0;
	display: block;
	line-height: 1.1em;
}
.card h3 small {
	font-size: 0.6em;
	display: block;
	opacity: 0.6;
}
.card .comment {
	opacity: 0.6;
	padding: 0 0 0 0;
	display: block;
	position: relative;
}
.card .comment p {
	font-size: 12px;
	line-height: 1.5em;
}
/*---------- rank ----------*/
#rank {
	display: block;
	margin: 0 auto;
	width: 100%;
	text-align: center!important;
	padding: 0px!important;
	margin: 4% 3.5%;
}
#rank:before, #rank:after {
	content: " ";
	display: table;
}
#rank:after {
	clear: both;
}
#rank a.rank-c:nth-of-type(1){
	background-color: #fff;
	padding: 2%;
	display: block;
  width: 25%;
	height:auto;
	float: left;
	margin-right: 1%;
	margin-bottom: 15px;
	position: relative;
	border: 4px double #ceae66;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#rank a.rank-c:nth-of-type(2){
	background-color: #fff;
	padding: 2%;
	display: block;
  width: 25%;
	height:auto;
	float: left;
	margin-right: 1%;
	margin-bottom: 15px;
	position: relative;
	border: 4px double #9d9e9e;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#rank a.rank-c:nth-of-type(3){
	background-color: #fff;
	padding: 2%;
	display: block;
  width: 25%;
	height:auto;
	float: left;
	position: relative;
	margin-right: 0px;
	margin-bottom: 15px;
	border: 4px double #ca8d56;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#rank a.rank-c{
	background-color: #fff;
	padding: 2%;
	display: block;
  width: 25%;
	height:auto;
	float: left;
	margin-right: 1%;
	margin-bottom: 15px;
	position: relative;
	border: 4px double #ccc;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#rank ul,li{
	display: block;
	list-style-type: none!important;
	margin-block-start: 0px;
	margin-block-end: 0px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 0px;
}
#rank .rank-c:nth-of-type(1) h3:before{
	white-space: pre;
	content: "\F521\ANo.1";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	color: #ceae66;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(2) h3:before{
	white-space: pre;
	content: "\F521\ANo.2";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	color: #9d9e9e;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(3) h3:before{
	white-space: pre;
	content: "\F521\ANo.3";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	color: #ca8d56;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(4) h3:before{
	white-space: pre;
	content: "\F521\ANo.4";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(5) h3:before{
	white-space: pre;
	content: "\F521\ANo.5";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(6) h3:before{
	white-space: pre;
	content: "\F521\ANo.6";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(7) h3:before{
	white-space: pre;
	content: "\F521\ANo.7";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(8) h3:before{
	white-space: pre;
	content: "\F521\ANo.8";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(9) h3:before{
	white-space: pre;
	content: "\F521\ANo.9";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(10) h3:before{
	white-space: pre;
	content: "\F521\ANo.10";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(11) h3:before{
	white-space: pre;
	content: "\F521\ANo.11";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
#rank .rank-c:nth-of-type(12) h3:before{
	white-space: pre;
	content: "\F521\ANo.12";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	line-height: 1.2em;
	font-size: 80%;
}
.mb20{
	margin-bottom: 20px;
}
.card-r {
	width: 100%;
}
.card-r img{
	position: absolute;
  top: -8px;
  left: -4px;
  width: 40px;
  height: 44px;
  opacity: 0.85;
}
.cast-img {
	background-size: cover;
	background-position: center;
	padding-top: 100%;
	display: block;
}
.card-r h3 {
	text-align: center;
	margin: 8px 0 0 0;
	padding: 0 0 0 0;
	display: block;
	line-height: 1.1em;
	font-size: 110%;
}
.card-r h3:before {
	content: "\F521";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	color: #333;
	font-size: 70%;
}
.card-r .crown{
	display: block;
	margin: 0;
	padding: 3%;
	margin-top: 2%;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
}
.card-r h3 small {
	font-size: 0.6em;
	display: block;
	opacity: 0.6;
}
.card-r .comment {
	opacity: 0.6;
	padding: 0 0 0 0;
	display: block;
	position: relative;
}
.card-r .comment p {
	font-size: 12px;
	line-height: 1.5em;
}
/*---------- blog(post) ----------*/

.post {
	background-color: #fff;
	display: block;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 8px auto;
	padding: 15px;
	position: relative;
	background-repeat: no-repeat;
	background-size: auto 120%;
	background-position: left -35px center;
	min-height: 120px;
	/* height: 120px; */
}
.post:after {
	content: "\F141";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	opacity: 0.3;
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	right: 0px;
	bottom: 1%;
	color: rgba(0, 0, 0, 0.6);
	font-size: 15px;
}
.post-data {
	opacity: 0.6;
	font-size: 0.8em;
}
.post-data span {
	margin-left: 8px;
	font-size: 11px;
	padding: 2px 5px 1.5px;
	color: #fff;
}
.post-img {
	float: left;
	width: 125px;
	height: 125px;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #eaeaea;
	margin-right: 15px;
}
.post h3 {
	margin: 5px 0 5px 0;
	padding: 0 0 0 0;
	display: block;
	font-size: 1.1em;
}
.post-txt {
	font-size: 0.9em;
	line-height: 1.3em;
	max-height: 38px;
	margin-bottom: 4px;
	overflow: hidden;
}
.post-name {
	opacity: 0.6;
	font-size: 0.8em;
	margn-top: 20px;
}

/*---------- news(topic) ----------*/

#news {
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 8px auto;
}
.topic {
	display: block;
	padding: 3% 3% 3% 3%;
	position: relative;
	border-bottom: 1px dotted #ccc;
	font-size: 0;
	height: auto;
}
.topic::after {
	content: "";
	clear: both;
	display: block;
}
.topic:last-child {
	border-bottom: none;
}
.topic-data {
	font-size: 0.8em;
}
.topic-data img{
	margin: 20px auto;
	display: block;
	width:70%;
	height:30%;
	text-align: center;
}
.topic h3 {
	margin: 1% 0 1.6% 0;
	padding: 0 0 0 0;
	display: block;
	font-size: 1.1em;
}
.topic-img {
	display: inline-block;
	width: 125px;
	height:125px;
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.03);
	margin-right: 3%;
	vertical-align: top;
	border: 1px solid #ccc;
	float:left!important;

}
.topic-txt {
	display: block;
	font-size: 14px;
	line-height: 1.7em;
	width:auto;
	height:auto;
	overflow:hidden;
}
.post-ymd{
	border-left: 3px solid #222;
	padding-left: 5px;
	font-size: 13px;
}
/* ////////////////////////////ランキング//////////////////////////// */

/* title */
.ranking h2.h2-icon i {
	left: 10px;
}
/* タブ切り替え全体のスタイル */
.tabs {
	padding-bottom: 10px;
	width: 100%;
	margin: 0 auto;
	margin-top: 20px;
}

/* タブのスタイル */
.tab_item {
	width: calc(100%/3);
	height: 40px;
	border-bottom: 3px solid rgba(0, 0, 0, 1);
	background-color: rgba(255, 255, 255, 0.8);
	line-height: 40px;
	font-size: 13px;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	-webkit-border-radius: 8px 8px 0px 0px / 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px / 8px 8px 0px 0px;
	border-radius: 8px 8px 0px 0px / 8px 8px 0px 0px;
}
.tab_item:hover {
	opacity: 0.75;
}
.tab_item strong {
	font-size: 1.8em;
	font-weight: bold;
	margin-left: 2px;
	font-style: italic;
	font-family: cursive, serif;
	color:#ceae66;
}

/* ラジオボタンを全て消す */
input[name="tab_item"] {
	display: none;
}
/* タブ切り替えの中身のスタイル */
.tab_content {
	display: none;
	clear: both;
	overflow: hidden;
}

/* 選択されているタブのコンテンツのみを表示 */
#daily:checked ~ #daily_content, #total:checked ~ #total_content, #weekly:checked ~ #weekly_content, #monthly:checked ~ #monthly_content, #design:checked ~ #design_content {
	display: block;
}

/* 選択されているタブのスタイルを変える */
.tabs input:checked + .tab_item {
	background-color: rgba(0, 0, 0, 0.9);
	color: #fff;
}

/* ランキング */
.ranking .slider li {
	position: relative;
	padding-top: 25px;
}
.ranking .slider li:nth-child(1):before, .ranking .slider li:nth-child(2):before, .ranking .slider li:nth-child(3):before {
	content: "";
	position: absolute;
	top: 5px;
	width: 20px;
	height: 20px;
	left: -4px;
	right: 0;
	margin: 0 auto;
	color: rgba(255, 255, 255, 1.0);
	font-size: 13px;
	font-weight: bold;
	font-style: italic;
	z-index: 2;
}
.ranking .slider li:nth-child(1):after, .ranking .slider li:nth-child(2):after, .ranking .slider li:nth-child(3):after {
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px auto;
	position: absolute;
	top: -7px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	display: inline-block;
	z-index: 1;
}
.ranking .slider li:nth-child(1):before {
	content: "1";
}
.ranking .slider li:nth-child(1):after {
	background-image: url(img/rank1.png);
}
.ranking .slider li:nth-child(2):before {
	content: "2";
}
.ranking .slider li:nth-child(2):after {
	background-image: url(img/rank2.png);
}
.ranking .slider li:nth-child(3):before {
	content: "3";
}
.ranking .slider li:nth-child(3):after {
	background-image: url(img/rank3.png);
}
/*-------------------------------

　店舗別カラー

-------------------------------*/

/*---------- hermitage ----------*/

.hermitage h1, .hermitage .caption {
	border-bottom: 8px solid #FA8072;
}
.hermitage h2:before {
	background-color: #FA8072;
}
.hermitage h4 {
	background-color: #FA8072;
}
.hermitage h5 {
	color: #FA8072;
	border-bottom: 1px dotted #FA8072;
}
.hermitage strong {
	color: #FA8072;
}
.hermitage .btn {
	background-color: #FA8072;
}
.hermitage #global-nav ul li a:before {
	color: #FA8072;
}
.hermitage footer {
	border-color: #FA8072;
}
.hermitage .footer .pagetop {
	background-color: #FA8072;
}
.hermitage .post-data span {
	background-color: #FA8072;
}

/*---------- mau ----------*/

.mau h1, .mau .caption {
	border-bottom: 8px solid #be9557;
}
.mau h2:before {
	background-color: #be9557;
}
.mau h4 {
	background-color: #be9557;
}
.mau h5 {
	color: #be9557;
	border-bottom: 1px dotted #be9557;
}
.mau strong {
	color: #be9557;
}
.mau .btn {
	background-color: #be9557;
}
.mau #global-nav ul li a:before {
	color: #be9557;
}
.mau footer {
	border-color: #be9557;
}
.mau .footer .pagetop {
	background-color: #be9557;
}
.mau .post-data span {
	background-color: #be9557;
}

/*---------- hh ----------*/

.h h1, .h .caption {
	border-bottom: 8px solid #ff7e00;
}
.h h2:before {
	background-color: #ff7e00;
}
.h h4 {
	background-color: #ff7e00;
}
.h h5 {
	color: #ff7e00;
	border-bottom: 1px dotted #ff7e00;
}
.h strong {
	color: #ff7e00;
}
.h .btn {
	background-color: #ff7e00;
}
.h #global-nav ul li a:before {
	color: #ff7e00;
}
.h footer {
	border-color: #ff7e00;
}
.h .footer .pagetop {
	background-color: #ff7e00;
}
.h .post-data span {
	background-color: #ff7e00;
}

/*---------- estee ----------*/

.estee h1, .estee .caption {
	border-bottom: 8px solid #ce3a3a;
}
.estee h2:before {
	background-color: #ce3a3a;
}
.estee h4 {
	background-color: #ce3a3a;
}
.estee h5 {
	color: #ce3a3a;
	border-bottom: 1px dotted #ce3a3a;
}
.estee strong {
	color: #ce3a3a;
}
.estee .btn {
	background-color: #ce3a3a;
}
.estee #global-nav ul li a:before {
	color: #ce3a3a;
}
.estee footer {
	border-color: #ce3a3a;
}
.estee .footer .pagetop {
	background-color: #ce3a3a;
}
.estee .post-data span {
	background-color: #ce3a3a;
}

/*---------- el ----------*/

.el h1, .el .caption {
	border-bottom: 8px solid #7c5f41;
}
.el h2:before {
	background-color: #7c5f41;
}
.el h4 {
	background-color: #7c5f41;
}
.el h5 {
	color: #7c5f41;
	border-bottom: 1px dotted #7c5f41;
}
.el strong {
	color: #7c5f41;
}
.el .btn {
	background-color: #7c5f41;
}
.el #global-nav ul li a:before {
	color: #7c5f41;
}
.el footer {
	border-color: #7c5f41;
}
.el .footer .pagetop {
	background-color: #7c5f41;
}
.el .post-data span {
	background-color: #7c5f41;
}

/*---------- ragdoll ----------*/

.ragdoll h1, .ragdoll .caption {
	border-bottom: 8px solid #9685af;
}
.ragdoll h2:before {
	background-color: #9685af;
}
.ragdoll h4 {
	background-color: #9685af;
}
.ragdoll h5 {
	color: #9685af;
	border-bottom: 1px dotted #9685af;
}
.ragdoll strong {
	color: #9685af;
}
.ragdoll .btn {
	background-color: #9685af;
}
.ragdoll #global-nav ul li a:before {
	color: #9685af;
}
.ragdoll footer {
	border-color: #9685af;
}
.ragdoll .footer .pagetop {
	background-color: #9685af;
}
.ragdoll .post-data span {
	background-color: #9685af;
}

/*---------- leon ----------*/

.leon h1, .leon .caption {
	border-bottom: 8px solid #22b573;
}
.leon h2:before {
	background-color: #22b573;
}
.leon h4 {
	background-color: #22b573;
}
.leon h5 {
	color: #22b573;
	border-bottom: 1px dotted #22b573;
}
.leon strong {
	color: #22b573;
}
.leon .btn {
	background-color: #22b573;
}
.leon #global-nav ul li a:before {
	color: #22b573;
}
.leon footer {
	border-color: #22b573;
}
.leon .footer .pagetop {
	background-color: #22b573;
}
.leon .post-data span {
	background-color: #22b573;
}

@media screen and (max-width: 500px) {
#cast {
	padding: 10px 10px
}
#rank {
	display: block;
	margin: 0 auto;
	width: 100%;
	text-align: center!important;
	padding: 0px!important;
	margin: 5% 2%;
}
.card-r h3 {
	font-size: 100%;
}
}
