@charset "UTF-8";

/* *******************************************************************
 festa2023.css
******************************************************************* */

/* TOC
---------------------------------------------
  Chapter01 : レイアウト
      Chapter01_01 : タイトル
      Chapter01_02 : テーブル
      Chapter01_03 : ボタン
      Chapter01_04 : ボックス
      Chapter01_05 : カラー 
  Chapter02 : 特設サイト
      Chapter02_01 : ヒーロー
      Chapter02_02 : ナビゲーション
      Chapter02_03 : ABOUTエリア
      Chapter02_04 : お知らせブロック
      Chapter02_05 : LIVE配信 ブロック
      Chapter02_06 : プレゼントブロック
      Chapter02_07 : コンテンツブロック
      Chapter02_08 : SNS
      Chapter02_09 : スポンサー
      Chapter02_10 : フッター
  Chapter03 : LIVE詳細
  Chapter04 : 
  Chapter05 : 
  Chapter06 : 
  Chapter07 : 
  Chapter08 : 
  Chapter09 : 
  Chapter10 : 
---------------------------------------------
*/

/*---------------------------------------------------
  Chapter01 : レイアウト
---------------------------------------------------*/

body {
  position: relative;
  z-index: 0;
}

body:before {
}

@media only screen and (max-width: 767px) {
  /*
    body:before {
        background: url(../img/festa_2020/bg-ground.jpg) center no-repeat ;
    }
    */
}

/* head **/
#lp_head {
  display: none;
}

/* header **/

.header-main .social a {
  color: #333;
}

/* continer **/
.container {
  width: 100%;
}

/* font */
.mplus-r {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* ボタン */
a {
  transition: 0.3s;
}
.button {
  height: 3.6em;
}
a:hover img {
  opacity: 0.8;
  transition-duration: 0.3s;
}

/* ライン */
.line {
  border-bottom: 2px dashed #d3d3d3;
  width: 95%;
  display: block;
  margin: 20px auto;
  text-align: center;
}

.bnr.box {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .section {
    margin: 0;
    padding: 0;
  }

  .line {
    width: 90%;
  }

  .bnr.box {
    padding: 3%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .container {
    width: 100%;
    height: 45px;
  }
}

/*   Chapter01_01 : タイトル
-----------------------------------------*/
h1.title {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

h3.main-title {
  margin: 30px 0;
}

h3.MainTitle {
  margin: -30px 0 0;
}

h3.main-title img {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .title.is-2 {
    font-size: 1.6rem;
  }

  h3.main-title {
    margin: 5% 0 8%;
    padding: 10% 0 0;
  }

  h3.MainTitle {
    margin: 8% 0 0;
  }
}

@media screen and (max-width: 320px) {
  .title.is-2 {
    font-size: 1.4rem;
  }

  p.title.is-4 {
    font-size: 1rem;
  }

  h3.main-title {
    margin: 30px 0;
  }

  h3.MainTitle {
    margin: 8% 0 0;
  }

  h3.main-title img {
    width: 80%;
  }
}

/*   Chapter01_02 : テーブル
-----------------------------------------*/
.table {
  background-color: inherit;
}

.table td {
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  display: block;
  text-align: center;
  border: none;
}

@media screen and (min-width: 599px) {
  .table td {
    display: inline-block;
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .table td:nth-child(odd) {
    width: 180px;
  }

  .table.is-fullwidth {
    width: 786px;
    margin: 0 auto 2rem auto;
  }
}

@media screen and (max-width: 767px) {
  .table td:nth-child(odd) {
    padding-bottom: 0;
  }

  .table td:nth-child(even) {
    padding-top: 0;
    padding-bottom: 1em;
  }
}

/*   Chapter01_03 : ボタン
-----------------------------------------*/

.btns {
  display: inline-block;
  padding: 0.5em 4em;
  text-decoration: none;
  background: #7ecdf4; /*ボタン色*/
  color: #fff;
  box-shadow: 0px 4px 0px 0px #4281a0; /*影を小さく*/
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
}

.btns:hover {
  color: #fff;
  opacity: 0.8;
}

.fb {
  font-weight: bold;
}

/* .btns:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
} */

@media screen and (max-width: 767px) {
  .btns {
    font-size: 18px;
  }
}

/*   Chapter01_04 : ボックス
-----------------------------------------*/
.section .box {
  padding: 40px 80px;
  border-radius: 0;
  border: none;
  border-radius: 30px;
  box-shadow: 9px 9px 15px 1px rgb(0 0 0 / 18%);
}

section .FullWidth {
  padding: 0 140px 40px;
  border-radius: 0;
  border: none;
}

section#sponsor {
  text-align: center;
  background: #fff;
}

section#sns {
  text-align: center;
  background: #f9f9ec;
}

#contents .contents,
#present .present.box,
#sns .sns.box {
  padding: 0 40px 80px 40px;
}

/* リボン */
#contents .contents::before {
  content: url(../images/content_ribbon.png);
  padding: 0 75% 0 0;
}

#present .present::before {
  content: url(../images/present_ribbon.png);
  padding: 0 75% 0 0;
}

/* #news .news::before {
    content: url(../images/news_ribbon.png);
    padding: 0 90% 0 0;
} */

#sns .sns::before {
  content: url(../images/sns_ribbon.png);
  padding: 0 90% 0 0;
}

#sponsor .sponsor::before {
  content: url(../images/sponsor_ribbon.png);
  padding: 0 90% 0 0;
}

@media only screen and (max-width: 767px) {
  .section .box {
    padding: 40px 25px;
  }

  section .FullWidth {
    padding: 0 30px 50px;
  }

  section#lives {
    padding: 10% 5% 0;
  }

  #contents .contents::before {
    content: url(../images/content_ribbon-sp.png);
    padding: 0;
  }

  #present .present::before {
    content: url(../images/present_ribbon-sp.png);
    padding: 0;
  }

  /* #news .news::before {
        content: url(../images/news_ribbon-sp.png);
        padding: 0;
    } */

  #sns .sns::before {
    content: url(../images/sns_ribbon-sp.png);
    padding: 0;
  }

  #sponsor .sponsor::before {
    content: url(../images/sponsor_ribbon-sp.png);
    padding: 0;
  }

  #contents .contents,
  #present .present.box,
  #sns .sns.box,
  #news .news.box {
    padding: 0 40px 40px 40px;
  }
}

