@charset "utf-8";
/*--京home.css--*/
/* ##########PC########## */
.contents{
	padding-bottom: 5rem;
}

.contents_inner{
	padding: 5rem 0 0 0;
	line-height: 1.5;
	position: relative;
	overflow: hidden;
}

.home_catch_text{
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

	.home_catch_text h1{
		display: flex;
		flex-direction: column;
		align-items: center;
		/*font-family: "Merriweather", serif;*/
	}

	.home_catch_text h1 .lbl1{
		font-size: 1rem;
		font-weight: 500;
	}

	.home_catch_text h1 .lbl2{
		font-size: 1.8rem;
		font-weight: 700;
		color: #222;
	}


.text_home_msg{
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: 1s all ease;
	transition-delay: .7s;
	margin-bottom: 4rem;
}

	.text_home_msg .lbl1{
		font-family: "Merriweather", serif;
		font-size: 3rem;
		font-weight: 700;
		margin-bottom: 0.5em;
		display: flex;
		flex-direction: column;
		align-items: center;
		color: #256033;
	}

		.text_home_msg .lbl1 .lbl1_1{}

		.text_home_msg .lbl1 .lbl1_2{}

	.text_home_msg .lbl2{
		font-weight: 600;
		font-size: 1.3rem;
	}

.youtube_box{
    width:600px;
	aspect-ratio: 560 / 315;
    margin: 0 auto 5rem auto;
}

.youtube_box iframe{
    width:100%;
    height: 100%;
}


.news_box{
	width: 900px;
	margin: 0 auto;
	transition: .5s all ease;
	transition-delay: .5s;
	opacity: 0;
	transform: translateY(1rem);
}

.news_box.show{
	opacity: 1;
	transform: translateY(0);
}

	.news_box > .box_header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 0.5rem;
	}

		.news_box > .box_header h2{
			display: flex;
			align-items: center;
		}

			.news_box > .box_header h2{
				color: #333;
				font-size: 1.7rem;
				font-weight: 600;
			}

		.news_box > .box_header .more{
		}

			.news_box > .box_header .more a{
				display: block;
				color: #fff;
				text-decoration: none;
				/*background: #005472;*/
				background: #256033;
				padding: 0.1em 1.5em;
				font-size: 0.92rem;
				transition: .3s all ease;
			}

			.news_box > .box_header .more a:hover{
				filter: brightness(1.2);
			}

				.news_box > .box_header .more a::after{
					font-family: FontAwesome;
					content:"\f0da";
					margin-left: 0.5em;
				}

		.news_box > .box_inner{
			box-sizing: border-box;
			min-height: 300px;
			background: rgba(255, 255, 255, 1);
			padding: 2rem;
		}

			.news_box > .box_inner ul li{
				border-bottom: 1px solid rgba(0,0,0,0.1);
				font-size: 0.94rem;
				padding: 0.2rem 0 0 1em;
				position: relative;
			}

				.news_box > .box_inner ul li::before{
					font-family: FontAwesome;
					content:"\f0da";
					color: #256033;
					position: absolute;
					top: 0.75em;
					left: 0.5em;
				}

			.news_box > .box_inner ul li:last-child{
				border-bottom: none;
			}

                .news_box > .box_inner ul li .no_link{
					display: flex;
					flex-direction: column;
					padding: 0.6rem 0.8rem;
					text-decoration: none;
					color: #111;
					position: relative;
					transition: .3s all ease;
                }
/*
				.news_box > .box_inner ul li a{
					display: flex;
					flex-direction: column;
					padding: 0.6rem 0.8rem;
					text-decoration: none;
					color: #fff;
					position: relative;
					transition: .3s all ease;
				}
					
					.news_box > .box_inner ul li a:before{
						content: "";
						display: block;
						width: 100%;
						height: 100%;
						background: rgba(0,0,0,0.5);
						position: absolute;
						top: 0;
						left: 0;
						z-index: 1;
						transition: .3s all ease;
						transform: scaleX(0);
						transform-origin: left center;
						opacity: 0;
					}

					.news_box > .box_inner ul li a:hover:before{
						transform: scaleX(1);
						opacity: 1;
						box-shadow: 0 0 20px 5px rgba(235,170,50,0.5);
					}
*/

					.news_box > .box_inner ul li .entry_date{
						color: #333;
						font-weight: bold;
						margin-bottom: 0.1em;
						position: relative;
						z-index: 2;
					}

					.news_box > .box_inner ul li .entry_title{
						position: relative;
						z-index: 2;
					}

