body, html {
	font-family: sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	/*color: #666;*/
	color: #333;
	font-weight: 400;
	width: 100% !important;
	height: 100% !important;
}
h2 {
	font-family: sans-serif;
	margin: 0 0 20px 0;
	font-weight: 700;
	font-size: 28px;
	color: #333;
}
h3 {
	font-family: sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #333;
}
h4 {
	font-family: sans-serif;
	font-size: 18px;
	color: #333;
	/* 追加 */
	line-height: 1.4;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 15px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #1f386e;
	font-weight: 400;
}
a:hover, a:focus {
	text-decoration: none;
	color: #e52f3c;
}
ul, ol {
	list-style: none;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #1E7A46;
	margin-bottom: 20px;
	border: 0;
}
/* Navigation */
#menu {
	/*padding: 20px;*/
	padding: 0 0 20px;
	transition: all 0.8s;
}
#menu.navbar-default {
	background-color: #fff;
	border-color: rgba(231, 231, 231, 0);
	box-shadow: 0 0 30px rgba(0,0,0,0.2)
}
#menu a.navbar-brand {
	font-family: sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #1f386e;
	text-transform: uppercase;
	letter-spacing: -1px;
}
#menu.navbar-default .navbar-nav > li > a {
	font-family: sans-serif;
	text-transform: uppercase;
	/*color: #1f386e;*/
	color: #333;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 2px;
	border-radius: 0;
	margin: 9px 20px 0 20px;
}
#menu.navbar-default .navbar-nav > li > a:hover {
	color: #ce2a36;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #ce2a36 !important;
	background-color: transparent;
}
#menu .phone {
	font-family: sans-serif;
	margin: 4px 0 0 120px;
	float: left;
	font-size: 16px;
	font-weight: 400;
	color: #999;
}
#menu .phone span {
	font-size: 14px;
	display: block;
	color: #1f386e;
}
.navbar-toggle {
	border-radius: 0;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #fff;
	border-color: #fff;
}
.navbar-default .navbar-toggle:hover>.icon-bar {
	background-color: #1b6d3f;
}
.section-title {
	/*margin-bottom: 70px;*/
	margin-bottom: 30px;
}
.section-title h2 {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	/*border-bottom: 1px solid rgba(0, 0, 0, 0.09);*/
	border-bottom: 3px solid rgba(0, 0, 0, 0.09);
}
.section-title h2::after {
	position: absolute;
	content: "";
	background-color: #e52f3c;
	height: 3px;
	width: 50px;
	/*bottom: -1px;*/
	bottom: -3px;
	left: 0;
}

.btn-custom {
	text-transform: uppercase;
	color: #fff;
	background-color: #e52f3c;
	padding: 14px 20px;
	letter-spacing: 1px;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: #fff;
	background-color: #1f386e;
}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}
/* Header Section */
header {
	overflow: hidden;
}
.intro {
	display: table;
	position: relative;
	overflow-y: hidden;
	width: 100%;
	padding: 0;
	margin-top: 86px;
}
@keyframes intro-shade-animation {
	0% {
		background: transparent;
		opacity: 0;
	}
	100% {
		/* background: rgba(255, 255, 255, 0.7); */
		opacity: 1;
	}
}
@keyframes intro-container-animation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.intro::before {
	display: block;
	position: absolute;
	top: 0;
	content: '';
	width: calc(50% + 230px);
	height: 100%;
	z-index: 500;
	right: 0;
	opacity: 0;
	animation-name: intro-container-animation;
	animation-timing-function: ease-out;
	animation-delay: 0.6s;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
	border-bottom: 800px solid #c11c27;
	border-left: 180px solid transparent;
}

