/* -----------------------------------
 トップページ - メインビジュアル
----------------------------------- */
.t_tv {
  height: 100vh;
  width: 100vw;
}
.t_tv .inner {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
}

/* スライドショー */
.t_tv .kv {
  height: 100%;
}
#viewer,
#viewer_ev {
  position: relative;
  overflow: hidden;
  /* height: 100%; */
}
.slideItem {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s linear, transform 15s linear;  /*秒数に注意*/
  position: relative;
  z-index: 1;
}
.slideItem img {
  width: 100%;
  height: 100%;
}
.slideItem:not(:first-child) {
  position: absolute;
  top: 0;
  left : 0;
}
.t_tv .credit {
  /* transition: 1s; */
}
.t_tv .credit .top {
  width: 60%;
  max-width: 450px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.t_tv .credit .bottom {
  width: 60%;
  max-width: 450px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* スライド用 */
.show {
  opacity: 1;
}
.zoom {
  transform: scale(1.3);
}

/* -----------------------------------
 トップページ - WDW
----------------------------------- */
.t_wdw {
  background-image: url(../image/bg/mb/bg_black.jpg);
  background-size: contain;
  z-index: 4;
  position: relative;
  padding-top: var(--top_padding);
  padding-bottom: calc(var(--bottom_padding) + 30px);
  color: #fff;
}
.t_wdw .g_head_01 {
  text-align: center;
  color: #fff;
}
.t_wdw .g_head_01 h2 {
  font-size: 2.4rem
}
.t_wdw .text {
  text-align: center;
  line-height: 32px;
}
.t_wdw .text .time {
  margin-top: 20px;
  line-height: 22px;
}

/* -----------------------------------
 トップページ - FOOD & DRINK
----------------------------------- */
.t_fd {
  /* background-image: url(../image/bg/mb/bg_beige.jpg); */
  background: #fff;
  background-size: cover;
  z-index: 0;
  position: relative;
  padding-top: calc(var(--top_padding) + 30px);
  padding-bottom: var(--bottom_padding);
  border-top: 1px solid var(--line_gray);
}
.t_fd .img,
.t_event .img,
.t_activity .img,
.t_location .img {
  margin-bottom: 30px;
}

/* -----------------------------------
 トップページ - EVENT
----------------------------------- */
.t_event {
  /* background-image: url(../image/bg/mb/bg_beige.jpg); */
  background: #fff;
  /* background-size: cover; */
  z-index: 0;
  position: relative;
  padding-top: calc(var(--top_padding) + 30px);
  padding-bottom: var(--bottom_padding);
  border-top: 1px solid var(--line_gray);
}

/* -----------------------------------
 トップページ - ACTIVITY
----------------------------------- */
.t_activity {
  /* background-image: url(../image/bg/mb/bg_beige.jpg); */
  background: #fff;
  /* background-size: cover; */
  z-index: 0;
  position: relative;
  padding-top: calc(var(--top_padding) + 30px);
  padding-bottom: var(--bottom_padding);
  border-top: 1px solid var(--line_gray);
}
.t_activity .text {
  margin-bottom: 15px;
}
.t_fd .info a,
.t_activity .info a {
  display: block;
  margin-top: 10px;
}
.t_fd .info a:active,
.t_activity .info a:active {
  transform: translateY(2px);
  text-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.t_activity .info .time {
  margin-top: 20px;
  font-weight: 600;
}

/* -----------------------------------
 トップページ - LOCATION
----------------------------------- */
.t_location {
  /* background-image: url(../image/bg/mb/bg_common.jpg); */
  background: #fff;
  background-size: cover;
  z-index: 0;
  position: relative;
  padding-top: calc(var(--top_padding) + 30px);
  padding-bottom: var(--bottom_padding);
  border-top: 1px solid var(--line_gray);
}
.t_location .access {
  margin-top: 20px;
}
.t_location .access iframe {
  height: 240px;
  margin-bottom: 10px;
}
.t_location .access h3 {
  font-size: 2.4rem;
}
.t_location .access ul {
  list-style: inherit;
  padding-left: 20px;
}

/* -----------------------------------
 トップページ - ニュース
----------------------------------- */
.t_news {
  /* background-image: url(../image/bg/mb/bg_common.jpg); */
  background: #fff;
  /* background-size: cover; */
  z-index: 4;
  position: relative;
}
.t_news_p2 .inner {
  padding-right: 0px;
}
#t_event > div {
  border-top: 1px solid var(--line_gray);
}
.t_news .inner {
  padding-top: var(--top_padding);
  /* padding-bottom: 120px; */
  padding-bottom: var(--bottom_padding);
}
.t_news ul a:hover h3 {
  /* color: var(--pink); */
}
.t_news li {
  width: 75%;
}
.t_news .thumbnail {
  margin-bottom: 15px;
}
.t_news .content time {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
#t_event .content .time {
  margin-bottom: 4px;
}
#t_event .content time {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0px;
  font-weight: 500;
}
.t_news .content h3 {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 12px;
  transition: .3s;
}
.t_news .content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.t_news .content a {
  color: #0000EE;
  text-decoration: underline;
  display: inline;
}

/* 流れる文字 */
.flow_txt {
  display: flex;
	position: absolute;
  width: 100vw;
  left: 0;
	bottom: -50px;
	width: 100%;
	/* height: 110px;
	line-height: 110px; */
	overflow: hidden;
	z-index: -1;
}
.flow_txt div {
  flex: 0 0 auto;
  white-space: nowrap;
	padding-right: 30px;
	color: rgba(0,0,0,0);
	font-size: 9rem;
	font-weight: 700;
	-webkit-text-stroke: 2px #727171;
}
.flow_txt div:nth-child(odd) {
  animation: loop 40s -20s linear infinite;
}
.flow_txt div:nth-child(even) {
  animation: loop2 40s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* -----------------------------------
 トップページ - SPONSOR
----------------------------------- */
.t_sponsor {
  background: #fff;
  background-size: cover;
  z-index: 0;
  position: relative;
  padding-top: calc(var(--top_padding) + 30px);
  padding-bottom: var(--bottom_padding);
  text-align: center;
  border-top: 1px solid #f4f4f4;
}
.sponsor_list li {
  margin-right: auto;
  margin-left: auto;
}
.sponsor_list li:not(:last-child) img {
  margin-bottom: 65px;
}
.sponsor_list .size_a {
  width: 180px;
}
.sponsor_list .size_b {
  width: 150px;
}
.sponsor_list img {
  width: 100%;
}

/* -----------------------------------
 ヒストリー
----------------------------------- */
.t_after_movie .inner {
  position: relative;
}
.t_after_movie,
.t_after_movie a {
  /* color: #fff; */
}
.t_after_movie .inner {
  background-image: url(../image/bg/mb/bg_beige.jpg);
  background-size: contain;
  padding-top: var(--top_padding);
  /* padding-top: 60px; */
  padding-bottom: 240px;
}
.t_after_movie .g_head_01 {
  margin-bottom: 80px;
}
.t_after_movie .movie h3 {
  margin-bottom: 10px;
}
.t_after_movie .thumbnail {
  position: relative;
  text-align: center;
  /* margin-bottom: 15px; */
}
.t_after_movie .thumbnail .anchor {
  position: relative;
  text-align: center;
  /* margin-bottom: 15px; */
}
.t_after_movie .thumbnail .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40px;
}
.t_after_movie .link {
  position: absolute;
  right: var(--side_padding);
  bottom: 50px;
}
.t_after_movie .read_more {
  display: inline-block;
}
.t_after_movie .read_more:after {
  background: var(--general);
}

.t_after_movie .line_up {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 60px;
}
.t_after_movie .line_up ul {
  display: flex;
  flex-wrap: wrap;
}
.t_after_movie .line_up ul li:not(:last-child) {
  margin-right: 10px;
}
.t_after_movie .line_up .day_1 {
  margin-bottom: 20px;
}


/****************************** 600px ******************************/
@media (min-width: 600px){

  /* -----------------------------------
   トップページ - メインビジュアル
  ----------------------------------- */
  .t_tv .item_01 .credit img {
    max-width: 550px;
  }

  /* -----------------------------------
   トップページ - アバウト
  ----------------------------------- */
  .t_about .copy .text {
    font-size: 1.6rem;
  }
  .t_about .copy img {
    width: 70%;
  }

  /* -----------------------------------
   トップページ - ニュース
  ----------------------------------- */
  .t_news .content h3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

}

/****************************** 1025px ******************************/
@media (min-width: 1025px){

  /* -----------------------------------
   トップページ - メインビジュアル
  ----------------------------------- */
  .t_tv .item_01 .credit img {
    max-width: 650px;
    margin-top: 100px;
    /* top: 30%; */
  }
  .t_tv .credit .top {
    max-width: 400px;
  }
  .t_tv .credit .bottom {
    max-width: 400px;
  }
  .t_tv .credit .top {
    top: 42%;
  }
  .t_tv .credit .bottom {
    bottom: 130px;
  }

  /* -----------------------------------
   トップページ - WDW
  ----------------------------------- */
  .t_wdw .g_head_01 h2 {
    font-size: 3.6rem
  }

  /* -----------------------------------
   トップページ - FOOD
  ----------------------------------- */
  .t_event .content,
  .t_fd .content,
  .t_location .content,
  .t_activity .content,
  .t_location .access {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .t_event .content .img,
  .t_fd .content .img,
  .t_activity .content .img,
  .t_location .content .img {
    width: 48%;
    margin-bottom: 0px;
  }
  .t_event .content .text,
  .t_fd .content .text,
  .t_activity .content .detail,
  .t_location .content .text,
  .t_location .access iframe,
  .t_location .access .detail {
    width: 48%;
  }

  /* -----------------------------------
   トップページ - ACTIVITY
  ----------------------------------- */
  .t_activity .text {
    margin-bottom: 40px;
  }
  .t_fd .info a:hover,
  .t_activity .info a:hover {
    transform: translateY(3px);
    text-shadow: 0 6px 12px rgba(0, 122, 255, 0.2);
  }

  /* -----------------------------------
   トップページ - LOCATION
  ----------------------------------- */
  .t_location .access {
    margin-top: 30px;
  }
  .t_location .access iframe {
    height: 400px;
    margin-bottom: 0px;
  }
  .t_location .access h3 {
    font-size: 3.2rem;
  }

  /* -----------------------------------
   トップページ - ニュース
  ----------------------------------- */
  .t_news {
    /* background-image: url(../image/bg/pc/bg_common.jpg); */
  }
  .t_news .inner {
    /* padding-top: 100px; */
    /* padding-bottom: 200px; */
  }
  .t_news ul {
    padding: 0 40px;
    box-sizing: border-box;
  }
  .t_news ul li a {
    display: flex;
    align-items: flex-start;
  }
  .t_news li {
    width: 100%;
  }
  .t_news .thumbnail {
    width: 35%;
    margin-bottom: 0px;
  }
  .t_news .content {
    width: 65%;
    padding-left: 40px;
  }
  .t_news .content h3 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .t_news .content .text {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .t_news .content time {
    font-size: 1.4rem;
  }
  #t_event .content time {
    font-size: 1.6rem;
  }

  .t_news_p2 ul li a {
    display: block;
    /* align-items: flex-start; */
  }
  .t_news_p2 .thumbnail {
    width: 100%;
    margin-bottom: 20px;
  }
  .t_news_p2 .content {
    width: 100%;
    padding-left: 0px;
  }
  .t_news_p2 .content h3 {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 12px;
    transition: .3s;
  }
  .t_news_p2 .content .text {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .t_news_p2 .content time {
    font-size: 1.2rem;
  }

  .t_news_p2 {
    /* background-image: url(../image/bg/pc/bg_common.jpg); */
  }
  .t_news_p2 .inner {
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .t_news_p2 ul {
    padding: 0 40px;
    box-sizing: border-box;
  }
  .t_news_p2 li {
    width: 23%!important;
  }
  .t_news_p2 ul li a {
    /* display: flex;
    align-items: flex-start; */
  }
  .t_news_p2 .content h3 {
    /* font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 20px;
    padding-bottom: 20px; */
  }


  /* -----------------------------------
   トップページ - SPONSOR
  ----------------------------------- */
  .sponsor_list ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sponsor_list li {
    margin-right: inherit;
    margin-left: inherit;
  }
  .sponsor_list li:not(:last-child) img {
    margin-bottom: 0px;
  }
  .sponsor_list .size_a {
    width: 10%;
  }
  .sponsor_list .size_b {
    width: 9%;
  }

}

/****************************** 1400px ******************************/
@media (min-width: 1400px){

  /* -----------------------------------
   トップページ - メインビジュアル
  ----------------------------------- */
  .t_tv .item_01 .credit img {
    max-width: 750px;
    /* top: 30%; */
  }
  .t_tv .credit .top {
    max-width: 400px;
  }
  .t_tv .credit .bottom {
    max-width: 400px;
  }

  /* -----------------------------------
   トップページ - アバウト
  ----------------------------------- */

  /* -----------------------------------
   トップページ - ニュース
  ----------------------------------- */
  .t_news .content p {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }

}
