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

@import url("fonts.css");
@import url("font-awesome/fontawesome.min.css");
@import url("font-awesome/brands.min.css");
@import url("font-awesome/solid.min.css");
@import url(//use.fontawesome.com/releases/v5.8.2/css/all.css);
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700;800;900&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
html {
	font-size: 100%;
	/*min-height: 100%;*/
	margin: 0;
	padding: 0;
	position: relative; 
}

body { 
	color: #383a3b;
	font-family: メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	width: 100%;
	min-width: 300px;
	/*height: 100%;*/
	margin: 0;
	padding: 0;
	background-color: #fff;
}

p {
	line-height: 160%;
}

img {
	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: #0f79df;
	text-decoration: none;
	cursor: pointer;
	-webkit-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: #b52f00;
	text-decoration: underline;
}

/*
 * 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 */
/*---------------------------------------------------- */
address {
	font-weight: normal;
	font-style: normal;
}

hr { 
	display: block; 
	height: 1px; 
	border: 0; 
	border-top: 1px solid #e1e3e6; 
	margin: 20px 0; 
	padding: 0;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

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

/*---------------------------------------------------- */
/* Breadcrumbs */
/*---------------------------------------------------- */
.rcrumbs {
  font-size: 11px;
  white-space: nowrap;
  max-width: 1080px;
  margin: 50px auto 0;
  padding: 5px 10px;
	background-color: #f8f8f8;
	border: 1px solid #ebeced;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

.rcrumbs > ul {
  padding: 0;
  list-style: none;
}

.rcrumbs > ul > li {
  overflow: hidden;
  display: none;
}

.rcrumbs > ul > li.show {
  display: inline-block;
}

.rcrumbs > ul > li.ellipsis {
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}

.rcrumbs a {
  color: #83878b;
  text-decoration: none;
}

.rcrumbs a:hover {
  color: #cd5900;
}

.rcrumbs .divider {
  color: #bfc4c5;
  padding: 0 5px;
}

/*---------------------------------------------------- */
/* 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;
	z-index: 99;
}

#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.25s ease-in-out;
   -moz-transition: opacity 0.25s ease-in-out;
   -o-transition: opacity 0.25s ease-in-out;
   -ms-transition: opacity 0.25s ease-in-out;
   transition: opacity 0.25s 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.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}

/*---------------------------------------------------- */
/* Decoration */
/*---------------------------------------------------- */
.warning {
	padding: 8px 10px 6px;
	background-color: #fcf7ea;
	border: 1px solid #f9edd3;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

.link::after {
	content:"\f045";
	font: 90% "Font Awesome 5 Free";
	margin-left: .2em;
	margin-right: .1em;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden!important;
}

#maincontainer {
	width: 100%;
	margin: 0;
	padding: 0 0 30px;
	background-color: #fff;
	position: relative;
}

#mc-contents {
	padding-top: 100px;
}

#content-container {
	width: 100%;
}


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


}

/*  PC  */
/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 620px;
	position: relative;
	z-index: 99;
}

header .wrapper {
	padding: 0;
	margin: 0 auto;
	width: 96%;
	height: auto;
	overflow: hidden;
}

header .logo {
	padding: 0;
	margin: 0;
	margin-top: 80px;
	margin-left: 36%;
	width: 28%;
	max-width: 340px; 
	height: auto;
	float: left;
}

header .logo h1 {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}

header .logo h1 a {
	padding: 0;
	padding-top: 154.705882%;
	margin: 0;
	width: 100%;
	height: 0;
	display: block;
	overflow: hidden;
	background: url(../images/h1_logo.png) 0 0 no-repeat;
	background-size: 100% auto;
	font-size: 0;
}

header #header-nav {
	padding: 0;
	margin: 0;
	margin-top: 80px;
	width: 7%;
	max-width: 52px; 
	height: auto;
	float: right;
}

header .sub {
	width: 100%;
	height: auto;
	overflow: hidden;
}

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

header .sub ul li a {
	padding: 0;
	margin-bottom: 48px;
	color: #fff;
	font-size: 50px;
	font-weight: 900;
	text-decoration: none;
	display: inline-block;
}

header .sub ul li a h3 {
	display: none;
}

header .sub ul li.insta a:hover {
	color: #e5537c;
	text-decoration: none;
}

header .sub ul li.fb a:hover {
	color: #3b5998;
	text-decoration: none;
}

