@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 {
	width: 100%;
	padding: 7px 0;
	background: #f9f5ef;
}

.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 {
	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 #8e2d2f;
	background-color: #fff;
}

.post_tag_item_option{
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
}


/*==================================
テキスト中央寄席の設定
====================================*/

.cen_txt {
	text-align: center;
}

/*==================================
ここから追加
====================================*/

/*cmn_info*/

.cmn_info{
	align-items: center;
}

.cmn_info_group{
	font-family: 'Shippori Mincho', serif;
	font-weight: bold;
	text-align: right;
	line-height: 1.3;
}

.cmn_info_time{
	font-size: 1.4rem;
}

.tel_num{
	display: inline-block;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}

.tel_num span{
	display: inline-block;
	font-size: 1.6rem;
}

.cmn_info_sns a{
	display: inline-block;
	margin-left: 15px;
}

/*cmn_news*/

.cmn_news li{
	line-height: 1;
}

.cmn_news li:not(:last-child){
	margin-bottom: 20px;
}

.cmn_news a{
	position: relative;
	display: block;
	padding: 15px 90px 15px 25px;
	transition: .5s;
	background: #fff;
}

.cmn_news a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	transition: .5s;
	width: 5px;
	height: 5px;
	border-top: 2px solid;
	border-right: 2px solid;
}

.cmn_news a:hover{
	transform: translateX(10px);
}

.news_post_data{
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.news_post_time{
	display: inline-block;
	margin-right: 15px;
	font-weight: bold;
	margin: 5px 5px 5px 0;
}

.news_post_tag{
	flex: 1;
}

.news_post_tag p{
	display: inline-block;
	padding: 2px 7px;
	background: #ebe1d8;
	margin: 5px 5px;
	font-size: 1.2rem;
}

.news_post_ttl{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*cmn_txt*/

.cmn_txt p:not(:last-child){
	margin-bottom: 27px;
}

/*cmn_btn*/

.cmn_btn{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 210px;
	height: 42px;
	color: #fff;
	font-family: 'Shippori Mincho', serif;
	font-weight: bold;
	margin: 0 auto;
	background: #b08868;
}

.cmn_btn::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	transition: .5s;
	width: 5px;
	height: 5px;
	border-top: 2px solid;
	border-right: 2px solid;
}

.cmn_btn:hover::before{
	right: 10px;
}

/*cmn_ttl*/

.cmn_ttl{
	font-family: 'Shippori Mincho', serif;
	font-weight: bold;
	font-size: 4.8rem;
	text-align: center;
	margin-bottom: 40px;
}

.cmn_subsec{
	background: #f9f5ef;
}

/*cmn_tb*/

.cmn_tb{
	width: 100%;
	background: #fff;
}

.cmn_tb tr:nth-child(even){
	background: #f5f5f5;
}

.cmn_tb th,
.cmn_tb td{
	padding: 10px 20px;
}

.cmn_tb th{
	width: 170px;
	text-align: right;
}













