@charset "UTF-8";

/************************************************************************
*	CSS information
*	file name  : style.css
*	style info : サイトのベースとなる共通スタイルの設定
************************************************************************/



/* ------------------------------------------------------
::TextFormat
------------------------------------------------------ */
body {
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: left;
	line-height: 1.5;
	color: #333;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	body {
	font-size: 14px;
	}

}

small {
	font-size: 78.5%;
}

/* Web font
------------------------------------------------------ */
@font-face {
	font-family: 'icomoon';
	src:	url('../fonts/icomoon.eot?7rlxi8');
	src:	url('../fonts/icomoon.eot?7rlxi8#iefix') format('embedded-opentype'),
	url('../fonts/icomoon.ttf?7rlxi8') format('truetype'),
	url('../fonts/icomoon.woff?7rlxi8') format('woff'),
	url('../fonts/icomoon.svg?7rlxi8#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}

.icomoon { font-family: 'icomoon' }

.icon_arrow01_l:before { content: "\e900"; }
.icon_arrow01_r:before { content: "\e901"; }
.icon_arrow02_r:before { content: "\e902"; }
.icon_cancel:before { content: "\e903"; }
.icon_close:before { content: "\e904"; }
.icon_facebook:before { content: "\e905"; }
.icon_hamburger:before { content: "\e906"; }
.icon_plus:before { content: "\e907"; }
.icon_youtube:before { content: "\e908"; }


/* Link
------------------------------------------------------ */
a {
	color: #0184ac;
	text-decoration: none;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
	-webkit-tap-highlight-color: #0091ff;
}

a img {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
	background-color: rgba(255, 255, 255, .01);
}

a:visited {
	color: #0184ac;
}

a.plain {
	color: #333;
	text-decoration: underline;
}

a:hover, a:active,
a.plain:hover, a.plain:active {
	color: #47d4ff;
}

a.ex_link:after {
	display: inline-block;
	content: url(../img/ex_link.svg);
	width: 14px;
	height: 14px;
	margin-left: 3px;
	margin-right: 3px;
}

a.pdf_link:after {
	display: inline-block;
	/*content: url(../img/icon_pdf.png);*/
	content:"";
	background:url(../img/icon_pdf.png) no-repeat; 
	width: 30px;
	height: 30px;
	margin-left: 3px;
	margin-right: 3px;
	background-size: contain;
    vertical-align: middle;
}

a:hover img,
a.ex_link:hover:after,
a.pdf_link:hover:after {
	opacity:0.80;
}



/* ------------------------------------------------------
::Form
------------------------------------------------------ */
form {
	font-size: 13px;
	font-size: 1.3rem;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
	width: 100%;
	padding: 15px;
	border: 1px solid #99c8d7;
}

input[type="radio"] {
	margin: 10px 5px 10px 0;
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 10px;
	height: 11em;
	border: 1px solid #99c8d7;
}

.select_wrap {
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid #99c8d7;
	background: #fff;
}

.select_wrap:before {
	content: "";
	position: absolute;
	top: 0;
	right: 14px;
	margin: 0;
	border-left: 1px solid #99c8d7;
	display: block;
	width: 36px;
	height: 100%;;
	background: url(../img/icon_select.svg) no-repeat 100% 50%;
}

select {
	cursor: pointer;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent:.01px; /* Firefox用 */
	text-overflow:""; /* Firefox用 */
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	background: transparent;
}

/* IE */
::-ms-expand {
	display: none;
}

input + input {
	margin-left: 20px;
}

input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 81.25%;
	padding: 15px 0;
	color: #fff;
	background: #a11427;
	border: none;
	font-size: 15px;
	font-size: 1.5rem;
	text-align: center;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

input[type="submit"]:hover {
	background: #47d4ff;
}

::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc; opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}

label {
	display: block;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		width: 50%;
		min-width: 234px;
		padding: 9px 15px;
		font-size: 14px;
		font-size: 1.4rem;
	}

	input[type="submit"] {
		width: 43.75%;
		font-size: 20px;
		font-size: 2rem;
		padding: 20px 0;
	}

	.select_wrap {
		width: 50%;
		min-width: 234px;
	}

	select {
		padding: 9px 15px;
		font-size: 14px;
		font-size: 1.4rem;
	}

	textarea {
		width: 90%;
		padding: 9x 15px;
		font-size: 14px;
		font-size: 1.4rem;
	}

}