header .sub ul li:last-child {
	padding-right: 0;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.category-title {
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
	width: 100%;
	height: auto;
	position: relative;
}

.category-title:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 30%;
	height: 1px;
	content: '';
	background-color: #a1a1a1;
}

.category-title h2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	max-width: 1080px;
	height: auto;
	position: relative;
}

.category-title h2:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background-color: #fff;
}

.category-title h2 span {
	position: relative;
	padding: 0 0 0 1em;
	text-align: left;
	color: #202020;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.category-title3 {
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
	width: 100%;
	height: auto;
	position: relative;
}

.category-title3:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 30%;
	height: 1px;
	content: '';
	background-color: #a1a1a1;
}

.category-title3 h2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	max-width: 1080px;
	height: auto;
	position: relative;
}

.category-title3 h2:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background-color: #0f0f0f;
}

.category-title3 h2 span {
	position: relative;
	padding: 0 0 0 1em;
	text-align: left;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.category-title4 {
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
	width: 100%;
	height: auto;
	position: relative;
}

.category-title4:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 30%;
	height: 1px;
	content: '';
	background-color: #a1a1a1;
}

.category-title4 h2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	max-width: 1080px;
	height: auto;
	position: relative;
}

.category-title4 h2:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background-color: #efefef;
}

.category-title4 h2 span {
	position: relative;
	padding: 0 0 0 1em;
	text-align: left;
	color: #202020;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	font-weight: 700;
}

/*---------------------------------------------------- */
/* h3 */
/*---------------------------------------------------- */
.item-title {
	padding: 0;
	margin: 0;
	margin-bottom: 40px;
}

.item-title h3 {
	padding: 0;
	margin: 0;
	color: #202020;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.8;
	text-align: left;
}

.item-title2 {
	padding: 0;
	margin: 0;
	margin-bottom: 35px;
}

.item-title2 h3 {
	padding: 0;
	margin: 0;
	color: #202020;
	font-family: 'Poppins', sans-serif;
	font-size: 31px;
	font-weight: 800;
	line-height: 1.8;
	text-align: left;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
footer {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	/*bottom: 0;
	background-color: #fafbfc;
	-webkit-box-sizing: border-box;  
	-ms-box-sizing: border-box; 
	box-sizing: border-box;*/
}

footer a {
	color: #515457;
	text-decoration: none;
}

footer a:hover {
	color: #212223;
	text-decoration: none;
}

/*footer .contactclumn {
	width: 100%;
	margin: 0;
	padding: 40px 0;
	color: #fff;
	position: relative;
	background-color: #006baf;
}

footer .contactclumn .wrapper {
	display: table;
}

footer .contactclumn .wrapper > div {
	width : calc(1080px / 3) ;
	display: table-cell;
	vertical-align: middle;
}

footer .contactclumn a, footer .contactclumn a:hover {
	text-decoration: none;
}

footer .contactclumn .office-name {
	text-align: left;
}

footer .contactclumn .office-name h2 {
	width: 100%;
	margin: 0;
	padding: 0;
}

footer .contactclumn .office-name h2 a {
	width: 200px;
	height: 0;
	margin: 0;
	padding: 20px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_white@2x.png) 0 0 no-repeat;
	background-size: auto 20px;
}

footer .contactclumn .phone-info {
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
}

footer .contactclumn .phone-info h3 {
	font-size: 26px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
}

footer .contactclumn .phone-info i {
	margin-right: 7px;
	position: relative;
	top: 2px;
	-webkit-transform : rotate(90deg) ;
	-ms-transform : rotate(90deg) ;
	transform:rotate(90deg);
}

footer .contactclumn .address-info {
	margin: 0;
	position: relative;
}

footer .contactclumn .address-info p {
	font-size: 14px;
	line-height: 1.4;
	text-align: left;
	margin: auto 0;
	padding: 0;
	position: absolute;
	top: calc(-1em * 0.4);
	bottom: 0;
	right: 0;
}

footer .contactclumn .address-info p span {
	display: block;
	margin-bottom: .15em;
}*/

footer #footer-nav {
	width: 100%;
	margin-bottom: 20px;
	padding-top: 40px;
}

