@charset "EUC-JP";

/* ==========================================================
 html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section
{ display: block;}
html.jsMenuOpen {
  position: fixed;
  top: 0;
  width: 100%;
}
/* ==========================================================
 reseting
========================================================== */
body {
  line-height: 1.5;
  color: #3B3B3B;
  font-size: 12px;
  -webkit-text-size-adjust: 100%;
}
body, input, textarea, select, button {
  font-family: "Hiragino Kaku Gothic ProN","Meiryo", sans-serif;
}
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, button, figure, figcaption
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
input, textarea
{/*-webkit-appearance: none;*/}
textarea
{ resize: none;}
button
{ border: none; overflow: visible; background: none; vertical-align: top;  font-size: 100%; color: inherit; cursor: pointer; -webkit-appearance: none;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ height: auto; vertical-align: top;}
address, caption, code, em, th
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6, strong, em
{ font-size: 100%; font-weight: normal;}
a, input, select, button
{ outline: none; -webkit-tap-highlight-color:rgba(0,0,0,0); }
sup, sub
{ font-size: 63%;}
sup
{ vertical-align: top;}
sub
{ vertical-align: baseline;}
*
{ box-sizing: border-box; -webkit-box-sizing: border-box;}
input:-webkit-autofill
{ -webkit-box-shadow: 0 0 0px 1000px rgb(255,255,255) inset;}
/* ==========================================================
 base Link
========================================================== */
a {
  color: #479AD3;
  text-decoration: underline;
}
a:visited {}
a:hover,
a:active,
a:focus {
  color: #CE1C00;
  text-decoration: underline;
}
/* ==========================================================
 layout
========================================================== */
html { overflow-y: scroll;}
body { text-align: center;}
html,
body { min-width: 1200px;}
/* ==========================================================
 wrapper
========================================================== */
.wrapper {
  overflow: hidden;
  width: 100%;
}