/* ------------------------------------------------------
::List
------------------------------------------------------ */
.disc li,
.circle li,
.decimal li {
	margin-bottom: 5px;
}


/* ------------------------------------------------------
::Layout
------------------------------------------------------ */
html, body {
	height: 100%;
}

body {
	text-align: left;
}

.wrap {
	position: relative;
	width: 100%;
	height:auto !important;
	height: 100%;
	min-height: 100%;
	padding-bottom: 280px;
	overflow: visible !important;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.inner {
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		position: relative;
	}

	.wrap {
		padding-bottom: 600px;
	}

}



/* ------------------------------------------------------
::Header
------------------------------------------------------ */
.header {
	height: 40px;
	background: #222;
	position: relative;
}

.siteid {
	width: 100px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 1;
	text-align: center;
}

.siteid a {
	display: block;
	height: 100%;
	padding: 6px 18px;
	background: #fff;
	box-shadow: 0px 0px 8px 3px rgba(0,0,0,0.08);
	vertical-align: top;
}

.siteid img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.header {
		height: 100px;
		padding-top: 36px;
		background: #fff;
	}

	.siteid {
		width: auto;
		height:  auto;
		top: 0;
		left: 39%;
		right: 39%;
		-ms-transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	.siteid:before {
		display: block;
		position: relative;
		content: '';
		width: 100%;
		height: 8px;
		background: #fff;
		margin-top: -8px;
	}

	.siteid a {
		padding: 0 45px 16px;
	}

}


/* Gloval Navi
------------------------------------------------------ */
.gnav a {
	display: block;
	text-decoration: none;
	color: #fff;
}

.menu a {
	padding: 1.1em 0;
	border-bottom: 1px solid #4e4e4e;
}

.gnav li a:after {
	float: right;
	font-family: 'icomoon';
	content: "\e901";
	font-size: 10px;
	font-size: 1rem;
	margin-top: 0.25em;
	color: #a9a9a9;
}

.mnav .drawer-dropdown > a:after {
	content: "\e907";
}

.menu li.drawer-dropdown > ul {
	padding-left: 10px;
}

.dropdown-backdrop { position: static; }

.menu li ul li a {
	color: #a9a9a9;
	border-bottom: 1px dotted #4e4e4e;
}

.btn_contact {
	margin-top: 10px;
	padding: 1.3em;
	background: #a41f31;
}

.gnav .btn_contact a:after {
	float: right;
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	content: "＞";
	font-size: 10px;
	font-size: 1rem;
	margin-top: 0.25em;
	color: #fff;
}

.gnav .etc {
	margin-top: 10px;
}

.gnav .etc li {
	padding: 0.6em 1.3em;
	border: 2px solid #7a7a7a;
}

.gnav .etc li + li {
	margin-top: 5px;
}

.btn_close {
	padding: 10px;
	color: #fff;
	background-color: transparent;
	border: none;
	text-align: center;
}

