@charset "utf-8";
/*
Theme Name: expo_2
Theme URI: 
Template: 
Description: 
Author: 
Tags: 
Version: 
*/

/* 検索 */

.search_content {
  max-width: 765px;
  margin: 0px auto 70px;
}
.search-key::placeholder{
    font-size: 16px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
}
.search-key::-webkit-input-placeholder{
    font-size: 16px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
}
.search-key:-moz-placeholder {
    font-size: 16px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
}

.accordion_area {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.accordion_area .acc_list._flex {
  width: 32.5%;
}
.acc_list .acc_header {
  background-color: #F9DE2F;
  border-bottom: 1px solid #fff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 11% 12px 7%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.acc_list .acc_header.open {
  background-color: #fff;
  color: #000;
}
/*閉じた状態の矢印描画*/
.acc_list .acc_header:after{
  content:"";
  display:block;
  width: 7px;
  height: 7px;
  border-top: #000 1px solid;
  border-right: #000 1px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 5%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.acc_list .acc_header.open:after{
  content:"";
  display:block;
  border-top: #000 1px solid;
  border-right: #000 1px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  top: 7%;
  bottom: 0;
  margin: auto;
}

.acc_list .acc_h_one {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.acc_list .ex-category .acc_h_one {
  width: 30%;
  display: inline-block;
}

.acc_list .acc_header:hover {
  opacity: .8;
}
.acc_list .acc_inner {
  display: none;
  padding: 28px;
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0px;
  background-color: #fff;
  
}

.search_content input[type="search"]{
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #F9DE2F;
  padding: 15px 20px;
  margin-bottom: 10px;
}
.search_content input[type="checkbox"]{
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}
.search_content .acc_h_one label{
  white-space: nowrap;
  margin-right: 20px;
  line-height: 2.5;
}
.search_content input[type="checkbox"] + span {
  position: relative;
  padding-left: 20px;
}
.search_content input[type="checkbox"] + span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  margin-right: .5rem;
}
.search_content input[type="checkbox"]:checked + span::before {
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
}

.search_content .acc_btn{
  margin-top: 30px;
  text-align: center;
}

.search_content input[type="submit"] {
  display: inline-block;
  width: 20%;
  color: #000;
  padding: 11px 0px;
  text-align: center;
  background-color: #F9DE2F;
  border: 1px solid #F9DE2F;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.search_content input[type="submit"]:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.search_content input[type="submit"].search_btn {
  color: #000;
  background-color: #fff;
}


/* 出展者詳細ページ */
.sub_content.ep{
  padding: 0px 30px;
  margin: 170px auto 0px;
}
.ep_content{
  margin-bottom: 75px;
}
.ep_header{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.ep_header h2{
  display: inline-block;
  margin-right: 35px;
}
.ep_header .url,.ep_header .pdf {
  line-height: 1.0;
}
.ep_header .url {
  font-size: 16px;
}
.ep_header .pdf {
  padding: 5px 20px;
  margin-left: auto;
  background-color: #fff;
  border: 1px solid #F9DE2F;
  color: #F9DE2F;
}

.category-dataList {
  display: flex;
  align-items: center;
}
.category-dataList dt,.category-dataList dd{
  display: inline-block;
}
.category-dataList dt{
  text-align: center;
  width: 120px;
  padding: 2px 0px;
  margin-right: 10px;
  border: 1px solid #3E3E3E;
}
.category-dataList dd{
  white-space: pre-wrap;
}

.ep_content h3{
  margin-bottom: 25px;
}
.ep_content .pr-list{
  display: flex;
}
.ep_content .pr-list .pr-img{
  width: 180px;
  margin-right: 30px;
}
.ep_content .pr-list .pr-text{
  width: 70%;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 35px rgba(0, 0, 0, .05);
  font-size: 16px;
}

.ep_content .seihin-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ep_content .seihin-item{
  width: 47%;
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 35px rgba(0, 0, 0, .05);
  font-size: 16px;
}
.ep_content .seihin-item .img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;;
}
.ep_content .seihin-item .si_content{
  padding: 30px;
}
.ep_content .seihin-item h4{
  font-size: 20px;
  margin-bottom: 20px;
}
.ep_content .seihin-item .si_text .pr-text{
  margin-bottom: 25px;
}
.ep_content .seihin-item .si_text .si_category li{
  display: inline-block;
  padding: 2px 15px;
  margin: 0px 15px 10px 0px;
  background-color: #BFB89F;
  border-radius: 15px;
  color: #fff;
  white-space: nowrap;
}

.ep_content .seihin-item.si-first{
  width: 100%;
  margin-top: 0px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 35px rgba(0, 0, 0, .05);
  font-size: 16px;
}
.ep_content .seihin-item.si-first .img img{
  height: 520px;
}
.ep_content .seihin-item.si-first .si_text{
  display: flex;
}
.ep_content .seihin-item.si-first .pr-text{
  margin-bottom: 0px;
}
.ep_content .seihin-item.si-first .si_category li{
  margin: 0px 0px 10px 15px;
}

.ep_content .si_btn {
  margin: 90px auto 0px;
  text-align: center;
}
.ep_content .si_btn a{
  width: 250px;
  display: inline-block;
  padding: 8px 0px;
  background-color: #F9DE2F;
  color: #000;
}

.top-content-syutten.ep {
  margin: 60px auto 140px;
}

/* 出展者詳細ページ */

@media screen and (max-width: 1024px) {
  .acc_list .acc_header {
    font-size: 18px;
  }
  .acc_list .acc_h_one {
    font-size: 18px;
  }
}
/* 検索 */

/* 検索結果一覧 */
.exhibit_content {
  margin-top: 60px;
}
.exhibit_content .ex-item{
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 35px rgba(0, 0, 0, .05);
  margin-bottom: 50px;
}
.exhibit_content .ex-item .img,.exhibit_content .ex-item .content{
  width: 48%;
}
.exhibit_content .ex-item .content{
 position: relative;
}

.exhibit_content .ex-item h4{
  font-size: 20px;
  margin-bottom: 30px;
}
.exhibit_content .ex-item .product{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.exhibit_content .ex-item .product ul{
  list-style: disc inside;
  display: flex;
}
.exhibit_content .ex-item .product li{
  margin-right: 20px;
}
.exhibit_content .ex-item a {
  position: relative;
  display: block;
  width: 150px;
  margin: 0 0 0 auto;
  padding: 5px 0px;
  background-color: #F9DE2F;
  color: #000;
  text-align: center;
  line-height: 2.2;
}
.exhibit_content .ex-item a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: #000 1px solid;
  border-right: #000 1px solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}


.exhibit_content .info-pagination{
  display: flex;
  justify-content: center;
}
.exhibit_content .info-pagination .page-numbers{
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 2.8;
  background-color: #fff;
  margin: 0px 7px;
  box-shadow: 0px 1px 35px rgba(0, 0, 0, .05);
}
.exhibit_content .info-pagination .current{
  background-color: #F9DE2F !important;
  color: #000;
}
.exhibit_content .info-pagination .next::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url(../img/icon_arrow_or.png) no-repeat;
  background-size: contain;
}
.exhibit_content .info-pagination .prev::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url(../img/icon_arrow_or_r.png) no-repeat;
  background-size: contain;
}
.exhibit_content .info-pagination .next-last::after{
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url("../img/icon_arrow_or_d.png") no-repeat;
  background-size: contain;
}
.exhibit_content .info-pagination .first::after{
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url("../img/icon_arrow_or_d_r.png") no-repeat;
  background-size: contain;
}



