<style>

body,div,ul,li,h1,p {
	
             margin: 0;
	padding: 0;}



          　 html { min-height:100vh;
                       width:100vw;
                         scroll-behavior: smooth;
                                                      
                        }

h1{ color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
 } 






/*
HEADER
================================================ */

.wrapper1{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  
}


header {
    background-color:#000;
    padding:1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1;
 }


header a {
      font-size: 1.2rem;

}

header  h1{
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: 'Anton', sans-serif;

}


/* ハンバーガーメニュー */
#hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px 0;
}

#hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

#hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

#hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

#hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

#side-menu {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100vh;
    background-color: #000;
    z-index: 1500;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#side-menu {
    background-color: rgba(0, 0, 0, 0.5);
}

#side-menu.open {
    right: 0;
}

#side-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
    font-family: 'Anton', sans-serif;

}

#side-menu a:hover {
    color: #ffff00;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    #side-menu {
        width: 70%;
        right: -70%;
    }
}



/* ページトップボタン */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-to-top:hover {
    background-color: #555;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

#scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

#button-lightning-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.button-lightning {
    position: absolute;
    top: 0;
    stroke: #ffff00;
    stroke-width: 3;
    fill: none;
    filter: drop-shadow(0 0 8px rgba(255, 255, 0, 1)) 
            drop-shadow(0 0 15px rgba(255, 255, 0, 0.8))
            drop-shadow(0 0 25px rgba(255, 255, 0, 0.6));
    animation: flash 0.2s linear forwards;
    opacity: 0;
}

@keyframes flash {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}



/*
youtube
================================================ */



                                     .youtube       {
                                                        position: relative;
                                                        width: 100%;
                                                        height: 0;
                                                        padding-bottom: 56.25%;
                                                        overflow: hidden;
                                                        }

                                   .youtube iframe {
                                                        width: 100%;
                                                        height: 100%;
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        }
                                  
                                  .frame-wrapper {
                                                        max-width: 1000px;
                                                        width: 100%;
                                                        margin: 0 auto;
                                                        padding: px; /* 内側に10ピクセルのスペースを設定 */ 

                                                     }


{ 0px～512pxの画面サイズにCSSを適応 }
 @media screen and (max-width: 65rem){                                                                
 .youtube iframe   {  height: 100%; 
                            width: 100%; }
                         }


{ 0px～512pxの画面サイズにCSSを適応 }
 @media screen and (max-width: 32rem){                                                                  
 .youtube iframe { height: 100%; 
                           width: 100%; }
                          }  








/* COMMON */
p {
    color: #FFFFFF;
    line-height:10px;
}

.wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
/* HERO */
#hero {
    background-color: #000000;
    align-items: center;
    height: 100vh;
    display: flex;
}


#hero h1 { 
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    margin-top: 5rem;
    margin-bottom: 1.5rem;
}

#hero p { 
    color: #FFFFFF;
}

.hero-date {
    font-family: 'Anton', sans-serif;
    text-align: center; 
    margin-top: 1.8rem;
    font-size: 1.8rem;
}

.wrapper {
    perspective: 1000px;
}

.hero-date {
    position: relative;
    animation: popInFromBack 2s forwards;
    opacity: 0;
    transform-style: preserve-3d;
}

@keyframes popInFromBack {
    0% {
        transform: translateZ(-300px);
        opacity: 0;
    }
    60% {
        transform: translateZ(50px);
        opacity: 1;
    }
    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

/*
women 上下左右
================================================ */
#model {
    padding: 10rem 0rem 15rem 0rem;
background-color: #1a1a1a;
}

.model-item { 
    max-width: 1010px;
      margin: 0 auto;

}

.gr{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

}


.gr {
      gap: 0.2rem;
   
}
.g img {
  width: 100vw;
 
}



{ 0px～512pxの画面サイズにCSSを適応 }
 @media screen and (max-width: 65rem){                                                                
 .gr img  {  height: 100%; 
                          width: 100%; }
 }

{ 0px～512pxの画面サイズにCSSを適応 }
 @media screen and (max-width: 32rem){                                                                  
 .gr img  {   height: 100%; 
                          width: 100%; }
 }   

/* FOOTER */
.footer {
    background: #111;
    color: #444;
    padding: 40px 0;
    font-family: 'Anton', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #444;
}

/* DESKTOP SIZE */
@media (min-width: 600px) {
    header a {
        font-size: 1.5rem;
    }

    #hero h1 {
        font-size: 6.875rem;
    }
    
    .hero-date {
        font-size: 2rem;
    }
}

a:link { color: #ffffff; }
a:visited { color: #ffffff; }
a:hover { color: #3b5d82; }
a:link {text-decoration: none; }
</style>  
