@charset "UTF-8";
/* CSS Document */

html{
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

.margin-space-1{margin-bottom: 1rem;}
.margin-space-3{margin-bottom: 3rem;}
.margin-space-5{margin-bottom: 5rem;}

/* 追従お問合せ*/
.line-menu {
    position: fixed;
    z-index: 10;
    bottom: -10px!important;
	right: 0px!important;
}

.line-menu img{
	width: 200px;
	height: auto;
}

#sp-logo-main{
    /*fixedで上部固定*/
	position: fixed;
	height: 100px;
	width:100%;
    z-index: 1;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	padding-top: 60px;
}

#mc.UpMove,
#sp-logo-main.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
#mc.DownMove,
#sp-logo-main.DownMove{	
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}



/* スマホ記述 */
@media screen and (max-width: 768px) {
	.pc-media{display:none!important;}
	.sp-media{display:block!important;}	
}

@media screen and (min-width: 767px) {
	.pc-media{display:block!important;}		
	.sp-media{display:none!important;}
}

.logo-sf2024{
	display: none;
}


/* モーダル */
.modal_open{
	cursor: pointer;
}

.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 70vw;
	height: 70vh;
    max-width: 840px;
    margin: 0;
    padding: 60px 2vw 80px;
    border: 2px solid #aaa;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
	overflow: scroll; /* スクロール設定 */
}

.modal_box img {
	width: 100%!important;
	height: auto;
}

.modal_close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 46px;
    color: #000;
    line-height: 62px;
    text-align: center;
    background: #e6e6e6;
}
 
.modal_close i {
    line-height: 62px;
    vertical-align: bottom;
}
 
.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.7);
}
 
.link_area {
    overflow: hidden;
    max-width: 410px;
    margin: 60px auto 0;
    text-align: center;
}
 
.link_area .modal_link {
    display: inline;
}
 
.link_area .modal_link a {
    display: inline-block;
    width: 180px;
    color: #000;
    line-height: 2.5;
    text-decoration: none;
    margin: 0 10px;
    background: #e6e6e6;
}
 
.link-area ul li.modal_link:first-child a {
    float: left;
}
 
.link-area ul li.modal_link:last-child a {
    float: right;
}
 
@media screen and (max-width: 769px) {
 
/*  ウィンドウサイズ769px以下の時のスタイル  */
 
  .modal_box {
      padding: 50px 2vw 40px;
      width: 95%;
	  height: 80%;
	  margin: 20px auto;
  }
 
  .modal_close {
      width: 40px;
      line-height: 40px;
      font-size: 30px;
  }
 
  .modal_close i {
      line-height: 44px;
  }
 
  .link_area {
      margin: 25px auto 0;
  }
 
  .link_area .modal_link a {
      margin: 15px auto 0;
  }
 
  .link_area ul li.modal_link:first-child a {
      float: none;
      margin-top: 0;
  }
 
  .link_area ul li.modal_link:last-child a {
      float: none;
  } 
}
/* ここまでモーダル */

h4.sponsor-list{
	text-align: justify!important;
}

.text-center-box,
.text-center-box p{
	text-align: center!important;
}

.text-just,
.text-just p{
	text-align: justify;
}

.space-line{
	margin-bottom: 3rem;
}

/* donation-page */

.donation-heading{
	background-color:#fcc200;
	padding: 0 0 0 10px;
	margin-bottom: 12px;
	width: 100%;
	height: 40px;
	line-height: 40px;
}

.donation-heading p{
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

/* ボタン共通設定 */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	background:#ffdd44;
	color:#333333;
    padding: 10px 40px 10px 30px;
	border-radius:25px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
	background:#fccf00;
}

/* 矢印が右に移動 */
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
	color:#333333;
    top:42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
}

table.bbq,table.sup-ns{
	font-size: 13px;
	text-align: center;
  width: 100%;
	margin: 3px auto;
}

table.bbq th,
table.sup-ns th{
  position: relative;
  text-align: center;
	padding: 10px 20px 10px 20px;
	margin: 0 auto;
  width:100vw;
}

table.bbq td,
table.sup-ns td{
  text-align: left;
  padding:7px 12px 7px 12px;
}

table.bbq, td, th,
table.sup-ns, td, th{
    border-bottom: 1px solid black;
}

table.bbq,
table.sup-ns{
    border-collapse: collapse;
}

table.sup{
	text-align: center;
    width: 100%;
	font-size: 13px;
	margin: 3px auto;
}

