@charset "UTF-8";
/* ------------------------------------------------------------------------------------
---各ページ用--- ver.2025.02---- サイト改修
------------------------------------------------------------------------------------ */

 /*前にまる数字 */
dl.maru_nem_copy{
    display: flex;
    margin: 0 auto;
    padding: 0;

 & dt{
        background: var(--red-color);
        text-align: center;
        line-height: 1em;
        padding: 0.5em;
        color: #FFF;
        margin: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column; 
     span{
        font-size: 0.5em;
        display: block; 
     }
    }   
 & dd{
        text-align: left;
        padding-left: 15px;
        margin: 0;
        width: calc(100% - 60px);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        line-height: 1.3em;
    } 
}
    
#about_reason{
    dl.maru_nem_copy{
        margin-top: 15px;
     & dd{
        font-size: 1.5em;
        font-weight: bold;;
     }
     @media
     only screen and (max-width : 786px){
         width: 100%;
     }
    }

}

#about_contents{
    .flex-container{
        justify-content: space-between;
        gap: 20px 10%;
        flex-wrap: nowrap;
        margin-bottom: 50px;
   
    .copy{
        width: 55%;
        line-height: 1.8em;
        text-align: left;
    }
     figure{
            width: 40%;
        }
    }
    @media
    only screen and (max-width : 786px){
        .flex-container{
            flex-direction: column;
            justify-content: center;
            text-align: center;
            .copy,
            figure{
                width: 100%;
            }
        }
    }
}
/*-- 引用ボックス --*/ 
.quotation_box{
    margin: 30px auto;
    }
    
    .quotation_box blockquote {
        position: relative;
        padding: 10px 50px 10px 50px;
        box-sizing: border-box;
        background: rgba(225,244,248,1.00);
    }
    
    @media
    only screen and (max-width : 786px){
        .quotation_box blockquote {
        padding: 10px 30px ;
    }
    }
    
    .quotation_box blockquote:before{
        display: inline-block;
        position: absolute;
        top: 20px;
        left: 15px;
        content: "\f10d";
        font-family: FontAwesome;
        color: #77c0c9;
        font-size: 25px;
        line-height: 1;
        font-weight: 900;
    }
    
    .quotation_box blockquote:after{
        display: inline-block;
        position: absolute;
        bottom: 20px;
        right: 15px;
        content: "\f10e";
        font-family: FontAwesome;
        color: #77c0c9;
        font-size: 25px;
        line-height: 1;
        font-weight: 900;
    }
    
    @media
    only screen and (max-width : 786px){
    .quotation_box blockquote:before,
    .quotation_box blockquote:after{
        font-size: 15px;
    }
    
    .quotation_box blockquote:before{
        left: 10px;
       top: 10px;
    }
    .quotation_box blockquote:after{
        right: 10px;
       bottom: 10px;
    }
    }

/*-- 人物吹き出し --*/ 
.balloon_l,
.balloon_r{
  margin: 30px 0;
  display:flex;
  justify-content: flex-start;
  align-items: flex-start; /*縦位置を上揃え*/
/*   align-items: center; */ /*縦位置を真ん中揃え*/
}

@media
only screen and (max-width : 786px){
.balloon_l,
.balloon_r{
  margin: 30px 0 0 0;
  }
}
.balloon_r{
  justify-content:flex-end;
}
.faceicon img{
  width: 80px; /*任意のサイズ*/
  height: auto;
}
.balloon_r .faceicon{
  margin-left:25px;
}
.balloon_l .faceicon{
  margin-right:25px;
}
.balloon_r .faceicon{
  order:2 !important;
}
.balloon_says {
  max-width:calc(100% - 105px); /*最大幅は任意*/
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 17px 13px 15px 18px;
  border-radius: 12px;
  background: #99dddd;/*色は任意*/
  box-sizing:border-box;
  margin:0 !important;
  line-height:1.5;
/*   align-items: center; */
}
.balloon_says p{
  margin:8px 0 0 !important; 
}
.balloon_says p:first-child{
  margin-top:0 !important;
}
.balloon_says:after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
/*   margin-top:-3px;  *//
}
.balloon_l .balloon_says:after {
  left: -26px;
  border-right: 22px solid #99dddd;
}
.balloon_r .balloon_says:after {
  right: -26px;
  border-left: 22px solid #99dddd;
}
 /*-- なぜ今関西 --*/    
#why_kansai{
     .img_box{
        display: flex;
        justify-content: space-between;
        gap: 20px 5%;
        flex-wrap: nowrap;
        }
    .fa_green{
            color: #77c0c9;
        }  
    .img_box_inner{
            flex-grow:1;
            width: calc(95% / 2);
        }
        
        @media
        only screen and (max-width : 786px){
        .img_box{
        display:block;
        }
        .img_box_inner{
        width: 100%;
        }
        }
        
        .img_box_inner figcaption{
        font-size: 0.6em;
        text-align: right;
        }

}


/*-- 開催概要 --*/   
table.gaiyou_tb{
    table-layout: auto;
    margin: 0 auto;
 & tr:first-child th,
   tr:first-child td{
    border-top: 1px dotted #999999;
 }
 & tr th{
    background-color: var(--lpurple-color);
    border-bottom: 1px dotted #999999;
    text-align: center;
    white-space: nowrap;
 }
 & tr td{
    border-bottom: 1px dotted #999999;
 }

 & tr:first-child td{
    font-weight: bold;
 }

 @media
 only screen and (max-width : 786px){
    max-width: 100%;
    & tr th,
    & tr td{
        display: block;
        width: 100%;
        padding: 5px 10px;
    }
 }
}
/*-- 企画委員 --*/ 
table.committee_list_tab{
    margin-top: 20px;
    border-collapse: separate;
     border-spacing: 0px 1px;
     table-layout: auto;
    }
    
    table.committee_list_tab tr th{
    background: #844798;
    color: #fff;
    font-weight: bold;
    }
    
    table.committee_list_tab tr td{
    background: #fff;
    border-bottom: 1px dotted #888888;
    white-space: nowrap;
    width: 1px;
    }
    table.committee_list_tab tr th,
    table.committee_list_tab tr td{
    padding: 0.3em 1em;
    text-align: left;
    }
    
    
    /* 1列目のスタイル */
    table.committee_list_tab tr td:nth-child(1){
    width: 15%;
    }
    
    table.committee_list_tab tr:nth-child(odd) td {
        background: #efeaf4;
    }
    
    @media
    only screen and (max-width : 786px){
        table.committee_list_tab tr td{
        white-space: normal;
        display: block;
        width: auto;}
        table.committee_list_tab tr td:nth-child(1){
        width: auto;
    }
    }