.intro .right {
	display: block;
	position: relative;
	z-index: 1000;
}
.intro .centering {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.intro h1 {
	font-family: sans-serif;
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1.5;
	letter-spacing: 4px;
}
.intro p {
	color: #fff;
	font-size: 17px;
	line-height: 28px;
	padding: 15px;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 40px;
	background: rgba(0,0,0,.45);
}

.intro video {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 10;
}
.intro .btn-open {
	margin-top: 24px;
	margin-bottom: 145px;
	margin-right: 0;
	position: relative;
}

header .intro-text {
	margin-top: 135px;
	text-align: right;
	display: inline-block;
}
header .container {
	position: relative;
	opacity: 0;
	display: flex;
	justify-content: flex-end;
	animation-name: intro-container-animation;
	animation-delay: 0.6s;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
	z-index: 1000;
}

@media (max-width: 1200px) {
	header .intro-text {
		margin-top: 145px;
	}

	.intro::before {
		width: calc(50% + 285px);
	}

	.intro .btn-open {
		margin-bottom: 120px;
	}
}

@media (max-width: 991px) {
	.intro::before {
		width: calc(50% + 360px);
	}
	.intro h1 {
		margin-top: 190px;
	}
}

@media (max-width: 768px) {
	.intro {
		margin-top: 71px;
		background-size: 200%;
	}
	.intro::before {
		background: linear-gradient(to top,rgba(41, 47, 53, 0.8) 10%, transparent);
		width: 100%;
		border: none;
	}
	.intro video {
		position: absolute;
		top: 0;
		left: 0;
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: 200%;
		object-fit: cover;
		z-index: 10;
	}

	.intro h1 {
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
	}

	header .intro-text {
		margin-top: 60px;
		margin-bottom: 30px;
	}

	.intro .btn-open {
		margin-top: 0;
		margin-bottom: 60px;
		margin-left: 0;
		left: auto;
	}
	.intro .btn-open a {
		padding: 10px 14px;
		font-size: 20px;
	}
	.intro .centering {
		align-items: center;
	}

	header .container {
		text-align: center;
		padding: 0 15px;
		display: block;
	}
}

/* Get Touch Section */
#get-touch {
	padding: 40px 0 30px;
	color: rgba(255,255,255,.7);
	background: #1f386e;
}
#get-touch h3 {
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 10px 0;
}
#get-touch .btn-custom {
	margin: 0;
	background: transparent;
	border: 2px solid #fff;
}
#get-touch .btn-custom:hover {
	color: #1f386e;
	background: #fff;
	border: 2px solid #fff;
}
/* About Section */
#about {
	padding: 110px 0;
	background: #f6f6f6;
}
#about h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
}
#about h2 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
#about h2::after {
	position: absolute;
	content: "";
	background-color: #e52f3c;
	height: 3px;
	width: 50px;
	bottom: -1px;
	left: 0;
}
#about .about-text li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#about .about-text li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #1f386e;
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
}
#about img {
	padding: 20px;
	width: 500px;
	margin-top: 10px;
	background: #fff;
	border-right: 0;
	box-shadow: 0 0 50px rgba(0,0,0,0.06);
}
#about p {
	line-height: 24px;
	margin: 30px 0;
}
/* Services Section */
#services .col-md-4 {
	margin-bottom: 6px;
	padding: 0 3px;
}
#services .col-md-4 .bg-box {
	padding: 10px 6px;
	background-color: #c11c27;
}
#services .col-md-4 .service-media {
	width: 100%;
	padding-bottom: 5px;
	margin: 0;
	border-bottom: none;
	display: none;
}
#services .col-md-4 .service-desc {
	margin-bottom: 0;
}
#services .col-md-4 .service-desc, #services .col-md-4 .service-desc h3 {
	margin: 0;
	padding: 3px 0;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	#services .col-xs-6 .bg-box {
		margin: 0 1px;
	}
	#services .col-xs-6 .service-desc h3 {
		font-size: 18px;
	}
}


/* Portfolio Section */
#portfolio {
	padding: 100px 0;
	background: #f6f6f6;
}
.portfolio-item {
	margin: 15px 0;
}
.portfolio-item .hover-bg {
	overflow: hidden;
	position: relative;
}
.hover-bg .hover-text {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	background: rgba(31, 56, 110, 0.8);
	padding: 30% 0 0 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.hover-bg .hover-text>h4 {
	opacity: 0;
	color: #fff;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.3s;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}
.hover-bg:hover .hover-text>h4 {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.hover-bg:hover .hover-text {
	opacity: 1;
}
/* Testimonials Section */
#testimonials {
	padding: 100px 0;
}
#testimonials i {
	color: #e6e6e6;
	font-size: 32px;
	margin-bottom: 20px;
}
.testimonial {
	position: relative;
	padding: 20px;
}
.testimonial-image {
	float: left;
	margin-right: 15px;
}
.testimonial-image, .testimonial-image img {
	display: block;
	width: 64px;
	height: 64px;
}
.testimonial-content {
	position: relative;
	overflow: hidden;
}
.testimonial-content p {
	margin-bottom: 0;
	font-size: 14px;
	font-style: italic;
}
.testimonial-meta {
	margin-top: 10px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}
/* Contact Section */
#contact {
	padding: 100px 0 60px 0;
	background: #1f386e;
	color: rgba(255,255,255,.65);
}
#contact .section-title {
	margin-bottom: 40px;
}
#contact h2 {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
#contact h4 {
	color: #fff;
	margin-top: 22px;
	margin-bottom: 60px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
