body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333;
    color: rgb(216, 164, 204);
}

/* ヘッダーのスタイル */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #333;
    text-align: center;
  }
  
/* BTNのスタイル */
.sns-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(51, 51, 51, 0.8);
    padding: 10px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sns-btn:hover {
    background-color: rgba(51, 51, 51, 0.95);
}

.sns-btn li {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.sns-btn li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgb(216, 164, 204);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.sns-btn li:hover::after {
    width: 100%;
}

.sns-btn li:hover {
    transform: translateY(-3px);
}

.sns-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

/* TikTokのロゴを大きくする */
.sns-btn li:nth-child(2) img {
    width: 45px;
    height: 45px;
}

.sns-btn img:hover {
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(216, 164, 204, 0.5));
    transform: scale(1.1) rotate(5deg);
}

/* メニューアイコンのスタイル */
.menu-icon {
    font-size: 32px;
    color: rgb(216, 164, 204);
    background-color: #333;
    position: fixed;
    top: 20px;
    right: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-icon:hover {
    background-color: none;
    transform: scale(1.2)
}

/* ナビゲーションリンク */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.nav-links.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    
}

.nav-links li {
    border-bottom: 1px solid #444;
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
    padding: 15px 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: rgb(216, 164, 204);
}

.logo-img {
    text-align: center;
    margin: 120px 0 60px;
    padding: 20px;
}

.logo-img img {
    max-width: 100%;
    width: 60%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-img img:hover {
    transform: scale(1.12);
    filter: brightness(2.2);
}

footer {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgb(216, 164, 204);
    text-align: center;
    padding: 20px;
    font-size: 1.1em;
}

.gallery{
    width: 100%;
    padding-top: 120px;
    text-align: center;
    h2{
      font-size: 48px;
      color: brown;
    }
  }
  
  .gallery-content{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }


@media screen and (max-width: 768px){
    .sns-btn1{
        width: 12px;
        height: 12px;
    }

    .sns-btn2{
        width: 20px;
        height: 20px;
    }
    
    .menu-icon{
        width: 14px;
        height: 14px;
    }

    .menu-icon:hover{
        transform: scale(0.8);
    }
}