.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

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

  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

}

.inner{
  width: min(1040px, 100%);
  padding: 0 20px;
  margin: auto;
  max-width: initial;
  box-sizing: border-box;
}

#wrap h2{
  font-size: 25px;
  font-weight: 500;
  display: flex;
  background: none;
  padding: 0;
  margin-bottom: 25px;
  align-items: center;
}

h2::before{
  content: "";
  display: block;
  width: 22px;
  height: 29px;
  clip-path: polygon(65% 0%, 100% 0, 35% 100%, 0% 100%);
  background: #ED7600;
  margin-right: 7px;
}

#breadcrumb{
  width: min(1020px, 100%);
  padding: 0 20px;
  margin: auto;
  max-width: initial;
  box-sizing: border-box;
}

.side-nav{
  position: fixed;
  right: 0;
  bottom: 85px;
  z-index: 50;
}

.side-nav a{
  background-color: #ED7600;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  writing-mode: vertical-rl;
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
  letter-spacing: 3px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: .4s;
}

.side-nav a:hover{
  text-decoration: none;
  opacity: .8;
}

.side-nav a span{
  background-color: #fff;
  display: block;
  border-radius: 50%;
  position: relative;
  width: 28px;
  height: 28px;
}

.side-nav a span::after{
  content: "";
  background-color: #ED7600;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.page-ttl-wrap{
  text-align: left;
  font-size: 16px;
  margin-top: 20px;
}

.page-ttl-wrap h1{
  font-size: 31px;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.page-ttl-wrap h1::after{
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #ED7600;
}

.traffic-content-wrap .search_tab_list{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-right: 40px;
}

.traffic-content-wrap .search_tab_list .search_tab_item{
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  width: 195px;
  height: 45px;
  opacity: .35;
  transition: opacity .4s ease;
  cursor: pointer;
}

.traffic-content-wrap .search_tab_list .search_tab_item.day{
  background-color: #FFAD0F;
}

.traffic-content-wrap .search_tab_list .search_tab_item.night{
  background-color: #17609F;
}

.traffic-content-wrap .search_tab_list .search_tab_item.active{
  opacity: 1;
}

.traffic-content-wrap .search_tab_list .search_tab_item.day::before{
  content: "";
  display: block;
  width: 26px;
  height: 25px;
  background: url(../image/day_icon_wh.png) no-repeat 100%;
  margin-right: 9px;
}

.traffic-content-wrap .search_tab_list .search_tab_item.night::before{
  content: "";
  display: block;
  width: 18px;
  height: 19px;
  background: url(../image/night_icon_wh.png) no-repeat 100%;
  margin-right: 9px;
}

.traffic-content-wrap .search_panel{
  display: none;
}

.traffic-content-wrap .search_panel.active{
  display: block;
}

.traffic-content-wrap .main-image-wrap{
  position: relative;
  margin-bottom: 65px;
}

.traffic-content-wrap .main-image-wrap .main-image-bg{
  width: 100%;
}

.traffic-item-wrap{
  counter-reset: item-num 0;
}

.traffic-item-group{
  margin-bottom: 85px;
}

.traffic-item-group ul{
  display: flex;
  flex-wrap: wrap;
  gap: 70px 40px;
}

.traffic-item-group ul li{
  width: calc((100% - 80px) / 3);
}

.traffic-item-group ul li a{
  color: initial;
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
}

.traffic-item-group ul li a::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  outline: 4px solid #EE7800;
  outline-offset: 10px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s;
  filter: blur(.5px);
  z-index: -1;
}

.traffic-item-group ul li a:hover{
  text-decoration: none;
}

.traffic-item-group ul li a:hover::before{
  opacity: .7;
}

