body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background-color: #ffff;
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  justify-content: center;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #50BAFF, #4049FF);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: circle(150%);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.01, 1);
  pointer-events: auto;
}

#loading-screen.is-hidden {
  clip-path: circle(0%);
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-chars1 {
  width: 30%;
  margin-bottom: 20px;
}

.loading-chars2 {
  width: 30%;
  margin-bottom: 20px;
}

.loading-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Maru Gothic";
}

.loading-text span {
  opacity: 0;
  animation: blink 1.5s infinite;
}

.loading-text span:nth-child(2) {
  animation-delay: 0.3s;
}

.loading-text span:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.title {
  display: block;
  margin: 0 auto;
  margin-top: 5vw;
  width: 80vw;
}

.subtitle {
  font-size: 20;
  text-align: center;
  color: #404040;
  margin: 0px;
  padding: 0%;
}

img {
  vertical-align: middle;
  /* baseline ではなく middle/top に揃える */
}


.iconsection {
  display: flex;
  /* flex-direction: row; */
  flex-wrap: wrap;
  justify-content: center;
}

.AEDmap {
  display: flex;
  justify-content: center;
}

.floormap {
  margin-top: 30px;
  margin: 30px auto;
  padding: 0;
}

h3 {
  text-align: center;
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}



.accordion-area img {
  width: 100%;
}

.accordion-area section {
  border: 1px solid #ccc;
}

#section1 {
  background-color: #83D1F8;
}

#section2 {
  background-color: #83D1F8;
}

#section3 {
  background-color: #83D1F8;
}

#section4 {
  background-color: #83D1F8;
}

#section5 {
  background-color: #83D1F8;
}

#section6 {
  background-color: #83D1F8;
}

/*アイコンの＋と×*/
.titl::before,
.titl::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;

}

.titl::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);

}

.titl::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.titl.close::before {
  transform: rotate(45deg);
}

.titl.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}



.sectiontitle {
  text-align: center;
}

.mapsection img {
  display: flex;
  margin: 20px auto;
  width: 90%;
  height: auto;
}

/* .mapsection {
        overflow: scroll;
        width: 80%;
        margin: 30px auto;
    } */

.AEDmap img {
  width: 100%;
}

#iconmap {
  width: 30px;
  transform: rotate(350deg);
  z-index: 1;
  position: relative;
  display: block;
  margin: 0 auto;
  /* 中央寄せ */
  max-width: 100%;
  /* はみ出し防止 */
  transform: rotate(350deg);
}

.accordion-area li {
  margin: 10px auto;
  width: 80%;
}

/*アコーディオンタイトル*/
.titl {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  padding: 3% 10% 3% 50px;
  transition: all .5s ease;
}

.icon,
.icon1 {
  width: 150px;
  margin-top: 10px;
}

.icon1 img {
  width: 27%;
}

.icon img {
  width: 30%;
}

.contents {
  padding: 3px;
  margin: 0 auto;
  width: 85%;
  background: radial-gradient(50% 50% at 50% 50%, #F9F4E5 0%, #ECE2BE 100%);
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

.pagetitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

@media (min-width: 768px){
  .subtitle {
    font-size: 40px;
    text-align: center;
    color: #404040;
    margin: 0px;
    padding: 0%;
  }
}

@media(min-width:1200px){
    .subtitle {
    font-size: 40px;
    text-align: center;
    color: #404040;
    margin: 0px;
    padding: 0%;
  }
}