@charset "utf-8";
/* main
-----------------------------------*/
.contents p {
  text-align: left;
}
/* トップイメージ
-----------------------------------*/
.main_image {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  height: auto;
  ;
}


.main_image .title {
  position: absolute;
  z-index: 2;
  left: 12%;
  top: 30%;
  ;
}
.wrap-video {
  position: relative;
  width: 100vw;
	  display: flex;
  align-items: end;
}
.wrap-video::after {
position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 30%, transparent 31%),
    radial-gradient(rgba(255,255,255,0.1) 30%, transparent 31%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;

}
.wrap-video video {
  width: 100%;
  height: 100%;
	line-height: 1;

}
.slider {
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.slick-img img {
  width: 100%;
  object-fit: cover;
}
.movie__btn {
  margin-top: 1em;
  text-align: center;
	z-index: 5;

}

.movie__btn button {
  color:#061647;
	position: absolute;
	font-weight:bold;
	right:8%;;
	bottom:2%;
   font-size: clamp(12px, 1.0vw, 24px);
  padding: 0.25em 1em;
  border-radius: 50px;
  box-shadow: initial;
  display: inline-block;
  appearance: none;
  background-color:#facf6b;
	border: 2px solid #14244c;
  cursor: pointer;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.25); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@media (max-width: 767px) {
  .main_image .title {
    left: 6%;
    top: 23%;
  }
}
/* info
-----------------------------------*/
.info {
  background-image: url("../images/index/bg01.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.info h2 {
  text-align: center;
  margin-bottom: 0;
}
.info h2 img {
  margin-bottom: 50px;
  height: auto;
}
.info .fee_container {
  background-color: rgb(255, 255, 255, 0.75);
  padding: 30px 50px;
  border-radius: 13px;
  align-items: center;
}
.info .fee_container .fee {
  font-size: 2.8rem;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 2.0;
  font-weight: bold;
  color: #061647;
  vertical-align: middle;
}
.info .fee_container .text {
  border-left: 4px solid #061647;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 1.6rem;
  width: 67%;
  font-weight: 500;
  color: #333333;
  vertical-align: middle;
}

/* 緊急告知
-----------------------------------*/

.topnews{
	  position: relative;
	width:100%;
	  background-image: linear-gradient(90deg, #f02261, #f79c5d);

}
 
.topnews a{

	color:#fcee21!important;
}
 

.topnews a::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffcb, #c19740);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 40px;
  padding: 3px; /* 線の太さ */
  z-index: 5;

}
@media (max-width: 767px) {
  .info {
    background-image: url("../images/index/sp_bg01.jpg");
  }
  .info h2 img {
    height: auto;
    margin-bottom: 25px;
  }
  .info .box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .info .box .fee {
    text-align: left !important;
    width: 200px !important;
    line-height: 1.5;
  }
  .info .fee_container {
    padding: 30px 20px;
    border-radius: 13px;
  }
  .info .fee_container .fee {
    width: 100%;
    text-align: center;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    vertical-align: middle;
  }
  .info .fee_container .text {
    font-size: 1.4rem;
    width: 100%;
    border-top: 1px solid #061647;
    padding-top: 10px;
    margin-top: 10px;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
	.info .contest .image_cotainer{
		text-align: center;
  width:90%!important;
		height:186px!important;
	margin:0 auto;
margin-top:10px;
}
	.info .contest {
padding:15px;
	
}
	.info .contest .sp img{
		text-align: center;
 height:100%;
}
	.info .contest {
padding:15px;
	
}
		.info .contest .image_cotainer img{
  width: 100%!important;

	text-align: center;
}
	.topnews a::before{
  padding: 1px; /* 線の太さ */


}
}
/* スライドコンテンツ
-----------------------------------*/
.scroll-container {
  overflow: hidden;
  width: 100vw; /* 画面幅いっぱい */
  background: #fff;
}
/* コンテンツを2回繰り返して横並びに */
.scroll-content {
  display: flex;
  width: max-content; /* 子要素の幅に応じて伸びる */
  animation: scroll-left 30s linear infinite;
}
.scroll-content img {
  height: 273px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* スマホ対応 */
@media (max-width: 768px) {
  .scroll-content img {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .scroll-content img {
    height: 100px;
  }
}
/* イルミネーション
-----------------------------------*/
.illumination {
  background-image: url("../images/index/bg04.jpg");
  background-size: cover;
  ;
  background-position: center; /* 常に中央を基準に配置 */
}
.illumination .map_container {
  margin: 50px 0;
}
.map_container {
  position: relative;
  display: inline-block;
}
.map_image {
  width: 100%;
  height: auto;
  z-index: 3;
}
.map_button01 {
  position: absolute;
  top: 20%;
  ;
  left: 70%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.map_button02 {
  position: absolute;
  top: 70%;
  ;
  left: 75%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.map_button03 {
  position: absolute;
  top: 80%;
  ;
  left: 38%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.map_button04 {
  position: absolute;
  top: 65%;
  ;
  left: 7%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.map_button05 {
  position: absolute;
  top: 50%;
  ;
  left: 57%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.map_button06 {
  position: absolute;
  top: 20%;
  ;
  left: 12%;
  z-index: 100;
  width: 7%;
  height: auto;
}
.modal_gallery {
  border: 2px solid #facf6b;
  padding: 50px;
  text-align: left;
}
.modal_gallery h3, .modal_gallery p {
  margin-bottom: 30px;
}
.musician h3, .musician p {
  margin-bottom: 30px !important;
}
.musician p {
  text-align: left !important;
}
/* イルミネーションショー
-----------------------------------*/
.illumination .show {
  padding: 50px;
  background-image: url("../images/index/bg02.jpg");
  background-size: 100% 100%; /* 画面全体をカバー */
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: center center; /* 常に中央を基準に配置 */
  color: #fff;
}
.illumination .show img {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .illumination .show {
    padding: 25px 20px;
    background-image: url("../images/index/sp-bg02.jpg");
  }
  .illumination .show img {
    margin-bottom: 25px;
  }
  .musician h3, .musician p {
    margin-bottom: 15px !important;
  }
  .modal_gallery {
    padding: 25px;
  }
  .modal_gallery h3, .modal_gallery p {
    margin-bottom: 15px;
  }
}
/* イルミネーション紹介
-----------------------------------*/
.illumination .program {
  padding-top: 100px;
  width: 100%;
}
.illumination .program li {
  margin-bottom: 30px;
}
.illumination .program li:last-child {
  margin-bottom: 0;
}
.illumination .program .left {
  width: 65%;
}
.illumination .program .left img {
  margin-bottom: 20px;
}
.illumination .program .right {
  width: 32%;
  height: auto;
}
@media (max-width: 767px) {
  .illumination .program {
    padding-top: 50px;
  }
  .illumination .program .left {
    width: 100%;
  }
  .illumination .program .left img {
    margin-bottom: 0;
  }
  .illumination .program .right {
    width: 100%;
  }
}
/* イベント紹介
-----------------------------------*/
.event {
  background-image: url("../images/index/bg03.jpg");
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.event .flexbox {
  flex-wrap: wrap;
}
.event .flexbox li{
  width: 32%;
  margin-right: 2%;
  margin-bottom: 30px;
}
.event .flexbox li a p {
	color:#fff;
}
.event .flexbox {
  justify-content: flex-start;
}
.event .flexbox li:nth-of-type(3n) {
  margin-right: 0;
}
.event h3 {
  font-size: 2.0rem;
  line-height: 1.5;
  font-weight: bold;
  color: #facf6b;
  margin: 20px 0 10px 0;
  text-align: center;
}
.contest,.event .artwork{
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-image: linear-gradient(90deg, #83d2de, #4b58de);
  z-index: 1;
  justify-content: space-between;
}

.event .flexbox {
  align-items: center
}
.event .archive {
  align-items: baseline;
}
.contest::before, .event .artwork::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffcb, #c19740);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 20px;
  padding: 4px; /* 線の太さ */
  z-index: -1;
}
.event .contest {
  justify-content:space-between!important;
}
.contest .contest_text {
  width: 59%;
}
.event .artwork .contest_text {
  width:100%;
}
.contest .image_cotainer{
  width: 33%;
  vertical-align: middle;
  position: relative;
  height: 154px;
}
.contest .image_cotainer img{
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contest .contest_text h3 ,.event .artwork .contest_text h3{
  text-align: left;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  margin-top: 0;
}
.event a .contest_text{
color:#fff;
}
.event .artwork{
	margin-top: 30px;
	  align-items: top!important;
}

.event .citizen .artwork{
	margin-top:30px;
background-image: linear-gradient(90deg, #f05b22, #8b5cf6);
}

@media (max-width: 767px) {
  .event .flexbox {
    display: flex;
  }
  .event h3 {
    text-align: left;
  }
  .event .flexbox li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 15px;
  }
  .event .flexbox li:nth-of-type(2n) {
    margin-right: 0;
  }
  .event .flexbox li:nth-of-type(3n) {
    margin-right: 5%;
  }
	 .event .flexbox li:nth-of-type(6n) {
    margin-right: 0;
  }
  .event .contest ,.event .artwork{
    display: block;
    padding: 15px;
    text-align: center;
  }
  .contest .contest_text,.event .artwork .contest_text{
    width: 100%!important;
  }
  .contest .image_cotainer,.event .artwork .image_cotainer {
    width: 100%!important;
  }
 .contest .contest_text h3,.event .artwork .contest_text h3 {
    padding-bottom: 10px;
  }
.contest .image_cotainer,.event .artwork .image_cotainer {
    width: 100%;
    height: 85px;
    margin-top: 10px;
  }
.contest .image_cotainer img ,.event .artwork .image_cotainer img{
    width: 173px;
  }
  .event h3 {
    font-size: 1.6rem;
  }
 .contest , .event .artwork{
    border-radius: 10px;
  }
 .contest::before , .event .artwork::before{
    border-radius: 10px;
    padding: 2px; /* 線の太さ */
  }
}
/* キッチンカー
-----------------------------------*/
.calender iframe {
  width: 100%;
  height: 600px;
}
#calendar {
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.fc-header-toolbar, .fc-view-harness, .fc-col-header, .fc-daygrid-body, .fc-scrollgrid-sync-table {
  width: 100%;
  max-width: 1040px;
}
.fc-prev-button::after, .fc-next-button::before {
  content: attr(title);
}
.fc .fc-toolbar.fc-header-toolbar {
  background-color: #000;
  padding: 0 10px;
}
th .fc-col-header-cell .fc-day .fc-day-mon {
  background-color: #9fa0a0;
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
}
.car h3 img {
  height: 70px;
}
.car .contents {
  padding-top: 0;
}
.car ul li p {
  text-align: center;
  font-size: 2.0rem;
  line-height: 1;
  font-weight: bold;
  color: #facf6b;
  margin-top: 25px;
}
.car .flexbox {
  text-align: center;
  font-size: 2.0rem;
  line-height: 1;
  font-weight: bold;
  color: #facf6b;
  margin-top: 25px;
}
.car h3 {
  margin: 50px 0 30px 0;
}
.car ul {
  margin-bottom: 50px;
}
.car ul li {
  width: 18%;
}
.night_bg {
  background-image: url("../images/index/bg06.jpg");
  background-position: bottom;
  background-size: cover;
  color: #fff;
}
.amusement .contents {
  padding-top: 0;
}
.amusement h2 img {
  width: 100%;
  height: 100%;
}
.amusement  {
padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .car h3 img {
    height: 35px;
  }
  .calender iframe {
    width: 100%;
    height: 300px;
  }
  .night_bg {
    background-position: bottom;
    background-size: auto 100%;
  }
  .car h3 {
    margin: 25px 0;
  }
	.car .text {
    margin-bottom: 30px;;
  }
  .car h3 img {
    height: 34px;
  }
  * {
    box-sizing: border-box;
  }
  .sliderArea {
    max-width: 100%;
    margin: 0 auto;
    height: 40vw;
  }
	#slick-slide-control33,#slick-slide-control34,#slick-slide-control35,#slick-slide-control32,#slick-slide-control42{
		display: none!important;
	}
  .regular_3 {
    height: 40vw;
  }
  .slick-prev:before, .slick-next:before {
    color: transparent !important;
  }
  .sliderArea div p {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
    color: #facf6b;
    margin-top: 10px;
  }
  .slick-slide {
    margin: 0 5px;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
  }
  .slick-prev, .slick-next {
    z-index: 1;
  }
  .slick-prev:before, .slick-next:before {
    color: #000;
  }
  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  #slick-slide-control00,  #slick-slide-control01, #slick-slide-control02, #slick-slide-control03,  #slick-slide-control04,   #slick-slide-control05, #slick-slide-control10, #slick-slide-control11, #slick-slide-control12, #slick-slide-control13 {
    display: none;
  }
  .slick-active {
    opacity: 1;
  }
  .slick-next {
    right: 0 !important;
    top: 35% !important;
  }
  .slick-prev {
    left: 0 !important;
    top: 35% !important;
  }
  .slick-prev:before {
    left: 0 !important;
    top: 35% !important;
    background-image: url("../svg/prev.svg") !important;
    background-repeat: no-repeat;
    background-position: left;
    opacity: 1 !important;
  }
  .slick-next:before {
    right: 0 !important;
    top: 35% !important;
    background-image: url("../svg/next.svg") !important;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 1 !important;
  }
  .slick-current {
    opacity: 1;
  }
  .slick-prev, .slick-next {}
  .thumb {
    margin: 20px 0 0;
  }
  .thumb .slick-slide {
    cursor: pointer;
  }
  .thumb .slick-slide:hover {
    opacity: .7;
  }
  .amusement h2 img {
    width: 100%;
    height: auto;
  }
}
/* お知らせ
-----------------------------------*/
.snow_bg {
  background-image: url("../images/index/bg05.jpg");
  background-position: top;
  background-size: 100% auto;
}
.enquete .contents {
  padding: 0;
}
.news .list-news li {
  padding: 40px 0;
  border-bottom: 2px solid #b19552;
  position: relative;
}
.news .list-news li img {
  height: 16px;
  position: absolute;
  right: 0;
}
.news .list-news a {
  display: table;
  width: 100%;
}
.news .list-news .date {
  font-size: 1.6rem;
  display: table-cell;
  width: 6.5em;
  line-height: 1;
  vertical-align: middle;
}
.news .list-news .title {
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .snow_bg {
    background-position: center;
    background-size: 100% auto;
  }
  .news .list-news .title {
    display: block;
  }
  .news .list-news li {
    padding: 15px 0;
    line-height: 1;
  }
  .news .list-news .date {
    padding-bottom: 10px;
  }
}
.enquete h2 {
  margin-bottom: 0;
	margin-top:50px;
}
.enquete h2 img {
  width: 100%;
  height: auto;
}
.footer .contents {
  padding-bottom: 50px;
}
.sponsor .contents span {
  font-weight: bold;
  color: #b19552;
}
.sponsor .contents img {
 height:25px;
	vertical-align: middle;
	margin-right:5px;
}
.sponsor .contents img:first-of-type{
 height:30px;
	vertical-align: top;
}

.footer_container {
  text-align: center;
  padding-bottom: 100px;
}
.footer .center-wrapper {
margin-bottom: 50px;
	
;
}
@media screen and (max-width: 767px) {
  .enquete h2 img {
    width: 100%;
    height: auto;
  }
	.sponsor .contents img {
 height:15px;
	
	margin-right:3px;
}
.sponsor .contents img:first-of-type{
 height:20px;

}
  .footer_container {
    padding-bottom: 50px;
  }
  .footer p {
    font-size: 1.2rem;
  }
}
/* トップスローガン
-----------------------------------*/
@media screen and (max-width: 767px) {}