@charset "utf-8";

body {
	width:100%;
	font-family: 'Noto Serif JP', serif;
	font-weight:400;
	font-size:16px;
	letter-spacing: 0.9px;
	line-height: 28px;
	position: relative;
	color:#4D4D4D;
	padding: 0;
	margin: 0;
	word-break: break-all;
}

section {
	width:100%;
	text-align:center;
}

a, img {
	transition: all 0.2s ease-out;
}
a:hover {
	opacity: 0.7;
}

.pc_v {
	display: inline;
}
.sp_v {
	display: none;
}
.pc_br {
	display: block;
}
.sp_br {
	display: inline;
}

.container {
	width: 1000px;
	margin: 0 auto;
	clear: both;
	overflow: hidden;
	position: relative;
}

img {
	width: 100%;
	height: auto;
}

.img {
	font-size: 0;
	line-height: 0;
}
.text {
	font-size: 14px;
	line-height: 2;
	color: #000;
	text-align: justify;
}

.fblk {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}


/* UIパーツ用CSS */
/* 開催期間テキスト */
.wblk span.date {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #000;
	background-color: #FFF700;
	padding: 12px 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

header {
	background-color: #FFF;
}
header h1 {
	display: block;
	width: 165px;
	margin: 0 auto;
	padding: 30px 0 24px;
}
#sp_header {
	display: none;
}
#road {
	position: absolute;
	width: 100%;
	text-align: center;
	z-index: 0;
	top: 680px;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
}
#road img {
	margin-left: -145px;
	width: 1200px;
	height: 2800px;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
	transition: clip-path 10s ease-out;
}
#road.animate img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#mimg {
	background-color: #9cd8df;
	background-image: url(../img/header_wave.png);
	background-size: 39px 5px;
	background-position: center top;
	background-repeat: repeat-x;
	animation: waveMove 3s linear infinite;
}
@keyframes waveMove {
	0% {
		background-position: 0% top;
	}
	100% {
		background-position: 39px top;
	}
}
#mimg .body {
	background-image: url(../img/mimg_back.gif);
	background-size: 1097px 171px;
	background-position: center top 148px;
	background-repeat: no-repeat;
}
#mimg .plink {
	max-width: 630px;
	margin: 30px auto 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#mimg .plink a {
	display: block;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	padding: 12px 0 17px;
	text-decoration: none;
	color: #000;
	background-image: url(../img/header_menuimg2.png);
	background-size: 42px 44px;
	background-position: center bottom;
	background-repeat: no-repeat;
}
#mimg .plink a:hover {
	opacity: 0.5;
}
#mimg .mlogo {
	width: 312px;
	height: 201px;
	margin: 60px auto 0;
	position: relative;
	z-index: 200;
}

/* 白いオーバーレイ */
.mlogo-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 150;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s ease-in-out 2.5s forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
#mimg .mlogo > div {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	font-size: 0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;	
}
#mimg .mlogo .mimg1 {
	background-image: url(../img/mimg1.png);
	transform: scale(0);
	animation: zoomInOut 1.5s ease  0.2s forwards;
}
#mimg .mlogo .mimg2 {
	background-image: url(../img/mimg2.png);
	transform: scale(0);
	animation: zoomInOut 1.5s ease 0.3s forwards;
}
#mimg .mlogo .mimg3 {
	background-image: url(../img/mimg3.png);
	transform: scale(0);
	animation: zoomInOut 1.5s ease 0.8s forwards;
}

@keyframes zoomInOut {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	60% {
		transform: scale(1.08);
		opacity: 1;
	}
	80% {
		transform: scale(0.98);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
#mimg .container > strong {
	display: block;
	font-size: 0;
	line-height: 0;
	width: 346px;
	margin: 45px auto 20px;
}
#mimg .container > strong + p {
	text-align: center;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	color: #000;
	margin: 15px auto 0;
}
#mimg .fblk {
	justify-content: center;
	margin-top: 40px;
	padding-bottom: 60px;
	gap: 30px;
}
#mimg .fblk .img {
	width: 184px;
}
#mimg .fblk .text {
	font-size: 18px;
	line-height: 2;
	color: #000;
	font-weight: 500;
}

