@charset "UTF-8";
/*weight*/
/*
 * Font Set
 */
/*
 * Convert pixels to rems
 * eg. for a relational value of 12px write f-rem(12)
 * Assumes $em-base is the font-size of 10px
 */
/*
 * Convert pixels to line-height
 * eg. When the font size is 18 px and the line feed is 28 px write f-line-height( 18, 28 )
 */
/*
 * Convert letter-spacing
 * eg. When tracking = 50 on Photoshop, write f-letter-spacing(50).
 */
.slidedown_list h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px dotted #bebfbf;
  padding-bottom: 0.3rem;
}
@media only screen and (max-width:768px) {
  .slidedown_list h4 {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 2rem;
  }
}

@media only screen and (max-width:768px) {
  .access_list .c-clm2 > div {
    margin-bottom: 4rem;
  }
}

.tx-request {
  width: 80vw;
  margin: 2rem auto;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .tx-request {
    width: 90vw;
  }
}

/* legacy */
/*--=== SP ONLY max-width: 767px ===-- / */
@media screen and (max-width: 767px) {
  .faq_list li {
    margin-bottom: 3rem;
  }

  .faq_title {
    border: 1px solid #666;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px;
    position: relative;
    padding-left: 35px;
    border-radius: 10px;
    margin-top: 2rem;
  }
  .faq_title.on:before {
    rotate: 180deg;
    transition: 0.5s;
    transform-origin: 6px 0px;
  }
  .faq_title:before {
    border-top: 6px solid #151e75;
    border-bottom: 6px solid #ecac30;
    width: 12px;
    rotate: 45deg;
    content: "";
    height: 0;
    border-radius: 50%;
    margin-right: 7px;
    position: absolute;
    left: 10px;
    top: calc(50%);
    transform: translateY(-50%);
    transform-origin: 6px 0px;
  }

  .faq_ctn {
    padding-left: 35px;
    display: none;
  }
  .faq_ctn dl {
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dotted #666;
  }
  .faq_ctn dl dt {
    font-size: 1.3rem;
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
    line-height: 1.8;
    font-weight: bold;
  }
  .faq_ctn dl dt:before {
    content: "Q";
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    line-height: 2rem;
    text-align: center;
    display: inline-block;
    background-color: #151e75;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .faq_ctn dl dd {
    font-size: 1.3rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.8;
  }
  .faq_ctn dl dd:before {
    content: "A";
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    line-height: 2rem;
    text-align: center;
    display: inline-block;
    background-color: #ecac30;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .exhibitors_list {
    border-top: 1px dotted #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .exhibitors_list > li {
    border-bottom: 1px dotted #ccc;
    padding: 5px 8px;
  }
  .exhibitors_list > li:nth-child(2n) {
    background-color: #fafafa;
  }
  .exhibitors_list > li ul {
    margin-left: 2em;
    margin-top: 5px;
  }

  .banner_contents {
    width: 100%;
    padding: 20px 2.5%;
  }
  .banner_contents > li {
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    padding: 10px;
    background-color: #f2f2f2;
  }
  .banner_contents > li h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }

  .slick_list {
    display: none;
    width: 100%;
    margin: 0 auto;
    /*
    		.slick-prev2 {
    			position: absolute;
    			left: -30px;
    			top: 50%;
    			transform: translateY(-50%);
    			margin: auto;
    			z-index: 99999;
    			line-height: 0;

    			&:hover {
    				&:before {
    					transition: 0.3s;
    					opacity: 0.5;
    				}
    			}

    			&:before {
    				content: "";
    				display: block;
    				background-image: url(/images/common_circle_arrow_left.png);
    				background-size: 30px 30px;
    				width: 30px;
    				height: 30px;
    			}
    		}

    		.slick-next2 {
    			position: absolute;
    			right: -30px;
    			top: 50%;
    			transform: translateY(-50%);
    			margin: auto;
    			z-index: 99999;
    			line-height: 0;

    			&:hover {
    				&:before {
    					transition: 0.3s;
    					opacity: 0.5;
    				}
    			}

    			&:before {
    				content: "";
    				display: block;
    				background-image: url(/images/common_circle_arrow.png);
    				background-size: 30px 30px;
    				width: 30px;
    				height: 30px;
    			}
    		}
    */
  }
  .slick_list li {
    margin: 0 5px;
    border-radius: 10px;
  }
  .slick_list li a {
    display: block;
    text-align: center;
    padding: 3px;
  }
  .access_caution {
    background-color: #f00;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    text-align: center;
  }

  .slidedown_list > li {
    margin-bottom: 1rem;
  }

  .slidedown_title {
    border: 1px solid #666;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 50px 15px 15px;
    position: relative;
    padding-left: 35px;
    border-radius: 10px;
    transition: 0.5s;
  }
  .slidedown_title.on:before {
    rotate: 180deg;
    transition: 0.5s;
    transform-origin: 9px 0px;
  }
  .slidedown_title.on:after {
    content: "-";
  }
  .slidedown_title:before {
    border-top: 9px solid #151e75;
    border-bottom: 9px solid #ecac30;
    width: 18px;
    rotate: 45deg;
    content: "";
    height: 0;
    border-radius: 50%;
    margin-right: 7px;
    position: absolute;
    left: 10px;
    top: calc(50% );
    transform: translateY(-50%);
    transform-origin: 9px 0px;
  }
  .slidedown_title:after {
    content: "+";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    position: absolute;
  }

  .slidedown_ctn {
    display: none;
  }
}
/*--=== / SP ONLY max-width: 767px ===-- */
/*--=== PC ONLY min-width: 768px ===-- / */
@media print, screen and (min-width: 768px) {
  .faq_list li {
    margin-bottom: 3rem;
  }

  .faq_title {
    border: 1px solid #666;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px;
    position: relative;
    padding-left: 35px;
    border-radius: 10px;
    margin-top: 2rem;
  }
  .faq_title.on:before {
    rotate: 180deg;
    transition: 0.5s;
    transform-origin: 9px 0px;
  }
  .faq_title:before {
    border-top: 9px solid #151e75;
    border-bottom: 9px solid #ecac30;
    width: 18px;
    rotate: 45deg;
    content: "";
    height: 0;
    border-radius: 50%;
    margin-right: 7px;
    position: absolute;
    left: 10px;
    top: calc(50%);
    transform: translateY(-50%);
    transform-origin: 9px 0px;
  }

  .faq_ctn {
    padding-left: 35px;
    display: none;
  }
  .faq_ctn dl {
    margin-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px dotted #666;
  }
  .faq_ctn dl dt {
    font-size: 1.8rem;
    position: relative;
    margin-bottom: 20px;
    padding-left: 35px;
    line-height: 1.8;
    font-weight: bold;
  }
  .faq_ctn dl dt:before {
    content: "Q";
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    line-height: 3rem;
    text-align: center;
    display: inline-block;
    background-color: #151e75;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .faq_ctn dl dd {
    font-size: 1.8rem;
    position: relative;
    padding-left: 35px;
    line-height: 1.8;
  }
  .faq_ctn dl dd:before {
    content: "A";
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    line-height: 3rem;
    text-align: center;
    display: inline-block;
    background-color: #ecac30;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .statement_ctn,
.concept_catch {
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.1em;
  }

  /* 出展者・参加者リスト / */
  .exhibitors_list {
    column-count: 2;
    column-gap: 20px;
    margin-bottom: 2rem;
  }
  .exhibitors_list > li {
    display: inline-block;
    width: 100%;
    padding: 8px;
    line-height: 1.8;
    position: relative;
    padding-left: 40px;
    /*&:nth-child(2n) {
    	background-color: #f2f2f2;
    }*/
  }
  .exhibitors_list > li:before {
    border-top: 6px solid #151c6a;
    border-bottom: 6px solid #e9a32a;
    width: 12px;
    rotate: 45deg;
    content: "";
    height: 0;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 20px;
    top: 1.8rem;
  }
  .exhibitors_list > li ul {
    margin-left: 1rem;
  }
  .exhibitors_list > li ul li {
    padding: 8px 0;
  }

  .banner_contents {
    display: flex;
    width: 100%;
    padding: 20px 2.5%;
  }
  .banner_contents > li {
    flex-basis: 32%;
    margin-right: 2%;
    border: 1px solid #e6e6e6;
    padding: 10px;
    background-color: #f2f2f2;
  }
  .banner_contents > li:nth-child(3n) {
    margin-right: 0;
  }
  .banner_contents > li h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }

  .slick_list {
    display: none;
    width: 100%;
    margin: 0 auto;
    /*
    		.slick-prev2 {
    			position: absolute;
    			left: -30px;
    			top: 50%;
    			transform: translateY(-50%);
    			margin: auto;
    			z-index: 99999;
    			line-height: 0;

    			&:hover {
    				&:before {
    					transition: 0.3s;
    					opacity: 0.5;
    				}
    			}

    			&:before {
    				content: "";
    				display: block;
    				background-image: url(/images/common_circle_arrow_left.png);
    				background-size: 30px 30px;
    				width: 30px;
    				height: 30px;
    			}
    		}

    		.slick-next2 {
    			position: absolute;
    			right: -30px;
    			top: 50%;
    			transform: translateY(-50%);
    			margin: auto;
    			z-index: 99999;
    			line-height: 0;

    			&:hover {
    				&:before {
    					transition: 0.3s;
    					opacity: 0.5;
    				}
    			}

    			&:before {
    				content: "";
    				display: block;
    				background-image: url(/images/common_circle_arrow.png);
    				background-size: 30px 30px;
    				width: 30px;
    				height: 30px;
    			}
    		}
    */
  }
  .slick_list li {
    margin: 0 5px;
    border-radius: 10px;
  }
  .slick_list li a {
    display: block;
    text-align: center;
    padding: 3px;
  }
  .spip_banner {
    width: 50%;
  }

  .access_caution {
    background-color: #f00;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    text-align: center;
  }

  .slidedown_list > li {
    margin-bottom: 3rem;
  }

  .slidedown_title {
    border: 1px solid #666;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 50px 15px 15px;
    position: relative;
    padding-left: 35px;
    border-radius: 10px;
    transition: 0.5s;
  }
  .slidedown_title.on:before {
    rotate: 180deg;
    transition: 0.5s;
    transform-origin: 9px 0px;
  }
  .slidedown_title.on:after {
    content: "-";
    right: 20px;
    top: 45%;
    font-size: 3rem;
    line-height: 1;
    position: absolute;
  }
  .slidedown_title:before {
    border-top: 9px solid #151e75;
    border-bottom: 9px solid #ecac30;
    width: 18px;
    rotate: 45deg;
    content: "";
    height: 0;
    border-radius: 50%;
    margin-right: 7px;
    position: absolute;
    left: 10px;
    top: calc(50% );
    transform: translateY(-50%);
    transform-origin: 9px 0px;
  }
  .slidedown_title:after {
    content: "+";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    line-height: 1;
    position: absolute;
  }

  .slidedown_ctn {
    display: none;
  }
}
/*--=== / PC ONLY min-width: 768px ===-- */

/*# sourceMappingURL=outline.css.map */
