@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("font-awesome/all.min.css");
@import url("https://use.fontawesome.com/releases/v5.13.1/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600|Poiret+One|M+PLUS+1p:300,400,700");


/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
html {
	font-size: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	position: relative; 
}

body { 
	min-width: 320px;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

p {
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	outline: none;
	-ms-interpolation-mode: bicubic; 
	vertical-align: middle;
}
 
/* Correct overflow not hidden in IE9 */
figure { 
	margin: 0; 
}

a, a:focus, a:hover, a:active {
	outline: 0 none;
	-moz-outline: 0 none;
}

a {
	color: #1bb299;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 0.25s ease-in-out;
	-moz-transition: color 0.25s ease-in-out;
	-o-transition: color 0.25s ease-in-out;
	-ms-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

a:hover {
	color: #75d1c1;
	text-decoration: underline;
}

address {
	font-weight: normal;
	font-style: normal;
}

hr { 
	display: block; 
	height: 1px; 
	border: 0; 
	border-top: 1px solid #e1e3e6; 
	margin: 20px 0; 
	padding: 0;
}

/*
 * Remove text-shadow in selection highlight
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}

::selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}

/* Typography == */
.f-small {
	ontf-size: 85%;
}

.center {
	text-align: center!important;
}

.right {
	text-align: right!important;
}

.left {
	text-align: left!important;
}

/* Color */
.bg-gry {
	background-color: #f5f7f8;
}

.clr-grn {
	color: #0bae51;
}

.clr-mosgrn {
	color: #108f98;
}

.clr-blu {
	color: #0f92bd;
}

.clr-red {
	color: #961200;
}

.clr-pink {
	color: #e05274;
}

.clr-yellow {
	color: #c4991b;
}

.clr-gry {
	color: #93989a;
}

.clr-wh {
	color: #fff;
}

/* Lists */
ul, ol { 
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none; 
}

dd { 
	margin: 0;
}

/* Contain floats:Clearfix */
.cf:after {
    content:" ";
    display:table;
    clear:both;
}

/*---------------------------------------------------- */
/* Scroll Navi Part */
/*---------------------------------------------------- */
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 40px;
	right: 0;
	overflow:hidden;
	width: 32px;
	height: 32px;
	border:none;
	text-indent:100%;
	background-color: rgba(0, 0, 0, .5);
	background-image: url(../images/arrow_top.png);
	background-repeat: no-repeat;
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-ms-border-radius: 3px 0 0 3px;
	-o-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

#toTopHover {
	width: 32px;
	height: 32px;
	display:block;
	overflow:hidden;
	float:left;
	background-color: rgba(0, 0, 0, .75);
	background-image: url(../images/arrow_top.png);
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:focus {
	outline:none;
}

/*---------------------------------------------------- */
/* Fade Transition */
/*---------------------------------------------------- */
.fade-efct a {
   opacity: 0;
   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   -webkit-transition: opacity 0.3s ease-in-out;
   -moz-transition: opacity 0.3s ease-in-out;
   -o-transition: opacity 0.3s ease-in-out;
   -ms-transition: opacity 0.3s ease-in-out;
   transition: opacity 0.3s ease-in-out;
}

.fade-efct a:hover {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden!important;
}

.pc-tablet {
	visibility: visible !important;
}

#maincontainer {
	width: 100%;
	margin: 0;
	padding: 0 0 30px;
	background-color: #fff;
	position: relative;
}

.wrapper {
	max-width: 1080px;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	position: relative;
}

/* PC */
/*@media all and (min-width: 960px)*/
/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
#maincontainer {
	padding-bottom: 60px;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
/*== Waku ==*/
header {
	width: 100%;
	max-height: 103px;
	margin: 0;
	padding: 0;
	top: 0;
	z-index: 5000;
}

header > .wrapper {
	height: 61px;
	-webkit-flex-direction: row; 
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

header #header-left {
	padding: 0;
	margin: 0;
	width: 28%; 
	max-width: 320px; 
	height: auto;
	float: left;
}

header #header-right {
	padding: 0;
	margin: 0;
	width: 70%; 
	max-width: 700px; 
	height: auto;
	float: right;
}

/*== logo ==*/
header .logo {
	padding: 0;
	margin: 9px 0 0 0;
	width: 298px; 
	height: auto;
}

header .logo h1 {
	width: 298px; 
	height: 40px;
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: middle;
}