.btn_close:before {
	display: inline-block;
	font-family: 'icomoon';
	content: "\e903";
	font-size: 10px;
	font-size: 1rem;
	margin-top: 0.25em;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.gnav a {
		padding: 0;
		color: #007093;
	}

	.menu a {
		border: none;
	}

	.drawer-nav {
		position: static;
		width: 100%;
		padding: 0;
		background: #fff;
	}

	.drawer-hamburger,
	.btn_close {
		display: none;
	}

	.drawer-menu {
		margin: 0 auto 0;
		background: #1b1b2b;
	}

	.mnav {
		width: 100%;
		max-width: 960px;
		height: 64px;
		margin: 0 auto;
		background: url(../img/pc/dotline.png) no-repeat 0 50% ;
	}

	.mnav > li {
		float: left;
		width: 19.5%;
		height: 64px;
		background: url(../img/pc/dotline.png) no-repeat 100% 50%;
	}

	.mnav > li:nth-child(3) {
		margin-left: 22%;
	}

	.mnav li a {
		display: block;
		height: 100%;
		text-align: center;
		color: #fff;
		border: none;
	}

	.mnav > li > a:after,
	.mnav .lev2 > li > a:after {
		content: none;
	}

	.mnav > li > a:hover,
	.mna > li > a.active {
		border-bottom: 6px solid #1390b8;
	}

	.mnav > li > a {
		text-indent: -9999px;
		display: block;
		background-size: auto 13px;
		background-position: 50% 25px;
		background-repeat: no-repeat;
	}

	.mnav > li:nth-child(1) > a { background-image:url(../img/pc/gnav01.png); }
	.mnav > li:nth-child(2) > a { background-image:url(../img/pc/gnav02.png); }
	.mnav > li:nth-child(3) > a { background-image:url(../img/pc/gnav03.png); }
	.mnav > li:nth-child(4) > a { background-image:url(../img/pc/gnav04.png); }

	.mnav .drawer-dropdown-menu {
		position: absolute;
		top: 100px;
		left: 0;
		box-sizing: border-box;
		height: 0;
		width: 100%;
		padding: 0;
		background: rgba(19,144,184,0.94);
		z-index: 1;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		transition: 0.2s;
		overflow: hidden;
	}

	.mnav li:hover .drawer-dropdown-menu {
		visibility: visible;
		-webkit-transition: 0.2s;
		z-index: 2;
		overflow: visible;
		height: auto;
		padding: 25px 0 40px;
	}

	.mnav .lev2 li > a {
		float: left;
		margin-top: 15px;
		color: #fff;
		border: none;
		font-size: 15px;
		font-size: 1.5rem;
		font-weight: bold;
		text-align: left;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		transition: 0.2s;
	}

	.mnav .lev2 li a:hover,
	.mnav .lev2 li a:hover:after {
		color: #47d4ff;
	}

	.mnav .lev3 {
		margin-left: 26%;
	}

	.mnav .lev3 li {
		width: 29.58%;
		float: left;
		margin-right: 5.63%;
	}

	.mnav .lev3 li:nth-child(3n) {
		margin-right: 0;
	}

	.mnav .lev3 li a {
		float:  none;
		font-size: 13px;
		font-size: 1.3rem;
		font-weight: normal;
	}

	.mnav .lev3 li a:after {
		color: #fff;
	}

	.snav li a:after,
	.gnav .btn_contact a:after {
		float: right;
		content: "＞";
		font-size: 10px;
		font-size: 1rem;
		margin-top: 0.1em;
		margin-left: 2px;
		color: #007093;
	}

	.snav {
		top: -100px;
		right: 0;
		padding: 10px 0;
		font-size: 12px;
		font-size: 1.2rem;
		position: absolute;
	}

	.snav * {
		float: left;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		-ms-transition: none;
		transition: none;
	}

	.snav li,
	.snav p {
		margin-left: 20px;
	}

	.snav a:hover {
		color: #47d4ff;
	}

	.btn_contact {
		margin: 0;
		padding: 0;
		background: none;
	}

	.gnav .etc {
		margin: 0;
	}

	.gnav .etc li {
		padding: 0;
		border: none;
	}

	.gnav .etc li + li {
		margin-top: 0;
	}

	.js-clingify-wrapper {
		-ms-transform: none;
		-webkit-transform: none;
		transform: none;
	}


	/* 画面スクロール時 */
	.js-clingify-locked .mnav > li {
		width: 18.75%;
	}

	.js-clingify-locked .mnav li .drawer-dropdown-menu {
		top: 64px;
	}

	.js-clingify-locked .mnav > li:nth-child(3) {
		margin-left: 0;
	}

	.js-clingify-locked .snav {
		width: 100%;
	}

	.js-clingify-locked .snav .btn_contact {
		top: 49px;
		right: 0;
		width: 22.91%;
		position: absolute;
	}

	.js-clingify-locked .snav .btn_contact a {
		padding: 10px 0;
		text-align: center;
		color: #fff;
		background: #a51529;
		width: 100%;
	}

	.js-clingify-locked .snav .btn_contact a:hover {
		background: #b94656;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		transition: 0.2s;
	}

	.js-clingify-locked .snav .btn_contact a:after {
		content: none;
	}

}



