@charset "UTF-8";
/* ===================================================================
CSS Document
file name  :layout.css 
style info : layout Style
=================================================================== */
/*--------------------------
		  HEADER
  ---------------------------*/
.header {
	width: 100%;
	min-width: 1060px;
	text-align: center;
	background: #000;
	position: relative;
	border-bottom: solid 1px #ca5532;
	position:  fixed;
	top: 0;
	left:  0;
	z-index: 1000;
}
.header__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	height: 60px;
	align-items: center;
	padding: 0 10px;
	position: relative;
}
.header__logo {
	display: inline-block;
	line-height: 1;
	margin: 3px 0 0;
	width: 236px;
}
.header__logo img {
	width: 100%;
}
.header__link {
	display: block;
	height: 28px;
}
/*--------------------------
  	GLOBAL NAVIGATION
---------------------------*/
.nav {
	font-size: 1.4rem;
	background: #1b1b1b;
	width: 47%;
}
.nav__menu {
	display: flex;
	justify-content: space-between;
	height: 100%;
	align-items: center;
	background: #1b1b1b;
	margin: 0 0 0 10px;
}
.nav__list {
	position: relative;
	cursor: pointer;
}
.nav__link {
	display: inline-block;
	font-size: 1.4rem;
	color: #FFF;
	padding: 19px 15px 18px;
	height: 100%;
	position: relative;
}
.nav__link--contact {
	background: url(../img/common/nav__menu_bg.png) repeat;
}
.side-box {
	display: flex;
	align-items: center;
}
.language {
	display: flex;
	align-items: center;
	margin-right: 8px;
	position: absolute;
	right: 0px;
}
.language__link {
	color: #FFF;
	border-right: solid 1px #FFF;
	padding: 0 10px;
	display: inline-block;
	line-height: 1;
	font-size: 1.2rem;
}
.language__link--current {
	color: #939393;
}
.language__list:last-of-type .language__link {
	border-right: none;
}
.category-menu {
	background: #000;
	position:  fixed;
	top: 61px;
	left:  0;
	width:  100%;
	z-index:  999;
	min-width: 1060px;
}
.category-menu__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.category-menu__item {
	display: flex;
	align-items: center;
	border-right: solid 3px;
	width: 25%;
	justify-content: center;
	position: relative;
	transition: all .5s ease;
	border-bottom: solid 3px;
	background: url(../img/common/bg_dots02.png) repeat-x bottom;
}
.category-menu__item:nth-of-type(4n) {
    border-right: none;
}
.category-menu__item:nth-of-type(n+5) {
    border-bottom: none;
}
.category-menu__item::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../img/common/bg_dots02.png) repeat;
	position: absolute;
	opacity: 0;
	transition: opacity .5s ease;
}
.category-menu__item:hover::before {
	opacity: 1;
}
.category-menu__link {
	color: #FFF;
	padding: 15px 0;
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 1.7rem;
	letter-spacing: .07em;
	width: 100%;
	position: relative;
}
.category-menu__link span {
	display: block;
	font-size: 1.2rem;
}
.category-menu__link:hover {
	opacity: 1;
}
.category-menu__link--current {
	background: url(../img/common/bg_dots02.png) repeat;
}
.category-menu__list {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	height: 100%;
	width: 100%;
	max-width: 1280px;
	background: url(../img/common/bg_dots02.png) repeat-x bottom,url(../img/common/bg_dots01.png) repeat;
}
.search__box {
	display: flex;
	align-items: center;
}
.search__form {
	position: relative;
}
#srchInput {
	background: #535353;
	border: none;
	-webkit-appearance: none;
	border-radius: 3px;
	height: 28px;
	width: 250px;
	padding: 0 10px;
	color: #FFF;
	font-size: 1.6rem;
}
#srchBtn {
	background: url(../img/common/search_img01.png) no-repeat center;
	border: none;
	-webkit-appearance: none;
	text-indent: -99999px;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	cursor: pointer;
}
 input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
 background-color: rgb(250, 255, 255) !important;
}