header .logo a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 40px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_hriz_head@2x.png) 0 0 no-repeat;
	background-size: auto 40px;
}

/*== header-nav ==*/
header .header-nav {
	padding: 0;
	margin: 13px 0 0 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}

/*== Welcome ==*/
header .header-nav p {
	padding: 0;
	margin: 10px 8px 0 0;
	color: #6e6e6e;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.0;
	float: right;
}

header .header-nav p small {
	font-size: 10px;
}

header .header-nav p small strong {
	color: #048ddb;
	font-weight: 700;
}

/*== icon-navi ==*/
header .header-nav ul {
	padding: 0;
	margin: 0;
	float: right;
	overflow: hidden;
}

header .header-nav ul li {
	padding: 0;
	margin: 0 0 0 6px;
	display: inline;
	float: right;
}

header .header-nav ul li:last-child {
	margin-left: 0;
}

header .header-nav ul li a {
	padding: 9px 12px;
	margin: 0;
	border-radius: 4px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	font-size: 12px;
	line-height: 1.0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: block;
}

header .header-nav ul li a .fa-envelope, header .header-nav ul li a .fa-address-card, header .header-nav ul li a .fa-user-circle {
	padding: 0;
	margin: 0 5px 0 0;
	font-size: 14px;
	display: inline-block;
}

header .header-nav ul li a b {
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	display: inline-block;
}

header .header-nav ul li.hbtn_contact a {
	color: #fff;
	background-color: #1bb299;
	border: solid 1px #1bb299;
}

header .header-nav ul li.hbtn_entry a {
	color: #fff;
	background-color: #ee4499;
	border: solid 1px #ee4499;
}

header .header-nav ul li.hbtn_login a {
	color: #ee4499;
	background-color: #fff;
	border: solid 1px #f15aa5;
}

header .header-nav ul li a:hover {
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}


/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	width: 100%;
	background-color: #1b3b83;
	position: relative;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.main-title {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

.main-title h2 {
	padding: 0;
	margin: 0 auto;
	color: #2d2e2f;
	line-height: 1.0;
	text-align: center;
	display: block;
}

.main-title p {
	padding: 0;
	margin: 0 auto;
	color: #3d3e3f;
	display: block;
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	margin: 0 auto;
	height: auto;
	overflow: hidden;
	text-align: center;
}

#share .sns_box {
	padding: 0;
	margin: 0 auto;
	height: auto;
	text-decoration: none;	
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

footer #footer_comp {
	padding: 15px 0 20px 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #025347;
}

footer #footer_area {
	padding: 30px 0 30px 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
	background-color: #65b8aa;
}

footer #footer_btm {
	padding: 17px 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
	background-color: #bddcd7;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	padding: 0;
	margin: 0 auto;
	width: 140px;
}

footer #footer_comp .comp-info h2 {
	width: 140px; 
	height: 52px;
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: middle;
}

footer #footer_comp .comp-info a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 52px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_hriz_foot@2x.png) 0 0 no-repeat;
	background-size: auto 52px;
}

/*== Message ==*/
footer #footer_area .message {
	padding: 0;
	margin: 0 auto;
	max-width: 1080px;
	width: 98%;
}

footer #footer_area .message .message_box {
	padding: 0;
	margin: 0;
	width: 100%;
}

footer #footer_area .message .message_box p {
	padding: 0;
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}

/*== Button ==*/
footer #footer_area .waku_ask {
	padding: 20px 0 0 0;
	margin: 0 auto;
	max-width: 1080px;
	width: 98%;
}

footer #footer_area .waku_ask .btn_ask {
	text-align: center;
}

footer #footer_area .waku_ask .btn_ask a {
	color: #1bb299;
	font: 500 16px メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: .5em 2.5em;
	display: inline-block;
	position: relative;
	background-color: #fff;
	border: solid 2px #1bb299;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

footer #footer_area .waku_ask .btn_ask a:hover {
	color: #fff;
	background-color: #03937b;
	border: solid 2px #03937b;
	text-decoration: none;
}

footer #footer_area .waku_ask .btn_ask a .fa-envelope {
	color: #1bb299;
	margin-right: 10px;
}

footer #footer_area .waku_ask .btn_ask a:hover .fa-envelope {
	color: #fff;
}

/*== Navi ==*/
footer #footer-nav {
	width: 100%;
	padding-bottom: 20px;
	padding-top: 25px;
}