.s-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.s-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.s-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-utility,
.header-tools,
.header-form,
.header-links,
.header-tags,
.header-btn {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* ==========================================================
 header
========================================================== */
.header {
  position: relative;
  width: 100%;
  z-index: 5;
  border-bottom: 5px solid #CE1C00;
}
  .header-in {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  .header-logo {
    float: left;
    width: 194px;
    padding: 15px 0 0 5px;
  }
    .header-logo img {
      width: 100%;
      height: auto;
    }
  .header-utility {
    height: 90px;
    padding: 5px 0;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
    .header-search {
      position: relative;
      width: 700px;
      height: 40px;
      margin: 20px 23px 0 0;
      border: 2px solid #BF1901;
      -webkit-border-radius: 28px;
      -moz-border-radius: 28px;
      border-radius: 28px;
    }
    .header-search-input {
      width: 500px;
      height: 30px;
      padding: 3px 10px 3px 5px;
      margin: 3px 0 0 10px;
      border: none;
      background-color: transparent;
      -webkit-appearance: none;
    }
    .header-search-btn {
      margin: -2px -2px 0 0;
    }
    .header-detail-btn {
      width: 120px;
      height: 38px;
      padding: 8px 20px;
      border-left: 1px solid #7E7E7E;
      cursor: pointer;
    }
    .header-detail-txt {
      display: block;
      position: relative;
      font-size: 14px;
      line-height: 1.5;
      color: #7E7E7E;
    }
    .header-detail-txt::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 0;
      height: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      border-style: solid;
      border-width: 8px 7px 0 7px;
      border-color: #bf1a01 transparent transparent transparent;
    }
    .header-detail {
      display: none;
      position: absolute;
      top: 38px;
      left: 50%;
      width: 880px;
      padding: 30px 35px 25px;
      background-color: #fff;
      border: 1px solid #A0A0A0;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 3;
    }
    .header-detail.is-active {
      display: block;
      z-index: 10;
    }
    .header-detail .box-search {
      position: relative;
    }
    .header-detail::after {
      content: '';
      position: absolute;
      top: -8px;
      right: 188px;
      width: 14px;
      height: 14px;
      border-top: 1px solid #A0A0A0;
      border-right: 1px solid #A0A0A0;
      background-color: #fff;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    .header-detail .box-search-btn {
      -webkit-align-items: flex-end;
      -ms-flex-align: end;
      align-items: flex-end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    }
    .header-detail .box-search-reset {
      margin-right: 20px;
    }

  .header-login-btn{
    display: block;
    background:url('/buyer_resources/resources/images/btn21.png') no-repeat 0 0;
    text-indent: -999px;
    width: 190px;
    height: 41px;
    border:none;
    cursor: pointer;
  }

  .header-tools {
    position: relative;
  }
  .header-tools-item {
    width: 80px;
    height: 80px;
    margin-left: 10px;
  }
    .header-tools-item a,
    .header-tools-item span{
      display: block;
      padding-top: 60px;
      height: 80px;
      font-size: 11px;
      line-height: 1.54;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
    }
    .header-login {
      background: url(/buyer_resources/resources/images/icon05.png) no-repeat center  6px;; /* KIKAN_UNNYOU-11421 */
      color: #808080;
    }
    .header-watchlist {
      background: url(/buyer_resources/resources/images/icon02.png) no-repeat center 10px;
      color: #FF5D5D;
    }


  .header-links {
    height: 45px;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
    .header-tags {
      padding: 10px 0;
    }
      .header-tags dt {
        margin-right: 8px;
        color: #7E7E7E;
      }
      .header-tags dd {
        margin-right: 5px;
      }
      .header-tags .tag {
        margin-right: 15px;
        font-size: 14px;
        line-height: 1.5;
        color: #479AD3;
        text-decoration: underline;
        cursor: pointer;
      }
    .header-btn li {
      padding-left: 10px;
    }

/* ==========================================================
 nav-global
========================================================== */
.nav-global {
  background-color: #404040;
}
  .nav-global-in {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  .nav-global-in > ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-left: 1px solid #000;
    border-right: 2px solid #000;
  }
  .nav-global-in > ul > li {
    position: relative;
    width: 133px;
    border-left: 1px solid #000;
  }
    .nav-global-in > ul > li > a {
      text-decoration: none;
    }
    .nav-global-in > ul > li > a > div {
      display: block;
      height: 45px;
      padding: 14px 0;
      border-top: 1px solid #747474;
      font-size: 13px;
      line-height: 1.3;
      font-weight: bold;
      text-align: center;
      color: #fff;
      text-decoration: none;
      vertical-align: middle;
      cursor: pointer;
    }
    .nav-global ul ul {
      display: none;
      padding: 8px 13px 11px;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background-color: #CE1C00;
    }
    .nav-global li li a{
      font-size: 14px;
      line-height: 1.7;
      font-weight: bold;
      color: #fff;
      white-space: nowrap;
    }

    /* hover */
    .nav-global-in > ul > li:hover {
      background-color: #CE1C00;
    }
    .nav-global-in > ul > li:hover > a > div{
      color: #D6D6D6;
    }
    .nav-global-in > ul > li.nav01:hover ul,
    .nav-global-in > ul > li.nav02:hover ul,
    .nav-global-in > ul > li.nav03:hover ul,
    .nav-global-in > ul > li.nav04:hover ul,
    .nav-global-in > ul > li.nav05:hover ul,
    .nav-global-in > ul > li.nav06:hover ul,
    .nav-global-in > ul > li.nav07:hover ul,
    .nav-global-in > ul > li.nav08:hover ul {
      display: block;
    }
    .nav-global li li:hover a {
      color: #D6D6D6;
    }

    /* extra */
    .nav-global li.nav09 ul {
      left: auto;
      right: 0;
    }
    .nav-global-in > ul > li.nav03 > a > div,
    .nav-global-in > ul > li.nav09 > a > div {
      font-size: 13px;
    }
    .nav-global-in > ul > li.nav08 > a > div {
      font-size: 12px;
    }
    .nav-global-in > ul > li.nav03 > a > div {
      padding: 6px 0;
    }
    .nav-global-in > ul > li.nav08 > a > div {
      padding: 7px 0;
    }
/* ==========================================================
 nav-local
========================================================== */
.nav-local {
  padding: 45px 0 60px;
  border-bottom: 10px solid #3B3B3B;
}
  .nav-local-in {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  .nav-local-grid {
    margin-right: -25px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
    .nav-local-col {
      width: 20%;
      padding-right: 25px;
    }
      .nav-local .ttl {
        padding: 3px 0;
        background-color: #E5E5E5;
        text-align: center;
      }
      .nav-local ul {
        padding: 8px 0px 24px 10px;
      }
      .nav-local a {
        font-size: 13px;
        line-height: 1.85;
        color: #000;
      }
      .nav-local a:hover {
        color: #CE1C00;
      }

/* ==========================================================
 nav-breadcrumb
========================================================== */
.nav-breadcrumb {
  overflow: hidden;
  max-width: 1200px;
  min-width: 1200px;
  padding: 45px 0 5px;
  margin: 0 auto;
  text-align: left;
}
  .nav-breadcrumb li {
    float: left;
    position: relative;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.5;
    color: #CE1C00;
  }
  .nav-breadcrumb i {
    font-size: 11px;
    line-height: 1.63;
  }

    .nav-breadcrumb li a {
      color: #3B3B3B;
      text-decoration: none;
    }
    .nav-breadcrumb li a:hover {
      text-decoration: underline;
    }
/* ==========================================================
 contents
========================================================== */
.contents {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.contents-main {
  padding: 0 20px 22px 0;
  max-width: 900px;
  min-width: 800px;
  width: 100%;
}
.contents-sub {
  width: 300px;
  min-width: 300px;
}

.contents-login {
  padding: 0 20px 22px 0;
  max-width: 1100px;
  min-width: 1100px;
  width: 100%;
}
/* ==========================================================
 footer
========================================================== */
.footer {
  overflow: hidden;
  width: 100%;
}
  .footer-tools {
    border-top: 10px solid #CE1C00;
  }
  .footer-in {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  .footer-links {
    width: 100%; /* KIKAN_UNNYOU-10648 */
    margin: 0 auto;
    padding: 20px 0 0;
  }
    .footer-links li {
      position: relative;
      height: 13px;
      padding: 0 35px;
      font-size: 13px;
      line-height: 1;
      border-right: 1px solid #479AD3;
    }
    .footer-links li:last-child {
      border-right: none;
    }
  .footer-utility,
  .footer-bnr,
  .footer-sns {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .footer-utility {
    padding: 30px 0 5px;
  }
  .footer-logo {
  }
  .footer-bnr {
    width: 678px;
    padding: 0 30px;
  }
  .footer-sns {
    width: 140px;
  }
  .footer-gmo {
    margin-left: 10px;/* KIKAN_UNNYOU-12708 */
  }
  .footer-copyright {
    padding: 3px;
    background-color: #CE1C00;
    font-size: 13px;
    line-height: 1.85;
    text-align: center;
    color: #fff;
  }

.footer_copyright_cre .footer-utility {
    padding: 5px 0 5px;
}
.footer-dummy {
  margin-right : 260px;
}
.footer_copyright_cre_head {
    color: #333;
    font-size: 14px;
}

.footer_copyright_cre_siteseal {
    color: #333;
    font-size: 14px;
}

.footer_copyright_cre_body{
    font-size: 10px;
    color: #aaa;
    line-height: 1.2em;
}

/* ==========================================================
 grid
========================================================== */
/* grid-cmn
---------------------------------------------------------- */
.grid-cmn {
}
  .grid-cmn > .col {
  }
/* ==========================================================
 area
========================================================== */
/* area-cmn
---------------------------------------------------------- */
.area-cmn {
}
/* ==========================================================
 section
========================================================== */
/* sec-cmn
---------------------------------------------------------- */
.sec-cmn-01 {
}
/* section last margin */
section:last-of-type {
  margin-bottom: 0;
}
/* ==========================================================
 box
========================================================== */
/* box-cmn
---------------------------------------------------------- */
.box-cmn {
}

/* box-star
---------------------------------------------------------- */
.box-star {
}
  .box-star .owl-stage-outer{
    margin-right: -4px;
  }
  .box-star-item {
    position: relative;
    padding: 8px 0 0;
  }
  .box-star-item .tag {
    position: absolute;
    top: 0;
    right: -4px;
    width: 105px  !important;
    height: 39px !important;
    z-index: 5;
    pointer-events: none;
  }


/* login-page
---------------------------------------------------------- */
.login {
  display: block;
  position: relative;
}
.login-in {
  position: relative;
  width: 100%;
  padding: 25px 40px 40px 25px;
  background-color: #fff;
}
.login-col {
  width: 400px;
}
.login-txt {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.login-list {
  width: 310px;
}
.login-list dt{
  font-size: 16px;
  line-height: 1.5;
}
.login-list dd{
  margin-bottom: 20px;
}
.login-list dd:last-child{
  margin-bottom: 0;
}
.login .form-cmn-input{
    padding: 8px;
  }
.login-link {
    padding: 8px 0 18px;
    font-size: 16px;
    line-height: 1.5;
  }
.login-loginlocked {
	border: 1px solid #c33933;
	background-color: #ffcccc;
	padding: 6px 6px 6px 6px;
	width: 85%;
	margin-bottom: 20px;
}
.login-loginlocked .title {
	font-size: 19px;
	font-weight: bold;
	color: #c33933;
	background: url(/resources/images/exclamation.png) no-repeat left center;
	padding-left: 26px;
	height:30px;
}
.require{
	color:#C00;
	font-weight:bold;
}


/* box-login
---------------------------------------------------------- */
.box-login {
  display: none;
  position: absolute;
  top: 85px;
  right: 0;
  z-index: 3;
}
.box-login.is-active {
  display: block;
  z-index: 10;
}
.box-login-in {
  position: relative;
  width: 790px;
  padding: 25px 40px 40px 25px;
  border: 1px solid #A0A0A0;
  background-color: #fff;
  z-index: 10;
}
.box-login-in::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 120px;
  width: 14px;
  height: 14px;
  border-top: 1px solid #A0A0A0;
  border-right: 1px solid #A0A0A0;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
  .box-login-txt {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .box-login-list {
    width: 310px;
  }
  .box-login-list dt{
    font-size: 16px;
    line-height: 1.5;
  }
  .box-login-list dd{
    margin-bottom: 20px;
  }
  .box-login-list dd:last-child{
    margin-bottom: 0;
  }

  .box-login .form-cmn-input{
    padding: 8px;
  }

  .box-login-link {
    padding: 8px 0 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .box-login-link-bottom { /* KIKAN_UNNYOU-10648 */
    padding: 18px 0 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .checkbox-login {
    position: relative;
  }
    .checkbox-login input[type="checkbox"] {
      /* opacity: 0; */
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
    .checkbox-login label {
      display: block;
      padding-left: 30px;
      margin-top: 5px;
    }
    .checkbox-login input[type="checkbox"] + label {
    }
    .checkbox-login input[type="checkbox"]:checked + label {
    }

#background_panel{
  margin: 0;
  /*display: none;*/
}
#background_panel.is-active{
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
}
#loading_panel{
  margin: 0;
  /*display: none;*/
}
#loading_panel.is-active{
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
}

/* box-category
---------------------------------------------------------- */
.box-category {

}
.box-category-item {
  width: 50%;
  padding: 10px;
}
  .box-category-item .img{
    width: 150px;
    padding-right: 12px;
    flex: 1 0 auto;
  }
  .box-category-item .content{
    width: 100%;
  }
  .box-category-item .ttl{
    margin: 2px 0 4px;
  }
  .box-category-item .ttl a{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 34px;
    font-size: 14px;
    line-height: 1.28;
  }
  .box-category-item .txt{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 60px;
    font-size: 12px;
    line-height: 1.25;
  }
  .box-category-item .txt-price{
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    text-align: right;
    color: #F00000;
  }

  .box-category-link{
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
  }

  /* .ico-pickup */
  .ico-category-pic,
  .ico-category-new{
    position: relative;
    padding-left: 64px !important;
  }
  .ico-category-pic .ico,
  .ico-category-new .ico {
    position: absolute;
    top: 50%;
    left: 0;
    width: 56px;
    height: 20px;
    border: 1px solid #CE1C00;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 1.67;
    text-align: center;
  }

/* box-category-top
---------------------------------------------------------- */
.box-category-top{

}
  .box-category-top .box-category{
    padding: 0 65px;
  }
  .box-category-top .box-category-item{
    width: 335px;
  }
  .box-category-top .box-category-item .ttl-l {
    margin: 2px 0 4px;
    font-size: 15px;
    line-height: 1.2;
  }
  .box-category-top .box-category-item .txt-l {
    font-size: 12px;
    line-height: 1.5;
  }

/* box-cmn
---------------------------------------------------------- */
.box-search-cmn {
}
  .ttl-search-cmn {
    padding: 3px 10px;
    border-left: 5px solid #CE1C00;
    background-color: #3B3B3B;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
  }
  .box-search-cmn-in {
    position: relative;
    width: 100%;
    padding: 20px 10px 0 10px;
  }
  .box-search-cmn-in .box-search{
    padding-right: 50px;
  }
  .box-search-cmn .ico-search {
    position: relative;
    padding-left: 20px;
  }
  .box-search-cmn .ico-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(/buyer_resources/resources/images/icon04.png) no-repeat 0 0;
    background-size: 15px auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .box-search-cmn .box-search-btn {
    position: relative;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
    .box-search-cmn  .box-search-reset {
      position: absolute;
      bottom: 0;
      right: 0;
      margin-right: -15px;
    }
    button:active span,
    button:focus span
    {
      position: relative;
      top: 0px;
      left: 0px;
    }

/* box-search-cmn
---------------------------------------------------------- */
.box-search {

}
  .box-search-grid {

  }
  .box-search-col {
    max-width: 380px;
  }
  .box-search-col:first-of-type {
    margin-right: 10px;
  }

  /* .box-search-list */
  .box-search-list {
    width: 380px;
  }
    .box-search-list dt {
      float: left;
      clear: both;
      width: 100px;
      font-size: 14px;
      line-height: 2;
      color: #3B3B3B;
    }
    .box-search-list dd {
      margin: 0 0 13px 100px;
    }
    .box-search-list dd:last-child {
      margin-bottom: 0;
    }

    /* .box-search-cmn-01 */
    .box-search-cmn-01 .box-search-list dt.is-selected,
    .box-search-cmn-01 .box-search-list dd.is-selected {
      display: none;
    }

    /* .box-search-cmn-02 */
    .box-search-cmn-02 .box-search-list dt.is-listed,
    .box-search-cmn-02 .box-search-list dd.is-listed {
      display: none;
    }
    .box-search-cmn-02 .box-search-list dt.is-selected {
      width: auto;
    }
    .box-search-cmn-02 .box-search-list dd.is-selected {
      /*margin-left: 0;*/
    }
    .box-search-cmn-02 .box-search-list .is-selected {
      font-size: 16px;
      line-height: 1.75;
      color: #898989;
    }

    .box-search-list p {
      display: block;
      font-size: 14px;
      margin: 0 0 16px 100px;
      padding-top: 3px;
    }

    /* .box-01 */
    .box-01 {
      margin-right: 30px !important;
      max-width: inherit;
    }
    .box-01 .box-search-list {
      width: 410px;
    }
    .box-01 .box-search-list dt {
      width: 115px;
    }
    .box-01 .box-search-list dd {
      margin: 6px 0 6px 130px;
    }
    /* box-02 */
    .box-02{
      max-width: inherit;
    }
    .box-02 .box-search-list {
      width: auto;
    }
    .box-02 .box-search-list dt {
      width: 45px;
    }
    .box-02 .box-search-list dd {
      margin: 6px 0 6px 57px;
    }

/* .box-search-filters */
.box-search-filters {
  margin-top: -15px;
}
  .box-search-filters .label-filter {
    width: 88px;
    height: 25px;
    margin: 15px 0 0;
    border: 1px solid #D1D1D1;
    font-size: 10px;
    line-height: 2.3;
    color: #4D4D4D;
    text-align: center;
    cursor: pointer;
  }
  .box-search-filters .label-filter:hover {
    border: 1px solid #707070;
    color: #3B3B3B;
  }
  .box-search-filters .label-filter.is-active {
    border: 1px solid #479AD3;
    background-color: #479AD3;
    color: #fff;
  }

  .box-search-filters input[type=checkbox]{
    display:none;
  }

.box-search-tilde {
  font-size: 21px;
  line-height: 1.33;
  color: #000;
}

/* .box-search-btn*/
.box-search-btn {
  padding: 20px 0 0;
}
  .box-search-submit{
    display: block;
    background:url('/buyer_resources/resources/images/btn15.png') no-repeat 0 0;
    text-indent: -999px;
    width: 310px;
    height: 55px;
    border:none;
  }
  .box-search-reset {
    background-color: #fff;
    text-decoration: underline;
    border: 0px;
    font-size: 15px;
    color: #479AD3;
    cursor: pointer;
  }
  .box-search-reset:hover {
    color: #CE1C00;
  }
/* ==========================================================
 hero
========================================================== */
/* hero-cmn
---------------------------------------------------------- */
.hero-cmn {
}
  .hero-cmn-in {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }

/* hero-top
---------------------------------------------------------- */
.hero-top {
  overflow: hidden;
  width: 100%;
  max-width: 2961px;
  min-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #e8e8e8;
}
  .hero-top-in {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0 0;
  }


/* hero-news
---------------------------------------------------------- */
.hero-news {
  background-color: #F5F5F5;
}
  .hero-news-in {
    max-width: 950px;
    margin: 0 auto;
    text-align: left;
  }
  .list-news {
    max-width: 1200px;
    min-width: 1200px;
    margin: 0 auto 20px auto;
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.3;
    text-align: left;
  }
    .list-news li{
      position: relative;
    }
    .list-news li.tag-info .ttl{
      position: absolute;
      top: 50%;
      left: 0;
      width: 58px;
      height: 19px;
      border: 1px solid #707070;
      text-align: center;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      letter-spacing: 0.27em;
    }

/* ==========================================================
 module
========================================================== */
.module-bnr-01 {
  padding: 0 5px;
}
  .module-bnr-01 .item{
    overflow: hidden;
    width: 50%;
    padding: 0 5px;
    text-align: center;
  }

/* mod-main-slider
---------------------------------------------------------- */
.mod-main-slider {
  position: relative;
  overflow: hidden;
  width: 2961px;
  margin: 0 auto;
  left: 50%; /* 画像の左端が画面中央にくる */
  margin-left: -1480px; /* 画像幅の半分だけ左に移動する */
}
  .mod-main-slider .mod-main-slider-in {
    white-space: nowrap;
  }
  .mod-main-slider .item {
    display: inline-block;
    width: 980px;
    padding: 0 15px;
    vertical-align: top;
    white-space: normal;
  }
    .mod-main-slider .item a {
      display: block;
      outline: none;
    }
  .mod-main-slider .btn-prev,
  .mod-main-slider .btn-next {
    overflow: hidden;
    position: absolute;
    top: 90px;
    left: 248px;
    z-index: 1;
    width: 23px;
    height: 23px;
    background: url(/buyer_resources/resources/images/btn19.png) no-repeat;
    text-indent: -999px;
  }
  .mod-main-slider .btn-next {
    left: auto;
    right: 248px;
    background: url(/buyer_resources/resources/images/btn20.png) no-repeat;
  }
  .mod-main-slider .pager {
    width: 950px;
    margin: 0 auto;
    text-align: right;
    vertical-align: top;
    background-image: url(https://www.infotop.jp/html/cm/PRicon.png);
    background-repeat: no-repeat;
    background-position: 725px 2px;
  }
    .mod-main-slider .pager button {
      position: relative;
      display: inline-block;
      padding: 5px 4px;
      border: none;
      cursor: pointer;
    }
      .mod-main-slider .pager button span {
        display: block;
        width: 32px;
        height: 7px;
        background-color: #ACACAC;
      }
        .mod-main-slider .pager button .thumbnail {
          position: absolute;
          bottom: 100%;
          left: 50%;
          z-index: -1;
          display: block;
          transform: translateX(-50%);
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.2s ease;
        }
        .mod-main-slider .pager button:hover .thumbnail {
          z-index: 2;
          opacity: 1;
          visibility: visible;
        }
    .mod-main-slider .pager button:last-child {
      padding-right: 0;
    }
    .mod-main-slider .pager button:hover span,
    .mod-main-slider .pager button.is-active span {
      background-color: #CE1C00;
    }

/* ==========================================================
 title
========================================================== */
/* ttl-cmn-01
---------------------------------------------------------- */
.ttl-cmn-01 {
  margin-bottom: 20px;
  border-bottom: 3px solid #CE1C00;
  font-size: 36px;
  line-height: 1.42;
  font-weight: bold;
  color: #000;
}
/* ttl-cmn-02
---------------------------------------------------------- */
.ttl-cmn-02 {
  padding: 10px 10px 0 10px;
  border-bottom: 2px solid #CE1C00;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
}
/* ttl-cmn-03
---------------------------------------------------------- */
.ttl-cmn-03 {
  padding: 2px 0;
  font-size: 24px;
  font-weight: bold;
  color: #CE1C00;
}
/* ==========================================================
 text
========================================================== */
/* txt-cmn
---------------------------------------------------------- */
.txt-cmn {
}
/* ==========================================================
 list
========================================================== */
/* list-cmn
---------------------------------------------------------- */
.list-cmn {
}
  .list-cmn li {
  }
/* ==========================================================
 table
========================================================== */
/* table-cmn
---------------------------------------------------------- */
.table-cmn {
}
  .table-cmn th,
  .table-cmn td {
  }
  .table-cmn th {
  }
  .table-cmn td {
  }
/* ==========================================================
 button
========================================================== */
/* btn-cmn
---------------------------------------------------------- */
.btn-cmn {
}

.btn-cmn-red{
  display: block;
  background:url('/buyer_resources/resources/images/btn21_s.png') no-repeat 0 0;
  color: #fff;
  text-align: center;
  width: 90px;
  height: 41px;
  border:none;
  cursor: pointer;
}
/* pagetop
---------------------------------------------------------- */
.btn-cmn-pagetop {
  text-align: right;
}
/* ==========================================================
 link
========================================================== */
/* link-cmn
---------------------------------------------------------- */
.link-cmn {
}
/* ==========================================================
 icon
========================================================== */
/* ico-cmn
---------------------------------------------------------- */
.ico-cmn {
}
/* ico-star
---------------------------------------------------------- */
.ico-star{
  position: relative;
  padding-left: 25px !important;
}
.ico-star::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/buyer_resources/resources/images/icon10.png) no-repeat 0 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* ==========================================================
 figure
========================================================== */
/* fig-cmn
---------------------------------------------------------- */
.fig-cmn {
}
/* ==========================================================
 image
========================================================== */
/* img-cmn-adjust
---------------------------------------------------------- */
.img-cmn-adjust {
}
/* ==========================================================
 form
========================================================== */
/* base Form
---------------------------------------------------------- */
/* type="text" */
input[type="text"] {
}
/* type="checkbox" */
input[type="checkbox"] {
}
/* type="radio" */
input[type="radio"] {
}
/* type="submit" */
input[type="submit"] {
  cursor: pointer;
}
/* select */
select {
}
/* textarea */
textarea {
}
/* button */
button {
}
/* class Form
---------------------------------------------------------- */
/* form-cmn-input
---------------------------------------------------------- */
.form-cmn-input {
  width: 100%;
  padding: 4px 5px;;
  border: 1px solid #707070;
}
.form-cmn-input.s-input-xl {
  width: 400px;
}
.form-cmn-input.s-input-l {
  width: 310px;
}
.form-cmn-input.s-input-m {
  width: 280px;
}
.form-cmn-input.s-input-s {
  width: 120px;
}
/* form-cmn-check
---------------------------------------------------------- */
.form-cmn-check {
}
/* form-cmn-radio
---------------------------------------------------------- */
.form-cmn-radio {
  margin-right: 31px;
  font-size: 16px;
}
.form-cmn-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.form-cmn-radio input[type="radio"] + label:after {
  opacity: 0;
}
.form-cmn-radio input[type="radio"]:checked + label:after {
  opacity: 1;
}
.form-cmn-radio label {
  position: relative;
  padding: 0 0 0 27px;
}
.form-cmn-radio label:before,
.form-cmn-radio label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid #707070;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.form-cmn-radio label:before {
  width: 18px;
  height: 18px;
  background-color: #fff;
}
.form-cmn-radio label:after {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #707070;
}

/* form-cmn-select
---------------------------------------------------------- */
.form-cmn-select {
  width: 100%;
  padding: 2px 5px;
  border: 1px solid #707070;
}
/* form-cmn-textarea
---------------------------------------------------------- */
.form-cmn-textarea {
}
/* form-cmn-button
---------------------------------------------------------- */
.form-cmn-button {
}
/* ==========================================================
 is
========================================================== */
/* opacity hover
---------------------------------------------------------- */
.is-opacity
{
  -ms-filter: 'alpha( opacity=100)';
  opacity: 1;
}
.is-opacity:hover
{
  -ms-filter: 'alpha( opacity=80)';
  filter: alpha( opacity=80);
  opacity: 0.8;
}
/* css animation
---------------------------------------------------------- */
.is-animate
{
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* ==========================================================
 style
========================================================== */
.s-fw-n     { font-weight: normal;}
.s-fw-b     { font-weight: bold;}
.s-ta-l     { text-align: left !important;}
.s-ta-c     { text-align: center !important;}
.s-ta-r     { text-align: right !important;}
.s-va-t     { vertical-align: top !important;}
.s-va-m     { vertical-align: middle !important;}
.s-va-b     { vertical-align: bottom !important;}
.s-ov-h     { overflow: hidden;}
.s-clear    { clear: both;}
.s-hide     { display: none;}
.s-txt-hide { text-indent: 100%; white-space: nowrap; overflow: hidden;}
.s-bg-n     { background: none !important;}
.s-mt-00    { margin-top: 0 !important;}
.s-mb-00    { margin-bottom: 0 !important;}
.s-ml-00    { margin-left: 0 !important;}
.s-mr-00    { margin-right: 0 !important;}

.s-pr-00    { padding-right: 0 !important;}

.s-mb-05    { margin-bottom: 5px !important;}
.s-mb-10    { margin-bottom: 10px !important;}
.s-mb-12    { margin-bottom: 15px !important;}
.s-mb-20    { margin-bottom: 20px !important;}
.s-mb-25    { margin-bottom: 25px !important;}
.s-mb-30    { margin-bottom: 30px !important;}
.s-mb-35    { margin-bottom: 35px !important;}
.s-mb-40    { margin-bottom: 40px !important;}
.s-mb-45    { margin-bottom: 45px !important;}
.s-mb-50    { margin-bottom: 50px !important;}
.s-mb-70    { margin-bottom: 70px !important;}
.s-mb-80    { margin-bottom: 80px !important;}

.float-l    { float: left;}
.float-r    { float: right;}
.float-n    { float: none;}

/* ==========================================================
 rwd switch
========================================================== */
/* pc
---------------------------------------------------------- */
.only-pc {}
.only-tb,
.only-sp,
.no-pc { display: none !important;}
.no-tb {}
.no-sp {}
/* tb
---------------------------------------------------------- */
@media screen and (max-width: 1024px) {
.only-pc,
.no-tb    { display: none !important;}
.only-tb,
.no-pc    { display: block !important;}
img.only-tb,
img.no-pc { display: inline-block !important;}
}
/* sp
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
.only-pc,
.no-sp,
.only-tb,
img.only-tb  { display: none !important;}
.only-sp,
.no-pc,
.no-tb     { display: block !important;}
img.only-sp,
img.no-pc,
img.no-tb  { display: inline-block !important;}
}
/* ==========================================================
 tool
========================================================== */
.atode { padding: 10px; border: 2px solid #8c0000; background-color: #ff4d4d; color: #fff; font-size: 30px; text-align: center;}

/* ==========================================================
 TOP Main Banner
========================================================== */
div#TopMainBannerFrame {
    width: 100%;
}
div#TopMainBannerFrame div#TopMainBanner {
    width: 100%;
    border-top: solid 1px #FFFFFF;
    border-bottom: solid 1px #FFFFFF;
    overflow: hidden;
}
div#TopMainBannerFrame div#TopMainBanner ul#TopMainBannerList {
    display: inline-block;
    height: 0;
    margin: 0;
    padding: 0;
}
div#TopMainBannerFrame div#TopMainBanner ul#TopMainBannerList li {
    float: left;
}

/* ==========================================================
 TOP Middle Banner
========================================================== */
.ad_top_middle {
  text-align:center;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* ------------------------------
 　ランキング
------------------------------ */
/*ボーダーなし */
table.noborder th,
table.noborder td{
    padding:6px;
}

table.noborder th{
    text-align:center;
}

#content h3.ranking{
    width:630px;
    height:50px;
    background:url(../images/heading_ranking.gif) no-repeat;
    text-indent:-9999px;
    margin:0;
    padding:0;
}

/* 背景色 */
.num1{background:#fcfade;}
.num2{background:#f4f4f4;}
.num3{background:#f6ece1;}
.light{background:#fff;}
.dark{background:#f4f4f4;}

/* 評価 */
.star img{
    vertical-align:text-top
}

/* ------------------------------
pickup css
------------------------------ */

div#pick_box {
	width: 740px;
	height: auto;
	margin: 10px auto 20px auto;
}

div#pick_box:after   {
	clear: both;
	content: '';
	display: block;
}

div#pick_1,
div#pick_2,
div#pick_3,
div#pick_4 {
	width: 370px;
	float: left;
	margin-bottom: 20px;
}

div#pick_img1,
div#pick_img2,
div#pick_img3,
div#pick_img4{
	width: 138px;
	height: auto;
	float: left;
}

div#pick_word1,
div#pick_word2,
div#pick_word3,
div#pick_word4{
	width: 160px;
	height: auto;
	float: left;
	margin-left: 8px;
}

div.pick_fs_1{
	margin-bottom: 5px;
	font-size: 13px;
}

/* ==========================================================
 reminder
========================================================== */
.contents-no-breadcrumbs {
  padding: 68px 20px 22px 0;
  max-width: 1100px;
  min-width: 1100px;
  width: 100%;
}

.contents-area {
  padding: 0 0 0 20px;
  font-size:16px;
}

.contents-area p{
  line-height: 25px;
}

.reminder-txt {
  padding: 8px 8px 8px 8px;
  background-color: #ffffff;
  border: 1px solid #707070;
}

.reminder-btn {
  margin: 0 0 0 20px;
}
/* ==========================================================
 auth/sendmail
========================================================== */
.auth_sendmail {
  margin-left:40px;
  font-size:16px;
  font-weight:bold;
}

/* ==========================================================
 エラーメッセージエリア
========================================================== */
.error {
  padding: 3px;
  border: 2px solid #F00;
  color: #F00;
  background: #FCC;
}
/* ==========================================================
 / pc login loading
========================================================== */
.hide {
  display: none;
}
/* 外側の大きなサークルのラインの色とスタイルとアルファで表示＆消えるアニメーション */
.circle {
    background-color: rgba(0,0,0,0);
    border:5px solid rgba(0,183,229,0.9);
    opacity:.9;
    border-right:5px solid rgba(0,0,0,0);
    border-left:5px solid rgba(0,0,0,0);
    border-radius:50px;
    box-shadow: 0 0 35px #2187e7;
    width:50px;
    height:50px;
    margin:300px auto;
    -moz-animation:spinPulse 1s infinite ease-in-out;
    -webkit-animation:spinPulse 1s infinite linear;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;

}
/* 内側の小さなサークルのラインの色とスタイルとアルファで表示＆消えるアニメーション */
.circle1 {
    background-color: rgba(0,0,0,0);
    border:5px solid rgba(0,183,229,0.9);
    opacity:.9;
    border-left:5px solid rgba(0,0,0,0);
    border-right:5px solid rgba(0,0,0,0);
    border-radius:50px;
    box-shadow: 0 0 15px #2187e7;
    width:30px;
    height:30px;
    margin:300px auto;
    position:relative;
    top:-350px;
    -moz-animation:spinoffPulse 1s infinite linear;
    -webkit-animation:spinoffPulse 1s infinite linear;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;

}

/* キーフレームを使ったローディングのくるくる回るアニメーション */
@-moz-keyframes spinPulse {
    0% { -moz-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #2187e7;}
    50% { -moz-transform:rotate(145deg); opacity:1; }
    100% { -moz-transform:rotate(-320deg); opacity:0; }
}
@-moz-keyframes spinoffPulse {
    0% { -moz-transform:rotate(0deg); }
    100% { -moz-transform:rotate(360deg);  }
}
@-webkit-keyframes spinPulse {
    0% { -webkit-transform:rotate(160deg); opacity:0; box-shadow:0 0 1px #2187e7; }
    50% { -webkit-transform:rotate(145deg); opacity:1;}
    100% { -webkit-transform:rotate(-320deg); opacity:0; }
}
@-webkit-keyframes spinoffPulse {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}
