@charset "utf-8";
/* CSS Document */

/*home mv*/
#slider.mv .vegas-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
	width:100vw;
	height: 100vh;
}

#slider.mv .vegas-wrapper h1{
  font-family: "parkside", cursive;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 4.5rem;
}

#slider.mv .vegas-wrapper div.catch{
  position: absolute;
  left: 0;
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 70px 20px;
  box-sizing: border-box;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	height: 85vh;
}

#slider.mv .vegas-wrapper div.catch h2{
	text-indent:-1em;
	margin-left: 20px;
	font-size: 1.8rem;
	padding-top: 1em;
}

#slider.mv .vegas-wrapper div.catch p{
	/*height:93%;*/
}

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
    /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  position: absolute;
  left: -11px;
  top: -27px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown1 img{
	width:22px;
	height: auto;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1.1px;
  height: 30px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}



/*home content*/
section.content section{
	padding:170px 0;
	box-sizing: border-box;
}

section.content section p{
	text-align:justify;
}

section.content section.topics{
	background-image:url("../img/home/bg_01.jpg");
	background-repeat: repeat;
	background-position: left top;
	background-size: auto;
}

section.content section h2{
	text-align:center;
}

section.content section h2 ul{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}

section.content section h2 ul li{
	box-sizing: border-box;
	color:#fff;
	background-image: url("../img/home/bg_02.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	font-size:2.8rem;
	text-align: center;
	margin:0 10px;
	width:100px;
	height: 110px;
	line-height: 125px;
}

section.content section.topics .news{
	margin:20px 0 80px;
	border-radius: 10px;
	border:solid 2px #72640c;
	background-color: #fff;
	overflow: hidden;
}

section.content section.topics .news h3{
	background-color:#72640c;
	padding:10px 20px;
	box-sizing: border-box;
	color:#fff;
	font-size:1.4rem;
}

section.content section.topics .news h3 small{
	display:inline-block;
	margin-left: 20px;
	font-size:0.9rem;
	font-family: "parkside", cursive;
	font-weight: 400;
	font-style: normal;
	color:#fff;
}

section.content section.topics .news ul{
	width:95%;
	margin:20px auto 0;
}

section.content section.topics .news ul li{
	margin-bottom:20px;
	padding-bottom: 20px;
	border-bottom: dashed 1px #72640c;
	box-sizing: border-box;
	display:flex;
	align-items: flex-start;
}

section.content section.topics .news ul li p.date{
	display:inline-block;
	margin-right: 20px;
}

section.content section.topics .news ul li article p span.more{
	display:inline-block;
	color:#fff;
	background-color:#000;
	padding:5px 10px;
	color:#fff;
	line-height: 1;
	margin-left: 5px;
}

section.content section.topics .news ul li article h4{
	margin-bottom:10px;
}

section.content section.topics .news ul li article h4 a{
	color:#4d4d4d;
}

section.content section.topics .news ul li article h4 a:hover{
	color:#4d4d4d;
	text-decoration:underline;
}

section.content section.topics .event{
	margin:0 auto;
	border-radius: 10px;
	border:solid 2px #f3981d;
	background-color: #fff;
	overflow: hidden;
}

section.content section.topics .event h3{
	background-color:#f3981d;
	padding:10px 20px;
	box-sizing: border-box;
	color:#fff;
	font-size:1.4rem;
}

section.content section.topics .event h3 small{
	display:inline-block;
	margin-left: 20px;
	font-size:0.9rem;
	font-family: "parkside", cursive;
	font-weight: 400;
	font-style: normal;
	color:#fff;
}

section.content section.topics .event ul{
	width:95%;
	margin:50px auto;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	/*padding-bottom: 50px;
	border-bottom: dashed 1px #f3981d;*/
}

section.content section.topics .event ul li{
	width:33.3%;
	position:relative;
	padding:0 20px;
	box-sizing: border-box;
}

section.content section.topics .event ul li:nth-child(-n+3){
	margin-bottom:80px;
}

section.content section.topics .event ul li img{
	width:100%;
	height: auto;
	margin-bottom: 20px;
}

section.content section.topics .event ul li article h4{
	margin-bottom:10px;
	text-align:center;
}

section.content section.topics .event ul li article h4 a{
	color:#f3981d;
}

section.content section.topics .event ul li article h4 a:hover{
	color:#f3981d;
	text-decoration:underline;
}

section.content section.topics .event ul li article p span.more{
	display:inline-block;
	color:#fff;
	background-color:#000;
	padding:5px 10px;
	color:#fff;
	line-height: 1;
	margin-left: 5px;
}

section.content section.topics .event ul li p.date{
	background-image:url("../img/home/bg_03.png");
	background-repeat: no-repeat;
	text-align: center;
	background-position: center center;
	background-size: 100% 100%;
	width:100px;
	height: 100px;
	position: absolute;
	z-index: 1;
	left: -15px;
	top:-30px;
	color:#72640c;
	padding-top: 15px;
	box-sizing: border-box;
}

section.content section.topics .event ul li p.date strong{
	display:block;
	font-size:1.6rem;
	color:#72640c;
}

section.content section.feature div.feature_box{
	margin-top:20px;
	background-image:url("../img/home/img04.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding:50px 0;
	box-sizing: border-box;
	/*min-height:565px;*/
}

section.content section.feature div.feature_box .feature_content{
	background-color:rgba(255, 255, 255, 0.9);
	padding:30px 20px;
	width:40%;
	box-sizing: border-box;
	position: relative;
	margin-left: auto;
	/*min-height:425px;*/
	display:flex;
	align-items: center;
	flex-wrap: wrap;
}

section.content section.feature div.feature_box .feature_content p.f_num{
	font-family: "parkside", cursive;
	font-weight: 400;
	font-style: normal;
	color:rgba(243, 152, 29, 0.5);
	font-size:2.5rem;
	margin-bottom: 20px;
	width:100%;
}

section.content section.feature div.feature_box .feature_content h3{
	position:absolute;
	right:20px;
	top:25%;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	text-indent: -1em;
	font-size:1.5rem;
	color:#72640c;
}

section.content section.feature div.feature_box .feature_content .feature_content_inner  {
  /*margin-top: -105px;*/
	width:80%;
}

section.content section.feature div.feature_box .feature_content .feature_content_inner div.btn{
	margin-top:30px;
}

div.btn a{
	display:block;
	text-align:center;
	width:50%;
	border-radius: 50px;
	padding:10px;
	background-color:#72640c;
	border:solid 3px #fff;
	box-shadow: 3px 3px 15px -3px #777777;
	box-sizing: border-box;
	margin: 0 auto;
}

div.btn a span{
	display:inline-block;
	color:#fff;
	width:100%;
}

div.btn a.btnarrow::before {
  bottom: 8px;
  color: #fff;
}

div.btn a:hover{
	background-color:#f3981d;
}

section.content section.feature div.feature_box.feature02{
	background-image:url("../img/home/img05.jpg");
	background-position: right center;
}

section.content section.feature div.feature_box.feature03{
	background-image:url("../img/home/img06.jpg");
	background-position: right center;
}

section.content section.feature div.feature_box.feature04{
	background-image:url("../img/home/img07.jpg");
	background-position: right top;
}

section.content section.feature div.feature_box.feature02 .feature_content,
section.content section.feature div.feature_box.feature04 .feature_content{
	margin-left:inherit;
	margin-right: auto;
}

section.content section.feature div.feature_box.feature02 .feature_content p.f_num,
section.content section.feature div.feature_box.feature04 .feature_content p.f_num{
	text-align:right;
	width:80%;
}

section.content section.feature div.feature_box.feature03 h3{
	top:15%;
}

section.content section.feature{
	padding:0 0 20px;
}

section.content section.topics div.event p.readmore{
  margin-top: 20px;
  text-align: center;
}

section.content section.topics div.event p.readmore a{
  background-color: #72640c;
  color: #fff;
  display: inline-block;
  padding: 2px 25px;
  box-sizing: border-box;
	font-size: 0.85rem;
	border-radius: 100px;
}

section.content section.topics div.event div.btn{
	margin-top:30px;
}

section.content section.topics div.event div.btn a {
  padding: 6px;
	width:90%;
}

section.content section.topics div.event div.btn a span{
	font-size:0.9rem;
}

section.topics .news{
	margin-bottom:20px;
}

section.topics div.btn a{
	width:300px;
	margin-bottom: 80px;
}



.is-pc{
	display:block;
}

.is-sp{
	display:none;
}


@media only screen and (max-width: 1023px){
section.mv img.ai {
  width: 41%;
  top: 25%;
}
	
#slider.mv .vegas-wrapper div.catch {
  padding: 50px 20px;
}
	
#slider.mv .vegas-wrapper div.catch h2 {
  font-size: 1.5rem;
}
	
#slider.mv .vegas-wrapper h1 {
  font-size: 3.0rem;
}
	