#contact form {
	padding-top: 20px;
}
#contact h3 {
	font-size: 17px;
	font-weight: 600;
}
#contact .text-danger {
	color: #cc0033;
	text-align: left;
}
#contact .btn-custom {
	margin: 30px 0;
	background: transparent;
	border: 2px solid #fff;
}
#contact .btn-custom:hover {
	color: #1f386e;
	background: #fff;
}
label {
	font-size: 12px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	float: left;
}
#contact .form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.42857143;
	color: #444;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ddd;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
#contact .form-control:focus {
	border-color: #999;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
color: #777;
}
.form-control:-moz-placeholder {
color: #777;
}
.form-control::-moz-placeholder {
color: #777;
}
.form-control:-ms-input-placeholder {
color: #777;
}
#contact .contact-item {
	margin: 20px 0;
}
#contact .contact-item span {
	color: rgba(255,255,255,1);
	display: block;
}
#contact .social {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 50px;
	margin-top: 50px;
	text-align: center;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#contact .social i.fa {
	font-size: 24px;
	padding: 10px;
	color: rgba(255,255,255,0.6);
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #fff;
}
/* Footer Section*/
#footer {
	padding: 30px 0;
}
#footer p {
	color: #333;
	font-size: 12px;
	line-height: 1.8;
}
#footer a {
	color: #1f386e;
}
#footer a:hover {
	color: #e52f3c;
}

@media (max-width: 768px) {
#about img {
	margin: 50px 0;
}
}






/*****************************************************
 立花証券 -- 追加 CSS
******************************************************/


/******************************************
 共通 CSS
******************************************/

/* Navigation
=====================================*/
.top-seo {
	background-color: #dfdfdf;
	padding-top: 5px;
	margin-bottom: 20px;
}

.top-seo p {
	color: #333;
	font-size: 10px;
	line-height: 1.2;
	margin-bottom: 5px;
}


.navbar-toggle {
    margin-top: 0;
}

/* Navigation -- ログインボタン
=====================================*/
#menu {
	padding-top: 20px;
}

#menu.navbar-default .navbar-nav > li.btn-login > a {
    font-family: sans-serif;
    text-transform: uppercase;
    background-color: #c11c27;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    padding: 8px 5px;
    margin: 9px 0px 0 0px;
    width: 140px;
    text-align: center;
	overflow: hidden;
	box-sizing: content-box;
}

#menu.navbar-default .navbar-nav > li.btn-login > a::before {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 120px solid transparent;
	border-left: 25px solid white;
}
#menu.navbar-default .navbar-nav > li.btn-login > a::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	border-top: 120px solid transparent;
	border-right: 25px solid white;
}

#menu.navbar-default .navbar-nav > li.btn-login > a:hover {
	background-color: #9c0d17;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	.navbar-header .logo {
	    margin-left: 15px;
	}

	.navbar-header .logo img {
	    max-width: 180px;
	}

	#menu.navbar-default .navbar-nav > li.smtLogin > a {
		background-color: #c11c27;
		-webkit-border-radius: 25px;
		        border-radius: 25px;
		color: #FFF;
		text-align: center;
	}

	#menu {
		padding: 18px 0 10px;
	}
}


/* パンくずリスト
=====================================*/
.breadcrumb {
	margin-top: 130px;
	padding: 0 3px;
    margin-bottom: 10px;
    list-style: none;
    background-color: #fff;
    border-radius: 0 !important;
}

.breadcrumb > li + li:before {
	content: ">";
	color: #333;
}

.breadcrumb .active {
	color: #333;
	font-size: 12px;
}

.breadcrumb li a {
	color: #0c579a;
	font-size: 12px;
}

.breadcrumb li a:hover {
	color: #c11c27;
	text-decoration: underline;
}


/* pageTitle
=====================================*/
.pageTitle {
	margin-bottom: 30px;
}

.pageTitle h1 {
	color: #333;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px;
}

.pageTitle p {
	color: #333;
	font-size: 16px;
	line-height: 1.4;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	.pageTitle h1 {
		font-size: 20px;
		line-height: 1.4;
	}
}