/*--------------------------
  	DROPDOWN MENU
---------------------------*/
.dropdown__menu{
	display: none;
	width: 550px;
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.nav__list:hover .dropdown__menu{
	display: block;
}

.dropdown__list {
	background: #000;
	padding: 10px 5%;
	transition: all .3s;
	position: relative;
}

.dropdown__list:not(:first-child)::before{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ca5532;
	position: absolute;
	top: 0;
	left: 0;
}

.dropdown__list:hover {
	background-color: #ca5532;
}

.dropdown__list a {
	display: flex;
	color: #fff;
	font-size: 1.3rem;
	text-decoration: none;
	position: relative;
}

.dropdown__list a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(135deg);
	position: absolute;
	right: 0;
	top: calc(50% - 5px);
}


/*-----------------------------------
		パンくずリスト
------------------------------------*/
.beadcrumb {
  background: #1b1b1b;
}
.beadcrumb__inner {
	width: 1280px;
	margin: 0 auto;
	padding: 8px 10px;
}
.beadcrumb__list {
		display: flex;
}
.beadcrumb__item {
	color: #FFF;
	margin: 0 40px 0 0;
	font-size: 1.4rem;
	position: relative;
}
.beadcrumb__item:last-of-type::after {
	display:none;
}
.beadcrumb__link {
	color: #8e8e93;
	position: relative;
	transition:all .5s ease;
}
.beadcrumb__link:hover {
	color:#FFF;
	opacity:1;
}
.beadcrumb__item::after {
	  content: '';
	  display: block;
	  width: 8px;
	  height: 8px;
	  border-top: #999 1px solid;
	  border-left: #999 1px solid;
	  transform: rotate(135deg);
	  position: absolute;
	  top: calc(50% - 3px);
	  right: -23px;
}
/*--------------------------
		 FOOTER
---------------------------*/
.footer {
	background: url(../img/common/footer_bg.jpg) no-repeat center /cover;
	color: #FFF;
	padding: 50px 0 70px;
	font-size: 1.3rem;
	font-weight: 100;
	position: relative;
}
.footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	padding: 0 30px;
}
.btn-pagetop {
	position: absolute;
	top: 60px;
	right: 40px;
}
.btn-pagetop__link {
	color: #FFF;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: .1em;
	position: relative;
}
.btn-pagetop__link::before {
	content: url(../img/common/btn_pagetop.png);
	display: block;
	position: absolute;
	top: -42px;
	left: 0%;
	transition:all .5s ease;
}
.btn-pagetop__link:hover::before {
	transform:translate3d(0,-5px,0);
}
.footer__about-company {
	margin-right: 80px;
}
.footer__company-info {
	margin: 20px 0 60px;
}
.footer__company-name {
	font-size: 1.5rem;
	font-weight: 400;
}
.footer__btn-contact-link {
	background: url(../img/common/bg_dots02.png) repeat;
	padding: 30px 20px;
	letter-spacing: .15em;
	color: #FFF;
}
.footer__btn-contact-link span {
	font-family: 'Oswald', sans-serif;
	font-size: 2.1rem;
	vertical-align: sub;
	margin-right: 15px;
	line-height: 1;
}
.footer__sub-wrap {
	display: flex;
}
.footer__sub-menu-list {
	margin-right: 20px;
}
.footer__menu--01 {
	margin-right: 80px;
}
.footer__menu-item {
	margin-bottom: 4px;
}
.footer__menu-link {
	color: #e73717;
	font-weight: 200;
	cursor: pointer;
}
.footer__menu-link:hover {
	opacity: .9;
}
.footer__sub-menu-item {
	margin-bottom: 5px;
}
.footer__sub-menu-item--mb35 {
	margin-bottom: 35px;
}
.footer__sub-menu-link {
	color: #FFF;
}
.copy {
	text-align: center;
	padding: 30px 0px 50px;
}
.copy__txt {
	font-size: 1.2rem;
	letter-spacing: .08em;
}
@media (max-width: 1279px) {
   .contents {
      padding-top: 180px;
  }
  .category-menu__item:nth-of-type(4n) {
      border-right: none;
  }
}