/*
Footer Styles for Beauty Clinic Theme
美容クリニックテーマ - フッター専用スタイル(PC・モバイル対応)
*/

/* 共通フッタースタイル */
.site-footer {
    margin-top: auto;
    font-family: 'Shippori Mincho', serif;
    position: relative;
    overflow: hidden;
    background-color: #FCFCFC;
}

/* モバイル版フッタースタイル - カーブ対応 */
.circle-decoration-footer {
    position: relative;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #888888;
    width: 500px;
    height: 150px;
    border-radius: 50% / 100% 100% 0 0;
    z-index: 10;
}

.footer-content {
    background: #888888;
    max-width: 100%;
    margin: 0 auto;
    position:relative;
    z-index: 20;
    padding-bottom: 20px;
}

/* メニューリスト（モバイル版） */
.footer-menu-list {
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: center;
    width: 80%;
}

.footer-menu-category {
    margin-bottom: 20px;
}

.footer-menu-category.flex {   
    display: flex;    
    justify-content: space-around;
}

.menu-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-align: center;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0 20px;
}

.menu-items li {
    margin-bottom: 10px;
    display: flex;    
    justify-content: space-around;
}

.menu-items a {
    font-weight: 400;
}

.menu-items a,
.menu-title a {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    letter-spacing: 0.02em;
}

.menu-title a {
    font-weight: 700;
}

.menu-items a:hover {
    opacity: 1;
}

/* アクションボタン */
.footer-actions {
    margin-bottom: 30px;
    text-align: center;
}

.footer-reservation-btn,
.footer-contact-btn {
    display: block;
    width: 280px;
    max-width: 100%;
    margin: 0 auto 15px;
    padding: 15px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-reservation-btn {
    background: #C4AA4D99;
    color: #FFFFFF;
}

.footer-reservation-btn:hover {
    background: #d4c086;
    transform: translateY(-2px);
}

.footer-contact-btn {
    background: transparent;
    color: #DCCC94;
    border: 1px solid #DCCC94;
}

.footer-contact-btn:hover {
    background: #DCCC94;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* SNSアイコン */
.footer-sns {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.footer-sns-icon {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-sns-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-sns-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* クリニック情報 */
.footer-clinic-info {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

/* 【修正箇所】スマホ時のロゴサイズを制限 */
.footer-logo img {
    max-width: 150px;
    height: auto;
}

.clinic-details {
    margin-bottom: 30px;
}

.postal-code,
.address {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.access-info {
    margin: 20px 0;
}

.access-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.access-details {
    font-family: 'Shippori Mincho', serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.google-map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.google-map-link:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

.external-icon {
    font-size: 14px;
}

/* コピーライト */
.copyright {
    padding-top: 10px;
    margin-top: 0;
}

.copyright p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.05em;
    text-align: center;
}

/* タブレット対応 */
@media (min-width: 480px){
    .circle-decoration-footer {
        width: 620px;
    }

    .footer-content {
        padding-bottom: 20px;
    }
    
    .footer-reservation-btn,
    .footer-contact-btn {
        width: 250px;
        padding: 12px 15px;
    }
    
    .footer-sns {
        gap: 30px;
    }
    
    .footer-sns-icon {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 600px){
    .circle-decoration-footer {
        width: 830px;
    }
}

@media (min-width: 800px){
    .circle-decoration-footer {
        width: 1020px;
    }
}



/* ==================================================
   PC版フッタースタイル
   ================================================== */
   
@media (min-width: 960px) {
    /* PC版基本設定 */
    .circle-decoration-footer {
        width: 1200px;
    }
    
    /* PC版レイアウト */
    .footer-pc-layout {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 5% 2% 5%;
        gap: 60px;
    }
    
    /* 左側：クリニック情報セクション */
    .footer-clinic-section {
        flex: 0 0 300px;
        text-align: left;
        width: 50%;
    }
    
    .footer-clinic-section .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-clinic-section .footer-logo img {
        max-width: 200px;
        height: auto;
    }
    
    .footer-clinic-section .clinic-details {
        text-align: left;
        margin-bottom: 0;
    }
    
    .footer-clinic-section .postal-code,
    .footer-clinic-section .address {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .footer-clinic-section .access-info {
        margin: 20px 0;
    }
    
    .footer-clinic-section .access-title {
        font-size: 16px;
        text-align: left;
    }
    
    .footer-clinic-section .access-details {
        font-size: 16px;
        text-align: left;
    }
    
    .footer-clinic-section .google-map-link {
        font-size: 16px;
    }

    /* クリニックヘッダー（ロゴとアクション横並び） */
    .clinic-header {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-clinic-section .footer-logo {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .footer-clinic-section .footer-logo img {
        max-width: 180px;
        height: auto;
    }

    /* ロゴ右側のSNSとボタンエリア */
    .footer-clinic-section .footer-bottom-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-top: 50px;
    }

    /* PC版クリニックセクションのSNS */
    .footer-clinic-section .footer-sns {
        display: flex;
        gap: 23px;
        margin-bottom: 0;
    }

    .footer-clinic-section .footer-sns-icon {
        width: 40px;
        height: 40px;
    }

    /* PC版クリニックセクションのアクションボタン */
    .footer-clinic-section .footer-actions {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 0;
    }

    .footer-clinic-section .footer-reservation-btn,
    .footer-clinic-section .footer-contact-btn {
        width: 180px;
        padding: 10px 15px;
        font-size: 16px;
        margin: 0;
    }
    
    /* 施術一覧セクション */
    .footer-menus-section {
        width: 50%;
    }
    .footer-services-section {
        text-align: left;
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-services-section .section-title {
        font-family: 'Shippori Mincho', serif;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
        text-align: left;
        width: 100%;
    }
    
    .footer-services-section .section-title a {
        color: #FFFFFF;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    .footer-services-section .section-title a:hover {
        opacity: 0.7;
    }
    
    .services-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .services-list a {
        font-family: 'Shippori Mincho', serif;
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: opacity 0.3s ease;
        text-align: left;
        line-height: 1.4;
        padding-right: 40px;
    }
    
    .services-list a:hover {
        opacity: 0.7;
    }
    
    /* その他ページセクション */
    .footer-pages-section {
        text-align: left;
    }

    .pages-list div {
        margin-bottom: 30px;
    }
    
    .pages-list .section-title {
        font-family: 'Shippori Mincho', serif;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        letter-spacing: 0.02em;
        text-align: left;
        line-height: 1.4;
        display: inline;
    }
    
    .pages-list .section-title a {
        color: #FFFFFF;
        text-decoration: none;
        transition: opacity 0.3s ease;
        margin-right: 20px;
    }
    
    .pages-list .section-title a:hover {
        opacity: 0.7;
    }
    
    /* PC版コピーライト */
    .copyright {
        text-align: center;
        padding-top: 10px;
        margin-top: 0;
    }
    
    .copyright p {
        font-size: 12px;
    }
}


@media (min-width: 1165px){
    .circle-decoration-footer {
        top: 45px;
        width: 1500px;
    }
}

@media (min-width: 1480px){
    .circle-decoration-footer {
        top: 45px;
        width: 1900px;
    }
}

@media (min-width: 1880px){
    .circle-decoration-footer {
        top: 45px;
        width: 2500px;
    }
}


/* スマートフォン対応 */
@media (max-width: 480px) {   
    .footer-reservation-btn,
    .footer-contact-btn {
        width: 220px;
        padding: 10px 12px;
    }
    
    .footer-sns {
        gap: 30px;
    }
    
    .footer-sns-icon {
        width: 35px;
        height: 35px;
    }
}