@charset "UTF-8";

.column__2col {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 5px;
}

/*--------------------------
* kv
*--------------------------*/
.kv {
	height: 340px;
	background-image: url(../img/top/bg_kv.jpg);
	background-position: center center;
}
.kv__wrap {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}
.kv__info {
	position: absolute;
	right: 8px;
	bottom: 28px;
	color: var(--main-color_dark);
	text-align: right;
}
.kv__info__open,
.kv__info__tel {
	font-family: var(--font-prata);
	text-shadow: #ffffff 1px 1px 0, #ffffff -1px -1px 0,
	#ffffff -1px 1px 0, #ffffff 1px -1px 0,
	#ffffff 0px 1px 0, #ffffff  0 -1px 0,
	#ffffff -1px 0 0, #ffffff 1px 0 0;
}
.kv__info__open {
	margin: 0 6px 5px 0;
	font-size: 26px;
}
.kv__info__tel {
	font-size: 48px;
}
.kv__info__tel--small {
	font-size: 26px;
}
.kv__logo__img {
	position: absolute;
	inset: auto auto 20px 0;
}

/*--------------------------
* newface
*--------------------------*/
.newface {
	margin-bottom: 5px;
	padding: 10px;
	border: 1px solid var(--main-color);
	border-radius: 4px;
	box-shadow: var(--box-shadow);
}
.newface__items {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	padding: 10px;
	background: var(--main-color005);
	overflow-x: scroll;
}
.newface__item {
	width: 180px;
	min-width: 180px;
}
.newface__date {
	margin-bottom: 5px;
	color: var(--secondary-color);
	text-decoration: none;
	text-align: center;
}
.newface__link {
	display: block;
	padding: 10px;
	background: white;
	border-radius: 4px;
	border: 1px solid #ccc;
	text-decoration: none;
}
.newface__tmb {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	border: 1px solid #ccc;
}
.newface__info {
	position: absolute;
	inset: auto auto 0 0;
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
	line-height: 1.2;
	gap: 10px;
	width: 100%;
	padding: 6px;
	font-size: 16px;
	color: white;
	background: rgba(0,0,0,0.5);
}
.newface__info__name {
	max-width: 110px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-break: break-all;
}
.newface__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.newface__notFound {
	text-align: center;
	padding: 60px 0;
	background: var(--main-color005);
}

/*--------------------------
* news
*--------------------------*/
.news {
	width: 330px;
	min-width: 330px;
	padding: 10px;
	border-radius: 4px;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--main-color);
}
.news__items {
	height: 578px;
	overflow: scroll;
}
.news__item {
	margin-bottom: 5px;
}
.news__link {
	display: block;
	padding: 15px 20px;
	background: var(--main-color005);
	text-decoration: none;
	border: 1px solid #ccc;
}
.news__tmb {
	margin-bottom: 15px;
}
.news__tmb__img {
	width: 100%;
}
.news__title {
	color: var(--secondary-color);
	margin-bottom: 15px;
}
.news__text {
	font-size: 13px;
	color: #333;
	line-height: 1.4;
}
.news__notFound {
	background: var(--main-color005);
	text-align: center;
	padding: 40px 0;
}

/*--------------------------
* slider
*--------------------------*/
.slider {
	width: 640px;
	min-width: 640px;
	padding: 10px;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--main-color);
	border-radius: 4px;
}
.slider .slider__img {
	width: 620px;
	height: 620px;
	object-fit: cover;
}
.slider .slick-prev,
.slider .slick-next,
.slider .slick-prev:before,
.slider .slick-next:before {
	width: initial;
	height: initial;
}
.slider .slick-prev:before,
.slider .slick-next:before {
	display: block;
	content: "";
	font-family: "Font Awesome 5 Free";
	font-size: 33px;
	color: var(--main-color05);
	font-weight: 900;
}
.slider .slick-prev:before {
	content: "\f137";
}
.slider .slick-next:before {
	content: "\f138";
}
.slider .slick-next {
	right: -25px;
	z-index: 1;
}
.slider .slick-prev {
	left: -25px;
	z-index: 1;
}

