/**
 * 店舗案内ページ（専用レイアウト）
 */

.tcf-store-info {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(2.2rem, 4vw, 3rem);
}

.tcf-store-info__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: min(1080px, 100%);
    min-width: 0;
    margin: 0 auto;
    padding: 0 clamp(0.65rem, 3.5vw, 1.5rem);
}

.tcf-store-info__header {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    text-align: center;
}

.tcf-store-info__eyebrow {
    margin: 0 0 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7f2e35;
}

.tcf-store-info__title {
    margin: 0;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1e2745;
}

.tcf-store-info__lead {
    margin: 0.8rem auto 0;
    max-width: 760px;
    color: #3e3a34;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    line-height: 1.9;
}

.tcf-store-info__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(0.75rem, 1.8vw, 1.25rem);
    width: 100%;
    min-width: 0;
}

.tcf-store-info__grid > .tcf-store-card {
    min-width: 0;
}

.tcf-store-card {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    padding: clamp(0.95rem, 1.75vw, 1.4rem);
    border: 1px solid #d9d0c4;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 243, 236, 0.86));
    box-shadow: 0 6px 18px rgba(26, 19, 13, 0.08);
}

.tcf-store-card__title {
    margin: 0 0 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(127, 46, 53, 0.22);
    font-size: 1.2rem;
    font-weight: 700;
    color: #202a4a;
}

.tcf-store-card__list {
    margin: 0;
}

.tcf-store-card__row {
    display: grid;
    grid-template-columns: minmax(0, 7.2rem) minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.54rem 0;
    border-bottom: 1px dashed rgba(123, 104, 88, 0.26);
}

.tcf-store-card__row:last-child {
    border-bottom: none;
}

.tcf-store-card__row dt {
    margin: 0;
    font-weight: 700;
    color: #5a3a33;
}

.tcf-store-card__row dd {
    margin: 0;
    color: #282828;
    line-height: 1.85;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tcf-store-card__actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tcf-store-card__mini-map {
    position: relative;
    width: 100%;
    margin-top: 0.85rem;
    border: 1px solid #d9d0c4;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    /* 横幅いっぱいでも縦が潰れないよう 16:9（従来 170px 固定は横長すぎた） */
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.tcf-store-card__mini-map-iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(78%) contrast(95%);
}

.tcf-store-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.tcf-store-card__btn:hover {
    transform: translateY(-1px);
}

.tcf-store-card__btn--primary {
    color: #fffdf8 !important;
    border: 1px solid #5c3422;
    background: linear-gradient(180deg, #8f5632 0%, #6f4328 100%);
    box-shadow: 0 4px 10px rgba(66, 34, 20, 0.2);
}

.tcf-store-card__btn--ghost {
    color: #5c3c2d !important;
    border: 1px solid #ccb9a3;
    background: rgba(255, 255, 255, 0.92);
}

.tcf-store-sns-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.tcf-store-sns-list__item {
    padding: 0.9rem 0.95rem;
    border: 1px solid #dfd5c8;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
}

.tcf-store-sns-list__name {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.34rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: #202a4a;
}

.tcf-store-sns-list__icon {
    display: inline-block;
    width: 1.02rem;
    height: 1.02rem;
    border-radius: 50%;
    flex: 0 0 1.02rem;
}

.tcf-store-sns-list__icon--line {
    background: #06c755;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.88);
}

.tcf-store-sns-list__icon--instagram {
    background: radial-gradient(circle at 28% 108%, #feda75 0%, #fa7e1e 28%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.tcf-store-sns-list__desc {
    margin: 0;
    color: #38332e;
    line-height: 1.8;
}

.tcf-store-sns-list__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    color: #7f2e35 !important;
    font-weight: 700;
    text-decoration: none;
}

.tcf-store-sns-list__link::after {
    content: '›';
}

.tcf-store-kobe-cert {
    margin-top: 0.95rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #dfd5c8;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    /* 画像を大きく見せ、文言はカード下部にまとめる */
    min-height: clamp(380px, 52vh, 560px);
}

.tcf-store-kobe-cert__media {
    margin: 0;
    flex: 1 1 auto;
    min-height: clamp(200px, 28vw, 300px);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d7cbc0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
}

.tcf-store-kobe-cert__media img {
    width: 100%;
    flex: 1 1 auto;
    min-height: clamp(200px, 28vw, 300px);
    display: block;
    object-fit: cover;
    object-position: center center;
}

.tcf-store-kobe-cert__body {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 0.65rem;
}

.tcf-store-kobe-cert__title {
    margin: 0 0 0.2rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: #202a4a;
}

.tcf-store-kobe-cert__text {
    margin: 0;
    color: #3b352f;
    line-height: 1.55;
    font-size: 0.93rem;
}

.tcf-store-kobe-cert__links {
    margin-top: 0.38rem;
    display: grid;
    gap: 0.18rem;
}

.tcf-store-kobe-cert__links a {
    color: #7f2e35;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.tcf-store-kobe-cert__links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .tcf-store-kobe-cert {
        min-height: clamp(300px, 85vw, 460px);
    }

    .tcf-store-kobe-cert__media,
    .tcf-store-kobe-cert__media img {
        min-height: clamp(150px, 48vw, 220px);
    }
}

/* 狭い画面・タブレット縦では2カラムが詰まって右が欠けるため早めに1カラムへ */
@media (max-width: 960px) {
    .tcf-store-info__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tcf-store-card__row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

.tcf-store-info__footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.tcf-store-info__footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.58rem 1.05rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.tcf-store-info__footer-link:hover {
    transform: translateY(-1px);
}

.tcf-store-info__footer-link--primary {
    color: #fffdf8 !important;
    border: 1px solid #5c3422;
    background: linear-gradient(180deg, #8f5632 0%, #6f4328 100%);
    box-shadow: 0 4px 10px rgba(66, 34, 20, 0.2);
}

.tcf-store-info__footer-link--primary:hover {
    background: linear-gradient(180deg, #7f4d2e 0%, #693e24 100%);
}

.tcf-store-info__footer-link--ghost {
    color: #5c3c2d !important;
    border: 1px solid #ccb9a3;
    background: rgba(255, 255, 255, 0.92);
}

.tcf-store-info__footer-link--ghost:hover {
    background: rgba(255, 255, 255, 0.98);
}
