/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */
/* Trade icons */
.ti_ic-01 {background-image: url(../img/trade-in/trade-ic-satei.svg);}
.ti_ic-02 {background-image: url(../img/trade-in/trade-ic-option.svg);}
.ti_ic-03 {background-image: url(../img/trade-in/trade-ic-price.svg);}
.ti_ic-04 {background-image: url(../img/trade-in/trade-ic-smooth.svg);}
.ti_ic-05 {background-image: url(../img/trade-in/trade-ic-anshin.svg);}

/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {

/* Header */
header {
  width:100%;
  height: 60px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:18500;
  transition: .4s all;
}
header .companytitle {
  width:fit-content;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin:0 0 0 1%;
}
header h1 {
  font-size:16px;
  font-weight: 700;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 8px;
}
header h2 {
  font-size:10px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 0px;
}
header h1 a, header h2 a {
  color:var(--color-black);
  text-decoration: none;
}

header.jlr_active {
  top:0px;
  background-color: var(--color-jg);
  box-shadow:0px 1px 15px rgba(0,0,0,0.3);
}
header.jlr_active h1 {
  font-size:16px;
  font-weight: 700;
  line-height: 1em;
  color:var(--color-white);
  margin-bottom: 8px;
  text-shadow: 0px 0px 3px rgba(0,0,0,3);
}
header.jlr_active h2 {
  font-size:10px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-white);
  margin-bottom: 0px;
  text-shadow: 0px 0px 3px rgba(0,0,0,3);
}
header.jlr_active h1 a, header.jlr_active h2 a {
  color:var(--color-white);
  text-decoration: none;
}

/* globalmenu */
.menubn {
  top:8px;
}
.menubn span {
  background: var(--color-black);
}
.menubn.jlr_active span {
  background: var(--color-white);
}

/* Pagetitle */
.pagetitle {
  width:100%;
  height: auto;
  display: block;
  margin-top:60px;
}
.ptcc {
  width:100%;
  max-width:1920px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto;
  padding:70px 5% 0px;
}
.ptcc h2 {
font-size:14px;
font-weight: 400;
line-height: 1em;
text-align: center;
color:var(--color-666);
margin-bottom: 1.5em;
order:2;
}
.ptcc p {
font-size:22px;
font-family: var(--font-en);
font-weight: 400;
line-height: 1em;
text-align: center;
margin-bottom: 0.5em;
order:1;
}
.ptcc ul {
  width:fit-content;
  height: auto;
  display: flex;
  justify-content: center;
  margin:0 auto;
  order:3;
}
.ptcc ul li {
  font-size:12px;
  line-height: 1em;
  margin-left:0.5em
}
.ptcc ul li:after {
  content: " > ";
}
.ptcc ul li:last-child:after {
  content: "";
}
.ptcc li a {
  text-decoration: none;
  color: var(--color-666);
}
.ptcc li a:hover {
  color:var(--color-1st);
}

/* Main */
main {
  width:100%;
  max-width:1920px;
  height: auto;
  /*
  min-height: 1000px;
  */
  display: block;
  padding:60px 5% 100px;
  margin:0 auto;
}

/* Trade icon list */
.tradeicon_list {
  width:100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.tradeicon_list li {
  flex: 1;
  margin:0 2%;
  font-size:14px;;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
  padding-top:110px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100px;
}

/* Inquiry menu */
.inquirymenu {
  width:100%;
  max-width:800px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin:0 auto 50px;
}
.inquirymenu li {
  width:48%;
  margin:0 auto;
  font-size:14px;
  transition: .4s all;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
}
.inquirymenu li a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  line-height: 1em;
  text-align: center;
  color:var(--color-white);
  padding:45px 0 15px 0;
  background-repeat: no-repeat;
  background-position: center 5px;
  background-size: auto 40px;
  border-radius: 3px;
  transition: .4s all;
}
.inquirymenu li a.ic-mail_w {
  background-color: var(--color-black);
}
.inquirymenu li a.ic-tel_w {
  background-color: var(--color-666);
}
.inquirymenu li a:hover {
  background-color: var(--color-1st);
}

}

/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