section.content section.feature div.feature_box .feature_content {
  width: 50%;
}
	
div.btn a {
  width: 100%;
}
	
section.content section.feature div.feature_box .feature_content .feature_content_inner {
  width: 75%;
}
	
.btnarrow::before {
  left: 18%;
}
	
nav > ul > li {
  width: 18%;
  margin-bottom: 10px;
}
	


	
 #slider.mv .vegas-wrapper div.catch  {
    padding: 20px;
    position: absolute;
    height: 50vh;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    box-sizing: border-box;
    left: 25%;
  }
	
#slider.mv .vegas-wrapper h1 {
    font-size: 2rem;
    margin-top: 30%;
    margin-bottom: 45px;
  }
	
#slider.mv .vegas-wrapper div.catch h2 {
    font-size: 0.95rem;
  }
	
#slider.mv .vegas-wrapper div.catch p {
  height: auto;
  font-size: 0.75rem;
  text-align: justify;
}
	
section.content section {
  padding: 100px 0;
}
	
section.content section h2 ul li {
  font-size: 2.0rem;
  margin: 0 10px;
  width: 60px;
  height: 60px;
  line-height: 65px;
}
	
section.content section.topics .news h3 {
  padding: 5px 15px;
  font-size: 1.2rem;
}
	
section.content section.topics .news ul li {
  flex-wrap: wrap;
}
	
