@charset "UTF-8";

@import url("fonts.css");
@import url("globalnavi.css");
@import url("globalnavi_customized.css");
@import url("font-awesome/fontawesome.min.css");
@import url("font-awesome/brands.min.css");
@import url("font-awesome/solid.min.css");

/* Base */

html {
	min-height: 100%;
	margin: 0;
	padding: 0;
	position: relative; 
}

body { 
	min-width: 300px;
	height: 100%;
	margin-bottom: 32em;
	padding: 0;
	background-color: #fff;
}

p {
	line-height: 160%;
}

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: #0f79df;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	-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: #c69c6d;
}

address {
	font-weight: normal;
	font-style: normal;
}

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


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


/* === primary styles / Author:IMUCO === */

/* For Mobile */
/*.mobile-only {
  display: none;
	visibility: hidden;
	overflow: hidden;
	font-size: 0;
	width: 0;
	height: 0;
}*/

/*　Breadcrumbs */
.rcrumbs {
  font-size: 11px;
  white-space: nowrap;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 5px 10px 3px;
	background-color: #f8f8f8;
	border: 1px solid #ebeced;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-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%;
	z-index: 3;
	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;
}

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

#maincontainer {
	width: 100%;
	margin: 0;
	padding: 100px 0 50px;
	position: relative;
}

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

#content-container {
	width: 100%;
}

.wrapper {
	max-width: 1080px;
	margin: 0 auto;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
}


/* ///  PC/Tablet  /// */
/* //== Main Contents Part ==// */
/* Header Part */
header {
	width: 100%;
	height: 100px;
	margin: 0 auto;
	padding: 0;
	z-index: 5000;
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: height 0.25s ease-in-out, background 0.25s ease-in-out;
	-ms-transition: height 0.25s ease-in-out, background 0.25s ease-in-out;
	transition: height 0.25s ease-in-out, background 0.25s ease-in-out;
}

header:hover {
	background-color: rgba(255, 255, 255, 1);
}

header .logo {
	width: 394px;
	height: 41px;
	margin: auto 0;
	padding: 0;
	position: absolute;
	top: 5px;
	bottom: 0;
	left: calc((100% - 1080px) / 2);
	-webkit-transition: height 0.25s ease-in-out;
	-ms-transition: height 0.25s ease-in-out;
	transition: height 0.25s ease-in-out;
	z-index: 1000;
}

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