table.sup th{
  position: relative;
  text-align: center;
  width: 20%;
　margin: 0 auto;
}

table.sup td{
  text-align: left;
  padding:7px 12px 7px 12px;
  width: 80%;
}

table.sup, td, th {
    border-bottom: 1px solid black;
}
table.sup {
    border-collapse: collapse;
}

.sup-box-modal{}

.sup-box-modal img{
	width: 70%;
	height: auto;
}

.table-gray{
	background-color: #D3DEF1;	
}

table.sponsor{
  display: block;
  overflow-x: auto;
  width: 100%;
  font-size: 13px;	
}

table.sponsor th{
  position: relative;
  text-align: center;
  width: 330px;
  height: auto;
}

table.sponsor td{
  text-align: left;
  padding:12px 5px 12px 2px;	
}

table.sponsor td.sp-t-01{
  width: 480px;
  height: auto;
  padding:12px 5px 12px 2px;
  margin: 0 5px 0 5px
}

table.sponsor td.sp-t-01-c{
  text-align: center;
  width: 480px;
  height: auto;
  padding:12px 5px 12px 2px;
  margin: 0 5px 0 5px
}

table.sponsor td.sp-t-02{
  text-align: center;
  width: 200px;
  height: auto;
  padding:12px 5px 12px 2px;	
  margin: 0 5px 0 5px
}

table.sponsor, td, th {
    border-bottom: 1px solid black;
}
table.sponsor {
    border-collapse: collapse;
}

table tbody {
    display: table;
}





/* お知らせ一覧 */
.news-end{
	text-align: end;
}

.home-news {
  display: block;
  position: static;
  width: 100%;
  padding: 0;
  margin: 100px 0 0 0;
}

.home-news::before {
  content: "";
  width: 100%;
  display: block;
  height: auto;
  background-color: #FFFFFF;
  position: static;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.home-news-title {
  display: block;
  margin-bottom: 1.312em;
  font-size: 25px;
  font-weight: 400;
  color: #231815;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-transform: uppercase;
}

.home-news .news-list .thumbnail {
  width: 44%;
  margin-right: 5.5%;
}

.home-news > p {
  min-height: 400px;
  text-align: center;
}

.news-list,
.news-list-main{
	padding: 0;
}

.news-list > li {
  padding: 10px 0 20px 0;
  display: inline-block;
  width: 95%;
  height: auto;
  margin: 0 2%;
}

.news-list-main > li {
  padding: 10px 0 20px 0;
  display: inline-block;
  width: 90%;
  height: auto;
  margin: 0 2%;
}

.news-list > li:not(:last-of-type),
.news-list-main > li:not(:last-of-type) {
  margin-bottom: 16px;
}

.news-list a,
.news-list-main a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.news-list .thumbnail{
  height: auto;
  margin-right: 6.101%;
  line-height: 1;
  display: block;
}

.news-list-main .thumbnail {
  width: 30%;
  height: auto;
  margin-right: 6.101%;
  line-height: 1;
  display: block;
}

.news-list .thumbnail img,
.news-list-main .thumbnail img {
  width: 100%!important;
  height: auto;
}

.news-list .text,
.news-list-main .text {
  flex: 1 1 0;
  line-height: 1.687;
  display: block;
}

.news-list h3,
.news-list-main h3 {
	display: block;
	position: static;
	width: 100%;
	height: auto;
	font-size: 14px!important;
	font-weight: 400;
	text-align: start;
	padding: 0;
	margin: 0;
}

.news-list p,
.news-list-main p {
	display: block;
	position: static;
	width: 100%;
	height: auto;
	font-size: 14px!important;
	font-weight: 400;
	text-align: start;
	color: #505050;
}
	
.news-list .date,
.news-list-main .date {
  font-size: 14px;
  font-weight: 700;
  color: #687380;
  display: inline-block;
  text-decoration: none!important;
  font-family: Poppins, sans-serif;
  margin-right: 12px;
  letter-spacing: 0.28px;
  line-height: 16.8px;
}

.privacy-wrapper p,
.privacy-wrapper a{
	font-size:16px;
}

.cat-list {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
	margin-top: -2px;
	margin: 0;
	padding: 0;
}
.cat-list > li {
  list-style:none;	
  min-width: 40px;
  margin: 5px 0;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  background-color: #ffdd44;
}
.cat-list > li:not(:last-of-type) {
  margin-right: 0.923em;
}




.home-news {
  display: block;
  position: static;
  width: 100%;
  padding: 0;
  margin: 100px 0 0 0;
}

.home-news::before {
  content: "";
  width: 100%;
  display: block;
  height: auto;
  background-color: #FFFFFF;
  position: static;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.home-news-title {
  display: block;
  margin-bottom: 1.312em;
  font-size: 2rem;
  font-weight: 400;
  color: #231815;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-transform: uppercase;
}

.home-news .news-list .thumbnail {
  width: 27.03%;
  margin-right: 3.5%;
}

.home-news > p {
  min-height: 400px;
  text-align: center;
}

.news-list{
	padding: 0;
}

.privacy-wrapper p,
.privacy-wrapper a{
	font-size:16px;
}

.news-li{
	list-style:none;
}

.container-news{
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin: 0 auto;	
}


.container-pan{
  max-width:520px;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin: 0 auto;
}

@media screen and (max-width: 768px){
.container-pan{
  width: 100%!important;
  padding-right: var(--bs-gutter-x, 0rem);
  padding-left: var(--bs-gutter-x, 0rem);
  margin: 0 auto;
}
}

/* パンくず */
.c-breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #6C6C6C;
  line-height: 3.2;
	margin: 0;
	padding: 0 0 0 12px;
}

.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}

