@charset "utf-8";

/*------------------------------------------------------------
  Default
------------------------------------------------------------*/
main div,
main span,
main object,
main iframe,
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main blockquote,
main pre,
main abbr,
main address,
main cite,
main code,
main del,
main dfn,
main em,
main img,
main ins,
main kbd,
main q,
main samp,
main small,
main strong,
main sub,
main sup,
main var,
main b,
main i,
main dl,
main dt,
main dd,
main ol,
main ul,
main li,
main fieldset,
main form,
main label,
main legend,
main table,
main caption,
main tbody,
main tfoot,
main thead,
main tr,
main th,
main td,
main article,
main aside,
main dialog,
main figure,
main footer,
main header,
main button,
main hgroup,
main menu,
main nav,
main section,
main time,
main mark,
main audio,
main video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 1em;
}


/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  color: #000;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: .5s;
}

a:hover {
  opacity: .6;
}

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

  body {
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

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

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


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

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

.info_area {
  max-width: 1000px;
  width: 90%;
  margin: 60px auto 80px auto;
}

.info_tit {
  font-size: 3.2rem;
  font-weight: 300;
  max-width: 580px;
  margin: 30px auto;
  color: #4581A9;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  text-align: center;
}

.info_read {
  font-size: 1.7rem;
  line-height: 2;
  text-align: center;
}

.info_box,
.info_manga_box {
  width: 100%;
    border: 1px solid;
    margin-top: 30px;
    padding: 35px;
}

.info_box:first-of-type {
  border-bottom: none;
}

.info_box:last-of-type {
  margin-top: 0;
}

.info_box_txt {
  font-size: 2.2rem;
    margin-bottom: 5px;
}

.day01 {
  font-size: 1.7rem;
  height: 34px;
  line-height: 34px;
  padding-left: 25px;
  border-left: 2px solid #1414B4;
  margin-right: 20px;
}

.info_tit_pre {
  font-size: 2.2rem;
  height: 34px;
  line-height: 34px;
  padding-left: 30px;
  border-left: 2px solid #1414B4;
  margin-bottom: 20px;
}

.pre_list {
  list-style: none;
  line-height: 2;
  font-size: 1.7rem;
  margin-bottom: 25px;
}

.pre_list span {
  color: #4581A9;
}

.pre_left {
  font-size: 1.7rem;
  margin-right: 15px;
}

.pre_line {
  width: 1px;
    height: 100px;
    background: #646464;
    margin: 0 15px;
}

.pre_left span {
  font-size: 1.4rem;
}

.pre_left img {
  width: 125px;
    height: auto;
    margin-left: 20px;
}

.pre_right {
  font-size: 1.7rem;
}

.booth_tit {
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
  color: #437FA8;
  padding-bottom: 10px;
  border-bottom: 1px solid #4581A9;
  max-width: 450px;
  margin: 20px auto;
}

.booth_cap {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 30px;
}

.booth_btn_area {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.booth_btn {
  width: calc(25% - 15px);
  height: 85px;
  margin: 0 10px;
  border-radius: 5px;
}

.booth_btn.red {
  background: #f09eab;
}

.booth_btn.blue {
  background: #73bce6;
}

.booth_btn.green {
  background: #7ecc9b;
}

.booth_btn.yellow {
  background: #fdce4e;
}

.booth_btn p {
  font-size: 2rem;
  color: #FFF;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.booth_btn p span {
  font-size: 1.4rem;
}

.booth_btn p::after {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_under.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 13px;
  height: 18px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.booth_btn:first-of-type {
  margin-left: 0;
}

.booth_btn:last-of-type {
  margin-right: 0;
}

.booth_map {
  max-width: 1000px;
  width: 90%;
  margin: 15px auto 35px auto;
}

.lineup_area {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 70px auto;
}

.lineup_box {
  width: calc(25% - 23px);
  height: 300px;
  margin: 15px 15px;
}

.lineup_box:nth-of-type(1) {
  margin-left: 0;
}

.lineup_box:nth-of-type(4) {
  margin-left: 15px !important;
}

.lineup_box:nth-of-type(4n+1) {
  margin-left: 0;
}

.lineup_box:nth-of-type(4n) {
  margin-right: 0;
}

.bg_half {
  width: 100%;
  height: 210px;
}

.bg_full {
  width: 100%;
  height: 300px;
}

.bg_half p,
.bg_full p {
  font-size: 2rem;
  color: #FFF;
  text-align: center;
}

.lineup_box {
  background: #FFF;
  border: 1px solid #646464;
  position: relative;
}

a.lineup_box {
  color: #000;
  opacity: 1;
  transition: .5s;
}

a.lineup_box:hover {
  opacity: 0.5;
}

.lineup_box.red {
  border: 1px solid #f09eab;
}

.lineup_box.blue {
  border: 1px solid #73bce6;
}

.lineup_box.green {
  border: 1px solid #7ecc9b;
}

.lineup_box.yellow {
  border: 1px solid #fdce4e;
}

.lineup_box.red .bg_half,
.lineup_box.red .bg_full {
  background: #f09eab;
}

.lineup_box.blue .bg_half {
  background: #73bce6;
}

.lineup_box.green .bg_half {
  background: #7ecc9b;
}

.lineup_box.yellow .bg_half {
  background: #fdce4e;
}

.new {
  position: absolute;
  display: block;
  padding: 5px 15px;
  background: red;
  font-size: 1.4rem;
  color: #FFF;
  top: 0;
  right: 0;
}

.corner_link {
  width: 90%;
  margin: 20px auto;
  height: 54px;
  border-radius: 3px;
  background: #f09eab;
}

.lineup_box.blue .corner_link {
  background: #73bce6;
}

.lineup_box.green .corner_link {
  background: #7ecc9b;
}

.lineup_box.yellow .corner_link {
  background: #fdce4e;
}

.corner_link p {
  font-size: 1.5rem;
  color: #FFF;
  padding-right: 25px;
  position: relative;
}

.corner_link p::after {
  position: absolute;
  content: "";
  background: url('../img/ico_popup.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 17px;
  height: 15px;
  top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.txt_area {
  width: 90%;
  height: 45px;
  margin: 15px auto;
}

.sub_txt_area {
  width: 90%;
  height: 45px;
  margin: 0 auto 15px auto;
}

.sub_txt_area p {
  font-size: 1.4rem;
}

.txt_area span {
  font-size: 1.5rem;
}

.txt_area p {
  font-size: 1.6rem;
}

.look_link {
  width: 90%;
  height: 40px;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
  color: #1414B4;
  text-align: center;
  border: 1px solid #1414B4;
  border-radius: 3px;
}

.ud_cont {
  width: 100%;
  padding: 60px 0;
  background: #DEECEF;
}

.ud_area {
    max-width: 1000px;
    width: 90%;
    margin: auto;
}

.ud_tit {
  font-size: 2.2rem;
  height: 34px;
  line-height: 34px;
  padding-left: 20px;
  border-left: 2px solid #1414B4;
  margin-bottom: 30px;
}

.mov_box {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 50px auto;
}

.ud_link_area {
  width: 100%;
}

.survey_box {
  max-width: 1000px;
  width: 90%;
  margin: 65px auto 90px auto;
  border: 1px solid #1414B4;
  padding: 45px;
  text-align: center;
}

.survey_tit {
  width: 740px;
  font-size: 2.4rem;
  color: #1414B4;
  margin: 0px auto 20px auto;
  border-bottom: 1px solid;
  padding-bottom: 20px;
}

.survey_cap {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.survey_link {
  max-width: 440px;
  width: 100%;
  height: 55px;
  background: #1414B4;
  color: #FFF;
  margin: 25px auto 40px auto;
}

.survey_link p {
  position: relative;
  font-size: 1.8rem;
  padding: 0 35px;
}

.survey_box a.survey_link:first-of-type p {
  padding: 0 0 0 35px;
}

.survey_box a {
  opacity: 1;
  transition: .5s;
}

.survey_box a:hover {
  opacity: 0.5;
}

.survey_link p::before {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_left.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25px;
  height: 13px;
  top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.survey_link p::after {
  position: absolute;
  content: "";
  background: url('../img/ico_popup.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 18px;
  top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.survey_box a.survey_link:first-of-type p::after {
  display: none;
}

.real_info_box {
  margin-bottom: 30px;
}

.real_info_txt {
  font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.real_info_txt p:first-of-type {
  margin-right: 10px;
}

.real_info_img {
  max-width: 335px;
  margin-left: 20px;
}

.real_info_img img {
  margin-bottom: 10px;
}

.real_btn {
  max-width: 350px;
  width: 100%;
  height: 60px;
  background: #4581A9;
  color: #FFF;
  margin: auto;
}

.real_btn p {
  font-size: 1.6rem;
  padding-right: 40px;
  position: relative;
}

.real_btn p::after {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_left.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 16px;
  top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.info_btn {
  max-width: 900px;
  width: 100%;
  height: 60px;
  background: #4581A9;
  color: #FFF;
  margin: 20px auto;
}

.info_btn p {
  font-size: 1.6rem;
  padding-right: 40px;
  position: relative;
}

.info_btn p::after {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_left.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 16px;
  top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.present_btn {
  max-width: 900px;
  width: 100%;
  height: 80px;
  background: #ffd900;
  margin: 30px auto 0 auto;
  color: #000;
}

.present_btn span {
  font-size: 3rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 45px;
  padding-right: 35px;
}

.present_btn span::before {
  position: absolute;
  content: "";
  background: url('../img/ico_present_b.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 31px;
  height: 31px;
  top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.present_btn span::after {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_left_b.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 16px;
  top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.present_btn p {
  font-size: 1.6rem;
  margin-left: 20px;
}

.present_btn p small {
  font-size: 1.4rem;
}

.booth_top_btn {
  position: absolute;
  bottom: 15px;
  right: 0;
  width: calc(25% - 23px);
    height: 40px;
    background: #969696;
    border-radius: 3px;
    color: #FFF;
    font-size: 1.6rem;
}

.booth_top_btn p {
  position: relative;
  padding-left: 30px;
}

.booth_top_btn p::before {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_top.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 18px;
  top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.cm_cont {
  width: 100%;
  margin: 60px auto;
}

.cm_area {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  font-size: 2rem;
}

.cm_box {
  margin-bottom: 30px;
}

.cm_box p {
  font-weight: bold;
}

.cm_left span {
  height: 40px;
  background: #1414B4;
  padding: 10px;
  color: #FFF;
  margin-right: 20px;
  line-height: 1;
}

.cm_right {
  padding-left: 60px;
  position: relative;
}

.cm_right::before {
  position: absolute;
  content: "";
  background: url('../img/ico_arrow_gray.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 42px;
  height: 20px;
  top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.cm_right span {
  width: 230px;
  height: 40px;
  padding: 10px;
  border: 1px solid #969696;
}

.info_btn,
.real_btn {
  opacity: 1;
  transition: .5s;
}

.info_btn:hover,
.real_btn:hover {
  opacity: 0.5;
}

.manga_box {
  width: 32%;
}

.manga_box p{
  font-size: 1.5rem;
  text-align: center;
  margin: 12px auto;
}

.manga_box .survey_link {
  margin: 25px auto 0 auto;
}

.main_cont {
  width: 100%;
  padding: 25px 0;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(202,224,240,1) 100%);
}

.main_tit_area {
  max-width: 1147px;
  width: 95%;
  margin: auto;
}

.toto_logo {
  max-width: 130px;
  margin-left: 70px;
  margin-bottom: 30px;
}

.toto_logo img {
  width: 100%;
  margin-top: 15px;
}

.main_txt {
  max-width: 720px;
  width: 100%;
  text-align: center;
  margin: auto;
}

.main_txt h1 {
  font-size: 3.2rem;
  color: #4581A9;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.main_day {
  font-size: 2.2rem;
  color: #4581A9;
  font-weight: bold;
  margin-top: 10px;
}

.sub_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 20px;
}

.fukushi_logo {
  max-width: 160px;
}

.main_list_area {
  max-width: 1147px;
  margin: 20px auto;
}

.main_sub_list_area {
  max-width: 1147px;
  margin: 20px auto;
}

.main_list_box {
  max-width: 485px;
  height: 120px;
  width: 100%;
  background: #4580a8;
  border: 3px solid #4580a8;
  margin: 10px 15px;
}

.main_list_img {
  width: 35%;
}

.main_list_txt {
  width: 65%;
  padding: 15px;
  color: #FFF;
}

.main_list_tit {
  position: relative;
  font-size: 1.9rem;
  font-weight: bold;
  padding-left: 30px;
  margin-bottom: 10px;
}

.main_list_tit::before {
  position: absolute;
  content: "";
  background: url("../img/ico_main01.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.main_list_sub_txt {
  font-size: 1.4rem;
  line-height: 1.5;
}

.main_sub_list_box {
  width: 485px;
  height: 100px;
  background: #FFF;
  border: 1px solid #4580a8;
  border-radius: 10px;
  padding: 12px;
  margin: 0 15px;
}

.main_sub_list_img.image {
  width: 107px;
  margin-right: 15px;
}

.main_sub_list_img.ico {
  width: 65px;
  margin-right: 15px;
}

.main_sub_list_txt {
  width: 70%;
}

.main_sub_list_txt p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #4580a8;
  position: relative;
  padding-left: 35px;
}

.main_sub_list_txt p::before {
  position: absolute;
  content: "";
  background: url("../img/ico_main02.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.main_sub_list_txt p.large {
  font-size: 1.7rem;
  font-weight: bold;
}

.close_bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  max-width: 1000px;
  width: 90%;
  height: 100%;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  z-index: 1;
}

.close_message {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  background: #FFF;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}

.close_ticket {
  max-width: 440px;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  background: #FFF;
  padding: 20px;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}


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

  .info_tit {
    font-size: 2rem;
    width: 90%;
  }

  .info_read {
    font-size: 1.4rem;
  }

  .info_box,
  .info_manga_box {
    padding: 15px;
  }

  .info_box_txt {
    font-size: 1.6rem;
  }

  .info_tit_pre {
    font-size: 1.8rem;
    padding-left: 10px;
  }

  .day01 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-left: 5px;
    margin-right: 0;
    height: 20px;
    line-height: 20px;
  }

  .info_box_txt {
    font-size: 1.8rem;
  }

  .pre_list {
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;
  }

  .pre_left,
  .pre_right {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .pre_line {
    display: none;
  }

  .pre_left img {
    margin-left: 0;
    margin-top: 20px;
  }

  .booth_tit {
    font-size: 1.8rem;
    width: 90%;
  }

  .booth_cap {
    width: 90%;
    font-size: 1.4rem;
    margin: 30px auto;
  }

  .booth_btn {
    width: calc(50% - 5px);
    height: 60px;
    margin: 5px;
  }

  .booth_map {
    margin: 15px auto 35px auto;
  }

  .booth_btn p {
    font-size: 1.4rem;
  }

  .booth_btn:first-of-type {
    margin-left: 10px;
  }

  .booth_btn:last-of-type {
    margin-right: 10px;
  }

  .booth_btn:nth-of-type(odd) {
    margin-left: 0px;
  }

  .booth_btn:nth-of-type(even) {
    margin-right: 0px;
  }

  .lineup_area {
    margin: 0 auto 20px auto;
  }

  .lineup_box {
    width: calc(50% - 10px);
    height: 270px;
    margin: 15px 8px;
  }

  .bg_full {
    height: 270px;
  }

  .lineup_box:nth-of-type(1) {
    margin-left: 8px;
  }

  .lineup_box:nth-of-type(4) {
    margin-left: 8px !important;
  }

  .lineup_box:nth-of-type(4n+1) {
    margin-left: 8px;
  }

  .lineup_box:nth-of-type(4n) {
    margin-right: 8px;
  }

  .lineup_box:nth-of-type(odd) {
    margin-left: 0;
  }

  .lineup_box:nth-of-type(even) {
    margin-right: 0;
  }

  .bg_half p, .bg_full p {
    font-size: 1.6rem;
  }

  .corner_link {
    margin: 10px auto;
  }

  .corner_link p {
    font-size: 1.2rem;
    padding-right: 20px;
  }

  .corner_link p::after {
    width: 14px;
    height: 13px;
  }

  .txt_area {
    height: 60px;
  }

  .txt_area span {
    font-size: 1rem;
  }

  .txt_area p {
    font-size: 1.4rem;
  }

  .bg_half {
    width: 100%;
    height: 182px;
  }

  .ud_tit {
    font-size: 1.8rem;
  }

  .mov_box {
    margin: 0 auto 20px auto;
  }

  .survey_box {
    padding: 20px;
    width: 80%;
    margin: 30px auto;
  }

  .survey_tit {
    width: 90%;
    font-size: 1.8rem;
  }

  .survey_cap {
    font-size: 1.6rem;
  }

  .survey_link p {
    font-size: 1.4rem;
  }

  .ud_link_area .lineup_box .txt_area {
    height: 45px;
  }

  .sub_txt_area p {
    font-size: 1.2rem;
  }

  video {
    height: 240px !important;
  }

  .present_btn {
    height: auto;
    padding: 10px;
  }

  .present_btn span {
    width: 70%;
    font-size: 2rem;
    display: block;
    margin: 20px auto;
    text-align: center;
  }

  .present_btn p {
    font-size: 1.4rem;
    margin-left: 0;
  }

  .present_btn p small {
    font-size: 1.2rem;
  }

  .booth_top_btn {
    width: calc(50% - 10px);
    font-size: 1.4rem;
  }

  .cm_area {
    font-size: 1.6rem;
  }

  .cm_left {
    margin-bottom: 20px;
  }

  .cm_left span {
    height: 30px;
    padding: 5px;
    margin-right: 10px;
    width: 25%;
    text-align: center;
  }

  .cm_left p {
    font-size: 1.4rem;
  }

  /* #tech.lineup_area,
  #pub.lineup_area {
    padding-bottom: 60px;
  } */

  .cm_right span {
    width: 100%;
  }

  .info_btn {
    height: 120px;
  }

  .manga_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .manga_box p {
    font-size: 1.4rem;
  }

  .info_manga_box .info_tit_pre {
    height: auto;
  }

  .toto_logo {
    max-width: 80px;
    margin: 10px auto;
  }

  .toto_logo img {
    margin-top: 0;
  }

  .main_txt h1 {
    font-size: 2.4rem;
  }

  .main_day {
    font-size: 1.8rem;
  }

  .sub_txt {
    margin-bottom: 20px;
  }

  .fukushi_logo {
    margin: auto;
  }

  .main_list_box {
    width: 85%;
    height: auto;
    padding: 5px;
    margin: 15px auto;
  }

  .main_list_img {
    width: 100%;
    margin: auto;
  }

  .main_list_txt {
    width: 100%;
  }

  .main_sub_list_box {
    width: 85%;
    margin: 15px auto;
  }

  .main_sub_list_box:nth-of-type(2) {
    margin: 15px auto;
  }

  .main_sub_list_img.image {
    width: 65px;
  }

  .close_message,
  .close_ticket {
    font-size: 1.2rem;
    width: 80%;
  }

  .close_bg {
    width: 100%;
  }

}