/*   Chapter01_05 : カラー
-----------------------------------------*/
.scm {
  /* background: repeating-linear-gradient(-45deg, #fa73ac, #fb96c1 2px, #fb96c1 2px, #fa73ac 6px); */
  background-image: linear-gradient(90deg, #96defd, #edb5d2);
}

.scm .more a {
  background: #fa73ac;
}

.insta_live {
  background: repeating-linear-gradient(-45deg, #fabf73, #fbcf90 2px, #fbcf90 2px, #fabf73 6px);
}

.insta_live .more a {
  background: #fabf73;
}
.taiken {
  background: repeating-linear-gradient(-45deg, #4ae2a4, #77e9bb 2px, #77e9bb 2px, #4ae2a4 6px);
}
.taiken .more a {
  background: #4ae2a4;
}
.company {
  background: repeating-linear-gradient(-45deg, #73ccfa, #96d9fb 2px, #96d9fb 2px, #73ccfa 6px);
}
.company .more a {
  background: #73ccfa;
}
.lottery {
  background: repeating-linear-gradient(-45deg, #ff0000, #ff7878 2px, #ff7878 2px, #ff0000 6px);
}
.lottery .more a {
  background: #ff0000;
}

/*---------------------------------------------------
  Chapter02 : 特設サイトメイン
---------------------------------------------------*/

main {
  width: 100%;
  background-image: url(../images/bg.jpg);
  background-repeat: repeat-y;
  background-size: contain;
  padding: 0 0 10%;
}

/* プレゼントページ */
main#PresentLP {
  width: 100%;
  background-image: none;
  background-repeat: repeat-y;
  background-size: contain;
  padding: 0;
}

#PresentLP #PresentPage {
  padding: 0;
}

/*   Chapter02_01 : ヒーロー
-----------------------------------------*/
#kv {
  background: url(../images/SOF_202507_KV_PC.jpg) bottom center no-repeat;
  background-size: cover;
  margin: 0;
}

#kv:after {
  content: "";
  width: 100%;
  display: block;
  clear: both;
}

@media only screen and (max-width: 990px) {
  #kv {
    /* position: absolute; */
    padding-top: 0;
    position: relative;
    z-index: 999;
  }
}

.hero-body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-body .container {
  max-width: 990px;
  padding-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
  .hero-body {
    padding: 0;
  }
  .hero-body .col-xs-4 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .hero-body .container {
    padding-bottom: 2rem;
  }

  #kv {
    /* position: absolute; */
    padding-top: 0;
    position: relative;
    z-index: 999;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .hero-body {
    height: 100vh;
  }
  /* IE11 */
}

.hero-logo {
  position: relative;
  text-align: center;
}

.kv-logo {
  width: 100%;
  margin-bottom: 0;
}

.sp {
  display: none;
}

@media only screen and (max-width: 990px) {
  .kv-logo {
    margin-top: 0;
    margin-bottom: 0;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*   Chapter02_02 : ナビゲーション
-----------------------------------------*/
header.header-v2 .main-menu {
  display: none;
  position: relative;
}

header#header {
  width: 100%;
}

header.header-v2 {
  margin-bottom: 0;
}

#header {
  /* display: inline-block; */
  text-align: center;
  /* height: 55px; */
  width: auto;
  border-left: solid 3px #60c1d0;
}

#lp_Navi .header-main {
  background-color: #60c1d0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#lp_Navi .LiveHeader {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  /* background: repeating-linear-gradient(-45deg, #fa73ac, #fb96c1 2px, #fb96c1 2px, #fa73ac 6px); */
  background-image: linear-gradient(90deg, #96defd, #edb5d2);
}

#LiveHead .LiveHeader {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding: 2%;
  /* background: repeating-linear-gradient(-45deg, #fa73ac, #fb96c1 2px, #fb96c1 2px, #fa73ac 6px); */
  border-radius: 30px 30px 0 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background-image: linear-gradient(90deg, #96defd, #edb5d2);
}

.container {
  width: 100%;
}

.g-nav {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background-color: #028DDB;
}

.g-nav li {
  display: inline-block;
  margin-right: 20px;
}

.g-nav li a {
  color: #fff;
  font-size: 24px;
  line-height: 60px;
}

.g-nav li a::after {
  content: "｜";
  padding: 0 0 0 20px;
  height: 1px;
}

.g-nav li a::after:last-child {
  content: "";
  padding: 0 0 0 20px;
  height: 1px;
}

#nav li {
  display: inline-block;
  text-align: center;
  height: 55px;
  width: auto;
  border-left: solid 3px #ea6189;
}

#nav li:last-child {
  border-right: solid 3px #ea6189;
}

.FestaLogoBox {
  padding: 15px 0;
}

@media only screen and (max-width: 1000px) {
  .g-nav li {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  ul.g-nav {
    display: none;
  }

  header#header {
    display: none;
    width: 100%;
  }

  #nav li {
    width: 30%;
    vertical-align: middle;
    height: auto;
    margin-bottom: 20px;
  }
  #nav li img {
    width: auto;
    height: 35px;
    vertical-align: middle;
  }
  #nav li:nth-child(3) {
    border-right: solid 3px #ea6189;
  }

  header .block-logo img {
    width: 80%;
  }

  #lp_head .header-main {
    display: none;
  }

  #lp_Navi .header-main {
    height: 45px;
  }
}

.wave {
  height: 150px;
  overflow: hidden;
}
.wave svg {
  height: 100%;
  width: 100%;
}
.wave.bottom svg {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}
.wave {
  margin-top: 0px;
  margin-bottom: -5px;
}
.wave.bottom {
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  .wave {
    height: 100px;
    overflow: hidden;
  }
}

/*   Chapter02_03 : ABOUTエリア
-----------------------------------------*/
.has-text-centered {
  text-align: center !important;
  padding: 3rem 2rem;
}

section .box {
  padding: 40px 80px;
  border-radius: 0;
  border: none;
  border-radius: 30px;
  box-shadow: 9px 9px 15px 1px rgb(0 0 0 / 18%);
}

#about .about-container {
  background: #fff;
}

#about .AboutTitle {
  margin: 0 0 5%;
}

#about .about-area {
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
  padding: 10px;
}

#about .about-area h3 {
  margin-bottom: 4rem;
}

#about .AboutText {
  margin: 30px 0 20px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
}

#about .AboutSubText {
  margin: 15px 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

#about .about-text {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}

/* ゲスト */
.GuestList {
  display: flex;
  justify-content: center;
}

.GuestList img {
  width: 25%;
}

/* section */
@media screen and (min-width: 1000px) {
  .section,
  section#about {
    width: 100%;
    padding: 5rem 0;
    margin: 0 auto;
  }

  section .box {
    padding: 40px 20px;
  }

  section#contents {
    width: 980px;
    padding: 0 0 5rem;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  section#about {
    padding: 10% 5%;
  }

  section .box {
    padding: 40px 20px;
  }

  #about .AboutText {
    font-size: 20px;
  }

  #about .AboutSubText {
    font-size: 16px;
  }

  .GuestList {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 0 5%;
  }

  .GuestList img {
    width: 50%;
  }
}

/*   Chapter02_04 : お知らせブロック
-----------------------------------------*/
#news .news-area {
  padding: 20px;
}

/* #news .news-area ul{
    padding: 3% 15%;
} */

#news li {
  display: flex;
  padding: 20px 0;
  text-align: left;
  border-bottom: 1px #cccccc dashed;
}

#news li:first-child {
  border-top: 1px #cccccc dashed;
}

#news .NewsDays {
  color: #ec618a;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  #news li span {
    display: block;
  }

  #news li {
    flex-direction: column;
  }

  #news .news-area {
    padding: 0;
  }
}

/*   Chapter02_05 : LIVE配信 ブロック
-----------------------------------------*/

/*アンカーリンク設定*/
.ScrollPoint {
  scroll-margin-top: 100px;
  margin-bottom: 50px;
}

.livebtn-area {
  margin: 0 0 20px;
}

.livebtn {
  position: absolute;
  top: 78%;
  left: 49%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 90px;
  background-color: #fa73ac;
  box-shadow: unset;
}

.btn-area.livebtn:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  padding: 0 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

/* 見逃し配信タイトル */
.liveListTitle {
  margin: 30px 0 0;
  padding: 20px;
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  border-radius: 20px 20px 0 0;
  background: #f989b7;
}

