@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;400;700&display=swap');

body {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	width: 100%;
	height: 100dvh;
	background-color: #86b80a;
	color: #46390D;
}
.toot { background-image: url(../img/a05.gif);}

/* ---------------- */
/* コンテンツカラー */
/* ---------------- */
.tegatter-blue{color: #5098ba;}
.toot-turquoise {color: #00afcc;}
.toot-yellow {color: #fcc800;}
.gram-green {color: #33cc66;}
.gram-pink {color:#ed7b8d;}
.clap-red {color: #ff6464;}
.clip-vioret {color: #9999ff;}
.dummy-orange {color: #ff9900;}

/* ------------------ */
/* コンテンツ共通設定 */
/* ------------------ */

/* ラッピング */
#wrap {
	display: block;
	width: 640px;
	height: auto;
	margin: 0 auto;
	padding: 0 40px;
	background-color: #f0f0eb;
}

img.headmark {
	display: inline-block;
	position: relative;
	top: 2px;
	margin-right: 2px;
}
/* コンテンツメニュー */
.contentsbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

/* ボックスボタン */
.contentsbox .box {
margin-bottom: 10px;
width: 80px;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box
}


/* コンテンツタイトル */
.contentstitle {
font-weight: bold;
line-height: 1.5;
}
/* コンテンツガイド */
.contentsguide {
	font-size: 80%;
}
/* twitter 埋め込みサイズ変更 */
.twitter-tweet {
    transform: scale(0.8);
    /* サイズの拡大縮小の基準位置を決めるcss */
    transform-origin: left top;
}

/* ---------------------------- */
/* フッター・インラインフレーム */
/* ---------------------------- */
footer {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
footer iframe {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-y: hidden;
	border: none;
}


/*---------------------*/
/*  メディアクエリー   */
/*---------------------*/
@media screen and (max-width: 480px) {
	body {
		background-color: #f0f0eb;
	}
	#wrap {
		width: 80%;
		height: auto;
		margin: 0 auto;
		padding: 0;
	}
	/* コンテンツメニュー */
	.contentsbox {
		justify-content: space-around;
	}
	/* ボックスボタン */
	.contentsbox::before {
	width: 80px;
	content: "";
	text-align: center;
	order: 1;
	}
	.contentsbox::after {
	width: 80px;
	content: "";
	text-align: center;
	}
	/* コンテンツガイド */
	.contentsguide {
	display: none;
	}


}