@charset "UTF-8";



/* 以前のスマホ用 */
@media screen and (max-width: 480px) {
}
/* タブレット縦 /スマートフォン横 */
@media screen and (min-width: 481px) {
}
/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
}

/* 全体
------------------------------------------------------------------ */
/* font awesome */
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);

body
{
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ", "Meiryo", Arial, sans-serif;
	margin: 0px;
	padding: 0px;
	color:#333;
	font-size: 14px;
	line-height: 1.4em;
	-webkit-text-size-adjust: 100%;
}
/* ナビが開いたとき背景固定 */
body.fixed {
	position: fixed;
	width:100%;
}

#wrapper a,
#wrapper a:link,
#wrapper a:visited,
#wrapper a:hover,
#wrapper a:active
{
	text-decoration: none;
}

/* 共通クラス（リスト用・マウスオーバー用）
------------------------------------------------------------------ */
.list
{
	display: none;
}
.button::before,
.button::after
{
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* レスポンシブ切り替え
------------------------------------------------------------------ */
.pc{display: none;}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	.pc{display: block;}
	.sp{display: none;}
}

/* PAGE LAYOUT
------------------------------------------------------------------ */
#wrapper
{
	width: 100%;
	text-align: center;
	min-height:100%;
	background: #fff;
}
#container
{
	width: 100%;
	margin: 0px auto;
	text-align: center;
	overflow: hidden;
	position: relative;
}

/* MAIN
------------------------------------------------------------------ */
#main
{
	width: 100%;
	margin: 0px auto;
	text-align: center;
}

/* ヘッダー
------------------------------------------------------------------ */
#header
{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0px auto;
	padding: 0px;
	background: none;
}
#header h2.logo a
{
	padding: calc(85%*143/595) 0 0;
	overflow: hidden;
	height: 0px !important;
	height /**/: calc(85%*143/595);
	width: 85vw;
	background: url(../img/navi/header_logo.svg) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: block;
	margin: 80px auto 20px;
}
#header h2.logo2 a
{
	padding: 44px 0 0;
	overflow: hidden;
	height: 0px !important;
	height /**/: 44px;
	width: 180px;
	background: url(../img/navi/header_logo.svg) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: block;
	margin: 60px auto 15px;
}
/* SNSリンク */
#header .sns-link
{
	width: 100%;
	/*height: 35px;*/
	margin: 0px auto;
	padding: 10px 0px 0px 0px;
	background: #75c0dd;
	background: rgba(94,185,217,0.85);
	display: block;
	position: fixed;
	top: 0px;
	z-index: 99999;
}
#header .sns-link ul
{
	text-align:center;
	font-size: 0;
}
#header .sns-link span
{
	width: 100%;
	display: block;
	margin: 10px auto;
	text-align:center;
}
#header .sns-link li
{
	display: inline-block; 
	padding: 0px 30px 0px 0px;
}
#header .sns-link li:last-child
{
	display: inline-block; 
	padding: 0px 0px 0px 0px;
}
#header .sns-link li a
{
	padding: 0px;
	font-size: 25px;
	line-height: 1.75em;
	color: #fff;
	display: block;
}

/* header */
#top-head {
	width: auto;
	display: block;
	position: fixed;
	top: 0px;
	line-height: 1;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	z-index: 99999;
}
.head-inner {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#mobile-head {
	width: auto;
	height: 56px;
	z-index: 999;
	position: relative;
}
/* toggle クローズ時 */
#nav-toggle {
	display: block;
	position: fixed;
	right: 9px;
	top: 7px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: url(../img/navi/header_toggle_bg.svg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	transition: .3s;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 34px;
	background: #fff;
	left: 13px;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 14px;
}
#nav-toggle span:nth-child(2) {
	top: 23px;
}
#nav-toggle span:nth-child(3) {
	top: 32px;
}
/* toggle オープン時 */
.gopen #nav-toggle span:nth-child(1) {
	top: 23px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.gopen #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.gopen #nav-toggle span:nth-child(3) {
	top: 23px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* ハンバーガーメニューボタンをスクロールで移動 */