.c-breadcrumbs a,.c-breadcrumbs a:visited{
  color: #6C6C6C;
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    font-size: 0.8125rem;
  }
}

.c-breadcrumbs > li {
  display: inline-block;
  position: relative;
}

.c-breadcrumbs > li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.breadcrumb{
	display: block;
	position: static;
	margin: -10px 0;
	padding: 0;
}

/* 固定ページ */
.page_head_top{
	text-align: center!important;
	background: center;
}

.page_head{
	display: inline-block;
	max-width: 520px;
	background-image: url('http://dagurisummer-fes.com/wp2024/wp-content/uploads/2024/06/im-back-banner.png');
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
	width: 100%;
    height: 250px;
    text-align: center!important;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
	margin: 0 auto;
	padding: 0;
}

.page_head{
	background-attachment: inherit;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	position: relative; /*配置位置の基準となる指定*/
}

.page_head h1{
	font-size: 28px;
	font-family: "Noto Sans JP";
	font-weight: 600;
	font-style: normal;
	color: #000;
	width: 100%;
	text-align: center;
	opacity: 1;
	position: absolute; /*自由に配置する指定*/
	bottom: 50px; /*下寄せの指定*/
	margin: 0;	
}


body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
	margin: 0!important;
	padding:0!important; 
}


a:link {
 color:  #131313;
 text-decoration: none;
}

a:visited {
 color:  #131313;
 text-decoration: underline;
}

a:hover {}

a:active {
 color: #FF0000;
 text-decoration: underline;
}

ul.column3{
	padding: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 !important;
}

ul.column3 li{
	width: 30.5%;
	display: inline-block;
	margin: 0.5%;
	list-style: none;
}

ul.column3 li img{
	width: 100%;
	height: auto;
}

.wrapper{
	max-width: 1920px;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;	
}

.container{
  position: absolute;
  max-width:520px!important;
  padding-right: var(--bs-gutter-x, 0rem);
  padding-left: var(--bs-gutter-x, 0rem);
  margin: 0;
  top:0;
  right: 50%;
  transform: translate(50%, 0%);
}

.container-under{
  display: block;
  position: static;
  max-width:520px!important;
  padding-right: var(--bs-gutter-x, 0rem);
  padding-left: var(--bs-gutter-x, 0rem);
  margin: 0 auto;
}

.y-box,.y-box-02{
  position: absolute;
  margin: 0;
	bottom: 8%;
	right:5%;
	background-color: #ffdd44;
	width: 220px;
	height: 35px;
	line-height: 5px;
	padding: 3px 0 3px 0;
    vertical-align: middle;
    display: inline-block;
	text-align: end;
}

.y-box-02{
	bottom: 5%;
	width: 200px;
}

.y-box p,
.y-box-02 p{
	text-align: end;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	padding-left: 10px;
}

