﻿et "UTF-8";
/* Body */
body {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #FFFFFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 400;
}

/* Container */
.container {
	font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
}
.container header {
	overflow: auto;
	line-height: 200%;
}
/* Navigation */
header {
	width: 100%;
	height: 50px;
	background-color: #323232;
	border-bottom: 5px solid #088A08;
}
.h-menu {
	position: relative;
}
.h-menuCheckbox {
	display: none;
}
/*ハンバーガーメニュー*/
.h-menu_icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}
/*3本線*/
.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	width: 32px;
	height: 4px;
	background: white;
	cursor: pointer;
}
.hamburger-icon:before {
	top: 10px;
}
.hamburger-icon:after {
	top: 20px;
}
/*メニュー以外を暗くする*/
#h-menu_black {
	display: none;
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .7s ease-in-out;
}
/*中身*/
#h-menu_content {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	max-width: 320px;
	height: 100vh;
	padding: 53px 0px 16px;
	background: #323232;
	overflow: auto;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
}
/*チェックボックスにチェックが入ったら表示*/
input:checked ~ .h-menu_icon .hamburger-icon {
	background: transparent;
}
input:checked ~ .h-menu_icon .hamburger-icon::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 10px;
	z-index: 999;
}
input:checked ~ .h-menu_icon .hamburger-icon::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 10px;
	z-index: 999;
}
input:checked ~ #h-menu_black {
	display: block;
	opacity: .8;
}
#h-menu_checkbox:checked ~ #h-menu_content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.h-menu_icon .hamburger-icon, .h-menu_icon .hamburger-icon::before, .h-menu_icon .hamburger-icon::after, #h-menu_black, #h-menu_content {
	-webkit-transition: all .3s;
	transition: all .3s;
}
#dropmenu li {
	border-bottom: solid 1px white;
}
#dropmenu li a {
	display: block;
	height: 10px;
	color: white;
	font-size: 14px;
	padding: 20px;
	text-decoration: none;
	transition-duration: 0.2s;
}
#dropmenu li ul {
	list-style: none;
	right: 0;
	margin: 0;
	padding: 0;
}
#dropmenu li ul li {
	overflow: hidden;
	height: 0;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	transition: .5s;
}
#dropmenu li ul li a {
	padding: 10px 15px;
	background: #088A08;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}
#dropmenu li:hover > a {
	background: #E0F8E0;
	color: #088A08;
	height: 30px;
}
#dropmenu > li:hover > a {
	border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li {
	background: #088A08;
	overflow: hidden;
	height: 40px;
	border-top: 1px solid #088A08;
}
#dropmenu li:hover ul li:first-child {
	border-top: 0;
	border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a {
	border-radius: 0 0 3px 3px;
}
table {
	border-collapse: collapse;
	background: #fafafa;
	display: inline-block;
}
table th, table td {
	border: solid 5px #fafafa;
}
/* Hero Section */
.slide {
	z-index: 4;
	background: #000000;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin-top: -6px;
	padding-bottom: 66.7%;/*画像の高さ*/
}
.slide h2 {
	z-index: 3;
	white-space: nowrap;
	color: white;
	font-size: 200%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
}
.slide h3 {
	z-index: 2;
	white-space: nowrap;
	color: white;
	font-size: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	position: absolute;
	top: 54%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, 50%);
	margin: 0;
	padding: 0;
}
.slide img {
	z-index: 1;
	position: absolute;
	display: block;
	opacity: 0;
	width: 100%;
	height: 100%;
	animation: slider 30s ease infinite;
}
.slide img:nth-of-type(1) {
	animation-delay: 0s
}
.slide img:nth-of-type(2) {
	animation-delay: 10s
}
.slide img:nth-of-type(3) {
	animation-delay: 20s
}
 @keyframes slider {
 0% {
opacity: 0
}
 16% {
opacity: 1
}
 33% {
opacity: 1
}
 49% {
opacity: 0
}
 100% {
opacity: 0
}
}
.section_title {
	padding-top: 1em;
	color: black;
	font-size: 25px;
	text-align: center;
}
.sention_sub_title {
	color: black;
	font-size: 15px;
	text-align: center;
}
/*text--------------------------------------------------------------------------------------------------*/
/* text section 1 中央ぞろえ */

.text_banner {
	line-height: 120%;
}
.text_class_1 {
	background: #fafafa;
	text-align: center;
	display: block;
	justify-content: center;
	align-items: center;
}
.about {
	background-size: 110%;
	width: 100%;
	display: inline-block;
}
.text_class_1 .text {
	text-align: center;
	display: inline-block;
	width: 100%;
	color: black;
}
.text_class_1 li .text {
	padding-left: 2em;
}
/* text section 2 中央ぞろえ（ブロック内左詰め） */
.text_class_2 {
	background: #F7F7F7;
	text-align: center;
	display: block;
}
.text_class_2 .text {
	text-align: left;
	display: inline-block;
	color: black;
}
.text_class_2 .text li {
	margin-bottom: 1em;
}
/* text section 3 中央ぞろえ（ブロック内左詰め） 左右余白付き */
.text_class_3 {
	background: #FAFAFA;
	text-align: center;
	display: block;
}
.text_class_3 .text {
	text-align: left;
	display: inline-block;
	width: 90%;
}
.text_class_4 img {
	text-align: center;
	display: inline-block;
	width: 100%;
	color: black;
	}
