@charset "UTF-8";
/* CSS Document */
.roboto{
	margin:60px auto 20px;
	display: flex;
	justify-content: center;
}
.roboto p{
	font-family: 'Roboto';
	font-weight: 300;
	font-style: italic;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	display: inline-block;
	font-size: 562.5%;
	line-height: 1;
	background: linear-gradient(90deg, #00b6ff 0%, #0068b7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 10px;
}
.h1title{
	text-align: center;
	font-size: 150%;
	margin-bottom: 50px;
}
.h2title{
	font-size: 200%;
	text-align: center;
	margin: 50px 0;
}
.h2title:after{
	content:"";
	display: block;
	background: #0068b7;
	width: 60px;
	height: 3px;
	margin: 0 auto;
}
.jump{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.jump a{
	position: relative;
	color: #0068b7;
	border:2px solid #0068b7;
	border-radius: 100px;
	font-weight: 500;
	background: #fff;
	padding: 5px;
	text-align: center;
	transition: 0.3s all ease
}
.jump a:after{
	position: absolute;
	content: "";
	width:10px;
	height: 10px;
	border-bottom:2px solid #0068b7;
	border-right:2px solid #0068b7;
	transform: rotate(45deg);
	right: 20px;
	bottom: 45%;
}
.jump a:hover{
	color: #fff;
	background: #0068b7;
	letter-spacing: 0.1em;
}
.jump a:hover:after{
	border-bottom:2px solid #fff;
	border-right:2px solid #fff;
}
@media only screen and (max-width: 767.98px) {
	.roboto{
		margin:30px auto 0px;
	}
	.roboto p{
		font-size: 240%;
	}
	.h1title{
		font-size: 100%;
		margin-bottom: 50px;
	}
	.h2title{
		font-size: 130%;
		margin: 40px 0;
	}
	.h2title:after{
		width: 20px;
	}
}
.president{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.president .text{
	width:70%;
}
.president .text h2{
	font-weight: 700;
	font-size: 140%;
}
.president .text p{
	line-height: 2;
}
.president .photo{
	width:25%;
}
.president .photo div{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
.president .photo div p{
	width: 40%;
}
.president .photo div img{
	width: 55%;
}
.summary{
	width:100%;
	border-top:1px solid #999;
	border-bottom:1px solid #999;
}
.summary tr:not(:last-child){
	border-bottom:1px solid #999;
}
.summary th{
	font-weight: 500;
	text-align: center;
	width: 15%;
}
.summary td{
	width: 85%;
	padding: 15px 0;
}
.summary td span{
	font-weight: 500;
	color:#0068b7;
	margin-right: 1em;
}
.entry-text{
	text-align: center;
}
.entry{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.entry a{
	width: 40%;
	max-width: 400px;
	margin: 20px 0;
}
@media only screen and (max-width: 767.98px) {
	.president .text{
		width:100%;
		order:2;
	}
	.president .text h2{
		font-size: 110%;
	}
	.president .text p{
		line-height: 1.75;
	}
	.president .photo{
		width:50%;
		margin: 0 auto;
	}
	.president .photo div{
		margin-top: 5px;
	}
	.president .photo div p{
		width: 100%;
	}
	.president .photo div img{
		width: 80%;
		margin-bottom: 20px;
	}
	.summary th{
		text-align: left;
		width: 100%;
		display: block;
		padding-top: 10px;
	}
	.summary td{
		width: 100%;
		padding: 0 0 10px;
		display: block;
		line-height: 1.4;
		text-align: justify;
	}
	.summary td span{
		display: block;
		margin-right: 0;
		margin-top: 10px;
		line-height: 1.2;
	}
	.entry{
		display: flex;
		justify-content: space-evenly;
	}
	.entry a{
		width: 80%;
		max-width: 400px;
	}
}
/*qanda*/
.qanda .jump a{
	width:20%;
}
.rech1{
	font-size:250%;
	margin: 100px 0;
	font-weight: 700;
}
.faqbox{
	display: flex;
	flex-flow: column;
	gap:10px;
}
.faqbox>li{
	background: #f0f0f0;
	padding: 30px;
	border-radius: 10px;
}
.faqbox>li h4{
	font-weight: 700;
	color: #0068b7;
	font-size: 112.5%;
	position: relative;
	padding-left: 40px;
	line-height: 1.4;
}
.faqbox li h4:before{
	position: absolute;
	content:"Q";
	color: #fff;
	background: #0068b7;
	width:30px;
	height: 30px;
	border-radius: 5px;
	text-align: center;
	left:0;
	top:50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.7;
}
.faqbox>li p{
	margin-top: 20px;
	padding-left: 40px;
}
@media only screen and (max-width: 767.98px) {
	.faq .jump a{
		width:48%;
	}
	.faq h3{
		margin-top: 20px;
		font-size: 110%;
	}
	.faqbox>li{
		padding: 20px;
	}
	.faqbox>li h4{
		font-size: 100%;
	}
	.faqbox>li p{
		margin-top: 10px;
		padding-left: 0;
	}
	.faqbox>li p br{
		display: none;
	}
}
/*data*/
.data{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	width: 100%;
	margin: 20px auto;
}
.databox {
	background-color: #f0f0f0;
	padding: 30px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
}
.databox h2{
	text-align: center;
	font-weight: 700;
	font-size: 140%;
}
.databox .namber{
	text-align: center;
	font-weight: 700;
	font-size: 450%;
	color:#0068b7;
	line-height: 1;
}
.databox .namber span{
	font-size: 50%;
}
.databox figure{
	max-width: 80%;
	margin: 20px auto;
}
.databox figure img{
	height: 120px;
	width: auto;
}
.span-2 {
	grid-column: span 2;
}
@media only screen and (max-width: 767.98px) {
	.rech1{
		font-size:150%;
		margin: 40px 0;
	}
	.data{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		width: 100%;
		margin: 20px auto;
	}
	.databox {
		width: 100%;
	}
	.databox h2{
		font-size: 130%;
	}
	.databox .namber{
		font-size: 400%;
	}
}
.memberlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px auto;
}
.memberlist .memberbox{
	width:20%;
}
.memberbox div{
	margin: 15px 0;
	padding:5px 10px;
}
.memberbox .member1{
	border-left:5px solid #00a95f;
}
.memberbox .member2{
	border-left:5px solid #e85ba8;
}
.memberbox .member3{
	border-left:5px solid #ff9600;
}
.memberbox .member4{
	border-left:5px solid #0064af;
}
.memberbox div h2{
	font-weight: 700;
	line-height: 1.2;
	font-size: 140%;
}
.memberbox div p{
	font-weight: 700;
	line-height: 1.2;
}
.member-spec{
	color:#666;
	font-size: 90%;
	line-height: 1.4;
}
.title {
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	font-size: 115%;
	padding: 5px 0;
	margin: 60px 0 40px;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.title:before{
	content: "";
	display: inline-block;
	width: 5px;
	height: 1.5em;
	background-color: #0068b7;
	margin-right: 8px;
}
.discussionbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.discussionbox figure{
	width: 10%;
	border-radius: 50%;
	overflow: hidden;
}
.discussionbox .member1{
	border:5px solid #00a95f;
}
.discussionbox .member2{
	border:5px solid #e85ba8;
}
.discussionbox .member3{
	border:5px solid #ff9600;
}
.discussionbox .member4{
	border:5px solid #0064af;
}
.discussionbox p{
	width: 87%;
}
.discussion-photo,
.discussion-photo2,
.discussion-photo3{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 60px 0;
}
.discussion-photo figure{
	width:49.5%;
}
.discussion-photo2 figure{
	width:24.5%;
}
.discussion-photo3 figure{
	width:100%;
}
.discussion-photo figure figcaption{
	text-align: right;
	font-size: 90%;
}
@media only screen and (max-width: 767.98px) {
	.memberlist{
		margin: 15px auto;
	}
	.memberlist .memberbox{
		width:48%;
		margin-bottom: 10px;
	}
	.memberbox div{
		margin: 5px 0;
		padding:2px 7px;
	}
	.member-spec{
		font-size: 85%;
	}
	.title {
		margin: 30px 0 20px;
	}
	.discussionbox figure{
		width: 30%;
		display: block;
		margin: 0 auto 10px;
	}
	.discussionbox p{
		width: 100%;
	}
	.discussion-photo,
	.discussion-photo2,
	.discussion-photo3{
		margin: 30px 0;
	}
}