@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

body{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #ececee;
  background-color: #1f2029;
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100vh;
  width: 100%;
}
.section-center{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}
h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 7vw;
  line-height: 1;
  color: #ffeba7;
  text-align: center;
  -webkit-text-stroke: 2px #ffeba7;
  text-stroke: 2px #ffeba7;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
}

/* ハンバーガーメニュー */

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 64px;
  right: 78px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 40px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 3.5px solid #177cff;
  border-bottom: 3.5px solid #177cff;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 40px;
  height: 3.5px;
  z-index: 20;
  top: 10px;
  background-color: #177cff;
  margin-top: 1px;
  transition: width 100ms 1750ms ease, 
              right 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 3.5px;
  background-color: #177cff;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 40px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
  position: fixed;
  top: 33px;
  right: 50px;
  display: block;
  width: 95px;
  height: 95px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 45px 0 rgba(0,0,0,0.3);
  background-color: #ffe45d;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}
.nav ul li a{
  font-family: 'Montserrat', sans-serif;
  font-size: 5vh;
  text-transform: uppercase;
  line-height: 1.8;
  font-weight: 500;
  display: inline-block;
  position: relative;
  color: #25a732;
  transition: all 250ms linear;
}
.nav ul li a:hover{
  text-decoration: none;
  color: #60492e;
}
.nav ul li a:after{
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #f1d8e0;
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after{
  width: 100%;
}


.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}

/*ここまで*/



@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 55px;
  }
  .logo {
    left: 30px;
  }
  .nav{
    right: 30px;
  }
  h1{
    font-size: 9vw;
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    -webkit-text-fill-color: #ffeba7;
    text-fill-color: #ffeba7;
    color: #ffeba7;
  }
  .nav ul li a{
    font-size: 8vh;
  }
}