/* ------------------------------------------------------
::Contents
------------------------------------------------------ */
.contents {
	padding: 20px 10px;
}

.contents:after { content: ''; display: block; clear: both; }

.pageTitle img.sp {
	display: block;
	width: 100%;
	height: auto;
}

.pageTitle img.sp {
	width: 100%;
}

.pageTitle .pc {
	display: none;
}

.sec {
	padding-bottom: 20px;
	position: relative;
}

.sec + .sec {
	margin-top: 20px;
}

.sec:after,.sec2:after,.sec3:after { content: ''; display: block; clear: both; }

.sec * {
	z-index: 20;
	position: relative;
}

.sec p {
	margin-top: 20px;
}

.sec:before {
	display: block;
	width: 90px;
	height: 90px;
	content: '';
	border-top: 45px solid #f0f0f0;
	border-right: 45px solid transparent;
	border-bottom: 45px solid transparent;
	border-left: 45px solid #f0f0f0;
	position: absolute;
	left: -10px;
	z-index: 10;
}

.sec figure.fl_r,
.sec figure.fl_l {
	float: none;
	margin-top: 20px;
}

.sec2 {
	margin-top: 30px;
}

.sec3,.sec4 {
	margin-top: 30px;
}

.sec_ttl0 {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 0.2em;
	color: #0184ac;
	font-size: 19px;
	font-size: 1.9rem;
	line-height: 1.6;
	text-align: center;
}

.sec_ttl0:after {
	display: block;
	width: 30px;
	margin: 5px auto 0;
	content: '';
	border-bottom: 3px solid #42afd0;
}

.sec_ttl {
	margin-bottom: 20px;
	padding-top: 0.2em;
	color: #0184ac;
	font-size: 19px;
	font-size: 1.9rem;
	line-height: 1.6;
}

.sec_ttl:after {
	display: block;
	width: 30px;
	margin-top: 5px;
	content: '';
	border-bottom: 3px solid #42afd0;
}

.sec_ttl2 {
	margin-bottom: 20px;
	padding-bottom: 0.3em;
	color: #0184ac;
	border-bottom: 3px double #ccc;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.6;
}

.sec_ttl3 {
	/*margin-bottom: 20px;*/
	color: #0184ac;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
}

.sec_ttl4 {
	margin-bottom: 10px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.6;
}

.sec .sec_ttl3 + *,
.sec .sec_ttl4 + * {
	margin-top: 10px;
}