header .logo h1 a, header:hover .logo h1 a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 41px 0 0;
	display: block;
	overflow: hidden;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20394%2041%22%3E%3Cpath%20d%3D%22M378.7%2010.6a18.82%2018.82%200%200%200%202.91%201.51l3.33%201.4c1.13.48%202.24%201%203.33%201.54a13.4%2013.4%200%200%201%202.91%202%209%209%200%200%201%202.05%202.67%208%208%200%200%201%20.77%203.63%208.38%208.38%200%200%201-.84%203.88%207.64%207.64%200%200%201-2.26%202.68%209.5%209.5%200%200%201-3.3%201.56%2015.45%2015.45%200%200%201-4%20.51%2013.8%2013.8%200%200%201-2.43-.22c-.84-.14-1.64-.3-2.42-.47l-2.12-.48a7.41%207.41%200%200%200-1.51-.21%202.92%202.92%200%200%200-1%20.16l-1%20.35c-.28-1.74-.6-3.44-1-5.1s-.76-3.36-1.16-5.1l.61-.32a32%2032%200%200%200%202%203.34%2019.89%2019.89%200%200%200%202.68%203.17%2014.7%2014.7%200%200%200%203.28%202.4%208.15%208.15%200%200%200%203.89%201%2011.23%2011.23%200%200%200%202.61-.3%206.58%206.58%200%200%200%202.21-.93%204.73%204.73%200%200%200%201.52-1.68%205.3%205.3%200%200%200%20.56-2.54%205.06%205.06%200%200%200-1.35-3.6%2012.69%2012.69%200%200%200-3.36-2.52%2038.18%2038.18%200%200%200-4.35-2A33.17%2033.17%200%200%201%20377%2014.8a13%2013%200%200%201-3.35-2.71%205.8%205.8%200%200%201-1.35-3.94%207.45%207.45%200%200%201%20.7-3.26%207.63%207.63%200%200%201%201.88-2.5%208.6%208.6%200%200%201%202.7-1.58%2010.11%2010.11%200%200%201%203.33-.55%2019.31%2019.31%200%200%201%203.1.23c.91.16%201.81.32%202.68.51l2.65.53a15.43%2015.43%200%200%200%202.8.25c0%201.38%200%202.72.07%204s.14%202.61.3%203.92h-.65a17.9%2017.9%200%200%200-1.56-2.91%2013.14%2013.14%200%200%200-2.22-2.58%2010.87%2010.87%200%200%200-2.79-1.81%208.06%208.06%200%200%200-3.35-.69%208.69%208.69%200%200%200-4.36%201%203.62%203.62%200%200%200-1.7%203.44%204.3%204.3%200%200%200%20.77%202.55%207.41%207.41%200%200%200%202.05%201.9zm-16%2018.82a14.7%2014.7%200%200%201-4.05%201.89%2017.87%2017.87%200%200%201-4.94.64%2015.26%2015.26%200%200%201-10.81-4.43%2015.62%2015.62%200%200%201-3.33-5%2016.3%2016.3%200%200%201-1.23-6.4%2016.31%2016.31%200%200%201%201.23-6.41%2015.73%2015.73%200%200%201%203.33-5A15.26%2015.26%200%200%201%20353.75.26a23%2023%200%200%201%203.25.21c1%20.14%202%20.28%202.87.44l2.65.45a17.16%2017.16%200%200%200%202.54.28c0%20.64%200%201.39.07%202.25s.12%201.74.21%202.64.19%201.79.28%202.66.19%201.63.28%202.28h-.65a17.59%2017.59%200%200%200-1.61-3.81%2013.1%2013.1%200%200%200-2.37-3%2010.12%2010.12%200%200%200-3.17-2%2010.76%2010.76%200%200%200-4-.71A9.93%209.93%200%200%200%20349.14%203a9.41%209.41%200%200%200-3.29%203%2013.06%2013.06%200%200%200-1.85%204.37%2022.66%2022.66%200%200%200-.58%205.23%2018.57%2018.57%200%200%200%20.74%205.26%2013.11%2013.11%200%200%200%202.22%204.38%2010.72%2010.72%200%200%200%203.68%203%2011.07%2011.07%200%200%200%205.1%201.13%2012.84%2012.84%200%200%200%207.47-2.16%2020.73%2020.73%200%200%200%205.57-5.88l1.16.92a40.06%2040.06%200%200%201-3.16%204.13%2017.45%2017.45%200%200%201-3.46%203.04zM330.92%2031h-3.4c-1.12%200-2.24.07-3.35.13v-.55a9.63%209.63%200%200%200%202.6-.5A2.93%202.93%200%200%200%20328.2%2029a4.73%204.73%200%200%200%20.6-2c.08-.85.12-1.91.12-3.2V8.44c0-1.29%200-2.35-.12-3.2a4.73%204.73%200%200%200-.6-2%202.91%202.91%200%200%200-1.47-1.15%2010.32%2010.32%200%200%200-2.66-.5V1c1.31.06%202.57.1%203.8.13s2.49.05%203.8.05c1%200%202%200%203.07-.05s2-.07%203-.13v.55a9.62%209.62%200%200%200-2.57.5%202.75%202.75%200%200%200-1.39%201.15%204.74%204.74%200%200%200-.58%202c-.08.85-.12%201.91-.12%203.2v15.37c0%201.29%200%202.35.12%203.2a4.47%204.47%200%200%200%20.6%202%202.91%202.91%200%200%200%201.47%201.15%2010.41%2010.41%200%200%200%202.7.5v.55a139.527%20139.527%200%200%200-7.05-.17zM317%207.24v24.34h-1.72q-2.56-3.94-5.43-7.67t-5.69-7.07c-1.87-2.23-3.69-4.31-5.45-6.22S295.38%207%20294%205.5c0%20.79-.06%201.57-.07%202.34s0%201.55%200%202.34v8q0%204.08.16%206.45a9.71%209.71%200%200%200%20.79%203.63A3.26%203.26%200%200%200%20296.7%2030a15.53%2015.53%200%200%200%203.43.66v.55c-1.59-.06-3.12-.1-4.61-.13s-3%200-4.62%200h-2.65c-.87%200-1.76.07-2.66.13v-.55c1.06-.15%202-.3%202.77-.43a5.43%205.43%200%200%200%202-.69%203%203%200%200%200%201.16-1.38%206.69%206.69%200%200%200%20.45-2.5l.56-21.08a12.35%2012.35%200%200%200-3.26-1.88%2028.5%2028.5%200%200%200-3.64-1.15V1c1.09.06%202.12.1%203.1.13s2.12.05%203.42.05c.69%200%201.35%200%202-.05s1.32-.07%202-.13c.4.55%201.07%201.38%202%202.5l3.19%203.83%203.85%204.6q2%202.43%204%204.75c1.27%201.55%202.44%203%203.51%204.32s1.92%202.42%202.54%203.28h.1v-2.73-8.06c0-2-.07-3.67-.21-5.12a12.28%2012.28%200%200%200-.84-3.65%205%205%200%200%200-1.77-2.25%206%206%200%200%200-3-.92V1c1.09.06%202.18.1%203.28.13s2.2.05%203.29.05%202%200%203-.05%202-.07%203-.13v.55c-2%20.24-3.3.8-4%201.67A6.2%206.2%200%200%200%20317%207.24zM276.5%2031h-3.87l-1.42.07-1.47.09v-.55a8.68%208.68%200%200%200%203.29-1%202.31%202.31%200%200%200%201.33-2.05%201.77%201.77%200%200%200-.17-.73%205.37%205.37%200%200%201-.25-.69l-3-8.45h-9.74L258.13%2026c-.09.25-.18.46-.26.64a1.73%201.73%200%200%200-.11.6%202.18%202.18%200%200%200%20.48%201.42%204.22%204.22%200%200%200%201.19%201%207.36%207.36%200%200%200%201.45.62%2010.6%2010.6%200%200%200%201.26.32v.55c-.94-.06-1.87-.1-2.8-.13s-1.88%200-2.84%200h-2.73c-.89%200-1.82.07-2.81.13v-.55a6.25%206.25%200%200%200%204-2.57%2010.68%2010.68%200%200%200%201.14-2c.33-.73.65-1.5%201-2.3l8.06-19.51c.09-.22.18-.42.25-.6a1.25%201.25%200%200%200%20.12-.5%202.48%202.48%200%200%200-.16-.69%204%204%200%200%200-.4-.83A10.14%2010.14%200%200%200%20267%201l2-.74%209.69%2026.27a6.83%206.83%200%200%200%201.82%202.82%206.15%206.15%200%200%200%203.44%201.31v.55c-1.24-.06-2.46-.1-3.65-.13s-2.5-.08-3.8-.08zM266.2%204.72l-4.56%2011.66h8.76zm-14.86%2014.42a3.9%203.9%200%200%200-1.42.59%202.89%202.89%200%200%200-.93%201.13%204.14%204.14%200%200%200-.35%201.81v6.43q-3.21%201.06-6.36%201.95a22%2022%200%200%201-6.08.9%2018.49%2018.49%200%200%201-6.1-1%2016.06%2016.06%200%200%201-5.33-3.05%2015.08%2015.08%200%200%201-3.78-5%2015.52%2015.52%200%200%201-1.42-6.79A14.2%2014.2%200%200%201%20221%209.84a16.25%2016.25%200%200%201%203.78-5%2018.14%2018.14%200%200%201%205.33-3.33A16%2016%200%200%201%20236.2.26c1.28%200%202.43.06%203.45.16s2%20.25%202.8.42%201.59.34%202.28.52%201.33.36%202%20.51q0%20.73.12%201.95c.08.81.18%201.65.3%202.53s.25%201.71.38%202.52.23%201.47.32%202h-.56c-.59-1.16-1.22-2.29-1.88-3.39a14.71%2014.71%200%200%200-2.31-2.94%2010.44%2010.44%200%200%200-3-2.07%209.5%209.5%200%200%200-4-.78%208.73%208.73%200%200%200-4.72%201.29%2011.88%2011.88%200%200%200-3.54%203.35%2015.6%2015.6%200%200%200-2.24%204.64%2017.89%2017.89%200%200%200-.77%205.14%2019.32%2019.32%200%200%200%20.77%205.49%2013.77%2013.77%200%200%200%202.24%204.52%2011.11%2011.11%200%200%200%203.54%203.08%209.62%209.62%200%200%200%204.72%201.15%2022%2022%200%200%200%204.38-.44%2010.35%2010.35%200%200%200%204-1.77v-5.97q0-3.12-4.8-3.26v-.55c1.18%200%202.27.06%203.26.11s2.11.07%203.35.07%202.3%200%203.45-.05%202.3-.07%203.45-.13v.55a10.16%2010.16%200%200%200-1.85.23zm-37.6%204.69a30.51%2030.51%200%200%200%203.58%205.07%207.65%207.65%200%200%200%204.36%201.93v.51h-7.64a60.2%2060.2%200%200%201-4.65-6.82q-2.91-4.72-4.56-6a5.75%205.75%200%200%200-3.65-1.3h-4.58l.08%208.5a5.84%205.84%200%200%200%20.9%203.7c.93%201.19%202.76%201.25%204%201.41v.55s-4.34-.19-6.74-.19-7.24.19-7.24.19v-.57c2.13-.15%203.28-.63%203.81-1.31.76-.94.89-1.86%201-3.8l.18-19.51a7%207%200%200%200-.7-3.74%203.11%203.11%200%200%200-2.75-1V.72h14.6A11.39%2011.39%200%200%201%20211.12%203a7.11%207.11%200%200%201%202.76%205.75q0%205.64-6.28%207.51a13%2013%200%200%201%202.69%202.44%2040.64%2040.64%200%200%201%203.45%205.13zm-6-9.89a6.93%206.93%200%200%200%201.91-5.11%206.41%206.41%200%200%200-2.12-5A7.93%207.93%200%200%200%20201.91%202h-5.31v13.75h5.85a7%207%200%200%200%205.26-1.81zm-25.96%2013.81a16.11%2016.11%200%200%201-5.47%203.12%2021.23%2021.23%200%200%201-13.37%200%2016.2%2016.2%200%200%201-5.47-3.12%2015%2015%200%200%201-3.71-5%2015.59%2015.59%200%200%201-1.37-6.65%2015.64%2015.64%200%200%201%201.37-6.66%2015%2015%200%200%201%203.71-5%2016.2%2016.2%200%200%201%205.47-3.12%2021.23%2021.23%200%200%201%2013.37%200%2016.11%2016.11%200%200%201%205.47%203.12%2015%2015%200%200%201%203.71%205%2015.64%2015.64%200%200%201%201.37%206.66%2015.59%2015.59%200%200%201-1.37%206.65%2015%2015%200%200%201-3.71%205zm-.69-17a14%2014%200%200%200-2.43-4.52%2011.86%2011.86%200%200%200-3.86-3.12%2012%2012%200%200%200-10.34%200%2011.9%2011.9%200%200%200-3.87%203.12%2013.93%2013.93%200%200%200-2.42%204.52%2017.62%2017.62%200%200%200%200%2010.75%2013.93%2013.93%200%200%200%202.42%204.5%2011.9%2011.9%200%200%200%203.87%203.12%2011.92%2011.92%200%200%200%2010.34%200%2011.86%2011.86%200%200%200%203.86-3.12%2014%2014%200%200%200%202.43-4.52%2017.82%2017.82%200%200%200%200-10.75zM130.6%2039a10.76%2010.76%200%200%201-3.28%201.65%2011.81%2011.81%200%200%201-6.61-.18%2014.34%2014.34%200%200%201-3.26-1.33c-.93-.53-1.82-1-3-1.66s-1.92-1.08-2.92-1.58a29.61%2029.61%200%200%200-3.18-1.33%208.26%208.26%200%200%200-3.23-.47%208.92%208.92%200%200%200-2.37.44%209.21%209.21%200%200%200-2.1%201.06%2014.12%2014.12%200%200%201%202.35-1.86%207.76%207.76%200%200%201%203.71-.9%2018.46%2018.46%200%200%201%205.2.77c1.75.51%203.45%201.06%205.11%201.67s3.28%201.15%204.83%201.65a15%2015%200%200%200%204.4.8%2012%2012%200%200%200%202.8-.28%209%209%200%200%200%202.18-.87%208%208%200%200%200%201.84-1.39%209.27%209.27%200%200%200%201.62-2.26%2016.83%2016.83%200%200%201-1.77%203.58A10.09%2010.09%200%200%201%20130.6%2039zm-3.5-11.11a16.3%2016.3%200%200%201-5.53%203.11%2021.51%2021.51%200%200%201-13.52%200%2016.3%2016.3%200%200%201-5.53-3.16%2015.25%2015.25%200%200%201-3.75-5%2015.78%2015.78%200%200%201-1.39-6.73%2015.78%2015.78%200%200%201%201.39-6.73%2015.15%2015.15%200%200%201%203.75-5%2016.3%2016.3%200%200%201%205.53-3.16%2021.51%2021.51%200%200%201%2013.52%200%2016.3%2016.3%200%200%201%205.53%203.16%2015.15%2015.15%200%200%201%203.75%205%2015.78%2015.78%200%200%201%201.39%206.73%2015.78%2015.78%200%200%201-1.39%206.73%2015.25%2015.25%200%200%201-3.75%205.01zm-.7-17.2a14.38%2014.38%200%200%200-2.4-4.62%2012.17%2012.17%200%200%200-4-3.16%2012.18%2012.18%200%200%200-10.46%200%2012.17%2012.17%200%200%200-3.91%203.16%2014.38%2014.38%200%200%200-2.45%204.58%2018%2018%200%200%200%200%2010.86%2014.33%2014.33%200%200%200%202.45%204.57%2012%2012%200%200%200%203.91%203.16%2012.09%2012.09%200%200%200%2010.46%200%2012%2012%200%200%200%204-3.16%2014.33%2014.33%200%200%200%202.45-4.57%2018%2018%200%200%200%200-10.86zm-34.76-5A6.52%206.52%200%200%200%2089.5%203.3a6.85%206.85%200%200%200-2.94-.95%2039.13%2039.13%200%200%200-4.27-.19V23.8q0%202%20.12%203.24a4.74%204.74%200%200%200%20.59%202.08%202.93%202.93%200%200%200%201.49%201.16%2010.21%2010.21%200%200%200%202.73.51v.56c-1.19-.06-2.39-.11-3.58-.14s-2.39%200-3.58%200h-3.44c-1.13%200-2.26.08-3.39.14v-.56a9.46%209.46%200%200%200%202.64-.51%202.86%202.86%200%200%200%201.43-1.16%204.73%204.73%200%200%200%20.64-2.12q.12-1.27.12-3.24V2.16a37%2037%200%200%200-4.17.19A6.77%206.77%200%200%200%2071%203.3a6.52%206.52%200%200%200-2.14%202.36A23.36%2023.36%200%200%200%2067%2010l-.61-.18.69-9.15C68.4.73%2069.7.78%2071%20.81s2.59%200%203.91%200h14.81c1.23%200%202.43-.08%203.69-.14l.66%209.14-.61.18a22.7%2022.7%200%200%200-1.82-4.33zM61.31%2023.87A30.73%2030.73%200%200%200%2064.89%2029a7.69%207.69%200%200%200%204.36%201.92v.51h-7.64a60.2%2060.2%200%200%201-4.61-6.9q-2.91-4.73-4.56-6a5.7%205.7%200%200%200-3.65-1.31h-4.62l.08%208.5a5.84%205.84%200%200%200%20.9%203.7c.93%201.19%202.76%201.25%204%201.41v.55s-4.34-.19-6.74-.19-7.24.19-7.24.19v-.56c2.13-.16%203.28-.64%203.81-1.32.76-.94.89-1.86%201-3.8l.18-19.51a7%207%200%200%200-.7-3.74%203.11%203.11%200%200%200-2.75-1V.76h14.6A11.39%2011.39%200%200%201%2058.69%203a7.11%207.11%200%200%201%202.76%205.75q0%205.64-6.28%207.52a12.2%2012.2%200%200%201%202.69%202.43%2040.64%2040.64%200%200%201%203.45%205.17zm-6-9.89a6.93%206.93%200%200%200%201.91-5.11%206.45%206.45%200%200%200-2.11-5%208%208%200%200%200-5.6-1.8h-5.34v13.72H50A7%207%200%200%200%2055.28%2014zM25.86%2031.17h-3.91l-1.44.07-1.51.11v-.55a8.83%208.83%200%200%200%203.32-1%202.32%202.32%200%200%200%201.34-2.07%202.52%202.52%200%200%200-.16-.74c-.08-.24-.15-.4-.26-.7l-3.04-8.54h-9.84l-3.11%208.4c-.09.25-.18.47-.26.65a1.74%201.74%200%200%200-.11.61%202.22%202.22%200%200%200%20.49%201.44%204.13%204.13%200%200%200%201.2%201%206.93%206.93%200%200%200%201.46.63%2010.05%2010.05%200%200%200%201.27.33v.55c-.94-.06-1.88-.1-2.82-.14s-1.9%200-2.87%200H2.85c-.89%200-1.85.07-2.85.13v-.55a6.92%206.92%200%200%200%202.43-1%206.66%206.66%200%200%200%201.62-1.6%2011%2011%200%200%200%201.15-2.05c.33-.74.66-1.51%201-2.32L14.32%204.1l.26-.61a1.42%201.42%200%200%200%20.11-.49%202.28%202.28%200%200%200-.16-.69%204.08%204.08%200%200%200-.4-.84A12.38%2012.38%200%200%200%2017.91%200l9.83%2026.62a6.8%206.8%200%200%200%201.83%202.85%206.33%206.33%200%200%200%203.49%201.33v.55c-1.26-.06-2.49-.1-3.7-.14s-2.18-.04-3.5-.04zM15.45%204.56l-4.62%2011.8h8.86z%22%20fill%3D%22%232d2d2e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: auto 41px;
}
	