/***************************************************
 * Generated by SVG Artista on 2/15/2025, 10:54:26 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

 @keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 164.1427001953125px;
    stroke-dasharray: 164.1427001953125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 164.1427001953125px;
  }
}

.svg-elem-1 {
  animation: animate-svg-stroke-1 0.8s linear 0s both,
               animate-svg-fill-1 0.7s linear 0.8s both;
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 41.719356536865234px;
    stroke-dasharray: 41.719356536865234px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 41.719356536865234px;
  }
}

.svg-elem-2 {
  animation: animate-svg-stroke-2 0.8s linear 0.1s both,
               animate-svg-fill-2 0.7s linear 0.9s both;
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 57.12154769897461px;
    stroke-dasharray: 57.12154769897461px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 57.12154769897461px;
  }
}

.svg-elem-3 {
  animation: animate-svg-stroke-3 0.8s linear 0.2s both,
               animate-svg-fill-3 0.7s linear 1s both;
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 97.58935546875px;
    stroke-dasharray: 97.58935546875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 97.58935546875px;
  }
}

.svg-elem-4 {
  animation: animate-svg-stroke-4 0.8s linear 0.30000000000000004s both,
               animate-svg-fill-4 0.7s linear 1.1s both;
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 383.9471435546875px;
    stroke-dasharray: 383.9471435546875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.9471435546875px;
  }
}

.svg-elem-5 {
  animation: animate-svg-stroke-5 0.8s linear 0.4s both,
               animate-svg-fill-5 0.7s linear 1.2000000000000002s both;
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 7.324620246887207px;
    stroke-dasharray: 7.324620246887207px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 7.324620246887207px;
  }
}

.svg-elem-6 {
  animation: animate-svg-stroke-6 0.8s linear 0.5s both,
               animate-svg-fill-6 0.7s linear 1.3s both;
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 135.96510314941406px;
    stroke-dasharray: 135.96510314941406px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 135.96510314941406px;
  }
}

.svg-elem-7 {
  animation: animate-svg-stroke-7 0.8s linear 0.6000000000000001s both,
               animate-svg-fill-7 0.7s linear 1.4000000000000001s both;
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 182.0937042236328px;
    stroke-dasharray: 182.0937042236328px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 182.0937042236328px;
  }
}

.svg-elem-8 {
  animation: animate-svg-stroke-8 0.8s linear 0.7000000000000001s both,
               animate-svg-fill-8 0.7s linear 1.5s both;
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 114.6404037475586px;
    stroke-dasharray: 114.6404037475586px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 114.6404037475586px;
  }
}

.svg-elem-9 {
  animation: animate-svg-stroke-9 0.8s linear 0.8s both,
               animate-svg-fill-9 0.7s linear 1.6s both;
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 85.94880676269531px;
    stroke-dasharray: 85.94880676269531px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 85.94880676269531px;
  }
}

.svg-elem-10 {
  animation: animate-svg-stroke-10 0.8s linear 0.9s both,
               animate-svg-fill-10 0.7s linear 1.7000000000000002s both;
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 170.86363220214844px;
    stroke-dasharray: 170.86363220214844px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 170.86363220214844px;
  }
}

.svg-elem-11 {
  animation: animate-svg-stroke-11 0.8s linear 1s both,
               animate-svg-fill-11 0.7s linear 1.8s both;
}

@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 11px;
    stroke-dasharray: 11px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 11px;
  }
}

.svg-elem-12 {
  animation: animate-svg-stroke-12 0.8s linear 1.1s both,
               animate-svg-fill-12 0.7s linear 1.9000000000000001s both;
}

@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 101.56460571289062px;
    stroke-dasharray: 101.56460571289062px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 101.56460571289062px;
  }
}

.svg-elem-13 {
  animation: animate-svg-stroke-13 0.8s linear 1.2000000000000002s both,
               animate-svg-fill-13 0.7s linear 2s both;
}

@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 438.322265625px;
    stroke-dasharray: 438.322265625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 438.322265625px;
  }
}

.svg-elem-14 {
  animation: animate-svg-stroke-14 0.8s linear 1.3s both,
               animate-svg-fill-14 0.7s linear 2.1s both;
}

@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 177.1870574951172px;
    stroke-dasharray: 177.1870574951172px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 177.1870574951172px;
  }
}

.svg-elem-15 {
  animation: animate-svg-stroke-15 0.8s linear 1.4000000000000001s both,
               animate-svg-fill-15 0.7s linear 2.2s both;
}

@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 352.101806640625px;
    stroke-dasharray: 352.101806640625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 352.101806640625px;
  }
}

.svg-elem-16 {
  animation: animate-svg-stroke-16 0.8s linear 1.5s both,
               animate-svg-fill-16 0.7s linear 2.3s both;
}

@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 41.51363754272461px;
    stroke-dasharray: 41.51363754272461px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 41.51363754272461px;
  }
}

.svg-elem-17 {
  animation: animate-svg-stroke-17 0.8s linear 1.6s both,
               animate-svg-fill-17 0.7s linear 2.4000000000000004s both;
}

@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 26.47313117980957px;
    stroke-dasharray: 26.47313117980957px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 26.47313117980957px;
  }
}

.svg-elem-18 {
  animation: animate-svg-stroke-18 0.8s linear 1.7000000000000002s both,
               animate-svg-fill-18 0.7s linear 2.5s both;
}

@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 14.123106002807617px;
    stroke-dasharray: 14.123106002807617px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 14.123106002807617px;
  }
}

.svg-elem-19 {
  animation: animate-svg-stroke-19 0.8s linear 1.8s both,
               animate-svg-fill-19 0.7s linear 2.6s both;
}

@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 110.912841796875px;
    stroke-dasharray: 110.912841796875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 110.912841796875px;
  }
}

.svg-elem-20 {
  animation: animate-svg-stroke-20 0.8s linear 1.9000000000000001s both,
               animate-svg-fill-20 0.7s linear 2.7s both;
}

@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 29.905162811279297px;
    stroke-dasharray: 29.905162811279297px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 29.905162811279297px;
  }
}

.svg-elem-21 {
  animation: animate-svg-stroke-21 0.8s linear 2s both,
               animate-svg-fill-21 0.7s linear 2.8s both;
}

@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 77.3961181640625px;
    stroke-dasharray: 77.3961181640625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 77.3961181640625px;
  }
}

.svg-elem-22 {
  animation: animate-svg-stroke-22 0.8s linear 2.1s both,
               animate-svg-fill-22 0.7s linear 2.9000000000000004s both;
}

@keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 32.61899757385254px;
    stroke-dasharray: 32.61899757385254px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 32.61899757385254px;
  }
}

.svg-elem-23 {
  animation: animate-svg-stroke-23 0.8s linear 2.2s both,
               animate-svg-fill-23 0.7s linear 3s both;
}

@keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 89.57315826416016px;
    stroke-dasharray: 89.57315826416016px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 89.57315826416016px;
  }
}

.svg-elem-24 {
  animation: animate-svg-stroke-24 0.8s linear 2.3000000000000003s both,
               animate-svg-fill-24 0.7s linear 3.1000000000000005s both;
}

@keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 39.76765441894531px;
    stroke-dasharray: 39.76765441894531px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.76765441894531px;
  }
}

.svg-elem-25 {
  animation: animate-svg-stroke-25 0.8s linear 2.4000000000000004s both,
               animate-svg-fill-25 0.7s linear 3.2s both;
}

@keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 20.49881935119629px;
    stroke-dasharray: 20.49881935119629px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 20.49881935119629px;
  }
}

.svg-elem-26 {
  animation: animate-svg-stroke-26 0.8s linear 2.5s both,
               animate-svg-fill-26 0.7s linear 3.3s both;
}

@keyframes animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 60.75876998901367px;
    stroke-dasharray: 60.75876998901367px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 60.75876998901367px;
  }
}

.svg-elem-27 {
  animation: animate-svg-stroke-27 0.8s linear 2.6s both,
               animate-svg-fill-27 0.7s linear 3.4000000000000004s both;
}

@keyframes animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 30.230051040649414px;
    stroke-dasharray: 30.230051040649414px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.230051040649414px;
  }
}

.svg-elem-28 {
  animation: animate-svg-stroke-28 0.8s linear 2.7s both,
               animate-svg-fill-28 0.7s linear 3.5s both;
}

@keyframes animate-svg-stroke-29 {
  0% {
    stroke-dashoffset: 31.39786148071289px;
    stroke-dasharray: 31.39786148071289px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 31.39786148071289px;
  }
}

.svg-elem-29 {
  animation: animate-svg-stroke-29 0.8s linear 2.8000000000000003s both,
               animate-svg-fill-29 0.7s linear 3.6000000000000005s both;
}

@keyframes animate-svg-stroke-30 {
  0% {
    stroke-dashoffset: 140.5152587890625px;
    stroke-dasharray: 140.5152587890625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 140.5152587890625px;
  }
}

.svg-elem-30 {
  animation: animate-svg-stroke-30 0.8s linear 2.9000000000000004s both,
               animate-svg-fill-30 0.7s linear 3.7s both;
}

@keyframes animate-svg-stroke-31 {
  0% {
    stroke-dashoffset: 28.094717025756836px;
    stroke-dasharray: 28.094717025756836px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 28.094717025756836px;
  }
}

.svg-elem-31 {
  animation: animate-svg-stroke-31 0.8s linear 3s both,
               animate-svg-fill-31 0.7s linear 3.8s both;
}

@keyframes animate-svg-stroke-32 {
  0% {
    stroke-dashoffset: 24.3590145111084px;
    stroke-dasharray: 24.3590145111084px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 24.3590145111084px;
  }
}

.svg-elem-32 {
  animation: animate-svg-stroke-32 0.8s linear 3.1s both,
               animate-svg-fill-32 0.7s linear 3.9000000000000004s both;
}

@keyframes animate-svg-stroke-33 {
  0% {
    stroke-dashoffset: 145.78318786621094px;
    stroke-dasharray: 145.78318786621094px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 145.78318786621094px;
  }
}

.svg-elem-33 {
  animation: animate-svg-stroke-33 0.8s linear 3.2s both,
               animate-svg-fill-33 0.7s linear 4s both;
}

@keyframes animate-svg-stroke-34 {
  0% {
    stroke-dashoffset: 21.2368106842041px;
    stroke-dasharray: 21.2368106842041px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 21.2368106842041px;
  }
}

.svg-elem-34 {
  animation: animate-svg-stroke-34 0.8s linear 3.3000000000000003s both,
               animate-svg-fill-34 0.7s linear 4.1000000000000005s both;
}

@keyframes animate-svg-stroke-35 {
  0% {
    stroke-dashoffset: 18.126205444335938px;
    stroke-dasharray: 18.126205444335938px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 18.126205444335938px;
  }
}

.svg-elem-35 {
  animation: animate-svg-stroke-35 0.8s linear 3.4000000000000004s both,
               animate-svg-fill-35 0.7s linear 4.2s both;
}