.lead {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

.cap {
	color:#a41f31;
	margin-top:0px !important;
	font-size:1rem;
	font-weight:bold;
}

.note {
	margin-top: 20px;
	font-size: 10px;
	font-size: 1rem;
}

.note li + li {
	margin-top: 5px;
}

.glossary {
	margin-top: 30px;
}

.glossary dt {
	margin-top: 20px;
	margin-bottom: 5px;
	color: #0184ac;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.contents {
		position: relative;
		width: 100%;
		max-width: 1040px;
		margin: -21.5% auto 40px;
		padding: 78px 40px 40px;
		background: #fff;
	}

	.pageTitle {
		height: 0;
		background-repeat: no-repeat;
		padding-top: 38%;
		background-position: center 0;
		/*padding-top: 43.33%;*/
		/*background-position: 50% 50%;*/
		background-size: 100% auto;
		position: relative;
	}

	.pageTitle span {
		display: block;
	}

	.pageTitle img.sp {
		visibility: hidden;
	}

	.pageTitle .pc {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		display: block;
	}

	.pageTitle .pc .inner {
		height: 100%;
	}

	.pageTitle .pc img {
		position: absolute;
		top: 17.5%;
	}

	/* メインエリア */
	.main {
		float: left;
		width: 73.959%;
		padding-bottom: 15px;
	}

	.single .main {
		width: 100%;
		float: none;
	}

	.sec {
		padding-bottom: 40px;
	}

	.sec:before {
		width: 170px;
		height: 170px;
		border-top: 85px solid #f0f0f0;
		border-right: 85px solid transparent;
		border-bottom: 85px solid transparent;
		border-left: 85px solid #f0f0f0;
		left: -20px;
	}

	.sec figure.fl_r {
		float: right;
		margin-top: 0;
		margin-left: 10px;
		margin-bottom: 10px;
	}

	.sec figure.fl_l {
		float: left;
		margin-top: 0;
		margin-right: 10px;
		margin-bottom: 10px;
	}

	.sec3{
		margin-top: 50px;
	}

	.sec_ttl0 {
		margin-bottom: 20px;
		padding-top: 20px;
		color: #0f99c3;
		font-size: 28px;
		line-height: 1.5;
	}

	.sec_ttl {
		margin-bottom: 20px;
		padding-top: 20px;
		color: #0f99c3;
		background-repeat: no-repeat;
		background-position: 0 25px;
		font-size: 28px;
		line-height: 1.5;
		text-indent: -9999px;
	}

	.sec_ttl:after {
		width: 19px;
		margin-top: 0;
		border-bottom-width: 4px;
	}

	.sec_ttl.noindent {
		text-indent: 0;
		background-image: none !important;
	}

	.sec_ttl.noindent:after {
		margin-top: 6px;
	}

	.sec2 {
		margin-top: 50px;
	}

	.sec_ttl2 {
		font-size: 20px;
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.sec p {
		margin-top: 20px;
	}

	.glossary dt {
		margin-top: 30px;
	}

	.lead {
		font-size: 18px;
		font-size: 1.8rem;
	}
	.cap {
		color:#a41f31;
		margin-top:0px !important;
		font-size:1.3rem;
		font-weight:bold;
	}

	/* サイドエリア */
	.sub {
		width: 21.875%;
		float: right;
	}

	/* サブメニュー */
	.submenu_ttl {
		padding: 22px 0;
		color: #fff;
		background-color: #19a6d1;
		text-align: center;
		line-height: 1;
	}

	.submenu li {
		font-size: 13px;
		font-size: 1.3rem;
	}

	.submenu li a {
		padding: 16px 21px 16px 18px;
		color: #222;
		border-bottom: 1px dotted #5ab6d2;
		display: block;
		position: relative;
	}

	.submenu li a:after {
		display: block;
		float: right;
		height: 100%;
		content: '\e902';
		color: #19a6d1;
		font-size: 11px;
		font-size: 1.1rem;
		font-family: 'icomoon';
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		transition: 0.2s;
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -7px;;
	}

	.submenu li a:hover,
	.submenu li a:hover:after {
		color: #47d4ff;
	}

	.submenu li a.active {
		color: #fff;
		background-color: #666;
		border-bottom: none;
		margin-top: -1px;
		padding-top: 17px;
		position: relative;
	}

	.submenu li a.active:after {
		content: '';
		position: absolute;
		left: -16px;
		top: 50%;
		margin-top: -10px;
		width: 0;
		height: 0;
		border-top: 8px solid transparent;
		border-right: 8px solid #666;
		border-left: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}

	.btn_link {
		margin-top: 30px;
	}

	.btn_link li {
		font-weight: bold;
	}

	.btn_link li + li {
		margin-top: 20px;
	}

	.btn_link li a {
		display: block;
		padding: 10px 0;
		text-align: center;
		border-width: 3px;
		border-style: solid;
	}

	.btn_link li.faq a {
		border-color: #53bcdc;
	}

	.btn_link li.faq a:hover {
		background-color: #53bcdc;
	}

	.btn_link li.pamph a {
		background-color: #a41f31;
		border-color: #a41f31;
		padding: 25px 0;
	}

	.btn_link li.pamph a:hover {
		background-color: #c46774;
		border-color: #c46774;
	}

	.btn_link li.inquiry a,
	.btn_link li.application a {
		border-color: #a41f31;
	}

		.btn_link li.inquiry a:hover,
	.btn_link li.application a:hover {
		background-color: #c46774;
		border-color: #c46774;
	}

}


/* topicpath
------------------------------------------------------ */
.topicpath {
	margin-bottom: 20px;
	padding: 0 10px;
	font-size: 11px;
	font-size: 1.1rem;
}

.topicpath ol {
	margin: 0;
	padding: 0;
}

.topicpath ol li {
	float: left;
	list-style-type: none;
}

nav.topicpath ol li:after {
	content: "＞";
	display: inline-block;
	margin: 0 5px;
}

nav.topicpath ol li:last-child:after{
	content: none;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.topicpath {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px 40px;
		font-size: 12px;
		font-size: 1.2rem;
		background: #c9e9f3;
	}

}



/* SNS Button
------------------------------------------------------ */
.sns {
	padding: 0 10px;
	margin: 5px auto 65px;
}

.sns * {
	vertical-align: bottom;
}

.single .sns {
		padding-right: 0;
	}

.sns li {
	display: inline;
	margin-right: 8px;
}

.sns li.twitter {
	position: relative;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.sns {
		width: 100%;
		margin-bottom: 10px;
		max-width: 960px;
		padding: 0 24% 0 0;
		text-align: right;
		clear: both;;
	}

}


/* ------------------------------------------------------
::Footer
------------------------------------------------------ */
.footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px;
	color: #fff;
	background: #2e2e2e;
	font-size: 11px;
	font-size: 1.1rem;
	min-height: 270px;
}