/* //== Global Navigation Part ==// */
#globalnav {
	//width: calc(100% - 400px);
	width: 100%;
	height: 41px;
	background-color: rgba(255, 255, 255, 0);
	position: absolute;
	margin: auto 0;
	top: -5px;
	bottom: 0;
}

/* Header Resize */
header.smaller {
	background-color: rgba(255, 255, 255, 1);
}

header.smaller .logo a, header.smaller:hover .logo a {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20394%2041%22%3E%3Cpath%20d%3D%22M378.7%2010.6a18.82%2018.82%200%200%200%202.91%201.51l3.33%201.4c1.13.48%202.24%201%203.33%201.54a13.4%2013.4%200%200%201%202.91%202%209%209%200%200%201%202.05%202.67%208%208%200%200%201%20.77%203.63%208.38%208.38%200%200%201-.84%203.88%207.64%207.64%200%200%201-2.26%202.68%209.5%209.5%200%200%201-3.3%201.56%2015.45%2015.45%200%200%201-4%20.51%2013.8%2013.8%200%200%201-2.43-.22c-.84-.14-1.64-.3-2.42-.47l-2.12-.48a7.41%207.41%200%200%200-1.51-.21%202.92%202.92%200%200%200-1%20.16l-1%20.35c-.28-1.74-.6-3.44-1-5.1s-.76-3.36-1.16-5.1l.61-.32a32%2032%200%200%200%202%203.34%2019.89%2019.89%200%200%200%202.68%203.17%2014.7%2014.7%200%200%200%203.28%202.4%208.15%208.15%200%200%200%203.89%201%2011.23%2011.23%200%200%200%202.61-.3%206.58%206.58%200%200%200%202.21-.93%204.73%204.73%200%200%200%201.52-1.68%205.3%205.3%200%200%200%20.56-2.54%205.06%205.06%200%200%200-1.35-3.6%2012.69%2012.69%200%200%200-3.36-2.52%2038.18%2038.18%200%200%200-4.35-2A33.17%2033.17%200%200%201%20377%2014.8a13%2013%200%200%201-3.35-2.71%205.8%205.8%200%200%201-1.35-3.94%207.45%207.45%200%200%201%20.7-3.26%207.63%207.63%200%200%201%201.88-2.5%208.6%208.6%200%200%201%202.7-1.58%2010.11%2010.11%200%200%201%203.33-.55%2019.31%2019.31%200%200%201%203.1.23c.91.16%201.81.32%202.68.51l2.65.53a15.43%2015.43%200%200%200%202.8.25c0%201.38%200%202.72.07%204s.14%202.61.3%203.92h-.65a17.9%2017.9%200%200%200-1.56-2.91%2013.14%2013.14%200%200%200-2.22-2.58%2010.87%2010.87%200%200%200-2.79-1.81%208.06%208.06%200%200%200-3.35-.69%208.69%208.69%200%200%200-4.36%201%203.62%203.62%200%200%200-1.7%203.44%204.3%204.3%200%200%200%20.77%202.55%207.41%207.41%200%200%200%202.05%201.9zm-16%2018.82a14.7%2014.7%200%200%201-4.05%201.89%2017.87%2017.87%200%200%201-4.94.64%2015.26%2015.26%200%200%201-10.81-4.43%2015.62%2015.62%200%200%201-3.33-5%2016.3%2016.3%200%200%201-1.23-6.4%2016.31%2016.31%200%200%201%201.23-6.41%2015.73%2015.73%200%200%201%203.33-5A15.26%2015.26%200%200%201%20353.75.26a23%2023%200%200%201%203.25.21c1%20.14%202%20.28%202.87.44l2.65.45a17.16%2017.16%200%200%200%202.54.28c0%20.64%200%201.39.07%202.25s.12%201.74.21%202.64.19%201.79.28%202.66.19%201.63.28%202.28h-.65a17.59%2017.59%200%200%200-1.61-3.81%2013.1%2013.1%200%200%200-2.37-3%2010.12%2010.12%200%200%200-3.17-2%2010.76%2010.76%200%200%200-4-.71A9.93%209.93%200%200%200%20349.14%203a9.41%209.41%200%200%200-3.29%203%2013.06%2013.06%200%200%200-1.85%204.37%2022.66%2022.66%200%200%200-.58%205.23%2018.57%2018.57%200%200%200%20.74%205.26%2013.11%2013.11%200%200%200%202.22%204.38%2010.72%2010.72%200%200%200%203.68%203%2011.07%2011.07%200%200%200%205.1%201.13%2012.84%2012.84%200%200%200%207.47-2.16%2020.73%2020.73%200%200%200%205.57-5.88l1.16.92a40.06%2040.06%200%200%201-3.16%204.13%2017.45%2017.45%200%200%201-3.46%203.04zM330.92%2031h-3.4c-1.12%200-2.24.07-3.35.13v-.55a9.63%209.63%200%200%200%202.6-.5A2.93%202.93%200%200%200%20328.2%2029a4.73%204.73%200%200%200%20.6-2c.08-.85.12-1.91.12-3.2V8.44c0-1.29%200-2.35-.12-3.2a4.73%204.73%200%200%200-.6-2%202.91%202.91%200%200%200-1.47-1.15%2010.32%2010.32%200%200%200-2.66-.5V1c1.31.06%202.57.1%203.8.13s2.49.05%203.8.05c1%200%202%200%203.07-.05s2-.07%203-.13v.55a9.62%209.62%200%200%200-2.57.5%202.75%202.75%200%200%200-1.39%201.15%204.74%204.74%200%200%200-.58%202c-.08.85-.12%201.91-.12%203.2v15.37c0%201.29%200%202.35.12%203.2a4.47%204.47%200%200%200%20.6%202%202.91%202.91%200%200%200%201.47%201.15%2010.41%2010.41%200%200%200%202.7.5v.55a139.527%20139.527%200%200%200-7.05-.17zM317%207.24v24.34h-1.72q-2.56-3.94-5.43-7.67t-5.69-7.07c-1.87-2.23-3.69-4.31-5.45-6.22S295.38%207%20294%205.5c0%20.79-.06%201.57-.07%202.34s0%201.55%200%202.34v8q0%204.08.16%206.45a9.71%209.71%200%200%200%20.79%203.63A3.26%203.26%200%200%200%20296.7%2030a15.53%2015.53%200%200%200%203.43.66v.55c-1.59-.06-3.12-.1-4.61-.13s-3%200-4.62%200h-2.65c-.87%200-1.76.07-2.66.13v-.55c1.06-.15%202-.3%202.77-.43a5.43%205.43%200%200%200%202-.69%203%203%200%200%200%201.16-1.38%206.69%206.69%200%200%200%20.45-2.5l.56-21.08a12.35%2012.35%200%200%200-3.26-1.88%2028.5%2028.5%200%200%200-3.64-1.15V1c1.09.06%202.12.1%203.1.13s2.12.05%203.42.05c.69%200%201.35%200%202-.05s1.32-.07%202-.13c.4.55%201.07%201.38%202%202.5l3.19%203.83%203.85%204.6q2%202.43%204%204.75c1.27%201.55%202.44%203%203.51%204.32s1.92%202.42%202.54%203.28h.1v-2.73-8.06c0-2-.07-3.67-.21-5.12a12.28%2012.28%200%200%200-.84-3.65%205%205%200%200%200-1.77-2.25%206%206%200%200%200-3-.92V1c1.09.06%202.18.1%203.28.13s2.2.05%203.29.05%202%200%203-.05%202-.07%203-.13v.55c-2%20.24-3.3.8-4%201.67A6.2%206.2%200%200%200%20317%207.24zM276.5%2031h-3.87l-1.42.07-1.47.09v-.55a8.68%208.68%200%200%200%203.29-1%202.31%202.31%200%200%200%201.33-2.05%201.77%201.77%200%200%200-.17-.73%205.37%205.37%200%200%201-.25-.69l-3-8.45h-9.74L258.13%2026c-.09.25-.18.46-.26.64a1.73%201.73%200%200%200-.11.6%202.18%202.18%200%200%200%20.48%201.42%204.22%204.22%200%200%200%201.19%201%207.36%207.36%200%200%200%201.45.62%2010.6%2010.6%200%200%200%201.26.32v.55c-.94-.06-1.87-.1-2.8-.13s-1.88%200-2.84%200h-2.73c-.89%200-1.82.07-2.81.13v-.55a6.25%206.25%200%200%200%204-2.57%2010.68%2010.68%200%200%200%201.14-2c.33-.73.65-1.5%201-2.3l8.06-19.51c.09-.22.18-.42.25-.6a1.25%201.25%200%200%200%20.12-.5%202.48%202.48%200%200%200-.16-.69%204%204%200%200%200-.4-.83A10.14%2010.14%200%200%200%20267%201l2-.74%209.69%2026.27a6.83%206.83%200%200%200%201.82%202.82%206.15%206.15%200%200%200%203.44%201.31v.55c-1.24-.06-2.46-.1-3.65-.13s-2.5-.08-3.8-.08zM266.2%204.72l-4.56%2011.66h8.76zm-14.86%2014.42a3.9%203.9%200%200%200-1.42.59%202.89%202.89%200%200%200-.93%201.13%204.14%204.14%200%200%200-.35%201.81v6.43q-3.21%201.06-6.36%201.95a22%2022%200%200%201-6.08.9%2018.49%2018.49%200%200%201-6.1-1%2016.06%2016.06%200%200%201-5.33-3.05%2015.08%2015.08%200%200%201-3.78-5%2015.52%2015.52%200%200%201-1.42-6.79A14.2%2014.2%200%200%201%20221%209.84a16.25%2016.25%200%200%201%203.78-5%2018.14%2018.14%200%200%201%205.33-3.33A16%2016%200%200%201%20236.2.26c1.28%200%202.43.06%203.45.16s2%20.25%202.8.42%201.59.34%202.28.52%201.33.36%202%20.51q0%20.73.12%201.95c.08.81.18%201.65.3%202.53s.25%201.71.38%202.52.23%201.47.32%202h-.56c-.59-1.16-1.22-2.29-1.88-3.39a14.71%2014.71%200%200%200-2.31-2.94%2010.44%2010.44%200%200%200-3-2.07%209.5%209.5%200%200%200-4-.78%208.73%208.73%200%200%200-4.72%201.29%2011.88%2011.88%200%200%200-3.54%203.35%2015.6%2015.6%200%200%200-2.24%204.64%2017.89%2017.89%200%200%200-.77%205.14%2019.32%2019.32%200%200%200%20.77%205.49%2013.77%2013.77%200%200%200%202.24%204.52%2011.11%2011.11%200%200%200%203.54%203.08%209.62%209.62%200%200%200%204.72%201.15%2022%2022%200%200%200%204.38-.44%2010.35%2010.35%200%200%200%204-1.77v-5.97q0-3.12-4.8-3.26v-.55c1.18%200%202.27.06%203.26.11s2.11.07%203.35.07%202.3%200%203.45-.05%202.3-.07%203.45-.13v.55a10.16%2010.16%200%200%200-1.85.23zm-37.6%204.69a30.51%2030.51%200%200%200%203.58%205.07%207.65%207.65%200%200%200%204.36%201.93v.51h-7.64a60.2%2060.2%200%200%201-4.65-6.82q-2.91-4.72-4.56-6a5.75%205.75%200%200%200-3.65-1.3h-4.58l.08%208.5a5.84%205.84%200%200%200%20.9%203.7c.93%201.19%202.76%201.25%204%201.41v.55s-4.34-.19-6.74-.19-7.24.19-7.24.19v-.57c2.13-.15%203.28-.63%203.81-1.31.76-.94.89-1.86%201-3.8l.18-19.51a7%207%200%200%200-.7-3.74%203.11%203.11%200%200%200-2.75-1V.72h14.6A11.39%2011.39%200%200%201%20211.12%203a7.11%207.11%200%200%201%202.76%205.75q0%205.64-6.28%207.51a13%2013%200%200%201%202.69%202.44%2040.64%2040.64%200%200%201%203.45%205.13zm-6-9.89a6.93%206.93%200%200%200%201.91-5.11%206.41%206.41%200%200%200-2.12-5A7.93%207.93%200%200%200%20201.91%202h-5.31v13.75h5.85a7%207%200%200%200%205.26-1.81zm-25.96%2013.81a16.11%2016.11%200%200%201-5.47%203.12%2021.23%2021.23%200%200%201-13.37%200%2016.2%2016.2%200%200%201-5.47-3.12%2015%2015%200%200%201-3.71-5%2015.59%2015.59%200%200%201-1.37-6.65%2015.64%2015.64%200%200%201%201.37-6.66%2015%2015%200%200%201%203.71-5%2016.2%2016.2%200%200%201%205.47-3.12%2021.23%2021.23%200%200%201%2013.37%200%2016.11%2016.11%200%200%201%205.47%203.12%2015%2015%200%200%201%203.71%205%2015.64%2015.64%200%200%201%201.37%206.66%2015.59%2015.59%200%200%201-1.37%206.65%2015%2015%200%200%201-3.71%205zm-.69-17a14%2014%200%200%200-2.43-4.52%2011.86%2011.86%200%200%200-3.86-3.12%2012%2012%200%200%200-10.34%200%2011.9%2011.9%200%200%200-3.87%203.12%2013.93%2013.93%200%200%200-2.42%204.52%2017.62%2017.62%200%200%200%200%2010.75%2013.93%2013.93%200%200%200%202.42%204.5%2011.9%2011.9%200%200%200%203.87%203.12%2011.92%2011.92%200%200%200%2010.34%200%2011.86%2011.86%200%200%200%203.86-3.12%2014%2014%200%200%200%202.43-4.52%2017.82%2017.82%200%200%200%200-10.75zM130.6%2039a10.76%2010.76%200%200%201-3.28%201.65%2011.81%2011.81%200%200%201-6.61-.18%2014.34%2014.34%200%200%201-3.26-1.33c-.93-.53-1.82-1-3-1.66s-1.92-1.08-2.92-1.58a29.61%2029.61%200%200%200-3.18-1.33%208.26%208.26%200%200%200-3.23-.47%208.92%208.92%200%200%200-2.37.44%209.21%209.21%200%200%200-2.1%201.06%2014.12%2014.12%200%200%201%202.35-1.86%207.76%207.76%200%200%201%203.71-.9%2018.46%2018.46%200%200%201%205.2.77c1.75.51%203.45%201.06%205.11%201.67s3.28%201.15%204.83%201.65a15%2015%200%200%200%204.4.8%2012%2012%200%200%200%202.8-.28%209%209%200%200%200%202.18-.87%208%208%200%200%200%201.84-1.39%209.27%209.27%200%200%200%201.62-2.26%2016.83%2016.83%200%200%201-1.77%203.58A10.09%2010.09%200%200%201%20130.6%2039zm-3.5-11.11a16.3%2016.3%200%200%201-5.53%203.11%2021.51%2021.51%200%200%201-13.52%200%2016.3%2016.3%200%200%201-5.53-3.16%2015.25%2015.25%200%200%201-3.75-5%2015.78%2015.78%200%200%201-1.39-6.73%2015.78%2015.78%200%200%201%201.39-6.73%2015.15%2015.15%200%200%201%203.75-5%2016.3%2016.3%200%200%201%205.53-3.16%2021.51%2021.51%200%200%201%2013.52%200%2016.3%2016.3%200%200%201%205.53%203.16%2015.15%2015.15%200%200%201%203.75%205%2015.78%2015.78%200%200%201%201.39%206.73%2015.78%2015.78%200%200%201-1.39%206.73%2015.25%2015.25%200%200%201-3.75%205.01zm-.7-17.2a14.38%2014.38%200%200%200-2.4-4.62%2012.17%2012.17%200%200%200-4-3.16%2012.18%2012.18%200%200%200-10.46%200%2012.17%2012.17%200%200%200-3.91%203.16%2014.38%2014.38%200%200%200-2.45%204.58%2018%2018%200%200%200%200%2010.86%2014.33%2014.33%200%200%200%202.45%204.57%2012%2012%200%200%200%203.91%203.16%2012.09%2012.09%200%200%200%2010.46%200%2012%2012%200%200%200%204-3.16%2014.33%2014.33%200%200%200%202.45-4.57%2018%2018%200%200%200%200-10.86zm-34.76-5A6.52%206.52%200%200%200%2089.5%203.3a6.85%206.85%200%200%200-2.94-.95%2039.13%2039.13%200%200%200-4.27-.19V23.8q0%202%20.12%203.24a4.74%204.74%200%200%200%20.59%202.08%202.93%202.93%200%200%200%201.49%201.16%2010.21%2010.21%200%200%200%202.73.51v.56c-1.19-.06-2.39-.11-3.58-.14s-2.39%200-3.58%200h-3.44c-1.13%200-2.26.08-3.39.14v-.56a9.46%209.46%200%200%200%202.64-.51%202.86%202.86%200%200%200%201.43-1.16%204.73%204.73%200%200%200%20.64-2.12q.12-1.27.12-3.24V2.16a37%2037%200%200%200-4.17.19A6.77%206.77%200%200%200%2071%203.3a6.52%206.52%200%200%200-2.14%202.36A23.36%2023.36%200%200%200%2067%2010l-.61-.18.69-9.15C68.4.73%2069.7.78%2071%20.81s2.59%200%203.91%200h14.81c1.23%200%202.43-.08%203.69-.14l.66%209.14-.61.18a22.7%2022.7%200%200%200-1.82-4.33zM61.31%2023.87A30.73%2030.73%200%200%200%2064.89%2029a7.69%207.69%200%200%200%204.36%201.92v.51h-7.64a60.2%2060.2%200%200%201-4.61-6.9q-2.91-4.73-4.56-6a5.7%205.7%200%200%200-3.65-1.31h-4.62l.08%208.5a5.84%205.84%200%200%200%20.9%203.7c.93%201.19%202.76%201.25%204%201.41v.55s-4.34-.19-6.74-.19-7.24.19-7.24.19v-.56c2.13-.16%203.28-.64%203.81-1.32.76-.94.89-1.86%201-3.8l.18-19.51a7%207%200%200%200-.7-3.74%203.11%203.11%200%200%200-2.75-1V.76h14.6A11.39%2011.39%200%200%201%2058.69%203a7.11%207.11%200%200%201%202.76%205.75q0%205.64-6.28%207.52a12.2%2012.2%200%200%201%202.69%202.43%2040.64%2040.64%200%200%201%203.45%205.17zm-6-9.89a6.93%206.93%200%200%200%201.91-5.11%206.45%206.45%200%200%200-2.11-5%208%208%200%200%200-5.6-1.8h-5.34v13.72H50A7%207%200%200%200%2055.28%2014zM25.86%2031.17h-3.91l-1.44.07-1.51.11v-.55a8.83%208.83%200%200%200%203.32-1%202.32%202.32%200%200%200%201.34-2.07%202.52%202.52%200%200%200-.16-.74c-.08-.24-.15-.4-.26-.7l-3.04-8.54h-9.84l-3.11%208.4c-.09.25-.18.47-.26.65a1.74%201.74%200%200%200-.11.61%202.22%202.22%200%200%200%20.49%201.44%204.13%204.13%200%200%200%201.2%201%206.93%206.93%200%200%200%201.46.63%2010.05%2010.05%200%200%200%201.27.33v.55c-.94-.06-1.88-.1-2.82-.14s-1.9%200-2.87%200H2.85c-.89%200-1.85.07-2.85.13v-.55a6.92%206.92%200%200%200%202.43-1%206.66%206.66%200%200%200%201.62-1.6%2011%2011%200%200%200%201.15-2.05c.33-.74.66-1.51%201-2.32L14.32%204.1l.26-.61a1.42%201.42%200%200%200%20.11-.49%202.28%202.28%200%200%200-.16-.69%204.08%204.08%200%200%200-.4-.84A12.38%2012.38%200%200%200%2017.91%200l9.83%2026.62a6.8%206.8%200%200%200%201.83%202.85%206.33%206.33%200%200%200%203.49%201.33v.55c-1.26-.06-2.49-.1-3.7-.14s-2.18-.04-3.5-.04zM15.45%204.56l-4.62%2011.8h8.86z%22%20fill%3D%22%232d2d2e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}