.news_box > .box_inner ul li .entry_title a{
    color: #003d84;
    transition: .3s all ease;
}

.news_box > .box_inner ul li .entry_title a:hover{
    color: #008740;
}

.greeting_box{
    width: 900px;
    margin: 0 auto 4rem auto;
    transition: .5s all ease;
    transition-delay: .5s;
    opacity: 0;
    transform: translateY(1rem);
}

.greeting_box.show{
	opacity: 1;
    transform: translateY(0);
}

.greeting_box .box_header{
	margin-bottom: 1rem;
}

.greeting_box .box_header h2{
	display: flex;
	flex-direction: column;
    align-items: center;
	justify-content: center;
	color: #333;
    font-size: 1.7rem;
    font-weight: 600;
}

.greeting_box .box_inner{
	background: rgba(255, 255, 255, 1);
    padding: 3rem;
	line-height: 2;
	box-shadow: 0 0 20px 1px rgba(0,0,0,0.1);
	border-radius: 1rem;
	display: flex;
	gap: 2rem;
}

.greeting_box .box_inner p{
    font-size: 0.94rem;
	margin-bottom: 1rem;
}

.greeting_box .box_inner .prof_info{
	width: 16rem;
}

	.greeting_box .box_inner .prof_info .fig{
		margin-bottom: 0.5em;
	}

	.greeting_box .box_inner .prof_info .text{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.greeting_box .box_inner .prof_info p{
		margin-bottom: 0;
		line-height: 1.4;
	}

	.greeting_box .box_inner .prof_info p.lang_ja{
		font-size: 1.15em;
		font-weight: 500;
	}

	.greeting_box .box_inner .prof_info p.lang_en{
		font-weight: 500;
	}

	.greeting_box .box_inner .prof_info p.position{
		margin-top: 0.3em;
		font-size: 0.9em;
	}

.greeting_box .box_inner .greeting_main{
	flex: 1;
}

	.greeting_box .box_inner .greeting_main .more{
		display: flex;
		justify-content: flex-end;
	}

	.greeting_box .box_inner .greeting_main .sp{
		display: none;
	}

		.greeting_box .box_inner .greeting_main .more a{
			display: block;
			color: #fff;
			text-decoration: none;
			background: #256033;
			padding: 0.1em 1.5em;
			font-size: 0.92rem;
			transition: .3s all ease;
			line-height: 1.5;
		}

		.greeting_box .box_inner .greeting_main .more a::after {
			font-family: FontAwesome;
			content: "\f0da";
			margin-left: 0.5em;
		}

		.greeting_box .box_inner .greeting_main .more a:hover{
			filter: brightness(1.2);
		}

@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
	.contents_inner{
		padding-top: 4rem;
	}

	.news_box{
		width: 78vw;
	}

	.greeting_box{
		width: 78vw;
	}
}

/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {


}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
	.contents{
		padding-bottom: 5rem;
	}

	.contents_inner{
		padding-top: 0;
	}

	.home_catch_text{
		margin-bottom: 2rem;
	}

		.home_catch_text h1 .lbl1{
			font-size: 0.7rem;
		}

		.home_catch_text h1 .lbl2{
			font-size: 1.1rem;
			line-height: 1.2;
			text-align: center;
		}


	.text_home_msg{
		margin: 0 0 3rem 0;
	}

		.text_home_msg .lbl1{
			font-size: 1.5rem;
			margin-bottom: 0;
		}

		.text_home_msg .lbl2{
			font-size: 0.9rem;
		}


    .youtube_box{
        width:90vw;
        margin: 0 auto 4rem auto;
    }

    .youtube_box iframe{
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

	.news_box > .box_header{
		background: rgba(255, 255, 255, 0.8);
		margin: 0;
		padding: 0.8rem 1rem 0 1rem;
	}
    
	.news_box > .box_header h2 .lbl_ja{
		font-size: 1.5rem;
	}

	.news_box > .box_inner{
		background: rgba(255, 255, 255, 0.8);
		padding: 0 1rem 1rem 1rem;
	}

	.greeting_box .box_inner{
		padding: 1.5rem;
		margin-left: 0;
		margin-right: 0;
		flex-direction: column;
		align-items: center;
		gap: 1em;
	}

	.greeting_box .box_inner .greeting_main .sp{
		display: block;
	}

	.greeting_box .box_inner .greeting_main .pc{
		display: none;
	}

	.greeting_box .box_inner .prof_info{
		width: 80%;
	}

	.greeting_box .box_inner .greeting_main .more{
		justify-content: center;
	}


}


/* ##########印刷用########## */
@media print{

}