@charset UTF-8;
p {
  font-size: 1rem;
  line-height: initial;
}
/*
Header
-----------------------------------------------------*/
#container {
  width: 100%;
  text-align: center;
}
.headerArea {
  width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.header h1{
  float: left;
  width: 440px;
  text-align:center;
}
.header h1 img {
  width: 100%;
}
.headerRight {
  float: right;
  font-size: 12px;
  text-align: right;
}
.headerRight ul {
  margin-top: 5px;
}
.headerRight li {
  float: left;
  padding: 0 10px;
  border-right: 1px solid #ccc;
}
.headerRight li:last-child {
  border: none;
}
.headerRight .icon-cont img {
  width: 23px;
  margin-right: 5px;
}
.headerArea p {
  color: #000;
}
.headerText {
  float: right;
  margin-top: 6px;
  margin-bottom: 3px;
  font-size: 12px;
}
.headerText li {
  float: left;
  padding: 0 5px;
  border-right: 1px solid #ccc;
}
.headerText li:nth-child(4) {
  border: none;
}
.headerText .total-quant {
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #fff;
  margin-top: -10px;
  /* margin-left: 1.25em; */
  background-color: #fba60d;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: text-bottom;
  min-width: 20px;
  max-width: 30px;
}
.infoText {
  margin: 20px;
}
.navBox {
  background: #000;
}
.navBox li {
  float: left;
  width: 14%;
  text-align: center;
  line-height: 20px;
}
.navBox {
  padding: 10px 0 5px 0;
  font-size: 1.6rem;
  color: #fff;
}
.navBox .fa:before {
  font-size: 1.6rem;
}
.lighter {
  margin: 20px 0;
  text-align: right;
}
.lighter input {
  padding: 10px;
  border:1px solid #ccc;
}
.lighter #txtArea {
  width: 70%;
}
.lighter .search-btn {
  padding: 8px;
}
.news-wrap {
  width: 1000px;
  margin: 0 auto;
  margin-top: 10px;
}
/*
Menu
-----------------------------------------------------*/
nav {
  background: #000;
}
.menu {
  position: relative;
  width: 100%;
  height: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu > li {
  float: left;
  width: 12%;
  height: 50px;
  line-height: 50px;
  background: #000;
  text-align: center;
  font-size: 12px;
}
.menu > li a {
  display: block;
  color: #fff;
}
.menu__mega li a {
  color: #000;
}
.menu > li a:hover {
  opacity: .9;
  color: #fff;
}
.menu__none:hover,
.menu__multi:hover,
.menu__mega:hover,
.menu__single:hover {
  background: rgba(0,0,0,.9);
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
.menu__second-level li {
  border-top: 1px solid #111;
}
.menu__third-level li {
  border-top: 1px solid #111;
}
.menu__second-level li a:hover {
  background: #fff;
}
.menu__third-level li a:hover {
  background: #2a1f1f;
}
.menu__fourth-level li a:hover {
  background: #1d0f0f;
}
.init-bottom:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: text-top;
}
.menu:before,
.menu:after {
  content: "";
  display: table;
}
.menu:after {
  clear: both;
}
.menu {
  *zoom: 1;
}
/**
 * single menu
 */
.menu > .menu__single {
  position: relative;
}
.menu__single .menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #072A24;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  visibility: hidden;
  opacity: 0;
}
.menu__single:hover > .menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
/**
 * multi menu
 */
.menu > .menu__multi {
  position: relative;
}
.menu__multi .menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: #072A24;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.menu__multi:hover .menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.menu__multi .menu__second-level li {
  position: relative;
}
.menu__multi .menu__second-level li:hover {
  background: #111;
}
.menu__multi .menu__second-level li .menu__third-level {
  position: absolute;
  top: -1px;
  left: 100%;
  width: 100%;
  background: #111;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.menu__multi .menu__second-level li:hover .menu__third-level {
  visibility: visible;
  opacity: 1;
}
.menu__multi .menu__second-level li .menu__third-level li {
  position: relative;
}
.menu__multi .menu__second-level li .menu__third-level li:hover {
  background: #2a1f1f;
}
.menu__multi .menu__second-level li .menu__third-level li .menu__fourth-level {
  position: absolute;
  top: -1px;
  left: 100%;
  width: 100%;
  background: #2a1f1f;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.menu__multi .menu__second-level li .menu__third-level li:hover .menu__fourth-level {
  visibility: visible;
  opacity: 1;
}
.init-right:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/**
 * mega menu
 */