/*--------------------------
* blog
*--------------------------*/
.blog {
	width: 330px;
	padding: 10px;
	border: 1px solid var(--main-color);
	border-radius: 4px;
	box-shadow: var(--box-shadow);
}
.blog__notFound {
	padding: 40px 0;
	text-align: center;
}
.blog__item {
	margin-bottom: 10px;
}
.blog__tmb {
	position: relative;
	width: 105px;
	aspect-ratio: 3/4;
	background: #fff;
	border: 1px solid #1f406b;
}
.blog__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog__link {
	display: flex;
	gap: 20px;
	padding: 10px;
	background: var(--main-color01);
	text-decoration: none;
}
.blog__info {
	flex: 1;
}
.blog__info__wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.blog__info__title {
	margin-bottom: 5px;
	color: var(--secondary-color);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.blog__info__desc {
	margin-top: auto;
	background: var(--main-color);
	color: white;
	padding: 10px 0;
	box-shadow: -125px 0 0 0 var(--main-color);
	line-height: 1.2;
}
.blog__info__name {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 150px;
}
.blog__more {
	text-align: right;
}
.blog__more__link {
	text-decoration: none;
	font-size: 14px;
	color: var(--main-color);
}
.blog__more__link .fa-chevron-right {
	padding-left: 5px;
}

/*--------------------------
* schedule
*--------------------------*/
.schedule {
	border: 1px solid var(--main-color);
	border-radius: 4px;
	box-shadow: var(--box-shadow);
	margin-bottom: 5px;
	padding: 10px;
}
.schedule__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.schedule__item {
	width: calc((100% - 40px) / 5);
	border: 1px solid #ccc;
}
.schedule__link {
	display: block;
	padding: 10px;
	text-decoration: none;
}
.schedule__tmb {
	position: relative;
	margin-bottom: 5px;
	aspect-ratio: 3/4;
	overflow: hidden;
}
.schedule__flg {
	position: absolute;
	top: 5px;
	left: -61px;
	width: 100%;
	font-family: var(--font-gothic);
	font-size: 12px;
	color: white;
	text-align: center;
	background: var(--main-color_dark);
	transform: rotate(-33deg);
	padding: 5px 0 6px;
}
.schedule__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid #ccc;
}
.schedule__name {
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
	font-size: 13px;
	text-align: center;
	color: var(--text-color);
}
.schedule__name__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	max-width: 90px;
	text-align: left;
	word-break: break-all;
	margin-right: 5px;
}
.schedule__size {
	margin-bottom: 5px;
	font-size: 11px;
	color: var(--text-color);
	text-align: center;
}
.schedule__worktime {
	font-size: 14px;
	color: white;
	text-align: center;
	line-height: 1;
	background: var(--main-color_dark);
	border-radius: 4px;
	padding: 5px 0;
}
.schedule__notFound {
	padding: 80px 0;
	text-align: center;
}
.schedule__diamond {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.schedule__diamond__icon {
	width: 52px;
	height: auto;
}

/*--------------------------
* movie
*--------------------------*/
.movie {
	margin-bottom: 10px;
	padding: 10px;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--main-color);
	border-radius: 4px;
}
.movie__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(309px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}
.movie__item {
	padding: 10px;
	border: 1px solid #ccc;
}
.movie__link {
	display: block;
	text-decoration: none;
}
.movie__img {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}
.movie__src {
	width: 100%;
	margin-bottom: 6px;
}
.movie__name {
	padding: 10px;
	font-size: 14px;
	background: var(--main-color);
	text-align: center;
	color: white;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.movie__notFound {
	padding: 80px 0;
	text-align: center;
}
.movie__more {
	text-align: right;
	font-size: 14px;
}
.movie__more__link {
	text-decoration: none;
	color: var(--main-color);
}
.movie__more__link .fa-chevron-right {
	padding-left: 10px;
}

/*--------------------------
* ranking
*--------------------------*/
.ranking {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.ranking .ranking__wrap:first-child {
	width: 100%;
	box-shadow: var(--box-shadow);
	border: 1px solid var(--main-color);
	border-radius: 4px;
}
.ranking .ranking__wrap:first-child .ranking__title {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: linear-gradient(#fefefe,#f0f0f0);
	border-bottom: 1px solid var(--main-color);
}
.ranking .ranking__wrap:first-child .ranking__title__link {
	color: var(--main-color);
	text-decoration: none;
}
.ranking .ranking__wrap:first-child .ranking__title .fa-crown {
	margin-right: 10px;
}
.ranking .ranking__wrap:first-child .ranking__title__text {
	padding: 15px 20px;
	font-size: 20px;
	color: var(--main-color);
}
.ranking .ranking__wrap:first-child .ranking__tmb {
	aspect-ratio: 3/4;
	overflow: hidden;
	margin-bottom: 10px;
}
.ranking .ranking__wrap:first-child .ranking__tmb__img {
	width: 156px;
	height: 208px;
	object-fit: cover;
	overflow: hidden;
}
.ranking .ranking__wrap:first-child .ranking__items {
	display: flex;
	margin: 10px;
	padding: 10px;
	gap: 15px;
	background: var(--main-color005);
}
.ranking .ranking__wrap:first-child .ranking__item {
	width: calc((100% - 60px) / 5);
}
.ranking .ranking__wrap:first-child .ranking__link {
	display: block;
	padding: 10px;
	background: white;
	border: 1px solid #ccc;
	text-decoration: none;
}
.ranking .ranking__wrap:first-child .ranking__num {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #000;
	font-family: var(--font-mincho);
}
.ranking .ranking__wrap:first-child .ranking__name {
	display: flex;
	justify-content: center;
	color: #000;
	text-align: center;
}
.ranking .ranking__wrap:first-child .ranking__name__text {
	max-width: 80px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-break: break-all;
}
.ranking .ranking__wrap:first-child .ranking__item .fa-crown {
	margin-right: 10px;
}
.ranking .ranking__wrap:first-child .ranking__item--1 .fa-crown {
	color: #FDC551;
}
.ranking .ranking__wrap:first-child .ranking__item--2 .fa-crown {
	color: #CCD0D5;
}
.ranking .ranking__wrap:first-child .ranking__item--3 .fa-crown {
	color: #A18E5B;
}
.ranking .ranking__wrap:first-child .ranking__item--4 .fa-crown {
	color: #F58E7D;
}
.ranking .ranking__wrap:first-child .ranking__item--5 .fa-crown {
	color: #79D1B0;
}


.ranking .ranking__wrap:nth-child(n+2) {
	width: calc((100% - 3%) / 4);
	margin-top: 10px;
	margin-right: 1%;
}
.ranking .ranking__wrap:nth-child(5),
.ranking .ranking__wrap:nth-child(9),
.ranking .ranking__wrap:nth-child(13),
.ranking .ranking__wrap:nth-child(17),
.ranking .ranking__wrap:nth-child(21) {
	margin-right: 0 !important;
}
.ranking .ranking__wrap:nth-child(n+2) .ranking__title__text {
	border: 1px solid var(--main-color);
	border-radius: 4px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.ranking .ranking__wrap:nth-child(n+2) .ranking__title__link {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 17px;
	color: var(--main-color);
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 28px 10px;
}
.ranking .ranking__wrap:nth-child(n+2) .ranking__title .fa-crown {
	margin-right: 8px;
}
.ranking .ranking__wrap:nth-child(n+2) .ranking__items {
	display: none;
}

/*--------------------------
* bnr
*--------------------------*/
.bnr {
	margin-bottom: 40px;
}
.bnr .bnr__wrap {
}
.bnr .bnr__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.bnr .bnr__item {
	width: 480px;
}
.bnr .bnr__link {
	display: block;
	border: 1px solid var(--main-color_dark);
}
.bnr .bnr__img {
	display: block;
	width: 100%;
}