.footer a { color: #fff; }


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.footer {
		font-size: 12px;
		font-size: 1.2rem;
	}

	.footer .inner {
		height: 100%;
		padding-bottom: 170px;
	}

	.footer,
	.footer a {
		color: #ddd;
	}

	.footer a:hover {
		color: #47d4ff;
	}
}


/* Following Area
------------------------------------------------------ */
.follow_area {
}

.pagetop {
	position: fixed;
	right: 0;;
	bottom: 60px;
	padding: 5px 5px;
	text-align: right;
	z-index: 200;
}

.pagetop a {
	width: 50px;
	height: 50px;
	display: inline-block;
	color: #333;
	font-size: 30px;
	font-size: 3rem;
	text-decoration: none;
	border-radius: 4px;
}

.pagetop a:hover {
	color: #fff;
	text-decoration: none;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

.conversion {
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px;
	background: rgba(170,170,170,0.8);
	z-index: 100;
}

.conversion .inner {
	padding: 0;
}

.conversion li {
	float: left;
	width: 32%;
	margin-right: 2%;
	color: #a41f31;
	font-size: 12px;
	font-size: 1.15rem;
	font-weight: bold;
	text-align: center;
}

.conversion li:last-child {
	margin-right: 0;
}

.conversion li a {
	width: 100%;
	color: #a41f31;
	background: #fff;
	border: 3px solid #b94656;
}

.conversion li a:hover {
	color: #fff;
	background-color: #b94656;
}

.conversion li.pamph a {
	border: 2px solid #b61f33;
	color: #fff;
	background-color: #b61f33;
	border: 3px solid #b61f33;
}

.conversion li.pamph a:hover {
	border: 2px solid #c46774;
	color: #fff;
	background-color: #c46774;
	border: 3px solid #c46774;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.pagetop {
		right: 20px;
		bottom: 80px;
	}

	.pagetop a {
		width: 80px;
		height: 80px;
	}

	.conversion li a,
	.conversion li a:hover,
	.conversion li.pamph a,
	.conversion li.pamph a:hover {
		display: block;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		text-indent:-99999px;
		white-space:nowrap;
		overflow:hidden;
		padding: 13px 0;
	}

	.conversion li.application a { background-image: url(../img/pc/btn_application.png); }
	.conversion li.inquiry a { background-image: url(../img/pc/btn_inquiry.png); }
	.conversion li.pamph a { background-image: url(../img/pc/btn_pamphlet.png); }

}


/* Footer Navigation
------------------------------------------------------ */
.fnav_sub li {
	width: 48%;
	float: left;
}

.fnav_sub li a {
	display: block;
	padding: 5px 0;
}

.fnav_sub li a:after {
	float: right;
	font-family: 'icomoon';
	content: "\e902";
	font-size: 10px;
	font-size: 1rem;
	-webkit-transform: scale(0.6);
	-webkit-transform-origin: 50% 50%;
	-ms-transform: scale(0.6);
	-ms-transform-origin: 50% 50%;
	transform: scale(0.6);
	transform-origin: 50% 50%;
}