.menu__mega .menu__second-level {
  position: absolute;
  top: 40px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 2%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.menu__mega:hover .menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
.menu__mega .menu__second-level > li {
  float: left;
  width: 32%;
  border: none;
}
.menu__mega .menu__second-level > li:nth-child(3n+2) {
  margin: 0 1%;
}
/*
slider
-----------------------------------------------------*/
.wideslider {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.wideslider ul,
.wideslider ul li {
  float: left;
  display: inline;
  overflow: hidden;
}

.wideslider ul li img {
  width: 100%;
  display: none;
}

.wideslider_base {
  top: 0;
  position: absolute;
}
.wideslider_wrap {
  top: 0;
  position: absolute;
  overflow: hidden;

}
.slider_prev,
.slider_next {
  top: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}
.slider_prev {background: #fff url(../images/prev.jpg) no-repeat right center;}
.slider_next {background: #fff url(../images/next.jpg) no-repeat left center;}

.pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  text-align: center;
  position: absolute;
  z-index: 200;
}

.pagination a {
  display: inline-block;
  overflow: hidden;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #333;
  border-radius: 5px;
}
.pagination a.active {
  filter:alpha(opacity=100)!important;
  -moz-opacity: 1!important;
  opacity: 1!important;
}
.feature_Box{
	width: 100%;
  margin: 20px 0;
}
.feature_Box ul {
	margin: 0 auto;
	width: 800px;
}
.feature_Box li {
  padding: 10px;
}
.feature_Box ul img {
  width: 100%;
}

/* =======================================
  ClearFixElements
======================================= */
.wideslider ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

.wideslider ul {
  display: inline-block;
  overflow: hidden;
}

.about_wrap {
  margin: 100px 0;
}
.about_wrap h2 {
  padding-bottom: 30px;
  font-size: 3rem;
}
/*
top
-----------------------------------------------------*/
#topWrapper {
  width: 800px;
  margin: 0 auto;
}
/*
PickupArea
-----------------------------------------------------*/
.pickupArea {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
.pickupItem {
  position: relative;
  width: 800px;
  height: 300px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}
.pickupItem img {
  float: left;
  width: 40%;
}
.pickupArea {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
.itemText {
  float: right;
  width: 55%;
}
.itemText p:nth-child(1) {
  padding-bottom: 10px;
  font-size: 2.6rem;
  border-bottom: 1px solid #ccc;
}
.itemText p:nth-child(2) {
  width: 90%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: left;
}
.itemsubText {
  float: right;
  width: 55%
}
.itemsubText table {
  position: absolute;
  bottom: 0;
  width: 55%;
}
.itemsubText td:nth-child(1) {
  width: 20%;
}
.itemsubText td:nth-child(2) {
  width: 30%;
}
.itemsubText td:nth-child(3) {
  width: 50%;
}
.itemsubText p {
  font-size: 2.6rem;
}
.itemBox {
  display: inline-block;
}
.mainItem .itemBox li {
  width: 49.2%;
  height: auto;
  margin: 2px;
  line-height: 0;
}
.mainItem .itemBox li:nth-child(even) {
  float: right;
}
.mainItem .itemBox li:nth-child(5) {
  margin-right: 0;
}
.itemBox span {
  color: #999;
}
#pickup{
    width:100% !important;
    margin-top:0;
    padding:50px 0 80px 0;
}
/*
mainArea
-----------------------------------------------------*/
.mainArea {
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
.mainText {
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 24px;
  text-align: left;
}
.mainText span {
  font-size: .8rem;
  font-weight: normal;
}
.mainItem {
  width: 100%;
  margin: 0 auto;
}
.mainItem li {
  float: left;
  width: 18.64%;
}
.mainItem img {
  width: 100%;
}
.itemBoder {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.shop-wrap {
  display: flex;
  width: 1200px;
  overflow-x: scroll;
  cursor: pointer;
}
.shop-wrap .shop-wrap-inner {
  min-width: 20%;
  margin-right: 20px;
}
.shop-wrap .shop-wrap-inner:last-child {
  margin-right: 0;
}
.shop-wrap .shop-wrap-inner .title {
  font-size: 1rem;
  color: #000;
  text-align: left;
}
.shop-wrap .shop-wrap-inner .date {
  text-align: left;
}
.shop-wrap div a img {
  width: 100%;
}
/*
Ararival
-----------------------------------------------------*/
.ararivalArea {
  margin-right: 20px;
}
.ararivalArea:last-child {
  margin-right: 0;
}
.ararivalArea .title {
  font-size: 1rem;
  color: #000;
  text-align: left;
}
.ararivalArea .price {
  text-align: right;
}
.ararivalArea .price span {
  font-size: 0.64rem;
}
.ararivalArea .date {
  margin: 5px 0;
  text-align: left;
}
.modListNews {
  padding: 20px;
  background: #f8f8f8;
  text-align: left;
}
.modListNews a {
  color: #000;
}
.modListNews .modListNews__item {
  padding: 20px;
  background: #fff;
}
.modListNews .tag {
  padding: 5px;
  background: #eee;
  font-size: 1rem;
}
.modListNews .modListNews__item__title {
  margin-top: 10px;
  font-size: 1.4rem;
}
/*
商品ページ
-----------------------------------------------------*/
#item-parts-cont {
  width: 550px;
  height: 950px;
}
.category-cont {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.pickup-cont h2 {
  margin-bottom: 10px;
  padding: 1rem 1rem;
  font-size: 1.6rem;
  border-left: 5px solid #000;
  /* background: #f4f4f4; */
  text-align: left;
  border-bottom: 5px solid #000;
}
.category-cont li {
  float: left;
  width: 49%;
  margin: 0 auto;
  margin-left: .5%;
}
.category-cont li:nth-child(even) {
  float: right;
  margin-right: .5%;
  margin-left: 0;
}
.category-cont img {
  width: 100%;
}
.pickup-cont .mainArea {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
}
.pickup-cont .mainItem {
  width: 100%;
}
.pickup-cont .mainItem li {
  width: 32%;
  height: auto;
}
.pickup-cont .mainItem li:nth-child(2), .pickup-cont .mainItem li:nth-child(5) {
  margin: 0 2%;
}
.pickup-cont .mainItem li:nth-child(1), .pickup-cont .mainItem li:nth-child(2), .pickup-cont .mainItem li:nth-child(3) {
  margin-bottom: 1%;
}
.pickup-cont .mainItem li:nth-child(3), .pickup-cont .mainItem li:nth-child(6) {
  float: right;
}
/*
Fotter
-----------------------------------------------------*/
footer {
  text-align: center;
  border-top: 1px solid #ccc;
  background: #f7f7f7;
}
footer h2 {
  padding: 20px;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 24px;
}
footer h2 span {
  font-size: 1.4rem;
}
.footerArea {
  width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.footerBox {
  margin-bottom: 50px;
}
.footerText h3 {
  padding: 0.4em 0.8em;/*文字の上下 左右の余白*/
  background: #353535;/*背景色*/
  border-left: solid 3px #969696;/*左線*/
  border-bottom: solid 2px #969696;/*下線*/
  font-size: 1.2rem;
  font-weight: normal;
  color: #fff;
}
.footerText ul {
  float: left;
  width: 300px;
  margin-bottom: 50px;
  text-align: left;
}
.footerText ul:nth-child(2) {
  margin: 0 50px;
}
.footerText ul:nth-child(4) {
  float: left;
  width: 300px;
}
.footerText ul:nth-child(5) {
  float: right;
  width: 300px;
}
.footerText p {
  margin: 10px 20px;
}
.footerContents {
  margin-bottom: 50px;
}
.footerContents p {
  float: left;
  width: 500px;
  border: 1px dashed;
  box-sizing: border-box;
}
.footerContents p:nth-child(1) {
  padding: 9px  0;
}
.footerContents p:nth-child(2) {
  border-left: none;
}
.footerIcon img {
  margin: 0 20px;
}
.copyright {
  padding: 20px 0;
  background: #000;
  color: #fff;
}
/*
ボタン
-----------------------------------------------------*/
.itemsubText span{/*ボタンの背景*/
  width: 85px;/*幅*/
  height: auto;/*高さ*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  display: inline-block;
  text-align: center;/*中身を中央寄せ*/
  font-size: 1.4rem;/*文字のサイズ*/
  line-height: 34px;/*高さと合わせる*/
  vertical-align: middle;/*垂直中央寄せ*/
  background: #ff0000;
  overflow: hidden;/*はみ出た部分を隠す*/
}
.fl_tw2{/*ボタンの背景*/
  width: 90%;/*幅*/
  height: auto;/*高さ*/
  color: #FFF;/*文字・アイコン色*/
  display: inline-block;
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  vertical-align: middle;/*垂直中央寄せ*/
  background: #000;
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}
.fl_tw2 .fa-twitter {
    text-shadow: 2px 2px 0px #4287d6;
    font-size: 30px;
}
.fl_tw2 span {/*テキスト*/
  display:inline-block;
  width: 100%;
  transition: .5s;
  background: #000;
}
.fl_tw2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
.button {
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}
.more_button {
  display: inline-block;
  width: 200px;
  height: auto;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.more_button::before,
.more_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.more_button,
.more_button::before,
.more_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.more_button {
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: #888;
  border: 1px solid #888;
  color: #efefef;
  line-height: 25px;
  overflow: hidden;
}
.more_button:hover {
  color: #fff;
}
.more_button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.more_button:hover::after {
  background: #000;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/*
wp
------------------------------------------------------------------------------*/
.item-deta-cont {
  margin-bottom: 50px;
}
.move-cont {
  display: flex;
}
/*
サイドナビ
-----------------------------*/
.side-cont {
  margin-bottom: 15px;
}
.side-cont img {
  width: 100%;
}
div#skpln table#skplncategory, div#skpln table#skplnranking, div#skpln table#skplncalendar {
    margin-bottom: 20px;
    border-collapse: collapse;
}
table#skplncategory {
    width: 200px;
    border: solid 1px #26282b;
}
#skpln, #skpln table, #skpln table th, #skpln table tr, #skpln table td {
    padding: 0;
    margin: 0;
}
table#skplncategory tr th {
    padding: 0;
}
table#skplncategory table, table#skplnranking table, table#skplncalendar table {
    border-collapse: collapse;
    width: 100%;
}
table#skplncategory table tr td {
    padding: 8px 10px;
    vertical-align: middle;
}
table#skplncategory td td.skplncateparent, table#skplncategory td td.skplncateparent a {
    color: #d81e05;
    font-size: 12px;
    background-color: #1b1d20;
    font-weight: bold;
}
table#skplncategory tr th div {
    margin: -1px -1px 0;
    text-align: center;
}
table#skplncategory table tr:first-child td {
  display: table;
    border-top: none;
}
table#skplncategory td td.skplncateparent {
  display: table;
}
table#skplncategory tr th div img {
    vertical-align: top;
}
table#skplncategory table tr td {
    padding: 8px 10px;
    vertical-align: middle;
}
table#skplncategory table td img {
    margin: 0 6px;
    vertical-align: middle;
}
table#skplncategory table td img, table#skplncategory td td.skplncateparent a {
  display: table-cell;
}
table#skplncategory td td.skplncateparent a {
  width: 100%;
  padding: 10px 0;
}
.companyColumn h2 {
  margin-top: 30px;
  font-size: 1.4rem;
}
#Company .textArea {
  width: 100%;
  margin: 0 auto;
}
#Company .textArea h2 {
  text-align: left;
}
#Company .textArea h3 {
  text-align: left;
}
#Company .textArea img {
  width: initial;
  max-width: 100%;
}
#Company .textArea div {
  float: none;
  width: 100%;
  margin: 30px 0 50px 0;
  text-align: center;
}
#Company .textArea div span {
  display: inline-block;
  width: 25%;
  font-weight: bold;
  color: #787878;
  vertical-align: middle;
}
#Company .textArea div:nth-child(1) {
  margin: 50px 0 30px 0;
  text-align: left;
}
#Company .textArea div:last-child {
  margin-bottom: 100px;
}
#Company .textArea div p {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}
#Company .textArea div.requestBox {
  width: 0px;
