@charset "UTF-8";
/*----------------------------
* setting
*----------------------------*/
html { font-size: 62.5%; }
body{
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  font-weight: 500;
  color:#242424;
  font-size: 1.6rem;
}

@media screen and (max-width:767px) {
  .pc-only{ display: none !important;}
  .sp-only{ display: block !important;}
}
@media screen and (min-width:768px) {
  .pc-only{ display: block !important;}
  .sp-only{ display: none !important;}
}


.gutters{
  max-width: 1100px;
  width:100%;
  margin: 0 auto;
}


@media screen and (max-width:767px) {
  body{
    font-size: 1.4rem;
  }
}
section{
  padding:5% 0;
}
@media screen and (max-width:767px) {
  section{
    padding:12% 0;
  }
}
.tel-number a {
  color:#111;
  text-decoration:none;
}
.pc-only{display: block !important;}
.sp-only{display: none !important;}
@media screen and (max-width:767px) {
  .pc-only{display: none !important;}
  .sp-only{display: block !important;}
}
.text-right{text-align: right;}
.text-small{font-size:100% !important;}
.text-large{font-size: 140%;}
.text-xlarge{font-size: 180%;}
.underline{border-bottom: 	double;}

a {
  color: #4cb3e8;
  text-decoration: underline;
}
a img.bnr:hover{
  opacity:.6;
  transition: .5s;
}
p.more {
    display: block;
    overflow: hidden;
    margin: auto;
}
p.more.pd {
    padding: 10px 20px;
}
.more a {
    display: block;
    border: 1px solid #000;
    color: #fff;
    background-color: #000;
    background-image: url(../img/a_btn_arr.png);
    background-position: right 5% center;
    background-repeat: no-repeat;
    padding: .7em 0.5em .8em;
    margin: 0 auto 1px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    border-radius:35px;
    font-size: 1.8rem;
}
.more a:hover{
    border: 1px solid #333;
    background-color: #333;
    background-image: url(../img/a_btn_arr.png);
    background-position: right 3% center;
    background-repeat: no-repeat;
    transition: .3s;
}
@media screen and (max-width:767px) {
  .more a {
      font-size: 14px;
  }
}

.FixedBNR{
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 100000;
}
.FixedBNR a {
  transition: opacity 0.5s ease;
}
.FixedBNR a:hover{
  opacity:.4;
}

@media screen and (max-width:767px) {
  .FixedBNR img{
    max-width: 40px;
  }
}

.text-center{text-align: center !important;}
.text-center img{
  display: block;
  margin: 0 auto;
}
.text-left{text-align: left !important;}
.text-right{text-align: right !important;}
.blBtn{
  text-align: right;
  margin-top: 30px;
}
.blBtn a{
  text-decoration: underline;
}
.youtube.portrait {
    aspect-ratio: 9 / 16;
    max-width: 340px;
    margin: 40px auto 0;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  max-width: 80%;
  margin: 0 auto;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 80% !important;
  left: 0;
  margin: 5% auto 0;
}

.youtube.portrait iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 90% !important;
  height: 90% !important;
  left: 0;
  margin: 5% auto 0;
}

h2{
  font-size: 4rem;
   letter-spacing: 2px;
   text-align: center;
   position: relative;
   display: block;
   margin: 0 auto;
   z-index: 20;

}
h2::before{
  width: 100%;
  content: "OUTLINE";
  display: block;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #a6e5ff;
  z-index: -10;
  opacity:1;
  pointer-events: none;
}

@media screen and (max-width:767px) {
  h2{
    font-size: 3rem;
  }
  h2::before{
    font-size: 4.5rem;
    top: -30px;
  }

}
h2.Present::before{
  content: "SPECIAL PRESENT";
  color: #fff;
  font-size: 8rem;
}
@media screen and (max-width:767px) {
  h2.Present::before{
    font-size: 3rem;
  }
}
h2.Exhibitor::before{
  content: "EXHIBITOR";
  color: #ebebeb;
  font-size: 8rem;
}
@media screen and (max-width:767px) {
  h2.Exhibitor::before{
    font-size: 4.5rem;
  }
}

h2.Access::before{
  content: "ACCESS";
  color: #ebebeb;
  font-size: 8rem;
}
@media screen and (max-width:767px) {
  h2.Access::before{
    font-size: 4.5rem;
  }
}

h3 {
  display: flex;
  align-items: center;
  gap: 0; /* spanと線の間隔 */
}

