    /* ====== ローディング演出 ====== */
    .intro {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      z-index: 9999;
    }

    .intro img.char {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      width: 40%;
      max-width: 400px;
    }

    .intro img.left {
      left: -50%;
      animation: slideLeft 2s forwards;
      animation-delay: 0.5s;
    }

    .intro img.right {
      right: -50%;
      animation: slideRight 2s forwards;
      animation-delay: 0.5s;
    }

 .intro img.bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;   /* 全画面カバー */
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 2.0s;
}
    @keyframes slideLeft { to { left: 10%; opacity: 1; } }
    @keyframes slideRight { to { right: 10%; opacity: 1; } }
    @keyframes fadeIn { to { opacity: 1; } }

    .intro.fadeout {
      animation: fadeout 1.5s forwards;
    }
    @keyframes fadeout { to { opacity: 0; visibility: hidden; } }

    /* ====== 本文 ====== */
    .main {
      opacity: 0;
      transition: opacity 1s ease;
    }
    .main.show {
      opacity: 1;
    }
@media screen and (min-width:821px) {
  .pc-bg {
    display: block;
    position: fixed;
    height: auto;
    width: 100%;
  }
  .sp-bg {
    display: none;
  }
  .sp-top {
    display: none;
  }
  .content-menu li {
    list-style: none;
    width: calc(100%/3);
    padding: 10px 10px;
    box-sizing: border-box;
  }
  .content-kyousan li {
    list-style: none;
    width: calc(100%/3);
    padding: 10px 10px;
    box-sizing: border-box;
  }
}

@media screen and (max-width:820px) {
    .intro img.bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 2.0s;
  }
  .sp-bg {
    display: block;
    position: fixed;
    height: 100vh;
    width: auto;
  }
  .pc-bg {
    display: none;
  }
  .pc-top {
    display: none;
  }
  .content-menu li {
    list-style: none;
    width: calc(100%/2);
    padding: 10px 10px;
    box-sizing: border-box;
  }
  .content-kyousan li {
    list-style: none;
    width: calc(100%/2);
    padding: 10px 10px;
    box-sizing: border-box;
  }
}
.content-kyousan {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.content-kyousan li img {
  max-width: 100%;
  height: auto;
}
.content-kyousan li a:hover {
  text-decoration: none;
  background: none;
  color: none;
}
.content-menu {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.content-menu li img {
  max-width: 100%;
  height: auto;
}
.inner-m1 {
  background: none;
}
.bg-container-m1 {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.column-m1 {
  
  text-align: center;
  margin: auto;
  max-width: 1000px;
  padding: 20px 15px;
  text-shadow: 1px 1px 2px #fff;
}

.column-m1 p {
  margin: 0 1rem;
  padding: 0.5rem 0;
  color: #000;
  font-size: 1rem;
  line-height: 2rem;
  text-align: justify;
}
.column-m1 h2 {
  margin: 0 0rem;
  padding-top: 5vh;
text-align:center;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  border-bottom: solid 3px #000;
  position: relative;
}
.column-m1 h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #8360ff;
  bottom: -3px;
  width: 20%;
}

.column-m1 img {
	vertical-align: bottom;
}
.column-m1 hr {
  height: 1px;
  background-size: 8px 8px;
  margin:  1rem 0;
  border: 1px solid #ffffff00;
  background-color: #ffffff00;
}

.column-fes-white {
  padding: 3rem 1rem;
}
.nittei{
  margin: 0 1rem;
  padding: 0.5rem 0;
  }
.nittei table{
  padding: 0.5rem 0;

  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  
  }
  .nittei th {
  font-size : 130%;
  color: #fff;
  background: #8360ff;
  border: solid 2px #8360ff;
  text-shadow: 1px 1px 2px #000;
  }
  .nittei td {
  font-size : 130%;
  padding: 10px;
  color: #000;
  border: solid 2px #8360ff;
  }
  .column-fes-white a:hover {
    text-decoration: none;
    background: #8360ff;
    color: #000;
}

.column-fes-white a {
    text-decoration: underline;
    color: #8360ff;
}

.foeprivate{
  width: 100%;
  font-size: 35px;
  text-align: center;
  background: #FFCCDE;
 border:solid 2px #8360ff;
 padding:  20px 0;
}

.Kyosan_w100 {
  width: 100%;
  border-collapse: collapse;
}

.Kyosan_w100 th,
.Kyosan_w100 td {
 
}

  body.noscroll {
    overflow: hidden; /* スクロール禁止 */
  }