@media screen and (max-width: 767px) { /* スマートフォン用 */

	.fnav_sub li:nth-child(odd) {
		margin-right: 4%;
	}

}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.fnav {
		float: left;
		width: 760px;
	}

	.fnav_main > li {
		float: left;
		width: 21.05%;
		margin-right: 5.26%;
		margin-top: 40px;
	}

	.fnav_main > li:nth-child(4n) {
		margin-right: 0;
	}

	.fnav_main > li > a {
		padding-bottom: 6px;
		font-weight: bold;
		font-size: 13px;
		font-size: 1.3rem;
		display: block;
	}

	.fnav_main ul {
		padding-top: 2px;
		border-top: 1px dotted #6c6c6c;
	}

	.fnav_main ul li {
		padding-top: 8px;
	}

	.fnav_sub li {
		width: 21.05%;
		margin-right: 5.26%;
	}

	.fnav_sub li:nth-child(4n) {
		margin-right: 0;
	}

	.fnav_sub li a:after {
		content: none;
	}

}


/* Logo Area
------------------------------------------------------ */
.logo {
	width: 91px;
	margin: 5px auto;
}

.logo img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */
	.logo_area {
		float: right;
		width: 16.66%;
	}

	.logo {
		width: 100%;
		margin: 20px auto 30px;
	}

	.logo_area li {
		margin-top: 10px;
	}

}


/* Link
------------------------------------------------------ */
.link_icon {
	font-family: 'icomoon';
	font-size: 40px;
	font-size: 4rem;
	text-align: center;
}

.link_icon li {
	display: inline;
	margin: 0 3px;
}

.link_icon a {
	color: #888;
}

.link_icon a:hover {
	color: #fff;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */

	.link_icon {
		position: absolute;
		right: 0;
		bottom: 60px;
		font-size: 50px;
		font-size: 5rem;
	}

	.link_icon li {
		margin: 0 5px;
	}

}


/* Copyright
------------------------------------------------------ */
.copyright {
	width: 100%;
	margin-top: 5px;
	color: #aaa;
	text-align: center;
	line-height: 1.2;
}


@media screen and (min-width: 768px) { /* デスクトップ用 */
	.copyright {
		width: 100%;
		padding: 25px 0;
		background: #222;
		left: 0;
		bottom: 0;
		position: absolute;
	}

	.copyright br {
		display: none;
	}
}



/* ------------------------------------------------------
::Module
------------------------------------------------------ */

/* button
--------------------------------------------*/
.btn a {
	display: inline-block;
	padding: 0.5em;
	color: #fff;
	background: #2e2e2e;
	text-align: center;
}

.btn a:hover {
	background: #47d4ff;
}

.btn a:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.btn_arrow_r {
	margin: 25px auto 0;
	text-align: center;
}

.btn_arrow_r a {
	width: 80%;
	font-size: 12px;
	font-size: 1.2rem;
}

.btn_arrow_r a:after {
	float: right;
	font-family: 'icomoon';
	content: "\e901";
	font-size: 10px;
	font-size: 1rem;
	margin-top: 3px;
}

.sec .btn.ex_link a:after {
	content: url(../img/ex_link_wh.svg);
	float: right;
	width: 14px;
	height: 14px;
	margin-left: 3px;
}

.sec .btn.pdf_link a:after {
	content: url(../img/icon_pdf_wh.svg);
	float: right;
	width: 14px;
	height: 14px;
	margin-left: 2px;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.btn_arrow_r {
		margin: 30px 0;
	}

	.btn_arrow_r a {
		width: 190px;
	}

}


/* thum_list
--------------------------------------------*/
.thum_list {
	margin-top: 20px;
}

.thum_list:after { content: ''; display: block; clear: both; }

.thum_list article {
	width: 48.3%;
	float: left;
	margin-bottom: 15px;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */
.thum_list article {
	margin-bottom: 30px;
}
}

.thum_list article figure.border {
	border: 1px solid #dedede;
}

.thum_list article figure img {
	display: block;
	width: 100%;
	height: auto;
}

.thum_list article h3,
.thum_list article h4 {
	margin-top: 0.2em;
	padding: 6px 0;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.5;
	border-bottom: 1px dotted #0184ac;
}