/* section-title 各セクションタイトル
=====================================*/
.section-title h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	padding-bottom: 8px;
}

.secTitle_txt {
	margin-bottom: 30px;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	.section-title h2 {
		font-size: 18px;
		font-weight: 700;
		line-height: 1.4;
		padding-bottom: 8px;
	}
}


/* cateTitle
=====================================*/
.cateTitle {
	background-color: #eeeeee;
	padding: 10px 0;
	margin-bottom: 20px;
}

.cateTitle h3 {
	border-left: 8px solid #c11c27;
	color: #333;
	font-size: 20px;
	line-height: 1.4;
	padding-left: 20px;
	margin: 0;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	.cateTitle h3 {
		font-size: 16px;
		line-height: 1.4;
		padding-left: 8px;
	}
}

/* imgAnc 写真付きセレクトボタン
=====================================*/
h3.imgAnc {
	border-bottom: 3px solid #c11c27;
	color: #c11c27;
	font-size: 21px;
	line-height: 1.4;
	padding-bottom: 5px;
	margin: 0 0 10px;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
}



/* ボタン == 一覧を表示
=====================================*/
.btn-more a {
	background: #fff;
	border: 1px solid #626262;
	-webkit-border-radius: 25px;
	        border-radius: 25px;
	color: #626262;
	display: inline-block;
	text-align: center;
	width: 150px;
	padding: 10px;
	margin-top: 15px;
}

.btn-more a:hover {
	color: #fff;
	background-color: #626262;;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}


/* ボタン == 共通レッドボタン
=====================================*/
.btn-common01 a {
	background-color: #fff;
	background-image: url(../../images/ico_arrow03.png);
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	border: 1px solid #c11c27;
	color: #c11c27;
	display: inline-block;
	font-size: 15px;
	padding: 15px 20px;
	text-align: center;
	width: 100%;
}

.btn-common01 a:hover {
	background-color: #c11c27;
	background-image: url(../../images/ico_arrow04.png);
	color: #fff;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}


/*  > 768px
================================*/
@media (min-width: 768px) {
	.btn-common01 a {
		margin-bottom: 20px;
	}
}
/*  < 768px
================================*/
@media (max-width: 768px) {
	.btn-common01 a {
		font-size: 14px;
		margin-bottom: 20px;
		width: 100%;
	}

}


/* ボタン == 取引全般ついて
=====================================*/
.btn-common02 a {
	background-color: #eeeeee;
	background-image: url(../../images/ico_arrow01.png);
	background-repeat: no-repeat;
	background-position: left 10px top 50%;
	color: #333;
	display: table;
	font-size: 15px;
	padding: 15px 35px;
	text-align: center;
	/*height: 72px;*/
	width: 100%;
}

.btn-common02 a span {
	display: table-cell;
	vertical-align: middle;
}


.btn-common02 a:hover {
	background-color: #c11c27;
	color: #fff;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}

.btn-common02_Box .col-md-4,
.btn-common02_Box .col-sm-4 {
	padding: 1px;
}


/* ボタン == 約款・規程等 pdfダウンロード
=====================================*/
.btn-pdf a {
	background-color: #eeeeee;
	color: #333;
	display: table;
	font-size: 15px;
	padding: 15px 35px;
	text-align: center;
	/*height: 72px;*/
	width: 100%;
	position: relative;
}

.btn-pdf a span {
	display: table-cell;
	vertical-align: middle;
}


.btn-pdf a:hover {
	background-color: #c11c27;
	color: #fff;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}

.btn-pdf_Box .col-md-4,
.btn-pdf_Box .col-sm-4 {
	padding: 1px;
}

.btn-pdf a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	margin-top: -10px;
	width: 10px;
	height: 10px;
	content:'\f1c1';
	font-family: FontAwesome;
	color: #333;
}

.btn-pdf a:hover:after {
	color: #fff;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}


/*  > 768px
================================*/
@media (min-width: 768px) {
}
/*  < 768px
================================*/
@media (max-width: 768px) {

}



/* テーブルスタイル
=====================================*/
.table {
	margin-bottom: 10px;
}

.table th,
.table td {
	color: #333;
	text-align: center;
}

.table th {
	background-color: #eeeeee;
	font-size: 18px;
	line-height: 1.4;
}

.table td {
	font-size: 16px;
	line-height: 1.4;
	vertical-align: middle !important;
}


.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
	border-bottom-width: 0;
	vertical-align: middle;
}

.table-bordered > tbody > tr > td.text-left {
	text-align: left;
}


/*  < 768px
================================*/
@media (max-width: 768px) {
	.table th {
		background-color: #eeeeee;
		font-size: 12px;
		line-height: 1.4;
	}

	.table td {
		font-size: 12px;
		line-height: 1.4;
		vertical-align: middle !important;
	}
}


/* ページ内アンカーナビ隠れないようにする
=====================================*/
.anc {
	padding-top: 120px;
	margin-top: -120px;
}


/* attention Section
=====================================*/
#commonAttention {
	padding: 50px 0;
}

#commonAttention p {
	font-size: 14px;
	line-height: 2.0;
	color: #333;
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	#commonAttention p {
		line-height: 1.8;
	}
}