/* 出展ゾーン　テーブル */
table.exhibt_table{
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 1px;
    table-layout: auto;
        a.link{
      color: #2A74A3;
      }
        .link:hover{
        border-bottom: 1px solid #2A74A3;
        }
    
   
     .border_r_white{
         border-right: 1px solid #ffffff;
         }
    
    & tr th{
    padding: 10px;
    width: 30%;
    }
    & tr td{
        padding: 10px;
        width: 65%;
     }
}
    
    @media
    only screen and (max-width : 786px){
    table.exhibt_table tr th,
    table.exhibt_table tr td{
    width: 100%;
    display: block;
    }
    
     .border_r_white{
         border-right: none!important;
         border-bottom: 1px solid #ffffff;
         }
    }
    
    .exh_icon_box{
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    align-items: center;
    }
    
    .exh_icon_box figure{
    width: 50px;
    margin-right: 15px;
    
    }
    
    .exh_icon_box figure.icon{
    width: 30%;
    margin-left: 1em;
    margin-right: 0!important;
    margin-bottom: 0!important;
    }
    
    .exh_icon_box figure.icon img{
    margin: 0!important;
    }
    
    @media
    only screen and (max-width : 786px){
    .exh_icon_box figure{
    width: 30px;
    }
    .exh_icon_box figure.icon{
    width: 20%;
    }
    }
    table.exhibt_table tr th{
        width: 35%;
        @media
    only screen and (max-width : 786px){
        width: 100%;
        }
    }
    
    table.exhibt_table tr th p{
    font-weight: bold;
    text-align: left;
    line-height: 1.5em;
    width: calc( 100% - 65px);
    }
    
    table.exhibt_table td{
    padding: 10px;
    line-height: 1.5em;
    background: #ffffff;
    }
    
    table.exhibt_table tr th{
    background: rgba(213,184,223,0.5);
    }
    
    table.exhibt_table tr:nth-child(odd) th{
    background: rgba(213,184,223,1.00);
    }
    table.exhibt_table th.title_hotel{
        background-color: rgba(132,68,152,1.0)!important;
        color: #ffffff;
        }
        
        table.exhibt_table th.title_fodex{
        background-color: #d71518!important;
        color: #ffffff;
        }

#foodex_exit{
    table.exhibt_table tr th{
    background: rgba(223,184,186,0.5);
    }
    
    table.exhibt_table tr:nth-child(odd) th{
    background: rgba(223,184,186,1.00);
    }
}

/* ゾーン　写真一覧 */
ul.photo_box_zone{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    gap:15px;
    
    & li{
    width: calc(calc(100% - 45px) / 4);
    }
    
    @media
    only screen and (max-width : 786px){
    margin-top: 20px;
    & li{
        width: calc(calc(100% - 30px) / 3);
        }
    }
}



/* 速報 */
table.sokuhou_tb{
    td,
    th{ 
      padding:0.5em ; 
      vertical-align:middle; 
      text-align: center
      ;white-space: nowrap;
    }
    th{ 
        font-size:1em; 
        background:#f4f4f4; 
        font-weight:bold; 
        border-right: 1px dotted #fff;
        }
    th:last-child{ 
        border-right:none;
    }

    td {
        border-bottom:1px dotted #999; 
        background-color:#fff;
    }
    tr:nth-child(5) td{ 
        border-bottom:1px dotted #999;
    }
    tr:nth-child(5) td{
        color: #AD0407; 
    }
    .titleg01{ 
        width:25%;
        font-weight:bold;
        color: #E86A52;
    }
    .titleg02{ 
        width:15%;
        font-weight:bold;
    }
    .titleg03{ 
        width:30%;
        font-size:1.5em; 
        font-weight:bold; 
        color:#000;
    }
     .titleg03 span{
        font-size:0.6em; 
        font-weight:bold;
    }
}

/*-- php使い回し用　ページ内ボタン --*/  
#foot-order{
    ul.bnr_box{
        gap: 15px 5%;
    
    @media
    only screen and (max-width : 680px){
        flex-direction: column;
    }
    }
}

/* 問い合わせ */
.box_inquiry {
	margin: 0 auto;
    background: rgb(255, 255, 255);
    border-radius: 8px;
	max-width: 900px;
	@media screen and (max-width: 789px) {
		width: 100%;
	}
 dl {
    padding: 30px;
	@media screen and (max-width: 789px) {
	  padding: 15px;
		}
	}
   dt {
	text-align: center;
	}
	dd{
	margin: 0;
	}
}
/* スケジュール */

dl.sc_box{
	font-weight:bold;
	background-color:var(--primary-color);
	padding:1px;
	display:flex;
	position:relative;
    line-height: 1.5em;
& dt{
	width: 30%;
	color: #FFF;
	text-align: center;
	background: var(--primary-color);
	margin: auto 0;
    line-height: 1.3em;
    padding: 8px 0;
    }
& dd	{
	background-color:#FFF;
	margin:0 ;
	padding:8px ;
    line-height: 1.3em;
    width: calc(100% - 246px);
    }	
    :before,
    :after {
    position: absolute;
    left: 50%;
    top: 100%;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    border-width: 14px;
    margin: 0 0 0 -14px;
    }
    :before {
    border-top-color: var(--primary-color);
    }
    :after {    
    border-top-color: var(--primary-color);
    }
}
.noarrow{
    dl.sc_box {
        :before {
            border:none;
            }
        :after {    
            border: none;
        }
    }
}
	
@media
only screen and (max-width : 789px){
dl.sc_box { 
    display: block;
 & dt,
    dd{
	width: auto!important;
    float: none;
    display: block;
    margin: 0;
    }
    }
}

/*  オプション */
/*価格用 table*/
table.price {
    td,
    th{
        padding: 5px 10px;
        border-bottom: none;
        vertical-align: middle;
    }
    th{
    background: #AE88A3;
    text-align: center;
    color: #FFF;
    font-weight: normal;
    }
    td{
        background-color: #ffffff;
        text-align: left;
        font-weight: bold;
    }
}

#exhibit_option{
    h4.bottom_line{
        text-align: left;
        padding-left: 1.5em;
        text-indent: -1.5em;
    }

}
.option_box{
    display: flex;
    justify-content: space-between;
    gap:20px 5%;
        blockquote{
            width: 50%;
        }
        figure {
            width: 45%;
            text-align: right;
        }
        @media
        only screen and (max-width : 789px){
        flex-direction: column;
        blockquote,
        figure{
            width: 100%;;
        }
        figure{
            text-align: center;
        }

        }

    }
    .t_note01{
    line-height: 1.5em;
    font-size: 0.9em;
    text-indent: -0.8em;
    padding-left: 0.8em;
    }
.box-red {
        padding: 2px;
        background-color: var(--red-color);
}

.yu_prce_box {
        .table_w55p{
            width: 55%;
            @media
            only screen and (max-width : 640px){
                width: 100%;
            }
        }
        .right_fig{
            float: right;
            width: 200px;
            margin-left: 30px;
            @media
            only screen and (max-width : 640px){
                float: none;
                width: auto;
                margin: 15px auto;
        }
        }

    }

dl.yu_prce_boxNote{
		border:1px solid #195990;
		background:#ffffff;
		max-width:680px ;
		margin:30px auto 0 auto;
		border-radius: 8px; 
        flex-direction: column;
	dt{
	background:#195990;
	text-align:center;
	color:#FFF;
	margin:0;
	font-weight:bold;
	padding:5px 0;
	border-radius: 8px 8px 0 0 ; 
    width: 100%;
    }
	dd{
	margin:0;
	background:#FFF;
	padding:10px;
	border-radius: 0 0 8px 8px; 
    width: 100%;
    white-space:normal;
    }
}

/* オプション　スマート装飾
--------------------------- */
#exhi_option_smart{
    h6 {
        font-weight: bold;
        color: #ffffff;
        background: #195990;
        padding: 0.3em 1em;
        margin-bottom: 0.5em;
    }

    .yu_prce_box {
        dl {
        max-width: 100%;
        }
        dt{
         width: auto;
         white-space: nowrap;
        }
    }
    .option_box{
        .img_center{
            width: 100%;
            text-align: left;
        }

    }
    ul.smart_list_pbox{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 10px;
        @media only screen and (max-width : 650px){
        display: block;
        }
       li{
        padding: 5px 15px;
        background: rgba(25,89,144,0.1);
        width: calc(33% - 30px);
        flex-grow: 1;
        font-weight: bold;
         @media only screen and (max-width : 650px){
         width:100%;
         margin-bottom: 10px;
         }
        }
        li:nth-child(4){
        width: calc(65% - 30px);
        flex-grow: 2;
                  @media only screen and (max-width : 650px){
         width:100%;
         }
        }
        li .title{ 
         font-size: 0.9em;
         font-weight: bold;
         border-bottom: 1px solid rgba(25,89,144,1);
         margin-bottom: 0.8em;
         }
        li p{
         font-size: 0.8em;
         line-height: 1.6em;
         font-weight: normal;
         }
        
        li ul.list_dot {
         column-count: 2;
        }
        li ul.list_dot li{
         background: none;
         font-size: 0.8em;
         padding-top:0;
         padding-bottom: 0;
         padding-right: 0;
         font-weight: normal;
         width: 100%;
         }
        }

}

