@charset "UTF-8";

html {
	overflow-y: scroll;
	background-color: hsla(210,22%,85%,1.00);
}


body{
	font-size: 14px;
	line-height: 1.8;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
	text-align: center;
	color: #575757;
	letter-spacing: 0;
}

/*IE6*/
* html body {
	font-size:88%;
}

/*IE7*/
*:first-child+html body {
	font-size:88%;
}

@media only screen
    and (max-width: 480px) {
		body{
	font-size: 15px;
	line-height: 1.7;
}
}


p {
	margin-bottom: 0px;
}

a {
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all  0.4s ease;
}

a, a:link, a:active, a:visited {
	text-decoration: none;
	color: #081A95;
}
a:hover {
	color: #2864FF;
	text-decoration: none;
}

/*-------------------  content-set  -------------------*/
/*--------------------------------------------------*/

#wrapper {
	width:100%;
	text-align: left;
}

header {
	background-color: hsla(226,100%,6%,0.89);
	position: fixed;
	width:100%;
	height:55px;
	z-index:10;
	margin:0 auto;
}

#header {
	width:100%;
	margin:0 auto;
}




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






/*----------------メニュー条件分岐-------------------*/


@media only screen
    and (max-width: 767px) {
	


#header h1 a {
	margin: 7px 0 0 20px;
	position: absolute;
	width: 190px;
	height:36px;
	background-image: url(../common_img/logo.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
	background-size: 190px auto;
	
}


.HiddenCheckbox {
  display: none;
}
.MenuContainer {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  padding: 12px;
  width: 100%;
   height:55px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 20;
}
.MenuHeader {
	font-size:120%;
  color: #999999;
  display: inline-block;
  float: right;
  font-weight: bold;
  line-height: 30px;
  margin: 0 10px 0 0;
  opacity: 0;
  position: relative;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
  -webkit-transition: -webkit-transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s;
  z-index: 2;
}
.MenuIcon {
	cursor: pointer;
	display: block;
	float: right;
	height: 30px;
	position: relative;
	width: 30px;
	z-index: 2;
}
.MenuIcon::before {
  -webkit-box-shadow: #999999 0 12px 0;
  box-shadow: #999999 0 12px 0;
  height: 6px;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  width: 30px;
}
.MenuIcon::after {
  bottom: 0;
  height: 6px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  width: 30px;
}
.MenuIcon::before,
.MenuIcon::after {
  background: #999999;
  display: block;
  content: '';
  position: absolute;
  -webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.4s 0.2s;
  transition: box-shadow 0.2s linear, transform 0.4s 0.2s;
}
.Menu {
	background-color: hsla(0,0%,9%,0.88);
	bottom: 0;
	left: -100%;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: left 0.4s;
	transition: left 0.4s;
}
.HiddenCheckbox:checked ~ .MenuHeader {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.HiddenCheckbox:checked ~ .MenuIcon::before {
  -webkit-box-shadow: transparent 0 0 0;
  box-shadow: transparent 0 0 0;
  -webkit-transform: rotate(45deg) translate3d(6px, -3px, 0);
  transform: rotate(45deg) translate3d(6px, -3px, 0);
}
.HiddenCheckbox:checked ~ .MenuIcon::after {
  -webkit-transform: rotate(-45deg) translate3d(6px, 3px, 0);
  transform: rotate(-45deg) translate3d(6px, 3px, 0);
}
.HiddenCheckbox:checked ~ .Menu {
  left: 0;
}
.Menu-list {
  list-style-type: none;
  margin: 55px 0 0;
  padding: 0;
  background-color: hsla(0,0%,9%,0.88);
}
.Menu-item {
  margin: 0;
}
.Menu-link {
	color: hsla(0,0%,100%,1.00);
	display: block;
	overflow: hidden;
	padding: 8px 25px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}

a.Menu-link {
	color: hsla(0,0%,100%,1.00);
	font-size:107%;
}
a.Menu-link:active {
	color: #2F2F2F;
	background-color: hsla(0,0%,78%,1.00);
}

.Menu-link::before {
  background: #444;
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
  z-index: -1;
}
.Menu-link::after {
  content: attr(href);
  color: #fff;
  float: right;
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.4s;
  transition: opacity 0.8s, transform 0.4s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.Menu-link:hover::before {
  right: 0;
}
.Menu-link:hover::after {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

}


@media only screen
    and (min-width: 768px) {

#header h1 a {
	margin: 7px 0 0 20px;
	position: absolute;
	width: 190px;
	height:36px;
	background-image: url(../common_img/logo.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
	background-size: 190px auto;
}

	
.MenuContainer {
	width:65%;
	min-width:500px;
	height:55px;
	float:right;
}

.MenuHeader {
	display:none;
}

.HiddenCheckbox {
	display:none;
}

.MenuContainer ul {
	margin:0;
	padding:0;
	height:55px;
	width:100%;
	display:inline-table;
}

.MenuContainer li {
	text-align: center;
	height: 55px;
	width: 16.6%;
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align: middle;
	border-left: 1px solid hsla(235,8%,32%,1.00);
}

.MenuContainer li:last-child {
	border-right: 1px solid hsla(235,8%,32%,1.00);
}

.MenuContainer li a {
	display: block;
	line-height:55px;
	margin: 0;
	padding: 0;
	color: hsla(0,0%,100%,1.00);
}

.MenuContainer li a:hover,
.MenuContainer li a.now {
	background-color: hsla(217,51%,34%,1.00);
	text-decoration: none;
}

	}




/*-------------------------------------------------------------*/




#main {
	clear: both;
	padding-top:55px;
	width:100%;
	display:block;
}




/*-----------------  page-top ボタン  -----------------*/
/*--------------------------------------------------*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 84%;
	z-index:200;
}
#page-top a {
	background-color: hsla(233,63%,18%,0.55);
	text-decoration: none;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height:60px;
	margin:0;
	padding:0;
	text-align: center;
	display: block;
	border-radius: 30px;
}
#page-top a:hover {
    text-decoration: none;
    background-color: hsla(233,63%,18%,0.90);
}


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

@media only screen
    and (max-width: 767px) {



footer {
	clear:both;
	width:100%;
	background-color: hsla(0,0%,96%,1.00);
	background-image: url(../common_img/foot-line.png);
	background-repeat: repeat-x;
	background-position: 0% top;	
}



#foot-wrap {
	width:100%;
	margin:0;
	line-height:1.7em;
	font-size:94%;
	z-index:30;
	
}

.foot-logo {
	width: 78px;
	float:none;
	margin:0 auto;
}

#foot_menu {
	width:100%;
	float:left;
}

.adres-box {
	width: 100%;
	padding: 30px 0;
	background-color: hsla(210,22%,85%,1.00);
}
.adres-box address {
	display:none;
}

p.copy {
	clear: both;	
	display: block;
	text-align: center;
	color: #274363;
	font-size:80%;
	margin:0;
}

/*---foot menu- design---*/


#foot_menu ul {
	margin:20px 0 ;
	padding:0;	
	background-color: hsla(0,0%,92%,1.00);
	border-top: 1px solid hsla(0,0%,71%,1.00);
	clear:both;
}

#foot_menu ul:after {
    content:" ";
    display:block;
    clear:both;
}

