/* bo.css - スタイルシート for マダム・ボー技表 */

/* 変数定義 */
:root {
    --key-color: #d15959;
    --sub-color1: #efb8cd;
    --sub-color2: #75bbd1;
    --sub-color3: #6c62a9;
    --base-text-color: #0b0b09;
    --item-bg-color: #e3cba6;
    --base-bg-color: #705f53;
    --accent-color: #f4c430;
}

/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2px;
}

body {
    font-family: 'Noto Sans JP', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--base-text-color);
    background-color: var(--base-bg-color);
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%),
                      linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    background-color: var(--key-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

header h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* 目次 */
.table-of-contents {
    background-color: var(--sub-color3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-of-contents h2 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    font-size: 1.6rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.table-of-contents > ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.table-of-contents > ul > li {
    flex: 1;
    min-width: 280px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.table-of-contents ul ul {
    list-style-type: none;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents > ul > li > a {
    font-size: 1.1rem;
    color: white;
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    background-color: rgba(209, 89, 89, 0.7);
    border-radius: 4px;
    text-align: center;
}

.table-of-contents ul ul a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.table-of-contents a:hover {
    background-color: var(--key-color);
    transform: translateX(5px);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 - 目次 */
@media (max-width: 768px) {
    .table-of-contents > ul {
        flex-direction: column;
    }

    .table-of-contents > ul > li {
        width: 100%;
    }
}

/* セクションヘッダー */
section {
    margin-bottom: 40px;
}

section h2 {
    background-color: var(--sub-color3);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--sub-color3);
}

/* 技カード */
.move-card {
    background-color: var(--item-bg-color);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.move-card:hover {
    transform: translateY(-5px);
}

.move-card h3 {
    background-color: var(--key-color);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jp-name {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
    margin-left: 10px;
}

/* 技の画像 */
.move-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    max-height: 366px;
    background-color: #000;
}

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

.move-card:hover img {
    transform: scale(1.03);
}

.move-card figcaption {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.move-card:hover figcaption {
    opacity: 1;
}

/* 技詳細情報 */
.move-details {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item.description {
    grid-column: 1 / -1;
}

.label {
    font-weight: bold;
    color: var(--key-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.value {
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 1rem;
}

.command {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: var(--sub-color3);
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--base-bg-color);
    border-top: 5px solid var(--key-color);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 2rem;
    }

    .move-details {
        grid-template-columns: 1fr;
    }
}

/* bo.css - スタイルシート for マダム・ボー技表 */

/* 変数定義 */
:root {
    --key-color: #d15959;
    --sub-color1: #efb8cd;
    --sub-color2: #75bbd1;
    --sub-color3: #6c62a9;
    --base-text-color: #0b0b09;
    --item-bg-color: #e3cba6;
    --base-bg-color: #705f53;
    --accent-color: #f4c430;
}

/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--base-text-color);
    background-color: var(--base-bg-color);
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%),
                      linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    background-color: var(--key-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

header h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* 目次 */
.table-of-contents {
    background-color: var(--sub-color3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-of-contents h2 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    font-size: 1.6rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.table-of-contents > ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.table-of-contents > ul > li {
    flex: 1;
    min-width: 280px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.table-of-contents ul ul {
    list-style-type: none;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents > ul > li > a {
    font-size: 1.1rem;
    color: white;
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    background-color: rgba(209, 89, 89, 0.7);
    border-radius: 4px;
    text-align: center;
}

.table-of-contents ul ul a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.table-of-contents a:hover {
    background-color: var(--key-color);
    transform: translateX(5px);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 - 目次 */
@media (max-width: 768px) {
    .table-of-contents > ul {
        flex-direction: column;
    }

    .table-of-contents > ul > li {
        width: 100%;
    }
}

/* セクションヘッダー */
section {
    margin-bottom: 40px;
}

section h2 {
    background-color: var(--sub-color3);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--sub-color3);
}

/* 技カード */
.move-card {
    background-color: var(--item-bg-color);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.move-card:hover {
    transform: translateY(-5px);
}

.move-card h3 {
    background-color: var(--key-color);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jp-name {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
    margin-left: 10px;
}

/* 技の画像 */
.move-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    max-height: 366px;
    background-color: #000;
}

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

.move-card:hover img {
    transform: scale(1.03);
}

.move-card figcaption {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.move-card:hover figcaption {
    opacity: 1;
}

/* 技詳細情報 */
.move-details {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item.description {
    grid-column: 1 / -1;
}

.label {
    font-weight: bold;
    color: var(--key-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.value {
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 1rem;
}

.command {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: var(--sub-color3);
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--base-bg-color);
    border-top: 5px solid var(--key-color);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

/* 著作権フッター */
footer.copy {
    background-color: var(--key-color);
    color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 50px;
    position: relative;
    overflow: hidden;
}

footer.copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sub-color1), var(--sub-color2), var(--sub-color3));
}

.contact-info {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.contact-info img {
    vertical-align: middle;
    margin-right: 5px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.usage-terms {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
    font-size: 0.95rem;
    position: relative;
}

.usage-terms::before {
    content: "ご利用にあたって";
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--sub-color1);
    color: var(--base-text-color);
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.usage-terms p {
    margin: 8px 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright a {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.copyright a:hover {
    background-color: var(--sub-color3);
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.copyright img {
    margin-right: 5px;
}

.copyright a.push0 {
    position: relative;
    overflow: hidden;
}

.copyright a.push0::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 70%, var(--key-color) 150%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyright a.push0:hover::after {
    opacity: 0.6;
}

/* マダム・ボーテイストの装飾要素 */
.usage-terms::after {
    content: "🍶";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0.5;
}

.contact-info::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* レスポンシブ対応 - フッター */
@media (max-width: 768px) {
    footer.copy {
        padding: 15px;
    }

    .usage-terms {
        padding: 20px 10px 10px;
    }

    .copyright {
        flex-direction: column;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 2rem;
    }

    .move-details {
        grid-template-columns: 1fr;
    }
}

/* bo.css - スタイルシート for マダム・ボー技表 */

/* 変数定義 */
:root {
    --key-color: #d15959;
    --sub-color1: #efb8cd;
    --sub-color2: #75bbd1;
    --sub-color3: #6c62a9;
    --base-text-color: #0b0b09;
    --item-bg-color: #e3cba6;
    --base-bg-color: #705f53;
    --accent-color: #f4c430;
}

/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--base-text-color);
    background-color: var(--base-bg-color);
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%),
                      linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    background-color: var(--key-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, transparent 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

header h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

header .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* 目次 */
.table-of-contents {
    background-color: var(--sub-color3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-of-contents h2 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    font-size: 1.6rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.table-of-contents > ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.table-of-contents > ul > li {
    flex: 1;
    min-width: 280px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.table-of-contents ul ul {
    list-style-type: none;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents > ul > li > a {
    font-size: 1.1rem;
    color: white;
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    background-color: rgba(209, 89, 89, 0.7);
    border-radius: 4px;
    text-align: center;
}

.table-of-contents ul ul a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.table-of-contents a:hover {
    background-color: var(--key-color);
    transform: translateX(5px);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 - 目次 */
@media (max-width: 768px) {
    .table-of-contents > ul {
        flex-direction: column;
    }

    .table-of-contents > ul > li {
        width: 100%;
    }
}

/* セクションヘッダー */
section {
    margin-bottom: 40px;
}

section h2 {
    background-color: var(--sub-color3);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--sub-color3);
}

/* 技カード */
.move-card {
    background-color: var(--item-bg-color);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.move-card:hover {
    transform: translateY(-5px);
}

.move-card h3 {
    background-color: var(--key-color);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jp-name {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
    margin-left: 10px;
}

/* 技の画像 */
.move-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    max-height: 366px;
    background-color: #000;
}

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

.move-card:hover img {
    transform: scale(1.03);
}

.move-card figcaption {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.move-card:hover figcaption {
    opacity: 1;
}

/* 技詳細情報 */
.move-details {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item.description {
    grid-column: 1 / -1;
}

.label {
    font-weight: bold;
    color: var(--key-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.value {
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 1rem;
}

.command {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: var(--sub-color3);
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--base-bg-color);
    border-top: 5px solid var(--key-color);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

/* 著作権フッター */
footer.copy {
    background-color: var(--key-color);
    color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 50px;
    position: relative;
    overflow: hidden;
}

footer.copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sub-color1), var(--sub-color2), var(--sub-color3));
}

.contact-info {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.contact-info img {
    vertical-align: middle;
    margin-right: 5px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

.usage-terms {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
    font-size: 0.95rem;
    position: relative;
}

.usage-terms::before {
    content: "ご利用にあたって";
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--sub-color1);
    color: var(--base-text-color);
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.usage-terms p {
    margin: 8px 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright a {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.copyright a:hover {
    background-color: var(--sub-color3);
    transform: translateY(-3px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.copyright img {
    margin-right: 5px;
}

.copyright a.push0 {
    position: relative;
    overflow: hidden;
}

.copyright a.push0::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 70%, var(--key-color) 150%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyright a.push0:hover::after {
    opacity: 0.6;
}

/* マダム・ボーテイストの装飾要素 */
.usage-terms::after {
    content: "🍶";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    opacity: 0.5;
}

.contact-info::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* 更新時間 */
p.time {
    text-align: right;
    padding: 10px 15px;
    margin: 20px 0;
    background-color: var(--item-bg-color);
    border-left: 5px solid var(--key-color);
    color: var(--base-text-color);
    font-size: 0.9rem;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

p.time::before {
    content: "🕒";
    margin-right: 5px;
    font-size: 1.1rem;
}

p.time time {
    font-weight: bold;
}

/* SNSボタン */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    justify-content: center;
    align-items: center;
}

.share-buttons > * {
    transition: transform 0.3s ease;
}

.share-buttons > *:hover {
    transform: translateY(-3px);
}

/* Twitterボタンカスタマイズ */
.twitter-share-button {
    margin-right: 15px !important;
}

/* Facebookボタンカスタマイズ */
.fb-share-button {
    margin-left: 15px;
}

/* SNSセクション装飾 */
.share-buttons::before,
.share-buttons::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--key-color), transparent);
}

/* マダム・ボースタイルのSNSセクション */
.share-buttons {
    position: relative;
    padding: 10px 0;
}

.share-buttons::before {
    content: "💬";
    flex: initial;
    height: auto;
    background: none;
    margin-right: 10px;
    font-size: 1.2rem;
}

.share-buttons::after {
    content: "🍸";
    flex: initial;
    height: auto;
    background: none;
    margin-left: 10px;
    font-size: 1.2rem;
}

/* レスポンシブ対応 - 更新時間とSNSボタン */
@media (max-width: 768px) {
    p.time {
        text-align: center;
        border-left: none;
        border-bottom: 3px solid var(--key-color);
        border-radius: 5px 5px 0 0;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 2rem;
    }

    .move-details {
        grid-template-columns: 1fr;
    }
}
/* おすすめセクション */
#recommendations {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--sub-color3);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

#recommendations::before {
    content: "あなたにおすすめ";
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--key-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#recommendations::after {
    content: "🍶";
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

#recommendations a.push0 {
    display: flex;
    flex-direction: column;
    background-color: var(--item-bg-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--base-text-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

#recommendations a.push0:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

#recommendations a.push0::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, transparent 95%, var(--key-color) 95%, var(--key-color) 100%);
    pointer-events: none;
}

#recommendations a.push0 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 3px solid var(--key-color);
    transition: transform 0.3s ease;
}

#recommendations a.push0:hover img {
    transform: scale(1.05);
}

#recommendations a.push0:not(:first-child) {
    margin-top: 25px;
}

#recommendations br {
    display: none;
}

/* おすすめアイテムのテキスト部分 */
#recommendations a.push0 {
    padding-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

/* タブレット以上のデバイス向けレイアウト */
@media (min-width: 768px) {
    #recommendations {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    #recommendations a.push0 {
        margin: 0;
    }

    #recommendations a.push0:not(:first-child) {
        margin-top: 0;
    }
}

/* スマートフォン向けレイアウト */
@media (max-width: 767px) {
    #recommendations {
        padding: 20px 15px;
    }

    #recommendations::before {
        font-size: 0.9rem;
        padding: 4px 15px;
    }

    #recommendations a.push0 {
        margin-bottom: 15px;
    }
}

/* マダム・ボー紹介セクション */
.bo-intro {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--sub-color1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.bo-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.3)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.bo-intro h2 {
    color: var(--base-text-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--key-color);
    text-align: center;
    position: relative;
}


.bo-intro h3 {
    color: var(--key-color);
    font-size: 1.4rem;
    margin: 15px 0;
    text-align: center;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.bo-intro h3::before,
.bo-intro h3::after {
    content: "❖";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sub-color3);
    font-size: 1rem;
}

.bo-intro h3::before {
    left: -15px;
}

.bo-intro h3::after {
    right: -15px;
}

.bo-intro figure {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.bo-intro img.move-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bo-intro figure:hover img.move-image {
    transform: scale(1.02);
}

.bo-intro figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bo-intro figure:hover figcaption {
    opacity: 1;
}

.bo-intro p {
    margin: 15px 0;
    line-height: 1.8;
    color: var(--base-text-color);
    text-align: justify;
}

.bo-intro p:last-of-type {
    font-weight: bold;
    text-align: center;
    color: var(--key-color);
    font-size: 1.1rem;
    margin-top: 25px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .bo-intro {
        padding: 20px 15px;
    }

    .bo-intro h2 {
        font-size: 1.5rem;
    }

    .bo-intro h3 {
        font-size: 1.2rem;
    }

    .bo-intro p {
        font-size: 0.95rem;
    }
}
/* SVGメニュー */
#_モータルコンバット1メニュー {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    background-color: var(--base-bg-color);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

#_モータルコンバット1メニュー a {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

#_モータルコンバット1メニュー a:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

#_モータルコンバット1メニュー image {
    pointer-events: none;
}

/* 後方互換性のためのハック - SVGリンク用 */
svg a:not(:root svg a) {
    overflow: visible !important;
}

a image,
a use {
    pointer-events: visiblePainted !important;
}

/* パンくずリスト */
.breadcrumb-nav {
    margin: 20px 0;
    padding: 10px 15px;
    background-color: var(--sub-color2);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.breadcrumb-nav::before {
    content: "🏠";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 0 20px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.breadcrumb-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: underline;
}

.current-page {
    font-weight: bold;
    color: white;
    padding: 3px 6px;
    background-color: var(--key-color);
    border-radius: 3px;
    display: inline-block;
}

/* メインタイトル */
h1 {
    text-align: center;
    font-size: 2.2rem;
    color: white;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--key-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

h1::before, h1::after {
    content: "🍶";
    position: absolute;
    font-size: 1.6rem;
    opacity: 0.5;
}

h1::before {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

h1::after {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

h1::after {
    content: "🥃";
}

/* グラデーション効果を追加 */
h1 {
    background-image: linear-gradient(135deg, var(--key-color), var(--key-color) 60%, #c04848);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #_モータルコンバット1メニュー {
        padding: 5px;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.6rem;
        padding: 15px 30px;
    }

    h1::before, h1::after {
        display: none;
    }
}

/* 一覧に戻るボタン */
.back-to-list {
    display: block;
    width: 100%;
    margin: 20px 0 10px;
    padding: 12px 20px;
    background-color: var(--key-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-to-list::before {
    content: "↑";
    margin-right: 10px;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
}

.back-to-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    pointer-events: none;
}

.back-to-list:hover {
    background-color: var(--sub-color3);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.back-to-list:hover::after {
    left: 100%;
}

/* ホバー時の波紋効果 */
.back-to-list:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .back-to-list {
        padding: 10px 15px;
        font-size: 1rem;
    }
}