.is-animation {
	height: 100px;
}
.is-animation #nav-toggle {
	top: -7px;
}
.gopen .is-animation #nav-toggle { /* toggle オープン時は戻す */
	top: 7px;
}
/* ヘッダー開閉メニュー */
#global-nav {
	position: absolute;
	top: -700px;
	background: rgba(255,255,255,0.95);
	width: 100vw;
	display: block;
	text-align: center;
	padding: 30px 0px 0px;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 99;
}
/* ヘッダー開閉メニュー オープン時 */
.gopen #global-nav {
	/* #global-nav top + #mobile-head height */
	-moz-transform: translateY(745px);
	-webkit-transform: translateY(745px);
	transform: translateY(745px);
	height: 90vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.gopen #global-nav::-webkit-scrollbar {
	display: none;
}
.gopen #global-nav {
	-ms-overflow-style:none;
}

/* サイトマップリンク */
#global-nav .block
{
	width: 100vw;
	margin: 0px auto 0px;
	padding: 0px;
	float: none;
	text-align: left;
}
/* シングルリンク */
#global-nav .menu_single {
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid #a2d9f0;
}
#global-nav .menu_single a {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #4d4d4d;
}
#global-nav .menu_single::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_right_blue.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 25%;
	right: 7vw;
}
/* シングルリンク（別窓リンク） */
#global-nav .menu_newwin {
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid #a2d9f0;
}
#global-nav .menu_newwin a {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #4d4d4d;
}
#global-nav .menu_newwin::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_newwin_blue.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 25%;
	right: 7vw;
}
/* トグルメニューの親 */
#global-nav .menu_parent {
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid #a2d9f0;
}
#global-nav .menu_parent p {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #4d4d4d;
}
#global-nav .menu_parent.open {
	border-bottom: none;
}
#global-nav .menu_parent::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_plus_blue.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5vw;
	transition: transform .3s;
}
#global-nav .menu_parent.open::after {
	background: url(../img/navi/arrow_minus_blue.svg) no-repeat center center;
	transform: rotateZ(180deg);
	top: 30%;
}
/* トグルメニューの子 */
#global-nav .menu_child {
	display: none;
}
/* トグルメニューの子のリンク */
#global-nav .menu_child li {
	position: relative;
	cursor: pointer;
	padding: 0px;
	margin: 0px auto 0px;
	background-color: #4fb3d6;
	border-bottom: 1px dotted #fff;
}
#global-nav .menu_child li a {
	width: 80vw;
	display: block;
	padding: 15px 20px 15px 0px;
	margin: 0px auto 0px;
	color: #fff;
}
#global-nav .menu_child li::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_right.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 30%;
	right: 7vw;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	#header
	{
		position: relative;
		width: 100%;
		height: auto;
		margin: 0px auto;
		padding: 0px;
		background: none;
	}
	#header h2.logo a
	{
		padding: 100px 0 0;
		overflow: hidden;
		height: 0px !important;
		height /**/: 100px;
		width: 410px;
		background: url(../img/navi/header_logo.svg) no-repeat left center;
		-webkit-background-size: 390px auto;
		background-size: 390px auto;
		display: block;
		margin: 60px auto 0px;
		z-index: 9999999;
	}
	/* SNSリンク */
	#header .sns-link
	{
		width: 960px;
		height: 35px;
		margin: 0px auto;
		padding: 0px;
		display: block;
		position: absolute;
		top: 40px;
		left: 0;
		right: 0;
		background: transparent;
		z-index: 99999;
	}
	#header .sns-link ul
	{
		text-align: right;
		font-size: 0;
	}
	#header .sns-link span
	{
		width: 100%;
		display: block;
		margin: 10px auto;
		text-align:center;
	}
	#header .sns-link li a
	{
		padding: 0px;
		font-size: 26px;
		line-height: 1.75em;
		color: #009cdd;
		display: block;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	#header .sns-link li a:hover
	{
		padding: 0px;
		font-size: 26px;
		line-height: 1.75em;
		color: #33ccff;
	}
	/* ハンバーガー非表示 */
	#top-head
	{
		display: none;
	}
}

