@charset "UTF-8";
.ttl_wrap {
  text-align: center;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  height: 50px;
  position: relative;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: figure 0.2s ease;
  transition: figure 0.2s ease;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.tab_item:nth-of-type(1) {
  background: #DC000C;
}
.tab_item:nth-of-type(2) {
  background-color: rgba(70, 70, 70, 1);
}
@media screen and (max-width: 768px) {
  .tab_item {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tab_item:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50px;
}
.tab_item:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(https://tamashiiweb.com/img/common/ico_arrow_rt.png) no-repeat center center;
  width: 13px;
  height: 13px;
  background-size: contain;
}
.tab_item:hover {
  opacity: 0.75;
  /* background: #1d1d1d; */
  color: #fff;
}
.tab_item:nth-of-type(1) {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%);
}
.tab_item:nth-of-type(2) {
  -webkit-clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
          clip-path: polygon(1% 0%, 100% 0%, 99% 100%, 0% 100%);
}
.tab_item:nth-of-type(3) {
  -webkit-clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  width: 1075px;
  display: none;
  clear: both;
  overflow: hidden;
  margin-right: auto;
  margin-bottom: 80px;
  padding-bottom: 40px;
  background-color: rgba(248, 248, 248, 0.9);
}
@media screen and (max-width: 768px) {
  .tab_content {
    width: 100%;
  }
}
.tab_content#robot_content {
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
}
.tab_content .logo_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tab_content .logo_wrap-box {
  width: 21%;
  margin: 1% 2%;
}
@media screen and (max-width: 768px) {
  .tab_content .logo_wrap-box {
    width: 46%;
  }
}
.tab_content .logo_wrap-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tab_content .logo_wrap-box a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.tab_content .logo_wrap-box a:hover span {
  color: #DC000C;
}
.tab_content .logo_wrap-box a img {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tab_content .logo_wrap-box a img {
    width: 90%;
  }
}
.tab_content .logo_wrap-box a span {
  display: block;
  width: 200px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .tab_content .logo_wrap-box a span {
    width: 90%;
  }
}
.tab_content .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab_content .btn_wrap .btn_link {
  width: 48%;
  margin: 10px;
}

/*選択されているタブのコンテンツのみを表示*/
#figure:checked ~ #figure_content,
#pickup:checked ~ #pickup_content,
#robot:checked ~ #robot_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
/* .tabs input:checked + .tab_item {
  background-color: #b1060f;
  color: #fff;
} */
.tabs input:checked + .tab_item:before, .tabs input:checked + .tab_item:after {
  display: none;
}

/*選択されているタブによって要素消す*/
#figure:checked ~ #brand_list #robot_brands,
#robot:checked ~ #brand_list #figure_brands {
  display: none;
}

.ttl_wrap .complement {
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .ttl_wrap .complement {
    font-size: 14px;
  }
}
.ttl_wrap h4 {
  position: relative;
  color: #000;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 50px !important;
  line-height: 1em !important;
  letter-spacing: 0.04em;
  margin-bottom: 80px;
  font-weight: bold;
  padding-bottom:0 ;
}
@media screen and (max-width: 768px) {
  .ttl_wrap h4 {
    position: relative;
    color: #000;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9vw !important;
    font-weight: 600;
    line-height: 1em !important;
    letter-spacing: 0.03em;
    margin-bottom: 15vw;
  }
}
.ttl_wrap h4::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  width: 54px;
  height: 4px;
}
@media screen and (max-width: 768px) {
  .ttl_wrap h4::after {
    content: "";
    position: absolute;
    bottom: -6vw;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 15vw;
    height: 2px;
  }
}