.traffic-item-group ul li dl{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.traffic-item-group ul li dl dt,
.traffic-item-group ul li dl dd:nth-of-type(n + 2){
  padding: 0 8px;
}

.traffic-item-group ul li dl dt{
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C1C1C1;
  margin: 10px 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 5px;
  height: 4em;
  white-space: nowrap;
}

.traffic-item-group ul li dl dt::before{
  counter-increment: item-num 1;
  content: counter(item-num);
  display: block;
  width: 25px;
  height: 25px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  background-color: #00AFCC;
  text-align: center;
  line-height: 25px;
  border-radius: 3px;  
  flex-shrink: 0;
}

.traffic-item-group ul li dl dt.safety::before{
  background-color: #EE7800;
}

.traffic-item-group ul li dl dt.other::before{
  background-color: #849287;
}

.traffic-item-group:nth-of-type(3) ul{
  counter-reset: item-num 10;
}

.traffic-item-group:nth-of-type(4) ul{
  counter-reset: item-num 18;
}

.search_panel.nighttime .traffic-item-group:first-of-type ul{
  counter-reset: item-num 2;
}

.search_panel.nighttime .traffic-item-group:first-of-type ul li:nth-of-type(5){
  counter-reset: item-num 7;
}

.search_panel.nighttime .traffic-item-group:first-of-type ul li:nth-of-type(6){
  counter-reset: item-num 8;
}

.search_panel.nighttime .traffic-item-group:first-of-type ul li:nth-of-type(7){
  counter-reset: item-num 9;
}

.search_panel.nighttime .traffic-item-group:nth-of-type(2) ul{
  counter-reset: item-num 10;
}

.search_panel.nighttime .traffic-item-group:nth-of-type(2) ul li:nth-of-type(3){
  counter-reset: item-num 16;
}

.search_panel.nighttime .traffic-item-group:nth-of-type(2) ul li:nth-of-type(4){
  counter-reset: item-num 17;
}

.traffic-item-group ul li dl dd:first-of-type{
  order: -1;
  position: relative;
}

.traffic-item-group ul li dl dd.new_item:first-of-type::before,
.traffic-item-group ul li dl dd.new_publish:first-of-type::before{
  content: "新商品";
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  background-color: #333;
  width: 100px;
  height: 30px;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
  z-index: 5;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 3px;
  font-size: 14px;
}

.traffic-item-group ul li dl dd.new_publish:first-of-type::before{
  content: "新掲載";
}

.traffic-item-group ul li dl dd.new_item:first-of-type::after,
.traffic-item-group ul li dl dd.new_publish:first-of-type::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  background-color: #FF2D16;
  width: 110px;
  height: 30px;
  clip-path: polygon(17% 0%, 100% 0%, 83% 100%, 0% 100%);
  z-index: 3;
}

.traffic-item-group ul li dl dd.new_publish:first-of-type::after{
  background-color: #4195d1;
}

.traffic-item-group ul li dl dd:first-of-type img{
  width: 100%;
}

.traffic-item-group ul li dl dd:nth-of-type(2){
  font-weight: normal;
}

