/* PC用スタイルシート */
html {
    scroll-behavior: smooth;
}

/* スライドインアニメーション */
.slide-in-section {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-section.slide-in-visible {
    opacity: 1;
    transform: translateX(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #5a4a4a;
    background: linear-gradient(to bottom, #fffef7 0%, #fffbf0 100%);
    padding-top: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 0;
}

/* ナビゲーション */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, #ffe4e6 0%, #ffb6c1 100%);
    padding: 15px 0;
    border-bottom: 3px solid #ff91a4;
    box-shadow: 0 2px 4px rgba(255, 182, 193, 0.3);
    z-index: 1000;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #8b4a5c;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff6b9d;
}

/* タイトルセクション */
.title-section {
    text-align: center;
    margin-bottom: 50px;
    scroll-margin-top: 60px;
}

.title-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
}

.title-image img {
    width: 100%;
    height: auto;
    display: block;
}

.main-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #8b4a5c;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 182, 193, 0.2);
}

/* 更新情報 */
.update-info {
    background: linear-gradient(to right, #fff9c4 0%, #fffef7 100%);
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #fdd835;
    border-radius: 4px;
}

.update-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4a5c;
}

.update-info ul {
    list-style: none;
}

.update-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.update-info .date {
    font-weight: bold;
    margin-right: 10px;
    color: #666;
}

/* イベント情報 */
.event-info {
    margin-bottom: 50px;
    scroll-margin-top: 60px;
}

.event-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4a5c;
    border-bottom: 3px solid #ff91a4;
    padding-bottom: 10px;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    background: linear-gradient(to bottom, #fffef7 0%, #ffe4e6 100%);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #ffb6c1;
    box-shadow: 0 2px 4px rgba(255, 182, 193, 0.2);
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #8b4a5c;
}

.info-item p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.info-item .note {
    font-size: 14px;
    color: #ff6b9d;
    font-weight: bold;
}

/* 出演者セクション */
.guest-section {
    margin-bottom: 50px;
    scroll-margin-top: 60px;
}

.guest-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4a5c;
    border-bottom: 3px solid #ff91a4;
    padding-bottom: 10px;
}

.guest-list {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.guest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}

.guest-photo-placeholder {
    width: 300px;
    height: 450px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ffe4e6 0%, #fff9c4 100%);
    border: 2px solid #ffb6c1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff91a4;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(255, 182, 193, 0.3);
}

.guest-photo {
    width: 300px;
    height: 450px;
    margin: 0 auto 15px;
    border: 2px solid #ffb6c1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(255, 182, 193, 0.3);
}

.guest-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guest-name {
    font-size: 18px;
    font-weight: bold;
    color: #8b4a5c;
}

/* チケット種別 */
.ticket-types {
    margin-bottom: 50px;
}

.ticket-types h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4a5c;
    border-bottom: 3px solid #ff91a4;
    padding-bottom: 10px;
}

.ticket-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.ticket-item {
    background: linear-gradient(to bottom, #fffef7 0%, #ffe4e6 100%);
    border: 3px solid #ff91a4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 182, 193, 0.3);
}

.ticket-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4a5c;
}

.ticket-item .price {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b9d;
    margin-bottom: 10px;
}

.ticket-item .ticket-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.ticket-item .ticket-detail {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* チケット販売 */
.ticket-sales {
    margin-bottom: 50px;
    background: linear-gradient(to bottom, #fff9c4 0%, #fffef7 100%);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #fdd835;
    scroll-margin-top: 60px;
}

.ticket-sales h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #8b4a5c;
    border-bottom: 3px solid #fdd835;
    padding-bottom: 10px;
}

.sales-content {
    font-size: 18px;
    line-height: 2;
}

.sales-content a {
    color: #66bb6a;
    text-decoration: underline;
}

.sales-content a:hover {
    color: #4caf50;
}

.sales-content .note {
    font-size: 16px;
    color: #f9a825;
    font-weight: bold;
    margin-top: 15px;
}

/* グッズ */
.goods-section {
    margin-bottom: 50px;
    scroll-margin-top: 60px;
}

.goods-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4a5c;
    border-bottom: 3px solid #ff91a4;
    padding-bottom: 10px;
}

.goods-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.goods-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(255, 182, 193, 0.3);
}

.goods-image img {
    width: 100%;
    height: auto;
    display: block;
}

.goods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.goods-item {
    background: linear-gradient(to bottom, #fffef7 0%, #ffe4e6 100%);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ffb6c1;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255, 182, 193, 0.2);
}

.goods-name {
    font-size: 18px;
    font-weight: bold;
    color: #8b4a5c;
    margin-bottom: 10px;
}

.goods-price {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b9d;
}

/* 注意事項 */
.notice-section {
    margin-bottom: 50px;
    background: linear-gradient(to right, #fff9c4 0%, #fffef7 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #fdd835;
    box-shadow: 0 2px 4px rgba(253, 216, 53, 0.3);
    scroll-margin-top: 60px;
}

.notice-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #8b4a5c;
    border-bottom: 3px solid #fdd835;
    padding-bottom: 10px;
}

.notice-list {
    list-style: none;
    padding-left: 0;
}

.notice-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid #fff59d;
}

.notice-list li:before {
    content: "※";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #f9a825;
}

.notice-list li:last-child {
    border-bottom: none;
}

/* フッター */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #ffb6c1;
    margin-top: 0;
    margin-bottom: 0;
    color: #8b6f7e;
    font-size: 14px;
    background: linear-gradient(to bottom, #fffef7 0%, #ffe4e6 100%);
}

.footer p {
    margin: 5px 0;
}