.live-desc {
  font-size: 25px;
  margin-bottom: 1.5rem;
}

/* 見逃し配信テキスト */
.liveListTextBox {
  margin: 0;
  padding: 10px 50px;
  border-radius: 0 0 20px 20px;
  background: #fff;
  text-align: left;
}

.liveListTextBox .line {
  border-bottom: 2px dashed #d3d3d3;
  width: 100%;
  display: block;
  margin: 20px auto;
  text-align: center;
}

p.liveListText {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
  text-align: left;
}

.livePresentText {
  position: relative;
}

.livePresentText::after {
  content: "";
  width: 110px;
  height: 4px;
  display: inline-block;
  background-color: #d3d3d3;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% + 138px);
}

.liveListPresentBox {
  display: flex;
  align-items: center;
}

.liveListPresentBox p {
  width: 70%;
}

.liveListPresentBox img {
  width: 30%;
}

/* 見逃し配信リンク */
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 0;
}

.liveList01 {
}

.liveList01 iframe {
  border: 0;
  width: 560px;
  height: 315px;
}

/* ライブ配信バナー */
.live-bg {
  margin: 0 0 3%;
}

.liveListTextBox p {
  margin: 2% 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* You Tubeボックス */
.movie-area {
  padding: 4% 4% 0.5%;
  background: #fff;
}

div#LiveHead {
  margin: 0 0 5%;
}

@media only screen and (max-width: 768px) {
  .live-bg {
    /*SP TOPライブバナーサイズ*/
    max-width: 100%;
  }

  /*見逃し配信*/
  div#LiveHead {
    margin: 0 0 10%;
  }

  /* 見逃しボタン */
  .livebtn {
    top: 72%;
    width: 45%;
    font-size: 14px;
  }

  .live-desc {
    font-size: 20px;
    margin-bottom: 1.5rem;
    margin: 20px;
  }

  .liveListTitle {
    margin: 30px 0 0;
    padding: 10px;
    font-size: 18px;
    line-height: 1.5;
  }

  p.liveListText {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
  }

  .liveListPresentBox {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }

  .liveListPresentBox p {
    width: 100%;
  }

  .liveListPresentBox img {
    width: 80%;
  }

  /*ライブコンテンツKV設定*/
  img.live-img {
    max-width: 100% !important;
  }
}

/*   Chapter02_06 : プレゼントブロック
-----------------------------------------*/
#present .present-area {
  padding: 20px;
}

#present .present-list li {
  display: inline-block;
  text-align: left;
}

.present-lottery {
  padding: 2rem 2rem 1rem;
}

.BtnText {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: bold;
}

.PresentMainTitle {
  margin: 30px 0;
  font-size: 22px;
  font-weight: bold;
}

.PresentMethod {
  width: 75%;
  margin: 4% auto;
  font-size: 23px;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
}

.PresentMethod li {
  text-indent: -1em;
  padding-left: 1em;
}

/* 応募ボタン */
.present-lottery .btn {
  padding: 0;
}

.present-lottery .btns {
  border-radius: 90px;
  box-shadow: unset;
  background: #fa73ac;
}

.FormsInfoBox ul {
  text-align: left;
}

.FormsTitle {
  margin: 0 auto 5%;
  font-size: 25px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  #present .present-list li {
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
  }

  .present-lottery {
    padding: 1.5rem 20px;
  }

  .btns {
    padding: 0.5em 2em;
  }

  .PresentMainTitle {
    font-size: 18px;
  }

  .BtnText {
    font-size: 15px;
  }

  .PresentMethod {
    width: 100%;
    margin: 5% auto 0;
    font-size: 15px;
  }
}

/*   Chapter02_07 : コンテンツブロック
-----------------------------------------*/
.contents .contents-area {
  text-align: center;
}

.contents-bg {
  padding: 5px;
  margin-left: 5px;
  width: calc(50% - 10px);
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: top;
  position: relative;
}

.contents.box {
  background: #f9f9ec;
}

.contents.box h3 {
  text-align: center;
}

.contents.box p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.contents.box .contents-bg a {
  display: block;
}

.content-main {
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
  display: block;
}

.content-main img {
  margin: 0 auto;
}

.content-wrapper {
  padding: 10px;
  padding-bottom: 0;
  background: #fff;
  min-height: 500px;
  position: relative;
}

.content-img {
  margin: 5% 0;
  text-align: center;
}

.content-img img {
  width: 100%;
  height: auto;
}

.ContentTile {
  padding: 0 0.5em;
  border-left: solid 5px #f0c8de;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
  background: transparent;
}

.ContentSubTile {
  font-size: 90%;
  color: #999999;
}

.content-body {
  margin-bottom: 0px;
  padding-bottom: 30px;
}

.contents-bg .more {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.contents-bg .more a {
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px 4px 0 0;
}

.ContentsText {
  margin: 30px 0;
  font-size: 22px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .contents-area.wow.fadeIn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .contents-bg {
    width: 100%;
  }
  .contents.box h3 {
    text-align: center;
  }

  .content-main img {
    width: 50%;
    margin: 0 auto;
  }

  .box h3 img {
    width: 100%;
    margin: 0 auto;
  }

  .section {
    padding: 10% 5%;
  }

  .ContentTile {
    font-size: 20px;
  }
}

/*   Chapter02_08 : SNS
-----------------------------------------*/
#sns .sns-container {
  background: #fff;
  padding: 50px 0 100px;
  margin: 6rem 0;
}

#sns .sns-area {
  width: 100%;
  max-width: 862px;
  margin: 0 auto 20px;
  padding: 10px;
}

.web-contact .sub-title {
  padding-top: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

h3.SNSTitle {
  padding: 20px 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
}

.btn-area {
  margin: 50px 0 20px;
}

.main-btn {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  font-size: 24px;
  color: #fff;
  /* box-shadow: 0px 5px #ffcbe1; */
  border-radius: 90px;
  background-color: #fa73ac;
}

@media only screen and (max-width: 767px) {
  .main-btn {
    max-width: 100%;
    width: 90%;
    font-size: 18px;
  }

  h3.SNSTitle {
    padding: 20px 0;
    font-size: 20px;
  }
}

#sns .sns-container {
  background: #fff;
}
#sns .sns-area {
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
  padding: 10px;
}
#sns .sns-area h3 {
  margin-bottom: 4rem;
}

#sns .sns-text {
  margin: 2% 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.sns-btns {
  margin-top: 3rem;
}