header.smaller #main-nav > ul > li > a, header.smaller #main-nav > ul > li.sns a {
	color: #2d2d2e;
}

header.smaller #main-nav > ul > li.sns:before {
	background-color: #2d2d2e;
}


/* //== Footer Part ==// */
footer {
	font-family: "Amiri", Georgia, "Times New Roman", Times, serif;
	width: 100%;
	height: 32em;
	margin: 0;
	padding: 0;
	background-color: #ddd;
	position: absolute;
	bottom: 0;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

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

footer a:hover {
	color: #182071;
}

footer #footer-nav {
	font-size: 20px;
	line-height: 1;
	width: 100%;
	margin-bottom: 20px;
	padding-top: 60px;
	position: relative;
}

footer #footer-nav > .wrapper {
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-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;
}

footer #footer-nav > .wrapper > div {
	padding-right: 30px;
	padding-left: 30px;
}

footer #footer-nav > .wrapper > div:first-child {
	padding-left: 0;
}

footer #footer-nav > .wrapper > div:last-child {
	padding-right: 0;
}

footer #footer-nav h4 {
	color: #001833;
	margin: 0 0 1.7em;
	padding: 0;
}

footer #footer-nav .company-info {
	color: #001833;
}

footer #footer-nav .company-info h5 {
	font-size: 20px;
	line-height: 1;
	margin: 0;
	padding: 0;
}