#fair {
	background-color: #9cd8df;
	padding-bottom: 40px;
}
#fair h2 {
	font-size: 16px;
	line-height: 35px;
	font-weight: bold;
	text-align: left;
	padding-left: 125px;
	background-image: url(../img/fair_t.png);
	background-size: 105px 35px;
	background-position: left top;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}
#fair .wblk {
	background-color: #FFF;
	padding: 18px 30px;
}
#fair .wblk h3 {
	font-size: 0;
	line-height: 0;
	padding-bottom: 15px;
	text-align: left;
	border-bottom: 1px solid #000;
}
#fair .wblk h3 img {
	width: 495px;
	height: auto;
}
#fair .wblk > .fblk {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 30px;
	margin-top: 20px;
}
#fair .wblk .fblk .fair {
	width: 100%;
	box-sizing: border-box;
}
#fair .wblk .fblk .fair .img {
	width: 276px;
}
#fair .wblk .fblk .fair .text {
	width: 276px;
	font-size: 14px;
	line-height: 1.6;
}
#fair .wblk .fblk .fair .text a img {
	width: 153px;
	height: auto;
	margin-top: 20px;
}
#fair .wblk .fblk .fairbox {
	max-width: 280px;
	box-sizing: border-box;
	background-color: #ffffec;
	border: 1px solid #000;
	padding: 20px;
	position: relative;
}
#fair .wblk .fblk .fairbox .shimg {
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: 1;
	display: block;
	width: 48px;
}
#fair .wblk .fblk .fairbox h4 {
	text-align: left;
	font-size: 16px;
	line-height: 1.2;
	font-weight: bold;
	color: #000;
	padding-bottom: 15px;
}

#fair .wblk .fblk .fairbox .fblk {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: calc(100% - 50px);
}
#fair .wblk .fblk .fairbox .fblk .text {
	flex-grow: 1;  /* テキスト部分を伸ばして */
	line-height: 1.6;
}
#fair .wblk .fblk .fairbox .fblk .img {
	width: 100%;
	margin-top: auto;  /* 画像を下に押し下げる */
}

#fair .wblk .fair-kinokuniya {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	margin-top: 20px;
}
#fair .wblk .fair-kinokuniya .img {
	width: 451px;
}
#fair .wblk .fair-kinokuniya .text {
	width: calc(100% - 471px);
	font-size: 14px;
	line-height: 2;
	text-align: justify;
}
#fair .wblk .fair-kinokuniya .text a img {
	width: 153px;
	height: auto;
	margin-top: 20px;
}

#events {
	background-color: #93d3c4;
	padding: 30px 0 40px;
}
#events .container {
	overflow: visible;
}
#events h2 {
	font-size: 16px;
	line-height: 35px;
	font-weight: bold;
	text-align: left;
	padding-left: 220px;
	background-image: url(../img/events_t.png);
	background-size: 200px 35px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
	margin-bottom: 40px;
}
#events .items {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#events .item {
	width: 310px;
	box-sizing: border-box;
	padding: 40px 10px 5px 18px;
	background-color: #FFF;
	position: relative;
}
#events .item .date {
	position: absolute;
	top: -17px;
	left: -6px;
	z-index: 1;
	width: 173px;
	height: 49px;
	background-image: url(../img/events_date.png);
	background-size: 173px 49px;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	padding: 15px 0 0 12px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	text-align: left;
}
#events .item .date span {
	font-size: 12px;
	padding-left: 10px;
}
#events .item .img {
	width: 126px;
}
#events .item .text {
	width: calc(100% - 136px);
	font-size: 12px;
	line-height: 2;
	text-align: justify;
}
#events .item .text a img {
	width: 153px;
	height: auto;
	margin-top: 10px;
}

