﻿@charset "utf-8";

/* ****************************************************
layout.css
Define container layout.
***************************************************** */

@media only screen and (max-width: 768px) {

/* common settings
=================================*/

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  /* 1rem = 10px */
}

body * {
  box-sizing: border-box;
}

/* page-wrapper */
#page-wrapper {
	margin: 0 auto;
}


/* header
---------------------------------*/

/* -- header utility -- */
#header-container {
	width: 100%;
	height: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	padding-left: 18px;
	background-color: #000000;
	border-bottom: 3px solid #333;
}
#header {
	position: relative;
	width: 100%;
	margin: 0;
}
#header-wrapper {
}
#logo {
	float: left;
	width: 55px;
	height: 47px;
}
#logo a {
	display: block;
}
#logo img {
	width: auto;
	height: 47px;
}

/* -- header Menu -- */
#header .sp-header-ui {
	display: table;
	position: relative;
	width: 65px;
	height: 50px;
	float: right;
	margin-bottom: -3px;
	font-size: 75%;
}
#header .sp-header-ui a {
	display: table-cell;
	text-align: center;
	vertical-align: bottom;
	color: #fff;
}
#header .sp-header-ui a:hover {
	text-decoration: none;
}
#header #sp-headInquiry {
}
#header #sp-headInquiry a {
	background: url(/common/images/sp_header_ic01.png) 50% 10px no-repeat #333;
	-webkit-background-size: 22px auto;
	background-size: 22px auto;
	padding-bottom: 5px;
}
#header #sp-menuTrigger a {
	background: #d7063b;
	padding-bottom: 6px;
}
#header #sp-menuTrigger a span {
	display: block;
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
#header #sp-menuTrigger a [class*="menu-line"] {
	position: absolute;
	display: block;
	top: 17px;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
#header #sp-menuTrigger a .menu-line02 {
	top: 24px;
}
#header #sp-menuTrigger a .menu-line03 {
	top: 31px;
}
#sp-header-menu {
	position: fixed;
	width: calc(100% - 65px);
	top: 0;
	left: 100%;
	bottom: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #333;
	border-left: 2px solid #d7063b;
	color: #fff;
	overflow: auto;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 1000;
}
#sp-header-menu-wrapper {
	overflow: hidden;
}
#page-wrapper {
	position: relative;
	right: 0;
	-webkit-transition: right 0.5s;
	-moz-transition: right 0.5s;
	-ms-transition: right 0.5s;
	-o-transition: right 0.5s;
	transition: right 0.5s;
}
/* menu activate */
#page-wrapper.sp-menu-active {
	width: 100%;
	position: fixed;
	top: 0;
	right: calc(100% - 65px);
}
#page-wrapper.sp-menu-active #header #sp-menuTrigger a span {
	opacity: 1.0;
}
#page-wrapper.sp-menu-active #sp-header-menu.open {
	left: 65px;
}
#page-wrapper.sp-menu-active #header #sp-menuTrigger a .menu-line01 {
	-webkit-transform: rotate(405deg);
	-moz-transform: rotate(405deg);
	-ms-transform: rotate(405deg);
	-o-transform: rotate(405deg);
	transform: rotate(405deg);
}
#page-wrapper.sp-menu-active #header #sp-menuTrigger a .menu-line02,
#page-wrapper.sp-menu-active #header #sp-menuTrigger a .menu-line03 {
	top: 17px;
	-webkit-transform: rotate(-405deg);
	-moz-transform: rotate(-405deg);
	-ms-transform: rotate(-405deg);
	-o-transform: rotate(-405deg);
	transform: rotate(-405deg);
}

/* -- global navi -- */
#header #gNavi a {
	color: #fff;
}
#header #gNavi a:hover {
	text-decoration: none;
}
#header #gNavi > li {
	border-bottom: 1px solid #5d5d5d;
}
#header #gNavi > li > a {
	position: relative;
	display: block;
	padding: 10px 27px 12px 33px;
	background: url(/common/images/com_icn85.png) 14px 50% no-repeat;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
	font-size: 150%;
	outline: none;
}
#header #gNavi > li > a::before,
#header #gNavi > li > a::after {
	display: block;
	position: absolute;
	width: 16px;
	height: 2px;
	top: 50%;
	right: 13px;
	margin-top: -1px;
	background: #fff;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	content: "";
}
#header #gNavi > li > a::before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
#header #gNavi > li.is-active > a::before {
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#header #gNavi > li.is-active > a::after {
	-webkit-transform: rotate(-225deg);
	-moz-transform: rotate(-225deg);
	-ms-transform: rotate(-225deg);
	-o-transform: rotate(-225deg);
	transform: rotate(-225deg);
}