#exhi_option_other{
    table.plice {
    vertical-align: middle;
    border-collapse: collapse;
    table-layout:auto;
   
     th{ 
        background-color:#666; 
        color:#FFF;
        border-left:1px solid #fff;
        }
     th, td {
            padding: 5px 10px;
            text-align: center;
            white-space: nowrap;
        }
      tr th:first-child { 
        border-left: 1px solid #666;
        width: 35%;
        }
      tr th:last-child { 
        border-right: 1px solid #666;
        }
     th.bor-left{
        border-left:1px solid #666;
        }
     td{ 
        border:1px solid #666;  
        font-weight:normal; 
        line-height: 1.5em; 
        background: #ffffff;
        }
    }
    .box-blue {
        background: #195990 !important;
        margin-left: 0.7em;
        padding: 3px 10px;
        font-size: 0.8em;
        color: #ffffff;
    }
    .ftc_blue{
        color: #195990;
    }
    @media
        only screen and (max-width : 789px){
            table.plice th,
            table.plice td{
                white-space: wrap;
            }
        }
}

ul.movibox {
    flex-wrap: wrap;
    display: flex;
    gap: 30px 5%;
    li{
        width: calc(95% / 2);
        position: relative;
        box-sizing: border-box;
    }
    h5{ 
        font-size: 1em; 
        margin: 15px auto; 
        font-weight: bold; 
        color: rgba(25,145,243,1);
        text-align: left;
    }
    p { 
        font-size: 0.9em; 
        line-height: 1.5em;
        text-align: left;
    }

}

.quest_fig_box{
    ul.movibox li h5{
        text-align: center;
    }
    ul.movibox li figure{
    text-align: center;;
    }

}

.cpuntry_box{
    display: flex;
    gap:2;
    justify-content: space-between;
      dl{
          width: 24%;
      }
      dt{
      background: rgba(25,145,243,1);
      color: #ffffff;
      font-weight: bold;
      padding: 0.3em 0.5em;
      line-height: 1.2em;
      height: 3em;
      display: flex;
      align-items: center;
      justify-content: center;
      }
      dd{ 
        padding:0.3em 1em; 
        margin: 0;
        }
    }
    .quest_fig_box{
     h5{ font-size: 
        1.2em; margin-bottom: 20px;
        }
       }

/* 出展のメリット
--------------------------- */
#exhi_merit{
    .bg_eng {
        position: relative;
        padding-top: 50px;
        padding-bottom: 0px;
        text-align: center;
        }    
    .bg_eng span {
        position: relative;
        z-index: 2;
        }
    .bg_eng:before {
        content: attr(data-en);
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(25,145,243,0.20);
        font-size: clamp(1.25rem, -0.625rem + 9.38vw, 5.375rem);
        font-style: italic;
    }
    .fnt_bleue{
        color: rgba(25, 145, 243, 1);
    }
    ul.movibox {
        h5{
            margin-bottom: 10px;
        }
    }

    @media only screen and (max-width : 640px){
                .bg_eng {
                    padding-top: 30px;
                }
                .bg_eng:before {
                    top: 0px;
                }
               ul.movibox li{
               width: 100%;
                   }
                .cpuntry_box{
                flex-wrap: wrap;
              dl{
                  width: 50%;
                width: 48%;
                    }
               }
         }
}


   /* 事前アポイント制商談会
--------------------------- */
#negotiation_shou{
    .shou_title{
        position: relative;
        margin-bottom: 30px;
            h2{
                position: absolute;  
                color: #ffffff;   
                top: 30%;
                left: 30px;
                right: 30px;
                text-align: center;
                margin: 0;
                padding: 0;
                text-shadow: #333333 ;
                text-shadow: 1px 1px 0 #333, -1px -1px 0 #333, -1px 1px 0 #333, 1px -1px 0 #333, 0px 1px 0 #333, 0 -1px 0 #333, -1px 0 0 #333, 1px 0 0 #333;
                @media only screen and (max-width : 640px){
                    top: 20%;
                    left: 15px;
                    right: 15px;
                }
            }
        .bg_img{
            background-color:#000000;
            display:inline-block;
        }
        .bg_img img{
            opacity: 0.5;
            display:block;
        }
    }
    h3{
        text-align: left;
    }
    .flex-container{
        gap: 0px 5%;
        div{
            width: 50%;
            flex-grow: 1;
        }
        figure{
            width: 45%;
            flex-grow: 1;
        }
        @media only screen and (max-width : 640px){
            flex-direction: column;
            figure,
            div{
                width: 100%;
            }

        }
    }
    .copy {
        font-size: 1.5em;
        font-weight: bold;
        line-height: 1.5em;
        margin: 50px auto;
        text-align: center;
        }
        @media only screen and (max-width : 640px){
            .copy{
            line-height: 1.2em;
            }
    }
    .photo_box_flex {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .point_box{
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        font-weight: bold;
        background: rgba(252,252,240,1.00);
        margin-top: 15px;        
        width: 80%;
        margin: 15px auto 0 auto;
        @media only screen and (max-width : 640px){
            width: 100%;
        }
            .point{
            width: 6em;
            background-color: rgba(239,93,0,1.00);
            text-align: center;
            padding: 0.3em 0.8em;
            color: #ffffff;
            margin-right: 1em;
            display: flex;
            align-items: center;
            }
            .text{
            color: rgba(239,93,0,1.00);
            font-size: 1.1em;
            background: rgba(252,252,240,1.00);
            display: flex;
            align-items: center;
            padding: 5px 1em 5px 0;
            }
        }
}

/* ロゴダウンロード
--------------------------- */
#negotiation_company {
    .midashi_box {
        background-color: rgba(5, 72, 127, 1.00);
        padding: 0.5em 1em;
        font-weight: bold;
        color: rgba(255, 227, 0, 1.00);
        margin: 0 auto 20px auto;
        text-align: center;
        display: inline-block;
    }
    ul.list-column{
        column-count: 3;
        column-gap:5%;
       }
       
       ul.list-column_2{
        column-count: 2;
        column-gap:5%;
       }
       
       ul.list-column li,
       ul.list-column_2 li{
       line-height: 1.5em;
       font-size: 0.9em;
       }
    @media only screen and (max-width : 640px){
       ul.movibox {
        flex-direction: column;
        gap: 0;
        li {
            width: 100%;
        }
       }
       ul.list-column{
        column-count: 2;
       }

    }
       
}

/* ロゴダウンロード
--------------------------- */
#download{
    h4{
        margin-bottom: 50px;
        @media only screen and (max-width : 640px){
            margin-bottom: 30px;
        }
    }
    .dl_box{
        display: flex;
        justify-content: space-between;
        gap: 20px 5%;
        blockquote{
            width: calc(100% / 2);
            flex-grow: 1;
        }
    }
    ul.list_dot{
        margin-left: 15px;
    }
    ul.list_dot li,
    ul.list_dot li:before{
        color: var(--red-color);
    }

    @media only screen and (max-width : 640px){
        .dl_box{
            justify-content: center;
            flex-direction: column;
            blockquote{
                width: 100%;
            }
        }

    }
}

