@charset "UTF-8";

/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
   position: fixed;
   top: 0;
   right: 0;
   width: 80px;
   height: 80px;
   border: none;
   cursor: pointer;
   z-index: 9999!important;
	background: #1f518e;
	font-family: "Barlow",'Noto Sans JP', sans-serif;
	background: -webkit-linear-gradient(45deg, rgba(3,153,206,1) 0%, rgba(13,66,138,1) 100%);
background: -o-linear-gradient(45deg, rgba(3,153,206,1) 0%, rgba(13,66,138,1) 100%);
background: linear-gradient(45deg, rgba(3,153,206,1) 0%, rgba(13,66,138,1) 100%);
	color: #333;
}


.menu-btn,
.menu-btn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-btn span {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: #FFF;
}
.menu-btn span:nth-of-type(1) {
  top: 22px;
}

.menu-btn span:nth-of-type(2) {
  top: 31px;
}

.menu-btn::after {
  position: absolute;
  left: 0;
  bottom: 15px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 0.8rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
	letter-spacing: 2px;
}
	
.open .menu-btn::after {
  content: 'CLOSE';
}
.open .menu-btn span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}

.open .menu-btn span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
-webkit-transition: all .5s;
transition: all .5s;
visibility: visible;
opacity: 1;
}
.open .menu-btn {
border-color: #1f518e;
}
.open .menu-btn-line{
background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
top: 0;
background: #fff
}
.open .menu-btn-line::before {
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.open .menu-btn-line::after {
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}


/**** MENU CONTENTS SETTING *****/
.menu {
position: fixed;
justify-content: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:rgba(235,247,255,0.95);
-webkit-transition: all .5s;
transition: all .5s;
visibility: hidden;
opacity: 0;
z-index: 100;
overflow-y: scroll;
margin: 0;
padding: 0;
}

header .img_box img {
	width: 100%;
}

header #lamp .btn_A {
	width: 35%;
	margin: auto;
}
header #lamp .img_box {
	mix-blend-mode: darken;
}

#fsj2024 header .itemlist .situation {
	text-align: center;
	font-size: 0.8rem;
	margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {


.menu-btn {
   position: fixed;
   top: 0;
   right: 0;
   width: 50px;
   height: 50px;
   border: none;
   cursor: pointer;
   z-index: 9999!important;
}
	
.menu-btn span:nth-of-type(1) {
  top: 10px;
}

.menu-btn span:nth-of-type(2) {
  top: 18px;
}

.menu-btn::after {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 0.6rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
	letter-spacing: 1px;
}
		
	
	
/**** MENU CONTENTS SETTING *****/
	
	
header #lamp .btn_A {
	width: 90%;
	margin: auto;
}

}