height: 0px;
margin: 0 auto;
border-style: solid;
border-width: 30px 50px 0 50px;
border-color: #6C6A2D transparent transparent transparent;
}
.companyBox {
	background-image: url(https://u-turn.tokyo/wp/wp-content/themes/u-turn/images/bg2.jpg);
	background-size: cover;
	background-position: 50% 0;
}
#Company .textArea div span.box-cont {
  width: 75%;
  color: #000;
  font-weight: normal;
}
#privacy {
  line-height: normal;
}
#privacy h2 {
  font-size: 1.4rem;
}
#detail dl {
    padding: 20px 0;
    border-bottom: 1px solid #CCC;
}
#detail dt {
    font-weight: bold;
    font-size: 110%;
}
#detail dd {
    margin-bottom: 20px;
    margin-left: 20px;
    /* font-weight: bold; */
}

/*
パンくず
-----------------------------*/
.breadcrumbs {
  margin-bottom: 10px;
  font-size: 12px;
}




.two-column.right-set #secondary {
  float: left;
}
.two-column.right-set #content {
  float: right;
}
@media only screen and (max-width: 640px) {
}
@media screen and (min-width: 541px) {
  .feature_small {
    display: none;
  }
  .pc {
    display: none;
  }
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .infoText {
    display: none;
  }
  .feature_Box ul.feature_large {
    display: none;
  }
  .sp {
    display: none;
  }
  .sp_none {
    display: none;
  }
  #wrapper .sp {
    display: none;
  }
  img {
    width: 100%;
  }
  /*
  Header
  -----------------------------------------------------*/
  .header {
    position: relative;
    height: 70px;/*ドロップメニューのスクロール指定に必要*/
    box-shadow: 0 1px 4px rgba(136,136,136,.28);
    -moz-box-shadow: 0 1px 4px rgba(136,136,136,.28);
    -webkit-box-shadow: 0 1px 4px rgba(136,136,136,.28);
  }
  .headerArea {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .header h1 {
    float: none;
    width: 100%;
    margin: 0 auto;
    /*padding: 10px 0;*/
    text-align: center;
    font-size: 2.8rem;
    /*border-bottom: 1px solid #ccc;*/
  }
  .headerRight {
    float: none;
  }
  .fixed{
    position:fixed;
    z-index:9999999;
    background:#fff;
  }
  .i-fixed {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10000;
  }
  .logo{
      width:50%;
      margin:10px;
  }
  #container {
    padding-top: 70px;
  }
  nav {
    text-align: center;
    background: none;
  }
  .navArea {
    padding-top: 70px;
    /*border-bottom: 1px solid #ccc;*/
  }
  .navArea li {
    width: 20%;
    float: left;
    /*padding: 1%;*/
    border-right: 1px solid #e8e8e8;
    box-sizing: border-box;
  }
  .navArea li:nth-child(5) {
    border-right: 0;
  }
  .navArea a {
    display: block;
    padding: 10% 0;
    color: #f7bf20;
    font-size: 10px;
  }
  header p {
    margin: 20px 0;
    text-align: center;
  }
  header .rankingBox p {
    margin: 0;
  }
  .menuArea {
  	position: absolute;
  	top: 0;
  	width: 100%;
  	height: auto;
  }
  .menuArea p {
  	margin-top: 38px;
  	color: #000;
  	font-size: .6rem;
  }
  .menu-trigger,
  .menu-trigger span{
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor :pointer;
  }
  .menu-trigger{
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2;
  }
  .menu-trigger span{
    position: absolute;
    background: #000;
    width: 30px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .menu-trigger span:nth-of-type(1){
    top: 15px;
  }
  .menu-trigger span:nth-of-type(2){
    top: 0;
    bottom: 0;
  }
  .menu-trigger span:nth-of-type(3){
    bottom: 15px;
  }
  .menu-trigger.active span:nth-of-type(1){
    -webkit-transform: translateY(9px) rotate(-45deg);
  	transform: translateY(9px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2){
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
  	transform: translateY(-9px) rotate(45deg);
  }
  .g-nav{
    display: none;
    /*position: absolute;
    top: 61px;*/
    position: fixed;
    top: 70px;
    bottom: 0;
    overflow-y: auto !important;
    width: 100%;
    height: auto;
  	box-shadow: 0 1px 4px rgba(136,136,136,.28);
  	-moz-box-shadow: 0 1px 4px rgba(136,136,136,.28);
  	-webkit-box-shadow: 0 1px 4px rgba(136,136,136,.28);
  }
  /*.g-nav .list{
    padding: 20px 0;
  }*/
  .g-nav .lighter {
  	margin: 0;
  	padding: 20px 0;
    text-align: center;
  	background: #fff;
  	border-bottom: 1px solid #e8e8e8;
  }
  header .g-nav .lighter p {
    margin: 0;
    margin-top: 0;
  }
  .g-nav .list {
  	background: #f8f8f8;
  }
  .g-nav .list .item{
    border-bottom: 1px solid #e8e8e8
  }
  .g-nav .list .item a{
    display: block;
  	padding: 15px;
    text-align: left;
    text-decoration: none;
    color: #000;
  }
  .g-nav .list .item img {
    width: 26px;
    margin-right: 10px;
  }
  .menuArea .fa {
  	margin-right: 14px;
  }
  /*.menuArea li:nth-child(1) .fa {
  	margin-left: 5px;
    margin-right: 17px;
  }*/
  .menuArea .fa:before {
  	font-size: 1.6rem;
  	color: #dab866;
  }
  .searchBox {
  	width: 60%;
  }

  /*
  main
  -----------------------------------------------------*/
  #swipebox-close {
    top: 70px !important;
  }
  #main {
    padding-top: 0;
  }
  #topWrapper {
    width: 100%;
  }
  #pickup{
      padding: 30px 0 80px 0;
  }
  .mainArea {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mainItem {
    width: 100%;
  }
  .mainItem li {
    float: none;
    display: inline-block;
    width: 45%;
    height: auto;
    margin: 3px;
  }
  .rankingArea {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .tab{
    width:100%;
}
  .tab li {
    width: 33%;
    padding: 5px 0;
  }
  .tab li:nth-child(1) {
    margin-left: 1px;
  }
  .tab li:nth-child(3) {
    margin-right: 0;
  }
  .button {
    margin-top: 5px;
  }
  .content li{
    width:100%;
}
  .rankingBox {
    text-align: center;
  }
  .rankingBox div {
    width: 33%;
    margin-bottom: 30px;
  }
  .rankingBox img {
    height: auto;
  }
  .rankingBox p {
    text-align: left;
  }
  .rankingBox p span {
    display: block;
    text-align: center;
  }
  .rankingBox p .text {
    display: inline;
  }
  .p_left{
    padding:0 0 0 2.4% !important;
}
  .p_right{
    padding:0 3% 0 2% !important;
}

  .p_none {
    padding:0 !important;
  }
  .link-cont {
    display: table;
    margin-bottom: 30px;
  }
  .link-cont li {
    display: table-cell;
    padding-right: 3px;
  }
  .link-cont li:last-child {
    padding-right: 0;
    padding-left: 3px;
  }
  .mainItem .itemBox li {
    width: 98%;
    margin: 0 auto;
  }
  .mainItem .itemBox li:nth-child(even) {
    float: none;
  }
  .mainItem img {
    height: auto;
  }
  .featurBox {
    float: none;
    width: 98%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .feature_Box ul {
    width: 100%;
  }
  .featurBox li {
    float: left;
  }
  .featurBox li:nth-child(1) {
    width: 45%;
  }
  .featurBox li:nth-child(2) {
    width: 50%;
  }
  .featurBox p {
    margin: 0 auto;
  }
  .featurBox p:nth-child(1) {
    font-size: 1.6rem;
  }
  .featurBox p:nth-child(2) {
    font-size: 1.4rem;
  }
  .feature_small  {
    width: 100%;
  }
  .feature_small li {
    width: 47%;
    padding: 0;
  }
  .feature_small li:nth-child(odd) {
    float: left;
    padding-left: 2%
  }
  .feature_small li:nth-child(even) {
    float: right;
    padding-right: 2%;
  }
  .pickupArea h2 {
    padding: 20px;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 24px;
  }
  .pickupArea span {
    font-size: 1.4rem;
  }
  .pickupItem {
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .pickupItem img {
    float: none;
    width: 80%;
  }
  .itemText {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
  .itemText p:nth-child(1) {
    padding: 10px 0 5px 0;
    font-size: 2rem;
  }
  .itemText p:nth-child(2) {
    font-size: 1.4rem;
  }
  .itemText p span {
    width: 85px;
    height: auto;
    margin-right: 20px;
    color: #FFF;
    border-radius: 7px;
    display: inline-block;
    text-align: center;
    font-size: 1.4rem;
    line-height: 28px;
    vertical-align: middle;
    background: #ff0000;
    overflow: hidden;
  }
  .pickupItem p:nth-child(3) {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: left;
    font-size: 1.8rem;
    border: none;
  }
  .itemsubText {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .itemsubText span {
    float: left;
    padding: 0;
    font-size: 1.4rem;
  }
  .itemsubText p {
    float: right;
    padding: 0;
    font-size: 2.6rem;
    border: none;
  }
  .fl_tw2 {
    font-size: 1.6rem
  }
  .infoArea {
    padding: 20px;
  }
  /*
  Footer
  -----------------------------------------------------*/
  .footerArea {
    width: 100%;
    margin-bottom: 0;
  }
  .footerBox {
    margin: 0 auto;
    /*margin-top: 20px;*/
    margin-bottom: 20px;
  }
  .footerIcon {
    width: 100%;
    margin-bottom: 20px;
  }
  .footerIcon img {
    width: auto;
  }
  .accordion {
    margin-bottom: 20px;
    background: #fff;
  }
  .accordion ul {
    display: none;
  }
  .accordion span {
    display: block;
    cursor: pointer;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  .accordion li {
    cursor: pointer;
    padding: 10px 20px;
    text-align: left;
  }
  .accordion .fa {
    float: right;
  }
  .accordion .fa:before {
    font-size: 2.6rem;
    vertical-align: middle;
  }
  .footerContents {
    margin: 0;
  }
  .footerArea .footerContents p {
    float: none;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding:10px 0;
    border: 1px dashed;
  }
  /*
  Concept
  -----------------------------------------------------*/
  .conceptBox {
    width: 100%;
    margin-top: 20px;
  }
  /*
  footer
  -----------------------------------------------------*/
  #sm {
    padding-bottom: 1px;
    background: #fff;
  }
  .lHead {
    background: #000;
    padding: 14px 12px 12px;
    margin: 0;
    color: #dab866;
    font-size: 12px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: left;
    width: initial;
    font-weight: bold;
    line-height: 1;
  }
  #sm > ul.rstLinkCmnBlock.rstNaviList {
    width: 96%;
    margin: 12px auto 12px !important;
  }
  ul.rstLinkCmnBlock.rstNaviList > li {
    box-sizing: border-box !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 11px 0 !important;
  }
  ul.rstLinkCmnBlock.rstNaviList > li > a {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    box-sizing: border-box !important;
    padding: 19px 0 0 0 !important;
    margin: 0 !important;
    text-align: center !important;
    color: #dab866;
    border: 1px solid #cccccc !important;
    background: #000 !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    line-height: 12px !important;
  }
  #rstSearch {
      clear: both;
      overflow: hidden;
      padding: 10px 5px;
      border-top: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2;
      background-color: #efefef;
      margin-bottom: 0;
  }
  #sm > #rstSearch {
    border: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    padding-bottom: 11px !important;
  }
  #rstSearch form {
      margin: 0 10px;
  }
  #rstSearch input[type=text] {
    border: #666 2px solid;
    font-size: 120%;
    height: 33px;
    width: 75%;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
    float: left;
  }
  #sm input#sitem {
      width: 75%;
      float: left;
  }
  #rstSearchSubmit {
    float: left;
    width: 25%;
    height: 33px;
  }
  #rstSearchSubmit input[type=submit] {
    padding: 0 10px;
    border: none;
    color: #fcfbfd;
    background: #666;
    font-weight: bold;
    font-size: 110%;
    width: 100%;
    height: 33px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
  }
  #Company .textArea div span {
    width: 100%;
  }
  #Company .textArea div span.box-cont {
    width: 100%;
  }
  .move-cont {
    display: flex;
    background: #000;
  }
  .move-cont div {
    margin: 0 auto !important;
  }
  .news-wrap {
    width: 98%;
  }
}