/* Header */
header {
  width:100%;
  height: 60px;
  display: block;
  position: fixed;
  top:0px;
  left:0;
  z-index:18500;
}
header .companytitle {
  width:fit-content;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin:0 0 0 1%;
}
header h1 {
  font-size:16px;
  font-weight: 700;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 8px;
  text-shadow: 0px 0px 3px rgba(0,0,0,0);
}
header h2 {
  font-size:10px;
  font-weight: 400;
  line-height: 1em;
  color:var(--color-black);
  margin-bottom: 0px;
  text-shadow: 0px 0px 3px rgba(0,0,0,0);
}
header h1 a, header h2 a {
  color:var(--color-black);
  text-decoration: none;
}
header.jlr_active {
  background-color: var(--color-jg);
  box-shadow: 0px 2px 20px rgba(0,0,0,0.5);
}
header.jlr_active h1 {
  color:var(--color-white);
  text-shadow: 0px 0px 3px rgba(0,0,0,1);
}
header.jlr_active h2 {
  color:var(--color-white);
  text-shadow: 0px 0px 3px rgba(0,0,0,1);
}
header.jlr_active h1 a, header.jlr_active h2 a {
  color:var(--color-white);
  text-decoration: none;
}

/* Menu button */
.menubn span {
  background: var(--color-black);
}
.menubn.jlr_active span {
  background: var(--color-white);
}


/* Pagetitle */
.pagetitle {
  width:100%;
  height: auto;
  display: block;
  margin-top:60px;
}
.ptcc {
  width:100%;
  max-width:1920px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto;
  padding:70px 5% 0px;
}
.ptcc h2 {
font-size:14px;
font-weight: 400;
line-height: 1em;
text-align: center;
color:var(--color-666);
margin-bottom: 1.5em;
order:2;
}
.ptcc p {
font-size:22px;
font-family: var(--font-en);
font-weight: 400;
line-height: 1em;
text-align: center;
margin-bottom: 0.5em;
order:1;
}
.ptcc ul {
  width:fit-content;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin:0 auto;
  order:3;
}
.ptcc ul li {
  font-size:12px;
  line-height: 1em;
  margin-left:0.5em
}
.ptcc ul li:after {
  content: " > ";
}
.ptcc ul li:last-child:after {
  content: "";
}
.ptcc li a {
  text-decoration: none;
  color: var(--color-666);
}
.ptcc li a:hover {
  color:var(--color-1st);
}

/* Main */
main {
  width:100%;
  max-width:1920px;
  height: auto;
  display: block;
  padding:60px 5% 100px;
  margin:0 auto;
}

/* Trade icon list */
.tradeicon_list {
  width:100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tradeicon_list li {
  width:29.3333333333;
  margin:0 2% 40px;
  font-size:14px;;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
  padding-top:110px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100px;
}

/* Inquiry menu */
.inquirymenu {
  width:100%;
  max-width:800px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin:0 auto 50px;
}
.inquirymenu li {
  width:48%;
  margin:0 auto;
  font-size:14px;
  transition: .4s all;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
}
.inquirymenu li a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  line-height: 1em;
  text-align: center;
  color:var(--color-white);
  padding:45px 0 15px 0;
  background-repeat: no-repeat;
  background-position: center 5px;
  background-size: auto 40px;
  border-radius: 3px;
  transition: .4s all;
}
.inquirymenu li a.ic-mail_w {
  background-color: var(--color-black);
}
.inquirymenu li a.ic-tel_w {
  background-color: var(--color-666);
}
.inquirymenu li a:hover {
  background-color: var(--color-1st);
}

}


/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  /* Header */
  header {
    width:100%;
    height: 60px;
    display: block;
    position: fixed;
    top:0px;
    left:0;
    z-index:18500;
    transition: .4s all;
  }
  header .companytitle {
    width:fit-content;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin:0 0 0 5%;
  }
  header h1 {
    font-size:16px;
    font-weight: 700;
    line-height: 1em;
    color:var(--color-black);
    margin-bottom: 8px;
    text-shadow: 0px 0px 3px rgba(0,0,0,0);
  }
  header h2 {
    font-size:10px;
    font-weight: 400;
    line-height: 1em;
    color:var(--color-black);
    margin-bottom: 0px;
    text-shadow: 0px 0px 3px rgba(0,0,0,0);
  }
  header h1 a, header h2 a {
    color:var(--color-black);
    text-decoration: none;
  }
  header.jlr_active {
    background-color: var(--color-jg);
  }
  header.jlr_active h1 {
    color:var(--color-white);
    text-shadow: 0px 0px 3px rgba(0,0,0,1);
  }
  header.jlr_active h2 {
    color:var(--color-white);
    text-shadow: 0px 0px 3px rgba(0,0,0,1);
  }
  header.jlr_active h1 a, header.jlr_active h2 a {
    color:var(--color-white);
    text-decoration: none;
  }

  /* Menu button */
  .menubn span {
    background: var(--color-black);
  }
  .menubn.jlr_active span {
    background: var(--color-white);
  }

