@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("font-awesome/fontawesome.min.css");
@import url("font-awesome/brands.min.css");
@import url("font-awesome/solid.min.css");
@import url("font-awesome/svg-with-js.min.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: #048ddb;
	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: #22abf2;
	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-right: 10px;
	padding-left: 10px;
	position: relative;
}

/* PC */
/*@media all and (min-width: 960px)*/
/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
#maincontainer {
	padding-bottom: 60px;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
/*== Waku ==*/
header {
	width: 100%;
	max-height: 115px;
	margin: 0;
	padding: 0;
	/* background-color: rgba(255, 255, 255, .98);
	position: fixed; */
	top: 0;
	z-index: 5000;
}

header > .wrapper {
	height: 75px;
	-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: 45%; 
	max-width: 480px; 
	height: auto;
	float: left;
}

header #header-right {
	padding: 0;
	margin: 0;
	width: 50%; 
	max-width: 550px; 
	height: auto;
	float: right;
}

/*== P ==*/
header .moji_header {
	padding: 0;
	margin: 16px 0 0 0;
}

header .moji_header p {
	padding: 0;
	margin: 0;
	color: #6a6969;
	font-size: 11px;
	font-weight: normal;
	line-height: 1.0;
}

/*== logo ==*/
header .logo {
	padding: 0;
	margin: 12px 0 0 0;
	width: 328px; 
	height: auto;
}

header .logo h1 {
	width: 328px; 
	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-btn ==*/
header .header-btn {
	padding: 0;
	margin: 12px 0 0 0;
	width: 100%; 
	height: auto;
	overflow: hidden;
}

header .header-btn ul {
	padding: 0;
	margin: 0;
	width: 100%; 
	height: auto;
	list-style-type: none;
}

header .header-btn ul li {
	padding: 0;
	margin: 0;
	border-left: dotted 1px #333333;
	display: inline;
	float: right;
}

header .header-btn ul li:last-child {
	border-left: none;
}

header .header-btn ul li a {
	padding: 0 16px;
	margin: 0;
	display: block;
	color: #2e2e2e;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
}

header .header-btn ul li a:hover {
	color: #048ddb;
	text-decoration: underline;
}

/*== header-nav ==*/
header .header-nav {
	padding: 0;
	margin: 15px 0 0 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}

/*== Welcome ==*/
header .header-nav p {
	padding: 0;
	margin: 5px 4em 0 0;
	color: #6e6e6e;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.4;
	float: right;
}

header .header-nav p small {
	font-size: 12px;
}

header .header-nav p small strong {
	color: #048ddb;
	font-weight: bold;
}

/*== icon-navi ==*/
header .header-nav ul {
	padding: 0;
	margin: 0;
	float: right;
	overflow: hidden;
}

header .header-nav ul li {
	padding: 5px 0 0 0;
	margin: 0 0 0 2.4em;
	display: inline;
	float: right;
}

header .header-nav ul li:last-child {
	margin-left: 0;
}

header .header-nav ul li a {
	padding: 0;
	font-size: 24px;
	color: #6e6e6e;
	text-align: center;
	text-decoration: none;
	display: block;
}

header .header-nav ul li a i {
	-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;
}

header .header-nav ul li a:hover {
	color: #b4b4b4;
}

header .header-nav ul li a:hover i {
	color: #b4b4b4;
}

header .header-nav ul li a b {
	display: block;
	font-size: 9px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

header .header-nav ul li.btn-cart a {
	width: 34px;
	display: -webkit-box;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	position: relative;
}

header .header-nav ul li.btn-cart a b {
	display: block;
	position: absolute;
	font-size: 9px;
	font-weight: 500;
	margin: 29px 0 0 0;
	padding: 0;
}

header .header-nav ul li.btn-cart a span.fa-layers-counter {
	font: 600 1.8em/1 "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-weight: 500;
	margin: 0;
	right: 0;
	top: -2px;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	width: 100%;
	background-color: #06304b;
}

/*---------------------------------------------------- */
/* 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%;
}

footer #footer_comp {
	padding: 20px 0;
	margin: 0;
	width: 100%;
	background-color: #05273d;
}

footer #footer_area {
	padding: 30px 0 10px 0;
	margin: 0 auto;
	width: 100%;
	background-color: #0b3d5e;
}

footer #footer_btm {
	padding: 20px 0;
	margin: 0 auto;
	width: 100%;
	background-color: #eeeeee;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	padding: 0;
	margin: 0 auto;
	width: 254px;
}

footer #footer_comp .comp-info h2 {
	width: 254px; 
	height: 33px;
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: middle;
}

footer #footer_comp .comp-info a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 33px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_hriz_foot@2x.png) 0 0 no-repeat;
	background-size: auto 33px;
}

/*== 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;
}

/*== 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 0 18px;
	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 #3f6c8a;
}

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-top: 20px;
	margin-bottom: 20px;
}

/*== 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: #124e8a;
	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;
}

/*---------------------------------------------------- */
/* 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: 700px) {
/*---------------------------------------------------- */
/* 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);
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	padding: 40px 0 0 0;
	width: 96%;
}

#share .sns_box {
	width: 70%;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer #footer_comp {
	padding: 18px 0;
}

footer #footer_area {
	padding: 25px 0 15px 0;
}

footer #footer_btm {
	padding: 18px 0;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	width: 190px;
}

footer #footer_comp .comp-info h2 {
	width: 190px; 
	height: 25px;
}

footer #footer_comp .comp-info a {
	width: 100%;
	padding: 25px 0 0;
	background-size: auto 25px;
}

/*== 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;
}

/*== Navi ==*/
footer #footer-nav {
	width: 100%;
	padding-bottom: 15px;
	padding-top: 20px;
}

/*== 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 5px;
	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: 699px) {
/*---------------------------------------------------- */
/* 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;
}

/*---------------------------------------------------- */
/* SNS */
/*---------------------------------------------------- */	
#share {
	padding: 20px 0 0 0;
	width: 94%;
}

#share .sns_box {
	width: 60%;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer {
	padding: 0;
	margin: 0;
}

footer #footer_comp {
	padding: 15px 0;
}

footer #footer_area {
	padding: 20px 0 10px 0;
}

footer #footer_btm {
	padding: 12px 0;
}

/*== Comp ==*/
footer #footer_comp .comp-info {
	width: 190px;
}

footer #footer_comp .comp-info h2 {
	width: 190px; 
	height: 25px;
}

footer #footer_comp .comp-info a {
	width: 100%;
	padding: 25px 0 0;
	background-size: auto 25px;
}

/*== 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;
}

/*== Navi ==*/
footer #footer-nav {
	width: 100%;
	padding-bottom: 10px;
	padding-top: 20px;
}

/*== 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;
}


}