*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1;
}
html, body {
  height: 100%;
}
body {
  font-size: 1.6em;
  margin: 0;
  color: #333333;
  line-height: 1.7;
  font-family: "Noto Sans JP", serif;
  padding: 0;
  font-weight: 400;
  background-image: url("../images/sec_bg.png");
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
  /* [disabled]background-attachment: fixed; */
  background-color: #7ac1bf;
}
ul, li, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
figure {
  padding: 0;
  margin: 0;
}
.sp_block {
  display: none;
}
.pc_block {
  display: block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}
img {
  width: auto;
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  top: auto;
}
a {
  color: #bf0047;
  text-decoration: none;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #BC3400;
}
.fadeInTrigger, .fadeInUpTrigger {
  opacity: 0;
}
.blur_anime {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.blur_show {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.change-time1 {
  animation-delay: 0.2s;
}
.change-time2 {
  animation-delay: 0.4s;
}
.change-time3 {
  animation-delay: 0.6s;
}
.change-time4 {
  animation-delay: 0.8s;
}
.change-time5 {
  animation-delay: 1s;
}
header {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  z-index: 10;
}
#g-nav {
  background-color: #0071b9;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#g-nav .head_logo {
  margin: 0;
  width: 30%;
  display: block;
  max-width: 500px;
  padding: 5px 10px;
}
#g-nav .head_logo img {
  display: block;
  width: 100%;
  height: auto;
}
#g-nav.panelactive {
  opacity: 1;
  z-index: 98;
  width: 100%;
  height: 100vh;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav-list {
  width: 80%;
}
/*ナビゲーション*/
#g-nav ul {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
}
#g-nav li a::after {
  content: "";
  position: absolute;
  height: 23px;
  width: 2px;
  background: #fff;
  border-radius: 10px;
  left: 0;
}
#g-nav li:first-child a::after {
  display: none;
}
#g-nav li a:hover {
  background-color: hsla(193, 100%, 50%, 0.20);
  transition: all 0.2s;
}
.toggle, .toggle span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.toggle {
  position: absolute;
  width: 65px;
  height: 63px;
  border: 3px solid #0071b9;
  appearance: none;
  cursor: pointer;
  right: 10px;
  top: 10px;
  z-index: 99;
  background-color: #FFFFFF;
  border-radius: 10px;
  display: none;
}
.toggle span {
  position: absolute;
  left: 0px;
  width: 50%;
  height: 4px;
  border-radius: 4px;
  margin: auto;
  right: 0px;
  background-color: #0071b9;
}
.toggle span:nth-of-type(1) {
  top: 14px;
}
.toggle span:nth-of-type(2) {
  top: 31px;
}
.toggle span:nth-of-type(3) {
  bottom: 31px;
}
.toggle::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #0071b9;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
  font-weight: 500;
}
.toggle.active::after {
  content: 'CLOSE';
}
.toggle.active span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  top: 0px;
}
.toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.toggle.active span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
  bottom: 14px;
}
/*footer*/
#pagetop {
  right: 10px;
  cursor: pointer;
  z-index: 3;
  max-width: 300px;
  margin: 0 10px 0 auto;
  width: 30%;
}
#pagetop:hover {
  /* [disabled]opacity: 0.6; */
  transform: translateY(-5px);
  transition: all 0.2s;
}
footer {
  padding: 30px 0 0;
  text-align: center;
  position: relative;
}
footer .foot_logo {
  text-align: center;
  padding: 30px 0;
  background-color: #0071b9;
}
footer .foot_logo .logo {
  width: 30%;
  max-width: 214px;
}
footer .foot_logo .copy {
  text-align: center;
  color: #fff;
}
footer .foot_logo .copy p {
  max-width: 150px;
  margin-left: auto;
  margin-right: 0px;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none;
  color: #536088;
}
footer .copyright {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
section {
  padding: 50px 0;
}
#about {
  overflow: hidden;
}
section#guide {}
section .inner, footer .inner {
  padding: 20px 0;
  max-width: 1100px;
}
section h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.txt_close {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 30px 0;
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #DFFF25;
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgappearTrigger, .bgLRextendTrigger {
  opacity: 0;
}
#top {
  position: relative;
  margin-top: 44px;
}
#top .inner {
  max-width: none;
}
#top h2 {
  margin: 0 0 30px;
  background-color: #7ac1bf;
}
#top h1 {
  padding: 0;
  margin: 0 auto 30px;
  max-width: 990px;
}
.txt_wrap {
  border-radius: 40px;
  padding: 50px 30px;
  background-color: #fff;
}
.title_wrap {
  margin-bottom: 50px;
}
.guest_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.guest_item {
  width: 30%;
  margin: 1% 1.5% 20px;
  text-align: center;
}
#event .guest_item {
  width: 30%;
  padding: 30px;
  border-radius: 30px;
}
#event .guest_item:first-child {
  background-color: #ffb2e9;
}
#event .guest_item:nth-child(2) {
  background-color: #ffcd00;
}
#event .guest_item:nth-child(3) {
  background-color: #54ccff;
}
.guest_item p {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}
.guest_item .comment {
  text-align: justify;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 20px;
}
.lead_txt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  /* [disabled]color: #ff7b00; */
  margin-bottom: 50px;
}
.lead_txt span {
  font-size: 1.8rem;
  font-weight: 700;
}
#event .booth_wrap {
  width: 90%;
  margin: 0 auto 50px;
}
#event .title_booth {
  margin-bottom: 30px;
}
#event .event_booth {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#event .event_booth .event_img {
  width: 40%;
}
#event .event_booth .event_txt {
  width: 55%;
}
#event .event_booth dl {
  margin-bottom: 20px;
}
#event .event_booth dt {
  font-size: 2rem;
  font-weight: 700;
}
#event .event_booth dd {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fe8629;
}
#event .event_booth dd span {
  color: #000;
  font-size: 2rem;
  line-height: 1;
  display: block;
}
#event .event_booth .btn_booth {
  max-width: 400px;
  margin: 0 auto;
  width: 80%;
  display: block;
}
#event .chara_wrap {
  padding-top: 50px;
  border-top: 5px dotted #0071b9;
}
.btn_dl {
  text-align: center;
  margin-bottom: 50px;
}
.btn_dl a {
  border-radius: 30px;
  border: 3px solid #0071b9;
  padding: 5px 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 1.8rem;
  color: #0071b9;
}
.btn_dl a:hover {
  background-color: #CFF3FF;
}
.btn_access {
  border-radius: 30px;
  border: 3px solid #0071b9;
  padding: 3px 30px 3px 20px;
  display: inline-block;
  font-size: 1.6rem;
  position: relative;
  font-weight: bold;
  color: #0071b9;
}
.program_list, .event_data {
  margin-bottom: 50px;
}
.program_list dl {
  border-bottom: 5px dotted #fe8629;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
}
.program_list dl:first-child {
  border-top: 5px dotted #fe8629;
}
.program_list dl dt {
  font-weight: bold;
  font-size: 2.5rem;
  width: 25%;
}
.program_list dl dd {
  font-size: 2rem;
  font-weight: bold;
  width: 75%;
}
.program_list dl dd span {
  font-size: 1.6rem;
  color: #0074BE
}
.event_data th {
  text-align: left;
  font-weight: bold;
  font-size: 2rem;
  padding: 5px 0;
  vertical-align: top;
}
.event_data td {
  text-align: left;
  padding: 5px 0;
  font-size: 2rem;
}
.btn_access::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0071b9;
  border-right: 2px solid #0071b9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn_access:hover {
  background-color: #E6E6E6;
  color: #0071b9;
}
.guide_wrap {
  margin: 0 auto;
}
.guide_wrap h3 {
  font-size: 2rem;
  margin: 50px 0 10px;
}
.guide_list {
  padding-left: 30px;
}
.guide_list li {
  list-style-type: disc;
}
#contact {
  position: relative;
}
#contact .txt_wrap {
  background-color: #ffff80;
}
#contact p {
  margin: 0px;
}
#contact .mail {
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}
#contact .mail a {
	color: #000;
	text-decoration: none;
}
#contact .mail a:hover {
  text-decoration: underline;
}
#contact .mail_box {
	margin: 0 auto 30px;
	max-width: 900px;
	text-align: center;
	font-size: 1.8rem;
}
#contact .mail_box h3 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 0px;
}
#contact a {
	text-decoration: underline;
}
.bnr_wrap {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr_wrap .bnr_item {
  width: 31%;
  margin-bottom: 20px;
}
#sns h3 {
  margin: 0 auto 10px;
}
#sns .sns_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 40px 20px;
  margin: 0 auto;
  border-bottom: 5px dotted #0071b9;
}
#sns .sns_wrap:last-child {
  border-bottom: 0px;
}
#sns .sns_wrap .sns_x {
  width: 65%;
  margin-right: 5%
}
#sns .sns_wrap .sns_youtube {
  width: 30%;
}
#sns .sns_wrap .sns_home {
  width: 67%;
}
#contact .title_wrap {
  max-width: 690px;
}
#sns .img {
  margin: 0 auto 30px;
  max-width: 597px;
}
#sns .sns_wrap .txt {
  width: 48%;
  text-align: center;
}
.lead {
  text-align: center;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: bold;
  border-radius: 40px;
  position: relative;
  background-image: url(../images/about_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 30px;
  background-size: cover;
}
.lead p {
  position: relative;
  z-index: 2;
}
.lead .icon1 {
  width: 15%;
  max-width: 238px;
  position: absolute;
  top: -20px;
  left: -5%;
  z-index: 1;
}
.lead .icon2 {
  width: 15%;
  max-width: 201px;
  position: absolute;
  top: 20px;
  right: -5%;
  z-index: 1;
}
.youtube {
  margin: 0px auto 50px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 10px solid #FFFFFF;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info {
  margin: 20px auto 10px;
  /* [disabled]max-width: 550px; */
  padding: 10px;
  font-size: 1.7rem;
  color: #B10010;
  border-radius: 10px;
  /* [disabled]border: 1px dotted #9B0232; */
  text-align: center;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
}
.disabled.btn_form a {
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.6;
}
.btn_x a {
  display: block;
  text-align: center;
  background-color: #3F6259;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 auto 30px;
  font-size: 2rem;
  font-weight: 500;
  -webkit-box-shadow: 0px 5px #2D4640;
  box-shadow: 0px 5px #2D4640;
  background-image: url(../images/icon_arrow.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: auto 30px;
  max-width: 550px;
}
.btn_x a:hover {
  opacity: 0.7;
}
.btn_form a {
  max-width: 650px;
  display: block;
  margin: 0 auto 20px;
  width: 60%;
}
#top .btn_form a {
  margin: -5px auto 20px;
}
.btn_form p {
  text-align: center;
  color: #ff7b00;
  font-size: 2rem;
  margin: 5px 0;
  text-shadow: 
    -2px -2px 2px rgba(255, 255, 255, 1),
     2px -2px 2px rgba(255, 255, 255, 1),
    -2px  2px 2px rgba(255, 255, 255, 1),
     2px  2px 2px rgba(255, 255, 255, 1),
    -3px  0px 2px rgba(255, 255, 255, 1),
     3px  0px 2px rgba(255, 255, 255, 1),
     0px -3px 2px rgba(255, 255, 255, 1),
     0px  3px 2px rgba(255, 255, 255, 1);
  font-weight: bold;
}
.btn_form p span {
  color: #fff;
  background-color: #bf0047;
  padding: 0 15px;
  display: inline-block;
  border-radius: 7px;
  margin-right: 10px;
}
.btn_form img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
/* ホバー時に少し大きくする */
.btn_form a:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.title_archive {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 50px;
}
.logo_wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.logo_wrap .txt {
  font-size: 2.5rem;
  font-weight: bold;
}
/*協力*/
.logo_wrap .kyoryoku {
  margin-left: 20px; 
}
.logo_wrap .logo_item {
  max-width: 180px;
  width: 18%;
  margin-right: 10px;
}
.logo_2nd {
  margin-right: 0 !important;
}
.rakuten {
  max-width: 270px !important;
}
.cookie-consent {
  justify-content: center !important;
}
#form {
  padding-top: 0px;
}
#form h2 {
  margin: 20px 0 20px;
}

