/* ---------------------------------------------------------------------------------------------------------------*/
/* コンテンツ */
/* ---------------------------------------------------------------------------------------------------------------*/ 
*{
	font-weight: 500;
}

/* ---------------------------------------------*/
/* 一覧レイアウト */
/* ---------------------------------------------*/
.expHd{
	max-width: 960px;
	/*min-width: 300px;*/
    text-align: center;    
    margin-top: 3em!important;	
}
.expHd div{
	font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    border-bottom: 1px #000000 solid;
    padding-bottom: 0.25em;
	width: calc(100% - 2em);
	margin: 0 auto;
}
@media all and (max-width:500px){
	.expHd div{
		width: calc(100% - 3em);
	}
}


.expSwitc{
	max-width: 960px;
}
.expSwitc .jh-flex{
	padding: 2em 2em 0em;
	justify-content: flex-end;
}
.expSwitc .jh-flex a{
	margin: 0em 0.25em;
	padding: 0.25em 1em;
    border-radius: 1em;
}
.expSwitc.list .jh-flex a.expSwitc_home{
	background: #000000;
    color: #FFFFFF;
}
.expSwitc.list .jh-flex a.expSwitc_calendar{
	background: #FFFFFF;
    color: #000000;
	border: 1px #000000 solid;
}
.expSwitc.calendar .jh-flex a.expSwitc_home{
	background: #FFFFFF;
    color: #000000;
	border: 1px #000000 solid;	
}
.expSwitc.calendar .jh-flex a.expSwitc_calendar{
	background: #000000;
    color: #FFFFFF;
}
@media all and (max-width:500px){
	.expSwitc .jh-flex{
		justify-content: center;
	}
}



.expList{
	max-width: 960px;
}
.listWarp{
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	padding: 0em 2em;
}
.listWarp *{
	font-size: clamp(14px, 2vw, 16px);
}
.listWarp::after{
	content:"";
	display: block;
	width: calc(100% / 3 - 1em);
}
/* ---------------------------------------------*/
/* ワークショップ個々の枠 */
/* ---------------------------------------------*/
.list-Item{
	display: -webkit-flex;
  	display: -ms-flexbox;	
	display: flex;
	flex-direction: column;
	width: calc(100% / 3 - 1em);
	margin-top: 1em;
	margin-bottom: 1em;
	border-radius: 1em;
	color: #FFFFFF;
	overflow: hidden;
}