footer #footer-nav .company-info p {
	font: 17px "Noto Sans JP", メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: 0;
}

footer #footer-nav .company-info p span {
	display: block;
}


footer #footer-nav .company-info p.encom {
	font-size: 13px;
	margin: .6em 0 0;
	padding: 0;
}

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

footer #footer-nav ul li {
	margin: 0 0 .7em;
	padding: 0;
	display: block;
	position: relative;
}

footer #footer-nav li a {
	margin: 0;
	padding: 0;
	display: inline-block;
	border-bottom: 2px solid rgba(198, 156, 108, 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 {
	text-decoration: none;
	border-bottom: 2px solid rgba(198, 156, 108, 1);
}

footer #footer-nav .sns span {
	display: none;
}

footer #footer-nav .sns i {
	font-weight: normal;
	font-style: normal;
}

footer #footer-nav .legal {
	color: #001833;
	margin-top: 4em;
}

footer .copyright {
	font-size: 15px;
	text-align: center;
	margin: 0;
	padding: 0;
	line-height: 1;
}

footer .notification {
	font: 11px "Noto Sans JP", メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
}


/* Minimum width 1099px */
@media all and (max-width: 1099px) and (min-width: 1024px) {
	header .logo {
		left: 10px;
	}
	
	#main-nav > ul {
		padding-right: 10px;
	}
	
}


