@charset "UTF-8";

body{
  color : #333;
  font-family: "Sawarabi Gothic";
  font-size: 1rem;
}

.morning{
  background-color: #FAACA8;
  background-image: linear-gradient(0deg, #FAACA8 0%, #DDD6F3 100%);
}

.noon{
  background-color: #8ba4ff;
  background-image: linear-gradient(0deg, #8ba4ff 0%, #ffa8da 100%);
}

.night{
  background-color: #f1c6f1;
  background-image: linear-gradient(0deg, #f1c6f1 0%, #785aff 100%);
}

h1,h2,h3,header,.loadingIn,nav{
  font-family: "Patua One", serif;
  font-weight: 400;
  font-style: normal;
}

a{
  text-decoration : none;
}

a:link{
  color :#42529B;
}

a:visited{
  color :#42529B;
}

a:hover{
  opacity: 0.5;
}

a:active{
  color : #CBD9E6;
}

#loading{
  transition: all 1s;
  background-color: #ccc;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block grid;
  place-items: center;
}

#loading .loadingIn{
  text-align: center;
  line-height: 20px;
  font-size: 1.5rem;
}

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

header{
  width: 100%;
  height:auto ;
  text-align: center;
  padding-top: 20px;
  font-size: 1.3rem;
}

#menu-btn{
  width: 70px;
  height: 70px;
  background-color:rgb(255,255,255,0.5);
  border:solid #333 1px;
  position: fixed;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

#menu-btn i{
  background-color: #333;
  width: 35px;
  height: 2px;
  position: absolute;
  left: 17px;
}

#menu-btn i:nth-child(1){
  top:23px;
}

#menu-btn i:nth-child(2){
  top:33px;
}

#menu-btn i:nth-child(3){
  top:43px;
}

#menu-btn:hover{
  background-color:rgba(108, 40, 255, 0.5);
}

#menu-btn-active{
  width: 70px;
  height: 70px;
  border:solid #333 1px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

#menu-btn-active i{
  background-color: #333;
  width: 35px;
  height: 2px;
  position: absolute;
  left: 17px;
}

#menu-btn-active i:nth-child(1){
  transform: rotate(-45deg);
  top:33px;
}

#menu-btn-active i:nth-child(2),
#menu-btn-active i:nth-child(3){
  transform: rotate(45deg);
  top:33px;
}

#menu-btn-active{
  background-color: #fff;
}

#menu{
  width: 15rem;
  height: 100vh;
  position: fixed;
  top:0;
  right: 0;
  z-index: 4;
  background-color: #333;
  text-align: center;
  font-size:1.2rem;
  padding-top: 100px;
  translate: 100vw;
}

#menu img{
  width: 2rem;
  height: 2rem;
}

#menu ul{
  margin-bottom: 20px;
}

#menu li{
  list-style: none;
  margin-top: 10px;
}

#menu a:link{
  color: #ff6299;
}

#menu a:visited{
  color: #ff6299;
}

.wrap{
  width : 750px;
  margin: auto;
  padding-top: 50px;
}

.mainvisual{
  margin-bottom:100px;
  text-align: center;
  width : 100%;
  height : 450px;
  border-radius: 50px;
  background-image: url(../img/top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

section{
  margin-bottom: 10rem;
}

h1{
  font-size: 3rem;
}

h2{
  font-size: 2.2rem;
  width: 100%;
  height: 100px;
  text-align: center;
  background-image:url("../img/moon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px;
  line-height: 100px;
}

h3{
  font-size: 1.8rem;
  margin-top: 20px;
}

.smn{
  margin-top: 10px;
}

.smn img{
  border: solid #fff 1px;
  border-radius: 10px;
}

.old-smn{
  width: auto;
  height: 100px;
  overflow: hidden;
  display: inline-block;
}

.old-smn img{
  width: auto;
  height: 100%;
}

.info{
  overflow-y: scroll;
  border:#fff solid 1px;
  height: 100px;
}

footer{
  padding: 10px 0 20px 0;
  text-align : center;
  font-size: 15px;
  margin-top: 250px;
}


@media screen and (max-width:600px) {

.wrap{
  width : 100%;
  padding: 1rem;
}

.mainvisual{
  max-height : 15rem;
  background-size:cover;
  border-radius: 1rem;
}

  }