.list-Item.eventEnd{
	position: relative;
	z-index: -1;
}
.list-Item.eventEnd::after {
    content: "終了しました";
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media all and (max-width:750px){
	.list-Item{
		width: calc(100% / 2 - 1em);
	}
}
@media all and (max-width:500px){
	.list-Item{
		/*width: calc(100% - 1em);*/
		width: 100%;
	}
}

/* ---------------------------------------------*/
/* カテゴリー別色 */
/* ---------------------------------------------*/
/*

		category.css に記載

*/



/* ---------------------------------------------*/
/* 受付状況別色 */
/* ---------------------------------------------*/
/* 未設定（recep00）*/
.expList .recep00{display: none;}

/* 随時受付（recep01）*/
.expList .recep01{border: 1px #FFFFFF solid; color: #FFFFFF;}

/* 要予約（recep02）*/
.expList .recep02{border: 1px #FFFFFF solid; color: #ec1a1a; background: #FFFFFF;}

/* 受付終了（recep03）*/
.expList .recep03{border: 1px #FFFFFF solid; color: #676767; background: #FFFFFF;}

.expList .recep01, .expList .recep02, .expList .recep03{
    display: inline-block;
	font-size: 1.2em;
	line-height: 1em;
    font-weight: 700;
	border-radius: 0.5em;   
    padding: 0.2em 1em 0.3em;    
    margin: 0.25em 0em 0em!important;
}


/* ---------------------------------------------*/
/* 開催日が過ぎた後の受付状況 */
/* ---------------------------------------------*/
.recepEnd {
	color: #676767 !important;
	background: #FFFFFF;
}



/* ---------------------------------------------*/
/* ワークショップ画像 */
/* ---------------------------------------------*/
.expListimg{
	/*max-height: 185px;*/
    /*overflow: hidden;*/
	background-color: #ECECEC;
}
.expListimg img {
	aspect-ratio: 4 / 3;
	/*max-height: 185px;*/
	object-fit: contain;	
}

/*
@media all and (max-width:500px){
	.expListimg{
		display: block;
		width: 35%;		
		overflow: hidden;
		background-color: inherit;
	}
	.expListimg figure{
		height: 100%;
	}
	.expListimg img{		
		width: 100%!important;
		min-height: 85px;
		height: 100%;
		object-fit: cover;
	}
}
*/

/* ---------------------------------------------*/
/* ワークショップテキスト */
/* ---------------------------------------------*/
.expListtxt{
	flex: 1 auto;
	color: #fff;
	padding: 1em 1em 0em 1em;
}
.expListtxt diV{
	margin: 0em auto;
}
.expListtxt diV:nth-child(n + 2){
	margin: 0.3em auto 0em;
}

.expListtxt .date,.expListtxt .cap{
	opacity: 0.7;
}
.date{
	font-family: 'Poppins', sans-serif;
}
.expListtxt .date {
	font-size: 1.35em!important;
	line-height: 1.2em;
	font-weight: 700;
}
.expListtxt .ttl {
	font-size: 1.2em!important;
	line-height: 1.15em;
	font-weight: 700;
}
.expListtxt .cap {
	display: -webkit-box;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
}
.expListtxt .cap p {
	line-height: 1.5em;
}
.expListtxt .shop {
	font-size: 1em;
}


.list-Item a.link{
	display: block;
	/*
	color: #FFFFFF;
    background: #000000;
	*/
	color: #000;
    background: #FFF;
    margin: 1em;
    padding: 0.3em;
    border-radius: 0.3em;
    text-align: center;
}

/*
@media all and (max-width:750px){
	.list-Item{
		width: calc(100% / 2 - 1em);
	}
}
@media all and (max-width:500px){
	.list-Item{
		width: calc(100% - 1em);
	}

	.expList{
		flex-direction: column;
		align-items: center;
	}
	.list-Item{
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
		align-content: flex-start;
		margin-top: 1em;
		padding: 1em;
	}
	.expListtxt{
		width: 60%;
		padding: 0em!important;
		margin-left: 3%;
	}
	.list-Item a.link{
		width: 100%;
		margin: 1em 0em 0em;
	}
}
*/


/* ---------------------------------------------------------------------------------------------------------------*/
/* 全てをみる*/
/* ---------------------------------------------------------------------------------------------------------------*/
.expBtn{
	text-align: center;
	margin-top: 2em!important;
}
.expBtn input{
	cursor: pointer;
	border: none;
    background: #000000;
    color: #FFFFFF;
    padding: 0.5em 5em;
    font-size: 1.35em;
    border-radius: 0.5em;
}
@media all and (max-width:500px){
	/*
	.expBtn input{
		width: 80%;
	}
	*/
}



/* ---------------------------------------------------------------------------------------------------------------*/
/* ページネーション*/
/* ---------------------------------------------------------------------------------------------------------------*/
.pnavi {
	padding: 30px 0;
	text-align: center;
}
.nav-links {
	display:flex;
}
.pnavi .page-numberss {
	display:inline-block;
	margin-right:20px;
	padding:20px 25px;
	color:#333;
	border-radius:3px;
	box-shadow:0 3px 3px #999;
	ackground:#fff;
}
.pnavi .current {
	padding:0.5em 1em;
	background:#69a4db;
	color:#fff;
}
.pnavi .prev,
.pnavi .next {
	background:transparent;
	box-shadow:none;
	color:#69a4db;
	padding: 0.5em 1em;
	border: 1px solid #AAA;	
}
.pnavi .dots {
	background:transparent;
	box-shadow:none;
}
a.page-numbers{
	padding: 0.5em 1em;
	color: #69a4db;
}



/* ---------------------------------------------------------------------------------------------------------------*/
/* 印刷ページ*/
/* ---------------------------------------------------------------------------------------------------------------*/
.printItem-ON{
	display: none;
}
.printItem-OFF{
	display: block;
}

/* -----------------------------------------*/
/* 詳細ページ*/
/* -----------------------------------------*/
.printinfo-block {
	/*
	margin-top: 1em;
	text-align: center;
	*/
}
.printinfo {
  /*margin: 0 0.5em 1em;*/
	margin: 0 0.5em;
	text-align: left;
}
.printinfo-title {
	margin-top: 1em;
	font-size: 1.2em;
	margin-bottom: 0.5em;
}
.printinfo-shop {
	width: 33%;
	display: inline-block;
	font-size: 1.1em;
	margin-bottom: 0.5em;
}
.printinfo-date {
	display: inline-block;
	font-size: 1.1em;
	margin-bottom: 0.5em;
}
.info-remarks {
	display: inline-block;
	margin: 0 10px;
}

.pagePrint{
	text-align: right;
}
.printBtn {
	border: none;
	background: none;
	cursor: pointer;
	font-size: 24px;
}

/* -----------------------------------------*/
/* 一覧ページ*/
/* -----------------------------------------*/
.printlist-Item{
	display: none;
	flex-direction: column;
	/*
	width: calc(100% / 4 - 1em);
	margin-top: 1em;
	margin-bottom: 1em;
	*/
	margin: 1em 5px;
	border-radius: 1em;
	color: #FFFFFF;
	overflow: hidden;
	/*float: left;*/
	width: 180px;
}

.printListimg{
	/*max-height: 185px;*/
    /*overflow: hidden;*/
	background-color: #ECECEC;
}
.printListimg img {
	aspect-ratio: 4 / 3;
	object-fit: contain;	
}
.printListtxt{
	flex: 1 auto;
	color: #fff;
	padding: 1em;
	/*
	color: #fff;
	padding: 0 1em !important;
	width: 65%;
	display: inline-block;
	vertical-align: top;
	*/
}
.printListtxt diV{
	margin: 0em auto;
}
.printListtxt diV:nth-child(n + 2){
	margin: 0.3em auto 0em;
}
/*
.printListtxt .date,.printListtxt .cap{
	opacity: 0.7;
}
*/
.date{
	font-family: 'Poppins', sans-serif;
}
.printListtxt .date {
	font-size: 1.35em!important;
	line-height: 1em;
	font-weight: 700;
}
.printListtxt .ttl {
	font-size: 1.2em!important;
	line-height: 1.15em;
	font-weight: 700;
}

table.printTxtTable {
	border-collapse:collapse;
	width: 100%;
}
/*
table.printTxtTable > tbody > tr{
	border-top: 1px #000000 dotted;
	font-weight: 400;
}
table.printTxtTable > tbody > tr:last-child{
	border-bottom: 1px #000000 dotted;
}
*/
table.printTxtTable > tbody > tr > td{
	padding: 0.5em;
}
.printTxt_hd{
	width: 6em;
	font-weight: 700;
	vertical-align: top;
}

.pagePrint2{
	text-align: right;
	margin: 0em 0.25em;
}
.printBtn2{
	border: none;
	background: none;
	cursor: pointer;
	font-size: 20px;
}
/*
font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f02f';
*/

/*** 印刷時のアイコンリスト・ラベルボックスの枠*/
@page {
	margin: 10mm 2mm 0;
	/*size: A4 portrait; /* 横の場合はlandscape */
}

@media print {
	body {
		-webkit-print-color-adjust: exact !important; /* 印刷時でも背景色や背景画像を表示 */
		/*width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
		width : cal(100% - 10px); /* 印刷時の全ページ幅を統一（px数値はお好みで） */
		/*zoom: 0.5; /* なるべく多くのブラウザで切れないようにするため */
		break-inside: avoid;
	}
	
	.expList {
		max-width: 100% !important;
	}
	
	.listWarp{
		padding: 0em;
		justify-content: flex-start;
	}
	.listWarp *{
		font-size: 90%;
	}
	.listWarp::after{
		/*width: calc(100% / 2);*/
	}
	
	.list-Item{
		display: none;
	}
	
	/* 印刷時に表示 */
	.printlist-Item{
		display: -webkit-flex;
		display: -ms-flexbox;	
		display: flex;
	}
	/* 印刷時に非表示 */
	.printItem-OFF{
		display: none;
	}
	.printItem-ON{
		display: block;
		/*margin: 50px 0 !important;*/
	}

	
	#jh-header,
	#fixed-area,
	.topImg,
	.search-area,
	.expSwitc,
	.pnavi,
	/*.inquiry,*/
	/*.return,*/
	#jh-footer,
	#top_button,
	.pagePrint {
		display: none;
	}
	/*
	.exp_article {
		display: block;
	}
	
	.expImg figure {
		margin: 0 auto;
		max-width: 100%;
		max-height: 100%;
	}
	.expImg figure img {
		max-width: 100%;
		height:100%;
		width: 100%;
		max-height: 600px;
		object-fit: contain;
	}
	.exp_article > div {
		width: 100%;
	}
	.expTxtwarp {
		margin-top: 50px;
		font-size: 18pt;
	}
	
	.exp_article .recep01, .exp_article .recep02, .exp_article .recep03{
		border: none;
		color: #F00;
		background: #FFF;
		display: block;
		text-align: left;
	}
	*/
}


/*講師募集*/
.culture{
	padding: 0em 1em;
	margin-top: 5em!important;
}
.culture a{
	display: block;
	max-width: 720px;
    margin: 0em auto 1.5em !important;
    /*border: 1px #000000 solid;*/
}