/* -- mega menu -- */
#header #gNavi .mega-menu {
	max-height: 0;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: max-height 0.5s ease-out 0s;
	-moz-transition: max-height 0.5s ease-out 0s;
	-ms-transition: max-height 0.5s ease-out 0s;
	-o-transition: max-height 0.5s ease-out 0s;
	transition: max-height 0.5s ease-out 0s;
}
#header #gNavi .is-active .mega-menu {
	max-height: 1500px;
	-webkit-transition: max-height 0.5s ease-in;
	-moz-transition: max-height 0.5s ease-in;
	-ms-transition: max-height 0.5s ease-in;
	-o-transition: max-height 0.5s ease-in;
	transition: max-height 0.5s ease-in;
}
#header #gNavi .mega-menu-item {
	border-top: 1px solid #5c5c5c;
}
#header #gNavi .mega-menu-top {
}
#header #gNavi .mega-menu-top a {
	position: relative;
	display: block;
	color: #ffffff;
	padding: 10px 27px 12px 33px;
	background: url(/common/images/com_icn85.png) 14px 50% no-repeat #727272;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
	font-size: 133.4%;
}
#header #gNavi .mega-menu-unit {
	border-top: 1px solid #727272;
}
#header #gNavi .mega-menu-unit > *:first-child {
	margin-top: 0 !important;
}
#header #gNavi .mega-menu-unit.type-category {
	padding: 24px 5px 24px 16px;
	background: #5d5d5d;
}
#header #gNavi .mega-menu-category-top {
	padding-left: 10px;
	border-left: 3px solid #d7063b;
	font-size: 108.4%;
	font-weight: bold;
	line-height: 1.1;
}
#header #gNavi .mega-menu-category-top.pcOnly {
	display: none;
}
#header #gNavi .mega-menu-category-top.spOnly {
	display: block;
}
#header #gNavi .mega-menu-category-top a {
	display: inline-block;
	padding-right: 16px;
	background: url(/common/images/com_icn85.png) 100% 50% no-repeat;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
}
#header #gNavi .mega-menu-category-top a[target="_blank"] {
	padding-right: 20px;
	background: url(/common/images/com_icn87.png) 100% 50% no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
}
#header #gNavi .mega-menu-article {
}
#header #gNavi .mega-menu-article-top {
	position: relative;
	padding: 11px 0 13px;
	background: #727272;
	font-size: 108.4%;
	font-weight: bold;
	text-align: center;
}
#header #gNavi .mega-menu-article-top::after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	border-width: 8px 8px 0;
	border-style: solid solid none;
	border-color: #727272 transparent transparent;
	content: "";
}
#header #gNavi .mega-menu-article-top strong {
	padding-right: 0.3em;
	font-size: 115.4%;
}
#header #gNavi .mega-menu-article-cnt {
	padding: 22px 0 25px;
	background: #5d5d5d;
}
#header #gNavi .mega-menu-article-cnt > *:first-child {
	margin-top: 0;
}
#header #gNavi .mega-menu-link {
	font-size: 108.4%;
}
#header #gNavi .mega-menu-link.type-list,
#header #gNavi .mega-menu-link.type-desc {
	margin-top: 12px;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li {
	width: 49%;
	float: left;
	margin-left: 2%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li:first-child:last-child {
	width: 100%;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li:nth-child(2n+1) {
	clear: left;
	margin-left: 0;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list.sp-grid-1 > li {
  float: none;
  width: auto;
	margin-left: 0;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li.list-Full,
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li.list-Full:nth-child(2n+1),
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li.list-Full .mega-menu-link li {
	float: none;
	margin-left: 0;
	width: auto;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li.list-Full + li{
	margin-top: 12px;
	margin-left: 0;
}
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li.list-Full .mega-menu-link li + li,
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list.sp-grid-1 > li + li,
#header #gNavi .mega-menu-unit.type-category .mega-menu-link.type-list > li:nth-child(n+3) {
	margin-top: 12px;
}
#header #gNavi .mega-menu-link.type-list > li a,
#header #gNavi .mega-menu-link.type-desc > dd a {
	display: block;
	padding-left: 13px;
	background: url(/common/images/com_icn85.png) 0 0.35em no-repeat;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
}
#header #gNavi .mega-menu-link.type-list > li > a[target="_blank"]:after,
#header #gNavi .mega-menu-link.type-desc > dd > a[target="_blank"]:after {
	display: inline-block;
	width: 12px;
	height: 11px;
	margin-left: 4px;
	background: url(/common/images/com_icn87.png) 0 0 no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
	content: "";
}
#header #gNavi .mega-menu-link > li > .mega-menu-link {
  margin-left: 1em;
}
#header #gNavi .mega-menu-link > li > .mega-menu-link li {
	font-size: 90.6%;
}
#header #gNavi .mega-menu-link > li > .mega-menu-link li > .mega-menu-link li {
	font-size: 93.4%;
}
#header #gNavi .mega-menu-link.type-desc > dt {
	position: relative;
	padding-left: 13px;
}
#header #gNavi .mega-menu-link.type-desc > dt::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 1px;
	width: 6px;
	height: 6px;
	margin-top: -2px;
	background: #fff;
	content: "";
}
#header #gNavi .mega-menu-link.type-desc > dd {
	margin-top: 12px;
	padding-left: 15px;
}
#header #gNavi .mega-menu-link.type-btn + .mega-menu-link.type-btn {
	border-top: 1px solid #656565;
}
#header #gNavi .mega-menu-unit:not(.type-category) .mega-menu-link:not(.type-banner) > li + li,
#header #gNavi .mega-menu-link.type-btn > li + li {
	border-top: 1px solid #727272;
}
#header #gNavi .mega-menu-unit:not(.type-category) .mega-menu-link:not(.type-banner) > li a,
#header #gNavi .mega-menu-link.type-btn > li a {
	position: relative;
	display: block;
	padding: 12px 0 14px 33px;
	background: url(/common/images/com_icn85.png) 14px 50% no-repeat #5d5d5d;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
}
#header #gNavi .mega-menu-link.type-btn > li a {
	background-color: #4c4c4c;
}
#header #gNavi .mega-menu-unit:not(.type-category) .mega-menu-link:not(.type-banner) > li > a[target="_blank"]::after,
#header #gNavi .mega-menu-link.type-btn > li a[target="_blank"]::after {
	position: absolute;
	display: block;
	width: 12px;
	height: 11px;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	background: url(/common/images/com_icn87.png) 50% 50% no-repeat;
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
	content: "";
}
#header #gNavi .mega-menu-link.type-btn > li > a .sub {
	font-size: 76.9%;
	line-height: 1.0;
} 
#header #gNavi .mega-menu-link.type-banner > li {
	width: 224px;
	margin: 0 auto;
}
#header #gNavi .mega-menu-link.type-banner > li + li {
	margin-top: 10px;
}
#header #gNavi .mega-menu-link.type-banner > li a {
	display: block;
}
#header #gNavi .mega-menu-link.type-banner > li img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List {
	padding: 22px 0 25px;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li {
	width: 224px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li + li {
	margin-top: 10px;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border: solid 1px #ccc;
	background-color: #fff;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a:hover {
	text-decoration: none;
	opacity: .7;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a > span {
	width: auto;
	padding: 0 10px;
	color: #333;
	vertical-align: middle;
	text-align: left;
}
#header #gNavi .mega-menu-btn-col.sizeM .mega-menu-btn-List > li a > span {
	padding: 0 10px;
	text-align: left;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a[target="_blank"] span.wrap:after {
	display: inline-block;
	margin-left: 8px;
	content: url(/common/images/com_icn05.png);
	vertical-align: middle;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a > span .sub {
	display: block;
	margin-top: 0.5em;
	color: #555;
	font-size: 80%;
	line-height: 1.2;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a > span.btnImg {
	width: 98px;
	padding: 0;
}
#header #gNavi .mega-menu-btn-col .mega-menu-btn-List > li a > span.btnImg img {
	width: 100%;
	vertical-align: middle;
}
#header #gNavi .mega-menu-item .mega-menu-close {
	display: none;
}

/* header utility */
#header-utility {
	padding: 24px 18px 24px 16px;
}
#headConnected,
#headInquiry {
	display: none;
}
#headLanguage {
	margin-top: 19px;
}
#headLanguage a {
	display: block;
	padding: 10px;
	background: #666;
	font-size: 116.7%;
	text-align: center;
	color: #fff;
}
#headLanguage a:hover {
	text-decoration: none;
}
#headSearch {
	position: relative;
}
#headSearch > a {
	display: none;
}
#headSearch #search-box {
}
#headSearch #search-box .mf-input-text {
	width: calc(100% - 50px);
	height: 50px;
	float: left;
	padding: 0 5px 0 46px;
	border: none;
	background: url(/common/images/hd_btn07.png) 15px 50% no-repeat #fff;
	-webkit-background-size: 21px auto;
	background-size: 21px auto;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Noto Sans Japanese", "ＭＳ Ｐゴシック", "HiraKakuPro-W3", "ヒラギノ角ゴ Pro W3", "Osaka", sans-serif;
	font-size: 133.4%;
}
#headSearch #search-box .mf-submit-btn {
	width: 50px;
	height: 50px;
	float: left;
	margin: 0;
	padding: 0;
	background: url(/common/images/hd_icn02.png) no-repeat 50% 50% #666;
	-webkit-background-size: 10px auto;
	background-size: 10px auto;
	border: none;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
