/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
}

:root {
    --web-view-ids: HOME;
}

.mediaViewInfo {
    --web-view-name: HOME;
    --web-view-id: HOME;
    --web-scale-on-resize: true;
    --web-enable-deep-linking: true;
}

/* アニメーション定義 */
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* フッターのスタイル */
#footer {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding-bottom: 40px;
}

/* 区切り線 */
.footer_sectionline {
    position: relative;
    width: 100%;
    height: 4px;
    overflow: visible;
}

.footer_sectionline_svg {
    display: block;
    width: 100%;
    height: 4px;
}

#footer_sectionline_rect {
    fill: rgba(0,0,0,1);
}

/* フッターコンテナ */
#footer_container {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 15%;
    overflow: visible;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ロゴとサブタイトル */
.footer-logo-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#footer-iconPikupikutai {
    width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-family: "A P-OTF Manpukumaru Min2", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    color: rgba(0,0,0,1);
}

/* フッターリンク */
.footer-links-container {
    display: flex;
    gap: 50px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-family: "A P-OTF Manpukumaru Min2", serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    color: rgba(0,0,0,1);
    cursor: pointer;
}

/* ソーシャルアイコン */
#footer-social-icons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-icon-container {
    display: flex;
    height: 24px;
    overflow: visible;
}

.footer-social-icon {
    height: 24px;
    object-fit: contain;
}

#footer-social-icon-twitter-path {
    fill: rgba(0,0,0,1);
}

.footer-social-icon-twitter {
    overflow: visible;
    height: 24px;
    transform: matrix(1,0,0,1,0,0);
}

/* レスポンシブデザイン */
@media screen and (max-width: 992px) {
    #footer_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links-container {
        margin: 30px 0;
    }
    
    #footer-social-icons-container {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links-column {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-subtitle {
        font-size: 18px;
    }
    
    .footer-link {
        font-size: 16px;
    }
    
    #footer-social-icons-container {
        gap: 15px;
    }
}

/* ヘッダーリンクスタイルの追加 */
.header-links-container a {
    text-decoration: none;
    color: inherit;
}

.header-link {
    cursor: pointer;
}

.header-link a {
    display: block;
    width: 100%;
    height: 100%;
}

/* モバイルメニューリンクスタイルの追加 */
.slide-menu-links a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* フッターリンクスタイルの追加 */
.footer-links-container a {
    text-decoration: none;
    color: inherit;
}

.footer-link {
    cursor: pointer;
}

/* ホバーエフェクト */
.header-link:hover, 
.mobile-link:hover,
.footer-link:hover {
    opacity: 0.8;
}