@charset "UTF-8";

/* 部活用CSS(Ver1.31) ---------------------------------------------------------------------------*/
/* 基本的には色指定部分のみ変更。 */
/* 他のcssを変更する場合はバージョンを上げて、他との違いを分かるように */
/* Ver1.3  主な進学先、2カラムの記事構成に対応 */
/* Ver1.31 2カラムの記事に border-spacing を追加 */

/* 色指定(水泳部) -------------------------------------------------------------------------------*/
/* メインカラー                       #3399FF */
/* サブカラー                         #5CADFF */
/* サブカラー2                        #85C2FF */
/* リンクの文字色(通常変更なし)       #000000 */
/* リンクの文字色2(通常変更なし)      #663399 */

/* タグの初期化 ---------------------------------------------------------------------------------*/
/* 全体設定 -------------------------------------------------------------------------------------*/
/* 全体 */
*{
	margin: 0;
	padding: 0;
	border: none;
}

body {
	text-align: center;
	font-size: 95%;
}

/* 見出し1 */
h1{
	text-align: center;
	width: 100%;
}

/* 見出し2 */
h2{
	text-align: left;
	margin: 10px 0 10px 20px;
}

/* 見出し3 */
h3{
	font-size: 130%;
	line-height: 2em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-left-width: 7px;
	border-left-style: solid;
	border-left-color: #3399FF;
	margin: 10px 0;
	padding: 0 0 0 10px;
}
/* 見出し4 */
h4{
	font-size: 110%;
	line-height: 1.5em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #3399FF;
	margin: 15px 5px 10px 0;
	padding: 0 0 0 10px;
}
/* 文章 */
p{
	text-align: left;
	padding: 5px 10px;
	line-height: 1.4em
}

/* 定義リスト */
dl{
	text-align: left;
}

dd{
	font-size: 90%;
}

/* リスト */
li {
	list-style-type: none;
	padding: 0px;
	margin: 5px 0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	touch-callout: none;
	user-select: none;
}

/* リンク設定 -----------------------------------------------------------------------------------*/
/* リンク */
a {
	color: inherit;
	text-decoration: none;
}

/* リンクの画像 */
	a img{
		border-style: none;
	} 

/* リンク(マウスオーバー) */
	a:hover{
		text-decoration: underline;
	}

/*--- ボタン ---*/

.btn a {
	position: relative;
	display: inline-block;
	padding: 8px 20px 8px 20px;
	color: #000 !important;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	transition: 0.5s;
	z-index: 1;
  	border-radius: 8px;/*角の丸み*/
	background-color: #FFF;
	border: solid 2px #5CADFF;
	margin: -5px 0 10px 0;
}
.btn a:hover {
	background-color: #5CADFF;
}


/* アコーディオンメニュー(クリックすることでメニューが開いたり閉じたり表示を変更できるもの）) ---*/
input {
	display: none;
}
label {
	cursor: pointer;
	display: inline-block;
	margin: 10px 0px;
	padding: 10px 20px;
	border-radius: 4px;
	background: #3399FF;
	color: #ffffff;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.panel {
	-webkit-transition: .3s ease;
	transition: .3s ease;
	height: 0;
	overflow: hidden;
	margin-top: 10px;
	padding: 0;
	border-radius: 5px;
}
input:checked + .panel {
 	height: auto;
	padding: 15px;
}

/* 黒線 -----------------------------------------------------------------------------------------*/
hr.b{
	border-top: 1px solid #000000;
	width: 90%;
}

/* クリア ---------------------------------------------------------------------------------------*/
.clear{
	clear: both;
}
/* レイアウト -----------------------------------------------------------------------------------*/
/* メインコンテンツ */
#wrapper{
	width: 100%;;
	margin: 0 auto;
	text-align: left;
	background-color: #FFFFFF;
}

/* ヘッダー */
#header{
	padding-top: 35px;
	width: 100%;
	margin: 0 auto;
}

/* フッター */
#footer {
	margin: 10px 0 0 0;
	padding-top: 20px;
}


/* 各記事の枠 -----------------------------------------------------------------------------------*/
.article {
	margin: 10px auto 10px auto;
	padding: 10px 30px 10px 30px;
	clear: both;
	width: 100%;
}
/* 2カラムの記事構成 */
div.article_2Col{
	display: table;
	border-spacing: 1em 0px;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
div.article_2Col div.article_2Col_left {
	display: table-cell;
	width: 50%;
}
div.article_2Col div.article_2Col_right {
	display: table-cell;
}
/* 挨拶文 ---------------------------------------------------------------------------------------*/
#hello{
	width: 800px;
	margin: 10px auto 10px auto;
}
#hello img{
	display: block;
	margin: 0 auto;
	padding: 20px 0;
}
#hello p.name{
	text-align: right;
}
/* 部員募集など、強調して呼びかけをする場合 */
#hello h3.call{
	background-color: #85C2FF;
}
#hello p.call{
	margin: 0;
	padding: 0 10px;
	border-color: #85C2FF;
	border-style: solid;
	border-width: 0 7px 7px 7px;
	line-height: 2em
}
/* 左右に段組する場合に使用 */
	#hello.left{
		float: left;
	}
	
	#hello.right{
		float: right;
	}
	
