@charset "utf-8";

@media screen and (min-width: 751px), print {
/*-----------------------------------------------------------
===  [ base CSS ]  ====================================
------------------------------------------------------------*/
/* ***************************************************************************** */
/*

　目次

-------------------------------------------------------------------------------

　01. base layout

*/
/* ***************************************************************************** */
/** -------------------------------------------------------
 ** 01. base layout
 ** ------------------------------------------------------- */
/* html
----------------------------------------------------*/
html {
	font-size: 10px;  /* root 10px 以下rem指定*/
}
/* body
----------------------------------------------------*/
body,
input,
textarea,
select {
	font-family: -apple-system, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
body {
	color: #000;
	text-align: center;
	background: #fff;
	font-size: 1.0rem;
	min-width: 1200px;
	overflow: hidden;
}
/* -- link -- */
a:link {
	color: #000;
	text-decoration: underline;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}
a:active {
	color: #000;
	text-decoration: none;
}
/* -- font -- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
caption,
address,
figcaption,
small,
label,
time,
input,
button,
select {
	font-size: 1.6rem;
	line-height: 1.4;
}
/* -- img -- */
img {
	max-width: 100%;
	height: auto;
}
/* container
----------------------------------------------------*/
#container {
	text-align: left;
}
/* header
----------------------------------------------------*/
#header {
	position: relative;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.23);
}
#header:before {
	content: "";
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
/* clearfix */
#header:after {
	content: "";
	clear: both;
	display: block;
}
#header__inner {
	width: 1120px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
	z-index: 2;
}
#header__logo {
	font-size: 3.0rem;
	font-weight: bold;
}
#header__logo a {
	text-decoration: none;
}
/* color */
.colorPink #header {
	background: #ff8080;
}
.colorPink #header:before {
	background: #F3D1D1;
}
.colorPink #header__inner {
	background-image: -moz-linear-gradient( 360deg, #F3D1D1 20%, #ff8080 80%);
	background-image: -webkit-linear-gradient( 360deg, #F3D1D1 20%, #ff8080 80%);
	background-image: -ms-linear-gradient( 360deg, #F3D1D1 20%, #ff8080 80%);
}
.colorGreen #header {
	background: #BBD422;
}
.colorGreen #header:before {
	background: #C9FF26;
}
.colorGreen #header__inner {
	background-image: -moz-linear-gradient( 360deg, #C9FF26 20%, #BBD422 80%);
	background-image: -webkit-linear-gradient( 360deg, #C9FF26 20%, #BBD422 80%);
	background-image: -ms-linear-gradient( 360deg, #C9FF26 20%, #BBD422 80%);
}
.colorBlue #header {
	background: #3E4F9D;
}
.colorBlue #header:before {
	background: #73B9FF;
}
.colorBlue #header__inner {
	background-image: -moz-linear-gradient( 360deg, #73B9FF 20%, #3E4F9D 80%);
	background-image: -webkit-linear-gradient( 360deg, #73B9FF 20%, #3E4F9D 80%);
	background-image: -ms-linear-gradient( 360deg, #73B9FF 20%, #3E4F9D 80%);
}
.colorLightBlue #header {
	background: #3DC2E6;
}
.colorLightBlue #header:before {
	background: #80FCFF;
}
.colorLightBlue #header__inner {
	background-image: -moz-linear-gradient( 360deg, #80FCFF 20%, #3DC2E6 80%);
	background-image: -webkit-linear-gradient( 360deg, #80FCFF 20%, #3DC2E6 80%);
	background-image: -ms-linear-gradient( 360deg, #80FCFF 20%, #3DC2E6 80%);
}
/* mv
----------------------------------------------------*/
#mv {
	padding: 34px 0 0;
	background-image: -moz-linear-gradient( 90deg, rgb(255,255,255) 44%, rgb(243,243,243) 74%, rgb(231,231,231) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(255,255,255) 44%, rgb(243,243,243) 74%, rgb(231,231,231) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(255,255,255) 44%, rgb(243,243,243) 74%, rgb(231,231,231) 100%);
}
#mv p {
	text-align: center;
}
/* topicPath
----------------------------------------------------*/
#topicPath {
	position: relative;
	margin: 30px 0 0;
}
#topicPath:before {
	content: "";
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
#topicPath__list {
	width: 1120px;
	margin: 0 auto;
	padding: 5px 0;
	position: relative;
	z-index: 2;
	letter-spacing: -0.4em;
}
#topicPath__list li {
	display: inline-block;
	letter-spacing: normal;
	color: #fff;
}
#topicPath__list li:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
	margin: 0 10px;
}
#topicPath__list li:first-child:before {
	display: none;
}
#topicPath__list li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
#topicPath__list li a:hover {
	text-decoration: underline;
}
/* color */
.colorPink #topicPath {
	background: #ff8080;
}
.colorPink #topicPath:before {
	background: #F3D1D1;
}
.colorPink #topicPath__list {
	background-image: -moz-linear-gradient( 180deg, #F3D1D1 20%, #ff8080 80%);
	background-image: -webkit-linear-gradient( 180deg, #F3D1D1 20%, #ff8080 80%);
	background-image: -ms-linear-gradient( 180deg, #F3D1D1 20%, #ff8080 80%);
}
.colorGreen #topicPath {
	background: #BBD422;
}
.colorGreen #topicPath:before {
	background: #C9FF26;
}
.colorGreen #topicPath__list {
	background-image: -moz-linear-gradient( 180deg, #C9FF26 20%, #BBD422 80%);
	background-image: -webkit-linear-gradient( 180deg, #C9FF26 20%, #BBD422 80%);
	background-image: -ms-linear-gradient( 180deg, #C9FF26 20%, #BBD422 80%);
}
.colorBlue #topicPath {
	background: #3E4F9D;
}
.colorBlue #topicPath:before {
	background: #73B9FF;
}
.colorBlue #topicPath__list {
	background-image: -moz-linear-gradient( 180deg, #73B9FF 20%, #3E4F9D 80%);
	background-image: -webkit-linear-gradient( 180deg, #73B9FF 20%, #3E4F9D 80%);
	background-image: -ms-linear-gradient( 180deg, #73B9FF 20%, #3E4F9D 80%);
}
.colorLightBlue #topicPath {
	background: #3DC2E6;
}
.colorLightBlue #topicPath:before {
	background: #80FCFF;
}
.colorLightBlue #topicPath__list {
	background-image: -moz-linear-gradient( 180deg, #80FCFF 20%, #3DC2E6 80%);
	background-image: -webkit-linear-gradient( 180deg, #80FCFF 20%, #3DC2E6 80%);
	background-image: -ms-linear-gradient( 180deg, #80FCFF 20%, #3DC2E6 80%);
}
/* contents
----------------------------------------------------*/
#contents {
	width: 1120px;
	margin: 23px auto 0;
}
/* clearfix */
#contents:after {
	content: "";
	clear: both;
	display: block;
}
/* main
----------------------------------------------------*/
#main {
	float: right;
	width: 750px;
}
/* menu
----------------------------------------------------*/
#menu {
	float: left;
	width: 330px;
}
#menu dl {
	margin: 15px 0 0;
}
#menu dl:first-child {
	margin-top: 0;
}
#menu dt {
	font-size: 2.6rem;
	font-weight: bold;
	margin: 0 0 15px;
}
#menu .menu__ttl01 {
	color: #fff;
	padding: 12px 16px;
	border-radius: 10px;
}
#menu .menu__ttl03 {
	background: #EEE;
	padding: 12px 16px;
	border-radius: 10px;
}
#menu .menu__ttl04 {
	border: 4px solid;
	padding: 8px 12px;
	border-radius: 10px;
}
#menu .menu__ttl07 {
	border: 4px solid;
	padding: 8px 12px;
}
#menu .menu__ttl08 {
	background: #EEE;
	padding: 12px 16px;
}
#menu li {
	font-size: 1.8rem;
	line-height: 1.2;
	padding: 0 0 13px 23px;
	margin: 15px 0 0;
	border-bottom: 2px dotted #ccc;
	position: relative;
}
#menu li:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid;
	position: absolute;
	left: 4px;
	top: 0.2em;
}
#menu li a {
	text-decoration: none;
}
#menu li a:hover {
	text-decoration: underline;
}
/* color */
.colorPink #menu .menu__ttl01 {
	background: #FF8080;
}
.colorPink #menu .menu__ttl04 {
	border-color: #FF8080;
}
.colorPink #menu .menu__ttl07 {
	border-color: #FF8080;
}
.colorPink #menu li:before {
	border-left-color: #FF8080;
}
.colorGreen #menu .menu__ttl01 {
	background: #BBD422;
}
.colorGreen #menu .menu__ttl04 {
	border-color: #BBD422;
}
.colorGreen #menu .menu__ttl07 {
	border-color: #BBD422;
}
.colorGreen #menu li:before {
	border-left-color: #BBD422;
}
.colorBlue #menu .menu__ttl01 {
	background: #3E4F9D;
}
.colorBlue #menu .menu__ttl04 {
	border-color: #3E4F9D;
}
.colorBlue #menu .menu__ttl07 {
	border-color: #3E4F9D;
}
.colorBlue #menu li:before {
	border-left-color: #3E4F9D;
}
.colorLightBlue #menu .menu__ttl01 {
	background: #3DC2E6;
}
.colorLightBlue #menu .menu__ttl04 {
	border-color: #3DC2E6;
}
.colorLightBlue #menu .menu__ttl07 {
	border-color: #3DC2E6;
}
.colorLightBlue #menu li:before {
	border-left-color: #3DC2E6;
}
/* footer
----------------------------------------------------*/
#footer {
	clear: both;
	margin: 60px 0 0;
}
/* clearfix */
#footer:after {
	content: "";
	clear: both;
	display: block;
}
#footer__innerTop {
	width: 1120px;
	margin: 0 auto;
	background: #fff;
	text-align: right;
}
/* clearfix */
#footer__innerTop:after {
	content: "";
	clear: both;
	display: block;
}
#footer__menu {
	display: inline-block;
	margin: 0 26px 0 0;
	padding: 10px 0 0;
}
#footer__menu li {
	font-size: 1.4rem;
	font-weight: bold;
}
#footer__menu li a {
	text-decoration: none;
}
#footer__menu li a:hover {
	text-decoration: underline;
}
#footer__pageTop {
	display: inline-block;
}
#footer__pageTop a {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 5px 26px;
	border-radius: 8px;
	text-decoration: none;
	transition: opacity 0.3s;
}
#footer__pageTop a:hover {
	opacity: 0.7;
}
#footer__innerBottom {
	margin: 15px 0 0;
}
#footer__copyright {
	text-align: center;
	line-height: 1;
	padding: 15px 0;
}
#footer__copyright small {
	font-size: 1.4rem;
	color: #fff;
}
/* color */
.colorPink #footer__pageTop a {
	background: #FF8080;
}
.colorPink #footer__innerBottom {
	background: #FF8080;
}
.colorGreen #footer__pageTop a {
	background: #BBD422;
}
.colorGreen #footer__innerBottom {
	background: #BBD422;
}
.colorBlue #footer__pageTop a {
	background: #3E4F9D;
}
.colorBlue #footer__innerBottom {
	background: #3E4F9D;
}
.colorLightBlue #footer__pageTop a {
	background: #3DC2E6;
}
.colorLightBlue #footer__innerBottom {
	background: #3DC2E6;
}
/* ***************************************************************************** */
}