.sns-btns .social {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.sns-btns .social li {
  width: 12%;
}

/* top *********************/
.kv-parts {
  width: 25%;
  display: inline-block;
  vertical-align: top;
}
.kv-parts.how_to_enjoy_bnr {
  width: 45%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .sns-btns .social li {
    width: 20%;
    margin: 0 2%;
  }

  .kv-parts {
    width: 48%;
    display: inline-block;
    vertical-align: top;
  }

  .kv-parts.how_to_enjoy_bnr {
    margin-top: 15px;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
  .kv-parts.top06 {
    margin-left: 20px;
  }
}

/* TOP SP時のサイズ調整 */
.kv-parts.pcNon {
  display: none;
}
.kv-parts.spNon {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .kv-parts.pcNon {
    display: block;
  }
  .kv-parts.spNon {
    display: none;
  }
}

/*   Chapter02_09 : スポンサー
-----------------------------------------*/
.SponsorBox {
  display: flex;
}

.SponsorLogoBox {
  display: flex;
}

.bnr-area-gold {
  padding: 35px 0 0;
  text-align: center;
}

.bnr-area-silver,
.bnr-area-bronze {
  padding: 25px 0;
  text-align: center;
}

h4.SponsorTitle {
  margin: 0 0 30px;
  padding: 0 0 15px;
  font-size: 20px;
}

.SponsorTitle.Gold {
  border-bottom: #be963d solid 4px;
}

.SponsorTitle.Silver {
  border-bottom: #d7d8d8 solid 4px;
}

.SponsorLogoBox {
  width: 100%;
  margin: 0 auto;
}

.ThermosLogo {
  width: 75%;
}

.DynabookLogo {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .SponsorBox {
    display: flex;
    flex-direction: column;
  }

  .SponsorLogoBox {
    display: flex;
    flex-direction: column;
  }

  .SponsorLogoBox,
  .SponsorLogoBox {
    width: 100%;
  }

  .ThermosLogo {
    width: 60%;
  }

  .DynabookLogo {
    width: 90%;
  }
}

/*   Chapter02_10 : フッター
-----------------------------------------*/
.footer-top {
  background-color: #ed8492;
  padding: 10px 0;
  text-align: center;
}

.footer-top a {
  color: #fff;
  text-decoration: underline;
}

/*---------------------------------------------------
  Chapter03 : LIVE詳細
---------------------------------------------------*/

/* レイアウト */
.detail-days .contents-bg {
  width: 100%;
  display: block;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  border-radius: 30px;
}

.LiveContent {
  padding: 10px 90px;
  padding-bottom: 0;
  background: #fff;
  min-height: 500px;
  position: relative;
  border-radius: 0 0 30px 30px;
  box-shadow: 9px 9px 15px 1px rgb(0 0 0 / 18%);
}

/* サブタイトル */
.LiveInfoTitle {
  margin: 5% 0 2%;
  padding: 0 0 0 5px;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 600;
  color: #333;
  background: 0 0;
}

.LiveInfoTitle span {
  vertical-align: middle;
}

.detail-days .content-main {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* リンクテキスト */
.ContentsInfoBox {
  margin: 30px 0;
  text-align: center;
}

.ContentsInfoBox a {
  padding: 30px 0;
}

/* TOPへボタン */
.detail-btn {
  text-align: center;
  margin: 2.5rem 0;
}

.detail-btn .btn a {
  color: #fff;
  border-radius: 90px;
  box-shadow: unset;
  background: #fa73ac;
}

/* グラデーションライン */
.Gradationline {
  display: block;
  margin: 0 auto;
}

.day-bg {
  width: calc(100% / 3 - 10px);
  padding: 5px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
}

.days-content {
  margin-bottom: 5rem;
}

.day-main {
  margin: 5px 0;
}
.day-main img {
  display: block;
  margin: 0 auto;
}
.days-warp {
  margin-bottom: 2rem;
}

.day-wrapper {
  background: #fff;
  text-align: left;
  padding: 5px;
}
.day-tile {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.day-thum {
  display: inline-block;
  vertical-align: top;
}

/* 募集要項 */
.day-schedule {
  display: inline-block;
}

.day-schedule li {
  font-size: 15px;
}

.day-schedule li span:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  vertical-align: middle;
}

.day-schedule li.zoom span:before {
  background-image: url(../images/icon-zoom.png);
}

.day-schedule li.time span:before {
  background-image: url(../images/icon-time.png);
}

.day-schedule li.yoyaku span:before {
  background-image: url(../images/icon-yoyaku.png);
}

.ContentBody {
  padding: 1em 0 2em !important;
}

.ContentBody p {
  margin: 2% 0;
  line-height: 1.8;
}

.ContentBody .InfoText {
  margin: 5% 0;
}

.ContentBody .InfoText p {
  margin: 0;
  line-height: 1.8;
}

.ContentBody .ScheduleText {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  #days.section {
    padding: 3rem 0;
  }

  .days-content h3 {
    text-align: center;
    padding: 0 3.25rem;
  }

  .LiveContent {
    padding: 10px 15px;
  }

  .ContentBody p {
    font-size: 14px;
    margin: 5% 0;
    line-height: 1.8;
  }
  .detail-btn {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .liveListTextBox {
    padding: 15px 20px;
  }

  #LiveHead .LiveHeader {
    font-size: 1rem;
    line-height: 1.5;
  }

  .liveListTextBox p {
    margin: 5% 0;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .LiveInfoTitle {
    margin: 20px 0 15px;
    font-size: 18px;
  }

  .detail-days .content-main {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .ContentBody .ScheduleText {
    font-size: 15px;
  }
}

/*---------------------------------------------------
  Chapter04 : プレゼント詳細ページ
---------------------------------------------------*/
#PresentLP #PresentPage {
  padding: 0;
}

.PresentWarp {
  padding: 0;
}

.detail-desc {
  margin: 0 10%;
  text-align: left;
}

.PresentTitle {
  margin-bottom: 10px;
  padding: 0 2rem;
  text-align: center !important;
  font-size: 35px;
  font-weight: bold;
}

.PresentName {
  text-align: center !important;
  padding: 1rem 2rem;
}

.PresentWarp .PresentPageTitle {
  text-align: left;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 2rem 2rem 0rem;
}

/* プレゼントフォーム */
.field.field--name-field-eventorderform.field--type-webform.field--label-hidden.field__item {
  width: 65%;
  margin: 0 auto;
  background-color: transparent;
}

.webform-ajax-form-wrapper:before {
  content: "応募フォーム";
  display: block;
  position: relative;
  padding: 0.5em 0.25em 0.5em 1.7em;
  margin-top: 0;
  margin-bottom: 3em;
  font-size: 18px;
  font-weight: bold;
  background-color: #f5f5f5;
  border-left: solid 10px #ff8896;
}

div#webform-submission-di8huisakamamaonrainfu-esuta-ch-form-ajax {
}

/* プレゼントページ */
main#PresentLP {
  /* width: 100%;
    background-image: url(../images/bg.jpg);
    background-repeat: repeat-y;
    background-size: contain;
    padding: 0; */
}

#PresentLP #PresentPage,
#PresentLP .FormsInfoBox {
  padding: 0 20px !important;
}

#PresentLP .PresentWarp {
  padding: 80px 20px;
  border-top: 2px solid #d5d5d5;
}
#PresentLP .PresentWarp:first-of-type {
  border-top: none;
}
#PresentLP .detail-desc {
  margin: 0;
}
#PresentLP .FormsInfoBox {
  border-top: 2px solid #d5d5d5;
  border-bottom: 2px solid #d5d5d5;
  padding: 80px 20px 0 !important;
}
.webform-ajax-form-wrapper {
  padding-bottom: 80px;
}

.webform-ajax-form-wrapper .form-item-agree {
  padding-top: 50px !important;
}

@media only screen and (max-width: 767px) {
  section#PresentPage {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  #PresentLP .lives-warp h2 {
    font-size: 22px !important;
  }
  .PresentWarp img {
    width: 100%;
  }
  #PresentLP .PresentWarp {
    padding: 50px 0;
  }
  #PresentLP .PresentWarp:first-of-type {
    padding: 0 0 20px;
  }
  #PresentLP .FormsInfoBox {
    padding-top: 50px !important;
    margin-bottom: 50px;
  }
  .webform-ajax-form-wrapper {
    padding-bottom: 50px;
  }
  .detail-desc {
    margin: 0;
    text-align: left;
  }

  .PresentTitle {
    margin-bottom: 10px;
    padding: 0;
  }

  .field.field--name-field-eventorderform.field--type-webform.field--label-hidden.field__item {
    width: 100%;
    padding: 0 10%;
    background-color: transparent;
  }

  button,
  input,
  select,
  textarea {
    width: 100%;
    margin: 0;
  }
}

