@charset "UFT-8";

html{
  font-size: 100%;
}
body{
  color: rgb(77, 34, 7);
  margin: 0;
  width: auto;
  min-width: 320px;
}
body::before{
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/mainvisual.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
a{
  text-decoration: none;
  color:rgb(77, 34, 7); 
}
a:visited{
  color: rgb(77, 34, 7);
}
img{
  max-width: 100%;
}
li{
  list-style: none;
}


.page-header{
  height: 100vh;
  width: auto;
  margin: 0;
  padding: 0;
}
.main{
  background-color: rgba(105, 210, 255, 0.8);
  background-size: cover;
  width:auto;
  margin:0;
  padding: 0;
}

@media screen and (max-width: 768px){
  body{
    color: rgb(77, 34, 7);
    margin: 0;
    width: auto;
    min-width: 320px;
  }
  body::before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(../img/mainvisual-long.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .page-header{
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
  }
  .main{
    background-color: rgba(105, 210, 255, 0.8);
    background-size: cover;
    width:auto;
    margin:0;
  } 
}
@media screen and (max-width: 480px){
  body{
    color: rgb(77, 34, 7);
    margin: 0;
    width: auto;
    min-width: 320px;
  }
  body::before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(../img/mainvisual-long3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .page-header{
    height: 100vh;
    width: auto;
    margin: 0;
  }
  .main{
    background-color: rgba(105, 210, 255, 0.8);
    background-size: cover;
    width:auto;
    margin:0;
  }
  
}

#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(253, 153, 94);
  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.0rem;
  line-height: 1.0;
  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);
}




.next{
  background-color: rgba(47, 165, 216, 0.113);
  background-image: radial-gradient( rgba(54, 191, 249, 0.565) 75%, transparent 75%);
  background-size: 30px 30px;
  background-position: 0px 0px;
  height: auto;
  margin-top: 0;
  margin-bottom: 75px;
  padding-top: 35px;
}
.sec-title{
  font-size: 5.5rem;
  text-align: center;
  font-family: "Modak", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;  
  width: auto;
}
.next-stage{
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 5rem;
  padding-bottom: 40px;
  margin: auto;  
}
.next-text{
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.0;
}
.next-img{
  width: 30%;
}

.aboutbtn{
  display: inline-block;
  background: rgb(253, 153, 94);
  box-shadow: 0 5px 0 #ea5a00;
  color: rgb(77, 34, 7);
  margin: 20px;
  padding: 10px;
  border-radius: 60px;
  transition: .3s;
  font-weight: bold;
  font-size: 1.2rem;
}
.aboutbtn:hover{
  scale: 1.1;
}

@media screen and (max-width: 1280px)  {
  .next-stage{
    display: flex;
    align-items: center;
    font-family: sans-serif;
    gap: 40px;
    padding-bottom: 40px;
  }
  .next-text{
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.0;
  }
  .aboutbtn{
    display: inline-block;
    background: rgb(253, 153, 94);
    box-shadow: 0 5px 0 #ea5a00;
    color: rgb(77, 34, 7);
    margin: 20px;
    padding: 10px;
    border-radius: 60px;
    transition: .3s;
    font-weight: bold;
    display: inline-block;
    font-size: 1.2rem;
  }
  .aboutbtn:hover{
    scale: 1.1;
  }
}

@media screen and (max-width: 768px)  {
  .sec-title{
    font-size: 4rem;
    text-align: center;
    font-family: "Modak", serif;
    font-weight: 500;
    font-style: normal;
    width: auto;
    margin: 0;
  }
  .next-stage{
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    gap: 20px;
    }
  .next-text{
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: bold;
    font-size: 1rem;
    font-weight: bold;
    line-height: 0.7;
  }
  .next-img{
    width: 50%;
  }
  .aboutbtn{
    display: inline-block;
    background: rgb(253, 153, 94);
    box-shadow: 0 5px 0 #ea5a00;
    color: rgb(77, 34, 7);
    margin: 20px;
    padding: 10px;
    border-radius: 60px;
    transition: .3s;
    font-weight: bold;
    display: inline-block;
    font-size: 1.0rem;
  }
  .aboutbtn:hover{
    scale: 1.1;
  }
}
@media screen and (max-width: 500px) {
  .next-img{
    width: 60%;
  }
}

.about{
  max-width: 1000px;
  height: 698px;
  margin: 140px auto 0 auto;
  position: relative;
}
.about-details{
  max-width: 680px;
  background-image: url(../img/about-pink2.png);
  border-radius: 50px;
  padding: 40px 160px 84px 84px;
  position: absolute;
  left: 0;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
.center{
  margin-bottom: 2rem;
}
.thema{
  font-family: sans-serif;
  font-size: 2.0rem;
  line-height: 1.6;
}
.about-text{
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 0.5;
}
.aboutbtn-center{
  text-align: center;
}
.aboutbtn{
  display: inline-block;
  background: rgb(253, 153, 94);
  box-shadow: 0 5px 0 #ea5a00;
  color: rgb(77, 34, 7);
  margin: 20px;
  padding: 15px;
  border-radius: 60px;
  transition: .3s;
  font-weight: bold;
  font-size: 1.2rem;
}
.aboutbtn:hover{
  scale: 1.1;
}
.about-img{
  max-width: 400px;
  position: absolute;
  top: 140px;
  right: 20px;
}
.about-img img{
  vertical-align: bottom;
  border-radius: 50px;
}
@media screen and (max-width: 1000px) {
  .center{
    margin-bottom: 2rem;
  }
  .about {
    height: auto;
    position: static;
    margin-top: 150px;
    margin-bottom: 50px;
  }
  .about-details {
    max-width: 100%;
    padding: 80px 20px;
    position: static;
  }
  .about-thema{
    font-family: sans-serif;
    font-size: 2.2rem;
  }
  .about-img {
    max-width: 100%;
    position: static;
  }
}
@media screen and (max-width: 500px) {
  .center{
    margin-bottom: 2rem;
  }
  .thema{
    display: block;
    font-family: sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .about-text{
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    line-height: 0.5;
  }
}

.slide-container-fish{
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-top: 50px;
  align-items: center;
  overflow: hidden;
}
.slide-wrapper-fish{
  display: flex;
  padding: 0;
  flex-shrink: 0;
  animation: slide-flow 20s infinite linear 1s both;
}
.fish-slide{
  display: inline-block;
  width: 100%;
  border: 1px ;
  max-height: 400px;
}
@keyframes slide-flow{
  0% {transform: translateX(0%);}
  100% {transform: translateX(-100%);}
}

.archive{
  background-color: #fce5d3;
  position: relative;
  margin-top: 10rem;
  padding-bottom: 100px;
  padding-top: 60px;
  --mask:
  radial-gradient(33.6px at 50% 47px, #000 99%, #0000 101%) calc(50% - 40px) 0/80px 51% repeat-x,
  radial-gradient(33.6px at 50% -27px, #0000 99%, #000 101%) 50% 20px/80px calc(51% - 20px) repeat-x,
  radial-gradient(33.6px at 50% calc(100% - 47px), #000 99%, #0000 101%) calc(50% - 40px) 100%/80px 51% repeat-x,
  radial-gradient(33.6px at 50% calc(100% + 27px), #0000 99%, #000 101%) 50% calc(100% - 20px)/80px calc(51% - 20px) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}

.archive-text{
  padding-top: 20px;
}
.stage-title{
  line-height: 0.8rem;
  text-align: left;
  font-size: 0.8rem;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
.stage-date{
  line-height: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;

}
.archive-img {
  height: auto;
  font-family: sans-serif;
  margin: 20px 40px 60px 40px;
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  margin: 0;
}


.archive-slide {
  min-width: 20%;
  padding: 40px 40px;
  transition: .2s;
}
.archive-slide:hover{
  opacity: 0.4;
}

p {
  margin-top: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive{
    background-color: #fce5d3;
    position: relative;
    margin-top: 10rem;
    padding-bottom: 100px;
    padding-top: 60px;
  }
  
  .archive-text{
    padding-top: 20px;
  }
  .stage-title{
    line-height: 0.8rem;
    font-size: 0.8rem;
    text-align: left;

  }
  
  .stage-date{
    line-height: 0.5rem;
    font-size: 0.9rem;
    text-align: left;

  }
  .archive-img {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    margin: 0;
    padding: 0; 
  }
  .archive-slide {
    min-width: 30%;
    height: auto;
    padding: 40px 40px;
    transition: .5s;

  }
  .archive-slide:hover{
    scale: 1.1;
  }
  p {
    margin-top: 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .archive{
    background-color: #fce5d3;
    position: relative;
    margin-top: 10rem;
    padding-bottom: 100px;
    padding-top: 60px;
  }
  
  .archive-text{
    padding-top: 20px;
  }
  .stage-title{
    line-height: 0.8rem;
    text-align: left;
    font-size: 0.8rem;
  }
  .stage-date{
    line-height: 0.5rem;
    font-size: 0.9rem;
    text-align: left;
  }
  .archive-img {
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    margin: 0;
    padding: 0; 
  }
  .archive-slide {
    min-width: 50%;
    height: auto;
    padding: 40px 40px;
    transition: .5s;
  }
 
  .archive-slide:hover{
    scale: 1.1;
  }
  p {
    margin-top: 0;
    text-align: center;
  }
}


.contact{
  background-image: url(../img/fishbackground.png);
  border-radius: 20px;
  margin: 160px 120px;
  padding: 20px;
}
.contact-icon{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 400;
  font-size: 3rem;
  gap: 2rem;
}
.fa-brands{
  transition: .3s;
}
.fa-brands:hover{
  scale: 1.2;
  color: cornsilk;
}

@media screen and (max-width: 768px) {
  .contact{
    background-image: url(../img/fishbackground.png);
    border-radius: 20px;
    margin: 160px 0;
    padding: 20px;
  }
  .contact-icon{
    margin: 5% 20%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 3rem;
    gap: 1.5rem;
  }
}
.mail{
  display: flex;
  gap: 1rem;
}
.mail-address{
  font-size: 1.5rem;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .mail{
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  .mail-address{
    font-size: 1.0rem;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}


.logo{
  text-align: center;
  margin: 0;
}
.logo-img{
  width: 70px;
  margin: 10px;
}
.copyright{
  text-align: center;
  font-family: sans-serif;
  font-weight: 400;
  font-style: normal;
}