#dl_note{
    .contents_inner{
        width: 80%;
        margin: 0 auto;
        @media
        only screen and (max-width : 789px){
            width: 100%;
        }
    }

}
	/* 出展ゾーン　小さいボタン　ブルー
--------------------------- */

.btn_link_s a{
    padding: 5px 15px;
    background: rgba(4,174,233,1.00);
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-size: 0.9em;
    color: #ffffff;
}

.btn_link_s a:hover{
    background: #ffffff;
    color: rgba(4,174,233,1.00);
    border: 1px solid rgba(4,174,233,1.00);
}

	/* 来場のご案内　来場方法
--------------------------- */

#visi_howto {
 .visit-way_flex {
    /*display: flex;*/
    gap: 3%;
    margin: 0 auto 50px auto;
    h5{
        background-color: #844798;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        color: #fff;
        line-height: 1em;
        margin: 0;
        border-radius: 15px 15px 0 0;
    }
    }
    .visit-way_box {
    background: #fff;
    flex-basis: 50%;
    /* box-shadow: 5px 5px 10px rgb(0 0 0 / 25%); */
    border: 1px solid #844798;
    border-radius: 15px;
    }
    .visit-way_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap:7%;
    max-height: 100%;
    min-height: 120px;
    @media screen and (max-width:789px) {
        display: block;
        .m25-t{margin-top: 0!important;}
    }
}

    .visit-way_inner p{
    line-height: 1.5em;
    }
    .btn{
        margin-bottom: 0.5em;
    }
@media screen and (max-width:650px) {   
    .visit-way_box {
        border-radius: 8px;
    }
    .visit-way_flex {
        flex-direction: column;
        margin: 0 auto 30px auto;
        h5{
            border-radius: 8px 8px 0 0;
        }
    }

    .visit-way_box:nth-child(2) {
        margin-top: 10px;
    }

    .visit-way_inner {
        padding: 5% 0;
        min-height: auto;
    }
    }
}

	/* 来場のご案内　出展製品写真
--------------------------- */

ul.photo_box_pro{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px 15px;
    }
    
ul.photo_box_pro li{
    width: calc( calc(100% - 30px) / 3);
    @media
    only screen and (max-width : 789px){
        width: calc( calc(100% - 15px) / 2);
    }
 }

/* 来場のご案内　来場対象*/
.visi_target_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    gap: 15px 15px;
    @media
    only screen and (max-width : 789px){
        flex-wrap: wrap;
    }
}

.visi_target_box blockquote{
    width: calc( calc(100% - 45px) / 4);
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 25%);
	border: 1px solid #844798;
    @media
    only screen and (max-width : 789px){
        width: calc( calc(100% - 15px) / 2);
    }
    h5{
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 1em;
        line-height: 1.4em;
        color: #fff;
        background: #844798;
        min-height: 4.5em;
        border-radius: 5px 5px 0 0;
        text-align: center;
        margin-bottom: 10px;
        margin-bottom: 15px;
    }
    .visi_target_box_innar{
        padding: 0 15px 15px 15px;
        p {
            text-indent: -1.2em;
            padding-left: 1.2em;
            line-height: 1.4em;
            margin-top: 0.5em;
            } 
            p:before {
                content: "●";
                width: 0.8em;
                margin-right: 0.2em;
                color: #D5C6DF;
                font-size: 15px !important;
            }
                   
        }


}

	/* 地図
--------------------------- */	
#visi_access{
    h5{
        text-align: left;
        margin-bottom: 0.3em;
        color: var(--primary-color);
    }
    .map{ 
    width:100%; 
    iframe{
        width:100%; height:450px;
        }
    }
}

	/* よくあるご質問
--------------------------- */	
#visi_qa {
    .cp_qa { 
        margin:20px auto 0 auto ; 
        padding-bottom:50px;
        }

    .cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 0 0;
	color: #333;
	border-bottom:1px solid #999;
    }
    .cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
    }
/* 質問 */
    .cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.3em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2.5em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	font-size:1.1em;
    }
    .cp_qa .cp_actab label::before {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
	color:#844798;
	font-weight:bold;
    }
    .cp_qa .cp_actab label:hover {
	transition: all 0.3s;
    }
/* --質問の＋アイコン */
    .cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '\2b';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
			color:#D5C6DF;
            @media
            only screen and (max-width : 789px){
                line-height: 1.5em;
                width: 1.5em;
	            height: 1.5em;
            }
    }	
/* 答え */
    .cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;

    }
    .cp_qa .cp_actab .cp_actab-content::before {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.6em 0 0 -1em;
	padding: 0;
	content: 'A';
	color:#666;
	font-weight:bold;
    }
    .cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 3em 1em 0.5em;
    }

    .cp_qa .cp_actab .cp_actab-content p a{
    color: #0167A7;
    }

    .cp_qa .cp_actab .cp_actab-content p a.nolink{
        color: #acb0b2;
        }

    .cp_qa .cp_actab .cp_actab-content p a:hover{
    text-decoration: underline;
    }
    .cp_qa .cp_actab .cp_actab-content p.gasryou{
	padding:0.3em 2em;
    }
/* 質問を開いた時の仕様 */
/* --答えの高さ */
    .cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border-top:1px dotted #999;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
			margin-top:2px;
    }
/* 質問をクリックした時のアイコンの動き */
    .cp_qa .cp_actab input:checked ~ label {
    }
/* 質問をクリックした時の+の動き */
    .cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	color:#666 !important;
    }
    ul.out_link{
        padding: 0 3em 1em 0.5em;
    }
    ul.out_link li{
        padding-left:1.5em; 
        text-indent:-1.2em;
        line-height: 1.3em;
    }
    ul.out_link li a{
        color: #0167A7;
    }
    ul.out_link li a:before{
        content: "\f14c";
        font-family: FontAwesome;
        margin-right: 5px;
    }
    ul.out_link li a:hover{
        text-decoration: underline;
    }
    ul.out_link li a.nolink,
    ul.out_link li a.nolink:before{
        color: #acb0b2;
    }

}

/* シャトルバスのご案内
--------------------------- */
dl.bus_box{
    display: flex;
    width: 80%;
    margin: 20px auto 0 auto;
    }

    
    dl.bus_box dt{
    font-weight: bold;
    width: 15em;
    text-align: center;
    background: rgba(132,71,152,1.0);
    color: #ffffff;
    padding: 5px 0 ;
    }
    
    dl.bus_box dd{
    width: calc(100% - 9em);
    margin-left: 1px;
    padding: 5px 15px;
    background: #ffffff;
    }
    
    dl.bus_box dd li{
    text-indent: -2em;
    padding-left: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    }
    
    dl.bus_box dd li:last-child{
    margin-bottom: 0;
    }
    
    dl.bus_box dd li a{
    color: #2A74A3;
    }
    
    dl.bus_box dd li:before{
        content: "\f078";
        font-family: FontAwesome;
        font-size: 1em;
        margin-right: 0.5em;
        color: #ea5f2a;
    }

@media
only screen and (max-width : 789px){
    dl.bus_box{
        flex-direction: column;
        width: 100%;
        dd,
        dt{
            width: 100%;
        }
    }
}

#bus_attention{
    .note_box{
        width: 90%;
        margin: 30px auto;
        padding: 30px;
        background: #f0f0f0;
        border-radius: 15px;
        h4{
            color: #3176AB; 
        }
        ul.list_dot li:before{
            color: #808080;
        }
        }
        @media
    only screen and (max-width : 789px){
        .note_box{
        width: 100%;
        padding: 15px;
        }
    }
}