#campaign {
	background-color: #9cd8df;
	padding: 30px 0 40px;
}
#campaign .container {
	overflow: visible;
}
#campaign h2 {
	font-size: 16px;
	line-height: 35px;
	font-weight: bold;
	text-align: left;
	padding-left: 187px;
	background-image: url(../img/campaign_t.png);
	background-size: 167px 35px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
	margin-bottom: 40px;
}
#campaign .wblk {
	background-color: #FFF;
	padding: 36px 30px;
}
#campaign .wblk h3 {
	font-size: 0;
	line-height: 0;
	padding-bottom: 15px;
	text-align: left;
	border-bottom: 1px solid #000;
	position: relative;
}
#campaign .wblk h3 img {
	width: 495px;
	height: auto;
}
#campaign .wblk h3 span {
	position: absolute;
	top: 0;
	left: 495px;
	z-index: 1;
	display: block;
	width: 115px;
	height: auto;
}
#campaign .wblk h3 span img {
	width: 100%;
	height: auto;
}
#campaign .wblk h3 + p {
	font-size: 16px;
	line-height: 2;
	font-weight: bold;
	color: #000;
	text-align: left;
	margin-top: 20px;
	padding-bottom: 65px;
}
#campaign .shimg {
	position: absolute;
	top: -48px;
	left: -41px;
	z-index: 1;
	display: block;
	width: 111px;
	height: 111px;
}
#campaign .shimg img {
	width: 100%;
	height: auto;
}
#campaign .bonus {
	position: relative;
}
#campaign .bonus .fblk .img {
	width: 440px;
}
#campaign .bonus .fblk .text {
	width: calc(100% - 470px);
	font-size: 16px;
	line-height: 2;
	text-align: justify;
}
#campaign .bonus .fblk .text p {
	font-size: 14px;
	line-height: 1.8;
	text-align: justify;
	margin-top: 10px;
}
#campaign .bonus .fblk .text a img {
	width: 203px;
	height: auto;
	margin-top: 20px;
}

#goods {
	background-color: #9cd8df;
	padding: 30px 0 40px;
}
#goods .container {
	overflow: visible;
}
#goods h2 {
	font-size: 16px;
	line-height: 35px;
	font-weight: bold;
	text-align: left;
	padding-left: 187px;
	background-image: url(../img/goods_t.png);
	background-size: 167px 35px;
	background-position: left top;
	background-repeat: no-repeat;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
	margin-bottom: 40px;
}
#goods .wblk {
	background-color: #FFF;
	padding: 36px 30px;
	position: relative;
}
#goods .wblk h3 {
	font-size: 0;
	line-height: 0;
	padding-bottom: 15px;
	margin-bottom: 30px;
	text-align: left;
	border-bottom: 1px solid #000;
}
#goods .wblk h3 img {
	width: 452px;
	height: auto;
}
#goods .shimg {
	position: absolute;
	top: 78px;
	left: -41px;
	z-index: 1;
	display: block;
	width: 111px;
	height: 111px;
}
#goods .shimg img {
	width: 100%;
	height: auto;
}
#goods .fblk .item {
	width: 304px;
}
#goods .fblk .item .img {
	width: 100%;
}
#goods .fblk .item .text {
	width: 100%;
}
#goods .fblk .item .text strong {
	display: block;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	color: #000;
	text-align: left;
	margin: 15px 0 0;
}
#goods .fblk .item .text p {
	font-size: 14px;
	line-height: 1.8;
	text-align: justify;
	margin-top: 15px;
}
#goods .fblk .item .text a img {
	width: 153px;
	height: auto;
	margin-top: 15px;
}

/* スマートフォン対応 */
@media screen and (max-width: 980px) {
	#goods .wblk {
		padding: 20px 12px;
	}
	#goods .wblk h3 img {
		width: 167px;
	}
	#goods .wblk h3 + p .sp_br {
		padding-left: 3em;
	}
	#goods .shimg {
		left: -30px;
	}
	#goods .fblk {
		gap: 30px;
	}
	#goods .fblk .item {
		width: 100%;
	}
}