/*footer #footer-nav .contact {
	text-align: center;
	margin-bottom: 36px;
}

footer #footer-nav .contact a {
	color: #fff;
	font: 400 18px メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: .5em 1.5em;
	display: inline-block;
	position: relative;
	background-color: #006baf;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

footer #footer-nav .contact a:hover {
	background-color: #00a7d9;
}

footer #footer-nav .contact a i {
	margin-right: 7px;
}

footer #footer-nav ul {
	font-size: 0;
	text-align: center;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
}

footer #footer-nav ul li {
	font: 400 13px メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: 0 .8em;
	display: inline-block;
	position: relative;
}

footer #footer-nav ul li:after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #999da0;
	position: absolute;
	top: 0;
	right: 0;
}

footer #footer-nav li:last-child:after {
	background-color: transparent;
}

footer #footer-nav li a {
	margin: 0;
	position: relative;
}

footer #footer-nav li a:hover {
	text-decoration: none;
}

footer #footer-nav li a:after {
	content: "";
	width: 0;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 0px solid rgba(0, 166, 217, 0);
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

footer #footer-nav li a:hover:after {
	width: 100%;
	border-bottom: 2px solid rgba(0, 166, 217, 1);
}

footer #footer-nav .main {
	margin-bottom: 32px;
}

footer #footer-nav .main li {
	font-size: 16px;
	padding: 0 1.2em;
}*/

footer .copyright { 
	font: 10px 'Open Sans', 'Lucida Grande', Arial, sans-serif;
	color: #515457;
	text-align: center;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0;
}


/* width 2200px to 1100px */
@media all and (max-width: 1920px) and (min-width: 1720px) {
header .logo {
	margin-left: 40%;
	width: 28%;
	float: left;
}

}

@media all and (max-width: 1719px) and (min-width: 1520px) {
header .logo {
	margin-left: 39%;
	width: 28%;
	float: left;
}

}

@media all and (max-width: 1519px) and (min-width: 1320px) {
header .logo {
	margin-left: 38%;
	width: 28%;
	float: left;
}

}

@media all and (max-width: 1319px) and (min-width: 1120px) {
header .logo {
	margin-left: 37%;
	width: 28%;
	float: left;
}

}

@media all and (max-width: 1119px) and (min-width: 960px) {
header .logo {
	margin-left: 36%;
	width: 28%;
	float: left;
}

}

/* width 1100px to 960px */
@media all and (max-width: 1100px) and (min-width: 960px) {
.rcrumbs {
	margin-right: 10px;
	margin-left: 10px;
}

}


/* Minimum width 959px and Tablet */
@media all and (max-width: 959px) and (min-width: 600px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}

.only_sp {
	display: none;
	visibility: hidden;
}

.only_pcsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
}

.rcrumbs {
	margin-top: 40px;
	margin-right: 15px;
	margin-left: 15px;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}

#maincontainer {
	padding: 0 0 30px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 600px;
	z-index: 99;
}

header .wrapper {
	padding: 0;
	margin: 0 auto;
	width: 96%;
	height: 100%;
	overflow: hidden;
}

header .logo {
	margin-top: 100px;
	margin-left: 33%;
	width: 34%;
	max-width: 340px; 
	float: left;
}

header #header-nav {
	margin-top: 100px;
	width: 9%;
	max-width: 40px; 
	float: right;
}

header .sub {
	width: 100%;
	height: auto;
	overflow: hidden;
}

