/*共通*/
.PC_none{
  display: none;
}
html, body {
  height: auto;         /* autoのまま */
  overflow-x: hidden;   /* 横スクロールだけ隠す */
  overflow-y: auto;     /* 縦スクロールは普通にできる */
  margin: 0;
  padding: 0;
}

/*ロード画面*/

#loading {
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #7C9FE6;
    user-select: none; /*クリック不可*/
}

.load_logo {
    position: absolute;
    top: 45vh; /* 素材の都合でロゴの表示位置をやや調整 */
    left: 50vw;
    transform: translate(-50%, -50%);
    width: 500px; /* ロゴのサイズ調整 */
}

#loading.animated{
    animation: load_fade 2.5s ease 0s forwards; 
}

/* @keyframesアニメーションの制作 */
@keyframes load_fade{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        display: none;
    }
}


.dots {
  display: flex;
  align-items: center; 
  justify-content: center; 
  margin-top: 25vw;
}
.dots .dot {
    width: 12px; height: 12px;
    margin: 0 5px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}
.dots .dot:nth-child(1) { animation-delay: 0s; }
.dots .dot:nth-child(2) { animation-delay: 0.2s; } /* Fixed delays for simplicity */
.dots .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
}
/* ヘッダー */
.header{
  height: 80px;
  width: 100%;
  background-color: #7C9FE6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 99;
  font-family: "Zen Maru Gothic", sans-serif;
}
.header_logo{
  width: 200px;
  height: auto;
  margin-left: 40px;
}
.header_logo img{
  width: 100%;
  height: 100%;
}
.nav{
  max-width: 680px;
}
.nav ul{
  display: flex;
  justify-content: space-around;
  gap: 16px;
  padding: 40px;
  color: white;
  font-size: 20px;
}
.toggle{
  display: none;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1210;
  transition: 0.3s;
}

.toggle span{
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  transition: 0.3s ease;
}
.toggle.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle.active span:nth-child(2){
  opacity: 0; /* 真ん中の線を消す */
}
.toggle.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}

/* サイドの写真ループエリア */
.scroll_loop_wrap{
  display: flex;
  justify-content: space-between;
  position:relative;
}
.cont_all{
  width: 60vw;
  margin: 0 ;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  position: relative; /* absolute だと高さ計算されない */
  
}

.scroll_left{
  overflow: hidden; 
  position: fixed;
  left: 0;
  animation: slide 180s infinite linear;
}
.scroll_right{
  overflow: hidden; 
  position: fixed;
  right: 0;
  animation: slide-reverse 180s infinite linear ;
}
.scroll_loop_item{
  width: 20vw;
  height: auto;
}
.scroll_loop_item img{
  width: 100%;
  height: auto;
}

@keyframes slide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes slide-reverse {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(); }
}


