/* vhは横と縦の画面サイズ */
/* html{
  min-height: 100%;
  background: linear-gradient(#21314e, #172033);

} */

body {
  height: 100%;
  width: 99%;
  background: -moz-linear-gradient(#21314e, #172033);
  background: -webkit-linear-gradient(#21314e, #172033);
  background: linear-gradient(#21314e, #172033);
}

header {
  width: 100%;
  /* 幅いっぱいを指定 */
  height: 35px;
  /* 高さを50pxに指定 */
  padding: 50px 10px 10px 10px;
  /* ヘッダーに上下左右それぞれ余白を指定 */
  box-sizing: border-box;
  /* padding分を含んで幅を100%にするため */
  position: fixed;
  /* ウィンドウを基準に画面に固定 */
  top: 0;
  /* 上下の固定位置を上から0pxにする */
  left: 0;
  /* 左右の固定位置を左から0pxにする */
  display: flex;
  /* 中の要素を横並びにする */
  align-items: center;
  /* 中の要素を上下中央に並べる */
  z-index: 9999;
}

/* header {
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
} */


#header.scroll {
  position: fixed;
  background: #EEE;
  animation-name: anime;
  animation-duration: 0.3s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.title1 {
  background: rgba(17, 173, 245, 0.5);
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-shadow: inset 0 0 10px 15px #fef4e0;
}

.box {
  width: 800px;
  /* 横幅を200pxに指定 */
  height: 200px;
  /* 横幅を200pxに指定 */
  margin: 10px 200px 50px;
  border: 1px solid #daaf31;
  /* わかりやすくボーダーを引く */
  overflow-y: scroll;
  /* 縦方向にスクロール可能にする */
}

.program{
  text-align: center;
  font-size: 40px;
}


.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container .kuhaku {
  color: #fef4e0;
  padding: 0;
}

.container::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.container img {
  width: 150%;
}

.main {
  background-image: url(../img/adbn_web.PNG);
  background-size: 100%;

   height: 500px;
  /* width: 1200px;  */
}

.main .pcolor1 {
  padding-top: 100px;
}

.main .pcolor {
  margin: 0px 180px 90px 180px;
  font-size: 20px;
  background-color: rgb(218, 175, 49, 0.96);
  color: #21314e;
  -webkit-text-stroke: 0.5px #21314e;
  text-align: center
}

.schedule {
  color: #fef4e0;
  margin: -100px 0 0 0;
}

.schedule h2 {
  text-align: center;
  margin: -50px 0 0 0;
}



h1 {
  width: 100%;
  padding: 100px 0 0 0;
  text-align: center
}

.attention {
  text-align: center;
}

.title {
  text-align: center;
  font-family: 'Caveat', cursive;
}

.kuhaku .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.-News {
  color: rgb(163, 207, 243);
  margin: 30px 30px 30px 100px;
  text-align: left;
  font-size: 2.5rem;
  font-family: Courier;
}

/* 座標どこですか、、 */
/* 途中から画像がかぶさってしまいます */

/* 色が青から変わりません */
.url {
  color: rgb(171, 189, 235);
  text-align: center;
  font-size: 2rem;
  font-family: Courier;
  padding: 1em;
}

.img {
  text-align: center;
  padding: 0px 30px 30px 10px;
}

.img .sns {
  box-shadow: 0 0 10px 10px rgba(255, 255, 255);

}

a {
  text-decoration: none;
  color: #b9efbca0;
  /* 今回は#000000を指定していますが、好きな色を指定できます */
}

.slide-container {
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-wrapper {
  display: flex;
  animation: slide-flow 20s infinite linear 1s both;
}

.slide {
  width: 300px;
  object-fit: cover;
  border: 1px solid #ddd;
}

@keyframes slide-flow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* メニューバー */
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -50%;
  width: 50%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgb(254, 254, 254, 0.98);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 80px;
  height: 80px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 4px;
  border-radius: 5px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 28px;
}

.openbtn span:nth-of-type(3) {
  top: 40.5px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* ここから出演者情報 */
.sub {
  text-align: center;
}

.yohaku {
  margin: 10px;
}

.color {
  background-color: rgb(255, 255, 255);
  height: 50%;
  width: 50%;
  position: absolute;
  position: fixed;
  inset: 0;
  margin: auto;
  border-radius: 20px
}

.bg {
  background-color: rgb(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  position: fixed;
  inset: 0;
  margin: auto;
  visibility: hidden;
}

.bg.is-active {
  opacity: 1;
  /* 非表示を解除 */
  visibility: visible;
  /* 非表示を解除 */
}


/* アクセス */
/* .flex {
  display: flex;

}

.flex .image {
  width: 800px;
  left: 50px;
  margin: 0 0 50px 0;
  padding: 0.5em;
  overflow: hidden;
  position: relative;

}

.flex .table {
  margin: 75px 0 0 0;
  height: 250px;
  width: 530px;
  border-collapse: separate;
  border-spacing: 5px;
}

table th {
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
  background-color: rgb(252, 175, 240);
  color: rgb(65, 57, 64);
  width: 120px;
}

table td {
  color: rgb(40, 40, 40);
} */

/* アクセス */

h1 {
  color: #fef4e0;
}

.attention {
  color: #fef4e0;
}

.kuhaku {
  color: #fef4e0;
  padding: 5em 10em 0 3.5em;
}

.kuhaku .title {
  margin: 0;
  padding: 0;
  text-align: left;
  font-weight: bold;
  font-size: 30px;
}

.kuhaku .flex {
  display: flex;
  /*横並び*/
}

.flex .image {
  width: 1080px;
  /*画像サイズ指定*/
  /* margin: 5px; */
  padding: 0;
  overflow: hidden;
  position: relative;
  left: 10px;
}



.flex .right {
  margin: 50px 0 0 0;
  height: 100px;
  width: 1050px;
  padding: 0;
  right: 150px;
}

.flex .text1 {
  margin: 50px 0 0;
  padding: 0;
  font-size: 17px;
}


/* ニュース */


.notice ul {
  width: 500px;
  color: #fef4e0;
}

.notice li {
  border-bottom: 1px solid #ccc;
  list-style: none;
}

.notice a {
  text-decoration: none;
  display: block;
  color: #a4b9d8;
  padding: 10px 0;
}

.notice a:hover {
  background-color: #ccc;
}

.notice span {
  color: #737373;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}


.notice p {
  color: #131313;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0bd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Q&A */

.center {
  text-align: center;
  padding: 50px;
}

.center .qkuuhaku {
  text-align: left;
  color: #fef4e0;
}

.center .qkuuhaku .hida {
  margin: 0 0 0 10em;

}

.D {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.D:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.E {
  display: none;
  height: 100px;
  font-size: 18px;
  margin: 5px 5px 50px;
}

.A {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.A:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.B {
  display: none;
  height: 100px;
  font-size: 18px;
}

.C {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.C:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.F {
  display: none;
  height: 100px;
  font-size: 18px;
  margin: 5px 5px 180px;
}

.G {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.G:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.H {
  display: none;
  height: 100px;
  font-size: 18px;
  margin: 5px 5px 380px;
}

.i {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.i:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.j {
  display: none;
  height: 100px;
  font-size: 18px;
  margin: 5px 5px 5px 0px;
}

.j a {
  color: #a4b9d8;
}

a:hover {
  /*マウスが上に乗っている状態*/
  color: #daaf31;
  text-decoration: underline;
}

.k {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 19px;
  color: #daaf31;
}

.k:hover {
  background-color: rgb(120, 123, 126, 0.5);
}

.l {
  display: none;
  height: 100px;
  font-size: 18px;
  margin: 5px 5px 0px;
}

.end {
  text-align: center;
  color: #fef4e0;
}

.example {
  position: relative;
}

.example h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  color: #fef4e0;
  /*文字の装飾は省略*/
}

.example img {
  width: 100%;
}



.end .aki {
  padding: 2em;
}


.aki .flex {
  display: flex;
  /*横並び*/
}

.aki .flex .image {
  width: 1000px;
  /*画像サイズ指定*/
  margin: 5px;
  padding: 0px;
  overflow: hidden;
  position: relative;
  left: 150px;
  border-radius: 50px;
  box-shadow: 0 0 10px 10px #21314e;
}

.aki .flex .right {
  margin: 75px 0 0 0;
  height: 90px;
  width: 1400px;
  padding: 0;
}

.aki .flex .title {
  margin: -55px 50px 45px 210px;
  padding: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}

.flex .title3 {
  margin: -55px 50px 45px 210px;
  padding: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}

.aki .flex .toy {
  margin: -55px 50px 45px 210px;
  padding: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
}

.right .manu a {
  color: #a4b9d8;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}

.manu a:hover {
  /*マウスが上に乗っている状態*/
  color: #daaf31;
  text-decoration: underline;
}



.aki .flex .text {
  color: rgb(178, 184, 185);
  margin: 10px 0 0;
  padding: 0;
  left: 50px;
}

.staff {
  font-size: 2em;
  color: #fef4e0;
  padding-left: 8em;
}

.artist {
  font-size: 2em;
  color: #fef4e0;
  padding-left: 2em;
}

.color .flex {
  display: flex;
  /*横並び*/
}

.flex .image {
  width: 800px;
  /*画像サイズ指定*/
  margin: 30px 5px 0 20px;
  padding: 5px;
  overflow: hidden;
  position: relative;
}

.flex .right {
  margin: 75px 0 0 0;
  height: 100px;
  width: 900px;
  padding: 0;
}

.flex .title {
  color: rgb(0, 0, 0);
  margin: -19px 0 0 -30px;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}

.flex .text {
  color: rgb(5, 5, 5);
  margin: 15px 15px 0 5px;
  padding: 0;
}

.kari {
  margin: -120px 0 50px 0;
}