/*
Theme Name: アニマルグループ
Description: TikTokライバー事務所のWordPressテーマ
Version: 1.0
Author: Animal Group
*/

/* common.cssの内容をここに含める */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #f0f0f0;
}

/* Custom colors for cards */
.bg-custom-orange {
    background-color: #ff6b00;
}

.bg-custom-blue {
    background-color: #00a3e0;
}

.bg-custom-pink {
    background-color: #ff3e96;
}

/* Nav styles for mobile */
.nav-links {
    transition: all 0.3s ease-in-out;
}

.nav-links.active {
    display: flex;
    position: absolute;
    top: 60px;
    right: 16px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    z-index: 10;
}
.main-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
}

/* 残りのcommon.cssの内容も含める */
/* ... (common.cssの全内容) ... */

/* WordPressクラス用の追加スタイル */
.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 0.5em;
}