#headSearch #search-box .mf-search-close {
	display: none;
}


/* -- path -- */
#path-wrapper {
	width: 100%;
	background-color: #ccc;
}
#path {
	margin: 0 auto;
	padding: 15px 18px;
}
#path li {
	display: inline;
	font-size: 1.1rem;
}
#path li:before {
	padding: 0 3px;
	content:" > ";
}
#path li:first-child:before {
	padding: 0;
	content: "";
}


/* mainContainer
---------------------------------*/
#contentsContainer {
	margin: 14px auto 0;
	line-height: 1.4;
}

/* sideContainer
---------------------------------*/
#aside {
	width: 100%;
}
#aside * {
box-sizing: border-box;
}
/* -- local navi -- */


.rNaviTitle {
	border-top: 3px solid #d7083b;
}
.rNaviTitle > a,
.rNaviTitle > span {
	display: block;
	width: 100%;
	padding: 22px;
	background-color: #000000;
	color: #ffffff !important;
	text-decoration: none;
	font-weight: bold;
	font-size: 120%;
	vertical-align: middle;
}
.rNaviTitle > a > span,
.rNaviTitle > span > span {
	display: inline-block;
}


#rNavi > ul > li:first-child,
#rNavi > ul > li.active + li {
	border-top: none;
}
#rNavi > ul > li > a {
	display: block;
	border-top: none;
	text-decoration: none;
}
#rNavi > ul > li:first-child > a {
	border-top: 1px solid #dddddd;
}
#rNavi > ul > li > a > span {
	display: block;
	border-bottom: 1px solid #dddddd;
	padding: 16px 20px 16px 39px;
	background: #eeeeee url(/common/images/com_icn01.png) no-repeat 20px 1.3em;
	font-weight: bold;
	color: #333333;
	line-height: 1.1;
	text-decoration: none;
}
#rNavi > ul > li > a:hover > span,
#rNavi > ul > li > a:active > span {
	background: #d7083b url(/common/images/com_icn40.png) no-repeat 20px 1.3em;
	color: #ffffff;
}