/*== SNS ==*/
footer #footer-nav .sns {
	margin-bottom: 30px;
	text-align: center;
	display: block;
	letter-spacing: 0;
}

footer #footer-nav .sns a .fa-facebook-square, 
footer #footer-nav .sns a .fa-twitter, 
footer #footer-nav .sns a .fa-instagram {
	display: inline-block;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: normal;
}

footer #footer-nav .sns a {
	color: rgba(255, 255, 255, 1);
	margin-right: 2em;
}

footer #footer-nav .sns a:hover {
	color: rgba(255, 255, 255, .75);
}

footer #footer-nav .sns a:last-child {
	margin-right: 0;
}

/*== ul ==*/
footer #footer-nav ul {
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
}

footer #footer-nav ul li {
	margin: 0;
	padding: 0 .7em 0 .3em;
	font-size: 13px;
	display: inline-block;
	border-right: 1px solid rgba(255, 255, 255, .85);
}

footer #footer-nav li:last-child {
	margin-right: 0;
	border-right-style: none;
}

footer #footer-nav li a {
	margin: 0;
	color: #fff;
	text-decoration: none;
}

footer #footer-nav li a:hover {
	color: #fff;
	text-decoration: underline;
}

/*== main ==*/
footer #footer-nav .main {
	margin-bottom: 2em;
}

footer #footer-nav .main li {
	padding: 0 1em 0 .6em;
	font-size: 15px;
}

/*== hr ==*/
footer #footer-nav hr {
	border-top-color: #e3e5e8;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	max-width: 1080px;
	width: 98%;
}

/*== Copyright ==*/
footer #footer_btm .copyright {
	padding: 0;
	margin: 0 auto;
	max-width: 1080px;
	width: 98%;
}

footer #footer_btm .copyright p { 
	padding: 0;
	margin: 0;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	color: #025347;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}


/*  PC  */
@media print, screen and (min-width: 960px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_tab {
	display: none;
	visibility: hidden;
}

.only_sp {
	display: none;
	visibility: hidden;
}

.only_tabsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.main-title {
	padding-bottom: 25px;
	width: 100%;
}

.main-title h2 {
	font-size: 28px;
	font-weight: 800;
}

.main-title p {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	padding: 60px 0 0 0;
	width: 98%;
	max-width: 1080px;
}

#share .sns_box {
	width: 70%;
}


}


/* Tablet */
@media all and (max-width: 959px) and (min-width: 650px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}

.only_sp {
	display: none;
	visibility: hidden;
}

.only_pcsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
}

.wrapper {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}

#maincontainer {
	padding: 0 0 40px;
	background-color: #fff;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	max-height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 5000;
}

header > .wrapper {
	display: none;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.main-title {
	padding-bottom: 21px;
	width: 100%;
}

.main-title h2 {
	font-size: 24px;
	font-weight: 800;
}

.main-title p {
	margin-top: 12px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	padding: 40px 0 0 0;
	width: 96%;
}

#share .sns_box {
	width: 70%;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer #footer_comp {
	padding: 12px 0 18px 0;
}

footer #footer_area {
	padding: 25px 0 25px 0;
}

footer #footer_btm {
	padding: 16px 0;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	width: 120px;
}

footer #footer_comp .comp-info h2 {
	width: 120px; 
	height: 45px;
}

footer #footer_comp .comp-info a {
	width: 100%;
	padding: 45px 0 0;
	background-size: auto 45px;
}

/*== Message ==*/
footer #footer_area .message {
	width: 94%;
}

footer #footer_area .message .message_box {
	padding: 0;
	margin: 0;
	width: 100%;
}

footer #footer_area .message .message_box p {
	font-size: 13px;
	text-align: center;
}

/*== Button ==*/
footer #footer_area .waku_ask {
	padding: 18px 0 0 0;
	margin: 0 auto;
	width: 98%;
}

footer #footer_area .waku_ask .btn_ask a {
	font-size: 15px;
	padding: .5em 2.2em;
}

footer #footer_area .waku_ask .btn_ask a .fa-envelope {
	margin-right: 8px;
}

/*== Navi ==*/
footer #footer-nav {
	width: 100%;
	padding-bottom: 15px;
}

/*== SNS ==*/
footer #footer-nav .sns {
	margin-bottom: 25px;
}

footer #footer-nav .sns a .fa-facebook-square, 
footer #footer-nav .sns a .fa-twitter, 
footer #footer-nav .sns a .fa-instagram {
	font-size: 22px;
}