/* Pagetitle */
.pagetitle {
  width:100%;
  height: auto;
  display: block;
  margin-top:60px;
}
.ptcc {
  width:100%;
  max-width:1920px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin:0 auto;
  padding:70px 5% 0px;
}
.ptcc h2 {
font-size:12px;
font-weight: 400;
line-height: 1em;
text-align: center;
color:var(--color-666);
margin-bottom: 1.5em;
order:2;
}
.ptcc p {
font-size:18px;
font-family: var(--font-en);
font-weight: 400;
line-height: 1em;
text-align: center;
margin-bottom: 0.5em;
order:1;
}
.ptcc ul {
  width:fit-content;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin:0 auto;
  order:3;
}
.ptcc ul li {
  font-size:12px;
  line-height: 1.5em;
  margin-left:0.5em
}
.ptcc ul li:after {
  content: " > ";
}
.ptcc ul li:last-child:after {
  content: "";
}
.ptcc li a {
  text-decoration: none;
  color: var(--color-666);
}
.ptcc li a:hover {
  color:var(--color-1st);
}

/* Main */
main {
  width:100%;
  max-width:1920px;
  height: auto;
  display: block;
  padding:60px 5% 100px;
  margin:0 auto;
}


/* Trade icon list */
.tradeicon_list {
  width:100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tradeicon_list li {
  width:44%;
  margin:0 2% 40px;
  font-size:14px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
  padding-top:110px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100px;
}

/* Inquiry menu */
.inquirymenu {
  width:100%;
  max-width:800px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:0 auto 50px;
}
.inquirymenu li {
  width:48%;
  margin:0 auto;
  font-size:12px;
  letter-spacing: 0px;
  transition: .4s all;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
}
.inquirymenu li a {
  width:100%;
  height: auto;
  display: block;
  text-decoration: none;
  line-height: 1em;
  text-align: center;
  color:var(--color-white);
  padding:45px 0 15px 0;
  background-repeat: no-repeat;
  background-position: center 5px;
  background-size: auto 40px;
  border-radius: 3px;
  transition: .4s all;
}
.inquirymenu li a.ic-mail_w {
  background-color: var(--color-black);
}
.inquirymenu li a.ic-tel_w {
  background-color: var(--color-666);
}
.inquirymenu li a:hover {
  background-color: var(--color-1st);
}

}



.privacy p{
font-size: 14px !important;


}



.privacy h3{
  margin-bottom: 20px;
  font-size: 16px !important;
}


.privacy h4{
  font-size: 15px !important;
  margin-bottom: 10px;
}


.privacy h5{
  font-size: 14px !important;

}

.privacy ul li{
  font-size: 14px !important;
line-height: 2em;

  margin-bottom: 12px;
  text-indent: -1em;
  padding-left: 1em;
}

.privacy ul{
  margin-bottom: 30px;
}


.privacy ol li{
  margin-bottom: 12px;

  font-size: 14px !important;
  list-style: upper-roman;


}

.privacy ol{
  margin-bottom: 30px;
  padding-left: 20px;

}


@media screen and (max-width: 768px) {


.privacy h3{
  margin-bottom: 20px;
  font-size: 15px !important;
}


.privacy h4{
  font-size: 14px !important;
  margin-bottom: 10px;
}


.privacy h5{
  font-size: 12px !important;

}


.privacy p{
font-size: 12px !important;


}

.privacy ul li{
  font-size: 12px !important;
}


.privacy ol li{
  font-size: 12px !important;



}




  }



.center-text{
  text-align: center;

}



/*ニュース詳細*/

.news-left{
  float: left;
  width: 70%;
}

.news-right{
  float: right;
  width: 25%;
}

.news-left h3{
  font-size: 26px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  line-height: 1.6;
}



.single-content p{
  margin-bottom: 30px;
  font-size: 14px;
}


.single-content img{
  max-width: 100%;
  width: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




.nav-below{
  display: table;
  margin:0 auto; 
  margin-top: 50px;
}

.nav-below span{
padding: 0 10px; 
}



/*ウィジェット*/

.widget-title{
  font-size: 14px;
  background: #353535;
  color: #ffffff !important;
  padding: 8px;
  font-weight: normal;


}

#recent-posts-3 li a,
#archives-3 li a,
#categories-3 li a,
#custom-post-type-recent-posts-3 li a,
#custom-post-type-categories-3  li a{
  border-bottom:1px dotted #eeeeee;
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #000;
}




