/*
 Theme Name: original-child
 Template: original
 Version:4.1.4
 */

 


 /*PC スマホ切り替え*/
 /* パソコンで見たときは"pc"のclassがついた画像が表示される */
 *{
  min-height: 0vw; /* Safari clamp関数対策 */
} 
body{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.pc {
  display: block !important;
}.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

img.alignnone.size-medium {
  max-width: 360px !important;
}
h2 {
  padding-top: 50px;
}
h3{
  font-size: 20px;
}

/* 文字 */
/* ルートのフォントサイズを10pxに設定 */
html {
 font-size: 62.5%;
 }
 /* bodyのフォントサイズを1.6em（16px）に設定 */
 body {
 font-size: 1.6em;
 }
 h1{
 font-size: 5rem; /* 50px */
 }
 p{
 font-size: 1.5rem; /* 15px */
 line-height: 2em;
 }

h2{
 font-size: 3rem;
 font-weight: bold;

 margin-block-start: 0.3em;
  margin-block-end: 0.3em;
}

h3{
 font-size: 2.4rem;
 font-weight: bold;

 margin-block-start: 0.3em;
  margin-block-end: 0.3em;
}
/* 文字ここまで */
/* 基本 */
a {
 text-decoration: none;
}
li {
 list-style-type: none;
}
/* スクリーン */
.full {
 margin: 0 calc(50% - 50vw);
 width: 100vw;
}
.l-inner {
 width: 88.8%;
 max-width: 1280px;
 margin: 0 auto;
}
.l-inner2{
  width: 70%;
  margin: 0 auto;
}
/* スクリーン */
img {
  width: 100%;
}
.img50{
  width: 50%;
  margin: 0 auto;
}
.img50b{
  width: 50%;
 
}
.img70{
  width: 70%;
 
}
.img30{
  width: 30%;
  margin: 0 auto;
}
.img15{
  width: 15%;
  margin: 0 auto;
}

/* センター */
.center {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
}
 .item-center {
   display: grid;
   justify-items: center;
   align-items: center;
 }
 .item-center2{
   margin:0 auto;
   text-align: center;
 }
 .textcenter{
   text-align: center;
 }
 /* センター */
 .item-right{
   display:grid;
justify-content: right;
align-items: end;  }
 /* ブロック要素 */
.item10{
 display: flex;
 flex-direction: column;
 width: calc(10% - 5px);
 box-sizing: border-box;
}
.item20{
 display: flex;
 flex-direction: column;
 width: calc(20% - 5px);
 box-sizing: border-box;
}
.item30{
 display: flex;
 flex-direction: column;
 width: calc(30% - 5px) !important;
 box-sizing: border-box;
}
.item40{
 display: flex;
 flex-direction: column;
 width: calc(40% - 5px);
 box-sizing: border-box;
}
.item50{
 display: flex;
 flex-direction: column;
 width: calc(50% - 5px) !important;
 box-sizing: border-box;
 margin: 2px;
}
.item60{
 display: flex;
 flex-direction: column;
 width: calc(60% - 5px) !important;;
 box-sizing: border-box;
}
.item70{
 display: flex;
 flex-direction: column;
 width: calc(70% - 5px);
 box-sizing: border-box;
}
.item80{
 display: flex;
 flex-direction: column;
 width: calc(80% - 5px) !important;
 box-sizing: border-box;
}
.item90{
 display: flex;
 flex-direction: column;
 width: calc(90% - 5px);
 box-sizing: border-box;
}
@media screen and (max-width: 650px) {
 .item30,
 .item40,
 .item50,
 .item60,
 .item70 {
   width: 100% !important;
 }
}
/* ブロック要素ここまで */


.flexbox{
 display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   -ms-flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
   margin: 0 auto;
  
 
}
.just-space-between{
 justify-content: space-between;
}
.just-center{
 justify-content: center;
}
.just-start{
 justify-content: flex-start;
}
.align-center{
 align-items: center;}

.align-start{
 align-items: flex-start;
}
.align-between{
 align-items: space-between;
}

/* flexここまで */
/* 隙間 */
.pt10{
 padding-top: 10px;
}
.pt20{
 padding-top: 20px;
}
.pt30{
 padding-top: 30px;
}
.pb10{
 padding-bottom: 10px;
}
.pb20{
 padding-bottom: 20px;
}
.pb30{
 padding-bottom: 30px;
}
.padding10{
 padding: 10px;
}
.padding20{
 padding: 20px;
}
.padding30{
 padding: 30px;
}
.margin10{
 margin: 10px;
}
.margin20{
 margin: 20px;
}
.margin30{
 margin: 30px;
}
.margin50{
 margin: 50px;
}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb50{margin-bottom: 50px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt50{margin-top: 50px;}
/* 隙間ここまで */
.card {
 width: 33%;
 margin: 10px auto !important;
 background: #fff;
 border-radius: 5px;
 box-shadow: 0 2px 5px #ccc;

}
@media screen and (max-width: 650px){
  .card{
    width: 100% !important;
  }
    
}
.card-img {
 border-radius: 5px 5px 0 0;
 max-width: 100%;
 height: auto;
}
.card-content {
 padding: 20px;
}
.card-title {
 font-size: 20px;
 margin-bottom: 20px;
 text-align: center;
 color: #333;
}
.card-text {
 color: #777;
 font-size: 14px;
 line-height: 1.5;
}
.card-link {
 text-align: center;
 border-top: 1px solid #eee;
 padding: 20px;
}
.card-link a {
 text-decoration: none;
 color: #0bd;
 margin: 0 10px;
}
.card-link a:hover {
 color: #0090aa;
}
.l-inner{
 width:95%;
 margin: 0 auto;
}
a{
 text-decoration: none;
}
.white{
 color:#fff;
}
.blk{
 color: #000;
}
.footer_panel{
 padding-left: 20px;
 background-color: #f1f1f1;
 padding-bottom: 20px;
}

#footerFloatingMenu {
 display: block;
 width: 100%;
 position: fixed;
 left: 0px;
 bottom: 2px;
 z-index: 9999;
 text-align: center;
 padding: 0 auto;
}
.btn--orange,
a.btn--orange {
 color: #fff;
 background-color: rgba(29, 32, 132, 0.5);

}
.btn--orange:hover,
a.btn--orange:hover {
 color: #fff;
 background: #0bd;;
}

.fa-position-left {
 position: absolute;
 top: calc(50% - .5em);
 left: 1rem;
}

.btn--radius,
a.btn--radius,
button.btn--radius
{
   border-radius: 100vh;
}.btn,
a.btn,
button.btn {
 font-size: 1rem;
 font-weight: 700;
 line-height: 1.5;
 position: relative;
 display: inline-block;
 padding: 1rem 4rem;
 cursor: pointer;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 -webkit-transition: all 0.3s;
 transition: all 0.3s;
 text-align: center;
 vertical-align: middle;
 text-decoration: none;
 letter-spacing: 0.1em;
 color: #fff;
 border-radius: 0.5rem;
}

.delay-time{
 animation-delay: 1s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time2{
 animation-delay: 1.5s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time3{
 animation-delay: 2s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time4{
 animation-delay: 2.5s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time5{
 animation-delay: 3s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time6{
 animation-delay: 3.5s;/*この数字を指定したい遅延時間に変更*/
}
.delay-time{
 animation-delay: 1s;/*この数字を指定したい遅延時間に変更*/
}
.change-time{  
 animation-duration: 2s;/*この数字を変化させたい時間に変更*/
}
  /* table01 */
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
  border-bottom: 1px solid #b5b1b1;
}
table#table01{
  border:none;
}

#table01 th {
  width: 30%;
}


/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;

    padding: 10px;
    text-align: center;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
   
  }
  .midashi4{
    font-size: 2rem !important;
  }
  .point_mi,.tokuten_k,h2 span,.waribiki_po{
    font-size: 1.8rem !important;
  }
}

.midashi4 {
  font-weight: bold;
  font-size: 2.4em;
  vertical-align: bottom;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}.midashi4:before, .midashi4:after {
  border-top: 1px solid #c60000;
  content: "";
  flex-grow: 1;
}.midashi4:after {
  margin-left: 1rem;
}

.midashi_en {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  padding-left: 15px;
  color: #c60000;
  text-align: center;
}.midashi_block {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 15px;
  background-color: #fff;
  text-align: center;
}
.card-link_price {
  text-align: center;
  border-top: 1px solid #eee;
  background-color: #c60000;
  color: #fff;
  margin-top: auto;
}
.title_ken {
  text-align: center;
  
    padding: 20px;
    background-color: #c60000;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    position: relative;
    line-height: 1.2;
    display: inline-block;
    top: 0;
    font-size:2rem !important;
    font-weight: 900;
}
.flexbox{
  justify-content: space-between;
}
.card{
  display: flex;
  flex-direction: column;
}
ul.list li{
  width: 33%;
}
@media screen and (max-width: 650px){
  ul.list li{
    width: 100%;
  } 
   ul.list.flexbox{
    width: 100%;
    margin-inline-start: 0 !important;
    padding-inline-start: 0px !important;
  }
}
figure{
  margin: 0;
  margin-block-end: 0;
  margin-block-start: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
#colophon a{
  color: white;

}
#colophon{
  line-height: 2rem;
}
.lineheight{
  line-height: 2.4;
}
.entry-content{
  margin: 0;
}
.page-title2,.entry-title{
  

    font-weight: bold;
    font-size: 2.4em;
    vertical-align: bottom;
    display: flex;
    align-items: center;
    margin-bottom: 5px;

}
.page-title2,.entry-title {
  font-weight: bold;
  font-size: 2.4em;
  vertical-align: bottom;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}.page-title2:before, .page-title2:after,.entry-title:before,.entry-title:after {
  border-top: 1px solid #c60000;
  content: "";
  flex-grow: 1;
}.page-title2:after,.entry-title:after {
  margin-left: 1rem;
}
.no-results p img{
  width: 50%;
 margin: 20px auto;
}
.no-results p{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
}
.entry-content{
  
}
.page-header-n{
  padding: 1rem 2rem;
  border: 1px solid #000;
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;

}
li.card_stock{
  width: 33%;
  display: flex;
  flex-direction: column;
}
ul.flexbox_left{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;

}
.carname_box{
  width: 100%;
  height: 15rem;
}
.archive_price{
  font-size: 3rem;
  color: #c60000;
  font-weight: 700;
}
.archive_name{
  font-size: 1.8rem;
}
#slider2{
  height: 35vh;
}
@media screen and (min-width:768px) and ( max-width:1024px) {
  #slider2{
    height: 50vh;
  
}
}
h1.entry-title{
  font-size: 1.5rem !important;
}
.scrapeing_press-title{

}

.scrapeing_press-title {
  padding-bottom: 10px;
	font-size: 20px;
	background-image: repeating-linear-gradient(90deg, #b4a983 0, #b4a983 2px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 4px);
	background-size: 4px 4px;
	background-repeat: repeat-x;
	background-position: center bottom;
  margin: 10px 0;
}

@media screen and (max-width: 650px){
  #table01 th{
    border-bottom:none !important;
  }
    
}