@charset "utf-8";
/* CSS Document */


#base_caption {
    background: #f6f6f6;
    width: 100%;
    margin: 5em 0 0;
    padding: 0;
    font-size: 90% !important;
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.5;
    clear: both;
    letter-spacing: 0.08em;
}

#base_caption .inner {
    margin: 0 auto;
    padding: 5% 0;
    text-align: left;
}

/* ショッピング情報エリア */
#base_caption .shopping-info-container {
    /*max-width: 980px;*/
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

#base_caption .shopping-info {
    display: flex;
    flex-wrap: wrap;
}

#base_caption .left-section {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

#base_caption .right-section {
    flex: 1;
    min-width: 300px;
    padding: 6em 40px 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

#base_caption .info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 2em;
}

#base_caption .info-block:last-child {
    margin-bottom: 0;
}

#base_caption .icon-area {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1em;
}

#base_caption .icon-area {
    width: 80px;
    /* デフォルト: 60px */
    height: 80px;
}

#base_caption .icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#base_caption .icon-placeholder {
    width: 100%;
    height: 100%;
    background: #ffe0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e57373;
}

#base_caption .text-area {
    flex: 1;
}

#base_caption .title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

#base_caption .description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

#base_caption .link {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    margin-top: 4px;
    display: inline-block;
}

#base_caption .link:hover {
    color: #e57373;
}

#base_caption .detail-link {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

#base_caption .detail-link a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#base_caption .detail-link a:hover {
    color: #e57373;
}

#base_caption .detail-link a::after {
    content: "›";
    font-size: 18px;
}

#base_caption .phone-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 1.5em;
    text-align: center;
    font-weight: bold;
}

#base_caption .phone-number {
    text-align: center;
    margin-bottom: 8px;
    line-height: 3em;
}

#base_caption .free-call-label {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    line-height: 2em;
    margin-bottom: 1.7em;
}

#base_caption .phone-number-text {
    font-size: 45px;
    color: #333;
    letter-spacing: 0.05em;
    font-family: "Roboto", "Inter", sans-serif;
    font-weight: 500;
}

#base_caption .business-hours {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}

#base_caption .button-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#base_caption .guide-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

#base_caption .guide-button:hover {
    background: #f5f5f5;
}

#base_caption .guide-button::after {
    content: "›";
    font-size: 20px;
    color: #999;
}

#base_caption .notice-area {
    margin: 4.5em 0 0;
    padding: 1em 0;
    border-top: 1px solid #e0e0e0;
}

#base_caption .notice-item {
    font-size: 12px;
    color: #999;
    line-height: 1.8;
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
}

#base_caption .notice-item::before {
    content: "・";
    position: absolute;
    left: 0;
}

#base_caption .notice-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #base_caption .shopping-info {
        flex-direction: column;
    }

    #base_caption .left-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 24px;
    }

    #base_caption .right-section {
        padding: 24px;
    }

    #base_caption .phone-number-text {
        font-size: 28px;
    }

    #base_caption .info-block {
        margin-bottom: 24px;
    }
}