/* footer Section
=====================================*/
#footer .footerLink {
	border-top: 1px solid #848484;
	margin-top: 35px;
}

#footer .footerLink dl {
	margin: 20px 0 50px;
}

#footer .footerLink  a {
	color: #333;
	display: block;
}

#footer .footerLink  a:hover {
	color: #e52f3c;
}

#footer .footerLink dt a {
	background-image: url(../images/ico_arrow01.png);
	background-repeat: no-repeat;
	background-position: left top 2px;
	font-size: 14px;
	line-height: 1.4;
	padding-left: 25px;
	margin-bottom: 10px;
}

#footer .footerLink dd a {
	font-size: 12px;
	line-height: 1.4;
	margin: 5px 0 0 35px;
}

#footer .copyRight p {
	text-align: center;
}


/*  < 992px
================================*/
@media (max-width: 992px) {
	#footer .smtLink .logo {
		margin-bottom: 10px;
	}

	#footer .smtLink ul li {
		border-bottom: 1px solid #333;
		margin: 5px 0;
		padding: 10px 0;
		text-align: center;
	}

	#footer .smtLink ul li:first-child {
		border-top: 1px solid #333;
	}

	#footer .smtLink ul li a {
		color: #333;
		display: block;
		font-size: 16px;
		line-height: 1.4;
	}

	#footer .smtLink ul li a:hover {
		color: #e52f3c;
		text-decoration: underline;
	}
}

/*  < 768px
================================*/
@media (max-width: 768px) {
	#footer .footerLink dl {
		margin: 20px 0 0;
	}

	#footer .copyRight p {
		margin-top: 15px;
		text-align: left;
	}

	#footer .smtLink .logo {
		margin-bottom: 10px;
	}

	#footer .smtLink ul li {
		border-bottom: 1px solid #333;
		margin: 5px 0;
		padding: 10px 0;
		text-align: center;
	}

	#footer .smtLink ul li:first-child {
		border-top: 1px solid #333;
	}

	#footer .smtLink ul li a {
		color: #333;
		display: block;
		font-size: 16px;
		line-height: 1.4;
	}

	#footer .smtLink ul li a:hover {
		color: #e52f3c;
		text-decoration: underline;
	}
}


/* PageTop Button Section
=====================================*/
.pagetop {
	display: none;
	position: fixed;
	bottom: 5%;
	right: 3%;
}

.pagetop a {
	opacity: 0.5;
}

.pagetop a:hover {
	opacity: 1;
	-webkit-transition: 0.3s;
	   -moz-transition: 0.3s;
	    -ms-transition: 0.3s;
	     -o-transition: 0.3s;
	        transition: 0.3s;
}


/*  < 768px
================================*/
@media (max-width: 768px) {
	.pagetop {
		display: none;
		position: fixed;
		bottom: 3%;
		right: 2%;
		text-align: right;
	}

	.pagetop img {
		width: 75%;
	}
}


/* Color
=====================================*/
.colorRed {
	color: #c11c27 !important;
}



/* テキストリンク ? underline
=====================================*/
a.underLine {
	text-decoration: underline;
}

a.underLine:hover {
	color: #c11c27;
	text-decoration: none;
}

a.pdf {
	position: relative;
	padding-right: 50px;
}

a.pdf:after {
	position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    margin-top: -10px;
    width: 10px;
    height: 10px;
    content: '\f1c1';
    font-family: FontAwesome;
    color: #1f386e;
}

a.pdf:hover,
a.pdf:hover:after {
	color: #e52f3c;
}








