body{
margin: 0px;
background: #000;  
color: #fff;         
font-family: 'Shippori Mincho', serif;
  line-height: 1.8;
  z-index: 1;
}
 

.section-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s; 
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



h1, h2, h3 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
  }
  

  a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  a:hover {
    color: #ff4444; 
  }

  .menu {
  position: fixed;   
  top: 20px;
  right: 40px;
  z-index: 99999;    
}

.menu ul {
  display: flex;
  gap: 20px;
}

.menu ul li {
  list-style: none;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff4444;
  transition: width 0.3s ease;
}

.menu ul li a:hover {
  color: #ff4444;
}

.menu ul li a:hover::after {
  width: 100%; 
}

.black_layer,
.firstview {
  z-index: 1;
}


.firstview{
    width: auto;
    height: 100vh;
    padding-bottom: 500px;
    padding-top: 0px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
  z-index: 9999;      
}
.fade-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeTitle 1s ease forwards;
  animation-delay: 0.5s; 
}

@keyframes fadeTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.firstview img {
  width: 100%;  
  height: auto; 
  display: block;
}

.title{
  top: 0px;
  left: 40px;
    width: 100%;
    height: auto;
    color: #FFFFFF;
    font-size: 50px;
    text-decoration: 600%;
    margin: 0px;
    transform: matrix();
    padding-top: 0px;
    padding-bottom: 0px;
    position: absolute;
    z-index: 1;
}
.tate {
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    position: absolute;     
    top: 50%;               
    right: 20px;             
    transform: translateY(-50%); 
    color: white;            
    font-size: 80px;           
    font-weight: bold;
  }
  .nav {
    position: relative;
    z-index: 9999;
  }
  
  
  .news {
    background: #111;
    color: #fff;
    padding: 80px 5%;
  }
  
  .news-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .news-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .news-date {
    color: #ff4444; 
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .news-text {
    font-size: 16px;
  }
  
.header1{

        position: fixed;  
        top: 20px;           
        right: 20px;        
        color: white;        
        font-weight: bold;  
        text-decoration: none; 
      }
      
.contents{
    width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.introduction{
    position: relative;
}
.profile {
    background: #000;           
    color: #fff;                  
    font-size: 60px;             
    border-bottom: 1px solid #6b6b6b;
    padding: 100px 5% 10px;       
    text-align: left;
  }
  
  
  .section-title {
    text-align: left;
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 80px;
    font-family: 'Shippori Mincho', serif;
  text-transform: uppercase; 
  font-weight: 700;
  }
  

  .profile-box {
    display: flex;
    align-items: center;    
    gap: 80px;              
    max-width: 1200px;     
    margin: 0 auto;         
  }

.profile-photo {
  width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  opacity: 1;
  transform: translateY(40px) scale(1.05);
  filter: brightness(0.7);
  transition: 1s ease;
}


.profile-photo.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: brightness(1);
}


  .profile-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
  }
  
  .profile-text .name {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
  }
  .works {
    background: #000; 
    color: #fff;
    padding: 100px 5%;
    text-align: center;
  }
  

  .section-title {
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
  }
  
  .works-subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin: 40px 0 20px;
  }
  

  .works-grid {
    display: grid;
      grid-template-columns: repeat(2, 1fr); 
      gap: 60px; 
      max-width: 1000px; 
      margin: 0 auto; 

    
  }
  
  .work-card {
    text-align: center; 
    position: relative; 
  display: block;
  }
  
  .work-card img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: 0.4s ease;
  }
  

.work-card:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}
  

  .work-title {
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Shippori Mincho', serif; 
  }
  
  .work-title span {
    font-size: 14px;
    opacity: 0.7; 
  }
  .now-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444; 
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
  }
  
  
  .soon-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #555; 
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    opacity: 0.9;
  }

  
  .gallery {
    background: #000;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Shippori Mincho', serif;
    font-size: 48px;
    margin-bottom: 40px;
  }
  

  .gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto; 
  scroll-behavior: smooth;
}

.gallery-container img {
  height: 300px;
  border-radius: 10px;
  flex-shrink: 0; 
  transition: 0.3s ease;
}

  
  
  .gallery-scroll::-webkit-scrollbar {
    height: 2px; 
  }
  .gallery-scroll::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
  }

  
  
  
  .gallery-item img:hover {
    transform: scale(1.05); 
  filter: brightness(1.2); 
  }
  html {
    scroll-behavior: smooth;
  }
  .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.menu {
  transition: 0.4s ease;
}

.menu.hidden {
  transform: translateY(-100%); 
  opacity: 0;
}

