html {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
}

*, *:before, *:after {
	-moz-box-sizing: inherit;
	-webkit-box-sizing: inherit;
 	box-sizing: inherit;
}

body {
	-webkit-text-size-adjust: 100%;
  	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: #4b4948;
	height: 100%;
	background-image: url(../images/common/content_bg.png);
}

@media screen and (max-width: 600px) {	
	body {
		font-size: 14px;
		line-height: 1.8;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

ul, ol, ul ul, ol ol{
	list-style: none;
}

#pagetop {
	overflow: hidden;
	position: relative;
	left: 0;
	transition: left 500ms ease;
}

.menu-opened {
	overflow-y: visible;
}

@media screen and (max-width: 600px) {	
	.menu-opened {
		overflow-y: hidden;
	}
	.menu-opened #pagetop {
		overflow: hidden;
		background-image: url(../images/common/content_bg.png);
		left: -230px;
	}
}

img {
	vertical-align: middle;	
}

img.responsive {
	display: none;
}

img.for-sp {
	display: none;
}

@media screen and (max-width: 600px) {		
	img.for-pc {
		display: none;
	}

	img.for-sp {
		display: inline;
	}
}


@keyframes hover {
  0% {
    transform: scale(1.0);
  }
   10% {
    transform: scale(1.1);
  }
  35% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.05);
  }
   90% {
    transform: scale(0.95);
  }
   98% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes smallHover {
  0% {
    transform: scale(1.0);
  }
   10% {
    transform: scale(1.03);
  }
  35% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1.01);
  }
   90% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/*
	ヘッダー
*/

#header {
	height: 60px;
	border-bottom: 1px solid #dddfdd;
	position: relative;
	z-index:100;
	background-color: #fff;
}

#header .inner {
	width: 820px;
	margin: 0 auto;
	position: relative;
	padding: 15px 0;
}

@media screen and (max-width: 600px) {	
	#header .inner {
		width: auto;
	}
}


#header .jimoq {
	position: absolute;
	top: 116px;
	left: 50%;
	margin-left: -105px;
}

#header .jimoq a:hover {
	display: block;
	animation: hover 0.5s ease-in;
	opacity: 1;
}

@media screen and (max-width: 600px) {	
	#header .jimoq {
		margin-left: -135px;
	}
}


@media screen and (max-width: 600px) {	
	#header .logo {
		position: relative;
		left: 10px;
	}
}

#header nav {
	position: absolute;
	top: 18px;
	right: 0;
}

@media screen and (max-width: 600px) {	
	#header nav {
		position: absolute;
		top: 20px;
		right: 10px;
	}
}

#header nav h2 {
	background-image: url(../images/common/header_menu_pc.png);
	background-repeat: no-repeat;
	width: 26px;
	height: 24px;
	text-indent: -9999px;
	overflow: hidden;
	cursor: pointer;
}

@media screen and (max-width: 600px) {	
	#header nav h2 {
		background-image: url(../images/common/header_menu_sp.png);
		background-size: 24px 22px;
		background-repeat: no-repeat;
		width: 24px;
		height: 22px;
	}
}

.menu-opened #header nav h2 {
	background-image: url(../images/common/header_menu_close_pc.png);
	background-position: 50%;
}

@media screen and (max-width: 600px) {	
	.menu-opened #header nav h2 {
		background-image: url(../images/common/header_menu_close_sp.png);
		background-size: 22px 22px;
		background-position: 50%;
	}
}

#header nav ul {
	display: none;
}

@media screen and (max-width: 600px) {	
	#header nav ul {
		display: block;
		position: fixed;
		top: 0;
		right: -230px;
		transition: right 500ms ease;
		background-color: #00b1f4;
		width: 230px;
		padding: 20px 20px;
		color: #fff;
		border-radius: 0;
		font-size: 16px;
		height: 100%;
	}
}

.menu-opened #header nav ul {
	display: block;
	position: absolute;
	top: 42px;
	right: 0;
	background-color: #00b1f4;
	width: 230px;
	padding: 20px 20px;
	color: #fff;
	border-radius: 0 0 20px 20px;
	font-size: 16px;
	overflow-y: auto;
}