.main-box{
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.sub-box{
  padding-right: var(--bs-gutter-x, 2rem);
  padding-left: var(--bs-gutter-x, 2rem);
}



/* PC 左側 */
.container-pc-left{
	max-width: 640px;
	width: 100%;
	height: auto;
	position: fixed;
	margin: 0;
	padding: 0;	
	top: 0;
	left: 56px;
}

.container-pc-ver{
	max-width: 56px;
	background-color: #FFDD44;
	width: 100%;
	height: 100vh;
	position: fixed;
	margin: 0;
	padding: 0;	
	top: 0;
	left: 0;
}

.container-pc-ver p{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
	position: fixed;
	bottom: 20px;
	left: 0px;
}

@media screen and (max-width: 1920px) {		
.container-pc-left{
	width: calc((100vw - 650px) / 2);
}	
}

@media screen and (min-width: 1920px) {		
.container-pc-left,
.container-pc-ver,
.container-pc-ver p{
	left: calc(50% - 980px);	
}	
}

.container-pc-left img{
  position: absolute;
  top:50px;
  left: 45%;
  transform: translate(-50%, 0);
  width: 220px;
  height: auto;
}

.container-pc-left ul.left-pc{
  position: absolute;
  top:155px;
  left: 40%;
  transform: translate(-50%, 0);
}

.container-pc-left ul.left-pc li{
	margin: 20px 0;
}
	
.container-pc-left ul.left-pc li a{
	font-size: 17px;
	font-weight: 600;
}

/* PC 右側 */
.container-pc-right{
	max-width: 690px;
	width: 100%;
	height: auto;
	position: fixed;
	margin: 0;
	padding: 0;	
	top: 0;
	right: 12px;
}

@media screen and (max-width: 1920px) {		
.container-pc-right{
	width: calc((100vw - 550px) / 2);
}	
}

@media screen and (min-width: 1920px) {		
.container-pc-right{
	right: calc(50% - 980px);
}	
}

.slide-container {
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
  overflow: hidden;
  flex-direction: column;
}

.container-pc::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);	
}

.site-title{
  position: absolute;
  top:2%;
  left: 2%;
  z-index: 9999;
}

.site-title a img{
	display: block;
	position: static;
	width: 80px;
	height: auto;
}

.mainImg{
	z-index: 2;
	position: relative;
	width: 100%;
	height: calc(100vh);
	background-color: #FFFFFF!important;
	margin: 0;
	padding: 0;
}
	
.mainImg .video{
	position: absolute;
	top: 2%;
	right: 0;
	bottom: 2%;
	left: 0;
	overflow: hidden;
	border-radius: 10px;
}
	
.mainImg .video video{
	position: absolute;
	object-fit: cover;
	width: 100vw!important;
	height: 100vh!important;
}
	
.mainImg .inner{	
	display: flex;
	position: relative;
	height: 100%;
	justify-content: center;
	align-items: center;
}
	
.mainImg .inner .copyBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	width: 50px;
	background-color: #FFFFFF;
}	

.mainImg .inner .copyBox img{
	position: absolute;
	top: 50%;
	width: 90%!important;
	height: auto;
    left: 50%;
    transform: translate(-50%, -50%);	
}	

.mainImg .inner .copyBox p{
	position: absolute;
	bottom: 10%;
	z-index: 9999;
	font-size: 16px;
}

.home-news {
  display: block;
  position: static;
  width: 100%;
  padding: 0;
  margin: 100px 0 0 0;
}

.home-news::before {
  content: "";
  width: 100%;
  display: block;
  height: auto;
  background-color: #FFFFFF;
  position: static;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.home-news-title {
  display: block;
  margin-bottom: 1.312em;
  font-size: 2rem;
  font-weight: 400;
  color: #231815;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-transform: uppercase;
}

.home-news .news-list .thumbnail {
  width: 27.03%;
  margin-right: 3.5%;
}

.home-news > p {
  min-height: 400px;
  text-align: center;
}

.news-list{
	padding: 0;
}

#top-news{
	background-color: #F3F3F3;
	margin: 0!important;
	padding: 25px 0 25px 0!important;
	width: 100%;
	height: auto;
}

.n-box{
	background-color: #FFFFFF;
	padding: 15px 30px!important;
}



#about,#schedule,#booth,#event,#entry,#access,#archive{
	margin-bottom: 65px;
}

.sc-about{
	padding-top: 12px;
}

.sc-about h2{
}

.sc-about h2::before,
.sc-artist h2::before,
.sc-schedule h2::before,
.sc-booth h2::before,
.sc-event h2::before,
.sc-access h2::before,
.sc-archive h2::before,
.sc-entry h2::before{
	content: "";
	display: inline-block;
	position: static;
	width: 32px;
	height: 32px;
	background-color: #ffdd44;
	margin: -5px -10px 0 0;
	padding: 0 0 0 -15px;
	border-radius: 50%;
}