header .sub ul li a {
	margin-bottom: 35px;
	font-size: 40px;
	font-weight: 900;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.category-title {
	margin-bottom: 40px;
}

.category-title h2 {
	width: 96%;
}

.category-title h2 span {
	padding: 0 0 0 1em;
	font-size: 18px;
	font-weight: 700;
}

.category-title3 {
	margin-bottom: 40px;
}

.category-title3 h2 {
	width: 96%;
}

.category-title3 h2 span {
	padding: 0 0 0 1em;
	font-size: 18px;
	font-weight: 700;
}

.category-title4 {
	margin-bottom: 40px;
}

.category-title4 h2 {
	width: 96%;
}

.category-title4 h2 span {
	padding: 0 0 0 1em;
	font-size: 18px;
	font-weight: 700;
}

/*---------------------------------------------------- */
/* h3 */
/*---------------------------------------------------- */
.item-title {
	margin-bottom: 30px;
}

.item-title h3 {
	font-size: 23px;
	font-weight: 800;
	line-height: 1.7;
}

.item-title2 {
	margin-bottom: 23px;
}

.item-title2 h3 {
	font-size: 25px;
	font-weight: 800;
	line-height: 1.7;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
footer {
	height: auto;
	position: relative;
	bottom: 0;
	padding-bottom: 10px;
}

footer .contactclumn {
	padding: 26px 0;
}

footer .contactclumn .wrapper {
	display: block;
}

footer .contactclumn .wrapper > div {
	width : 100%;
	display: block;
}

footer .contactclumn .office-name {
	text-align: center;
}

footer .contactclumn .office-name h2 {
	margin: 0 0 20px;
}

footer .contactclumn .office-name h2 a {
	width: 200px;
	margin: 0 auto;
	padding: 20px 0 0;
	display: block;
	overflow: hidden;
	background-position: 50% 0;
	background-size: auto 20px;
}

footer .contactclumn .phone-info h3 {
	font-size: 22px;
}

footer .contactclumn .address-info {
	display: none!important;
	visibility: hidden;
}

footer .contactclumn .phone-info i {
	top: 0;
}



}


/* Phone */
/* Portrait and mode */
@media only screen and (max-width: 599px) {
/*---------------------------------------------------- */
/* 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;
}

.rcrumbs {
	margin-top: 30px;
	margin-right: 15px;
	margin-left: 15px;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: visible;
}

#maincontainer {
	padding: 0 0 40px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 420px;
	z-index: 99;
}

header .wrapper {
	padding: 0;
	margin: 0 auto;
	width: 94%;
	height: 100%;
	overflow: hidden;
}

header .logo {
	margin-top: 60px;
	margin-left: 21%;
	width: 56%;
	float: left;
}

header #header-nav {
	margin-top: 80px;
	width: 11%;
	max-width: 30px; 
	float: right;
}

header .sub {
	width: 100%;
	height: auto;
	overflow: hidden;
}

header .sub ul li a {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: 900;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
.category-title {
	margin-bottom: 15px;
}

.category-title h2 {
	width: 97%;
}

.category-title h2 span {
	padding: 0 0 0 1em;
	font-size: 17px;
	font-weight: 500;
}

.category-title3 {
	margin-bottom: 15px;
}

.category-title3 h2 {
	width: 97%;
}

.category-title3 h2 span {
	padding: 0 0 0 1em;
	font-size: 17px;
	font-weight: 500;
}

.category-title4 {
	margin-bottom: 15px;
}

.category-title4 h2 {
	width: 97%;
}

.category-title4 h2 span {
	padding: 0 0 0 1em;
	font-size: 17px;
	font-weight: 500;
}

/*---------------------------------------------------- */
/* h3 */
/*---------------------------------------------------- */
.item-title {
	margin-bottom: 15px;
}

.item-title h3 {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.6;
}

.item-title2 {
	margin-bottom: 12px;
}

.item-title2 h3 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.6;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
footer {
	height: auto;
	position: relative;
	bottom: 0;
	padding-bottom: 10px;
}

footer .contactclumn {
	padding: 24px 0;
}

footer .contactclumn .wrapper {
	display: block;
}

footer .contactclumn .wrapper > div {
	width : 100%;
	display: block;
}

footer .contactclumn .office-name {
	text-align: center;
}

footer .contactclumn .office-name h2 {
	margin: 0 0 15px;
}

footer .contactclumn .office-name h2 a {
	width: 180px;
	margin: 0 auto;
	padding: 18px 0 0;
	display: block;
	overflow: hidden;
	background-position: 50% 0;
	background-size: auto 18px;
}

footer .contactclumn .phone-info h3 {
	font-size: 20px;
}

footer .contactclumn .phone-info i {
	top: 0;
}

footer .contactclumn .address-info {
	display: none!important;
	visibility: hidden;
}

footer #footer-nav {
	width: 100%;
	margin-bottom: 20px;
	padding-top: 36px;
}

footer #footer-nav .contact {
	text-align: center;
	margin-bottom: 36px;
}

footer #footer-nav .contact a {
	font-size: 15px;
	padding: .6em 1.5em;
}

footer #footer-nav ul {
	font-size: 0;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
}

footer #footer-nav ul li {
	font-size: 12px;
	padding: 0 .8em;
	display: inline-block;
	position: relative;
}

footer #footer-nav ul:not(.main) li {
	margin: 0 0 1em;
}

footer #footer-nav li a {
	margin: 0;
	position: relative;
}

footer #footer-nav li a:hover {
	text-decoration: none;
}

footer #footer-nav .main {
	display: none;
}

footer #footer-nav .main li {
	font-size: 14px;
	padding: 0 1em;
}

footer .copyright {
	font-size: 10px;
}

}


@media only screen and (max-width: 320px) {
footer #footer-nav ul li {
	padding: 0 .7em;
}

footer #footer-nav .main li {
	padding: 0 .7em;
}

}