#rNavi > ul > li.active > a > span {
	background: #d7083b url(/common/images/com_icn40.png) no-repeat 20px 1.3em;
	color: #ffffff;
}

/* 4th level */
#rNavi li ul {
}
#rNavi li:last-child ul {
}

#rNavi > ul > li > ul {
	display: none;
}
#rNavi > ul > li.active > ul {
	display: block;
}
#rNavi > ul > li > ul > li > ul {
	display: none;
}
#rNavi > ul > li > ul > li.active > ul {
	display: block;
}

#rNavi li li {
}
#rNavi li li:first-child {
}
#rNavi li li a {
	display: block;
	padding: 14px 20px 14px 48px;
	border-bottom: 1px solid #dddddd;
	background: #eeeeee url(/common/images/com_icn01.png) no-repeat 30px 1.3em;
	color: #333333;
	text-decoration: none;
}
#rNavi li li.is-current a,
#rNavi li li a:hover {
	background: #d7083b url(/common/images/com_icn40.png) no-repeat 30px 1.3em;
	color: #ffffff;
  font-weight: bold;
}
#rNavi li li.blank-link a:hover {
	background: #d7083b url(/common/images/com_icn40.png) no-repeat 30px 1.3em;
	color: #ffffff;
}
#rNavi li li.blank-link a span:hover {
	background: #d7083b url(/common/images/com_icn40.png) no-repeat 30px 1.3em;
	color: #ffffff;
}