#visitors_bus {
        table.timetable{
        margin: 0 auto;
            border-collapse: separate;
            border-spacing: 0px 1px;
            border-top:1px solid #ccc;
        }
        table.timetable th{
         background: #3176AB;
         color: #fff;
         font-weight: bold;
         width: 50px;
         padding: 5px 15px;
         text-align: center;
        }
        table.tb-th_purple th{
         background: #6331AB;
        }
        table.timetable td{
        padding: 5px 15px;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        background: #ffffff;
        text-align: left;
        font-weight: bold;
        }
    }

.bus_2com{
        display: flex;
        justify-content: space-between;
        
        .bus_2com_innar{
        width: calc( calc( 100% - 30px ) / 2);
        text-align: center;
            h3{
            margin-bottom: 10px;
            font-weight: bold;
            }
            h5{
                background-color: var(--primary-color);
                color: #ffffff;
                margin-bottom: 10px;
                padding: 10px;
            }
            p{
                font-size: 0.8em;
                margin-bottom: 10px;
                line-height: 1.3em;
                }

            figcaption{
            font-size: 0.8em;
            text-align: center;
            margin-bottom: 10px;
            }
        }
}
@media
 only screen and (max-width : 789px){
        .bus_2com{
        display: block;
            .bus_2com_innar{
            width: 100%;
            margin-bottom: 20px;
        }  
        }
}

/* 人手不足対策
--------------------------- */

#manpower{
    h2{
        color: var(--primary-color);
    }
    .read{
        font-size: 1.2em;
        line-height: 1.8em;
    }
    ul.movibox h5 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    ul.movibox .text_innter {
        position: relative;
        padding: 10px;
        box-sizing: border-box;
        font-size: 0.8em;
        line-height: 1.4em;
        background-color: rgba(241, 237, 237, 1.00);
        border-radius: 8px;
    }
    @media
    only screen and (max-width : 786px){
        ul.movibox{
            flex-direction: column;
            li{
                width: 100%;
            }
        }
    }
}

#manpower_pre {
    .fig_box{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    div{
        width: calc( 96% / 2);
        p{
            font-size: 0.75em;
            line-height: 1.3em;
            }
         img{
                margin-bottom: 10px;
            }
        }
    }
    
    @media
    only screen and (max-width : 786px){
    .fig_box{
    display: block;
        div{
        width: calc( 96% / 1);
        margin: 0 auto;
        }
        div:first-child{
        margin-bottom: 20px;
        }
         }
    }
}

#manpower_exhibitor{
    ul.movibox .text_innter{
        background-color: rgb(252, 252, 246);
    }

}


/* ページ下部Bnr
-----------------------------------------*/
.Bnr{
    position: relative;
    margin: 0 auto;
    width: 900px;
    display: none;
        input{
        display: none;
        }
        .Bnr__box{
        position: fixed;
        bottom: 0;
        box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        z-index: 88;
        margin-bottom: 15px;
        }
        .Bnr__box__inner{
        width: 900px;
        box-sizing:border-box;
        padding: 10px;
        background-color: #fafafa;
        text-align: center;
        } 
        .button{
        padding: 8px 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-top: 10px;
        font-weight: bold;
        background-color: #38BACB;
        color: #fff;
        }
        .button:hover{
        background-color: #77C3CD;
        cursor:pointer;
        }
        .Bnr__box__inner a{
        display: block;
        }
        p.close{
        position: absolute;
        right: 10px;
        top:10px;
        }
        p.close a{
        display: block;
        width: 20px;
        height: 25px;
        text-align: center;
        }
        p.close a span{
        display: block;
        width: 1px;
        height: 1px;
        overflow: hidden;
        }
        p.close a i{
        font-size: 20px;
        z-index: 888;
        color: #222;
        } 
        p.bnr_copy{
            display: block!important;
        }
  @media
  only screen and (max-width : 786px){
         width: 100%;
        .Bnr__box__inner{
            width: 100%;
        }
        .Bnr__box { 
        position: fixed; 
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        }
    }
}




  /* FOODEX カクテル in 関西
--------------------------- */
#zone_cocktail2025{
    #title {
        background-color: rgba(227, 0, 127, 0.13);
    .title_inner {
        align-items: center;
        }
    }
    h2{
        color: rgba(227, 0, 127, 1);
    }
    .read{
        font-size: 1.2em;
        line-height: 2em;
        font-weight: bold;
    }
    table.semi_program {
        th  {
        background-color: rgba(227, 0, 127, 1);
        }
        tr:nth-child(2) th:nth-child(1) {
        background-color: rgba(227, 0, 127, 0.6);
        }
    tr:nth-child(3) th:nth-child(1) {
        background-color: rgba(227, 0, 127, 0.8);
        }
    }
    ul.movibox h5{
        color: rgba(227, 0, 127, 1);
        text-align: left;
        font-size: 1.1em;
    }
    @media
    only screen and (max-width : 640px){ 
        .read{
            font-size: 1.2em;
            line-height: 1.6em;
            font-weight: bold;
            text-align: left;
        }
        ul.movibox{
            flex-direction: column;
            gap: 15px 0;
        }
        ul.movibox li {
            width: 100%;
            .fl-r {
                float: right;
                width: 80px;
                margin: 10px 10px 0 0;
            }
        }
        #cooktail_schedule h5{
         text-align: left;
        }

    }

}

/*   来場キャンペーン   */
#campaign2024{
    .ampaign-bgc {
        background-color: #989898;
        background: url("../img/campaign_2024/campaign_bk.jpg") no-repeat center center;
        background-size: cover;
    }
    .contents_inmer{
    width: 960px;
    padding: 80px 0;
    @media
    only screen and (max-width : 768px){
            width: 95%;
            margin: 0px;
         }
    }  
    h2{
        line-height: 1.6em;
        margin-bottom: 50px;
        color: #38BACB;
        @media only screen and (max-width : 786px){
        margin-bottom: 30px;
        }
   }
   
   #campaign_title{
        h2{
        color: #ffffff;
        }
        h3{
        font-size: 1.6em;
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 20px;
         }
        .head-border:before, .head-border:after {
        height: 2px;
        background-color: #ffffff;
        }
        .midashi{
        font-weight: bold;
        font-size: 1.6em;
        color: #ffffff;
        }
   }
}

#campaign_02{
        .step_box{
        width: 100%;
        margin: 0 auto;
        background: #38BACB;
        .inner{
        padding: 50px;
        }
        h3 {
        font-size: 1.6em;
        font-weight: bold;
        color: #ffffff;
        display: flex;
        margin-bottom: 30px;
        line-height: 1.3;
        }
        h3 span{
        background: #ffffff;
        border-radius: 8px;
        padding: 3px 1em;
        color: #38BACB;
        font-size: 0.8em;
        margin-right: 1em;
        line-height: 1em;
        }
        .step_box_inner{
        display: flex;
        justify-content: space-between;
        gap:0 10%;
           p{
            color: #ffffff;
            line-height: 1.5em;
            font-size: 0.9em;
            }
           input{
            display: none;
            }
            figure{
            display: flex;
            justify-content: center;
            align-items: center;
            }
        .copyBtn{
            font-weight:bold;
            font-size:.85em;
            text-align:center;
            margin:20px auto 0 auto;
            padding:8px 20px;
            border:1px solid #eee;
            border-radius: 8px;
            background-color: #eee;
            color: #000;
            }
        .copyBtn:hover{
            background-color: rgba(179,179,179,1.00);
            cursor:pointer;
            }
        .copyBtn.isCopied{
            pointer-events:none;
            background:#f7f7f7;
             }
        .copyBtn.isCopied:hover{
            cursor:auto;
            a{
             text-decoration: underline;
                color: #ffffff;
            }
            a:hover{
            color: rgba(65,106,248,1.00);
            }
            }
        }
    }
    .arrow{
    text-align: center;
    margin: 15px auto;
    }
    .step_box_last{
        color: #010079;
        font-size: 2em;
        font-weight: bold;
        text-align: center;
        text-shadow: 0 0 5px white;
        padding: 0.3em 0.5em;
        background: -webkit-repeating-linear-gradient(-45deg,#9AECF7, #9AECF7 3px,#e9f4ff 3px, #e9f4ff 7px);
        background: repeating-linear-gradient(-45deg, #9AECF7, #9AECF7 3px,#e9f4ff 3px, #e9f4ff 7px);
        margin-bottom: 20px;
    }   
    .midashi{
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #ed3737;
    margin-bottom: 20px;
    line-height: 1.3em;
    }
    ul.list_dot{
    width: 75%;
    margin: 50px auto 0 auto;
        @media
        only screen and (max-width : 786px){
        width: 100%;
        margin: 30px auto 0 auto;
        }
        }
    ul.list_dot li:before{
    color:#38BACB;
    }
    @media
    only screen and (max-width : 768px){
       .step_box {
       .inner {
            padding: 30px 10px;
        }
        .step_box_inner {
            flex-direction: column-reverse;
            gap: 20px;
        }
    }
    }


}

#campaign_FAQ{
    #visi_qa .cp_qa .cp_actab label::before{
    color: #38BACB;
    }
    #visi_qa .cp_qa .cp_actab label::after{
    color: #A8DCE3;
    }
}