@media screen and (max-width: 600px) {	
	.menu-opened #header nav ul {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		border-radius: 0;
	}
}

.menu-opened #header nav ul:before {
	content: "";
	background-image: url(../images/common/header_menu_balloon_pc.png);
	width: 26px;
	height: 12px;
	display: block;
	position: absolute;
	top: -12px;
	right: 0;
}

#header nav ul li a {
	display: block;
	padding: 8px 0 8px 15px;
	position: relative;
}

#header nav ul li:first-child {
}

#header nav ul li a:before {
	position: absolute;
	top: 8px;
	left: 0;
	content: "-";
	margin-right: 10px;
	display: inline-block;
}

/*
	フッター
*/

#footer {
/*
	padding: 15px 20px;
*/
	font-size: 0;
	border-top: 1px solid #bfc2c1;
}

@media screen and (max-width: 600px) {	
	#footer {
	}
}

#footer a {
	color: #1fa4f6;
}

#footer .inner {
	width: 820px;
	margin: 0 auto;
	padding: 40px 0;
	position: relative;
}

@media screen and (max-width: 600px) {	
	#footer .inner {
		width: auto;
		padding: 20px 0;
	}
}

#footer .pagetop {
	position: absolute;
	left: 50%;
	top: -70px;
	margin-left: -41px;
}

#footer .pagetop a:hover {
	display: block;
	animation: hover 0.5s ease-in;
	opacity: 1;	
}

@media screen and (max-width: 600px) {	
	#footer .pagetop {
		position: absolute;
		left: 50%;
		top: -50px;
		margin-left: -29px;
	}
}

#footer {
	text-align: center;
	
}

#footer .mynavi {
	display: inline-block;
	margin-right: 20px;
}

#footer .mynavi img {
	vertical-align: -4px;
}

@media screen and (max-width: 600px) {	
	#footer .mynavi img {
		vertical-align: -2px;
	}
}

#footer .copyright {
	color: #727171;
	font-size: 12px;
	display: inline-block;
}

@media screen and (max-width: 600px) {	
	#footer .copyright {
		font-size: 9px;
	}
}

#loading {
	position: fixed;
	width: 100%;
	height: 0;
	background-color: rgba(255, 255, 255, 0.5);
	top: 0;
	left: 0;
	opacity: 0;	
	z-index: 200;
	display: none;
}

body.loading #loading  {
	height: 100%;
	opacity: 1;
	display: block;
}

body.loading #loading .icon {
	width: 48px;
	height: 48px;
	position: relative;
	top: 50%;
	left: 50%;
	margin-top: -24px;
	margin-left: -24px;
	overflow: hidden;
}

body.loading #loading .icon img {
	position: relative;
	left: 0;
}

/*
	コンテンツ
*/

#content {
	padding: 0 0 100px;
}

@media screen and (max-width: 600px) {	
	#content {
		background-image: url(../images/common/content_bg.png);
		padding: 0 10px 75px;
	}
}

#content .breadcrumb {
	background-image: url(../images/common/breadcrumb_bg.png);
	background-position: 0 -3px;
	background-repeat: repeat-x;
	height: 162px;
	position: relative;
}

@media screen and (max-width: 600px) {	
	#content .breadcrumb {
		margin: 0 -10px;
		padding: 0 0px;
/*
		height: 140px;
*/
		height: 35px;
		margin-bottom: 145px;
		overflow: hidden;
	}

	#content .breadcrumb .inner {
		overflow: scroll;
		padding-bottom: 30px;
	}
}

#content .breadcrumb p {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	text-align: center;
}

#content .breadcrumb ul {
	width: 820px;
	margin: 0 auto;
	height: 35px;
	line-height: 35px;
	overflow: hidden;
	font-size: 0;
}

@media screen and (max-width: 600px) {	
	#content .breadcrumb ul {
		width: 9999px;
		margin: 0;
		height: 31px;
		line-height: 31px;
	}
}

#content .breadcrumb ul li {
	display: block;
	float: left;
	font-size: 12px;
}