section.content section.topics .news ul li article{
  width: 100%;
	margin-top:10px;
}
	
section.content section.topics .news ul {
  width: 100%;
  margin: 20px 0;
  overflow-y: scroll;
  height: 350px;
  padding: 20px;
  box-sizing: border-box;
}
	
section.content section.topics .news ul li article h4 a {
  color: #4d4d4d;
  font-size: 0.9rem;
  text-decoration: underline;
}
	
section.content section.topics .event h3 {
    padding: 5px 15px;
    font-size: 1.2rem;
  }
	
section.content section.topics .event ul {
  width: 100%;
  margin: 20px 0;
  overflow-y: scroll;
  height: 350px;
  padding: 30px 20px 20px;
  box-sizing: border-box;
}
	
section.content section.topics .event ul li article h4 a {
  font-size: 0.9rem;
  text-decoration: underline;
}
	
section.content section.topics .event ul li{
  margin-bottom: 80px;
	width: 45%;
}
	
section.content section.topics .event ul li:nth-last-child(-n+2) {
  margin-bottom: 0px;
}
	
section.content section.topics .event ul li p.date {
  width: 70px;
  height: 70px;
	font-size:0.8rem;
  padding-top: 10px;
  box-sizing: border-box;
}
	
section.content section.topics .event ul li p.date strong {
  font-size: 1.1rem;
}
	
section.content section.feature div.feature_box .feature_content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
	
section.content section.feature div.feature_box .feature_content p.f_num {
  font-size: 2.0rem;
	margin-bottom: 0;
}
	
section.content section.feature div.feature_box .feature_content h3 {
  position: unset;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
  text-indent: 0;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
	
section.content section.feature div.feature_box .feature_content .feature_content_inner {
    width: 100%;
  }
	
div.btn a span {
  font-size: 0.9rem;
}
	
div.btn a.btnarrow::before {
    left: 20%;
  }
	
section.content section.feature div.feature_box .feature_content {
  background-color: rgba(255, 255, 255, 0.85);
}
	
section.content section.feature div.feature_box.feature02 .feature_content,
section.content section.feature div.feature_box.feature04 .feature_content {
  margin-left: auto;
  margin-right: auto;
}
	
section.content section.feature div.feature_box.feature02 .feature_content p.f_num, 
section.content section.feature div.feature_box.feature04 .feature_content p.f_num {
  text-align: left;
  width: 100%;
}
	
section.content section.feature div.feature_box {
  background-image: url("../img/home/sp_img04.jpg");
}
	
section.content section.feature div.feature_box.feature02 {
  background-image: url("../img/home/sp_img05.jpg");
}
	
section.content section.feature div.feature_box.feature03 {
  background-image: url("../img/home/sp_img06.jpg");
}
	
section.content section.feature div.feature_box.feature04 {
  background-image: url("../img/home/sp_img07.jpg");
}
	
section.content section.topics div.event p.readmore a{
  display: block;
}

	


	
	
.is-pc{
	display:none;
}

.is-sp{
	display:block;
}
}








