﻿/* スマートフォン用CSS */
@media screen and (max-width: 768px) {

img{
max-width: 100%;
height: auto;
width /***/:auto;
}

@charset "UTF-8";

/* 部活用CSS(Ver1.6B) ---------------------------------------------------------------------------*/
/* 基本的には色指定部分のみ変更。 */
/* 他のcssを変更する場合はバージョンを上げて、他との違いを分かるように */
/* Ver1.6 スライドショーをswiper仕様に変更 */

/* 色指定(弓道部) -------------------------------------------------------------------------------*/
/* メインカラー                       #EDE0CD */
/* サブカラー                         #F1E6D7 */
/* サブカラー2                        #F4ECE1 */

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

body {
	font-size: 80%;
}

#g_bar {
	display: none;
}

/****メニュー全体****/
#mobile_menu{
	/*配置*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
}

/****メニュー開閉ボタン****/
#mobile_menu div{
	/*デザイン*/
	width: 30px;
	height: 30px;
	background: #EDE0CD;
	/*配置*/
	overflow: hidden;
	position: fixed;
	margin: 10px 5px;	
	right: 0;
	display: table;
}

#mobile_menu .humberger  {
	width: 23px;
	height: 23px;
	position: absolute;
	top: 0;
        right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}


#mobile_menu .menuopen{
	/*デザイン*/
	color: #FFFFFF;
	font-size: 15px;
	/*配置*/
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

#mobile_menu .menuclose{
	/*デザイン*/
	color: #FFFFFF;
	font-size: 15px;
	/*配置*/
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

/****メニュー一覧****/
#mobile_menu ul{
	/*デザイン*/
	width: 100%;
	/*配置*/
	position: fixed;
	top: 50px;/*#menu divの高さ*/
	left: 0;
	display: none;
}

#mobile_menu li{
	/*デザイン*/
	padding: 8px;
	color: #000000;
	background-color: #EDE0CD;
	text-align: center;
	border-bottom: 1px #FFFFFF solid;
	/*配置*/
	pointer-events: auto;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	margin: 0;
}

#mobile_menu li:hover{
	/*デザイン*/
	background-color: #F1E6D7;
}

#mobile_menu a:hover{
	/*デザイン*/
	text-decoration: none;
}

/****メニューオープン時****/
#mobile_menu:target .menuopen{
	/*配置*/
	display: none;
}

#mobile_menu:target .menuclose{
	/*配置*/
	display: block;
}

#mobile_menu:target ul{
	/*配置*/
	display: block;
}


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



/* 挨拶文 ---------------------------------------------------------------------------------------*/
#hello{
	width: 85%;
}


/* 部員数 ---------------------------------------------------------------------------------------*/
#member{
	width: 85%;
}

/* 部活紹介 -------------------------------------------------------------------------------------*/
#introduce{
	width: 85%;
}

/* 活動紹介(更新情報) ---------------------------------------------------------------------------*/
#activity {
	width: 85%;
}

/* 活動の写真 -----------------------------------------------------------------------------------*/
#gallery{
	width: 85%;
}


/* 主な進学先 -----------------------------------------------------------------------------------*/
#nextstage{
	width: 85%;
}



/* 著作権表記 -----------------------------------------------------------------------------------*/
	#copy {
		padding: 20px 0;
	}