/* Minimum width 1023px and Tablet */
@media all and (max-width: 1023px) and (min-width: 600px) {
body {
	margin-bottom: 0;
}

.wrapper {
	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;
}

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


/* //== Main Contents Part ==// */
#maincontainer {
	padding: 20px 0 40px;
}

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


/* //== Header Part ==// */
header, header:hover {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

header .logo h1 a, header:hover .logo h1 a {
	background-image: none;
}

header.smaller #main-nav ul li a {
	color: #fff;
}
	

/* //== Global Navigation Part ==// */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/* Header Resize */
header.smaller {
  height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

header.smaller .logo {
	width: 172px;
	height: 18px;
}

header.smaller .logo a {
	background-image: none;
}

header.smaller #globalnav {
	height: 26px;
	top: -15px;
}

header.smaller #main-nav > ul > li > a, header.smaller #main-nav > ul > li.sns a {
	color: #fff;
	font-size: 15px;
}

header.smaller #main-nav > ul > li.sns:before {
	display: none;
}

header.smaller #main-nav ul ul {
	top: -1px;
}

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

footer #footer-nav {
	margin-bottom: 20px;
	padding-top: 30px;
	text-align: center;
}

footer #footer-nav > .wrapper {
	max-width: 100%;
	-webkit-flex-direction: column; 
	-ms-flex-direction: column; 
	flex-direction: column;
}