.traffic-item-group ul li dl dd:nth-of-type(3){
  display: flex;
  align-items: center;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span{
  display: flex;
  align-items: center;
  width: 95px;
  height: 33px;
  border-radius: 3px;
  font-size: 13px;
  margin: 8px 8px 0 0;
  justify-content: center;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.day{
  background-color: #FDEBD9;
  color: #F29F00;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.day::before{
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../image/day_icon_color.png) 100% no-repeat;
  margin-right: 3px;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.day::after{
  content: "デイ製品";
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.night{
  background-color: #DDE8F1;
  color: #17609F;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.night::before{
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background: url(../image/night_icon_color.png) 100% no-repeat;
  margin-right: 3px;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.night::after{
  content: "ナイト製品";
}

.product-btn-link{
  margin-bottom: 130px;
}

.product-btn-link a{
  margin: auto;
  max-width: 385px;
  color: #ED7600;
  padding: 18px 0;
  border: 1px solid #ED7600;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-btn-link a::before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ED7600;
  border-bottom: 2px solid #ED7600;
  transform: rotate(-45deg);
  margin-right: 12px;
  transition: .3s;
}

.product-btn-link a:hover{
  text-decoration: none;
  opacity: .8;
}

.product-btn-link a:hover::before{
  transform: translateX(4px) rotate(-45deg) ;
}

/* main image item position */

.traffic-content-wrap .search_panel .main-image-wrap li{
  position: absolute;
}

.traffic-content-wrap .search_panel .main-image-wrap li img{
  width: 100%;
}

/* day time */

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:first-of-type{
  top: 22.5%;
  left: 7.8%;
  width: 14.45%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(2){
  top: 57%;
  left: 12.63%;
  width: 9.44%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(3){
  top: 32.5%;
  left: 21.5%;
  width: 8.71%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(4){
  top: 87.8%;
  left: 42.64%;
  width: 12.88%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(5){
  top: 68.5%;
  left: 35.25%;
  width: 8.78%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(6){
  top: 25.5%;
  left: 32.98%;
  width: 5.63%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(7){
  top: 25.6%;
  left: 39.78%;
  width: 8.45%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(8){
  top: 69%;
  left: 24.95%;
  width: 7.9%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(9){
  top: 87%;
  left: 16.96%;
  width: 12.18%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(10){
  top: 66.5%;
  left: 54%;
  width: 9.95%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(11){
  top: 66.5%;
  left: 64.6%;
  width: 9.22%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(12){
  top: 17.2%;
  left: 50.27%;
  width: 7.94%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(13){
  top: 9%;
  left: 63.2%;
  width: 13.54%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(14){
  top: 66.5%;
  left: 74.72%;
  width: 16.58%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(15){
  top: 50.6%;
  left: 82.4%;
  width: 10.06%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(16){
  top: 8.8%;
  left: 77.43%;
  width: 17.78%;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(17){
  top: 37.3%;
  left: 88.48%;
  width: 10.24%;
}

/* night time */
.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:first-of-type{
  top: 33.3%;
  left: 21.45%;
  width: 8.71%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(2){
  top: 82.2%;
  left: 41.52%;
  width: 12.88%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(3){
  top: 71%;
  left: 35.87%;
  width: 8.78%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(4){
  top: 13.4%;
  left: 32.15%;
  width: 5.63%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(5){
  top: 82.9%;
  left: 25.04%;
  width: 7.9%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(6){
  top: 71.3%;
  left: 15.8%;
  width: 12.18%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(7){
  top: 22.4%;
  left: 36.24%;
  width: 12.44%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(8){
  top: 58.2%;
  left: 61.64%;
  width: 9.95%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(9){
  top: 70%;
  left: 71%;
  width: 9.22%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(10){
  top: 9.8%;
  left: 64.55%;
  width: 10.51%;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(11){
  top: 9.8%;
  left: 76.5%;
  width: 14.38%;
}


.fade-image {
  opacity: 1;
  animation: none;
}

.fade-image.fade-switch {
  animation: fadeSwitch 0.3s;
}

@keyframes fadeSwitch {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

/* sp view */

@media only screen and (min-width: 1px) and (max-width: 740px) {

  #wrap h2{
  font-size: 20px;
  margin-bottom: 22px;
}

h2::before{
  width: 20px;
  height: 25px;
}

.side-nav{
  position: fixed;
  right: initial;
  left: 20px;
  bottom: 20px;
  z-index: 50;
  width: 75%;
}

.side-nav a{
  font-size: 16px;
  writing-mode: initial;
  padding: 8.5px 15px;
  border-radius: 50px;
  justify-content: center;
}

.side-nav a span{
  width: 22px;
  height: 22px;
}

.side-nav a span::after{
  width: 6px;
  height: 11px;
}

.page-ttl-wrap{
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 35px;
}

.page-ttl-wrap h1{
  margin: auto;
  font-size: 24px;
  margin-bottom: 35px;
}

.traffic-content-wrap .search_tab_list{
  justify-content: center;
  margin-right: 0;
}

.traffic-content-wrap .search_tab_list .search_tab_item{
  font-size: 13px;
  width: 135px;
  height: 35px;
}

.traffic-content-wrap .main-image-wrap{
  margin-bottom: 20px;
}

.traffic-content-wrap .main-image-wrap .sp-list{
  margin: 20px 0 70px;
}

.traffic-content-wrap .search_panel .main-image-wrap ul{
  column-count: 2;
  width: 100%;
  font-size: 14px;
}

.traffic-content-wrap .search_panel .main-image-wrap li{
  position: initial;
  width: 100% !important;
  text-align: left;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 9px;
  box-sizing: border-box;
}

.traffic-content-wrap .search_panel .main-image-wrap li a{
  color: initial;
  text-decoration: none;
  display: flex;
  align-items: baseline;
}

.traffic-content-wrap .search_panel .main-image-wrap li span{
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  background-color: #00AFCC;
  line-height: 15px;
  text-align: center;
  border-radius: 3px;
  margin-right: 5px;
  flex-shrink: 0;
}

.traffic-content-wrap .search_panel.daytime .main-image-wrap li:nth-of-type(14) span{
  background-color: #ED7600;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(10) span{
  background-color: #849287;
}

.traffic-content-wrap .search_panel.nighttime .main-image-wrap li:nth-of-type(11) span{
  background-color: #ED7600;
}

.traffic-item-group{
  margin-bottom: 45px;
}

.traffic-item-group ul{
  gap: 40px 20px;
}

.traffic-item-group ul li{
  width: calc((100% - 20px) / 2);
}

.traffic-item-group ul li dl dt,
.traffic-item-group ul li dl dd:nth-of-type(n + 2){
  padding: 0;
}

.traffic-item-group ul li dl dt{
  font-size: 15px;
  padding-bottom: 5px;
  margin: 5px 0;
  height: 5em;
  white-space: initial;
  line-height: 1.4;
}

.traffic-item-group ul li dl dt::before{
  width: 15px;
  height: 15px;
  font-size: 11px;
  line-height: 15px;
}

.traffic-item-group ul li dl dd.new_item:first-of-type::before,
.traffic-item-group ul li dl dd.new_publish:first-of-type::before{
  right: 3px;
  width: 64px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
}

.traffic-item-group ul li dl dd.new_item:first-of-type::after,
.traffic-item-group ul li dl dd.new_publish:first-of-type::after{
  width: 70px;
  height: 18px;
}

.traffic-item-group ul li dl dd:nth-of-type(2){
  font-size: 14px;
  text-align: left;
  line-height: 1.3;
  height: 2.5em;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span{
  width: 18px;
  height: 16px;
  margin: 8px 5px 0 0;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.day::before{
  width: 12px;
  height: 12px;
  margin-right: 0;
  background-size: cover;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.night::before{
  width: 10px;
  height: 11px;
  margin-right: 0;
  background-size: cover;
}

.traffic-item-group ul li dl dd:nth-of-type(3) span.day::after,
.traffic-item-group ul li dl dd:nth-of-type(3) span.night::after{
  content: none;
}

footer .copyright{
  padding-bottom: 80px;
}


}