#essay {
	background-color: #93d3c4;
	padding: 50px 0;
}
#essay .base {
	min-height: 516px;
	background-image: url(../img/essay_base.png);
	background-size: 1025px 516px;
	background-position: center top 5px;
	background-repeat: no-repeat;
}
#essay h2 {
	width: 320px;
	margin: 0 auto;
}
#essay .container > p {
	width: 700px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.714;
	text-align: justify;
	margin-top: 20px;
}
#essay .txtblk {
	width: 853px;
	height: 243px;
	margin: 20px auto 0;
	background-image: url(../img/essay_blkimg.png);
	background-size: 853px 243px;
	background-position: center top;
	background-repeat: no-repeat;
	box-sizing: border-box;
	padding: 35px 2px 15px 25px;
}
#essay .txtblk > div {
	font-size: 14px;
	line-height: 1.75;
	text-align: justify;
	font-family: 'Noto Sans JP', sans-serif;
	overflow-y: scroll;
	height: 100%;
	max-height: 193px;
	padding-right: 10px;
}

footer {
	background-color: #FFF;
}
#about-kamome {
	text-align: left;
	width: 1004px;
	padding: 40px 0 0;
	margin: 0 auto;
}
#about-kamome > div {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	text-align: justify;
}
#about-kamome-logo {
	width: 94px;
	padding: 10px 0 0;
	margin-right: 39px;
}
#about-kamome-text {
	padding: 10px 0 0;
	width: 514px;
}
#about-kamome-text p {
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
}
#about-kamome-text a {
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 15px;
	font-size:18px;
	text-decoration: none;
	font-weight: bold;
	color: #7cb5a9;
}
#about-kamome-text a:hover {
	opacity: 0.7;
}
#about-kamome-book {
	width: 343px;
	margin-left: 10px;
}