#campaign_rule{
    h6{
        text-align: left;
        margin-bottom: 0.2em;
    }
}
  /* セミナー情報
--------------------------- */
#seminar,#seminarwinesake{
    .read{
        font-size: ;
    }
    .semi_btn{
    margin-top: 50px;
    }
    ul.bnr_box li{
    width: 50%;
    text-align: center;
    }
    @media
    only screen and (max-width : 768px){
        .semi_btn{
        margin-top: 30px;
        }
        ul.bnr_box li{
            width: 100%;
        }
    }
    .ta-c {text-align: center;}
    @media
    only screen and (min-width : 789px){
    .table-line {
        border-bottom: none !important;
        border-left: #999 dotted 1px;
        border-right: #999 dotted 1px;
    }
    .table-line2 {
        border-left: #999 dotted 1px;
        border-right: #999 dotted 1px;
        border-top: none !important;
            }
    .table-line_bone {
                border-bottom: none !important;
        }
    }
}
/* セミナープログラム */
table.semi_program{
	font-size:0.9em;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-word;

    th {
    font-weight: bold;
    background-color: #c60037;
    padding: 0.5em;
	border-right: 1px solid #ffffff;
	color:#FFF;
	text-align:center;
    span{ 
        display:block;
        @media screen and (max-width: 768px) { 
             display:inline;
            }
        }
        .code {
            background-color: #1c2d5a;
            color: #fff;
            display: inline-block;
            border-radius: 4px;
            padding: 5px 7px;
            margin-bottom: 2px;
            line-height: 1;
            border: transparent 1px solid;
        }
    }
    tr:first-child th:last-child{
        border-right: none;
    }
    td {
        border-bottom: 1px dotted #999999;
        padding: 0.5em;
        text-align:left;
        background-color:#FFF;
        vertical-align:top;
        font-size:1em;
        .title{ 
            font-size:0.9em; 
            font-weight: bold; 
            color:#c60037; 
            line-height:1.2em; 
            text-align: left;
            }
        p{ 
            font-size:0.75em; 
            line-height:1.3em; 
            margin-bottom:0.5em;
            }
         .Cname{ 
            text-align: left; 
            font-weight: bold;
            line-height: 1.4em;
                }
         .pro_time{ 
            text-align: left; 
            font-weight: bold;
            line-height: 1.3em; 
            }
          .seminar-time {
                background: #e3e3e3;
                padding: 5px 10px;
                font-weight: bold;
                display: inline-block;
            }
        .title_nextr{ 
            display: inline-block; 
            font-weight: bold; 
            font-size: 1.2em;
            }
        .txt_nextr{
            font-size: 0.9em;
            line-height: 1.6em;
        }
             
         ul.list_pl{
                font-size: 0.75em;
                line-height: 1.3em;
            }
         .text_note{ 
            text-align:center; 
            font-size:1.1em;
            }
          .Sname{ 
                text-align: center; 
                font-weight: bold;
                line-height: 1.4em; 
                font-size: 1.1em;
                border-top: 1px solid rgba(58,129,178,1.00);
                border-bottom:1px solid rgba(58,129,178,1.00);
                padding: 5px 0px;
                }
          .Sname_menu{
                text-align: center; 
                font-weight: bold;
                line-height: 1.4em; 
                font-size: 0.95em;
                color: #315596;
            } 
            .soldout{
                background-color: #2B99CF;
                padding: 2px 5px 0;
                display: block;
                border-radius: 3px;
                color: #fff;
                line-height: 1.4;
                font-size:0.9em;
                text-align:center;
                margin-bottom:5px;
            }
            strong{
                background-color:#7A7A7A;
                padding: 2px 5px 0;
                display: block;
                border-radius: 3px;
                color: #fff;
                line-height: 1.4;
                font-size:0.9em;
                text-align:center;
            }
            .photo{ 
                width:70px; 
                float:right; 
                margin:0px 0 auto 10px;
            }
             .photo_L{ 
                width:120px;
            }  
            figcaption {
                font-weight: normal;
                font-size: 0.9em;
                text-align: right;
                margin-top: 0.3em;
            } 
            .hidden_box {
                margin: 10px 0;
                padding: 0;
            } 
            .seminar-num {
                border: #000 solid 1px;
                padding: 2px 10px;
                box-sizing: border-box;
            }      
    }
    .time{ 
        font-size:0.9em; 
        font-weight:bold; 
        display:none;
        @media screen and (max-width: 768px) { 
            display:inline;
        }
    }
    .th_time{
        width: 80px;
    }
    @media screen and (max-width: 768px) { 
        th,
        td{ 
            display:block; 
            width:98%; 
            margin:0 auto; 
            overflow:hidden;
        }
        th {
            border-right: none;
        }
         tr.head,
         th br,
         .title br{ 
            display:none;
        }
        .screensize_pc {
            display: none !important;
        }
        .pro_time{ 
            display: inline;
        }
     }
 }

/*プログラムの概要 クリックで称賛表示*/
.hidden_box {
    margin: 10px 0;
    padding: 0;
    /*ボタン装飾*/
    label {
        padding: 5px 10px;
        font-weight: bold;
        background: #efefef;
        border-radius: 5px;
        cursor :pointer;
        transition: .5s;
        font-size:0.65em;
    }
    /*アイコンを表示*/
    label:before {
    display: inline-block;
    content: '\f078';
    font-family: 'FontAwesome';
    padding-right: 5px;
    transition: 0.2s;
    }
    /*ボタンホバー時*/
    label:hover {
    background: silver;
    }
    /*アイコンを切り替え*/
        input:checked ~ label:before {
    content: '\f00d';
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    color: #668ad8;
    }
    /*チェックは見えなくする*/
    input {
    display: none;
    }
    /*中身を非表示にしておく*/
    .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    }
    /*クリックで中身表示*/
    input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
    }
}

/*FOODEXトップシェフテーブル／World Kitchen Stage*/
#semi_topchef{
    background-color: #f0d9df;

table.semi_program {
    th  {
        background-color: rgba(198, 0, 55, 1.0);
    }
    tr:nth-child(2) th:nth-child(1) { 
        background-color: rgba(198, 0, 55 ,0.2);
    }
    tr:nth-child(3) th:nth-child(1) {
        background-color: rgba(198, 0, 55 ,0.4);
    }
    tr:nth-child(4) th:nth-child(1) {
        background-color: rgba(198, 0, 55 , 0.6);
        }
    }
}