/* detail  ***************************************************************************/
#detail {
}

#detail {
  margin-top: 60px;
}

.fes-container {
  background: #fff;
  padding: 0;
  padding-bottom: 0;
}

.fes-warp {
  padding: 1.25rem;
}
.detail-logo {
  text-align: left;
  max-width: 350px;
}

.fes-container hr {
  border-bottom: dotted #333 1px;
}

h3.detail-title {
  text-align: left;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .fes-container {
  }
  .detail-logo {
    text-align: left;
    max-width: 200px;
  }

  h3.detail-title {
    padding: 0;
    font-weight: bold;
    margin-bottom: 10px;
  }
}

/* detail-days  ********************/

.detail-days {
  /*margin-top: 60px;*/
}

.detail-days .content-wrapper {
  text-align: left;
  padding: 2rem;
}

.detail-days .content-img {
  text-align: center;
}
.detail-days .content-img img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

.detail-days .content-time {
  margin: 2% auto 5%;
  padding: 0;
  text-align: center;
}

.detail-days .content-time p {
  display: inline;
  padding: 0 0 0.5%;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 5px;
  border-bottom: solid 5px #eec8dd;
}

.detail-days .detail-days-btn {
  margin: 2rem;
  text-align: center;
}

.detail-days .movie-area {
  max-width: 600px;
  margin: 1.5rem auto;
}

.detail-days .insta_live .btns {
  background: #fd9a1b; /*ボタン色*/
  box-shadow: 0px 4px 0px 0px #9c5d0d; /*影を小さく*/
}
.detail-days .insta_live .btns:after {
  content: "";
}

.detail-days .insta_live .btns:after {
  content: "";
  background-image: url(../images/insta.png);
  display: inline-block;
  width: 44px;
  height: 44px;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
}

.detail-days .taiken .btns {
  background: #3fc48e; /*ボタン色*/
  box-shadow: 0px 4px 0px 0px #106040; /*影を小さく*/
}

@media only screen and (max-width: 767px) {
  .detail-days .contents-bg {
    width: 100%;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0;
  }

  .detail-days .content-wrapper {
    text-align: left;
    padding: 1.25rem;
  }
  .detail-days .detail-days-btn {
    margin: 0;
    width: 100%;
  }
  .detail-days .insta_live .btns {
    padding: 0.5em 2em;
  }

  .detail-days .content-time {
    margin: 2% auto 10%;
  }

  .detail-days .content-time p {
    font-size: 20px;
  }
}

/* detail-live  ********************/

/*---------------------------------------------------
  Chapter00 : LAYOUT
---------------------------------------------------*/

/* バナー ******************************************/

/*.bnr.box h3{
	padding: 1.25rem;
}*/
.bnr-area-info {
  background: #fff;
  margin-bottom: 2rem;
  border: solid 2px #028DDB;
}

.bnr-area {
  background: #fff;
  border: solid 2px;
  margin-bottom: 2rem;
}

.bnr-area h4.sponsor {
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  border-bottom: solid 2px #000;
  text-align: left;
  margin-bottom: 0.5rem;
  padding: 1rem 1rem;
}

.bnr-area-info {
  padding: 10px;
  margin-bottom: 2rem;
}

.bnr-area-gold {
  padding: 10px;
  text-align: center;
}

.bnr-area-silver,
.bnr-area-bronze {
  width: 50%;
  padding: 10px;
  text-align: center;
}

.bnr h5 {
  margin-bottom: 10px;
}

.bnr-area-bronze {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: top;
}

.bnr {
  margin-bottom: 0.5rem;
}

.bnr-area-info .bnr {
  width: calc(50% - 10px);
  display: inline-block;
}

.bnr-area-gold .bnr {
  width: calc(50% - 10px);
  display: inline-block;
}

.bnr-area-silver .bnr {
  width: 100%;
}

.bnr-area-bronze .bnr {
  width: calc(50% - 10px);
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .bnr-area-silver,
  .bnr-area-bronze {
    width: 100%;
    display: inline-block;
    vertical-align: top;
  }
  .bnr-area-info .bnr {
    width: calc(100% - 10px);
    display: inline-block;
  }
  .bnr-area-gold .bnr {
    width: calc(100% - 10px);
    display: inline-block;
  }
  .bnr-area-silver .bnr {
    width: calc(100% - 10px);
    display: inline-block;
  }
  .bnr-area-bronze .bnr {
    width: calc(50% - 10px);
    display: inline-block;
  }

  .bnr-area-gold,
  .bnr-area-silver,
  .bnr-area-bronze {
    margin: 10% 0 0;
  }

  .bnr-area-gold img {
    width: 80%;
  }
}

/* 固定チケット ****************************************************/
.fixed {
  position: fixed; /* 要素の位置を固定する */
  bottom: 0; /* 基準の位置を画面の一番上に指定する */
  right: 80px; /* 基準の位置を画面の一番左に指定する */
  margin: 0; /* 要素の余白を０にする */
  padding: 10px; /* 要素内側の余白を指定する */
  width: 100%; /* 幅を指定する */
  text-align: right;
  z-index: 20;
}
.fixed:after {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
}
.fixed a img {
  width: 160px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .fixed {
    right: 20px;
  }
  .fixed a img {
    width: 100px;
    margin-bottom: 10px;
  }
}

/* modal */
.modal-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
  margin-top: 80px;
}

.modal-content {
  width: 980px;
  margin: inherit !important;
}

@media screen and (max-width: 767px) {
  .modal-content {
    width: 92%;
  }
}

.modal-inner {
  background: #fff;
  padding: 2rem 1rem;
}

@media screen and (min-width: 599px) {
  .modal-inner {
    padding: 6rem 8rem;
  }
}

.modal-inner h3 {
  color: #fff;
  font-weight: bold;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.modal-inner h3.ttl-st {
  background: #ff5353;
}

.modal-inner h3.ttl-school {
  background: #7fb7df;
}

.modal-inner h3.ttl-kirin {
  background: #f2c53d;
}

.modal-inner h3.ttl-msad {
  background: #f2c53d;
}

.modal-inner h3.ttl-other {
  background: #26bf6c;
}

.modal-inner h3.ttl-booth {
  background: #ff7f7f;
}

.modal-inner {
  border-radius: 5px;
}

.modal-inner p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 599px) {
  .modal-inner p:last-of-type {
    margin-bottom: 3rem;
  }
}

.modal-inner .column {
  padding: 0.2rem 0.5rem;
}

/* 各種予約 */
@media screen and (max-width: 1000px) {
  .reservation-btn-box {
    width: 100%;
    margin: 0;
  }
}

#reservation .control {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #reservation .column:first-of-type {
    margin: 0 1rem 0 0;
  }

  #reservation .column:nth-of-type(2) {
    margin: 0 1rem 0 1rem;
  }

  #reservation .column:last-of-type {
    margin: 0 0 0 1rem;
  }
}