/* PC メインメニュー
------------------------------------------------------------------ */
/* 展開メニュー非表示 */
.mainMenu
{
	display: none;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	.mainMenu
	{
		width: 100%;
		height: 53px;
		margin: 50px auto 0px;
		padding: 0px;
		text-align: left;
		display: block;
		z-index:9999999;
		background-color: rgba(54,189,243,0.10);
	}
	.mainMenu ul
	{
		width: 980px;
		list-style: none;
		margin: 0px auto;
		padding: 5px 0px 0px;
		display: block;
		font-size: 0px;
	}
	.mainMenu ul li
	{
		width: auto;
		list-style: none;
		display: inline-block;
		text-align: left;
		margin: 0px auto;
		padding: 0px;
		position: relative;
		vertical-align: middle;
	}
	.mainMenu ul li.acMenu,
	.mainMenu ul li.faq,
	.mainMenu ul li.news
	{
		padding: 0px 0px 7px 0px;
/*
		border-bottom: 1px solid #eee;
*/
	}
	.mainMenu ul li.faq a
	{
		width: 126px;
		margin: 0px;
		padding: 10px 20px;
		font-size: 14px;
		line-height: 25px;
		color: #333;
		text-align: center;
		white-space:nowrap;
		display: inline-block;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.mainMenu ul li.news a
	{
		width: 156px;
		margin: 0px;
		padding: 10px 20px;
		font-size: 14px;
		line-height: 25px;
		color: #333;
		text-align: center;
		white-space:nowrap;
		display: inline-block;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.mainMenu ul li.faq a:hover,
	.mainMenu ul li.news a:hover
	{
		color: #009cdd;
	}
	.mainMenu ul li.acMenu a.parent {
		width: 166px;
		margin: 0px;
		padding: 10px 20px;
		font-size: 14px;
		line-height: 25px;
		color: #000;
		white-space:nowrap;
		display: inline-block;
		background: url(../img/navi/arrow_pc_down.svg) no-repeat right 25px center;
		-webkit-background-size: 15px auto;
		background-size: 15px auto;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.mainMenu ul li.acMenu a.parent:hover {
		color: #999;
	}
	/* シリーズ、アイテム 開閉メニュー */
	.mainMenu .m-child
	{
		width: 120%;
		margin: 0px 0px 0px 0px;
		padding: 0px;
		text-align: center;
		overflow: hidden;
		position: absolute;
		top: 48px;
		left: 0px;
		display: none;
		z-index:9999999;
	}
	.mainMenu .m-child ul
	{
		width: 100%;
		list-style: none;
		margin: 0px auto;
		padding: 0px;
		text-align: center;
		display: block;
	}
	.mainMenu .m-child ul li
	{
		width: 100%;
		list-style: none;
		display: block;
		border-bottom: none;
	}
	.mainMenu .m-child ul li a:not(.parent)
	{
		width: auto;
		margin: 0px;
		padding: 10px 10px;
		font-size: 14px;
		line-height: 25px;
		color: #fff;
		white-space:nowrap;
		display: block;
		background-color: rgba(54,189,243,0.85);
		background-image: url(../img/navi/arrow_pc_link_ov.svg);
		background-repeat: no-repeat;
		background-position: right 18px center;
		-webkit-background-size: auto 13px;
		background-size: auto 13px;
		border-bottom: 1px dotted #fff;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.mainMenu .m-child ul li:last-child a
	{
		border-bottom: none;
	}
	.mainMenu .m-child ul li a:hover
	{
		color: #000;
		background-color: rgba(255,255,255,1.0);
		background-image: url(../img/navi/arrow_pc_link.svg);
		background-repeat: no-repeat;
		background-position: right 12px center;
		-webkit-background-size: auto 13px;
		background-size: auto 13px;
	}
}


/* フッター
------------------------------------------------------------------ */
#footer
{
	width: 100%;
	overflow: hidden;
	text-align: center;
	margin: 20px auto 0px;
	padding: 40px 0px 0px 0px;
	font-size: 16px;
	line-height: 1.4em;
}
/* SNSリンク */
#footer .sns-link
{
	width: 100%;
	margin: 0px auto;
	padding: 20px 0px 10px;
	border-bottom: 1px solid #fff;
	float: none;
	clear: both;
}
#footer .sns-link ul
{
	text-align:center;
	font-size: 0;
}
#footer .sns-link span
{
	width: 100%;
	display: block;
	margin: 10px auto;
	text-align:center;
}
#footer .sns-link li
{
	display: inline-block; 
	padding: 0px 30px 0px 0px;
}
#footer .sns-link li:last-child
{
	display: inline-block; 
	padding: 0px 0px 0px 0px;
}
#footer .sns-link li a
{
	padding: 0px;
	font-size: 28px;
	line-height: 1.75em;
	color: #a6a6a6;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	#footer
	{
		width: 100%;
		overflow: hidden;
		text-align: center;
		margin: 20px auto 0px;
		padding: 0px;
		background: #4fbadd url(../img/cmn/footer_bg.gif) repeat-x center top;
		font-size: 14px;
		line-height: 1.75em;
		color: #fff;
	}
	/* SNSリンク */
	#footer .sns-link
	{
		width: 90%;
		margin: 0px auto;
		padding: 150px 0px 30px;
		border-bottom: 1px solid #fff;
		float: none;
		clear: both;
	}
	#footer .sns-link ul
	{
		text-align:center;
		font-size: 0;
	}
	#footer .sns-link span
	{
		width: 100%;
		display: block;
		margin: 10px auto;
		text-align:center;
	}
	#footer .sns-link li
	{
		display: inline-block; 
		padding: 0px 40px 0px 0px;
	}
	#footer .sns-link li:last-child
	{
		display: inline-block; 
		padding: 0px 0px 0px 0px;
	}
	#footer .sns-link li a
	{
		padding: 0px;
		font-size: 32px;
		line-height: 1.75em;
		color: #fff;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	#footer .sns-link li a:hover
	{
		color: #cdf5ff;
	}
}

/* サイトマップリンク */
.footer-inner
{
	width: auto;
	overflow: hidden;
	text-align: center;
	margin: 0px auto 0px;
	padding: 0px;
	color: #fff;
	background: #75c0dd;
}
#footer .block
{
	width: 100vw;
	margin: 0px auto 0px;
	padding: 0px;
	float: none;
	text-align: left;
}
/* シングルリンク */
#footer .footer_single {
	position: relative;
	cursor: pointer;
	border-bottom: 1px dotted #fff;
}
#footer .footer_single a {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #fff;
}
#footer .footer_single::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_right.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 25%;
	right: 5vw;
}
/* シングルリンク（別窓リンク） */
#footer .footer_newwin {
	position: relative;
	cursor: pointer;
	border-bottom: 1px dotted #fff;
}
#footer .footer_newwin a {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #fff;
}
#footer .footer_newwin::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_newwin.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 25%;
	right: 6vw;
}
/* トグルメニューの親 */
#footer .footer_parent {
	position: relative;
	cursor: pointer;
	border-bottom: 1px dotted #fff;
}
#footer .footer_parent p {
	width: 90vw;
	display: block;
	padding: 15px 0px;
	margin: 0px auto 0px;
	color: #fff;
}
#footer .footer_parent.open {
	border-bottom: none;
}
#footer .footer_parent::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_plus.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5vw;
	transition: transform .3s;
}
#footer .footer_parent.open::after {
	background: url(../img/navi/arrow_minus.svg) no-repeat center center;
	transform: rotateZ(180deg);
	top: 30%;
}
/* トグルメニューの子 */
#footer .footer_child {
	display: none;
}
/* トグルメニューの子のリンク */
#footer .footer_child li {
	position: relative;
	cursor: pointer;
	padding: 0px;
	margin: 0px auto 0px;
	background-color: #4fb3d6;
	border-bottom: 1px dotted #fff;
}
#footer .footer_child li a {
	width: 80vw;
	display: block;
	padding: 15px 20px 15px 0px;
	margin: 0px auto 0px;
	color: #fff;
}
#footer .footer_child li::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/navi/arrow_right.svg) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 30%;
	right: 7vw;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	/* サイトマップリンク */
	.footer-inner
	{
		width: 980px;
		overflow: hidden;
		text-align: center;
		margin: 0px auto 0px;
		padding: 0px;
		background: none;
	}
	#footer .block
	{
		width: 238px;
		margin: 0px 9px 0px 0px;
		padding: 20px 0px 20px;
		float: left;
		display: block;
		overflow: hidden;
		text-align: left;
	}
	#footer .block a
	{
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	#footer .block a:hover
	{
		color: #cdf5ff;
	}
	#footer .block:last-child
	{
		width: 238px;
		margin: 0px 0px 0px 0px;
		padding: 20px 0px 0px;
		float: left;
		text-align: left;
	}
	/* シングルリンク */
	#footer .footer_single {
		position: relative;
		cursor: pointer;
		border-bottom: none;
	}
	#footer .footer_single a {
		width: auto;
		display: block;
		padding: 10px 0px 10px 20px;
		margin: 0px auto 0px;
		color: #fff;
	}
	#footer .footer_single::after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		background: url(../img/navi/arrow_right.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 37%;
		left: 0;
	}
	/* シングルリンク（別窓リンク） */
	#footer .footer_newwin {
		position: relative;
		cursor: pointer;
		border-bottom: none;
	}
	#footer .footer_newwin a {
		width: auto;
		display: block;
		padding: 10px 0px 10px 20px;
		margin: 0px auto 0px;
		color: #fff;
	}
	#footer .footer_newwin::after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		background: url(../img/navi/arrow_newwin.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 37%;
		left: 0;
	}
	/* トグルメニューの親 */
	#footer .footer_parent {
		position: relative;
		cursor: pointer;
		border-bottom: 1px dotted #fff;
	}
	#footer .footer_parent a {
		width: auto;
		display: block;
		padding: 10px 0px 10px 20px;
		margin: 0px auto 0px;
		color: #fff;
	}
	#footer .footer_parent {
		border-bottom: none;
	}
	#footer .footer_parent::after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		background: url(../img/navi/arrow_right.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: 0;
	}
	/* トグルメニューの子 */
	#footer .footer_child {
		display: block;
		padding: 0px 0px 7px 0px;
	}
	/* トグルメニューの子のリンク */
	#footer .footer_child li {
		position: relative;
		cursor: pointer;
		padding: 0px;
		margin: 0px auto 0px;
		background-color: transparent;
		border-bottom: none;
	}
	#footer .footer_child li a {
		width: 84%;
		display: block;
		padding: 10px 0px 10px 20px;
		margin: 0px 0px 0px auto;
		color: #fff;
	}
	#footer .footer_child li::after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		background: url(../img/navi/arrow_right.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 37%;
		left: 20px;
	}
}