/* 部員数 ---------------------------------------------------------------------------------------*/
#member{
	width: 800px;
	margin: 10px auto 10px auto;
}
/*-- 部員数の一覧用 -----------------------------------------------------------------------------*/
	li.member_list{
		text-align: left;
		padding: 5px 2px 5px 15px;
		margin-left: 1.5em;
		list-style-type: none;
		background-image:url("../../../images/sankaku_gray.png");
		background-repeat:no-repeat;
		background-position: 3px 10px;
	}
/*---- 部員数の一覧、画像用設定 -----------------------------------------------------------------*/
		li.member_list img{
			margin-right: 10px;
		}
/* 部活紹介 -------------------------------------------------------------------------------------*/
#introduce{
	width: 800px;
	margin: 10px auto 10px auto;
}
#introduce dt {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
	line-height: 1.5em;
	padding: 5px 2px 5px 10px;
}
#introduce dt.title {
	background-color: #5CADFF;
	margin: 20px 5px 5px 5px;
}
#introduce dt.data {
	background-color: #85C2FF;
	padding: 5px 2px 5px 20px;
	margin: -5px 5px 5px 5px;
}
#introduce dd {
	font-size: 90%;
	line-height: 1.5em;
	padding: 5px 2px 5px 10px;
	margin-left: 1.5em;
	background-repeat:no-repeat;
	background-position:0px 12px;
}
#introduce dd.title {
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #85C2FF;
	margin: 1em 0em 0em 0.5em;
	padding: 5px 2px 5px 10px;
}
#introduce dd.arrow {
	background-image:url("../../../images/sankaku_gray.png");
}
#introduce dl {
	padding: 0px 0px 15px 0px;
}
/* 活動紹介(更新情報) ---------------------------------------------------------------------------*/
#activity {
	width: 800px;
}

#activity dt {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
	line-height: 1.5em;
	padding: 5px 2px 5px 10px;
}

#activity dt.title {
	color: #000000;
	background-color: #85C2FF;
	margin: 20px 5px 10px 5px;
}

#activity dt.data {
	color: #000000;
	background-color: #85C2FF;
	padding: 5px 5px 5px 10px;
	margin: -5px 5px 5px 5px;
}

#activity dd {
	font-size: 90%;
	line-height: 1.5em;
	padding: 0 5px;
	margin-left: 1.5em;
	background-repeat:no-repeat;
	background-position:0px 12px;
}

#activity dd.title {
	border-left-width: 4px;
	border-left-style: solid;
	border-left-color: #85C2FF;
	margin: 1em 0em 0em 0.5em;
	padding: 5px 2px 5px 10px;
}

#activity dd.arrow {
	background-image:url("../../images/sankaku_gray.png");
	padding-right: 20px;
}

#activity dl {
	padding: 0px 0px 15px 0px;
}


/* 活動の写真 -----------------------------------------------------------------------------------*/
#gallery{
	width: 800px;
	margin: 10px auto 10px auto;
}
.waku01{
	padding: 5px;
	border: 1px solid #ccc;
	background: #fff;
	list-style: 1px 1px 5px rgba(20,20,20,0.2);
}

.waku02{
	border: 5px solid #eee;
	background: #fff;
} 

.waku03{
	border: 5px solid #fff;
	background: #fff;
} 

/* 4カラム（スマートフォンでは2カラム) */
.fourCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.fourCol .inner {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 20%;
	width: calc((220 / 980) *100%);
	margin: 0 0 15px 0;
}
.fourCol .inner h4 {
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.fourCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.fourCol .inner > a {
	width: 100%;
	height: 100%;
}
.fourCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.fourCol .inner img {
	width: 100%;
	height: 100%;
}


@media screen and (max-width:767px) {
	.fourCol {
		margin-bottom: 0;
	}
	.fourCol .inner {
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/* 主な進学先 -----------------------------------------------------------------------------------*/
#nextstage{
	width: 800px;

	margin: 10px auto 10px auto;
}
/*-- 進学先の一覧用 -----------------------------------------------------------------------------*/
#nextstage dl {
	padding: 0px 0px 15px 0px;
}
#nextstage dd {
	font-size: 90%;
	line-height: 1.5em;
	padding: 5px 2px 5px 10px;
	margin-left: 1.5em;
	background-repeat:no-repeat;
	background-position:0px 12px;
	background-image:url("../../images/sankaku_gray.png");
}
/* 余白スペース ---------------------------------------------------------------------------------*/
#space{
	margin: 10px auto 10px auto;
}
/* 著作権表記 -----------------------------------------------------------------------------------*/
	#copy {
		background-image: url(../images/bk_03.png);
		padding: 40px 0;
		clear: both;
		text-align: center;
		color: #FFF;
		font-size: small;
		border-top: #3399FF solid 5px;
	}