* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
}
  body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #222;
    scroll-behavior: smooth;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ff925300;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 1000;
  }

  /* ぷかぷか星 */

  .hero {
    padding-top: 80px; /* ヘッダーの高さ分のパディング */
    background: linear-gradient(135deg, #ffddba, #ffe3e3);
    color: rgb(184, 96, 96);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: relative; 
    overflow: hidden; 
}



  .MAOMAO {
    font-weight: bold;
    font-size: 1.2rem;
      margin: 0 15px;
      text-decoration: none;
      
  }

/* ヘッダーのエフェクト */

  nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ff6f00;
  }
  


 

 


  /* ぷかぷか */
  .floating-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    pointer-events: none;
    z-index: 0; /* テキストの下に配置 */
}
  
  .floating {
    position: absolute;
    width: 100px; 
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
  }
  
  .floating:nth-child(2) {
    animation-delay: 2s;
  }
  
  .floating:nth-child(3) {
    animation-delay: 4s;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(2deg);
    }
    100% {
      transform: translateY(0) rotate(0deg);
    }
  }
  

 .section {
    padding: 100px 20px;
    min-height: 100vh;
  }
  
  .about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5a2113;
  }

  

#about {
  background-color: #ffd147;
  padding: 100px 20px; /* セクション全体のパディングを維持 */
  display: flex; 
  flex-direction: column; /* 子要素を縦方向に並べる */
  align-items: center; 
  min-height: 100vh; 
}

/* うに画像 */
.box2-container {
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; /* 画面幅が狭い場合に折り返す */
  gap: 20px; 
  margin-bottom: 20px; 
}


p.uniuni img {
  width: 50%;
  height: auto;
  margin: 0 auto 40px auto; 
  display: block;
}


   .box2 {
       font-family:"游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      padding: 0.5em 1em;
      font-weight: lighter;
      color: #dc966d;
      background: #FFF;
      border: solid 1px #dc966d;
      border-radius: 50px;
      float:right;
  
      

    }
    .box2 p {
      margin: 0; 
      padding: 0;
    }
    
  
.info{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  color: #5a2113;
}
  

.works h2 {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  font-size: 2.5rem;
  color: #5a2113;
  }

  /* ギャラリーレイアウト */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; 
  margin-top: 60px;
}


/* 各作品カード */
.work-card {
  position: relative; 
  overflow: hidden; 
  display: block; 
  text-decoration: none; 
  color: inherit; 
  transition: transform 0.3s ease; 
}

.work-card:hover {
  transform: translateY(-5px); /* ホバーエフェクト */
}

.work-card img {
  width: 100%;
  height: auto;
  display: block; 
  transition: transform 0.3s ease; 
}


/* VIEW */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100px; 
  height: 100px; 
  background-color: rgba(255, 137, 114, 0.7);
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; 
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; 
}

.view-text {
  color: white; 
  font-size: 18px;
  text-transform: uppercase; 
}

/* ホバー時 */
.work-card:hover img {
  transform: scale(1.05); 
}

.work-card:hover .overlay {
  opacity: 1; 
  transform: translate(-50%, -50%) scale(1);
}

  #works {
    background: #ffefe8;
    .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.work-card {
 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.work-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}


.work-card:hover {
  transform: translateY(-8px);
}

  }
  
  #contact {
    text-align: center;
    background:  #ffd147;
    display: flex; 
    flex-direction: column; 
    justify-content: center;

  }

  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align:  center;
    color: #5a2113;
  }
  
  .contactbox {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    color: #5a2113;
  
  }

  /* 円枠 */
  .contact-info-container{
  display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap;
  }


  /* インスタボタン */
  .dli-instagram {
    font-family:"游ゴシック体", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      padding: 0.5em 1em;
      display: flex;
      font-weight: lighter;
      color: #dc966d;
      background: #FFF;
      border: solid 1px #dc966d;
      border-radius: 50px;
      margin: 0.5rem;
      transition: color 0.3s;
      text-decoration: none; 
      
  }


  .dli-instagram:hover {
    text-decoration: underline; 
    color: white;
    background: #dc966d;
    transition: color 0.3s; 
  }

  footer {
    background: #ffa769;
    color: white;
    text-align: center;
    padding: 30px 0;
  }