/*ホテレス・イノベーションステージ*/
#semi_inovation {
    background-color: #e0d9e2;
    .icon_dot {padding-left: 0em;}
    table.semi_program { 
      th {
        background-color: rgba(132, 71, 152, 1.0);
        }
        tr:nth-child(2) th:nth-child(1) {
        background-color: rgba(132,71,152,0.4);
        }
        tr:nth-child(3) th:nth-child(1) {
        background-color: rgba(132,71,152,0.5);
        }
        tr:nth-child(4) th:nth-child(1) {
        background-color: rgba(132,71,152,0.8);
        }
        tr:nth-child(5) th:nth-child(1) {
        background-color: rgba(132,71,152,1.0);
        }
        tr:nth-child(6) th:nth-child(1) {
        background-color: #643373;
        }
        .title{
            color: #643373;
        }
        .square_text{
                font-size: 0.8rem;
                padding: 0.3em;
         }
        .box-red {
                background-color: #fcc;
            }
        tr:last-child td:nth-of-type(2){
            border-bottom: 1px dotted #999999;
            border-left: 1px dotted #999999;
            border-right: 1px dotted #999999;
            @media screen and (max-width: 768px) {
                border-left: none;
                border-right: none;
            }
        }
        tr:nth-of-type(2) td,
        tr:nth-of-type(3) td{
            border-right: 1px dotted #999999;
            @media screen and (max-width: 768px) {
                border-right: none;
            }
        }
        tr:nth-of-type(2) td:last-child,
        tr:nth-of-type(3) td:last-child{
            border-right: none;
        }
    }
}
/*Nextステージ／出展者プレゼンテーションセミナ*/
#semi_nextstage {
    background-color: #eee;
    table.semi_program{
        th {
        background-color: rgba(78, 77, 77, 1.0);
        }
        tr:nth-child(2) th:nth-child(1){
            background-color: rgba(78,77,77,0.3);
        }
        tr:nth-child(3) th:nth-child(1){
            background-color: rgba(78,77,77,0.5);
        }
    tr:nth-child(4) th:nth-child(1){
        background-color: rgba(78,77,77,0.7);
        }
    tr:nth-child(5) th:nth-child(1){
        background-color: rgba(78,77,77,0.85);
        }
    tr:nth-child(6) th:nth-child(1){
        background-color: rgba(78,77,77,1.0);
        }
    }
}

/*FOODEX WINESAKE*/
#semi_winesake {
    background-color: #e5d0d0;
    .icon_dot {padding-left: 0em;}
    table.semi_program { 
      th {
        background-color: rgba(126, 0, 2, 1.0);
        }
        tr:nth-child(2) th:nth-child(1) {
        background-color: rgba(126, 0, 2,0.3);
        }
        tr:nth-child(3) th:nth-child(1) {
        background-color: rgba(126, 0, 2,0.4);
        }
        tr:nth-child(4) th:nth-child(1) {
        background-color: rgba(126, 0, 2,0.6);
        }
        tr:nth-child(5) th:nth-child(1) {
        background-color: rgba(126, 0, 2,0.8);
        }
        tr:nth-child(6) th:nth-child(1) {
        background-color: #7e0002;
        }
        .title{
            color: #c60037;
        }
        .square_text{
                font-size: 0.8rem;
                padding: 0.3em;
         }
        .box-red {
                background-color: #fcc;
            }
        tr:last-child td:nth-of-type(2){
            border-bottom: 1px dotted #999999;
            border-left: 1px dotted #999999;
            border-right: 1px dotted #999999;
            @media screen and (max-width: 768px) {
                border-left: none;
                border-right: none;
            }
        }
        tr:nth-of-type(2) td,
        tr:nth-of-type(3) td,
        tr:nth-of-type(4) td{
            border-right: 1px dotted #999999;
            @media screen and (max-width: 768px) {
                border-right: none;
            }
        }
        tr:nth-of-type(2) td:last-child,
        tr:nth-of-type(3) td:last-child{
            border-right: none;
        }
    }
}

  /* 宿泊のご案内
--------------------------- */
#exhi_syukuhaku{
    .pangeNavi{
     margin: 15px auto 0 auto; 
     width: 90%;
     @media only screen and (max-width : 789px){
        width: 100%;
     }
      ul{
        justify-content: center;
      }
      li{
        margin-right: 27px;
        @media only screen and (max-width : 789px){
            margin-right: 0;
            }
        }
    }
    .sab-title{
        background-color: var(--red-color);
        color: #ffffff;
        padding: 3px 10px;
        line-height: 1em;
        margin-bottom: 0.3em;
    }
    h4{
        text-align: left;
        padding-left: 1.5em;
        text-indent: -1.5em;
    }
    .btn a {
        width: 320px;
    }
    .option_box{
            display: flex;
            justify-content: space-between;
            gap:20px 5%;
            width: 90%;
            margin: 0 auto;
            figure{
            width: 45%;
            text-align: right;
            @media only screen and (max-width : 789px){
                margin: 0 auto;
                text-align: center;
                width: 75%;
                }
            } 
    .yu_access_box {
        display: flex;
        gap: 2%;
        width: 100%;
        @media only screen and (max-width : 789px){
            display: block;
            margin: 15px auto;
            }
        dl{
        overflow:hidden;
        font-weight:bold;
         background: #ffffff;
         width: 50%;
            @media only screen and (max-width : 789px){
            width: 100%;
             margin: 0 auto;
             } 
            dt{
            background: #444;
            text-align: center;
            color: #FFF;
            width: 50%;
            padding:5px 0;
            float: left;
                }
            dd{
            margin:0;
            background: #ffffff;
            width: 100%;
            padding:5px 0 5px 50%;
            text-align: center;
            @media only screen and (max-width : 789px){
                padding-left: 50%;
                margin: 0;
                border-bottom: 1px solid #cecece;
                width: 100%;
                }   
                }
            }
        } 
    }

}

  /* FOODEXデモンストレーション 2025
--------------------------- */
#semi_cocktail_read{
    h2{
        color: rgba(227, 0, 127, 1.0);
    }

}


#semi_cocktail_point{
    h3{
        color: rgba(227, 0, 127, 1.0);
        text-align: center;
    }
    .head-border:before,
    .head-border:after {
        background-color: rgba(227, 0, 127, 1.0);
        ;
        }
    ul.photo_box_zone{
        flex-wrap: nowrap;
    }
    ul.col_05 li {
        width: calc(calc(100% - 45px) / 5);
    }
    .midashi_box {
        font-weight: 700;
        color: rgb(2, 109, 196);
        padding: 3px;
        margin: 0 auto 10px auto;
        text-align: center;
        font-size: 17px;
    }
    .flex-container{ 
        margin-bottom: 50px;
        flex-wrap: nowrap;
    }
    .flex-container_demo{
        display: flex;
        flex-grow: 1;
        gap: 2%;
        justify-content: space-between;
        .ls_moviebox{width: 48%;}
        iframe{margin: 0 auto;}
        p{margin: 8px 0;}
    }
    .demo_box{
        display: flex;
        flex-direction: column;
        background-color: #f4f4f4;
                width: 100%;
                padding: 12px auto 0;
            figure{ 
                width: 90%;
                margin: auto auto 20px;
            }
    .demo_box_inner{padding: 20px 12px;}
}
    @media only screen and (max-width : 640px){
        ul.photo_box_zone{
            gap: 5px;
        }
        .flex-container{display: block;}
        .flex-container_demo{
        display: block;
          .ls_moviebox{
            margin: 0 auto;
            width: 100%;}
        }
        p{margin-bottom: 5px;}
    }

}