#exhibition {
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
}

@media screen and (max-width:1130px) {
	#g-nav li a{
		font-size: 1.3vw;
	}
}
@media screen and (max-width:768px) {
  body {
    position: relative;
    z-index: 1;
  }
  section .inner {
    width: 92%;
  }
  section {
    padding: 0;
  }
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
  .toggle {
    display: block;
  }
  #g-nav {
    display: block;
    height: auto;
  }
  #g-nav .head_logo {
    display: none;
  }
  #g-nav.panelactive {
    opacity: 1;
    z-index: 98;
    width: 100%;
    height: 100vh;
    position: relative;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none; /*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  #g-nav.panelactive ul {
    display: block;
    max-width: 600px;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
    border-bottom: 2px dotted #FFFFFF;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
  }
  #g-nav li a::after {
    display: none;
  }
  #g-nav li a span {
    display: block;
    font-size: 13px;
    font-weight: 400;
  }
  .txt_close {
    font-size: 1.8rem;
  }
  section h2 {
    margin: 0 auto 20px;
  }
  #top {
	margin: 0;
	padding: 0;
  }
  .btn_access {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .btn_access::after {
    top: 9px;
  }
  .info {
    font-size: 1.5rem;
    text-align: left;
  }
  .btn_form p span {
    display: block;
    margin: 0 auto 5px;
    max-width: 100px;
  }
  .btn_form a {
    margin: 0 auto 10px;
    width: 100%;
  }
  .btn_x a {
    font-size: 1.7rem;
    background-size: auto 20px;
  }
  .lead {
    padding: 20px;
    font-size: 1.6rem;
    position: relative;
  }
  .lead p {
    z-index: 2;
  }
  .lead .icon1 {
    width: 15%;
    left: 3%;
    top: 5%;
  }
  .lead .icon2 {
    top: auto;
    bottom: 10px;
    width: 15%;
    right: -10px;
  }
  .guide_list {
    padding-left: 20px;
  }
  .guide_list li {
    font-size: 1.4rem;
  }
  .guest_item {
    width: 45%;
    margin: 0 auto 20px;
  }
  .guest_item p {
    margin: 5px 0;
  }
  .guest_item .comment {
    font-size: 1.4rem;
  }
  #contact .mail_box .mail {
    font-size: 1.6rem;
  }
  #contact .mail_box h3 {
    font-size: 1.8rem;
  }
  #contact .mail_box {}
  #contact .mail_box p {
    font-size: 1.4rem;
  }
  footer .foot_logo .logo {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }
  footer .foot_logo .privacy {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  footer .copy {
    width: 100%;
    text-align: center;
  }
  footer .foot_logo .copy p {
    margin: 0 auto 20px;
    display: block;
  }
  footer .copy .copyright {
    text-align: center;
  }
  .btn_form p {
    font-size: 1.6rem;
  }
  #event .booth_wrap {
    width: 100%;
  }
  #event .event_detail dt {
    width: 50%
  }
  #event .event_detail dd {
    font-size: 1.8rem;
  }
  #top .btn_form a {
    margin: 10px auto;
  }
  #top h3 {
    margin: 10px auto 0;
    width: 90%;
  }
  #pagetop {
    width: 40%;
  }
  footer {
    margin-top: 50px;
  }
  #form .txt_box {
    border-radius: 30px;
    border: 3px solid #008042;
    padding: 0px;
    background-color: #fff;
    overflow: hidden;
  }
  #form h2 {
    margin: 0 auto 10px;
    width: 95%;
  }
  #sns .sns_wrap {
    display: block;
    padding: 20px 10px 30px;
  }
  #sns .sns_wrap .sns_x {
    width: 90%;
    margin-bottom: 20px;
  }
  #sns .sns_wrap .sns_youtube {
    width: 90%;
    margin-left: 4.5%;
  }
  #sns .sns_wrap .sns_home {
    width: 100%;
  }
  .lead_txt {
    font-size: 1.6rem;
    text-align: left;
  }
  .lead_txt span {
    font-size: 1.4rem;
  }
  .txt_wrap {
    border-radius: 40px;
    padding: 30px 20px;
    background-color: #fff;
  }
  .guest_item p {
    font-size: 1.6rem;
  }
  #event .event_booth .event_img {
    width: 100%;
    margin: 0 auto;
  }
  #event .event_booth .event_txt {
    width: 100%;
  }
  #event .guest_list .guest_item {
    width: 100%;
  }
#event .guest_list .guest_item.wanisa {
	order: 1;
}
	#event .guest_list .guest_item.unko {
	order: 2;
}
	#event .guest_list .guest_item.toushi {
	order: 3;
}
  #event .event_booth dt {
    font-size: 1.8rem;
  }
  #event .event_booth dd {
    font-size: 2rem;
  }
  #event .event_booth dd span {
    font-size: 1.6rem;
  }
  .program_list dl dt {
    font-size: 1.8rem;
    width: 100%;
  }
  .program_list dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
  .program_list dl dd span {
    font-size: 1.4rem;
  }
  .event_data th {
    display: block;
    width: 100%;
    font-size: 1.8rem;
  }
  .event_data td {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #AFAFAF;
  }
  .logo_wrap {
    justify-content: left;
  }
  .logo_wrap .txt {
    font-size: 1.8rem;
  }
  .logo_wrap .logo_item {
    padding: 5px;
    width: 35%;
  }
  .logo_wrap .logo_item.rakuten {
    width: 40%;
    max-width: 400px;
  }
  .logo_wrap .kyoryoku {
  margin-left: 0px; 
   }
#exhibition {
  width:90%;
  text-align: left;
  font-size:1.8rem;
  display: inline;
 }
.logo_wrap:nth-child(2){
	display: contents;
}

@media screen and (max-width:480px) {
  .title_wrap {
    width: 300px;
    overflow: hidden;
    position: relative;
    height: 50px;
    margin: 0 auto 30px;
  }
  .title_wrap img {
    display: block;
    position: absolute;
    max-width: none;
    left: -63px;
    height: 50px;
    margin: 0 auto;
  }
}
}

.report .report_button a {
    padding: 20px 40px;
    background-color: #E62A89;
	color: #fff; 
    width: 700px;
    border: 5px solid white;
    box-shadow: 0 0 0 8px #E62A89;
    box-sizing: border-box;
	border-radius: 50px;
	font-size: 24px;
	font-weight: 900;	
    display: block;
    margin: 0 auto;	
/*	margin: -0px auto;*/
    position: relative; 
    z-index: 2; 
	margin-bottom: 30px;
	text-align: center;
}

@media screen and (max-width:768px) {
    .report .report_button a {
        width: 90%; 
        font-size: 16px; 
        padding: 10px 20px;
    }
}