@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
/*
===== 1: BASE LAYOUT =====================================
*/
#headLogo img{
	height: 96px;
	width: auto;
}
#navTrigger {
  background: #d9d9d9;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  top: 25px;
  z-index: 1000;
}
#navTrigger span {
  height: 2px;
  width: 14px;
  background: #000;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
#navTrigger span:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  top: -6px;
  transition: all 0.2s;
}
#navTrigger span:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: all 0.2s;
}
#navTrigger.active span {
  background: none;
}
#navTrigger.active span:before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
#navTrigger.active span:after {
  transform: rotate(-45deg) translateY(50%);
  bottom: 50%;
}
nav {
  display: none;
  background: #fff;
  width: 100%;
  height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
}
nav > div {
  background: url("../img/shared/head_logo.webp")left 10px top 20px no-repeat;
  padding: 150px 30px 0 30px;
}
nav #gNav {
  display: flex;
  flex-wrap: wrap;
}
nav #gNav li {
  margin-bottom: 20px;
}
nav #gNav li.navIcon {
  width: 32%;
  margin-right: 2%;
  text-align: center;
  font-size: 14px;
  border: solid 1px #d3d0cb;
  border-radius: 5px;
}
nav #gNav li.navIcon a {
  display: block;
  padding: 60px 0 10px 0;
}
nav #gNav li.navIcon.area a {
  background: url("../img/shared/nav_area.webp")top 10px center no-repeat;
  background-size: 50px;
}
nav #gNav li.navIcon.cate a {
  background: url("../img/shared/nav_category.webp")top 10px center no-repeat;
  background-size: 50px;
}
nav #gNav li.navIcon.feature a {
  background: url("../img/shared/nav_feature.webp")top 10px center no-repeat;
  background-size: 50px;
}
nav #gNav li:nth-of-type(3).navIcon {
  margin-right: 0;
}
nav #gNav li#search {
  width: 100%;
  display: flex;
  align-items: center;
}
nav #gNav li input {
  background: #f4f4f4;
  border: none;
  font-weight: normal;
  border-radius: 5px 0 0 5px;
  width: calc(100% - 40px);
  height: 49px;
}
nav #gNav li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0 5px 5px 0;
  width: 40px;
  height: 49px;
  background: #f4f4f4;
}
nav #gNav li button img {
  width: 60%;
  margin: 0 auto;
}
nav #gNav li#navBtn {
  width: 100%;
}
nav #gNav li#navBtn a {
  display: block;
  background: #f5be00;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
nav #gNav li#navBtn a:after {
  content: "";
  background: url("../img/shared/ico_arrow01.webp")center center no-repeat, #fff;
  background-size: 40%, 100%;
  border-radius: 50%;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 15px;
  pointer-events: none;
}
nav #sns {
  display: flex;
  justify-content: center;
}
nav #sns li:first-of-type {
  display: none;
}
nav #sns li {
  width: 36px;
  margin: 0 5px;
}
nav #sns li img {
  width: 100%;
  height: auto;
}
footer {
  border-top: solid 1px #c8c8c8;
}
footer .inner {
  padding: 0;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
}
footer ul li {
  width: 50%;
  border-bottom: solid 1px #c8c8c8;
}
footer ul li:nth-of-type(odd) {
  border-right: solid 1px #c8c8c8;
}
footer ul li a {
  display: block;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  background: url("../img/shared/footer_link.webp")left 10px center no-repeat;
  background-size: 14px;
}
footer .copy {
  text-align: center;
  padding: 8px;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}
#breadCrumbs{
	border-top: solid 1px #e1e1e1;
	border-bottom: solid 1px #e1e1e1;
}
#breadCrumbs > div {
    margin: 0 10px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}
#breadCrumbs ol {
    display: table;
	padding: 8px 0;
}
#breadCrumbs ol li {
    font-size: 14px;
    display: table-cell;
    white-space: nowrap;
    vertical-align: middle;
    padding-right: 15px;
	padding-left: 10px;
    position: relative;
	color: #9e9e9e;
}
#breadCrumbs ol li a{
	color: #9e9e9e;
}
#breadCrumbs ol li:last-child {
    padding-right: 0;
}
#breadCrumbs ol li:last-child:after {
    display: none;
}
#breadCrumbs ol li:after {
    position: absolute;
    display: block;
    content: "";
	background: url("../img/shared/breadcrumbs.webp")center center no-repeat;
	background-size: 100%;
	height: 10px;
	width: 10px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 1120px) {
  #navTrigger {
    display: none;
  }
  header #headLogo {
    padding-top: 15px;
  }
  header #headLogo img {
    width: 216px;
  }
  header {
    width: 1120px;
    margin: 0 auto;
    height: 130px;
    display: flex;
  }
  nav {
    display: block;
    height: auto;
    width: calc(100% - 246px);
    margin-left: 30px;
    position: relative;
  }
  nav > div {
    background: none;
    padding: 0;
  }
  nav #gNav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    padding-top: 60px;
    justify-content: flex-end;
  }
  nav #gNav li {
    margin-bottom: 0;
  }
  nav #gNav li.navIcon {
    width: auto;
    margin-right: 0;
    text-align: center;
    font-size: 16px;
    border: none;
  }
  nav #gNav li.navIcon a {
    padding: 0 20px;
    background: none !important;
  }
  nav #gNav li:nth-of-type(3).navIcon {
    margin-right: 0;
  }
  nav #gNav li#search {
    width: 260px;
    margin-left: 20px;
  }
  nav #gNav li#navBtn {
    width: 210px;
    margin-left: auto;
    padding-left: 20px;
    border-left: solid 1px #dedede;
  }
  nav #gNav li#navBtn a:hover {
    opacity: 0.6;
    color: #000;
  }
  nav #sns {
    position: absolute;
    right: 0;
    top: 15px;
    display: flex;
    justify-content: center;
  }
  nav #sns li:first-of-type {
    display: block;
    width: auto;
    color: #8c8c8c;
    font-size: 14px;
  }
  nav #sns li {
    width: 24px;
  }
  footer .inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  footer ul li {
    width: auto;
    border-bottom: none;
    margin-right: 15px;
  }
  footer ul li:nth-of-type(odd) {
    border-right: none;
  }
  footer ul li a {
    padding: 8px 0 8px 20px;
    background: url("../img/shared/footer_link.webp")left 0 center no-repeat;
    background-size: 16px;
    font-size: 16px;
  }
  footer ul li a:hover {
    color: #ddd;
  }
  footer .copy {
    margin-left: auto;
    padding: 0;
    font-size: 16px;
  }
#breadCrumbs{
	border-top: solid 1px #e1e1e1;
	border-bottom: solid 1px #e1e1e1;
}
#breadCrumbs > div {
	width: 1130px;
	margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}
}