@charset "UTF-8";
/* CSS Document */
/* header
-----------------------------------------------*/
#container {
	background-color: #e0f4f5;
	padding-top: 181px;
}
#content {
	height: 100%;
	max-width: 1440px;
  padding: 0px 80px;
}

#container .inner h1 {
	text-align: center;
	font-size: 34px;
	color: #13677f;
	margin-bottom: 60px;
}
.notice {
	margin-bottom: 100px;
	background-color: #fff;
	border-radius: 30px;
	color: #333;
	gap: 1em;
	font-size: 20px;
	font-weight: 100;
	border: 8px solid #ED1C24;
	padding: 30px 60px;
}
.notice h2 {
	font-size: 46px;
	font-weight: bold;
	color: #ED1C24;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
}
.notice h2::after {
	content: "";
	width: 200px;
	height: 4px;
	position: absolute;
	bottom: 18px;
	left: calc(50% - 100px );
	background-color: #ED1C24;
	
}
.notice p a{
	text-decoration: underline;
	color: #ED1C24;
	text-align: left;
}
#category ul {
	display: flex;
	gap: 40px;
}
#category ul li {
	width: 33.3%;
}
#category ul li a {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background-color: #0978b7;
  border: 8px solid #0978b7;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  padding: 16px 0 0;
  text-align: center;
  line-height: 1.2;
}
#category ul li:nth-child(2) a {
	background-color: #99C7E8;
	border: 8px solid #99C7E8;
  color: #1C488C;
}
#category ul li:nth-child(3) a {
	background-color: #FB948B;
	border: 8px solid #FB948B;
}
#category ul li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
		margin-top: 20px;
}


@media only screen and (max-width:1100px) {
#category ul {
	gap: 20px;
}
#category ul li a {
	font-size: 20px;
}
}


@media only screen and (max-width:900px) {
  #category ul li a {
    font-size: 16px;
    border-radius: 20px;
  }
}
@media only screen and (max-width:767px) {
#content {
        padding: 0 20px;
    }
#container {
	padding-top: 95px;
	padding-bottom: 40px;
}
.notice {
	margin-bottom: 60px;
	padding: 20px;
}
.notice h2 {
	font-size: 28px;
	margin-bottom: 20px;
}
.notice h2::after {
	width: 160px;
	height: 2px;
	bottom: 8px;
	left: calc(50% - 80px );
	
}
.notice p {
	font-size: 16px;
}
.notice p a {
	font-size: 16px;
}

#category {
        padding: 0 20px;
}
#category ul {
    flex-direction: column;
	gap: 30px;
}
#category ul li {
	width: 100%;
}
#container .inner h1 {
	font-size: 26px;
	margin-bottom: 30px;
	line-height: 1.5;
}
#category ul li a {
	font-size: 20px;
	padding: 0;
}
#category ul li img {
		margin-top: 10px;
}
}



