@charset "UTF-8";
/* header
------------------------------------------------*/
#header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 80px;
}
/* visual
------------------------------------------------*/
#visual {
	position: relative;
	background: url("img/bg-visual.jpg") no-repeat center;
	background-size: cover;
	height: 750px;
}
#visual .splide {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	max-width: 1200px;
}
#visual .splide img {
	max-width: 100%;
	height: auto;
	margin: auto;
}
#visual .txt_read {
	position: absolute;
	top: 20%;
	left: 10%;
	width: 600px;
}
#visual .txt_read img {
	width: 100%;
	height: auto;
}
#visual ul {
	position: absolute;
	bottom: 50px;
	left: 10%;
	display: flex;
	flex-wrap: wrap-reverse;
	width: 930px;
}
#visual ul li {
	width: 300px;
	margin: 0 10px 10px 0;
}
#visual ul li:nth-child(1) {
	order: 1;
}
#visual ul li:nth-child(2) {
	order: 2;
}
#visual ul li a {
	display: block;
	position: relative;
	background: #fff;
	border-radius: 15px;
	padding: 15px 30px 15px 15px;
	box-shadow: 0 0 10px rgba(36,81,100,0.5);
	text-align: center;
}
#visual ul li a:before,
#visual ul li a:after {
	content: "";
	display: block;
	position: absolute;
}
#visual ul li a:before {
	top: 0;
	right: 0;
	background: #F4F7F5;
	width: 15px;
	height: 100%;
	border-top-right-radius: 15px; 
	border-bottom-right-radius: 15px; 
}
#visual ul li a img {
	width: 80%;
}
#visual ul li a:after {
	top: 50%;
	right: 5px;
	transform: translate(0, -50%) rotate(135deg);
	width: 6px;
	height: 6px;
	border-left: solid 1px #888;
	border-top: solid 1px #888;
}
#visual ul + p {
	position: absolute;
	bottom: 30px;
	left: 10%;
	margin: 0;
	font-size: 12px;
}
#eventlink a {
	position: absolute;
	right: 50px;
	bottom: -50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("img/bg-eventlink.svg") no-repeat;
	background-size: cover;
	width: 170px;
	height: 170px;
	line-height: 1;
	text-align: center;
	color: #008A32;
}
#eventlink a:hover {
	opacity: 0.8;
}
#eventlink a dt {
	position: relative;
	margin: 0 0 5px;
	letter-spacing: 0.06em;
	font-size: 15px;
}
#eventlink a dt:before,
#eventlink a dt:after {
	position: absolute;
	top: 5px;
	content: "";
	width: 1px;
	height: 35px;
	border-left: 2px dotted #008A32;
}
#eventlink a dt:before {
	left: 5px;
	transform: rotate(-20deg);
}
#eventlink a dt:after {
	right: 5px;
	transform: rotate(20deg);
}
#eventlink a dt span {
	display: block;
	margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
	font-size: 17px;
}
#eventlink a dd .font-montserrat {
	letter-spacing: 0.06em;
	font-size: 38px;
	font-weight: 600;
}
#eventlink a dd .font-montserrat + span {
	display: inline-block;
	margin: 0 0 0 5px;
	line-height: 1;
	font-size: 16px;
}
#eventlink a dd + dd {
	line-height: 1.2;
	font-size: 15px;
}
#catchtxt {
	margin: 0 10%;
}
#catchtxt a {
	display: block;
	padding: 15px 0;
	font-size: 17px;
	color: #333;
}
#catchtxt a:hover {
	opacity: 0.8;
}
#catchtxt span {
	position: relative;
	margin: 0 20px 0 0;
}
#catchtxt span:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translate(0, -50%) rotate(135deg);
	width: 7px;
	height: 7px;
	border-left: solid 1px #333;
	border-top: solid 1px #333;
}
@media screen and (max-width:1800px) {
	#visual .txt_read,
	#visual ul,
	#visual ul + p {
		left: 60px;
	}
	#catchtxt {
		margin: 0 60px;
	}
}
@media screen and (max-width:1400px) {
	#visual {
		height: 700px;
	}
	#visual .splide {
		width: 70%;
	}
	#visual .txt_read {
		width: 400px;
		top: 25%;
	}
	#visual ul {
		width: 800px;
	}
	#visual ul li {
		width: 240px;
	}
}
@media screen and (max-width:1200px) {
	#visual .txt_read {
		width: 450px;
		top: 30%;
	}
	#visual ul {
		width: 555px;
	}
	#visual ul li {
		width: 175px;
	}
	#visual ul li a {
		padding: 10px 30px 10px 15px;
	}
	#visual ul li a img {
		width: auto;
	}
}
@media screen and (max-width:767px) {
	#visual {
		background-position: 0 0;
		height: auto;
		padding: 70px 0 10px;
	}
	#visual .splide {
		position: inherit;
		top: auto;
		right: auto;
	}
	#visual .txt_read {
		position: inherit;
		top: auto;
		left: auto;
		margin: 10px auto 20px;
		width: 90%;
		text-align: center;
	}
	#visual ul {
		position: inherit;
		bottom: auto;
		left: auto;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 390px;
		margin: 0 auto;
	}
	#visual ul li {
		width: 190px;
	}
	#visual ul li:nth-child(1),
	#visual ul li:nth-child(2) {
		order: inherit;
	}
	#visual ul li {
		margin: 0 0 10px;
	}
	#visual ul + p {
		bottom: 110px;
		left: auto;
		right: calc((100% - 390px)/2)
	}
	#eventlink a {
		bottom: -50px;
		right: calc(4% - 10px);
		width: 150px;
		height: 150px;
	}
	#eventlink a dt {
		font-size: 14px;
	}
	#eventlink a dt:before,
	#eventlink a dt:after {
    height: 25px;
	}
	#eventlink a dt:before {
		left: 8px;
	}
	#eventlink a dt:after {
    right: 8px;
	}
	#eventlink a dt span {
		margin: 0;
		font-size: 16px;
	}
	#eventlink a dd .font-montserrat {
		font-size: 35px;
	}
	#eventlink a dd .font-montserrat + span {
		font-size: 14px;
	}
	#eventlink a dd + dd {
		font-size: 14px;
	}
	#catchtxt {
		margin: 0 160px 0 4%;
	}
	#catchtxt a span {
		display: block;
		font-size: 15px;
	}
}
@media screen and (max-width:480px) {
	#visual .splide {
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
	#visual ul {
		width: 94%;
	}
	#visual ul li {
		width: 48.5%;
	}
	#visual ul + p {
		right: 7px;
	}
	#eventlink a {
		bottom: -60px;
	}
}
/* main
------------------------------------------------*/
#main img {
	display: block;
	max-width: 100%;
	height: auto;
}
#main h2 {
	position: relative;
	line-height: 1.3;
	letter-spacing: 0.08em;
	font-family: "Montserrat", sans-serif;
	font-size: 48px;
	font-weight: 600;
	color: #555;
}
#main h2 + p.link {
	position: relative;
}
#main h2 + p.link a {
	position: absolute;
	top: -45px;
	right: 0;
	padding: 0 35px 0 0;
	font-size: 14px;
	color: #333;
}
#main h2 + p.link a:before,
#main h2 + p.link a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
}
#main h2 + p.link a:before {
	right: 0;
	transform: translate(0, -50%);
	background: #008A32;
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
#main h2 + p.link a:after {
	right: 10px;
	transform: translate(0, -50%) rotate(135deg);
	width: 6px;
	height: 6px;
	border-left: solid 1px #fff;
	border-top: solid 1px #fff;
}
#main h2 + p.link a:hover:before {
	background: #91C1A2;
}
#main .morelink a {
	display: block;
	position: relative;
	background: #fff;
	width: 230px;
	margin: 20px auto 0;
	padding: 5px 20px;
	border: 1px solid #888;
	border-radius: 30px;
	text-align: center;
	font-size: 14px;
	color: #333;
}
#main .morelink a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 11px;
	transform: translate(0, -50%) rotate(135deg);
	width: 6px;
	height: 6px;
	border-left: solid 1px #888;
	border-top: solid 1px #888;
}
#main .morelink a:hover {
	background: #EFEFEF;
}
#main .attention {
	background: #D65468;
	border-radius: 10px;
	margin: 0 60px 30px;
}
#main .attention dl {
	align-items: center;
}
#main .attention dt {
	width: 200px;
	padding: 10px 20px;
	text-align: center;
	font-weight: 700;
	color: #fff;
}
#main .attention dd {
	background: #F7DCE0;
	width: calc(100% - 200px);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 10px 20px;
}
#main .attention dd a {
	color: #333;
}
#main .attention dd a:hover {
	opacity: 0.7;
}
#main .attention dd a span {
	color: #888;
}
#main #reason-area {
	background: linear-gradient(90deg,rgba(219, 245, 255, 1) 0%, rgba(209, 237, 181, 1) 100%);
	padding: 40px 60px 60px;
}
#main #reason-area h2 img {
	margin: auto;
}
#main #reason-area .overflow {
	overflow: auto;
	padding: 0 0 20px;
}
#main #reason-area .overflow::-webkit-scrollbar {
  height: 12px;
}
#main #reason-area .overflow::-webkit-scrollbar-track {
  background: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#main #reason-area .overflow::-webkit-scrollbar-thumb {
  background: #008A32;
  border-radius: 8px;
	border: 3px solid #fff;
}
#main #reason-area ol {
	display: flex;
	justify-content: center;
	width: calc(247px * 5);
	margin: 0 auto;
}
#main #reason-area ol li {
	position: relative;
	background: #fff;
	width: 232px;
	margin: 0 15px 0 0;
}
#main #reason-area ol li:last-child {
	margin: 0;
}
#main #reason-area ol li:before {
	background: linear-gradient(90deg,rgba(99, 180, 69, 1) 0%, rgba(202, 216, 51, 1) 100%);
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	transform: rotate(-10deg);
	z-index: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-family: "Montserrat", sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #fff;
}
#main #reason-area ol li:nth-child(1):before {
	content: "1";
}
#main #reason-area ol li:nth-child(2):before {
	content: "2";
}
#main #reason-area ol li:nth-child(3):before {
	content: "3";
}
#main #reason-area ol li:nth-child(4):before {
	content: "4";
}
#main #reason-area ol li:nth-child(5):before {
	content: "5";
}
#main #reason-area ol li a {
	display: block;
	padding: 20px;
	box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
	line-height: 1.4;
	color: #333;
}
#main #reason-area ol li a:hover {
	box-shadow: none;
}
#main #reason-area ol li a:hover img {
	opacity: 1;
	transform: scale(1.1);
}
#main #reason-area .img {
	overflow: hidden;
	margin: 0 0 10px;
}
#main #reason-area ol li span {
	display: block;
	position: relative;
}
#main #reason-area ol li span:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%) rotate(135deg);
	width: 6px;
	height: 6px;
	border-left: solid 2px #888;
	border-top: solid 2px #888;
}
#main .bnrlist {
	margin: 25px 60px 0;
}
#main .bnrlist li {
	width: 24%;
}
#main #news-area {
	background: #E2F0E7;
	margin: 50px 0 0;
	padding: 50px 0 30px;
}
#main #news-area h2 {
	position: relative;
	color: #008A32;
}
#main #news-area h2:before {
	content: "";
	display: block;
	position: absolute;
	top: -70px;
	left: 0;
	background: url("img/ill-hedgehog.png") no-repeat;
	background-size: cover;
	width: 130px;
	height: 70px;
}
#main #news-area ul {
	margin: 20px 0 0;
}
#main #news-area ul li {
	margin: 10px 0 0;
}
#main #news-area ul li a {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	font-size: 15px;
	color: #333;
}
#main #news-area ul li a:hover {
	opacity: 0.7;
}
#main #news-area ul li .data {
	font-size: 14px;
}
#main #news-area ul li .cat {
	width: 120px;
	border-radius: 10px;
	margin: 0 20px;
	text-align: center;
	font-size: 12px;
}
#main #news-area ul li .cat.notice-news {
	background: #fff9e1;
}
#main #news-area ul li .cat.notice-event {
	background: #e7f4da;
}
#main #news-area ul li .cat.notice-oc {
	background: #fde7df;
}
#main #news-area ul li .cat.notice-performance {
	background: #e6e3f7;
}
#main #course-area {
	padding: 40px 0;
}
#main #course-area h2 {
	width: 100%;
	text-align: center;
}
#main #course-area ul {
	justify-content: center;
}
#main #course-area ul li {
	width: 48.5%;
	margin: 20px 0 0;
	line-height: 1.4;
}
#main #course-area ul li:nth-child(2n) {
	margin: 20px 0 0 3%;
}
#main #course-area ul li a {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 15px;
	color: #333;
}
#main #course-area ul li a:hover {
	opacity: 0.8;
}
#main #course-area ul li a:hover img {
	opacity: 1;
}
#main #course-area li.care a {
	background: linear-gradient(90deg,rgba(222, 246, 255, 1) 0%, rgba(209, 232, 255, 1) 100%);
}
#main #course-area li.trimmer a {
	background: linear-gradient(90deg,rgba(255, 242, 253, 1) 0%, rgba(255, 214, 227, 1) 100%);
}
#main #course-area li.trainer a {
	background: linear-gradient(90deg, #d9f08e 0%, #d3ffca 100%);
}
#main #course-area li.breeding a {
	background: linear-gradient(90deg,rgba(255, 246, 173, 1) 0%, rgba(252, 202, 160, 1) 100%);
}
#main #course-area li.flower a {
	background: linear-gradient(90deg,rgba(230, 255, 204, 1) 0%, rgba(167, 221, 187, 1) 100%);
}
#main #course-area ul li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%) rotate(135deg);
	width: 10px;
	height: 10px;
	border-left: solid 3px #888;
  border-top: solid 3px #888;
}
#main #course-area ul li .img {
	position: relative;
	width: 38%;
}
#main #course-area ul li .img img {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}
#main #course-area ul li .img:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: -30px;
	z-index: 1;
	width: 60px;
	height: 60px;
	margin: -30px 0 0;
}
#main #course-area ul li.care .img:before {
	background: url("img/icon-care.svg") no-repeat center;
	background-size: cover;
}
#main #course-area ul li.trimmer .img:before {
	background: url("img/icon-trimmer.svg") no-repeat center;
	background-size: cover;
}
#main #course-area ul li.trainer .img:before {
	background: url("img/icon-trainer.svg") no-repeat center;
	background-size: cover;
}
#main #course-area ul li.breeding .img:before {
	background: url("img/icon-breeding.svg") no-repeat center;
	background-size: cover;
}
#main #course-area ul li.flower .img:before {
	background: url("img/icon-flower.svg") no-repeat center;
	background-size: cover;
}
#main #course-area ul li .txt {
	width: 62%;
	padding: 0 30px 0 40px;
}
#main #course-area ul li strong {
	display: block;
	margin: 0 0 5px;
	font-size: 24px;
	font-weight: 700;
}
#main #course-area ul li.care strong {
	color: #1385C3;
}
#main #course-area ul li.trimmer strong {
	color: #EE86A7;
}
#main #course-area ul li.trainer strong {
	color: #45B035;
}
#main #course-area ul li.breeding strong {
	color: #E57452;
}
#main #course-area ul li.flower strong {
	color: #008A32;
}
#main #animals-area {
	background: linear-gradient(135deg,rgba(200, 239, 204, 1) 0%, rgba(255, 246, 199, 1) 33%, rgba(239, 255, 252, 1) 66%, rgba(217, 242, 255, 1) 100%);
	padding: 40px 0;
	text-align: center;
}
#main #animals-area img {
	border-radius: 10px;
}
#main #animals-area .splide.slide02 {
	margin: 20px 0 30px -165px;
}
#main #insta-area {
	padding: 40px 0;
}
#main #insta-area h2 {
	background: url("img/ill-cat.png") no-repeat left bottom;
	background-size: auto 100%;
	padding: 40px 0 0 100px;
	text-align: right;
	color: #EE86A7;
}
@media screen and (max-width:1024px) {
	#main #reason-area {
		padding: 30px 0 50px 4%;
	}
	#main #reason-area h2 {
		margin: 0 4% 0 0;
	}
	#main .bnrlist {
		margin: 25px 4%;
	}
	#main #course-area ul li .img:before {
		right: -20px;
		width: 40px;
		height: 40px;
		margin: -20px 0 0;
	}
	#main #course-area ul li .txt {
		padding: 0 30px;
	}
	#main #course-area ul li strong {
		font-size: 20px;
	}
}
@media screen and (max-width:767px) {
	#main h2 {
		font-size: 28px;
	}
	#main h2 + p.link a {
		top: -30px;
		right: 15px;
	}
	#main .attention {
		margin: 0 30px 25px;
	}
	#main .attention dt {
		width: 100px;
	}
	#main .attention dd {
		width: calc(100% - 100px);
	}
	#main .attention span {
		display: block;
	}
	#main #reason-area {
		padding: 30px 0 50px 30px;
	}
	#main #reason-area h2 {
		margin: 0 30px 0 0;
	}
	#main .bnrlist {
		margin: 25px 30px;
	}
	#main .bnrlist li {
		width: 48.5%;
		margin: 0 0 15px;
	}
	#main .bnrlist li:nth-child(3),
	#main .bnrlist li:nth-child(4) {
		margin: 0;
	}
	#main #news-area .inner:before {
		left: 30px;
	}
	#main #news-area ul li a {
		flex-wrap: wrap;
	}
	#main #news-area ul li .title {
		display: block;
		width: 100%;
		margin: 10px 0 0;
	}
	#main #course-area {
		padding: 40px 30px;
	}
	#main #course-area ul li {
		width: 400px;
		margin: 20px auto 0;
	}
	#main #course-area ul li:nth-child(2n) {
		margin: 20px auto 0;
	}
	#main #course-area ul li .txt {
		font-size: 12px;
	}
	#main #animals-area {
		padding: 30px 0;
	}
	#main #animals-area .splide.slide02 {
		margin: 10px 0 20px -75px;
	}
	#main #insta-area {
		padding: 10px 30px 20px;
	}
	#main #insta-area h2 {
		 padding: 40px 0 20px 100px;
	}
	#main #insta-area h3 {
		margin: 0 0 10px;
	}
	#main #insta-area .in {
		margin: 0 15px;
	}
}
@media screen and (max-width:480px) {
	#main .bnrlist li {
		width: 100%;
	}
	#main .bnrlist li:nth-child(3) {
		margin: 0 0 15px;
	}
	#main #course-area ul li {
		width: 100%;
	}
	#main #course-area ul li strong {
		font-size: 16px;
	}
}