@charset "utf-8";
/*==================================================
	【トップ】ページ固有のスタイル
==================================================*/
#page_title {
	background: linear-gradient(180deg,rgba(247, 247, 247, 1) 20%, rgba(249, 244, 167, 1) 20%);
	display: flex;
	align-items: center;
	padding: 45px 0 100px;
}
#page_title .top_txt {
	width: 25vw;
	padding-right: 15px;
}
#top_ttl img {
	width: 75vw;
	border-radius: 100px 0 0 100px;
	box-shadow: 10px 10px 0 #fed300;
}
/* お知らせ */
#top_info {
	background: #00c4cc;
	width: calc(100% - 200px);
	border-radius: 0 20px 20px 0;
	margin-top: -50px;
	position: relative;
	padding: 20px 0;
}
#top_info .txt_box {
	width: calc(100% - 15%);
	margin: 0 auto;
}
#top_info .txt_box h3.info {
	font-size : 29px;
	color : #fff;
	font-weight: 400;
	padding-left: 75px;
	position: relative;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
	margin-bottom: 15px;
}
#top_info .txt_box h3.info::before {
	content: "";
	background: url("../img/bang.png") no-repeat top left/100%;
	width: 62px;
	height: 55px;
	position: absolute;
	top: -25px;
	left: 0;
}
#top_info .txt_box dl {
	margin-bottom: 15px;
}
#top_info .txt_box dt {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
#top_info .txt_box dt .date {
	display: inline-block;
	background: #fff;
	color : #F5A20E;
	border-radius: 10px;
	padding: 0 10px 2px;
	font-size: 90%;
	margin-right: 10px;
}
#top_info .txt_box dt .cat {
	background: var(--color-primary);
	padding: 0 10px 1px;
	border-radius: 5px;
	font-size: 90%;
}
#top_info .txt_box dd {
	padding-left: 135px;
}
#top_info .txt_box dd a {
	color : #FFFFFF;
	text-decoration: underline;
}
#top_info .txt_box .rit a {
	color: #fff;
	text-decoration: underline;
}
#top_btn_box {
	max-width: 860px;
	margin: 0 auto;
}
#top_menu {
	position: relative;
}
#top_menu::before {
	background: #f7f7f7;
}
#top_menu::after {
	content: "INFORMATION";
	position: absolute;
	right: calc(((100vw - 100%) / 2) * -1);
	top: -40px;
	color: #fff;
	font-size: 85px;
	font-family: var(--font-com);
}
#top_menu h3.sub {
	margin-bottom: 60px;
}
#top_menu .grid_box {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(4, 250px);
	gap: 30px 0;
}
#top_menu a {
	background: #fff;
	position: relative;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
	overflow: hidden;
	color : #333;
	font-weight: 500;
	min-height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 30px;
	box-sizing: border-box;
}
#top_menu a::before {
	content: "";
	width: 9px;
	height: 9px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	bottom: 10px;
	right: 12px;
	margin-top: -4px;
	z-index: 1;
}
#top_menu a::after {
	content: "";
	position: absolute;
	background: var(--color-primary);
	border-radius: 50%;
	right: -43px;
	bottom: -43px;
	width: 86px;
	height: 86px;
}
#top_menu a .img {
	min-height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#top_menu a .img img {
	width: 130px;
}
#top_menu a:nth-of-type(2) .img img,#top_menu a:nth-of-type(7) .img img  {
	width: 90px;
}
#top_menu a:nth-of-type(3) .img img,#top_menu a:nth-of-type(11) .img img {
	width: 85px;
}
#top_menu a:nth-of-type(4) .img img {
	width: 95px;
}
#top_menu a:nth-of-type(5) .img img,#top_menu a:nth-of-type(9) .img img {
	width: 92px;
}
#top_menu a:nth-of-type(6) .img img {
	width: 142px;
}
#top_menu a:nth-of-type(8) .img img {
	width: 118px;
}
#top_menu a:nth-of-type(10) .img img {
	width: 77px;
}
#top_menu a:nth-of-type(12) .img img {
	width: 100px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
	
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#top_ttl img {
		border-radius: 50px 0 0 50px;
	}
	#top_info {
		width: 90%;
	}
	#top_info .txt_box {
		width: calc(100% - 5%);
	}
	#top_info .txt_box h3.info{
		font-size: 135%;
	}
	#top_info .txt_box dd {
		padding-left: 100px;
	}
	#top_btn_box {
		width: 600px;
	}
	#top_menu::after {
		font-size: 50px;
		top: -22px;
	}
	#top_menu h3.sub {
		margin-bottom: 30px;
	}
	#top_menu .grid_box {
		grid-template-columns: repeat(3, 31%);
	}
	#top_menu a {
		min-height: 200px;
		padding: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#page_title {
		padding: 25px 0 80px;
	}
	#page_title .top_txt {
		padding-right: 5px;
	}
	#top_ttl img {
		border-radius: 30px 0 0 30px;
	}
	#top_info {
		width: 95%;
	}
	#top_info .txt_box h3.info {
		font-size: 115%;
	}
	#top_info .txt_box dd {
		padding-left: 0;
	}
	#top_btn_box {
		width: 100%;
		flex-direction: column;
	}
	#top_menu::after {
		font-size: 40px;
		top: -17px;
	}
	#top_menu .grid_box {
		grid-template-columns: repeat(2, 48%);
	}
	#top_menu a {
		min-height: 150px;
	}
	#top_menu a .img {
		min-height: 60%;
	}
	#top_menu a .img img {
		width: 90px;
	}
	#top_menu a:nth-of-type(2) .img img,#top_menu a:nth-of-type(7) .img img  {
		width: 50px;
	}
	#top_menu a:nth-of-type(3) .img img,#top_menu a:nth-of-type(11) .img img {
		width: 55px;
	}
	#top_menu a:nth-of-type(4) .img img {
		width: 55px;
	}
	#top_menu a:nth-of-type(5) .img img,#top_menu a:nth-of-type(9) .img img {
		width: 52px;
	}
	#top_menu a:nth-of-type(6) .img img {
		width: 82px;
	}
	#top_menu a:nth-of-type(8) .img img {
		width: 68px;
	}
	#top_menu a:nth-of-type(10) .img img {
		width: 47px;
	}
	#top_menu a:nth-of-type(12) .img img {
		width: 60px;
	}
}