.thum_list article h3:after,
.thum_list article h4:after {
	float: right;
	font-family: 'icomoon';
	content: "\e901";
	font-size: 10px;
	font-size: 1rem;
	position: relative;
	top: 0.3em;
}

.thum_list article .name {
	margin-top: 3px;
}

.thum_list article .label {
	margin-top: 3px;
	color: #fff;
	background-color: #AAA;
	font-size: 10px;
	font-size: 1rem;
	text-align: center;
}

.thum_list article p {
	margin-top: 0.8em;
	color: #111;
}

.thum_list article .txt_link {
	margin-top: 10px;
}

@media screen and (max-width: 767px) { /* スマートフォン用 */

	.thum_list article:nth-child(odd) {
		margin-right: 3.33%;
	}

	.thum_list article .txt_link {
		font-size: 10px;
		font-size: 1rem;
	}

}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.thum_list {
		font-size: 12px;
		font-size: 1.2rem;
	}

	.thum_list article {
		width: 31.25%;
		margin-right: 3.125%;
	}

	.thum_list article:nth-child(3n) {
		margin-right: 0;
	}

	.thum_list article figure {
		height: 0;
		padding-top: 50%;
		overflow: hidden;
	}

	.thum_list article figure img {
		position: relative;
		margin-top: -50.2%;
		width: 100%;
		height: auto;
	}

	.thum_list article h3:after,
	.thum_list article h4:after  {
		content: "\e902";
		font-size: 12px;
		font-size: 1.2rem;
		top: 4px;
	}

	.thum_list article h3,
	.thum_list article h4 {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: normal;
		overflow: hidden;
	}

	.thum_list article .fs85per {
		font-size: 100%;
	}

	.thum_list article .label {
		display: inline-block;
		padding: 3px 5px;
	}

}


/* bl_list
--------------------------------------------*/
.bl_list {
	margin-top: 20px;
}

.bl_list:after { content: ''; display: block; clear: both; }

.bl_list li {
	width: 100%;
	margin-bottom: 15px;
	border: 3px solid #ccc;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.bl_list li h4 {
	padding: 0 0 6px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	border-bottom: 1px dotted #0184ac;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.bl_list li h4:after {
	float: right;
	font-family: 'icomoon';
	content: "\e901";
	font-size: 10px;
	font-size: 1rem;
	position: relative;
	top: 0.3em;
}

.bl_list li p {
	margin-top: 0.8em;
	color: #111;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.bl_list li a {
	padding: 15px;
	display: block;
}

.bl_list li:hover {
	background: #47d4ff;
	border-color: #47d4ff;
}

.bl_list a:hover h4,
.bl_list a:hover p {
	color: #fff;
}

@media screen and (max-width: 767px) { /* スマートフォン用 */

	.bl_list li:nth-child(odd) {
		margin-right: 3.33%;
	}

}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.bl_list {
		width: 80%;
		margin: 40px auto 0;
		font-size: 12px;
		font-size: 1.2rem;
	}

	.bl_list li {
		float: left;
		width: 48%;
		margin-right: 4%;
		margin-bottom: 30px;
	}

	.bl_list li:nth-child(even) {
		margin-right: 0;
	}

	.bl_list li a {
		padding: 20px;
	}

	.bl_list li h4:after  {
		content: "\e902";
		font-size: 12px;
		font-size: 1.2rem;
		top: 4px;
	}

	.bl_list li h4 {
		font-size: 20px;
		font-size: 2rem;
	}

}


/* txt_link
--------------------------------------------*/
.txt_link {
	margin: 20px 0;
	text-align: center;
}

.txt_link a {
	display: inline-block;
	padding: 6px 10px;
	border: 1px solid;
}

.txt_link a + a {
	margin-left: 20px;
}

.txt_link a:after {
	font-family: 'icomoon';
	content: "\e901";
	font-size: 10px;
	font-size: 1rem;
	margin-top: 2px;
	margin-left: 5px;
}

@media screen and (min-width: 768px) { /* デスクトップ用 */

	.news .pageTitle {
		background-image: url(../img/pc/ttl_bg.jpg);
	}

	.txt_link,
	.sec .txt_link {
		margin: 40px 0 0;
		font-size: 12px;
		font-size: 1.2rem;
	}

}

