@charset "utf-8";
/* フォント弄るならココ */
.monomaniac-one-regular {
  font-family: "Monomaniac One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.noto-sans-jp- {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


  

body{
  font-family:  "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  color: #5a5b99;
}
a{
  color: #9370db;
}
hr{
  border-top: 2px solid #5a5b99;
  margin-top: 30px;
}
.menu_list a{
  font-family: "Monomaniac One", sans-serif;
}


/* ２カラム */
.top{
  display: flex;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  flex: wrap;

}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.main{
  margin: 20px;
  overflow-y: scroll;
  max-height: 470px;
  flex: wrap;
}
.top_page img{
  display: flex;
  flex: wrap;
  aspect-ratio: 1/1;
  position: relative;
  width: 600px;
  height: 100%;
  object-fit: cover;
}
.top_page p{
  position: absolute;
  color: #ECEFF5;
  top: 350px;
  left: 200px;
  font-family:  "Monomaniac One", sans-serif;
  font-size: 7em;
  text-shadow: 0 0 20px rgba(0,0,0,22%);
  flex: wrap;
}

.sub{
  padding-top: 30px;
  flex-wrap: wrap;
}
.info_title{
  margin: 0 auto 0 10px;
  font-size: large;
  font-weight: bolder;
  color: #323377;
}
.info{
  position: relative;
  background-color: #ECEFF5;
  border: solid 2px #323377;
  border-radius: 13px;
}
.info{
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 600px;
  height: 13em;
  margin: 0 auto 0 10px;
  overflow-y: scroll;
}
@media (min-width:768px) {
  .info{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.info dd,.info dt{
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em;
}
.info dt{
  font-style: normal;
  font-weight: initial;
  color: #5a5b99;
}
.info dt time{
  margin-right: .5em
}


.menu_list li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu_list a{
	display: block;
	text-decoration: none;
	background: #ECEFF5;
	color: #ff349a;
	text-align: right;
	margin: -.3em 0;
  font-size: 35px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.menu_list a:hover {
  background: #ff349a;
  color: #ECEFF5;
}



/* Responsive */
@media (min-width: 600px) {
  .flexbox {
    display: -webkit-flex;
    display: flex;
  }
  .top {
    margin: 0 10px 0 0;
  }
}
@media (max-width: 640px) { 
     .sub{
      width: 100%;
      height: 100%;
     }
     .top_page{
      width: 100%;
      height: 100%;
     }
     
     .top{
      flex-wrap: wrap;
      overflow-y: scroll;

     }
     .container{

       overflow: scroll;
     }
  
  
 }

/* 背景の格子 */ 
body {
  height: 100%;
  --color: #E1E1E1;
  background-color: #ECEFF5;
  background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
      linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
  background-size: 55px 55px;
}


/* メインウィンドウ */
.container{
  position: relative;
  background-color:#ECEFF5;
  border-radius: 30em;
  position: relative;
  max-width: 800px;
  max-height: 500px;
  margin: 50px auto;
  border-radius: 20px;
  overflow: auto;
  box-shadow: 0 0 20px rgba(0,0,0,32%);
}


.container p {
    margin: 0;
    padding: 0;
}

/* 上のバー*/
.container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #323377;
    z-index: 3;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #999;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}







.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #9370db;
    border-radius: 100%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #9370db;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #9370db;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

 @media (min-width: 640px) { 
     .menu-btn{
      visibility: hidden;
     }
 }
 @media (max-width:640px){
       .main{
      width: 100%;
;
     } 
     .top_page p{
      left: auto;
      font-size: 5em;
     }
     ul.zubolog{
      width:100%;
     } 
      
}


 .caution{
  text-align: center;
  margin-top: 160px;
 }
.caution a{
   text-decoration:none;
}


 .enter_btn {
  margin-top: 10px;
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #9370db;
  border:1px solid #9370db;
  background-color: #e5e7eb;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 50px;
}
.enter_btn:hover {
  color: #e5e7eb;
  border:1px solid #9370db;
  background-color: #9370db;
  border-radius: 50px;
}


/*保存防止 */
img{
	pointer-events: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}

.Copylight{
	font-size: 0.8rem;
	max-width: var(--article-width);
	margin: 0.7rem auto 0.7rem;
	text-align: center;
}