footer #footer-nav > .wrapper > div {
	padding-right: 0;
	padding-left: 0;
}

/*footer #footer-nav > .wrapper > div:nth-child(n+2):nth-last-child(n+2) {
	display: none;
}*/

footer #footer-nav ul {
	font-size: 0;
	width: 100%;
}

footer #footer-nav ul li {
	font-size: 16px;
	margin: 0 1em 1.8em;
	display: inline-block;
}

footer #footer-nav h4 {
	margin: 0 0 .7em;
}

footer #footer-nav .company-info {
	color: #001833;
	margin-bottom: 20px;
}

footer #footer-nav .company-info h4 {
	display: none;
}

footer #footer-nav .company-info h5 {
	font-size: 18px;
	margin: 0 0 .3em;
}

footer #footer-nav .company-info p {
	font-size: 14px;
}

footer #footer-nav .company-info p.encom {
	font-size: 12px;
}

footer #footer-nav .contact li {
	font-size: 18px;
	//margin-bottom: 30px;
}

footer #footer-nav .contact h4, footer #footer-nav .others h4 {
	display: none;
}

footer #footer-nav .sns h4 {
	font-size: 16px;
}

footer #footer-nav .sns a {
	font-size: 20px;
	text-decoration: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	display: block;
	border-bottom-style: none;
}