.event-box{
	background-color: #ffdd44;
	border-radius: 20px!important;
	padding: 25px 20px 30px 20px;
	margin: 15px 0 35px 0;
}

.event-box h2{
	text-align: center;
}


.sc-entry{}

.entry-box{
	background-color: #ffdd44;
	border-radius: 20px!important;
	padding: 25px 20px 30px 20px;
	margin: 15px 0 35px 0;
}

.entry-box h2{
	text-align: center;
}

.entry-contents-box{
	background-color: #FFFFFF;
	padding: 30px 20px;
	border-radius: 10px!important;
}

.entry-contents-box img{
	border-radius: 5px;
}

.entry-contents-box h2{
	font-size: 28px;
	color: #1296a0;
	margin: 6px 0 20px 0;
	padding: 0!important;
	line-height: 1.2;
	text-align: center;
}

.entry-contents-box h2 span{
	font-size: 12px;
	color: #000000;
	margin: 15px 0 0 0;
	padding: 0!important;
	font-weight: 400;
	text-align: center;
}

.entry-contents-box h3{
	font-size: 22px;
	color: #1296a0;
	margin: 10 0 0 0!important;
	padding: 0!important;
}

.entry-contents-box p{
	margin: 0 0 35px 0;
	padding: 0!important;
}

.entry-contents-box p.ec-t{
	font-size: 12px;
	margin: 35px 0 0 0;
	text-align: justify;
}

.bbq-under-box{
	background-color: #ffdd44;
	border-radius: 20px!important;
	padding: 25px 20px 20px 20px;
	margin: 15px 0 25px 0;
}

.bbq-under-box h2{
	text-align: center;
}

.bbq-under-contents-box{
	background-color: #FFFFFF;
	padding: 30px 20px 10px 20px;
	border-radius: 10px!important;
}

.bbq-under-contents-box img{
	border-radius: 5px;
}

.bbq-under-contents-box h2{
	font-size: 28px;
	color: #1296a0;
	margin: 6px 0 20px 0;
	padding: 0!important;
	line-height: 1.2;
	text-align: center;
}

.bbq-under-contents-box h2 span{
	font-size: 12px;
	color: #000000;
	margin: 15px 0 0 0;
	padding: 0!important;
	font-weight: 400;
	text-align: center;
}

.bbq-under-contents-box h3{
	font-size: 22px;
	color: #1296a0;
	margin: 10 0 0 0!important;
	padding: 0!important;
}

.bbq-under-contents-box h4{
	font-size: 17px;
	line-height: 30px;
}

.bbq-under-contents-box p{
	margin: 0 0 35px 0;
	padding: 0!important;
	text-align: justify;
}

.bbq-under-contents-box p.ec-t{
	font-size: 12px;
	margin: 35px 0 0 0;
	text-align: justify;
}

.sponsor-box{
	background-color: #ffdd44;
	border-radius: 20px!important;
	padding: 25px 20px 20px 20px;
	margin: 15px 0 25px 0;
}

.sponsor-box h2{
	text-align: center;
}

.sponsor-contents-box{
	background-color: #FFFFFF;
	padding: 30px 20px 10px 20px;
	border-radius: 10px!important;
}

.sponsor-contents-box img{
	border-radius: 5px;
}

.sponsor-contents-box h2{
	font-size: 28px;
	color: #1296a0;
	margin: 6px 0 20px 0;
	padding: 0!important;
	line-height: 1.2;
	text-align: center;
}

.sponsor-contents-box h2 span{
	font-size: 12px;
	color: #000000;
	margin: 15px 0 0 0;
	padding: 0!important;
	font-weight: 400;
	text-align: center;
}

.sponsor-contents-box h3{
	font-size: 22px;
	color: #1296a0;
	margin: 10 0 0 0!important;
	padding: 0!important;
}

.sponsor-contents-box h4{
	font-size: 17px;
	line-height: 30px;
}

.sponsor-contents-box p{
	margin: 0 0 35px 0;
	padding: 0!important;
	text-align: justify;
}

.sponsor-contents-box p.ec-t{
	font-size: 12px;
	margin: 35px 0 0 0;
	text-align: justify;
}




/*基本と主な共通部分は省略*/

.ec-center{
	text-align: center;
}

a.btn{
	display: inline-block;
	font-weight: 600;
	font-size: 20px;
	padding: 15px 40px;
	border-radius: 13px;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
 -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;		
}

