@charset "utf-8";
/*==========================================================================
   基本レイアウトだぞ
==========================================================================*/
* {
	box-sizing: border-box;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

img {
	max-width: 100%;
	height: auto;
}
a:hover img {
	opacity: 0.7;
}
.pc {
	display: none;
}
.container,.inner {
	padding: 0 10px;
	max-width: 940px;
	margin: 0 auto;
}
body {
	font: 1em/1.5 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 0.875em;
}

/*==========================================================================
	headerだぞ
==========================================================================*/
header {
	border-bottom: solid 2px #07f34e;
	margin-bottom: 10px;
	padding: 15px 0;
	background: #fff;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 940px;
	margin: 0 auto;
}
header h1 {
	max-width: 60%;
}
header address {
	display: none;
}
.keyimg {
	background: url(../images/body_bg.png) repeat-x;
	margin-bottom: 10px;
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}


/*==========================================================================
	navだぞ
==========================================================================*/
nav {
	border-top: solid 2px #07f34e;
	margin-bottom: 30px;
	background: linear-gradient(#fff 5%,#f4f4f4 50%,#ededed 50%,#fff 95%);
}
.menu {
	display: flex;
	max-width:  940px;
	margin: 0 auto;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 5px;/* ★変更★ */
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 48px;
	height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #d6d5d5;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -100%;/* ★変更★ */
	top: 0px;
	width: 100%;/* ★変更★ */
	height: 100vh;
	background: rgba(90,90,90,0.7);/* ★変更★ */
	color: #fff;/* ★変更★ */
	transition: .3s;
	text-align: center;/* ★追加★ */
	font-size: 1.2rem;/* ★追加★ */
	line-height: 1;/* ★追加★ */
	font-weight: bold;/* ★追加★ */
	font-family: 'メイリオ';
	}
.menu span {
	font-size: 0.7rem;/* ★追加★ */
	font-weight: normal;/* ★追加★ */
}

.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .8);
	color: #0ed464;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	/*position: absolute;*/
	right: 0;
}
/* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 768px) {
	.btn {
		display: none;
	}
	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 30px;
		right: 0;
		width: 100%;
		/*height: 100px;*/
		height: 55px;
	}
}

/**************** ここまで、メニューのスタイリング ****************/
@media screen and (min-width: 768px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}

/*==========================================================================
	mainでやんす
==========================================================================*/
.container {
	max-width:  940px;
	margin: 0 auto 60px;
}
main {
	margin-bottom: 50px;
}
main h2 {
	border-left: 5px solid #07f34e;
	padding-left: 20px;
	margin-bottom: 20px;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
main .guide {
	margin-bottom: 50px;
}
main .guide img {
	display: block;
	margin: 0 auto 15px;
}
main .news {
	margin-bottom: 50px;
	overflow: hidden;
}
main .news dt {
	width: 13.5em;
	float: left;
	clear: left;
	padding-left: 2.5em;
	background: url(../images/icon_01.png) no-repeat left top 8px;
	padding-top: 10px;
}
main .news dd {
	border-bottom: 1px dotted #07f34e;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 13.5em;
}

/*==========================================================================
	asideでやんす
==========================================================================*/
aside {
	margin-bottom: 30px;
}
aside .banners li {
	margin-bottom: 20px;
	text-align: center;
}
/*==========================================================================
	footerでやんす
==========================================================================*/
footer {
	padding: 40px 10px;
	background-color: #07f34e;
	text-align: center;
}

@media (min-width: 768px) {
	header {
		position: static;
	}
	header address {
		display: block;
	}
	nav {
		display: block;
		border-bottom: solid 1px #07f34e;
	}
	.menu {
		position: static;
		background: transparent;
	}
	.menu li {
		border-left: solid 1px #07f34e;
		color: #333;
		
	}
	.menu li:last-child {
		border-right: solid 1px #07f34e;
	}
	.menu-list:hover {
		color: #05ca12;
	}
	.container {
		display: flex;
		justify-content: space-between;
		margin-bottom: 0;
	}
	main {
		width: calc(700 / 940 * 100%);
	}
	main .guide {
		display: flex;
		justify-content: space-between;
	}
	main h2 {
		text-align: left;
	}
	main .guide img {
		width: calc(280 / 700 * 100%);
	}
	main .guide p {
		width: calc(400 / 700 * 100%);
	}
	aside {
		width: calc(220 / 940 * 100%);
	}
}
@media (min-width: 940px) {
	.container,.inner {
		padding: 0;
	}
}
p {
	text-align: center;
}
@media screen and (min-width: 768px) {
	p {
		text-align: left;
	}
}
.aigazou {
	text-align: center;
	background-color: #d6d5d5;
}


/* 終了：完結 */