@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
	--base-color: #000;
	--link-color: #666;
	--linkhover-color: #c670cd;
	--back-color: rgba(244,179,194,1);
	--border-color: #ccc;
	--white-color: #fff;
}

img {
	max-width: 100%;
	height: auto;/*高さ自動*/
}
a {
	display:block;
	color: var(--base-color);
	text-decoration-line: none;
}
a:hover {
	color: var(--linkhover-color);
}
a img {
	margin-bottom: 1rem;
}
a img:hover {
	opacity: 0.8;
}
.blueback {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.underline {
	border-bottom: 3px solid var(--back-color);
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
	flex-direction: row;
	padding: 1rem 0 0 0;
	background-color: rgba(244,179,194,1);
	box-shadow:0px 0px 50px 10px white;
}
.logo {
	max-height: auto;
	max-width: auto;
}
.menu {
	background-color: var(--back-color);
}
nav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
	margin-bottom: 0;
}
nav li {
	flex: 1 0 auto;
	margin-bottom: 0;
}
nav li a {
	text-decoration: none;
	text-align: center;
	color: var(--white-color);
}
nav a:hover {
	background-color: var(--linkhover-color);
	color: var(--white-color);
}
nav a {
	padding: 2rem 1rem;
	display: block;
}

@media screen and (min-width: 768px){
	/* PC時はMENUボタンを非表示 */
	#open,#close {
		display: none !important;
	}

	#navi {
		display: block !important;
	}
	}

	@media screen and (max-width: 768px){
	.head {
		flex-direction: column;
		text-align: left;
		margin-bottom: 20px;
	}
	.telbox {
		margin-left: 0;
		text-align: center;
	}
	/* 
	.head #open,#close  {
		position: absolute;
		top: 100px;
		right: 12px;
		}
	*/
	nav ul {
		flex-direction: column;
	}

	nav li {
		padding-top: 0;
		border-bottom: 1px solid var(--border-color);
		margin-bottom: 0;
	}
	/* スマホ時はMENUボタンを表示 */
	#open {
		display: block;
		background: url(../img/button.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: none;
		position: absolute;
		top: 100px;
		right: 12px;
	}
	#close {
		display: block;
		background: url(../img/button2.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 50px;
		height: 50px;
		border: none;
		position: absolute;
		top: 100px;
		right: 12px;
	}
	/* スマホ時はメニューを非表示 */
	#navi {
		display: none;
	}
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
	height: 50vh;
	object-fit: cover;
}

/*メインコンテンツ
-------------------------------------*/
main {
	margin: 5rem 0 5rem 0;
}

/*新着情報
-------------------------------------*/
.news h2 {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.news li {
	list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

/*フッター
-------------------------------------*/
footer {
	background-color: var(--back-color);
	padding: 5rem 0;
	color: var(--white-color);
}
footer h5 {
	border-bottom: 2px solid var(--white-color);
}
.button2 {
	text-align: center;
	font-size: 1.725rem;
	background: #fff;
	color: var(--back-color);
	border-radius: 5px;
	padding: 18px 24px;
}
.button2:hover {
	background: #aeb5dc;
}
footer svg{
	text-align: center;
	margin: none;
}

/*コピーライト
-------------------------------------*/
.copyright {
	text-align: center;
	padding: 1rem 0;
	background-color: var(--white-color);
}
.copyright a {
	color: var(--base-color);
	text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 15px;
	right: 15px;
}
#pagetop a {
	display: block;
	background: var(--back-color);
	color: var(--white-color);
	width: 50px;
	padding: 10px 5px;
	text-align: center;
}
#pagetop a:hover {
	background: var(--back-color);
}

/*弘高祭関連
-----------------------------------*/
.post-title {
	font-family: "Yu Mincho", "YuMincho", serif;
	font-size: 2rem ;
	font-weight: normal ;
	border-bottom: 2px solid #b4c1d1;
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
	margin: 0 0 1em 0;
	padding: 0;
}
.breadcrumb li {
	list-style-type: none;
}
.breadcrumb li a {
	display: inline-block;
	color: var(--link-color);
}