/* レスポンシブ */
@media screen and (max-width: 768px){

.accordion_area {
  flex-wrap: wrap;
}
.accordion_area .acc_list._flex {
  width: 100%;
  margin-bottom: 10px;
}
.acc_list .acc_header {
  font-size: 16px;
  text-align: left;
  padding: 12px 60px 12px 15px;
}
.acc_list .acc_inner {
  padding: 10px 20px;
}
.acc_list .acc_h_one {
  font-size: 14px;
}
.acc_list .ex-category .acc_h_one {
  width: auto;
  display: inline-block;
}
    
.search_content .acc_h_one label {
  line-height: 2.4;
}
    
.search_content input[type="submit"] {
  font-size: 16px;
  width: 150px;
}
    
.exhibit_content {
  margin-top: 30px;
}
.exhibit_content .ex-item{
  flex-wrap: wrap;
}
.exhibit_content .ex-item .img, .exhibit_content .ex-item .content {
  width: 100%;
}
.exhibit_content .ex-item h4 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.exhibit_content .ex-item .product ul {
  flex-wrap: wrap;
}
.exhibit_content .ex-item .text {
  margin-bottom: 40px;
}

.ep_content {
  margin-bottom: 45px;
}
.ep_header {
  margin-bottom: 25px;
}
.ep_header h2 {
  margin-right: 0px;
  margin-bottom: 20px;
  text-align: left;
}
.ep_header .url {
  margin-bottom: 20px;
}
.ep_header .pdf {
  margin-left: 0px;
}
.category-dataList {
  flex-wrap: wrap;
}
.category-dataList dt {
  margin-bottom: 10px;
}

.ep_content h3 {
  margin-bottom: 15px;
}
.ep_content .pr-list {
  display: flex;
  flex-wrap: wrap;
}
.ep_content .pr-list {
  display: flex;
  flex-wrap: wrap;
}
.ep_content .pr-list .pr-img {
  width: 130px;
  margin-bottom: 30px;
}
.ep_content .pr-list .pr-text {
  width: 100%;
  padding: 20px;
  line-height: 1.8;
}

.ep_content .seihin-item.si-first .img img {
  height: 220px;
}
.ep_content .seihin-item.si-first .si_text {
  flex-wrap: wrap;
}
.ep_content .seihin-item.si-first .pr-text {
  margin-bottom: 30px;
}
.ep_content .seihin-item.si-first .si_category li {
  margin: 0px 0px 10px;
  font-size: 14px;
}
    
.ep_content .seihin-item {
  width: 100%;
}
.ep_content .seihin-item .img img {
  height: 220px;
}
.ep_content .seihin-item .si_content {
  padding: 30px 20px;
}
.ep_content .seihin-item .si_category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ep_content .seihin-item .si_text .si_category li {
  margin: 0px 0px 10px;
  padding: 2px 8px;
  font-size: 14px;
}
    
.ep_content .si_btn {
  margin: 45px auto 0px;
  text-align: center;
}
    
.top-content-syutten.ep {
  margin: 60px auto 110px;
}

}