#reservation .button.is-rounded {
  position: relative;
  /*left: 2rem;*/
}

@media screen and (max-width: 767px) {
  #reservation .button.is-rounded {
    left: 0;
  }
}

#reservation i {
  color: #fe7f2d;
}

@media screen and (max-width: 1000px) {
  #reservation i {
    font-size: 1.5rem;
  }
}

#reservation .festa-btn-03:hover i,
#reservation .festa-btn-03:hover p {
  color: #b5b5b5;
}

@media screen and (min-width: 1000px) {
  #reservation i {
    font-size: 4.5em;
  }
}

@media screen and (max-width: 1000px) {
  #reservation span.is-size-5-tablet {
    font-size: 1rem !important;
  }
}

#reservation p.smama-event {
  position: relative;
}

#reservation p.smama-event:before {
  content: "";
  background: url(../img/festa/i-stadium.png) no-repeat;
  width: 81px;
  height: 81px;
  position: absolute;
  top: -205%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-size: 100%;
}

.smama-event {
  margin-top: 4.2rem;
}

@media screen and (min-width: 768px) {
  #reservation .festa-btn-03:hover p.smama-event:before {
    background: url(../img/festa/i-stadium-hover.png) no-repeat;
    background-size: 100%;
  }
}

@media screen and (max-width: 1000px) {
  #reservation p.smama-event:before {
    width: 22px;
    height: 22px;
    top: 10%;
    left: -18%;
    margin: 0;
  }

  .smama-event {
    margin-top: 0;
  }
}

@media screen and (max-height: 414px) {
  .smama-event {
    margin-top: 0;
  }

  #reservation p.smama-event:before {
    width: 24px;
    height: 24px;
    top: 0;
    left: -28px;
    margin: 0;
  }
}

@media screen and (max-width: 1000px) {
  #reservation .is-hidden-mobile {
    display: none;
  }

  #reservation .columns:not(.is-desktop) {
    display: block;
  }
}

.balloon1-top {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 1.5rem;
  min-width: 100%;
  max-width: 100%;
  background-color: rgba(254, 127, 45, 0.8);
  border-radius: 5px;
}

@media screen and (max-width: 1000px) {
  .balloon1-top {
    margin: 1em 0 2.5em 0;
  }
}

.festa-bg-02 .balloon1-top strong {
  text-shadow: none;
}

@media screen and (max-width: 1000px) {
  .balloon1-top strong {
    font-weight: normal;
  }
}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid rgba(254, 127, 45, 0.8);
}

.balloon1-top p {
  margin: 0;
  padding: 0;
}