@media screen and (max-width: 980px) {
	body {
		font-size:14px;
		line-height: 1.8em;
		letter-spacing: 0.5px;
	}
	.pc_v {
		display: none;
	}
	.sp_v {
		display: inherit;
	}
	.pc_br {
		display: inline;
	}
	.sp_br {
		display: block;
	}
	.fblk {
		flex-direction: column;
	}
	.container {
		width: calc(100% - 48px);
		margin: 0 auto;
	}
	#sp_header {
		display: none;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 300;
		font-size: 0;
		line-height: 0;
		background-color: #9cd8df;
		/* iPhone XのSafe Areaに対応 */
		padding-left: env(safe-area-inset-left);
		padding-right: env(safe-area-inset-right);
		padding-top: env(safe-area-inset-top);
	}
	#sp_header .title {
		position: relative;
		text-align: center;
		background-color: #FFF;
	}
	#sp_header .title a.logo {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 50px;
	}
	#sp_header .title a.logo img {
		width: auto;
		height: 34px;
	}
	#sp_header .title a.spmenubtn {
		display: block;
		width: 50px;
		height: 50px;
		background-image: url(../img/spmenu.png);
		background-size: 21px 21px;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		top: 0;
		right: 10px;
		z-index: 1;
		cursor: pointer;
	}
	#sp_header .nav {
		display: flex;
		height: calc(100vh - 50px);
		box-sizing: border-box;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 50px;
		padding-top: 30px;
	}
	#sp_header .nav a {
		display: block;
		font-size: 14px;
		line-height: 1;
		font-weight: bold;
		padding: 0 0 17px;
		text-decoration: none;
		color: #000;
		background-image: url(../img/header_menuimg.png);
		background-size: 42px 7px;
		background-position: center bottom;
		background-repeat: no-repeat;
	}
	#road {
		top: 780px;
	}
	#road img {
		width: 375px;
		margin: 0 0 0 30px;
		transition: clip-path 20s ease-out;
	}
	#mimg {
		background-size: 78px 10px;
	}
	@keyframes waveMove {
		0% {
			background-position: 0% top;
		}
		100% {
			background-position: 78px top;
		}
	}
	#mimg .body {
		background-image: url(../img/mimg_back_sp.png);
		background-size: 361px 166px;
		background-position: center top 345px;
		background-repeat: no-repeat;
	}
	#mimg .plink {
		display: none;
	}
	#mimg .fblk {
		flex-direction: column-reverse;
		align-items: center;
		gap: 30px;
	}
	#fair .wblk {
		padding: 20px 12px;
	}
	#fair .wblk h3 img {
		width: 227px;
	}
	#fair .wblk h3 + .fblk {
		align-items: center;
		gap: 30px;
	}
	#fair .wblk h3 + .fblk .fair {
		width: 100%;
		align-items: center;
		gap: 20px;
	}
	#fair .wblk h3 + .fblk .fair .text {
		width: 100%;
	}
	#fair .wblk h3 + .fblk .fair .text a img {
		margin-top: 10px;
	}
	#fair .wblk h3 + .fblk .bookcatalog {
		width: 100%;
	}
	#fair .wblk h3 + .fblk .bookcatalog .fblk {
		flex-direction: row;
	}

	#fair .wblk .fair-kinokuniya {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 16px;
	}
	#fair .wblk .fair-kinokuniya .img {
		width: 100%;
		margin: 0 auto;
	}
	#fair .wblk .fair-kinokuniya .text {
		width: calc(100% - 48px);
		font-size: 14px;
		line-height: 2;
		margin-top: 15px;
		padding: 0 24px;
	}
	#fair .wblk .fair-kinokuniya .text a img {
		display: block;
		width: 153px;
		margin-top: 14px;
	}

	#fair .wblk .fblk .fair {
		margin: 20px auto 0;
		width: calc(100% - 48px);
	}
	#fair .wblk .fblk .fairbox {
		width: 100%;
		max-width: 100%;
		flex-direction: row;
		gap: 20px;
		align-items: center;
	}
	#fair .wblk .fblk .fairbox .shimg {
		width: 48px;
		height: 48px;
	}
	#fair .wblk .fblk .fairbox h4 {
		font-size: 14px;
		line-height: 1.2;
	}
	#fair .wblk .fblk .fairbox .fblk {
		height: auto;
	}
	#fair .wblk .fblk .fairbox .fblk .text {
		flex-grow: 0;
	}
	#fair .wblk .fblk .fairbox .fblk .img {
		width: 100%;
		margin-top: 0;
	}
	#fair .wblk .fblk .fairbox .fblk .img img {
		width: 100%;
		height: auto;
	}
	#events .items {
		flex-direction: column;
		gap: 35px;
	}
	#events .item {
		width: 100%;
		padding: 40px 10px 18px 18px;
	}
	#events .item .fblk {
		flex-direction: row;
	}
	#campaign .wblk {
		padding: 20px 12px;
	}
	#campaign .wblk h3 span {
		position: absolute;
		top: -20px;
		left: auto;
		right: 0;
		z-index: 1;
		display: block;
		width: 115px;
		height: auto;
	}
	#campaign .wblk h3 img {
		width: 282px;
	}
	#campaign .wblk h3 + p .sp_br {
		padding-left: 3em;
	}
	#campaign .shimg {
		left: -30px;
	}
	#campaign .bonus {
		padding: 0 12px;
	}
	#campaign .bonus .fblk {
		align-items: center;
		gap: 20px;
	}
	#campaign .bonus .fblk .img {
		width: 100%;
	}
	#campaign .bonus .fblk .text {
		width: 100%;
		line-height: 1.5;
	}
	#goods .wblk h3 img {
		width: 282px;
	}
	#essay .base {
		min-height: 800px;
		background-size: auto 800px;
	}
	#essay .container > p {
		width: 329px;
	}
	#essay .txtblk {
		width: 329px;
		height: 412px;
		background-image: url(../img/essay_blkimg_sp.png);
		background-size: 329px 412px;
		padding: 30px 2px 12px 12px;
	}
	#essay .txtblk > div {
		max-height: 400px;
	}

	#about-kamome {
		width: 100%;
		box-sizing: border-box;
		padding: 30px 20px 0;
	}
	#about-kamome > div {
		flex-wrap: wrap;
	}
	#about-kamome-logo {
		width: 66px;
		padding: 0;
		margin-right: 25px;
	}
	#about-kamome-text {
		width: calc( 100% - 91px );
		padding: 0;
	}
	#about-kamome-text p {
		font-size: 14px;
		line-height: 1.6;
	}
	#about-kamome-book {
		width: 100%;
		box-sizing: border-box;
		margin: 0;
		padding: 20px 0;
	}
}