/* 5th level */
#rNavi li li.active {
}
#rNavi li li.active > a {
	background: #d7083b url(/common/images/com_icn76.png) no-repeat 30px 1.3em;
	color: #ffffff;
}
#rNavi li li.active ul {
	border-bottom: 1px solid #dddddd;
	background-color: #eeeeee;
	padding-left: 25px;
}
#rNavi li li.active li:last-child {
border-bottom: none;
}
#rNavi li li.active ul a {
	display: block;
	padding: 13px 20px 12px 27px;
	background: url(/common/images/com_icn77.png) no-repeat 8px 1.6em;
	border-bottom: none;
}
#rNavi li li.active ul a:hover,
#rNavi li li.active ul li.is-current a {
	background: #d7083b url(/common/images/com_icn112.png) no-repeat 8px 1.6em;
	color: #ffffff;
	font-weight: bold;
}
#rNavi li li.active li.active a {
	background: #d7083b url(/common/images/com_icn112.png) no-repeat 8px 1.6em;
	color: #ffffff;
	font-weight: bold;
}

#rNavi li.under-arrow a {
	background: #d7083b url(/common/images/com_icn112.png) no-repeat 30px 1.3em;
	color: #ffffff;
	font-weight: bold;
}
#rNavi li li.active li.active {
	padding: 0;
}


/* side contents */

.col-side {
	position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: #dddddd;
	box-sizing: border-box;
}

.col-side:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 93px;
height: 3px;
background-color: #d7083b;
}

.col-side dt a {
	min-height: 25px;
	padding: 15px 10px 8px 33px;
	background: url(/common/images/com_icn01.png) no-repeat 15px 1.3em;
}
.col-side dt a img {
	vertical-align:baseline;
	margin-left: 5px;
}
.col-side dt span {
	min-height: 25px;
	padding: 15px 10px 8px 15px;
}

.col-side dt a,
.col-side dt span {
	font-weight: bold;
	color: #333333;
	font-size: 115%;
}
.col-side dt a {
	text-decoration: none;
}
.col-side dt a:hover {
	text-decoration: none;
	color: #d7083b;
}
.col-side dt a,
.col-side dt span {
	-ms-filter:"progid:DXImageTransform.Microsoft.DropShadow(color=#ffffff,offx=1,offy=1)";
	display: block;
}

.col-side dd {
	padding: 6px 15px 15px;
	background-color: #ffffff;
}

.col-side dd + dd {
	margin-top: 0;
}
.col-side dd .link-list li {
	margin-top: 3px;
}
.col-side dd .icon-link a,
.col-side dd .link-list li a {
	background-position: 0 0.4em;
}

.col-side dd.col-side-inner .img-l {
	float: left;
	width: 90px;
}
.col-side dd.col-side-inner .text-r {
	overflow: hidden;
}

