@charset "utf-8";
/* CSS Document */

/*==================================
ページトップへのボタン
====================================*/

#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
	z-index: 100;
	cursor: pointer;
	border-radius: 50%;
}

#pagetop:before {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
	width: 10px;
	height: 10px;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
	transition: .5s;
}

#pagetop:hover::before {
	top: 12px;
}

#pagetop a{
	display: block;
	height: 100%;
}

/*==================================
ホバーの共通化
====================================*/

.cmn_hover {
	transition: 0.5s;
}

.cmn_hover:hover {
	opacity: 0.6;
	text-decoration: none;
}

/*==================================
共通のpadding設定
====================================*/

.sub_pdg {
	padding: 100px 0;
}

/*====================
一覧ページネーション
====================*/

.pagenation {
	display: flex;
	justify-content: center;
	margin: 60px auto 0;
}

.pagenation li {
	margin: 0 5px;
}

.pagenation li span,
.pagenation li a {
	padding: 10px;
	display: block;
	background-color: #fff;
	border: 1px solid;
	line-height: 1.5;
}

.pagenation li span,
.pagenation li:hover a {
	color: #fff;
}

.pagenation li span,
.pagenation li a:hover {
	background-color: #434343;
}

.post_none {
	margin: 0 auto;
	font-size: 2rem;
}

.top_post_none {
	font-size: 1.4rem;
	color: #fff;
}

/*========================================
詳細ページネーションの設定
==========================================*/

.paginated-link {
	display: flex;
	justify-content: center;
	color: inherit;
	line-height: 1;
	margin-top: 40px;
}

.paginated-link a {
	line-height: 1;
}


.back-link {
	position: relative;
	width: 100px;
	text-align: center;
	border-left: 1px solid;
	border-right: 1px solid;
}

.prev-link,
.next-link {
	width: 40%;
}

.prev-link {
	margin-right: 20px;
	text-align: right;
}

.next-link {
	margin-left: 20px;
}

/*==================================
パンくずリスト設定
====================================*/

.breadcrumbs {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 7px 0;
	z-index: 20;
}

.breadcrumbs .bread_boxs {
	justify-content: flex-start;
}

body:not(#top) .breadcrumbs .bread_boxs {
	flex-direction: row;
	padding: 4px 0;
}

.breadcrumbs li {
	list-style: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.breadcrumbs .bread_name {
	flex: 1;
}

.breadcrumbs li:not(:last-child)::before {
	content: ' ';
	display: block;
	margin: auto;
	border-top: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 13px;
	width: 7px;
	height: 7px;
}

.breadcrumbs li,
.breadcrumbs a {
	font-size: 1.2rem;
}

.breadcrumbs a {
	text-decoration: underline;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.breadcrumbs li:not(:last-child) {
	padding: 0 30px 0 0;
}


/*post_tag_item*/

.post_tag_item{
	margin-bottom: 40px;
	color: inherit;
}

.post_tag_item_select{
	display: block;
	width: 300px;
	padding: 7px 10px;
	line-height: 1.5;
	margin-left: auto;
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
	vertical-align: middle;
	font-size: 1.5rem;
	outline: none;
	border: 2px solid #f39800;
	background-color: #fff;
}

.post_tag_item_option{
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
}


/*==================================
テキスト中央寄席の設定
====================================*/

.cen_txt {
	text-align: center;
}

/*==================================
ここから追加
====================================*/

/*cmn_block*/

.cmn_block{
	max-width: 1400px;
	margin: 0 auto;
}

/*cmn_ttl*/

.cmn_ttl{
	font-weight: 500;
	font-size: min(2.54vw, 3.6rem);
	line-height: 1.4;
	letter-spacing: 0.12em;
}

.cmn_ttl_en{
	display: block;
	margin-bottom: 20px;
	margin-bottom: min(1.41vw, 20px);
}

.cmn_ttl_txt{
	display: block;
	margin-left: min(7vw, 100px);
}

.cmn_ttl_txt_min{
	display: block;
	margin-top: 10px;
	font-size: min(1.1vw, 2.3rem);
}

/*sub_ttl*/

.sub_ttl{
	font-size: min(1.5vw, 2.6rem);
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 25px;
}

/*cmn_btn*/

.cmn_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: min(51vw, 730px);
	height: min(5.28vw, 75px);
	font-size: min(1.69vw, 2.4rem);
	background: #000;
	position: relative;
	border: 2px solid #333;
	z-index: 1;
	transition: .3s;
}

.cmn_btn::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #fff;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .6s;
}
.cmn_btn:hover {
	color: #000;
}

.cmn_btn:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}

/*cmn_contents*/

.cmn_contents{
	padding: 80px 40px;
}

.cmn_contents .cmn_block{
	align-items: center;
}