@media screen and (max-width: 600px) {	
	#content .breadcrumb ul li {
		font-size: 12px;
		padding: 0 17px 0 10px;
		position: relative;
	}
}

#content .breadcrumb ul li:before {
	content: ">";
	margin: 0 5px;
}

@media screen and (max-width: 600px) {	
	#content .breadcrumb ul li:before {
		content: "";
		background-image: url(../images/common/breadcrumb_arrow_sp.png);
		background-size: 17px 31px; 
		width: 17px;
		height: 31px;
		display: block;
		position: absolute;
		left: -17px;
		top: 0;
		marign: 0;
	}

	#content .breadcrumb ul li:first-child:before {
		display: none;
	}
}



#content .breadcrumb ul li:first-child:before {
	display: none;
}

#content .breadcrumb ul li a {
	color: #00aaeb;
}

/*
#content > article h1 {
	text-align: center;
	padding: 15px 0;
}
*/

/*

*/

#section-topic {
	width: 820px;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {	
	#section-topic {
		width: auto;
	}
}

#section-topic:after {
	content: "";
	display: block;
	clear: both;
}

#section-topic section {
	width: 393px;
}

@media screen and (max-width: 600px) {	
	#section-topic section {
		width: auto;
	}
}

#section-topic-01 {
	float: left;
}

@media screen and (max-width: 600px) {	
	#section-topic-01 {
		float: none;
	}
}

#section-topic-02 {
	float: right;
}

@media screen and (max-width: 600px) {	
	#section-topic-02 {
		float: none;
	}
}

@media screen and (max-width: 600px) {	
	#section-topic section {
		margin-bottom: 30px;
	}
}

#section-topic h3 {
	text-align: center;
	margin-bottom: 25px;
}

@media screen and (max-width: 600px) {	
	#section-topic h3 {
		text-align: center;
		margin-bottom: 15px;
	}
}

#section-topic ul {
	margin: 0 -16px;
	font-size: 16px;
	line-height: 26px;
}

@media screen and (max-width: 600px) {	
	#section-topic ul {
		margin: 0 -16px;
		font-size: 12px;
		line-height: 18px;
	}
}

#section-topic ul:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 600px) {	
	#section-topic ul {
		margin: 0 -12px;
	}
}

#section-topic ul li {
	float: left;
	width: 50%;
	padding: 0 16px;
}

@media screen and (max-width: 600px) {	
	#section-topic ul li {
		float: left;
		width: 50%;
		padding: 0 12px;
	}
}

#section-topic ul li figure {
	margin-bottom: 15px;
}

@media screen and (max-width: 600px) {	
	#section-topic ul li figure {
		margin-bottom: 10px;
	}
}

#section-topic ul li a:hover {
	opacity: 1;
}

#section-topic ul li a:hover figure {
	animation: hover 0.5s ease-in;
}

#section-topic ul li img {
	width: 100%;
}

#section-topic ul li.new a figure {
	position: relative;
}

#section-topic ul li.new a figure:before {
	position: absolute;
	content: "";
	top: -6px;
	left: -6px;
	background-image: url(../images/home/new_icon_pc.png);
	width: 75px;
	height: 33px;
}

@media screen and (max-width: 600px) {	
	#section-topic ul li.new a figure:before {
		position: absolute;
		content: "";
		top: -6px;
		left: -6px;
		background-image: url(../images/home/new_icon_sp.png);
		background-size: 47px 22px;
		width: 47px;
		height: 22px;
	}
}


#main .back {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 10px;
}

#main .back a:hover {
	display: inline-block;
	animation: hover 0.5s ease-in;
	opacity: 1;	
}

@media screen and (max-width: 600px) {	
	#main .back {
		text-align: center;
		margin-top: 30px;
		margin-bottom: 10px;
	}
}

.pc-hide {
	display: none;
}
@media screen and (max-width: 600px) {
	.pc-hide {
		display: block;
	}
}


.sp-hide {
	display: block;
}
@media screen and (max-width: 600px) {
	.sp-hide {
		display: none;
	}
}