/* sizeSwitcher */
#sizeSwitcher {
	height: 33px;
	position: relative;
	border-radius: 3px;
	background-color: #d0d8e0;
}
.fontsize-switch dt {
	position: absolute;
	left: 0;
	width: 79px;
	height: 12px;
	margin: 11px 0 0 24px;
	text-indent: -9999px;
	background: url(/common/images/rNavi_tx01.gif) no-repeat 0 0;
}
.fontsize-switch dd {
	position: absolute;
	width: 43px;
	margin: 6px 0 0;
}
.fontsize-switch dd span {
	height: 24px;
	display: block;
	text-indent: -9999px;
}
.fontsize-switch #font-medium {
	right: 62px;
}
.fontsize-switch #font-medium span {
	background: url(/common/images/rNavi_btn02.gif) no-repeat 0 0;
}
.fontsize-switch #font-medium span.hover,
.fontsize-switch #font-medium span.current-fontsize {
	background: url(/common/images/rNavi_btn02on.gif) no-repeat 0 0;
}
.fontsize-switch #font-large {
	right: 17px;
}
.fontsize-switch #font-large span {
	background: url(/common/images/rNavi_btn01.gif) no-repeat 0 0;
}
.fontsize-switch #font-large span.hover,
.fontsize-switch #font-large span.current-fontsize {
	background: url(/common/images/rNavi_btn01on.gif) no-repeat 0 0;
}

.current-fontsize {
	cursor: default;
}
.uncurrent-fontsize {
	cursor: pointer;
}



/* contents
---------------------------------*/
#contents {
	width: 100%;
	line-height: 1.6;
	padding: 0 18px 18px;
}


/* section
---------------------------------*/

/* for h2 bottom section */


/* for h3 bottom section */

/* for h4 bottom section */

/* for table section */

/* pageTop
---------------------------------*/


/* supplierNavi
---------------------------------*/



/* footer
---------------------------------*/
#footer-container {
	background-color: #000000;
}
#footer-nav {
	padding: 18px 18px 20px;
	background: #fff;
	border-top: 1px solid #ccc;
}
#footer-nav .footer-link > li {
}
#footer-nav .footer-link > li a {
	padding-left: 17px;
	background: url(/common/images/com_icn90.png) 0 50% no-repeat;
	-webkit-background-size: 9px auto;
	background-size: 9px auto;
	color: #555;
}
#footer-nav .footer-link > li + li {
	margin-top: .5em;
}
#footer-nav .footer-mark {
	margin-top: 15px;
	text-align: center;
}
#footer-nav .footer-mark > li {
	display: inline-block;
}
#footer-nav .footer-mark > li img {
	width: 100%;
	height: auto;
	max-width: 100%;
}
#footer-nav .footer-mark > li.mark01 {
}
#footer-nav .footer-mark > li.mark02 {
	margin-left: 5px;
}
#footer-nav .footer-mark > li.mark03 {
	margin-left: 4px;
}
#footer-bottom {
	padding-bottom: 20px;
}
#footer-bottom #footer-utility {
	width: 100%;
	padding: 20px 18px;
}
#footer-bottom #footer-utility li {
	float: left;
	width: 50%;
}
#footer-bottom #footer-utility li:nth-child(n+3) {
	margin-top: 1.0em;
}
#footer-bottom #footer-utility a {
	color: #ffffff;
	display:block;
}

/* -- utility -- */
#footer-bottom #utility {
	font-size: 83.4%;
	color: #ffffff;
}
#footer-bottom #utility ul {
	margin: 0 18px;
	padding: 22px 0 0;
	border-top: 1px solid #333;
}
#footer-bottom #utility ul li {
	text-align: center;
}
#footer-bottom #utility ul li + li {
	margin-top: 14px;
}
#footer-bottom #utility #footer-social {
	display: -webkit-flex;
	display: flex;
	-weblit-justify-content: center;
	justify-content: center;
	border-top: none;
	padding: 0 0 22px;
}
#footer-bottom #utility #footer-social li {
	margin-top: 0!important;
}
#footer-bottom #utility #footer-social li + li {
	margin-left: 22px;
}
#footer-bottom #utility #footer-social li a {
	display: block;
	width: 35px;
}
#footer-bottom #utility #footer-social li a img {
	width: 100%;
}
#footer-bottom #footer-up {
}
#footer-bottom #footer-up a {
	display: block;
	padding: 15px 0 14px;
	background: #d7063b;
	text-align: center;
}
#footer-bottom #footer-up a img {
	width: 20px;
	height: auto;
}

/* clearFix
=================================*/
#header:after,
#header #header-wrapper:after,
#header #header-utility:after,
#header #gNavi .mega-menu-link:after,
#headSearch #search-box:after,
#contentsContainer:after,
#footer-nav .footer-mark:after,
#footer-bottom:after,
#footer-bottom #footer-utility:after {
	content: "";
	display: block;
	clear: both;
}

}
