@charset "UFT-8";

html{
  font-size: 100%;
}
body{
  min-width: 320px;
}
img{
  max-width: 100%;
}
h1{
  font-size: 1.5rem;
}
#hamburger{
  opacity: 0;
  position: fixed;
}
label .burger{
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  margin: 5px;
}
label .burger::before,
label .burger::after,
label .burger .bar{
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25rem;
  border-radius: 5px;
  background: rgb(77, 34, 7);
  content: "";
  transition: all 0.5s;
}
label .burger::before{
  top: 0;
  transform-origin: top left;
}
label .burger .bar{
  top: 45%;
}
label .burger::after{
  bottom: 0;
  transform-origin:bottom left;
}
#menu{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
#menu::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 15rem;
  background: rgb(171, 231, 255);
  content: "";
  transform: translate(-100%);
  transform-origin: bottom left;
  transition: transform 0.3s;
}
#menu a{
  margin: 0.8rem 0;
  padding: 0.2rem 3rem;
  font-size: 2.2rem;
  font-family: "Modak", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(77, 34, 7);
  text-decoration: none;
  transform: translateX(-100%);
  transition: all 0.3s ;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#menu a:hover{
  scale: 1.1;
  color: cornsilk;
}

#hamburger:checked + label .burger::before,
#hamburger:checked + label .burger::after{
  width: 130%;
}
#hamburger:checked + label .burger::before{
  transform: rotate(45deg);
}
#hamburger:checked + label .burger::after{
  transform: rotate(-45deg);
}
#hamburger:checked + label .burger .bar{
  transform: scale(0);
}
#hamburger:checked ~ #menu::before{
  transform: translateX(0);
}
#hamburger:checked ~ #menu a{
  transform: translateX(0);
}

.sec-title{
  font-size: 6rem;
  text-align: center;
  font-family: "Modak", serif;
  font-weight: 400;
  font-style: normal;
  width: auto;
  margin-bottom: 0;
  color:rgb(77, 34, 7);
}
.archive-main{
  text-align: center;
  font-family: sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 0;
  color:rgb(77, 34, 7);
}
@media screen and (max-width: 530px){
  .archive-main{
    text-align: center;
    font-family: sans-serif;
    font-weight:bold;
    margin: 0;
  }
  .sec-title{
    font-size: 4.5rem;
    text-align: center;
    font-family: "Modak", serif;
    font-weight: 400;
    font-style: normal;
    width: auto;
    margin-bottom: 0;
    color:rgb(77, 34, 7);
  }
}

.story-text{
  display: inline-block;
  margin-bottom: 20px;
  text-align: left;
  gap: 20px;
}
.details{
  background-color: cornsilk;
  margin: 3% 0;
  padding: 0 0 8px 0;
}
.details-img{
  margin: 40px 20px;
}
.details-text{
  text-align: left;
  margin: 0 5%;
}
@media screen and (max-width: 480px){
  .details-text{
    text-align: left;
    margin: 0 5%;
    font-size: 0.8rem;
    line-height: 1.0rem;
  }
}


.story{
  margin: 3% 10%;
  text-align: left;
  line-height: 1.2;
}
@media screen and (max-width: 480px){
  .story{
    margin: 3% 10%;
    text-align: left;
    line-height: 0.8rem;
    font-size: 0.8rem;
  }
}




.details-section{
  background-color: rgb(249, 216, 216);
  box-shadow: 0 5px 0 #f7b0b6;
  color:rgb(77, 34, 7);
  border-radius: 5rem;
  display: inline-block;
  padding: 5px;
  font-size: 1.3rem;
}
@media screen and (max-width: 530px){
  .details-section{
    background-color: rgb(249, 216, 216);
    color:rgb(77, 34, 7);
    border-radius: 5rem;
    display: inline-block;
    padding: 5px;
    font-size: 0.9rem;
  }
}
.love-body{
  background-color: rgba(255, 225, 93, 0.877);
  margin: 0;
}

.love-header{
  margin-top: 60px;
}
.love-story{
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  background: url(../img/love-pink.png);
  margin: 0 0 40px 0;
  padding: 20px;
}
@media screen and (max-width: 530px){
  .love-story{
    font-size: 0.9rem;
  }
}
.love-details-img-item{
  margin: 20px;
  width: 40%;
  box-shadow: 15px 15px  rgb(141, 193, 227);
}

@media screen and (max-width: 530px){
  .details-img{
    flex-direction: column;
    margin: 20px 20px;
  }
  .love-details-img-item{
    box-shadow: 15px 15px  rgb(141, 193, 227);
    width: 80%;
  }  
}


.homesick-body{
  background-color: rgb(255, 193, 68);
  margin: 0;
}
.homesick-story{
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  background: url(../img/homesick-pink.png);
  margin: 0 8%;
  padding: 20px;
}
.homesick-details-img-item{
  margin: 20px ;
  width: 40%;
}

@media screen and (max-width: 530px){
  .details-img{
    flex-direction: column;
    margin: 20px 20px;
  }
  .homesick-details-img-item{
    width: 80%;
  }  
}

.homesick-visualimg-left{
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: auto;
  width: 70%;
}
.homesick-visualimg-right{
  margin-bottom: 40px;
  margin-right: 0;
  margin-left: auto;
  width: 70%;
  display: block;
}

