@import url('https://fonts.googleapis.com/css2?family=Jura:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

/* Reset CSS */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jura', 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Jura', sans-serif;
    font-size: 3rem;
    font-weight: normal;
}

header nav ul {
    display: flex;
    list-style: none;
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

header nav ul li {
    margin-left: 20px;
}

.main-visual img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Top Page Sections */
.news, .live {
   padding: 40px;
   max-width: 900px;
   margin: 0 auto;
}

.news h2, .live h2 {
   font-family: 'Jura', sans-serif;
   font-size: 2rem;
   text-align: center;
   margin-bottom: 40px;
}

.news dl {
   border-top: 1px solid #444;
}

.news dt, .news dd {
   padding: 15px;
   border-bottom: 1px solid #444;
}

.news dt {
   font-weight: bold;
}

.news dl {
   display: flex;
   flex-wrap: wrap;
}

.news dt {
   width: 150px;
}

.news dd {
   width: calc(100% - 150px);
}


footer {
   text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.sns-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.sns-links li {
    margin: 0 15px;
}

.sns-links a {
    font-size: 2rem; /* アイコンのサイズを調整 */
    transition: color 0.3s;
}

.sns-links a:hover {
    color: #aaa; /* ホバー時の色を変更 */
    text-decoration: none;
}

.biography {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.biography h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.band-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.band-profile img {
    max-width: 400px;
    height: auto;
}

.band-profile div p {
    margin-bottom: 1em;
}

.band-profile div p:last-child {
    margin-bottom: 0;
}

.member-profiles h3 {
    font-family: 'Jura', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.member-profiles ul {
    list-style: none;
    text-align: center;
}

.member-profiles ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: flex-start;
}

.member-card {
    text-align: center;
}

.member-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
}

.member-card h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.member-card .part {
    font-weight: bold;
    margin-bottom: 10px;
}
.member-card .profile-text {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}
/* LIVE and NEWS Page */
.news-and-live {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.news-and-live h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.news-list, .live-list {
    margin-top: 40px;
}

.news-list h3, .live-list h3 {
    font-family: 'Jura', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.news-date {
    min-width: 120px;
    color: #ccc;
}

.news-title {
    flex-grow: 1;
}

.past-live-link {
    text-align: right;
    margin-bottom: 20px;
}

.past-live-link a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #fff;
    transition: all 0.3s;
}

.past-live-link a:hover {
    background-color: #fff;
    color: #111;
    text-decoration: none;
}

.live-list {
}

.live-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #444;
}

.live-date {
    text-align: center;
    margin-right: 30px;
    min-width: 80px;
}

.live-date .month {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.live-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    color: #f0a0a0;
}

.live-date .year {
    font-size: 1rem;
}

.live-info {
    flex-grow: 1;
    margin-top: 10px;
}

.live-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.live-info .venue {
    font-size: 1rem;
    color: #ccc;
}

.live-detail .detail-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    transition: all 0.3s;
    white-space: nowrap;
}

.live-detail .detail-btn:hover {
    background-color: #fff;
    color: #111;
    text-decoration: none;
}
.live-item-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.live-flyer {
    margin-right: 20px;
}

.live-flyer img {
    width: 150px;
    height: 210px;
    object-fit: cover;
}

/* MOVIE Page */
.movie {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.movie h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.movie-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.movie-item {
    width: 100%;
    max-width: 800px;
}

.movie-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
/* MUSIC Page */
.music {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.music h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.music-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    header nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #111;
        border-top: 1px solid #333;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .band-profile {
        flex-direction: column;
    }

    .live-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-date {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* LIVE DETAIL Page */
.live-detail-section {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.live-detail-section h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.live-detail-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.live-flyer-large {
    flex-shrink: 0;
}

.live-flyer-large img {
    width: 350px;
    height: auto;
}

.live-detail-info h3 {
    font-size: 1.8rem;
    margin-bottom: 60px;
}

.live-detail-info dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
}

.live-detail-info dt {
    font-weight: bold;
}

.live-detail-info dd a {
    text-decoration: underline;
}

.live-detail-info dd a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .live-detail-content {
        flex-direction: column;
    }

    .live-flyer-large img {
        width: 100%;
    }
}
.live-list .live-detail-content {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #444;
}

.live-list .live-detail-content:last-child {
    border-bottom: none;
}
.live-flyer-dummy {
    width: 350px;
    height: 495px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #888;
    font-size: 1rem;
    padding-bottom: 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .live-flyer-dummy {
        width: 100%;
        height: auto;
        aspect-ratio: 350 / 495;
    }
}
/* CONTACT Page */
.contact-form {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h2 {
    font-family: 'Jura', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form p {
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Jura', sans-serif;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #ccc;
}
.member-sns {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.member-sns a {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

.member-sns a:hover {
    color: #aaa;
    text-decoration: none;
}
/* LINK Page - Rework */
.link {
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.link h2 {
    font-family: 'Jura', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 5px;
    color: #ddd;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-item {
    margin-bottom: 25px;
}

.link-item a {
    font-family: 'Jura', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ccc;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #555;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.link-item a:hover {
    color: #fff;
    background-color: #fff;
    color: #111;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.link-description {
    font-size: 0.9rem;
    color: #888;
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.link-image-container {
    display: inline-block;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #555;
    transition: all 0.3s ease;
}

.link-image-container:hover {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.link-image-container img {
    max-width: 400px;
    display: block;
}