/* イベント開催情報 */
caption {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

#info .is-size-7.has-text-centered {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

table a {
  margin-top: 0.5rem;
  text-shadow: none;
}

table + p {
  margin-bottom: 3rem;
}

.note {
  background-color: rgba(254, 127, 45, 0.8);
  border-radius: 5px;
  padding: 1.5rem 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 1000px) {
  .note {
    padding: 1.5rem;
  }
}

.note h3 {
  margin-bottom: 1rem;
}

.note p {
  margin-bottom: 0.5rem;
}

.note a {
  color: #fff;
  text-decoration: underline;
}

/*予約受付 吹き出し*/
.balloon {
  position: absolute; /* 三角の位置を固定するために設定 */
  right: 0;
  top: -36px;
  width: 80px; /* 幅 */
  margin: 0 auto 40px; /* 上 左右 下のマージン */
  padding: 5px; /* ふきだし内の余白 */
  background: #e91e63; /* 背景色 */
  border-radius: 5px;
  text-align: center; /* テキストの揃え */
  font-size: 0.8em;
  font-weight: bold;
  color: #fff;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.4);
}

.balloon::after {
  content: "";
  border: 8px solid transparent;
  border-top-color: #e91e63;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
}

.jump {
  animation: 0.5s jump infinite alternate linear;
}

@keyframes jump {
  to {
    transform: transtateY(0);
  }
  from {
    transform: translateY(4px);
  }
}

/*01*/
.schedule01 .balloon {
  background: #32c7f2;
}
.schedule01 .balloon::after {
  border-top-color: #32c7f2;
}

/*02*/
.schedule02 .balloon {
  background: #ff893c;
}
.schedule02 .balloon::after {
  border-top-color: #ff893c;
}

/*03*/
.schedule03 .balloon {
  background: #00b851;
}
.schedule03 .balloon::after {
  border-top-color: #00b851;
}
/*04*/
.schedule04 .balloon {
  background: #ea4d88;
}
.schedule04 .balloon::after {
  border-top-color: #ea4d88;
}
/*05*/
.schedule05 .balloon {
  background: #b1c1f6;
}
.schedule05 .balloon::after {
  border-top-color: #b1c1f6;
}
/*06*/
.schedule06 .balloon {
  background: #ffc93c;
}
.schedule06 .balloon::after {
  border-top-color: #ffc93c;
}
/*07*/
.schedule07 .balloon {
  background: #6394e0;
}
.schedule07 .balloon::after {
  border-top-color: #6394e0;
}
/*08*/
.schedule08 .balloon {
  background: #36ccba;
}
.schedule08 .balloon::after {
  border-top-color: #36ccba;
}
/*09*/
.schedule09 .balloon {
  background: #ed3a47;
}
.schedule09 .balloon::after {
  border-top-color: #ed3a47;
}
/*10*/
.schedule10 .balloon {
  background: #004ea1;
}
.schedule10 .balloon::after {
  border-top-color: #004ea1;
}
/*11*/
.schedule11 .balloon {
  background: #c00000;
}
.schedule11 .balloon::after {
  border-top-color: #c00000;
}
/*12*/
.schedule12 .balloon {
  background: #00b0f0;
}
.schedule12 .balloon::after {
  border-top-color: #00b0f0;
}

/*---------------------------------------------------
  Chapter06 : アニメーション
---------------------------------------------------*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*
    202408
*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
main {
  background: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.8;
  padding-bottom: 0;
}
.footer {
  background: #ebebeb;
}

.g-nav li:last-child a::after {
  content: none;
}

.quicksand,
#lives .date,
#lives .time {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
}
main section {
  padding-bottom: 100px;
}
.section,
section#about {
  width: 100%;
  padding: 100px 0 0;
  margin: 0 auto;
}
#lp_Navi .header-main,
.g-nav {
  background: #028DDB;
}
.mb0 {
  margin-bottom: 0 !important;
}
main h2 img {
  height: 112px;
}
main h3 {
  font-size: 28px;
}
#about h3 {
  margin-top: 50px;
  margin-bottom: 30px;
}
#about h2 img {
  height: 75px;
}
.main-title {
  background: none;
  border-radius: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto !important;
}
.main-title img {
  height: 112px;
}

#news {
  border: 1px solid #707070;
  border-radius: 10px;
  width: 1280px;
  max-width: calc(100% - 20px);
  margin: 140px auto 0;
  padding-bottom: 40px;
}

#news .main-title {
  background: #028DDB;
  width: 1120px;
  max-width: calc(100% - 40px);
  margin: -160px auto 0 !important;
  border-radius: 10px;
  padding: 10px 0;
}

#news .news-area {
  width: 800px;
  max-width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}

#news li {
  display: block;
  padding: 20px 0;
  text-align: left;
  border-bottom: 2px #d5d5d5 solid;
  line-height: 1.8;
}
#news li:first-child {
  border-top: none;
}
#news .NewsDays {
  color: #028DDB;
  margin-right: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

#lives .live-head {
  background: #028DDB;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#lives .live-head .date {
  font-size: 36px;
  font-weight: bold;
}

.bg-pink {
  background: #D6F1F8;
}

div.arrow {
  line-height: 0;
  margin-bottom: -2px;
  margin-top: -2px;
}

#lives .lead {
  width: 760px;
  max-width: 100%;
  padding: 80px 20px;
  margin: 0 auto;
  font-weight: 600;
  text-align: left;
}
#lives .lead h3 {
  font-weight: 600;
}
#lives .lead p {
  font-size: 80%;
  margin-top: 10px;
}

#lives .live-head .week {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: -6px 80px 0 2px;
  padding: 0 8px;
  color: #028DDB;
  font-size: 50%;
  font-weight: bold;
  vertical-align: middle;
  background: #fff;
}
#lives .live-head span.EventKinds {
  font-size: 22px;
}
#lives .live-head .time {
  font-size: 24px;
}
#lives .live-head .time img {
  vertical-align: text-top;
  margin-right: 4px;
}

#lives .lives-warp {
  max-width: 1020px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  text-align: left;
}
#lives .liveListTextBox {
  background: none;
}
.LiveTextBox {
  margin: 20px 0;
}
.btn-detail-box {
  width: 100%;
}
.btn-detail-box.text-center {
  margin: 20px 0;
}
.btn-detail {
  background: #028DDB;
  max-width: 100%;
  width: 380px;
  height: 86px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff !important;
  border-radius: 60px;
  position: relative;
  padding-left: 50px;
}
.btn-detail:after {
  content: "";
  background: url(../images/btn-arrow.png) no-repeat left center;
  background-size: contain;
  font-weight: bold;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -30px;
}
.btn-detail:hover {
  opacity: 0.7;
}
.btn-detail.btn-green {
  background: #06c755;
  color: #fff !important;
}
.btn-detail.btn-green:after {
  background-image: url(../images/btn-arrow-green.png);
}
.btn-detail.disabled {
  background: #eee;
  color: #777 !important;
  padding-left: 0;
  pointer-events: none;
}
.btn-detail.disabled:after {
  content: none;
}

.present-flow {
  background: #fff8ef;
  margin: 80px 0;
}
.present-flow img {
  width: 100%;
}

#lives .lives-warp .presents-name {
  color: #028DDB;
  font-weight: bold;
}
#lives .lives-warp h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}
#lives .liveListTextBox {
  display: flex;
  padding: 10px 0;
}
.liveListTextBox p {
  font-size: 16px;
}
#lives .liveListTextBox .photo {
  width: 50%;
  flex-shrink: 0;
  margin: 0 40px 0 0;
}
#lives .liveListTextBox .photo + div {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
#lives .liveListTextBox .btn-detail-box {
  align-self: flex-end;
  margin-top: 10px;
}

section#contents, div#contents {
    max-width: 800px;
    margin-top: 0;
    padding: 0;
}

.contents.box {
  background: #fff;
  padding: 40px 40px 20px !important;
}
#contents .contents::before {
  content: none;
}
#contents h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #028DDB;
}
#contents .ContentsText {
  margin-bottom: 10px;
}

.text-center {
  text-align: center !important;
}

#lives {
  margin-bottom: 0;
}
#lives .bg-pink {
  padding-top: 80px;
  padding-bottom: 80px;
}

#present {
  padding-top: 0 !important;
}

#present .present {
  background: none;
  padding-bottom: 100px;
  padding-top: 80px;
}
#present .present::before {
  content: none;
}

.PresentMainTitle {
  margin: 80px 0;
  font-size: 28px;
}
.PresentPhoto {
  max-width: 960px;
  margin: 0 auto;
}

#sponsor {
  background: none;
}
#sponsor .sponsor {
  text-align: center;
}
#sponsor .sponsor::before {
  content: none;
}
.SponsorBox {
  display: block;
  padding: 0 40px 80px;
}
.SponsorBox .SponsorTitle {
  font-size: 16px;
  margin: 80px 20px 32px;
}
.top-box {
  padding: 56px 20px 56px;
}
.top-box a {
  font-weight: bold;
  color: #5e9ff2;
  display: block;
}
.top-box a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/icon-site.png) no-repeat 0 0;
  background-size: contain;
  margin: -4px 0 0 8px;
  vertical-align: middle;
}

footer {
  padding-top: 4rem !important;
}

.fa-twitter:before {
  background: url(/img/uploads/festa/festa202408/images/icon-x.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 40px;
  width: 40px;
  display: block;
  margin: 0;
}

.fa-facebook-f:before {
  background: url(/img/uploads/festa/festa202408/images/icon-facebook.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 40px;
  width: 40px;
  display: block;
  margin: 0;
}

.fa-line {
  background: url(/img/uploads/festa/festa202408/images/icon-line.png) no-repeat 0 0;
  background-size: contain;
  content: "" !important;
  height: 40px;
  width: 40px;
  display: block;
  margin: 0;
}

.fa-instagram:before {
  background: url(/img/uploads/festa/festa202408/images/icon-instagram.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 40px;
  width: 40px;
  display: block;
  margin: 0;
}
.list-inline ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  background: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 60px;
  border-radius: 40px;
  line-height: 0;
}
.snsicons li {
  padding: 0;
}
.snsicons li a {
  display: inline-block;
  width: auto;
  height: auto;
  line-height: inherit;
}

footer #brand,
footer #nav-ft-link {
  display: none;
}

#copyright {
  color: #555;
}

#copyright .logo.corp {
  width: 198px;
  height: 23px;
  margin: 80px 0 32px;
}
.lp-header {
  display: none;
}
.live-movie iframe {
  width: 100%;
  height: 500px;
}
.hero .livebtn {
  background: #028DDB;
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
}

@media screen and (max-width: 1024px) {
  .hero .livebtn {
    top: calc(50% + 10px);
    left: 50%;
    width: 40%;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .hero .livebtn {
    top: calc(68% + 0px);
    width: 50%;
  }
  .present-flow {
    background: #fff8ef;
    padding: 40px 60px;
    margin-bottom: 40px;
  }
  #present .present {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu-bar {
    background: url(../images/btn-menu.png) no-repeat 0 0;
    background-size: contain;
    width: 52px;
    height: 52px;
    left: 18px;
    top: 0;
    margin-top: 10px;
    z-index: 1000;
  }
  .menu-bar > span {
    display: none !important;
  }
  .menu-bar.show-view {
    background-image: url(../images/btn-close.png);
    width: 30px;
    height: 30px;
    top: 7px;
    left: 26px;
  }
  .gva-navigation .btn-detail {
    margin-bottom: 40px;
    width: calc(100% - 40px);
  }
  .btn-detail {
    width: 380px;
    max-width: 100%;
    height: 66px;
    font-size: 18px;
  }
  .btn-detail:after {
    width: 40px;
    height: 40px;
    left: 20px;
    margin-top: -20px;
  }
  .live-movie iframe {
    height: 49vw;
  }
  header#header {
    display: block;
  }
  header.header-v2 .main-menu {
    display: block;
  }
  header:has(.show-view) .menu-bar span {
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
  }
  #lp_Navi .header-main,
  .g-nav {
    background: none;
    box-shadow: none;
  }
  #lp_Navi .header-main {
    display: none;
  }
  header.header-v2 .main-menu .content:has(.show-view) {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .gva-navigation.show-view {
    max-width: 388px;
    width: 90%;
    background: #028DDB;
    color: #fff;
    padding-top: 50px;
  }
  .gva-navigation .gva_menu > li {
    border-bottom: 1px solid #ff6699 !important;
  }
  .gva-navigation .gva_menu > li:first-child {
    border-top: 1px solid #ff6699 !important;
  }
  .gva-navigation .gva_menu li a {
    padding: 15px 10px !important;
    background: none;
    color: #fff !important;
    text-align: left !important;
    height: auto;
    margin: 0 !important;
    padding: 10px 15px !important;
    font-size: 16px;
    font-weight: bold;
    position: relative;
  }
  .gva-navigation .gva_menu li a:after {
    content: "";
    position: absolute;
    border-top: 2px solid #ff6699;
    border-right: 2px solid #ff6699;
    width: 8px;
    height: 8px;
    top: 50%;
    right: 10px;
    display: block;
    margin-top: -4px;
    transform: rotate(45deg);
  }

  .gva-navigation h3 {
    color: #fff;
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .gva-navigation p {
    text-align: left;
    font-size: 13px;
    font-weight: bold;
  }
  .gva-navigation .bottom-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
  .gva-navigation li + li {
    margin-top: 0 !important;
  }
  .gva-navigation .text {
    padding: 0 20px 40px;
  }
  .gva-navigation .btn-detail {
    margin-bottom: 40px;
  }
  .gva-navigation .list-inline ul {
    width: 100%;
    gap: 20px 20px;
    padding: 20px 20px;
    border-radius: 0;
  }
  .gva-navigation .list-inline ul li i,
  .gva-navigation .list-inline ul li i:before {
    height: 28px !important;
    width: 28px !important;
    text-indent: -200px;
    overflow: hidden;
  }
  .gva-navigation .list-inline .fa-twitter,
  .gva-navigation .list-inline .fa-twitter:before {
    height: 24px !important;
    width: 24px !important;
  }
  .container {
    height: auto;
  }
  .section {
    padding: 80px 0 0 !important;
  }
  .main-title {
    height: auto;
    border-radius: 0;
  }
  .main-title img {
    height: 77px;
  }

  section#about {
    padding: 60px 20px 0 !important;
  }
  #about h3 {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  main h3 {
    font-size: 24px;
  }

  #lives .lead {
    padding: 40px 20px;
  }
  #lives .live-head {
    justify-content: space-between;
  }
  #lives .live-head .date {
    font-size: 22px;
  }
  #lives .live-head .date span {
    margin: 0;
    padding: 0px 5px;
  }
  #lives .live-head span.EventKinds {
    font-size: 12px;
}

  #lives .live-head .time img {
    vertical-align: text-bottom;
    margin-right: 4px;
    width: 20px;
  }

  #lives .live-head .time {
    font-size: 15px;
  }

  #lives .liveListTextBox {
    display: block;
  }
  #lives .liveListTextBox .photo,
  #lives .liveListTextBox .photo + div {
    width: 100%;
    margin: 0;
  }
  #lives .lives-warp {
    padding: 20px 20px 50px;
  }
  #lives .lives-warp h2 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
}

  section#contents {
    margin-top: 0;
    padding: 40px 20px 40px !important;
  }
  .contents.box {
    padding: 40px 20px 20px !important;
  }

  .PresentMainTitle {
    margin: 60px 10px;
    font-size: 24px;
  }
  .PresentMainTitle br {
    display: none;
  }

  .footer {
    padding: 30px 10px 40px !important;
  }
  .list-inline ul {
    gap: 20px 30px;
    padding: 20px 40px;
    border-radius: 40px;
  }
  .list-inline ul li i,
  .list-inline ul li i:before {
    height: 30px !important;
    width: 30px !important;
  }
  #copyright .logo.corp {
    height: 23px;
    margin: 30px 0 20px;
  }
}

.font-small {
  font-size: 90% !important;
}

/*
    下層ページ
*/
.detail-page .main-title {
  background: #028DDB;
  border-radius: 0;
  padding: 20px 0;
}

.detail-page #lives .live-head {
  background: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #028DDB;
}