/*== ul ==*/
footer #footer-nav ul {
	width: 100%;
	margin: 0 0 0;
	padding: 0;
}

footer #footer-nav ul li {
	margin: 0;
	padding: 0 .7em 0 .3em;
	font-size: 13px;
}

/*== main ==*/
footer #footer-nav .main {
	margin-bottom: 5px;
}

footer #footer-nav .main li {
	padding: 0 1em 0 .6em;
	margin-bottom: 10px;
	font-size: 14px;
}

/*== hr ==*/
footer #footer-nav hr {
	border-top-color: #e3e5e8;
	margin-top: 15px;
	margin-bottom: 15px;
}

/*== Copyright ==*/
footer #footer_btm .copyright {
	width: 96%;
}

footer #footer_btm .copyright p { 
	font-size: 13px;
}


}

/* SP */
@media all and (max-width: 649px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}

.only_tab {
	display: none;
	visibility: hidden;
}

.only_pctab {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
	background-color: #fff;
}

.wrapper {
	padding: 0 15px;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
#maincontainer {
	padding-bottom: 40px;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	max-height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 5000;
}

header > .wrapper {
	display: none;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.main-title {
	padding-bottom: 18px;
	width: 100%;
}

.main-title h2 {
	font-size: 19px;
	font-weight: 800;
}

.main-title p {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	padding: 20px 0 0 0;
	width: 94%;
}

#share .sns_box {
	width: 60%;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer {
	padding: 0;
	margin: 0;
	background: url(../images/bg_footer.png) 50% bottom no-repeat;
	background-size: 180% auto;
}

footer #footer_comp {
	padding: 10px 0 15px 0;
}

footer #footer_area {
	padding: 20px 0 20px 0;
}

footer #footer_btm {
	padding: 12px 0;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	width: 118px;
}

footer #footer_comp .comp-info h2 {
	width: 118px; 
	height: 44px;
}

footer #footer_comp .comp-info a {
	width: 100%;
	padding: 44px 0 0;
	background-size: auto 44px;
}

/*== Message ==*/
footer #footer_area .message {
	width: 94%;
}

footer #footer_area .message .message_box {
	padding: 0;
	margin: 0;
	width: 100%;
}

footer #footer_area .message .message_box p {
	font-size: 13px;
	text-align: center;
}

/*== Button ==*/
footer #footer_area .waku_ask {
	padding: 15px 0 0 0;
	margin: 0 auto;
	width: 98%;
}

footer #footer_area .waku_ask .btn_ask a {
	font-size: 15px;
	padding: .5em 2.2em;
}

footer #footer_area .waku_ask .btn_ask a .fa-envelope {
	margin-right: 6px;
}

/*== Navi ==*/
footer #footer-nav {
	width: 100%;
	padding-bottom: 10px;
}

/*== SNS ==*/
footer #footer-nav .sns {
	margin-bottom: 25px;
}

footer #footer-nav .sns a .fa-facebook-square, 
footer #footer-nav .sns a .fa-twitter, 
footer #footer-nav .sns a .fa-instagram {
	font-size: 27px;
}

/*== ul ==*/
footer #footer-nav ul {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	list-style-type: none;
	overflow: hidden;
}

footer #footer-nav ul li {
	padding: 0;
	margin: 0 4% 10px 4%;
	width: 42%;
	list-style-type: none;
	border-right: none;
	border-bottom: 2px dotted #dde3eb;
	text-align: left;
	display: inline;
	float: left;
	font-size: 12px;
}

footer #footer-nav ul li a {
	padding: 0 0 5px 0;
	margin: 0;
	width: 100%;
	text-decoration: none;
	border: 0;
	display: block;
	text-align: left;
}

footer #footer-nav ul li a {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

footer #footer-nav ul li a:hover {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
}

/*== main ==*/
footer #footer-nav .main {
	margin-bottom: 5px;
}

footer #footer-nav .main li {
	padding: 0;
	margin-bottom: 10px;
	font-size: 14px;
}

/*== hr ==*/
footer #footer-nav hr {
	border-top-color: #e3e5e8;
	width: 92%;
	margin: 15px auto;
}

/*== Copyright ==*/
footer #footer_btm .copyright {
	width: 96%;
}

footer #footer_btm .copyright p { 
	font-size: 13px;
}


}