.text_class_5 img {
	text-align: center;
	display: inline-block;
	width: 90%;
	color: black;
	}
.text_class_6 img {
	text-align: center;
	display: inline-block;
	width: 100%;
	color: black;
	}
/* text section 7 中央ぞろえ（ブロック内左詰め） */
.text_class_7 {
	background: #E6F7FF;
	text-align: center;
	display: block;
}
.text_class_7 .text {
	text-align: left;
	display: inline-block;
	color: black;
}
.text_class_7 .text li {
	margin-bottom: 1em;
}
/* text section 8 中央ぞろえ（ブロック内左詰め） */
.text_class_8 {
	background: #B3E7FF;
	text-align: center;
	display: block;
}
.text_class_8 .text {
	text-align: left;
	display: inline-block;
	color: black;
}
.text_class_8 .text li {
	margin-bottom: 1em;
}	
.text_class_9 img {
	text-align: center;
	display: inline-block;
	width: 100%;
	color: black;
	}
/*news--------------------------------------------------------------------------------------------------*/
dl.news {
	padding: 0;
	line-height: 2;
	width: 90%;
	display: inline-block;
}
dl.news dt {
	width: 6em;
	float: left;
	text-align: left;
	margin: 0;
	padding: 0 0 0 5px;
}
dl.news dd {
	margin: 0 0 10px;
	padding: 0 5px 10px 8em;
	text-align: left;
	border-bottom: 1px dotted #ccc;
}
/*table--------------------------------------------------------------------------------------------------*/
.table_class {
	margin-top: 1em;
	background: #fafafa;
	text-align: center;
	display: block;
}
.table_text {
	text-align: left;
	display: inline-block;
}
/*resuls--------------------------------------------------------------------------------------------------*/
.result_banner {
	font-size: 2em;
	text-align: left;
}
.list {
	position: relative;
	overflow: hidden;
	height: auto;
	margin: 0 auto;
	width: 95%;
}
.list input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.list label {
	font-weight: 400;
	line-height: 3;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 3px 0;
	opacity: 0.7;
	color: black;
	border: 1px solid #323232;
}
.list .list-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 1.2s;
	transition: max-height 1.2s;
	color: black;
	background: #FAFAFA;
}
.list .list-content p {
	margin: 1em;
}
.list input:checked ~ .list-content {
	max-height: 500em;
}
/*members--------------------------------------------------------------------------------------------------*/

.year {
	font-size: 30px;
}
.group_photo {
	margin: auto;
	background-position:center;
	background-size: cover;
	background-image: url(../pictures/members/2025/header.JPG);
	width: auto;
	height: auto;
 padding-top: calc(650 / 1300 * 100%);
}
.cards1 {
	width: 180px;
	height: 240px;
}
.student_card {
	width: 80%;
}
.flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	align-items: center;
	margin-right: 37px;
}
.flexbox__item {
	width: 230px;
	margin-bottom: 2em;
}
/*research--------------------------------------------------------------------------------------------------*/
.research_card {
	width: 90%;
}
.research_flexbox {
	margin-top: 3em;
	background: #FAFAFA;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	align-items: top;
	margin-right: 37px;
}
.research_flexbox_item {
	width: 320px;
	margin-bottom: 2em;
}
/*map--------------------------------------------------------------------------------------------------*/
.map {
	margin: auto;
	background-size: cover;
	background-image: url(../pictures/nodamap0.png);
	width: 80%;
	height: 0px;
	padding-top: calc(355 / 400 * 80%);/*map高さ*/
}

/*copyright--------------------------------------------------------------------------------------------------*/
.copyright {
	margin-top: 20px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #f5f5f5;
	color: #86868b;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0px;
	border-top-width: 2px;
}
footer {
	display: inline-block;
}
.hidden {
	display: none;
}

/* Mobile */
@media (max-width: 320px) {
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #FFFFFF;
}
.logo {
	width: 100%;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #043745;
}
.container header {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	height: 6%;
	float: none;
	overflow: auto;
	display: inline-block;
	background: #323232;
}
.container header ul {
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 40%;
}
.container header li {
	width: auto;
	font-size: 70%;
	white-space: nowrap;
}
.slide {
	margin-top: -5px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 180px;
	width: 100%;
	height: 20%;
}
.slide img {
	width: 100%;
	height: 100%;
}
.slide h2 {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
}
.slide h3 {
	font-size: 10px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	position: absolute;
	top: 60%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
}
.footer_banner {
	font-size: 90%;
	padding-top: 20px;
	padding-bottom: 20px;
	height: 10%;
}
.footer_column {
	height: 100%;
	width: 100%;
	margin-top: 0px;
}

.footer_column {
	width: 100%;
}
.copyright {
	font-size: 50%;
}
.map {
	width: 80%;
	height: 0px;
 padding-top: calc(355 / 400 * 80%);
}
}

/* Small Tablets */

#box{
 	background: #F7F7F7;
	display: block;
}
#box li {
  margin-top: 2px;
  margin-left:  50px;
}