/*スケジュール　*/
#cooktail_schedule{
    h2{
        color: rgba(227, 0, 127, 1.0);
    }
    table.semi_program {
        th  {
        background-color: rgba(227, 0, 127, 1);
        }
        tr:nth-child(2) th:nth-child(1) { 
            background-color: rgba(227, 0, 127, 0.4);
        }
        tr:nth-child(3) th:nth-child(1) {
            background-color: rgba(227, 0, 127, 0.5);
        }
        tr:nth-child(4) th:nth-child(1) {
            background-color: rgba(227, 0, 127, 0.6);
            }
        tr:nth-child(5) th:nth-child(1) {
                background-color: rgba(227, 0, 127, 0.7);
             }
        tr:nth-child(6) th:nth-child(1) {
                background-color: rgba(227, 0, 127, 0.8);
             }
        tr:nth-child(7) th:nth-child(1) {
                background-color: rgba(227, 0, 127, 1.0);
             }
        /*.title {
            font-size: 1em;
        }*/

        }
        ul.bnr_box li {
            width: 100%;
        }
        @media
        only screen and (max-width : 768px){
        table td img {
            float: inline-end;
            /*margin-top: -15%;*/
            }
        }
        @media
        only screen and (max-width : 640px){
        table td img {
            width: 90px;
            }
         }
}

  /* セミナー情報　index */
 #semi_com01{
    .contents_inner{padding-bottom: 0px;}
 }
 #semi_index,#event_index{
 ul.semi_page{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px 15px;

   li{
        position: relative;
        width: calc((100% - 15px) / 2);
        height: 270px;
        overflow: hidden;
    }
    .up_text{
        position: absolute;
        width: 100%;     
        height: 270px;
        color: #FFF;
        line-height: 1.3rem;
        background-color: rgba(68, 68, 68 ,0.9);
        top:0;
        left: 0;
        border-radius: 10px;
    }
    .up_text:hover{
        background-color: rgba(68, 68, 68 ,0.7);
    }
    .up_text_inner{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 15px;
        height: 270px;
        p{
            line-height: 1.5em;
        }
    }
    .btn_parple a{
        background-color: var(--primary-color);
        color: #fff;
        margin: 20px auto 0 auto;
        padding: 5px 10px;
        width: 12em;
        font-size: 0.9em;
    }
    .btn_parple a:hover{
        background-color: #fff;
    color:  var(--primary-color);
    border-color: var(--primary-color);
    }

    .nolink a{
        pointer-events: none;
    background: #8f8f8f;
    cursor: default;
    }
    .btn__link:before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        }
    img{
        border-radius: 10px;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        }
    }
 @media only screen and (max-width : 640px){
    ul.semi_page{
        flex-direction: column;
        li{
            width: 100%;
        }
        li,
        .up_text,
        .up_text_inner{
            height: 240px;
        }


    }

 }

}

/* 10月14日　追記　開催レポート */


#report {

    .sokoku_box{
        display: flex;
        gap: 5%;
    }

           table.sokuhou_tb{
            width: 98%;
            margin: 0 auto;
        }

        table.sokuhou_tb th{
            background: rgba(105,58,120,1.00);
            color: #FFF;
        }

        table.sokuhou_tb td{
            text-align: center;
            vertical-align: center;
        } 

        .table_box{
        display: flex;
        justify-content: center;

        .text_day{
           font-weight: bold;
           color: #E86A52;
           margin-right: 1em;
           font-size: 1.1em;

        }
        .text_nunb{
                    font-size: 1.5em;
        font-weight: bold;
        margin-right: 0.5em;
        color: #000;
         span{
            font-size: 0.65em;
         }

        }
        .red{
            color: #AD0407!important;
        }
            }

        


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

            .days{
                width: 85%;
                text-align: center;
                margin: 0 auto 20px;
            }
            .table_box{
                flex-direction: column;
                 .text_nunb,
                .text_day{
                margin-right: 0;
            }
            }


        }


    .sokoku_box_inner{
        width: calc(100% - 10%);
    }
    .movibox{
        display: flex;
        gap: 10px 5%;

    }
    .report_photobox{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        div{
            width: calc( calc(100% - 30px) / 4);
        }
    }
    @media only screen and (max-width: 768px) {
        .sokoku_box{
            flex-direction: column;
        }
        .sokoku_box_inner{
            width: 100%;
        }
        .report_photobox div{
            width: calc( calc(100% - 20px) / 2);
        }
        .movibox{
            flex-wrap: wrap;

        }

    }

}

/* 2026 出展のご案内
--------------------------- */

/*　ゾーン情報　*/

#sector{
    .contents_bM{
	margin-bottom:clamp(35px, 5vw, 70px);
  }
}

/* 親コンテナ */
.zone_cat_box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* 各アイテム（リンク枠） */
  .zone_cat_box .zone_cat_box-item {
    position: relative;
    overflow: hidden;
    width: calc(20% - 12px); /* 5列レイアウト用 */
    border-radius: clamp(0.75rem, 0.5rem + 1.25vw, 1.625rem);
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    
    /* Safariなどで角丸が崩れるのを防ぐ設定 */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
  #sector .zone_cat_box .zone_cat_box-text {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    justify-content: center;
}
.zone_cat_box{
    justify-content: center;
    gap: 10px;
.zone_cat_box-item {
  /*min-height: 300px;*/
  width: calc( ( 100% - 40px ) / 5);
  position: relative;


@media screen and (max-width: 1024px) {
    width: calc( ( 100% - 30px ) / 4);
 }
@media screen and (max-width: 840px) {
    width: calc( ( 100% - 20px ) / 3);
 }
 @media screen and (max-width: 640px) {
    width: calc( ( 100% - 10px ) / 2);
 }

 /*@media screen and (max-width: 420px) {
    width: calc( ( 100% - 5px ) / 2);
 }*/

}

a.zone_cat_box-item {
    border: 6px solid #b39ddb;
    cursor: pointer;
}

}

  /* ホバー時の浮き上がり */
  .zone_cat_box .zone_cat_box-item:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    z-index: 5;
  }

  /* 画像（figureとimg） */
  .zone_cat_box .zone_cat_box-item figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .zone_cat_box .zone_cat_box-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: clamp(0.75rem, 0.5rem + 1.25vw, 1.625rem);
    transition: transform 0.5s ease;
  }
  
  /* ホバー時の画像ズーム */
  .zone_cat_box .zone_cat_box-item:hover img {
    transform: scale(1.1);
  }


  #sector .zone_cat_box .zone_cat_box-item h5 {
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.25rem);
    font-weight: 700;
  }



  /* --- 追加機能：スライドオーバーレイ（説明文） --- */
  .hover-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    z-index: 10;
    
    /* 初期状態は隠す */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
  }

  .hover-slide-text p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    text-align: left;
  }

  /* PCなどマウス操作時のみ有効 */
  @media (hover: hover) {
    /* ホバー時に説明文を表示 */
    .zone_cat_box .zone_cat_box-item:hover .hover-slide-text {
      transform: translateY(0);
      opacity: 1;
    }
    /* ホバー時に元のタイトルを薄くする */
    .zone_cat_box .zone_cat_box-item:hover .zone_cat_box-text {
        opacity: 0.5;
    }
  }



/*NEW アイコン */
.icon-new {  
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  margin: 0;
  padding: 7px 0;
  z-index: 2;
  width: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: var(--red-color);
  z-index: 3;

}

.icon-new:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid var(--red-color);
  border-right: 20px solid var(--red-color);
  border-bottom: 10px solid transparent;

}
 @media only screen and (max-width : 789px){
    .icon-new {  
        right: 10px;
    }

 }