@charset "UTF-8";

/*--------------------------------------------------------------------
 *	共通の記述
 *--------------------------------------------------------------------*/
body{
	color: #323232;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
}

/*------------------------------------------ header */
header {
	border-bottom: 1px solid #3c0fbc;
}
header #header_contents {
}
header #header_contents #logo {
	margin: 0;
}
/*------------------------------------------ main */

#content aside {
	background-color: #ebebeb;
}

#content aside nav ul#gmenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 0;
}
#content aside nav ul#gmenu li {
	display: table;
	margin: 0;
	padding: 0;
}
#content aside nav ul#gmenu li span.updated {
	font-size: 80%;
	color: #e80000;
}
#content aside nav ul#gmenu li a {
	display: table-cell;
	position: relative;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	vertical-align: bottom;
	color: #000;
	line-height: 1.2;
}
#content aside nav ul#gmenu li:nth-child(3) a,
#content aside nav ul#gmenu li:nth-child(4) a,
#content aside nav ul#gmenu li:nth-child(9) a {
	padding-bottom: 1.3em;
}
#content aside nav ul#gmenu li a::before {
	position: absolute;
	left: 50%;
	content: "";
	display: block;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
#content aside nav ul#gmenu li:nth-child(1) a::before {
	background-image: url("../img/ic01.png");
}
#content aside nav ul#gmenu li:nth-child(2) a::before {
	background-image: url("../img/ic02.png");
}
#content aside nav ul#gmenu li:nth-child(3) a::before {
	background-image: url("../img/ic03.png");
}
#content aside nav ul#gmenu li:nth-child(4) a::before {
	background-image: url("../img/ic04.png");
}
#content aside nav ul#gmenu li:nth-child(5) a::before {
	background-image: url("../img/ic05.png");
}
#content aside nav ul#gmenu li:nth-child(6) a::before {
	background-image: url("../img/ic06.png");
}
#content aside nav ul#gmenu li:nth-child(7) a::before {
	background-image: url("../img/ic07.png");
}
#content aside nav ul#gmenu li:nth-child(8) a::before {
	background-image: url("../img/ic08.png");
}
#content aside nav ul#gmenu li:nth-child(9) a::before {
	background-image: url("../img/ic09.png");
}
#content aside nav ul#gmenu li:nth-child(10) a::before {
	background-image: url("../img/ic10.png");
}


/*------------------------------------------ footer */
footer {
	background-color: #3c0fbc;
	color: #fff;
}
footer * {
	color: #fff;
}
footer #footer_link {
	list-style: none;
	margin: 0;
}
footer #footer_link li {
	margin: 0;
}
footer #footer_link li a {
	color: #fff;
	text-decoration: none;
}
footer #footer_link li span {
	position: relative;
}
footer #footer_link li span::before,
footer #footer_link li span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform-origin: calc(100% - 1px) 50%;
}
footer #footer_link li span::before {
	transform: rotate(55.5deg);
}
footer #footer_link li span::after {
	transform: rotate(-55.5deg);
}
footer #address {
	list-style: none;
	margin: 0;
}
footer #address li {
	margin: 0;
}
footer #address li a {
	color: #fff;
}
footer #copyright {
	border-top: 1px solid #fff;
	text-align: center;
}

/*------------------------------------------ hyperlink */
a:link, a:visited {
	color: #3c0fbc;
	text-decoration: underline;
	vertical-align: baseline;
	transition : all 0.2s ease-out;
}
a:hover {
	text-decoration: none;
}

/*--------------------------------------------------------------------
 *	736px以下用（SP用）の記述
 *--------------------------------------------------------------------*/

@media screen and (max-width: 736px) {
/* 736px以下用（SP用）の記述 */
.sp-hidden {
	display:none
}
body {
	font-size: 1.3rem;
}

/*------------------------------------------ header */

header #header_contents {
	padding: 11px 3.2%;
}
header #header_contents #logo img {
	height: 26.2px;
}
header #nav_btn {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	border-radius: 5px;
	background-color: #3c0fbc;
	font-size: 10px;
	text-align: center;
}
header #nav_btn a {
	display: block;
	position: relative;
	top: 46%;
	left: 6px;
	width: 21px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	text-indent: -9999px;
	transition: .2s;
}
header #nav_btn a::before,
header #nav_btn a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	width: 21px;
	height: 2px;
	border-radius: 3px;
	background: #fff;
	transition: .3s;
}
header #nav_btn a::before {
	margin-top: -7px;
}
header #nav_btn a::after {
	margin-top: 5px;
}
header #nav_btn.active a {
	background: transparent;
}
header #nav_btn.active a::before,
header #nav_btn.active a::after {
	margin-top: 0;
}
header #nav_btn.active a::before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
header #nav_btn.active a::after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

/*------------------------------------------ main */

#content main {
	padding: 30px 8% 30px;
}
#content aside {
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 30px 8% 15px;
	background-color: #ebebeb;
	box-sizing: border-box;
}
#content aside nav ul#gmenu li {
	width: calc((100% - 15px) / 2);
	margin-bottom: 15px;
}
#content aside nav ul#gmenu li a {
	height: 105px;
	padding: 0 5px 10px;
	font-size: 1.4rem;
}
#content aside nav ul#gmenu li a::before {
	width: 42px;
	height: 44px;
	top: 12px;
	margin-left: -21px;
}
#content section.top_nav ul li span.updated {
	font-size: 1.2rem;
	color: #e80000;
}
.modal-overlay {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: calc(100% - 50px);
	background-color: rgba(0,0,0,0.3);
	z-index: 10;
}