footer #footer-nav .sns a:hover {
	text-decoration: none;
	border-bottom-style: none;
}

footer #footer-nav .sns a + a {
	margin-left: 30px;
}

footer #footer-nav .sns span {
	display: block;
}

footer #footer-nav .sns span:before {
	font-family: "Font Awesome 5 Brands";
	-webkit-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	display: block;
}

footer #footer-nav .sns .twitter:before {
	//content: "\f099";
	content: "\f081";
}

footer #footer-nav .sns .instagram:before {
	content: "\f16d";
}

footer #footer-nav .sns .facebook:before {
	//content: "\f39e";
	content: "\f082";
}

footer #footer-nav .sns .twitter:hover:before {
	color: #55acee;
}

footer #footer-nav .sns .instagram:hover:before {
	color: #d93177;
}

footer #footer-nav .sns .facebook:hover:before {
	color: #3b5998;
}

footer #footer-nav .sns i {
	font-size: 0;
	width: 0;
	height: 0;
	display: none;
}

footer #footer-nav .legal {
	margin-top: 1em;
}

footer .copyright {
	font-size: 12px;
	margin: 0 0 1em;
}

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

}


/* Phone */
/* Portrait and mode */
@media only screen and (max-width: 599px) {

body {
	margin-bottom: 0;
}

.wrapper {
	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;
}

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


/* //== Main Contents Part ==// */
#maincontainer {
	padding: 20px 0 40px;
}

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


/* //== Header Part ==// */
header, header:hover {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

header .logo h1 a, header:hover .logo h1 a {
	background-image: none;
}

header.smaller #main-nav ul li a {
	color: #fff;
}
	

/* //== Global Navigation Part ==// */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/* Header Resize */
header.smaller {
  height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

header.smaller .logo {
	width: 172px;
	height: 18px;
}

header.smaller .logo a {
	background-image: none;
}

header.smaller #globalnav {
	height: 26px;
	top: -15px;
}

header.smaller #main-nav > ul > li > a, header.smaller #main-nav > ul > li.sns a {
	color: #fff;
	font-size: 15px;
}

header.smaller #main-nav > ul > li.sns:before {
	display: none;
}

header.smaller #main-nav ul ul {
	top: -1px;
}

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

footer #footer-nav {
	margin-bottom: 20px;
	padding-top: 30px;
	text-align: center;
}

footer #footer-nav > .wrapper {
	max-width: 100%;
	-webkit-flex-direction: column; 
	-ms-flex-direction: column; 
	flex-direction: column;
}

footer #footer-nav > .wrapper > div {
	padding-right: 0;
	padding-left: 0;
}

/*footer #footer-nav > .wrapper > div:nth-child(n+2):nth-last-child(n+2) {
	display: none;
}*/

footer #footer-nav ul {
	font-size: 0;
	width: 100%;
}

footer #footer-nav ul li {
	font-size: 16px;
	margin: 0 1em 1.8em;
	display: inline-block;
}

footer #footer-nav h4 {
	margin: 0 0 .7em;
}

footer #footer-nav .company-info {
	color: #001833;
	margin-bottom: 20px;
}

footer #footer-nav .company-info h4 {
	display: none;
}

footer #footer-nav .company-info h5 {
	font-size: 18px;
	margin: 0 0 .3em;
}

footer #footer-nav .company-info p {
	font-size: 14px;
}

footer #footer-nav .company-info p.encom {
	font-size: 11px;
}

footer #footer-nav .contact li {
	font-size: 18px;
	//margin-bottom: 30px;
}

footer #footer-nav .contact h4, footer #footer-nav .others h4 {
	display: none;
}

footer #footer-nav .sns h4 {
	font-size: 16px;
}

footer #footer-nav .sns a {
	font-size: 20px;
	text-decoration: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	display: block;
	border-bottom-style: none;
}

footer #footer-nav .sns a:hover {
	text-decoration: none;
	border-bottom-style: none;
}

footer #footer-nav .sns a + a {
	margin-left: 30px;
}

footer #footer-nav .sns span {
	display: block;
}

footer #footer-nav .sns span:before {
	font-family: "Font Awesome 5 Brands";
	-webkit-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	display: block;
}

footer #footer-nav .sns .twitter:before {
	//content: "\f099";
	content: "\f081";
}

footer #footer-nav .sns .instagram:before {
	content: "\f16d";
}

footer #footer-nav .sns .facebook:before {
	//content: "\f39e";
	content: "\f082";
}

footer #footer-nav .sns .twitter:hover:before {
	color: #55acee;
}

footer #footer-nav .sns .instagram:hover:before {
	color: #d93177;
}

footer #footer-nav .sns .facebook:hover:before {
	color: #3b5998;
}

footer #footer-nav .sns i {
	font-size: 0;
	width: 0;
	height: 0;
	display: none;
}

footer #footer-nav .legal {
	margin-top: 1em;
}

footer .copyright {
	font-size: 12px;
	margin: 0 0 1em;
}

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

}