@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&subset=japanese');
/*----------------------------------------
【個人サイト用CSS:スマホ用】
制作:オレンジメトロ/あやはらさより
------------------------------------------*/

/*-------------------------------
全般指定
-------------------------------*/

/* 文字コード */
@charset "UTF-8";

/* 全体の指定 */
body {
	background-color:#ffffff;
	width:100%;
	margin:0px;
	font-size:100%;
	font-family: 'Noto Sans JP','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	background-image:url(img/bg.gif);
	background-repeat:repeat;
	-webkit-text-size-adjust: 100%;
}
a {
	color:#333333;
	text-decoration:none;
}
a:hover {
	color:#ffffff;
}

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

/* テキストのセンタリング */
.center{
	text-align: center;
}
/* 文章デコ - 打消し線 */
.strike{
	text-decoration: line-through;
}
/*文字小さくするやつ*/
.small{
	font-size: 90%;
}
.bold{
	font-weight: bold;
}


/* ORANGE METRO */
h1{
	margin-top:0;
	margin-left:7%;
}

/* メニュー部分:スマホ用 */
.menu_wrap {
	padding:0;
	margin:0;
}

/* 共通部分 */
.menu {
	width:auto;
	height:25px;
	margin:0;
	padding: 10px;
	font-family: "Century Gothic", "Courier New";
	text-align:center;
	border:none;
	border-radius: 10px 10px 0px 0px / 10px 10px 0px 0px;
	float:left;
}

/* メニューカラー指定 */
.menu_main {
	background-color:#ffffff;
}
.menu_other1 {
	background-color:#f5ecec;
}
.menu_other2 {
	background-color:#f8f4e6;
}
.menu_other3 {
	background-color:#eaf4e9;
}
.menu_other4 {
	background-color:#e7f4f0;
}
.menu_other5 {
	background-color:#e7eff4;
}
.menu_other6 {
	background-color:#f0edf7;
}


/* リングノート */
#ringnote {
	width:100%;
	height:100%;
	margin:0;
	padding-bottom:20px;
	background-color:#ffffff;
	clear:both;
}

/* メイン部分 */
#main{
	font-size:80%;
	line-height:190%;
	padding:5%;
}
#main a {
	color:#444444;
	background-color:#fff462;
	text-decoration:none;
}

/* h1 */
.star {
	color: white;
	padding: 0 5px;
}
.top {
	font-size:105%;
	color:#333;
	background-color: #f5b5b1;
	border-radius: 10px;
	padding: 5px;
}
.about {
	font-size:105%;
	color: #333;
	background-color: #f2e57f;
	border-radius: 10px;
	padding: 5px;
}
.games {
	font-size:105%;
	color: #333;
	background-color: #bfd886;
	border-radius: 10px;
	padding: 5px;
}
.gallery {
	font-size:105%;
	color: #333;
	background-color: #a8d886;
	border-radius: 10px;
	padding: 5px;
}
.info {
	font-size:105%;
	color:#333;
	background-color: #a5d1e8;
	border-radius: 10px;
	padding: 5px;
}
.link{
	font-size:105%;
	color:#333;
	background-color: #d5bae6;
	border-radius: 10px;
	padding: 5px;
}

.katamari {
	margin-bottom:35px;
	text-align: center;
}
.katamari img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
.katamarig {
	margin-top:50px;
	margin-bottom:75px;
}

/*ノート風*/
.line{
	margin-top: 3%;
	margin-bottom: 3%;
	padding-left:2%;
	background-image: url(img/line.png);/*高さ:27px*/
	background-repeat: repeat;
	line-height: 27px;
	text-align: left;
}
/*更新日表示用*/
.time{
	font-size: 90%;
	text-align: right;
}

/*日記用*/
.diary{
	font-weight: bold;
	color:#333;
}

/* #タグ */
.tag{
	text-align: right;
}
.tag span{
	font-size: 90%;
	color: #444;
	background-color: #eee;
	border-radius: 5px;
	padding: 0px 5px;
	margin: 0px 5px;
}


/*-------------------------------
アコーディオン
-------------------------------*/
/* アコーディオンA */
.ac-box{
width: auto;
margin: 30px auto 5px;
}
/*ラベル*/
.ac-box label{
max-width: 385px;
font-weight: bold;
text-align: center;
background: #998877;
margin: auto;
line-height: 50px;
position: relative;
display: block;
height: 50px;
border-radius: 8px;
cursor: pointer;
color: #fff;
transition: all 0.5s;
}
/*ラベルホバー時*/
.ac-box label:hover{
background: rgba( 240, 86, 137, 0.75 );
-webkit-transition: all .3s;
transition: all .3s;
}
/*チェックを隠す*/
.ac-box input{
display: none;
}
/*チェックのアイコン（↓）*/
.ac-box label:after{
color: #fff;
content:"+";
}
/*チェックのアイコン（↑）*/
.ac-box input:checked ~ label::after {
color: #fff;
content:"-";
}
/*中身を非表示にしておく*/
.ac-box div{
height: 0px;
padding: 0px;
overflow: hidden;
opacity: 0;
transition: 0.5s;
}
/*クリックで中身を表示*/
.ac-box input:checked ~ div{
height: auto;
padding: 0;
background: #fff;
opacity: 1;
}
/*表示内容の調整*/
.ac-box div p{
padding: 0;
text-align: justify;
}
.ac-small p{
margin-bottom: 0px;
}


/*-------------------------------
index.html
-------------------------------*/
#index_img{
	display: block;
	margin: 5% auto;
}
#index_text{
	width: auto;
	margin: 5%;
	padding: 3%;
	border: 2px dashed #d6beb7;
	border-radius: 15px;
	background-color: #fffdfb;
}
#index_text p{
	font-size: 90%;
	line-height: 170%;
	padding: 1% 0;
}
#index_text img{
	box-shadow: 3px 3px rgba(0,0,0,0.4);
}
#index_text img:hover{
	box-shadow: 0px 0px;
	background-color: rgba(0,0,0,0.4);
	position:relative;
	top: 3px;
	left: 3px;
}
#index_footer{
	font-size: 80%;
	margin: 0 auto;
}

/*-------------------------------
footer
-------------------------------*/
footer{
	font-size:12px;
	font-family:"Courier New","Meiryo";
	padding-top:10px;
	padding-left:5%;
	border-top:1px dashed #999;
}