@charset "UTF-8";

.blog {
	border: 1px solid var(--main-color);
	box-shadow: var(--box-shadow);
	border-radius: 4px;
}
.blog .title {
	margin-bottom: 20px;
}
.blog__wrap {
	padding: 15px;
}
.blog__contents {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}
.blog__left {
	width: 200px;
}
.blog__right {
	width: 680px;
}
.blog__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 8px 15px;
	font-size: 17px;
	color: var(--secondary-color);
	background: var(--main-color01);
}
.blog__head__name {
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.blog__item {
	border: 1px solid #ccc;
}
.blog__item:not(:last-child) {
	margin-bottom: 20px;
}
.blog__link {
	text-decoration: none;
}
.blog__inner {
	display: flex;
	padding: 15px 20px;
}
.blog__tmb {
	width: 100px;
	margin-right: 20px;
	aspect-ratio: 3/4;
}
.blog__tmb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog__desc {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: var(--text-color);
	line-height: 1.4;
	margin-right: 50px;
}
.blog__desc__publish {
	margin-top: auto;
}
.blog__desc__title {
	font-size: 20px;
	color: var(--text-color);
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 10px;
}
.blog__desc__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}
.blog__inner:after {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	margin: auto 0;
	content: "\f105";
	color: white;
	font-family: 'Font Awesome 6 Free';
	font-weight: 600;
	width: 32px;
	height: 32px;
	background: var(--main-color05);
	border-radius: 50%;
}
.calendar {
	margin-bottom: 45px;
}
.calendar__table {
	display: table;
	width: 100%;
	text-align: center;
	vertical-align: middle;
	border-collapse:collapse;
}
.calendar__row {
	display: table-row;
}
.calendar__row:first-child {
	padding-bottom: 15px;
}
.calendar__row:not(:last-child) {
	border-bottom: 1px solid var(--main-color);
}
.calendar__table .calendar__row:not(:last-child) {
	border-bottom: 1px solid var(--main-color);
}
.calendar__cell {
	display: table-cell;
	font-weight: bold;
}
.calendar__title {
	margin-bottom: 15px;
	color: var(--main-color_dark);
	font-weight: bold;
	text-align: center;
}
.calendar__link {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8px auto;
	width: 22px;
	height: 22px;
	font-size: 14px;
}
a.calendar__link {
	text-decoration: none;
	background: var(--main-color005);
	border-radius: 50%;
	color: var(--main-color);
	font-weight: bold;
}
.archive__title {
	margin-bottom: 5px;
	padding-bottom: 5px;
	text-align: center;
	font-weight: bold;
	color: var(--main-color_dark);
	border-bottom: 1px solid #000;
}
.archive__table {
	display: table;
	width: 100%;
}
.archive__table__row {
	display: table-row;
}
.archive__table__cell {
	display: table-cell;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: bold;
	color: var(--text-color);
}
.archive__table__link {
	color: var(--text-color);
}
.archive__table__cell:last-child {
	text-align: right;
}
.girlProfile {
	margin-bottom: 20px;
	background: var(--main-color005);
	border: 1px solid var(--main-color);
}
.girlProfile__wrap {
	width: 100%;
	border: 5px solid #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
}
.girlProfile__tmb {
	width: 66px;
}
.girlProfile__tmb__img {
	width: 66px;
	height: 88px;
	object-fit: cover;
	border: 1px solid var(--main-color);
}
.girlProfile__info {
	margin: 0 auto 0 20px;
}
.girlProfile__info__name {
	margin-bottom: 5px;
	font-size: 24px;
	font-weight: bold;
	color: var(--main-color);
}
.girlProfile__info__size {
	color: var(--main-color);
}
.girlProfile__btn__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 65px;
	color: white;
	text-decoration: none;
	background: linear-gradient(var(--main-color04),var(--main-color));
	border: 1px solid var(--main-color_dark);
	border-radius: 7px;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .4);
	line-height: 1.4;
}
.blog__pager {
	margin: 80px 0 40px;
}
.blog__pager__wrap {
	display: flex;
	justify-content: space-between;
}
.blog__pager__prev {
	margin-right: auto;
}
.blog__pager__next {
	margin-left: auto;
}
.blog__pager__prev__items,
.blog__pager__next__items {
	display: flex;
	gap: 20px;
}
.blog__pager__prev__link,
.blog__pager__next__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 56px;
	border: 1px solid var(--main-color);
	box-shadow: var(--box-shadow);
	color: var(--main-color);
	border-radius: 4px;
	text-decoration: none;
}
.blog__pager__num {
	text-align: center;
}
.blog__detail {
	padding: 20px 30px;
	border: 1px solid #ccc;
	line-height: 1.4;
}
.blog__detail__tmb {
	margin-bottom: 20px;
}
.blog__detail img {
	width: auto;
	height: auto;
	max-width: 100%;
}
.blog__detail__title {
	margin-bottom: 15px;
	font-size: 20px;
	color: var(--text-color);
	border-bottom: 2px solid var(--main-color);
}
.blog__detail__publish {
	margin-bottom: 20px; 
	font-size: 14px;
	color: var(--text-color);
}
.blog__detail__text {
	color: var(--text-color);
	line-height: 1.9;
}
.blog__movie {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.blog__movie .blog__movie__video {
	width: 100%;
	max-height: 400px;
}
.blog__btn {
	margin-bottom: 40px;
}
.blog__btn__items {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.blog__btn__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 56px;
	color: white;
	text-shadow: 0 1px 2px rgba(0,0,0,.65);
	background: linear-gradient(var(--main-color04),var(--main-color));
	text-decoration: none;
	border-radius: 4px;
	box-shadow: inset 0 1px 1px 0 #fff;
	border: 1px solid var(--main-color_dark);
}
