@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
}

@media screen and (width <= 480px) {
  main {
    margin-top: 50px;
  }
}

/* コンテンツ　ヘッダー */
.entrance_header {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  max-width: 100%;
}

.hero {
  line-height: 0;
}

.marquee {
  position: relative;
  width: 100%;
  padding: 0.5em 0;
  box-shadow: cyan 0 0 10px 0 inset;
  background-blend-mode: darken;
  background-color: #013;
  background-image: url('../img/marquee_bg.jpg');
  background-repeat: repeat;
  border-bottom: 2px solid #00ced1;
  border-top: 2px solid #00ced1;
  overflow: hidden;
}

.marquee p::after {
  content: '';
  padding-right: 50px;
  white-space: nowrap;
}

.marquee p {
  display: inline-block;
  margin: 0;
  color: cyan;
  animation-duration: 60s;
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  padding-left: 100%;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translate(0%);
  }

  99%,
  100% {
    transform: translate(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translate(0%);
  }

  99%,
  100% {
    transform: translate(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translate(0%);
  }

  99%,
  100% {
    transform: translate(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translate(0%);
  }

  99%,
  100% {
    transform: translate(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translate(0%);
  }

  99%,
  100% {
    transform: translate(-100%);
  }
}

/* コンテンツ　メイン */
.entrance_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 1050px;
  margin: 10px auto;
  max-width: 1050px;
}

@media screen and (width <=1050px) {
  .entrance_wrap {
    flex-basis: 100%;
    max-width: 100%;
  }
}

section.main {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 auto;
  max-width: 100%;
}

.hero {
  margin-bottom: 0;
}

.ad_box {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  max-width: 100%;
}

.lottery_ad img {
  width: 100%;
  height: auto;
}

.main_info {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (width <=480px) {
  .main_info {
    order: 3;
  }
}

/* コンテンツ　イベント情報 */
dl.event_info {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 33%;
  margin: 0 auto;
  padding: 10px;
  font-size: 20px;
  color: #036;
  border-radius: 5px;
  box-shadow: #ccc 0 0 5px 1px inset;
  background-color: rgb(255 255 255 / 100%);
  background-image: url('../img/pattern.png');
  border: 1px solid #aaa;
  font-weight: bold;
  max-width: 33%;
}

@media screen and (width <=768px) {
  dl.event_info {
    font-size: 16px;
  }
}

@media screen and (width <=480px) {
  dl.event_info {
    display: none;
  }
}

dl.event_info dt {
  width: 100%;
  height: fit-content;
  margin: 0 auto 5px;
  background: paleturquoise;
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
}

@media screen and (width <=768px) {
  dl.event_info dt {
    height: 40px;
    padding: 2px;
  }
}

@media screen and (width <=480px) {
  dl.event_info dt {
    height: auto;
    padding: 0;
  }
}

dl.event_info dd {
  margin: 0 auto;
  line-height: 1em;
  letter-spacing: 0;
}

dl.event_info dd.text_center {
  margin: auto;
  text-align: center;
}

@media screen and (width <=480px) {
  dl.event_info dd.text_center {
    display: none;
  }
}

.text_small {
  font-size: 14px;
}

@media screen and (width <=768px) {
  .text_small {
    font-size: 11px;
  }
}

.text_caution {
  padding: 5px;
  font-size: 13px;
  color: #036;
  background: paleturquoise;
  border-radius: 5px;
  text-align: left;
  line-height: 1.5 !important;
  border: 1px solid cyan;
  margin-top: 5px;
}

.event_info_spacer {
  height: 60px;
}

@media screen and (width <=768px) {
  .event_info_spacer {
    height: 100%;
  }
}

@media screen and (width <=480px) {
  .event_info_spacer {
    display: none;
  }
}

/* コンテンツ　メインナビ */
ul.main_navi_left {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 20%;
  margin: auto;
  max-width: 20%;
  padding-top: 10px;
}

@media screen and (width <=768px) {
  ul.main_navi_left {
    flex-basis: 100%;
    justify-content: space-between;
    max-width: 100%;
    order: 1;
  }
}

ul.main_navi_right {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 20%;
  margin: auto;
  max-width: 20%;
  padding-top: 10px;
}

@media screen and (width <=768px) {
  ul.main_navi_right {
    flex-basis: 100%;
    justify-content: space-between;
    max-width: 100%;
    order: 3;
  }
}

@media screen and (width <=480px) {
  ul.main_navi_right {
    order: 2;
    padding-top: 0;
  }
}

ul.main_navi_left li,
ul.main_navi_right li {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 0 10px 10px;
  max-width: 100%;
}

@media screen and (width <=768px) {
  ul.main_navi_left li,
  ul.main_navi_right li {
    flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (width <=480px) {
  ul.main_navi_left li,
  ul.main_navi_right li {
    flex-basis: 50%;
    max-width: 50%;
  }
}

ul.main_navi_left li a.item,
ul.main_navi_right li a.item {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: auto;
  padding: 10px;
  font-size: 14px;
  color: cyan;
  border-radius: 10px;
  box-shadow: cyan 0 0 5px 1px inset;
  text-align: center;
  line-height: 18px;
  background-color: #013;
  border: 2px solid #00ced1;
  max-width: 100%;
}

@media screen and (width <=768px) {
  ul.main_navi_left li a.item,
  ul.main_navi_right li a.item {
    height: 50px;
    font-size: 12px;
  }
}

ul.main_navi_left li a.item small,
ul.main_navi_right li a.item small {
  font-size: 0.625rem;
}

dl.gate {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 60%;
  height: 350px;
  margin: auto;
  padding: 10px;
  border-radius: 5px;
  box-shadow: paleturquoise 0 0 2px 1px;
  background-image: url('../img/gate_bg.jpg');
  background-position: center;
  background-size: cover;
  border: 2px solid paleturquoise;
  max-width: 60%;
}

@media screen and (width <=768px) {
  dl.gate {
    flex-basis: 100%;
    max-width: 100%;
    order: 2;
  }
}

@media screen and (width <=480px) {
  dl.gate {
    height: auto;
    margin-top: 10px;
    min-height: 270px;
    order: 0;
  }
}

dl.gate dt {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 auto;
  font-size: 200%;
  color: darkblue;
  text-align: center;
  letter-spacing: 1em;
  max-width: 100%;
  padding-left: 1em;
  text-shadow: cyan 0 0 10px;
}

@media screen and (width <=768px) {
  dl.gate dt {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
}

@media screen and (width <=480px) {
  dl.gate dt {
    font-size: 1em;
    margin-bottom: 10px;
  }
}

.dt_small {
  display: block;
  margin: auto;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1em;
}

dl.gate dd {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.gate dd {
    height: auto;
  }
}

dl.gate dd a {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px;
  font-size: 100%;
  color: cyan;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  text-align: center;
  background-color: #013;
  border: 2px solid #00ced1;
  min-width: 50%;
}

@media screen and (width <=480px) {
  dl.gate dd a {
    padding: 5px;
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}

.alert {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 auto;
  color: #b00;
  background: #ffe4e1;
  border-radius: 5px;
  line-height: 24px;
  border: 1px solid #b00;
  max-width: 100%;
  text-shadow: tomato 0 0 10px;
}

@media screen and (width <=768px) {
  .alert {
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0;
  }
}

@media screen and (width <=480px) {
  .alert {
    flex-basis: 100%;
    margin: 0 auto;
    padding: 5px;
    font-size: 11px;
    line-height: 16px;
    max-width: 100%;
  }
}

.alert_txt {
  display: block;
  margin: auto;
  text-align: center;
}

.alert_subtxt {
  position: relative;
  display: block;
  text-align: left;
  margin-left: 10px;
  padding-left: 16px;
}

.alert_subtxt::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

@media screen and (width <=480px) {
  .alert_subtxt {
    margin-left: 0;
    padding-left: 12px;
  }
}

dd.event_status {
  margin: 0 auto;
  padding: 10px;
  color: #036;
  border-radius: 5px;
  box-shadow: #ccc 0 0 5px 1px inset;
  background-color: rgb(255 255 255 / 50%);
  background-image: url('../img/pattern.png');
  border: 1px solid #aaa;
  font-weight: bold;
}

dd.event_status div.event_status_text {
  align-self: flex-start;
  margin: 0 0 20px;
  font-size: 16px;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  line-height: 24px;
  border: 1px solid cyan;
}

@media screen and (width <=768px) {
  dd.event_status div.event_status_text {
    font-size: 14px;
    line-height: 21px;
  }
}

@media screen and (width <=480px) {
  dd.event_status div.event_status_text {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0;
  }
}

.interval {
  font-size: 14px;
  letter-spacing: 0;
}

@media screen and (width <=480px) {
  .interval {
    font-size: 12px;
  }
}

ul.interval_list {
  display: list-item;
  width: 100%;
  text-align: left;
}

li.interval_list_item {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding-left: 15px;
}

li.interval_list_item::before {
  content: '▶';
  position: absolute;
  left: 0;
}

@media screen and (width <=480px) {
  li.interval_list_item {
    font-size: 12px;
    line-height: 16px;
  }
}

/* 自由編集スペース */
section.info_area {
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (width <=1050px) {
  section.info_area {
    padding: 0 10px;
  }
}

@media screen and (width <=480px) {
  section.info_area {
    padding: 0;
  }
}

ul.info_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

ul.info_container li {
  margin: 10px 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: #ccc 0 0 5px 1px inset;
  border: 1px solid #aaa;
}

@media screen and (width <=480px) {
  ul.info_container li {
    margin: 10px 0 0;
  }
}

li.info_item {
  flex-basis: 100%;
  max-width: 100%;
}

li.info_item__cols-item {
  flex-basis: 49%;
  max-width: 49%;
}

li.info_item__cols-item_grow1 {
  flex-basis: 34%;
  max-width: 34%;
}

li.info_item__cols-item_grow2 {
  flex-basis: 64%;
  max-width: 64%;
}

@media screen and (width <=768px) {
  li.info_item__cols-item_grow1,
  li.info_item__cols-item_grow2 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

section.info_item_contain {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 auto;
  padding: 0;
  color: cyan;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  background-color: #013;
  border: 2px solid #00ced1;
  max-width: 100%;
}

section.info_item_contain h4 {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  height: auto;
  margin: auto;
  padding: 10px;
  font-size: 1.25rem;
  color: cyan;
  font-weight: 700;
  max-width: 100%;
}

@media screen and (width <= 768px) {
  section.info_item_contain h4 {
    font-size: 1rem;
  }
}

ul.info_item_list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  height: 250px;
  padding: 1rem 2rem;
  font-size: 1em;
  background: white;
  line-height: 2rem;
  max-width: 100%;
  overflow-y: scroll;
}

ul.info_item_list li {
  flex-basis: 100%;
  margin: 0 auto 5px;
  box-shadow: none;
  border: none;
  border-bottom: 1px dotted #ccc;
  max-width: 100%;
}

/* 自由編集スペース：チケット */
dl.ticket_info {
  display: grid;
  flex-basis: 100%;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-shadow: cyan 0 0 5px 1px inset;
  background-color: #013;
  border: 2px solid #00ced1;
  max-width: 100%;
}

@media screen and (width<=480px) {
  dl.ticket_info {
    display: flex;
    flex-direction: column;
  }
}

dl.ticket_info dt {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 2;
  font-size: 1.25rem;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
}

@media screen and (width<=480px) {
  dl.ticket_info dt {
    font-size: 1rem;
  }
}

dl.ticket_info dd {
  margin: 0;
  font-size: 1.5rem;
  color: cyan;
  line-height: 1em;
  letter-spacing: 0.1em;
}

@media screen and (width<=480px) {
  dl.ticket_info dd {
    font-size: 1rem;
    text-align: center;
  }
}

dl.ticket_info dd.ticket_text_caution {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  padding: 10px;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  border: 1px solid cyan;
}

@media screen and (width<=480px) {
  dl.ticket_info dd.ticket_text_caution {
    order: 1;
  }
}

dl.ticket_info dd.ticket_text_caution a {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 0.875rem;
  color: cyan;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  text-align: center;
  background-color: #013;
  border: 2px solid #00ced1;
  letter-spacing: 0;
  max-width: 100%;
}

/* 自由編集スペース：プレス */
dl.press_info {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 5px;
  background-image: url('../img/press_bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
}

dl.press_info dt {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 0 5px;
  font-size: 1.25rem;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.press_info dt {
    font-size: 1rem;
  }
}

dl.press_info dd {
  flex-basis: 100%;
  margin: 5px 0;
  line-height: 1em;
  letter-spacing: 0.1em;
  max-width: 100%;
}

dl.press_info a.press_btn {
  display: flex;
  align-self: flex-end;
  justify-content: center;
  margin: 0 auto 5px;
  padding: 10px 20px;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
}

/* 自由編集スペース：一般参加者ガイド */
dl.visitor_guide_info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  justify-content: flex-start;
  height: 100%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 5px;
  box-shadow: #ccc 0 0 5px 1px inset;
  max-width: 100%;
}

@media screen and (width <=768px) {
  dl.visitor_guide_info {
    background-position: center right -10%;
  }
}

@media screen and (width <=480px) {
  dl.visitor_guide_info {
    background-image: none;
  }
}

dl.visitor_guide_info::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 45px;
  height: 65px;
  background: url('../img/beginner_mark.png') no-repeat center;
  background-size: contain;
}

@media screen and (width <=480px) {
  dl.visitor_guide_info::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 50px;
  }
}

dl.visitor_guide_info dt {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 0 5px;
  font-size: 1.25rem;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.visitor_guide_info dt {
    font-size: 1rem;
  }
}

dl.visitor_guide_info dd {
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(100% / 3);
  margin: 10px 0 0;
  max-width: calc(100% / 3);
}

@media screen and (width <=480px) {
  dl.visitor_guide_info dd {
    flex-basis: 50%;
    max-width: 50%;
  }

  dl.visitor_guide_info dd:last-child {
    display: none;
  }
}

dl.visitor_guide_info a {
  flex-basis: 98%;
  align-self: center;
  margin: 0 auto 5px;
  padding: 10px 20px;
  color: cyan;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  text-align: center;
  background-color: #013;
  border: 2px solid #00ced1;
  letter-spacing: 0;
  max-width: 98%;
}

@media screen and (width <=480px) {
  dl.visitor_guide_info a {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.visitor_guide_text_small {
  font-size: 8px;
  letter-spacing: 0;
}

@media screen and (width <=768px) {
  .visitor_guide_text_small {
    display: none;
  }
}

.visitor_guide_img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: flex;
  width: calc(100% / 3);
  height: auto;
  object-fit: none;
}

@media screen and (width <=1000px) {
  .visitor_guide_img {
    object-fit: contain;
  }
}

/* 広告スペース：イベント告知 */
dl.ad_event_info {
  display: flex;
  display: none;
  flex-wrap: wrap;
  flex-basis: 100%;
  padding: 10px 10px 5px;
  max-width: 100%;
}

dl.ad_event_info dt {
  flex-basis: 100%;
  align-self: flex-start;
  margin: 0 0 5px;
  font-size: 20px;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
  max-width: 100%;
}

dl.ad_event_info dd.event_info_inner_contain {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 10px 0 0;
  max-width: 100%;
}

div.event_info_inner_item {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  background: rgb(255 255 255 / 90%);
  border-radius: 5px;
  border: 1px solid cyan;
  letter-spacing: 0;
  margin-bottom: 5px;
  max-width: 100%;
}

@media screen and (width <=480px) {
  dl.ad_event_info {
    display: block;
  }
}

.inner_item_title {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 30%;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 14px;
  background: rgb(175 238 238 / 90%);
  max-width: 30%;
}

.inner_item_text {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 70%;
  padding: 5px 5px 5px 10px;
  font-size: 16px;
  max-width: 70%;
}

.inner_item_subtext {
  font-size: 12px;
}

.block {
  flex-basis: 100%;
  max-width: 100%;
}

.block__caution {
  line-height: 1.2em;
}

.inner_text_small {
  flex-basis: 100%;
  margin: auto;
  text-align: center;
  max-width: 100%;
}

/* 広告スペース：キャラフェスバナー */
.cf_baner {
  position: relative;
  width: 100%;
  height: 100%;
}

.cf_baner img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.cf_baner a {
  position: absolute;
  right: 10px;
  bottom: 20px;
  padding: 5px 10px;
  font-size: 12px;
  color: #013;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  background-color: rgb(175 238 238 / 90%);
  border: 1px solid cyan;
}

.ad_item picture,
.ad_item picture img {
  width: 100%;
  height: auto;
}

/* お問い合わせ */
.tfo_info_wrapper {
  width: 100%;
  background: linear-gradient(to bottom, #e9f6fa, #d6ebf2);
  border-radius: 5px;
  box-shadow: #ccc 0 0 5px 1px inset;
}

.tfo_info_inner {
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
  width: 100%;
  margin: auto;
  max-width: 800px;
}

.tfo_info_img {
  display: flex;
  flex-basis: 40%;
  justify-content: center;
  max-width: 40%;
}

@media screen and (width <=480px) {
  .tfo_info_img {
    display: none;
  }
}

.tfo_info_img img {
  width: auto;
  height: 100%;
  max-height: 224px;
}

dl.tfo_info {
  display: flex;
  flex-flow: column;
  flex-basis: calc(60% - 1rem);
  gap: 1rem;
  padding: 1rem;
  max-width: calc(60% - 1rem);
}

@media screen and (width <=480px) {
  dl.tfo_info {
    flex-basis: 100%;
    max-width: 100%;
  }
}

dl.tfo_info dt {
  font-size: 20px;
  color: #013;
  background: rgb(175 238 238 / 90%);
  border-radius: 5px;
  text-align: center;
  border: 1px solid cyan;
}

@media screen and (width <=480px) {
  dl.tfo_info dt {
    font-size: 1rem;
  }
}

dl.tfo_info dd {
  display: flex;
}

dl.tfo_info a {
  flex-basis: 100%;
  align-self: center;
  margin: 0 0 5px;
  padding: 10px 20px;
  color: cyan;
  border-radius: 5px;
  box-shadow: cyan 0 0 5px 1px inset;
  text-align: center;
  background-color: #013;
  border: 2px solid #00ced1;
  letter-spacing: 0;
  max-width: 100%;
}

.tfo_info_subtext {
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}

.tfo_info_subtext_small {
  display: block;
  width: 100%;
  font-size: 12px;
}

.twitter {
  top: 250px;
  height: 600px;
  border: 1px solid #ccc;
  border-bottom-left-radius: 5px;
  border-right: none;
  border-top-left-radius: 5px;
}

@media screen and (width <= 854px) {
  .twitter_label {
    top: 72px;
  }
}

@media screen and (width <= 480px) {
  .twitter_label {
    top: 130px;
    width: 30px;
    height: 30px;
  }
}

.__caution {
  position: relative;
  display: flex;
  font-size: 12px;
  color: #ff9;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-left: 16px;
}

.__caution::before {
  content: '※';
  position: absolute;
  left: 0;
}

.tiket_btn_wrap {
  display: flex;
  flex: 1 0 0;
  justify-content: flex-end;
}

@media screen and (width <= 480px) {
  .tiket_btn_wrap {
    justify-content: flex-start;
  }
}

.ticket_btn {
  padding: 3px 6px;
  font-size: 11px;
  color: cyan;
  background: #013;
  border-radius: 4px;
  font-weight: lighter;
}

@media screen and (width <= 480px) {
  .tiket_btn {
    padding: 0 10px;
  }
}

.mg-btm-10 {
  margin-bottom: 10px;
}

.__notes {
  position: relative;
  display: flex;
  flex: 1 0 0;
  margin: 2px 0;
  font-size: 11px;
  color: #b00;
  font-weight: lighter;
  padding-left: 1rem;
  word-break: auto-phrase;
}

.__notes::before {
  content: '※';
  position: absolute;
  left: 0;
}