h3 span {
  background-color: #ddd;
  font-weight: 500;
  border-radius: 25px;
  padding: 1px 18px 2px;
  color: #234b9d;
  font-size: 2.2rem;
  min-width: 150px;
  text-align: center;
}

h3::after {
  display: block;       /* 追加 */
   width:180px;  /* 任意の幅 */
  content: "";
  flex-grow: 1; /* 残りの幅いっぱいに伸びる */
  height: 1px;
  background-color: #234b9d;
}

@media screen and (max-width:767px) {
  h3 span {
    font-size: 1.6rem;
  }
}

/*color *************************************************/
.white{color:#fff !important;}
.black{color:#111 !important;}
.pink{color:#f14889 !important;}
.yellow{color:#d09a00 !important;}
.green{color:#4ea544 !important;}
.blue{color:#00a0ea !important;}
.red{color:#de3427 !important;}

/*Header *************************************************/
.Header{
  max-width: 100%;
  width: 100%;
  border-bottom: solid 5px #e60100;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.Header .Ct{
  max-width: 1200px;
  width: 100%;
  display: flex;
  height: 75px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 10px;

}

/*main *************************************************/

main{
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 5%;
}
  @media screen and (max-width:1024px) {
    main{}
  }

section .contain{
  max-width: 1100px;
  margin:0 auto;
}

.Kv{
  text-align: center;
  background-color: #0aa3e1;
}
.Kv img{
  max-width: 1440px;
  width:100%;
  margin: 0 auto;
  display: block;
}

.OutLine{
  background-image: url(../images/outline_bg.png);
}
.OutLine .contain{
  position: relative;
}

.OutLine .contain .illust001{
  position: absolute;
  z-index: 100;
  left: 23.6363vw;
}
.OutLine .contain .illust001 img{
  width: 76px;
}
@media screen and (min-width:1100px) {
  .OutLine .contain .illust001{
    left: 260px;
  }
}
@media screen and (min-width:768px) and (max-width:821px) {
  .OutLine .contain .illust001{
    left: 200px;
  }
  .OutLine .contain .illust001 img{
    max-width: 40px;
  }
}
.OutLine .contain .illust002 img{
  max-width: 76px;
  width: 100%;
}
@media screen and (max-width:767px) {
  .OutLine .contain .illust001{
    left: 60px;
  }
  .OutLine .contain .illust001 img{
    max-width: 40px;
  }
}
.OutLine .contain .illust002{
  position: absolute;
  z-index: 100;
  right: 2.1818vw;
  top:-4.5454vw;
}

@media screen and (min-width:1100px) {
  .OutLine .contain .illust002{
    right: 24px;
    top:-50px;
  }
}

@media screen and (min-width:768px) and (max-width:821px) {
  .OutLine .contain .illust002{
    right: 200px;
    top: 0;
  }
  .OutLine .contain .illust002 img{
    max-width: 40px;
  }
}
@media screen and (max-width:767px) {
  .OutLine .contain .illust002{
    top:0px;
    right: 60px;
  }
  .OutLine .contain .illust002 img{
    max-width: 40px;
  }
}
.OutLineSub{
  background-color: red;
  display:block;
  padding: 2px 10px;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  max-width: 160px;
}
.OutLineListWrap{
  margin-top: 80px;
  display: flex;
  grid-gap: 80px;
  justify-content: center;
}

.OutLineListWrap p{
  font-size: 2.2rem;
  line-height: 1.4;
  margin-top: 20px;
}

.OutLineListWrap ul{
  margin-top: 20px;
  padding-left: 10px;
}
.OutLineListWrap ul li{
  font-size: 2.2rem;
  line-height: 1.4;
  background-image:url("../images/icon001.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 30px;
  margin-bottom: 10px;
}

.OutLineListWrap .Box{
  border-bottom: solid 1px #234b9d;
  padding-bottom: 30px;
}

@media screen and (min-width:768px) and (max-width:1200px) {
  .OutLineListWrap{
    width: 90%;
    display: block;
    margin: 40px auto 0;
  }

  .OutLineListWrap p{
    font-size: 2.2rem;
    line-height: 1.4;
    margin-top: 20px;
  }
  .OutLineListWrap .Box{
    border-bottom: none;
    padding-bottom: 30px;
  }
}


@media screen and (max-width:767px) {
  .OutLineListWrap{
    width: 90%;
    display: block;
    margin: 40px auto 0;
  }

  .OutLineListWrap p{
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 20px;
  }
  .OutLineListWrap .Box{
    border-bottom: none;
    padding-bottom: 30px;
  }
  .OutLineListWrap ul li{
    font-size: 1.6rem;
  }

}
.OutLineIllustWrap{
  margin-top: 60px;
  display: flex;
  grid-gap: 20px;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
}
.OutLineIllustWrap div{
  text-align: center;
}

@media screen and (max-width: 1125px) {
  .OutLineIllustWrap {
    display: none;
  }
}


@media screen and (min-width: 1126px) {
  .OutLineIllustWrapSP{
      display: none;
  }
}
@media screen and (max-width: 1125px) {
  .OutLineIllustWrapSP{
      display: block;
      width: 96%;
      margin: 0 auto;
  }
  .OutLineIllustWrapSP img{
      width: 100%;
  }
}

.Present{
  background-color: #fff672;
}

.Present .contain{
  position: relative;
}

.Present .contain .illust001{
  position: absolute;
  z-index: 100;
  right: 4.6363vw;
}
.Present .contain .illust001 img{
  width: 158px;
}
@media screen and (min-width:1100px) {
  .Present .contain .illust001{
    right: 10px;
  }
}
@media screen and (min-width:768px) and (max-width:821px) {
  .Present .contain .illust001{
    right: 200px;
  }
  .Present .contain .illust001 img{
    max-width: 120px;
  }
}
.Present .contain .illust002 img{
  max-width: 76px;
  width: 100%;
}
@media screen and (max-width:767px) {
  .Present .contain .illust001{
    right: 20px;
  }
  .Present .contain .illust001 img{
    max-width: 60px;
  }
}

.Present .TextLine{
  text-align: center;
  font-size: 2rem;
  margin-top: 60px;
}
.Present .TextLine span{
  border-bottom: solid 2px #000;
  padding-bottom: 10px;
}
@media screen and (max-width:767px) {
  .Present .TextLine{
    font-size: 1.4rem;
    margin-top: 20px;
  }
  .Present .TextLine span{
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.PresentCtWrap{
  margin-top: 60px;
  display: flex;
  grid-gap: 60px;

}
@media screen and (max-width:1024px) {
  .PresentCtWrap{
    padding: 40px;
  }
}
@media screen and (max-width:1024px) {
  .PresentCtWrap{
    display: block;
    grid-gap: 10px;
    padding: 40px;
  }
}
@media screen and (max-width:767px) {
  .PresentCtWrap{
    padding: 0;
  }
}
.PresentCtWrap .Box{
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  width: 100%;
  padding: 50px 20px 20px 40px;
}
@media screen and (max-width:1024px) {
  .PresentCtWrap .Box{
    width: 90%;
    margin: 0 auto 40px;
    padding: 50px 30px 30px;
  }
}
.PresentCtWrap .Box .Icon{
  position: absolute;
  left: -20px;
  top: -20px;
}

.PresentCtWrap .Box .BoxCt{
  display: flex;
  grid-gap: 10%;
  align-items: flex-start;
}

.PresentCtWrap .Box .BoxCt .Text{
  width: 60%;
  font-size: 2rem;

}
@media screen and (max-width:1024px) {
  .PresentCtWrap .Box .BoxCt .Text{
    width: 97%;
  }
}
@media screen and (max-width:767px) {
  .PresentCtWrap .Box .BoxCt .Text{
    width: 70%;
    font-size: 1.4rem;
  }
  .PresentCtWrap .Box .BoxCt .Text img{
    width: 100%;
  }
}

.PresentCtWrap .Box .BoxCt .Img{
  width: 40%;
}
.PresentCtWrap .Box .BoxCt .Img img{
  width: 100%;
}

.PresentCtWrap .Box .BoxCt .Text .TextMain{
  margin-top: 30px;
  font-size: 3rem;
  line-height: 1.4;
  color: #1a81be;
  font-weight: bold;
}
.PresentCtWrap .Box .BoxCt .Text .TextMain span.Blue{
  font-size: 1.6rem;
  display: block;
  color: #1a81be;
}
@media screen and (max-width:767px) {
  .PresentCtWrap .Box .BoxCt .Text .TextMain{
    margin-top: 20px;
    font-size: 1.9rem;
  }
  .PresentCtWrap .Box .BoxCt .Text .TextMain span.Blue{
    font-size: 1.3rem;
  }
}

section.Exhibitor{border-bottom: solid 3px #000000;}
.Exhibitor .comingsoon{
  background-color: #ddd;
  text-align: center;
  padding: 50px;
  width: 96%;
  margin: 60px auto;
}

section.Access{ padding-bottom: 0;}
.Access .AccessMapWrap{
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

@media screen and (max-width:1024px) {
  .Access .AccessMapWrap{
    display: block;
    margin-top: 0px;
    padding: 40px;
  }
}

.Access .AccessMapWrap .info{
  width: 40%;
  font-size: 1.8rem;
}

@media screen and (max-width:1024px) {
  .Access .AccessMapWrap .info{
    width: 100%;
    font-size: 1.4rem;
  }
}

.Access .AccessMapWrap .info .title{
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width:1024px) {
  .Access .AccessMapWrap .info .title{
    font-size: 2.2rem;
  }
}

.Access .AccessMapWrap .info ul{
  padding-left: 30px;
  margin-top: 30px;
}
.Access .AccessMapWrap .info ul li{
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 20px;
}
.Access .AccessMapWrap .info ul li::marker{
  color: #20a5db;
}
.Access .AccessMapWrap .map{
  width: 60%;
}

@media screen and (max-width:1024px) {
  .Access .AccessMapWrap .map{
    width: 100%;
  }
}


.ListComp{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  grid-gap: 40px;
}
@media screen and (max-width:1024px) {
  .ListComp{

    width: 90%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width:820px) {
  .ListComp{
    display: block;
    width: 90%;
    margin: 50px auto 0;
  }
}
.ListComp .Box{
  border-bottom: solid 1px #eee;
  padding-bottom: 20px;
}
.ListComp .Box .Title{
  background-image: url(../images/list_icon.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 34px;
  font-size: 2.6rem;
  line-height: 1.4;
}
.ListComp .Box .Title span{
  font-size: 1.4rem;
  display: block;
  color: #666;
}
.ListComp .Box .Sub{
  padding-left: 34px;
  font-size: 1.8rem;
  margin-top: 16px;
}
.ListComp .Box .Sub span{
  font-size: 1.4rem;
  display: block;
  line-height: 1;
  color: #666;
}
@media screen and (max-width:820px) {
  .ListComp .Box{
    margin-bottom: 20px;
  }
  .ListComp .Box .Title{

    font-size: 2rem;
  }
  .ListComp .Box .Sub{

    font-size: 1.4rem;
  }
}

.ListComp .Box{
    opacity: 1;
    display: block;
    transition: all 0.4s ease 0s;
}
.ListComp .Box.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    display: none;
}

.more {
    text-align: center;
    margin: 60px auto 0;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 12px;
    width: 240px;
    border-radius: 50px;
}


/*footer *************************************************/

footer{
  max-width: 100%;
  width: 100%;
  border-top: solid 2px #000;
  padding-top: 30px;
}
footer .contain{
  max-width: 1100px;
  margin:  0 auto;
  text-align: center;
}
footer img{
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width:767px) {
  footer{
  padding-top: 0px;
  }
}

/*pagetop *************************************************/

#pageTop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 15000;
}
@media screen and (max-width:767px) {
  #pageTop {
    bottom: 110px;
  }
}

#pageTop i {
  padding-top: 6px
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 10px 0 0 0px;
  border-radius: 30px;
  width: 52px;
  height: 52px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.imgRight{
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .imgRight{
    margin-top: 0;
  }
}


.mgt0{margin-top: 0 !important;}
.mgt20{margin-top: 20px !important;}
.mgt40{margin-top: 40px !important;}
.mgt60{margin-top: 60px !important;}
.mgt80{margin-top: 80px !important;}



.FixedBnr{
  position: fixed;
  right: 15px;
  top: 260px;
  z-index: 10000;
}
@media screen and (max-width:767px) {
  .FixedBnr{
    display: none;
  }

}




.FixedBnrSP{
  position: fixed;
  right: 0;
  left: 0;
  bottom:0;
  margin: 0 auto;
  text-align: center;
  z-index: 10000;
}
.FixedBnrSP a{
  display: inline-block;
}
.FixedBnrSP a img{
  width: 100%;
}

@media screen and (min-width:769px) {
  .FixedBnrSP{
    display: none;
  }
}