a.btn-gradient {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

a.btn-gradient:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  color: #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

.artist-main{
	display: block;
	position: static;
	margin: 5 0 200px 0!important;
	padding-bottom: 30px;	
}

.artist-main img{
	border-radius: 15px!important;
}

.artist-main h3{
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}

.artist-main hr{
  border-top: 2px dashed #9dd1ff;
  background-color: #56b0ff;
}

.artist-main-sns{
	text-align: center;
}

.artist-main-sns img{
	border-radius: 0px!important;
}

.schedule-box{
	background-color: #ffdd44;
	border-radius: 20px!important;
	padding: 3px 20px 20px 20px;	
}

.schedule-contents-box{
	background-color: #FFFFFF;
	padding: 20px 20px;
	border-radius: 10px!important;
}

.schedule-contents-box ul{}

.schedule-contents-box ul li{}

.st-left{
	font-size: 14px;
	font-weight: 600;
    height: 35px;
    line-height: 35px;	
	background-color: #000000;
	color: #FFFFFF;
	padding: 1px auto 1px auto;
	margin: 5px 2px 5px 0px;
	width: 26%;
	float: left;
	border-radius: 10px!important;
	text-align: center;
}

.st-rig{
	font-size: 14px;
	font-weight: 600;
	width: 68%;
    height: 35px;
    line-height: 35px;	
	padding: 1px 2px 1px 2px;
	margin: 5px 2px 5px 0px;
	float: right;	
}

.st-rig span{
	font-size: 8px;
}


.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}


.booth{
	margin: 30px 0;
	background-color: #f6f6f6;
	border-radius: 15px!important;	
}

.booth img{
	border-radius: 15px 15px 0 0;
}

.booth-info{
	padding: 15px 32px;
}

.booth-info span{
	background-color: #ffdd44;
	padding: 5px;
	border-radius: 5px;	
}

.sc-info h2{
	text-align: center;
	background-color: #ffdd44;
	font-size: 18px;
	padding: 5px 0;
}

.sc-info h3{
	text-align: center;
}

.sc-notes{
	padding: 32px 0 0 0;
	background-color: #f6f6f6;
	border-radius: 12px;
}

.sc-notes-in{
	padding: 12px 32px 32px 4px;
	text-align: justify;
}


.sc-notes h2{
	font-size: 18px;
	text-align: center;
}

.sc-notes li{
	text-align: 14px;
	margin: 10px 0;
}

.fc-info{
	margin: 10px 0 0 0;
	padding: 10px 20px 10px 20px;
	border-radius: 50px 50px 0 0;
	background-color: #ffdd44;
	text-align: center;
}

.sc-access{}

.sc-access p{
	font-size: 15px;
}

@media screen and (max-width: 760px) {
	
.line-menu img{
	width: 130px;
	height: auto;
}	
	
.container-pc-left,	
.container-pc-right{
　display: none!important;
}

.container-pc-left ul.left-pc,
.container-pc-left ul.left-pc li,
.container-pc-left ul.left-pc li a{
	font-size: 0pt;
}

.container-pc-ver,	
.container-pc-left img{
	width: 0%;
}

.container-pc-ver p{
	font-size: 0pt;
}
	
.container{
  width: 100%;
  padding-right: var(--bs-gutter-x, 0rem);
  padding-left: var(--bs-gutter-x, 0rem);
  top:0;
  margin: 0;
}

.mainImg .video{
	border-radius: 0px;
	top: -2%;
}	
	
.mainImg .video video{
	position: absolute;
	object-fit: cover;
	width: 100%!important;
	height: 100vh!important;
	margin: 0;
	padding: 0;
}
	
.main-box{
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
}

.sc-access p{
	font-size: 13px!important;
}
	
h4.sponsor-list{
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.5;
}	
	
.fc-info p{
	font-size: 13px;
}
	
.sp-text-start,
.sp-text-start p{
	text-align: justify!important;
}	
	
.y-box,.y-box-02{
	bottom: 15%;
}

.y-box-02{
	bottom: 10%;
}
	
.logo-sf2024{
	display: block;
	position: fixed;
	top: 5%;
	left: 5%;
	margin: 0;
	width: 180px!important;
	height: auto;
	z-index: 9999;
}
	
.logo-sf2024 img{
	width: 100%;
	height: auto;
	z-index: 9999;
}

.mainImg .inner .copyBox img{
	top: 45%;
}			
}