#foot_menu li {
	font-weight: bold;
	margin-bottom: 0px;
	float: left;
	width: 20%;
	text-align: center;
	border-top: none 0px;
	border-right: 1px solid hsla(0,0%,71%,1.00);
	border-bottom: 1px solid hsla(0,0%,71%,1.00);
	background-color: hsla(0,0%,92%,1.00);
}

#foot_menu li a {
	padding: 15px 0;
	color: #7A7A7A;
	display:block;
}

#foot_menu li a:hover {
	color: #2F2F2F;
	background-color: hsla(0,0%,78%,1.00);
	display:block;
}



#foot_menu ul li ul {
	display:none;
}



}

@media only screen
    and (min-width: 768px) {
	
	footer {
	clear:both;
	width:100%;
	background-color: hsla(0,0%,96%,1.00);
	background-image: url(../common_img/foot-line.png);
	background-repeat: repeat-x;
	background-position: 0% top;	
}



#foot-wrap {
	width:90%;
	max-width:1000px;
	margin: 0 auto;
	line-height:1.7em;
	font-size:94%;
	z-index:30;
	
}

.foot-logo {
	width: 130px;
	float:left;
}

#foot_menu {
	padding-left:130px;
}

.adres-box {
	width: 100%;
	padding: 20px;
	background-color: hsla(210,22%,85%,1.00);
	line-height:1.3em;
	text-align:center;
	clear:both;
}

.adres-box p {

	margin-bottom:8px;
}


p.copy {	
	color: #274363;
	font-size:80%;
	padding-top:10px;
}

/*---foot menu- design---*/

#foot_menu {
	padding-top:20px;
}



#foot_menu ul {
	padding:20px 0 ;
	padding:0;	
}

#foot_menu li {
	padding: 0;
	font-weight: bold;
	margin-bottom: 15px;
	float: left;
	width: 155px;
	border-left: 5px solid hsla(0,0%,69%,1.00);
	font-size:115%;
}

#foot_menu li ul {
	margin-top:15px;
}

#foot_menu li ul li {
	border-left: none;
	font-size:84%;
	padding-top: 5px;
	margin-bottom: 0px;
	float: none;
	font-weight:normal;
}

#foot_menu li a {
	color: #7A7A7A;
	padding-left:7px;
}

#foot_menu li a:hover {
	color: #2F2F2F;
}





}

@media only screen
    and (max-width: 480px) {
#foot_menu li {
	width: 33.3%;
}	

.Menu-link::after {
	display:none;
}
}