/* コピーライト */
#footer .copy-text
{
	width: 90%;
	margin: 0px auto;
	padding: 0px;
	float: none;
	clear: both;
	text-align: center;
	color: #666;
}
.copy-text .company
{
	font-size: 14px;
	line-height: 2em;
	color: #fff;
	margin: 0px auto;
	padding: 60px 0px;
	display: block;
	color: #666;
}
.copy-text .caution
{
	font-size: 12px;
	line-height: 1.75em;
	color: #fff;
	margin: 0px auto;
	padding: 0px;
	display: block;
	color: #666;
}
.copy-text .copyright
{
	font-size: 10px;
	line-height: 1.75em;
	color: #fff;
	margin: 0px auto;
	padding: 30px 0px;
	display: block;
	font-family: Verdana, Roboto, 'Droid Sans', sans-serif;
	color: #666;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	/* コピーライト */
	#footer .copy-text
	{
		width: 90%;
		margin: 0px auto;
		padding: 0px;
		float: none;
		clear: both;
		text-align: center;
		color: #fff;
		border-top: 1px solid #fff;
	}
	.copy-text .company
	{
		font-size: 14px;
		line-height: 2em;
		margin: 0px auto;
		padding: 30px 0px 30px;
		display: block;
		color: #fff;
	}
	.copy-text .caution
	{
		font-size: 13px;
		line-height: 1.75em;
		margin: 0px auto;
		padding: 0px;
		display: block;
		color: #fff;
	}
	.copy-text .copyright
	{
		font-size: 11px;
		line-height: 1.75em;
		color: #fff;
		margin: 0px auto;
		padding: 10px 0px 20px;
		display: block;
		font-family: Verdana, Roboto, 'Droid Sans', sans-serif;
	}
}

/* ページトップボタン
------------------------------------------------------------------ */
.pagetop
{
	display: none;
	position: fixed;
	bottom: 45px;
	right: 10px;
	z-index: 99999;
}

.pagetop a
{
	display: block;
	width: 50px;
	height: 50px;
	filter: alpha(opacity=90); 
	-moz-opacity: 0.9;
	opacity: 0.9;
}

.pagetop a img
{
	width: 100%;
	height: auto;
}

/* デスクトップ/タブレット横 */
@media screen and (min-width: 769px) {
	.pagetop
	{
		display: none;
		position: fixed;
		bottom: 50px;
		right: 20px;
	}
	
	.pagetop a
	{
		display: block;
		width: 80px;
		height: 80px;
		filter: alpha(opacity=90); 
		-moz-opacity: 0.9;
		opacity: 0.9;
	}
}