#recent-posts-3 li:hover,
#archives-3 li:hover,
#categories-3 li:hover,
#custom-post-type-recent-posts-3 li:hover,
#custom-post-type-categories-3 li:hover{
  background: #f5f5f5;
}

#recent-posts-3,
#calendar-2,
#archives-3,
#categories-3,
#custom-post-type-recent-posts-3,
#custom-post-type-categories-3{
margin-bottom: 30px;
  background: #ffffff;
  list-style: none;
}


/* Calendar */
#calendar_wrap {
  padding-top: 0.8rem;
  margin-top: 1px;
  background: #fff;
}


#wp-calendar {
  width: 100%;
}


table#wp-calendar {
  border-collapse: separate;
  border-spacing: 0.1rem;
}


#wp-calendar caption {
  color: #000;
  font-size: 0.8rem;
  line-height: 1.0em;
  padding-bottom: 5px;
  text-align: center;
}


#wp-calendar thead {
  font-size: 0.6rem;
  color: #666;
}


#wp-calendar thead th {
  text-align: center;
}


#wp-calendar tbody {
  color: #454545;
}


#wp-calendar tbody td {
  background: rgba(255,255,255,0.1);
  border: 1px solid #ddd;
  padding: 0.2rem;
  text-align: center;
}


#wp-calendar tbody .pad {
  background: none;
  border: none;
}


#wp-calendar tfoot td {
  padding: 0.2rem 0;
}


#wp-calendar tfoot #next {
  text-align: right;
}


#wp-calendar tbody td a, 
#wp-calendar tfoot td a {
}


#wp-calendar tbody td a:hover, 
#wp-calendar tfoot td a:hover {
  text-decoration: none;
}


/*ページネーション*/

.pagenationmm span.current{
  border: 1px solid rgba(0,0,0,1);
  display: inline-block;
  margin:  2px !important;
  padding: 8px 8px !important;
 color: #000;
}

.pagenationmm span.current{
  background: rgba(0,0,0,1);
  color: #fff;
}

.pagenationmm a{

  display: inline-block;
  border: 1px solid rgba(0,0,0,1);
  margin:  2px !important;
  padding: 8px 8px !important;
  color: rgba(0,0,0,1);

}

.pagenationmm a {
    width: auto !important;
    height: auto;
    text-decoration: none;

}
.pagenationmm a:hover {
    box-shadow:none!important;
}

.pagenationmm span.current a{
  background: rgba(0,0,0,1);
  color: #fff;
  padding: 8px 8px !important;
}

.pagenationmm a:hover{
  background: rgba(0,0,0,1);
  color: #fff;
}
.pagenationmm a:hover{
  color: #fff;
}

.pagenationmm{
  padding-top: 60px;
  display: table;
  margin: 0 auto;

}

.single-categry{
  font-size: 12px;
  background: #353535;
  color: #fff;
  display: table;
  padding: 3px 6px;
  margin-bottom: 10px;

}

.single-categry.nwc01{
}


.single-categry.nwc01 {
  background:#353535;
}

.single-category{
      margin-bottom: 10px;
}

.nwcate-single{
width: fit-content;
    height: auto;
    display: inline-block;
    font-size: 10px !important;
    line-height: 1em !important;
    margin: 0 !important; 

}


.nwcate-single span{
width: 100%;
    height: auto;
    display: block;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    padding: 3px 8px;

}


.single-swrcar{



}


.single-swrcar {
min-width: 110px;
    height: 25px;
    display: flex;

    margin: 0 0 10px auto;
}
.single-swrcar li {
  height: 25px;
  display: flex;

  margin:0 0 10px auto;
}
.single-swrcar li {
  width:auto;
  font-size:12px;
  line-height: 23px;
  padding:0 5px;
  margin:0 1%;
  text-align: center;
  border-radius: 3px;
}
.single-swrcar li.swrcar_c_01 {
  color:var(--color-white);
  background-color: var(--color-jg);
}
.single-swrcar li.swrcar_c_02 {
  color:var(--color-white);
  background-color: var(--color-1st);
}




@media screen and (max-width: 768px) {

.news-left{
  float: none;
  width: 100%;
  margin-bottom: 40px;
}

.news-right{
  float: none;
  width: 100%;
}

.news-left h3{
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  line-height: 1.6;
}



}