﻿/*	IMPORT RESET	*/
@import url("reset.css");
/*	IMPORT BASIC	*/
@import url("basic.css");
/*	<header><footer><nav>ｿｰｽのｲﾝﾎﾟｰﾄ	*/
@import url("nav.css");
/*	ﾌﾚｯｸｽﾎﾞｯｸｽのｲﾝﾎﾟｰﾄ	*/
@import url("co-flexbox.css");

body {
	position: relative;
}
/*--------------------------------------------------------
	ｺﾝﾃﾝﾂ部分の設定
----------------------------------------------------------*/
/*	本部長略歴部分	*/
ul.prof {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	padding: 3px;
	background: #6E6E6E;
	line-height:1.3;
	color: white;
	font-size: 15px
}
ul.prof li {
	width: 400px;
}
@media screen and (max-width: 1222px) {
ul.prof {
	line-height:1.3;
	font-size: 14px
}
ul.prof li {
	width: 33.3%;
}}
@media screen and (max-width: 1020px) {
ul.prof {
	font-size: 15px
}
ul.prof li {
	width: 50%;
}}
@media screen and (max-width: 735px) {
ul.prof {
	font-size: 14px
}
ul.prof li {
	width: 50%;
}}
@media screen and (max-width: 686px) {
ul.prof {
	font-size: 13px
}}
@media screen and (max-width: 639px) {
ul.prof {
	font-size: 14px
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
}
ul.prof li {
	width: 70%;
}}
@media screen and (max-width: 463px) {
ul.prof li {
	width: 80%;
}}
@media screen and (max-width: 409px) {
ul.prof li {
	width: 99%;
}}

/*	本部長日記の記事部分	*/
.word {
	background-image: url("../img/pattern13.png");
	width: 97%;
	margin: 0 auto;
	padding: 10px;
	margin-bottom: 3px;
	border-radius: 10px;
}
.word p {
	line-height:1.5;
	text-indent: 1em;
}
@media screen and (max-width: 667px) {
.word {
	width: 96%;
	padding: 5px;
	margin-bottom: 1px;
	border-radius: 5px;
}}
/*	intense_images本部長の写真	*/
.intense_images1 {
	width: 100%;
	margin: 0 auto;
	text-align:center;
}
.intense_images1 .trim {
	overflow: hidden;
	width: 100%;
	height: 350px;
	position: relative;
	display: inline-block;
}
.intense_images1 .trim img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	transform: translate(-50%, -40%);
}
/*	ｷﾞｬﾗﾘｰ、本部長日記のｻﾑﾈｲﾙ表示のﾄﾘﾑ設定	*/
.intense_images {
	display: flex;
	display: -webkit-flex;	
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	background-color: #F2F2F2;
}
.intense_images .trim {
	overflow: hidden;
	-webkit-flex-grow: 1;
	flex-grow: 1;
	height: 200px;
	position: relative;
	margin: 3px;
}
.intense_images .trim img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@media screen and (min-width: 415px) {
.intense_images {
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.intense_images .trim {
	width:350px;
}}
.iken {
	background: #fff;
	font-size: 120%;
	line-height:1.2;
}
.iken p {
	margin: 0 10px;
	text-indent: 1em;
	text-align: left
}
.memo {
	background: #fff;

}
@media screen and (max-width: 667px) {
.iken {
	font-size: 100%;
	line-height:1.1;
}}

/*--------------------------------------------------------
	ｺﾝﾃﾝﾂ部分の設定
----------------------------------------------------------*/
/* タブ切り替え全体のスタイル（任意） */
div.Tabs {
	text-align: center;
}

/* タブのスタイル（任意） */
.tab_item {
	max-width: 90px;		/*　最大幅を指定する　*/
	border: solid #000 1px;		/*　線で囲む　*/
	background-color: yellow;	/*　背景色　*/
	border-left: solid 5px blue;	/*　左側に線を引く　*/
	text-align: center;		/*　ﾃｷｽﾄ位置　*/
	line-height: 2em;
	color: black; 			/*　文字の色　*/
	font-size: 18px;		/*　文字のｻｲｽﾞ　*/
	font-weight: bold;		/*　文字の太さ　*/
	line-height: 1.2;		/*　行間の調整　*/
	display: inline-block;
	transition: all 0.2s ease;
	margin: 1px;			/*　外側の余白(上)　*/
	padding: 5px;		/*　ﾎﾞｰﾀﾞｰ内余白　*/
}
.tab_item:hover{
	color: yellow;			/* マウスが載ったときの文字色 */
	background: darkblue;		/* マウスが載ったときの背景色 */
}

/* タブ切り替えの中身のスタイル（任意） */
.tab_content {
	border: solid #ccc 1px;
	background-color: #fff;
	text-align: center;
	margin: 0 auto;
	padding: 25px;
	max-width: 1260px;
	height: 100%;
}
.tab_content img {
	width: 100%;
	height: auto;
}
/*--------------------------------------------------------
	messageｺﾝﾃﾝﾂ部分の設定
----------------------------------------------------------*/
.messageimg ul li {
	margin: 0 auto;			/*--要素自体を中央に設定--*/
	max-width:300%;			/*--ｲﾒｰｼﾞの横幅の最大値を指定--*/
}
.messageimg img {
	margin: 0 auto;			/*--要素自体を中央に設定--*/
	width:100%;
	max-width: 300px;		/*--ｲﾒｰｼﾞの横幅の最大値を指定--*/
}
.banner3 {
	display: flex;
		display: -webkit-flex; /* ★Safari、Chromeブラウザに対応★ */
		display: -ms-flexbox; /* ★IEブラウザに対応★ */
	flex-wrap: nowrap;			/*　改行可　*/
		-webkit-flex-wrap: nowrap; /* ★Safari、Chromeブラウザに対応★ */
		-ms-flex-wrap: nowrap;		/* ★IEブラウザに対応★ */
}
.banner3 li {
	width: calc(100%/3);
	padding: 0 5px;
}
.banner3 li img {
	width: 100%;
	height: auto;
}
.banner2 {
	display: flex;
		display: -webkit-flex; /* ★Safari、Chromeブラウザに対応★ */
		display: -ms-flexbox; /* ★IEブラウザに対応★ */
	flex-wrap: nowrap;			/*　改行可　*/
		-webkit-flex-wrap: nowrap; /* ★Safari、Chromeブラウザに対応★ */
		-ms-flex-wrap: nowrap;		/* ★IEブラウザに対応★ */
}
.banner2 li {
	width: calc(100%/2);
	padding: 0 5px;
}
.banner2 li img {
	width: 100%;
	height: auto;
}