/*------------------------------------------ footer */

footer {
	padding-top: 1.5em;
}
footer #footer_link {
	margin-bottom: 1.5em;
}
footer #footer_link li {
	margin-bottom: 0.8em;
	text-align: center;
	font-size: 1.3rem;
}
footer #footer_link li span {
	padding-left: 18px;
}
footer #address {
	margin-bottom: 1.5em;
}
footer #address li {
	margin-bottom: 0.8em;
	text-align: center;
	font-size: 1.3rem;
}
footer #copyright {
	padding: 1.5em 0;
	font-size: 1.0rem;
}


/* 736px以上用（SP用）の記述 end */
}


/*--------------------------------------------------------------------
 *	768px以上用（TB用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width:736px) and ( max-width:1000px), print {
/* 768px以上用（TB用）の記述 */
.pc-hidden {
	display:none!important
}
body {
	font-size: 1.6rem;
}

/*------------------------------------------ header */
header {
	padding: 25px 0 28px;
	border-width: 5px;
}
header #header_contents {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}
header #header_contents #logo img {
	width: 366px;
}
header #nav_btn {
	display: none;
}


/*------------------------------------------ main */
#content {
	display: flex;
	max-width: 1400px;
	margin: 0 auto;
}
#content main {
	order: 2;
	width: 72%;
	margin: 30px 4% 60px 0;
}
#content aside {
	order: 1;
	width:20%;
	margin-right: 4%;
	padding: 15px;
}
#content aside nav ul#gmenu {
	display: block;
}
#content aside nav ul#gmenu li {
	width: 100%;
	margin-bottom: 10px;
}
#content aside nav ul#gmenu li a {
	height: 110px;
	padding: 0 5px 10px;
	font-size: 1.2rem;
}
#content aside nav ul#gmenu li a::before {
	width: 54px;
	height: 57px;
	top: 10px;
	margin-left: -27px;
}
/*------------------------------------------ footer */

footer {
	padding-top: 1em;
}
footer #footer_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1em;
}
footer #footer_link li {
	font-size: 1.4rem;
}
footer #footer_link li + li {
	margin-left: 2em;
}
footer #footer_link li a:hover {
	text-decoration: underline;
}
footer #footer_link li span {
	padding-left: 18px;
}

footer #address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1em;
}
footer #address li {
	margin-left: 1em;
	font-size: 1.4rem;
}
footer #address li a:hover {
	text-decoration: none;
}
footer #copyright {
	padding: 1em 0;
	font-size: 1.4rem;
}


/* 768px以上用（TB用）の記述 end */
}

/*--------------------------------------------------------------------
 *	737px以上用（PC用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width: 1000px), print {
/* 737px以上用（PC用）の記述 */
.pc-hidden {
	display:none!important
}
body {
	font-size: 1.6rem;
}

/*------------------------------------------ header */
header {
	padding: 25px 0 28px;
	border-width: 5px;
}
header #header_contents {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}
header #header_contents #logo img {
	width: 366px;
}
header #nav_btn {
	display: none;
}

/*------------------------------------------ main */
#content {
	display: flex;
	max-width: 1400px;
	margin: 0 auto;
}
#content main {
	order: 2;
	width: 54.571%;
	margin: 30px 0 60px;
}
#content aside {
	order: 1;
	width:35.714%;
	max-width: 500px;
	margin-right: 4.785%;
	padding: 40px;
}
#content aside nav ul#gmenu li {
	width: calc((100% - 20px) / 2);
	margin-bottom: 20px;
}
#content aside nav ul#gmenu li a {
	height: 140px;
	padding: 0 5px 10px;
	font-size: 1.5rem;
}
#content aside nav ul#gmenu li a::before {
	width: 54px;
	height: 57px;
	top: 20px;
	margin-left: -27px;
}
#content aside nav ul#gmenu li a:hover {
	background-color: #e1e1ff;
}

/*------------------------------------------ footer */

footer {
	padding-top: 1em;
}
footer #footer_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1em;
}
footer #footer_link li {
	font-size: 1.6rem;
}
footer #footer_link li + li {
	margin-left: 2em;
}
footer #footer_link li a:hover {
	text-decoration: underline;
}
footer #footer_link li span {
	padding-left: 18px;
}

footer #address {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1em;
}
footer #address li {
	margin-left: 1em;
	font-size: 1.6rem;
}
footer #address li a:hover {
	text-decoration: none;
}
footer #copyright {
	padding: 1em 0;
	font-size: 1.4rem;
}


/* 737px以上用（PC用）の記述 end */
}

/*--------------------------------------------------------------------
 *	1400px以上用（PC用）の記述
 *--------------------------------------------------------------------*/
@media screen and (min-width: 1400px), print {
/* 1400px以上用（PC用）の記述 */


/*------------------------------------------ main */
#content aside nav ul#gmenu li a {
	padding-bottom: 15px;
	font-size: 1.8rem;
}

/* 1400px以上用（PC用）の記述 end */
}

/*--------------------------------------------------------------------
 *	印刷用（PC表示）の記述
 *--------------------------------------------------------------------*/
@media print {
/* 印刷用（PC表示）の記述 */

#content nav {
	display: none;
}

/* 印刷用（PC表示）の記述 end */
}




/*------------------------------------------ clear */
body,
header,
footer {
	zoom: 100%;
}

body:after,
header:after,
footer:after,
header #gmenu::after,
header #header_contents::after {
	content: "";
	display: block;
	clear: both;
}