/* メインビジュアル */
.mv{
  margin-top: 80px;
  height: 620px;
  background-image: url(../images/background.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.mv h1{
  width: 40vw;
  position: absolute;
  transform: translate(-50% ,-50%);
  left: 50%;
  top: 45%;
}
.mv h1 .title_logo{
  width: 100%;
  height: 100%;
}

.quiz_banner{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #FF7D7D;
  text-align: center;
  position: absolute;
  top: 80%;
  right: 40px;
  z-index: 2;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.quiz_banner p{
  font-size: 16px;
  margin-top: 40px;
  line-height: 24px;
  color: white;
}
.quiz_banner img{
  margin-top: 20px;
  width: 100px;
  height: auto;
  transform: rotate(-15deg);
}

/*カウントダウン*/
.countdown{
margin-bottom: 0;
background-color: #7C9FE6;
padding: 130px 0;
position: relative;
text-align: center;
color: white;
letter-spacing: 3px;
}
.countdown span{
  font-size: 40px;
  font-weight: bold;
}
.countdown h2{
  font-size: 24px;
}
.separator_1{
  position: absolute;
  transform: translate(-50%,-50%);
  top: 100%;
  z-index: -5;
  width: 65vw;
}

/*テーマについて*/
.about{
  padding: 130px 0;
  max-width: 50vw;
  margin: 0 auto;
}
.about h2{
  font-size: 24px;
  font-weight: bold;
}
.about_event{
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 700px;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.about_event::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: url(../images/background.webp) center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  padding: 10px;
  z-index: -1;
}
.about_event .about_text{
  font-size: 16px;
  margin-top: 14px;
  line-height: 21px;
  text-align:justify;
}
.about_thema{
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 700px;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.about_thema::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: url(../images/background.webp) center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  padding: 10px;
  z-index: -1;
}

.thema{
  font-size: 20px;
  font-weight: bold;
  margin-top: 14px;
}
.thema_text{
  margin-top: 34px;
  font-size: 16px;
  line-height: 21px;
  text-align:justify;
}


.poster h3{
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 30px;
}
.thema_poster{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.class{
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.name{
  font-size: 20px;
}
.poste_detail_text{
  margin-top: 10px;
  max-width: 20vw;
  margin-right: 30px;
  font-size: 16px;
  line-height: 21px;
  text-align:justify;
}
.poster_img{
  max-width:234px;
  height: auto;
  border: solid 1px #9E9E9E;
}
.poster_img img{
  width: 100%;
  height: 100%;
}
.poste_img_b{
  width: 130px;
  height: auto;
  margin: 0 auto;
}
.poste_img_b img{
  width: 100%;
  height: 100%;
}
.works h3{
  text-align: center;
}
.works_about{
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.posteres{
  display: flex;
  justify-content: space-around;
}
.about_thema{
  position: relative;
}

.cm{
  margin: 0 auto;
  text-align: center;
}
.movie_wrap{
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.cm iframe{
  margin: 0 auto;
  border: 1px solid #ccc;
  width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.cm h2{
  text-align: center;
  margin-bottom: 30px;
}
.cm p{
  text-align: center;
  margin-top: 20px;
}

/*実行委員ブログ*/
.blog{
  padding: 130px 0;
  background: url(../images/background.webp) center center no-repeat;
  background-size: cover;
}
.blog h2{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #7C9FE6;
}
.blog_cs{
  font-size: 16px;
  color: rgb(0, 0, 0);
  text-align: center;
  margin-bottom: 30px;
}
.blog_cs span{
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.about_fesmember{
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 50px;
  color: rgb(0, 0, 0);
}
.about_fesmember_text h3{
  font-size: 20px;
  font-weight: bold;
  color: #7C9FE6;
}
.about_fesmember_text p{
  font-size: 16px;
  margin-top: 30px;
  line-height: 21px;
  text-align:justify;
}

/*お知らせ*/
.news{
  position: relative;
  background: white; /* 中央部分の白背景 */
  overflow: hidden;
  padding: 130px 0;
  z-index: -6;
}

.news::before,
.news::after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 0 50px 0 0; /* 角を丸める */
}

.news::before {
  height: 100%;
  width: 80%;
  top: 0;
  left: -10%;
  background: #fdf0a1; /* 黄色 */
  z-index: 1;
}

.news::after {
  width: 100%;
  height: 60%;
  bottom: 0;
  right: -10%;
  background: #91a4f1; /* 青 */
  z-index: 0;
}
.news_wrap{
  margin: 0 auto;
  max-width: 700px;
  min-height: 50vh;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.news_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: url(../images/background.webp) center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 10px;
  z-index: -1;
}
.news_wrap h3{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.news_list li{
  border-top: solid 1px #ccc;
  padding: 15px 0;
}
.news_list li a{
  margin: 0 20px;
}
.news_list li .date{
  display: block;
  font-size: 14px;
  margin-right: 30px;
}

.news_list li:last-child{
  border-bottom: solid 1px #ccc;
}
.separator_border{
  height: 50px;
  width: 100%;
  text-align: center;
  background-image: url(../images/background.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*東京電子クイズ*/
.quiz_top{
  padding: 130px 0;
  background-color: #7C9FE6;
  text-align: center;
  color: white;
  position: relative;
}
.quiz_top h2{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.quiz_abouttext{
  font-size: 20px;
  margin-bottom: 20px;
}
.quiz_abouttext span{
  font-size: 16px;
}
.quiz_keyvisual{
  max-width: 364px;
  height: auto;
    margin: 0 auto;
}
.quiz_keyvisual img{
  width: 100%;
  height: auto;
}
.quiz_top a{
  display: block;
  color: #7C9FE6;
  font-size: 16px;
  width: 230px;
  padding: 15px 0;
  border-radius: 25px;
  background-image: url(../images/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 20px auto;
}
.quiz_cap{
  line-height: 20px;
}
.separator_2{
  position: absolute;
  transform: translate(-50%,-50%);
  top: 100%;
  z-index: -5;
    width: 65vw;
}

/*アクセス*/
.access{
  padding: 130px 0;
}
.access_wrap{
  margin: 0 auto;
  max-width: 700px;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.access_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: url(../images/background.webp) center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  padding: 10px;
  z-index: -1;
}
.access_contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.access h2{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.access_text{
  font-size: 16px;
  line-height: 24px;
}
.access_text .adress{
  margin-bottom: 10px;
}
/*フッター*/
footer{
  background-color: #7C9FE6;
  padding: 50px;  
}
small{
  display: block;
  text-align: center;
  color: white;
  font-size: 14px;
}



/*クイズページ*/
.quiz_wrap{
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 700px;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.quiz_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #7C9FE6 center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 10px;
  z-index: -1;
}

.quiz_cont_all{
  padding-top: 80px;
  height: 100%;
  background: url(../images/background.webp)  center/cover no-repeat;
}

.quiz_area{
  padding-top: 80px;
}

h1{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.quiz{
  text-align: center;
}

.about_quiz{
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
.about_quiz span{
  color: #FF7D7D;
}
.quiz_img img{
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.quiz p{
  font-size: 24px;
  margin-bottom: 20px;
}
.answers{
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.answers label{
  display: inline-block;
  cursor: pointer;
}
.box{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  font-size: 18px;
  text-align: center; 
  border-radius: 10px;
  border: solid 1px var(--color);
  transition: background-color 0.3s, color 0.3s;
}
.answers input:hover + .box {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.answers input:checked + .box {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.submit_btn{
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 40px;
  color: white;
  font-size: 18px;
  text-align: center; 
  border-radius: 10px;
  border: solid 1px;
  background-color: #91a4f1;
}

.retry {
  text-align: center;
  margin-top: 20px;
}
.retry_btn{
  margin-top: 10px;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
}
.btn_yes{
  display: block;
  width: 100px;
  height: 30px;
  color: white;
  font-size: 16px;
  text-align: center; 
  border-radius: 15px;
  border: solid 1px;
  background-color: #FF7D7D;
}
.btn_no{
  display: block;
  width: 100px;
  height: 30px;
  color: white;
  font-size: 16px;
  text-align: center; 
  border-radius: 15px;
  border: solid 1px;
  background-color: #91a4f1;
}

.correct_wrap{
  margin: 50px auto;
  max-width: 700px;
  padding: 3rem;
  background-color: white;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.correct_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #7C9FE6 center/cover no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 10px;
  z-index: -1;
}
#realtime{
  font-size: 12px;

}
.correct_wrap .strong{
  text-align: center;
  background-color: #FF7D7D;
  border-radius: 50px;
  font-size: 15px;
  color: white;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 10px 16px;

}
.strong span{
  font-size: 22px;
  font-weight: bold;
}
.correct_number{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.correct_number p{
  font-size: 30px;
  font-weight: bold;
}
.correct_number p span{
  font-size: 16px;
  font-weight: normal;
}
.correct_cap {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  margin: 10px 20px;
}
.quiz_border{
  padding: 1px 10px;
  background-color: #7C9FE6;
  margin-top: 50px;
}
.explanation{
  font-size: 24px;
  text-align: center;
  margin: 20px auto;
}

.quiz_top_btn{
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 40px;
  color: white;
  font-size: 18px;
  text-align: center; 
  border-radius: 10px;
  border: solid 1px;
  background-color: #91a4f1;
  margin-top: 20px; 
}

/*アニメーション*/
.menu li {
  position: relative;
  display: inline-block;
}
.menu li::after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #3b4687;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.menu li:hover::after {
  width: 100%;
}

.quiz_banner{
  transition: all 0.3s ease;
}
.quiz_banner:hover{
  transform: scale(1.15,1.15);
}
.quiz_top a{
  transition: all 0.3s ease;
}
.quiz_top a:hover{
  transform: scale(1.15,1.15);
}

.submit_btn{
  transition: all 0.3s ease;
}
.submit_btn:hover{
  transform: scale(1.15,1.15);
}
.quiz_top_btn{
  transition: all 0.3s ease;
}
.quiz_top_btn:hover{
  transform: scale(1.15,1.15);
}

@media screen and (max-width: 767px) {
  .SP_none{
    display: none;
  }
  .PC_none{
    display: block;
  }
  .header{
    height: 60px;
  }
  .header_logo{
    width: 160px;
    margin-left: 20px;
  }
  .menu {
    display: none;
    flex-direction: column;
    background: #7C9FE6;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
  }
  .menu.active {
  display: flex;
  }
  .toggle {
    display: flex;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 9999;
  }
  .nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 60px;  
    right: -100%; /* ← 初期は画面外 */
    width: 100%;
    height: calc(100vh - 80px);
    background: #7C9FE6;
    transition: right 0.4s ease; /* ← スライドアニメーション */
    padding: 0;
    margin: 0;
    z-index: 100;
  }
  .nav ul.active {
    right: 0;
  }
  .nav ul li{
    margin: 20px 0;
  }

  /* サイドの写真ループエリア */
  /* 親ラップはブロックで積む */
  .scroll_loop_wrap{
    display: block;
    position: static;
  }

  /* cont_all は普通の位置に */
  .cont_all{
    position: static;
    width: 100%;
    margin: 0 auto;
    transform: none;
    z-index: auto;
  }

  /* 左ループはmainの上に表示 横スクロールに */
  .scroll_left {
    margin-top: 60px;
    position: static;
    width: 200%;           /* 2セット分の幅に */
    height: 150px;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    animation: slide-x 60s infinite linear;
  }

  /* 右ループはmainの下に表示 横スクロールに */
  .scroll_right {
    position: static;
    width: 200%;           /* 2セット分の幅に */
    height: 150px;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    animation: slide-x-reverse 60s infinite linear;
  }

  .scroll_loop_item {
    flex: 0 0 auto;
    height: 150px;
    width: auto;
  }


  .scroll_loop_item img {
    height: 100%;
    width: auto;    /* 幅いっぱいにして横幅狭い問題を解消 */
    object-fit: cover;  /* 画像が縦横比崩れず収まる */
    display: block;
  }

  /* 横スクロール 左から右 */
  @keyframes slide-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* 横スクロール 右から左 */
  @keyframes slide-x-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }


  /* メインビジュアル */
.mv{
  margin-top: 0;
  height: 400px;
}
.mv h1{
  width: 80vw;
  position: absolute;
  transform: translate(-50% ,-50%);
  left: 50%;
  top: 45%;
}
.mv h1 .title_logo{
  width: 100%;
  height: 100%;
}

.quiz_banner{
  width: 150px;
  height: 150px;
}
.quiz_banner p{
  margin-top: 30px;
  font-size: 14px;
}
.quiz_banner img{
  margin-top: 15px;
  width: 80px;
}

/*カウントダウン*/
.separator_1{
  width: 120%;
  overflow: hidden;
}

/*テーマについて*/
.about{
  padding: 80px 0;
  max-width: 90vw;
}
.about_event{
  max-width: none;
  padding: 2rem;
}
.about_thema{
  max-width: none;
  padding: 2rem;
}

.thema_poster {
    display: flex;
    flex-direction: column; /* 縦並びに切り替え */
  }

  /* ここで左のコンテンツを下に移動 */
  .thema_poster > :first-child {
    order: 2; /* 左のコンテンツを2番目に */
  }

  .thema_poster > :last-child {
    order: 1; /* 右のコンテンツを1番目に */
  }
.poste_detail_text{
  max-width: none;
  margin-right: 0;
}
.poster_img{
  width:100%;
  height: 100%;
}

.works h3{
  text-align: center;
}
.poste_img_b{
  width: 150px;
  height: auto;
  margin: 0 auto;
}
.posteres{
  flex-wrap: wrap;
}
.works_wrap{
  margin-bottom: 30px;
}

/*実行委員ブログ*/
.blog{
  padding: 80px 30px;
}

.about_fesmember{
  display: block;
  justify-content: center;
  max-width: none;
  gap: 0;
  text-align: center;
}
.about_fesmember_text h3{
  margin-top: 20px;
}
.about_fesmember_text p{
  text-align: left;
  margin-top: 20px;
}


/*お知らせ*/
.news{
  padding: 80px 0;
}

.news_wrap{
  max-width: 90vw;
  padding: 2rem;
}

.news_list li{
  border-top: solid 1px #ccc;
  padding: 20px 0;
}
.news_list li a{
  margin: 0;
}
.news_list li .date{
  margin-right: 0;
}

.separator_border{
  height: 30px;
}

/*東京電子クイズ*/
.quiz_top{
  padding: 80px 30px;
}
.separator_2{
  width:120%;
  overflow: hidden;
}

/*アクセス*/
.access{
  padding: 80px 30px;
}
.access_wrap{
  max-width: 90vw;
  padding: 2rem;
}
.access_contents{
  display: block;
}
.access iframe{
  width: 100%;
}
.access_text{
  font-size: 14px;
  margin-top: 20px;
}
.access_text .adress{
  margin-bottom: 10px;
}
/*フッター*/
footer{
  background-color: #7C9FE6;
  padding: 30px;  
}
small{
  display: block;
  text-align: center;
  color: white;
  font-size: 10px;
}

/*クイズページ*/
.quiz_wrap{
  max-width: 90vw;
  padding: 2rem;
}
.quiz_cont_all{
  padding: 50px 0;
  height: auto;
}
.quiz_area{
  padding-top: 0;
}
.quiz_area h1{
  margin-bottom: 20px;
}
.about_quiz{
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.answers{
  flex-wrap: wrap;
  max-width: none;
  gap: 10px;
}
.answers label{
    width: calc(50% - 20px);
}
.box{
  width: 130px;
  height: 60px;
  font-size: 20px;
}
.answers input:checked + .box {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.submit_btn{
  width: 200px;
  height: 60px;
  margin-top: 30px;
}

.correct_wrap{
  max-width: 90vw;
  padding: 2rem;
}
.correct_wrap .strong{
  text-align: center;
  background-color: #FF7D7D;
  border-radius: 50px;
  font-size: 15px;
  color: white;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 10px 16px;
}
.strong span{
  font-size: 20px;
  font-weight: bold;
}
.correct_number{
  display: block;
  gap: 0;
  text-align: center;
}
.quiz_border{
  padding: 1px 10px;
  background-color: #7C9FE6;
  margin-top: 50px;
}
.explanation{
  font-size: 20px;
}

}