.hikkoshi-body{
  background-color: rgb(250, 188, 188);
  margin: 0;
}
.hikkoshi-story{
  display: inline-block;
  background: url(../img/hikkoshi-orenge.png);
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  padding: 40px ;
  margin: 0 8%;
}
.hikkoshi-story-text{
  display: inline-block;
  text-align: left;
  gap: 20px;
  background-color: cornsilk;
  border-radius: 15px;
  padding: 20px;
}
.hikkoshi-details-img-item{
  margin: 20px;
  width: 40%;
  box-shadow: 15px 15px  rgb(245, 149, 53);
}
.hikkoshi-visualimg-left{
  margin-bottom: 40px;
  margin-left: 8%;
  margin-right: auto;
  margin-top: 60px;
  width: 70%;
}
.hikkoshi-visualimg-right{
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: 8%;
  width: 70%;
}
.hikkoshi-visualimg-flex{
  display: flex;
  margin-bottom: 40px;
  text-align: center;
  display: inline-block;
  animation: bounceInRight;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
.hikkoshi-visualimg-flex2{
  margin: 0;
  width: 30%;
}
.hikkoshi-visualimg-flex1{
  margin: 0;
  width: 30%;
  animation: korokoro 2.5s linear 0s 1;
  animation-iteration-count: infinite;
}
@keyframes korokoro {
  0%   { transform: translate(0%, 0%); }
  5%   { transform: translate(10%, 0%) rotate(10deg); }
  25%  { transform: translate(20%, 0%) rotate(20deg); }
  30%  { transform: translate(-10%, 0%) rotate(-10deg); }
  35%  { transform: translate(-15%, 0%) rotate(-15deg); }
  45%  { transform: translate(10%, 0%) rotate(10deg); }
  50%  { transform: translate(15%, 0%) rotate(15deg); }
  60%  { transform: translate(-5%, 0%) rotate(-5deg); }
  65%  { transform: translate(-7%, 0%) rotate(-7deg); }
  75%  { transform: translate(0%, 0%) rotate(0deg); }
  100% { transform: translate(0%, 0%) rotate(0deg); }
}

@media screen and (max-width: 530px){
  .details-img{
    flex-direction: column;
    margin: 20px 20px;
  }
  .hikkoshi-details-img-item{
    box-shadow: 15px 15px  rgb(245, 149, 53);
    width: 80%;
  }
  .hikkoshi-visualimg-left{
    margin-bottom: 40px;
    margin-left: 8%;
    margin-right: auto;
    margin-top: 60px;
    width: 80%;
  }
  .hikkoshi-visualimg-right{
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: 8%;
    width: 80%;
  }
  .hikkoshi-visualimg-flex{
    display: flex;
    margin-bottom: 40px;
    text-align: center;
    display: inline-block;
    animation: bounceInRight;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
  }
  .hikkoshi-visualimg-flex2{
    margin: 0;
    width: 40%;
  }
  .hikkoshi-visualimg-flex1{
    margin: 0;
    width: 40%;
    animation: korokoro 2.5s linear 0s 1;
    animation-iteration-count: infinite;
  }
}


.nemurinosei-body{
  background-color: rgb(179, 107, 107);
  margin: 0;
}
.nemurinosei-story{
  margin-bottom: 40px;
}
.nemurinosei-story-item{
  width: 40%;
  height: auto;
  margin: 20px;
}
@media screen and (max-width: 530px){
  .nemurinosei-story{
    margin-bottom: 40px;
  }
  .nemurinosei-story-item{
    width: 80vw;
    height: auto;
    margin: 20px;
  }
}
.nemurinosei-visualimg-left{
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: auto;
  width: 70%;
  gap: 0;
}
.nemurinosei-visualimg-right{
  margin-bottom: 40px;
  margin-right: 0;
  margin-left: auto;
  width: 70%;
  display: block;
  gap: 0;

}
.fuckinblue-story{
  display: inline-block;
  background: url(../img/fuckinblue-blue.png);
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  padding: 20px ;
  margin: 0 8%;

}
.fuckinblue-story-text{
  display: inline-block;
  text-align: left;
  gap: 20px;
  background-color: cornsilk;
  border-radius: 15px;
  padding: 20px;
}



.fuckinblue-body{
  background-color: rgb(171, 184, 211);
  margin: 0;
}
.homesick-story{
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  background: url(../img/homesick-pink.png);
  margin: 0 8%;
  padding: 20px;
}
.homesick-details-img-item{
  margin: 20px ;
  width: 40%;
}
@media screen and (max-width: 530px){
  .details-img{
    flex-direction: column;
    margin: 20px 20px;
  }
  .homesick-details-img-item{
    width: 90%;
  }  
}

.homesick-visualimg-left{
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: auto;
  width: 70%;
}
.homesick-visualimg-right{
  margin-bottom: 40px;
  margin-right: 0;
  margin-left: auto;
  width: 70%;
  display: block;
}


.title{
  margin: 40px 20px;
  line-height: 1.2;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
.abc{
  margin: 20px;
}
@media screen and (max-width: 530px){
  .title{
    margin: 40px 20px;
    line-height: 1.2;
    font-family: sans-serif;
    font-weight: bold;
  }
  .abc{
    margin: 20px;
  }
}




.flyer{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px;
}
.love-flyer{
  width: 45%;  
}

@media screen and (max-width: 530px){
  .flyer{
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px;
  }
  .love-flyer{
    width: 95%; 
  }
}



.love-section{
  margin-top: 50px;
  line-height: 1.2;
}
.logo{
  text-align: center;
  margin: 0;
}
.logo-img{
  width: 70px;
  margin: 10px;
}
.copyright{
  text-align: center;
}