@charset "UTF-8";
/* CSS Document */

/* グローバル変数 */
:root {
	--color-main: #1a8358;
	--color-red: #FF0A00;
}

/* SPで表示、PCで非表示 */
.display_sp {
	display: block;
}
.display_pc {
	display: none;
}

/* common */
html {
	height: 100%;
    font-size: 14px;
}
body {
	font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'Osaka','ＭＳ Ｐゴシック','MS PGothic','Helvetica','Arial',sans-serif;
	height: 100vh;
	text-align: left;
	line-height: 1.6;
	color: #1f1f1f;
}
a {
	color: #1558d6;
	text-decoration: underline;
	display: block;
}
a:hover {
    opacity: 0.7;
	transition: opacity .3s;
}
img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
	vertical-align: bottom;
	display: block;
	margin: 0 auto;
}
span {
	font-weight: 600;
}
h1 {
	margin: 0 auto;
	padding: 0.8rem 2%;
	font-size: 1.1rem;
	text-align: center;
	font-weight: 600;
	line-height: 1.3;
	color: #FFFFFF;
	background-color: var(--color-main);
}
h2 {
	background-color: var(--color-main);
	padding: 0.8rem 4%;
	font-weight: 600;
	font-size: 1.5rem;
	color: #fff;
	text-align: center;
	line-height: 1.3;
}
h3 {
	margin: 0 auto;
	padding: 0 4%;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
	display: flex;
	align-items: center;
	width: 100vw;
}
h3 span {
	margin: 0 0.5rem;
}
h3::before,
h3::after {
	content: '';
	border-bottom: 4px dotted var(--color-main);
	flex: 1 1 auto;
}
h4 {
	margin: 2.5rem auto 0;
	padding: 0 4%;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
}
h5 {
	margin: 2.5rem auto 0;
	padding: 0 4%;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-main);
	text-align: center;
}
.container {
	margin: 0 auto 4rem;
	overflow-x: hidden;
}
.content {
	margin: 1rem auto 2rem;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.inner {
	margin: 1rem auto;
	padding: 0 4%;
}
.inner.margin_bottom_0 {
	margin-bottom: 0;
}
.inner.margin_top_0 {
	margin-top: 0;
}
.notice {
	font-size: 0.875rem;
	line-height: 1.4;
}
.nowrap {
	white-space: nowrap;
}


/* メインビジュアル */
.mainvisual {
/*	width: 100vw;*/
	max-width: 1200px;
	margin: 0 auto;
}

/* リード */
.lead {
	margin: 2rem auto 0;
	text-align: center;
	font-size: 1.2rem;
}

/* 更新情報 */
#update h5 {
	margin-top: 0;
}
.update_wrap {
	padding: 1rem;
	border: 2px solid var(--color-main);
	margin: 0 auto;
/*	overflow-y: scroll;*/
}
.update_table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
	line-height: 1.2;
	
}
.update_table td {
	padding-bottom: 0.5rem;
	vertical-align: top;
}
.update_table tr:last-of-type td {
	padding-bottom: 0;
}
.update_table td:nth-child(2) {
	padding-left: 1rem;
}


/* 出展情報 */
.info_table {
	width: 100%;
	margin: 0 auto 2rem;
	text-align: left;
	border-collapse: collapse;
	line-height: 1.4;
}
.info_table td {
	padding: 0.375rem 0.5rem;
	vertical-align: top;
}
.info_table td span {
	color: var(--color-main);
}

/* 会場特典 */
.img_bag {
	margin: 0 auto;
	max-width: 600px;
}

/* ブース販売商品 */
.item_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	grid-gap: 1.5rem;
	margin: 1rem auto 0;
}
.item_list li {
	margin: 0 auto;
}
.item_list p {
	text-align: center;
	line-height: 1.3;
}
.item_name {
	font-weight: 600;
}
.price {
	margin-top: 0.5rem;
	white-space: nowrap;
}
.note {
	margin-bottom: 6px;
	color: var(--color-red);
}
.strikethrough {
  text-decoration: line-through;
}

/* サイン本 */
.signedbook_list {
	margin: 1rem auto 0;
}
.signedbook_list li {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem;
	grid-gap: 1.5rem;
	align-items: end;
	line-height: 1.2;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(26,131,88,0.4);
}

#signedbook .price {
	margin-top: 0;
}
.center {
	text-align: center;
}

/* 注意事項 */
.points_list {
	list-style-type: disc;
	margin-left: 1rem;
	text-align: left;
}

/* バナーリスト */
.bnr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
/*	margin: 3rem auto 0;*/
}
.bnr_list img {
	margin: 1rem;
	max-width: 200px;
	border: 1px solid #CCCCCC;
}

/* footer */
footer {
	padding: 1rem 0;
	text-align: center;
}

/* ページトップに戻るボタン */
#to_top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
#to_top a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-main);
	opacity: 0.8;
}
#to_top a::after {
	content: '';
	width: 16px;
	height: 16px;
	margin-top: 6px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: rotate(-45deg);
}


/* for PC */
@media screen and (min-width: 768px),print {
	
	/* SPで非表示、PCで表示 */
	.display_sp {
		display: none;
	}
	.display_pc {
		display: block;
	}
	
	/* common */
	html {
		font-size: 18px;
	}
	h1 {
		font-size: 1.5rem;
	}
	
	/* ブース販売商品 */
	.item_list {
		grid-template-columns: repeat(3, 1fr);
	}
	
	
}