.detail-page #lives .live-head .date {
  font-size: 56px;
}
.detail-page #lives .live-head .date .week {
  background: #028DDB;
  border-radius: 50%;
  padding: 0 8px;
  color: #fff;
  font-size: 21px;
  margin: -8px 56px 0 8px;
}
.detail-page .liveListTextBox .bg-pink {
  border-radius: 20px;
  display: block !important;
  text-align: center;
  padding: 24px 24px !important;
  align-self: flex-start;
}
.detail-page .liveListTextBox .bg-pink h3 {
  font-size: 22px;
  color: #028DDB;
  margin-bottom: 10px;
  font-weight: bold;
}
.detail-page #lives {
  padding-top: 0 !important;
}

.detail-page .liveListTextBox + .liveListTextBox {
  margin-top: 40px;
}
.detail-page .live-table {
  border: none;
  border-collapse: separate;
  border-spacing: 10px;
  border-top: 2px solid #f5f5f5;
  height: 2px;
  padding-top: 40px;
  margin-bottom: 0;
}
.detail-page .live-table th,
.detail-page .live-table td {
  border: none;
}
.detail-page .live-table th {
  background: #028DDB;
  width: 100px;
  display: block;
  border-radius: 6px;
  color: #fff;
  text-align: center;
}
.detail-page .live-table td {
  width: 100%;
}
.detail-page .live-detail-box h3 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.detail-page .live-detail-box h3 img {
  margin-right: 10px;
}
.detail-page .live-detail-box ul li:before {
  content: "●";
  color: #028DDB;
  margin-right: 2px;
}
.detail-page .contents.box {
  background: #fff;
  padding: 40px 0 0 !important;
  box-shadow: none;
}
.detail-page .wd-100 {
  width: 100% !important;
}
.detail-page #lives .lives-warp {
  padding-bottom: 40px;
}

#PresentPage .lives-warp h2 {
  font-size: 22px;
}

.detail-page .notice {
  max-width: 1020px;
  margin: 0 auto 30px;
  padding: 0 40px;
  font-size: 85%;
  color: #e34444;
}

.sp-v {
  display: none;
}

#PresentLP .detail-page .main-title {
  background: #D6F1F8;
  border-radius: 0;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .pc-v {
    display: none;
  }
  .sp-v {
    display: block;
  }
  .btn-detail-box {
    width: 100%;
    text-align: center;
  }
  .detail-page .main-title {
    height: auto;
  }
  .detail-page .main-title img {
    height: 54px;
  }
  .detail-page #lives .live-head {
    display: block;
  }
  .detail-page #lives .live-head .date {
    font-size: 35px;
  }
  .detail-page #lives .live-head .date .week {
    font-size: 18px;
    margin: -8px 0px 0 8px;
  }
  .detail-page #lives .live-head .time {
    font-size: 18px;
  }
    .detail-page   #lives .live-head span.EventKinds {
    font-size: 15px;
  }
  .detail-page .liveListTextBox .bg-pink {
    margin-top: 60px !important;
  }
  .detail-page .contents.box {
    padding-top: 0 !important;
  }
  .detail-page .contents-bg {
    padding: 0;
    margin: 0 0 20px;
  }
  .detail-page .notice {
    padding: 0;
  }
}
