@charset "utf-8";
/* =============================================================
   SHOWTIME フッター リデザイン v2（全ページ共通）
   トップと同じトンマナ：白 × 赤 ／ 親しみ・柔らかい・洗練
   ※ .st-foot 配下のみに適用
============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

.st-foot {
    --st-red: #e8443b;
    --st-red-2: #ff6b5e;
    --st-red-deep: #c9302a;
    --st-pink: #fff1ef;
    --st-cream: #fffaf8;
    --st-ink: #38322f;
    --st-sub: #7c736e;
    --st-line: #efe6e2;
    --st-shadow-soft: 0 14px 34px -16px rgba(90, 70, 65, .22);
    --st-font: "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Sans", "Yu Gothic", sans-serif;
    --st-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", sans-serif;

    font-family: var(--st-font);
    color: var(--st-ink);
    line-height: 1.9;
    letter-spacing: .02em;
    background: #fff;
    margin-top: 0;
    -webkit-font-smoothing: antialiased;
}
.st-foot * { box-sizing: border-box; }
.st-foot img { max-width: 100%; height: auto; }
.st-foot svg { display: block; }
.st-foot a { text-decoration: none; transition: all .3s ease; }
/* テーマ既定の a{color} を打ち消す（:where で低詳細度にし、各ボタン等の色指定を優先させる） */
:where(.st-foot) a { color: inherit; }

.st-foot-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- 共通：見出し（EN + 赤アンダーライン） ---- */
.st-foot-eyebrow {
    display: inline-block;
    font-family: var(--st-round);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--st-red);
}

/* =============================================================
   CTA（角丸カード：トップの赤バナーと同じ作法）
============================================================= */
.st-foot-cta {
    padding: 68px 0 0;
    background:
        radial-gradient(90% 120% at 0% 0%, var(--st-cream), rgba(255, 250, 248, 0) 55%),
        #fff;
}
.st-foot-cta-card {
    position: relative;
    margin: 0 auto;
    padding: 46px 52px 44px;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(232, 68, 59, .93) 0%, rgba(255, 107, 94, .84) 100%),
        url("../img/footer-cta-bg.jpg") center center / cover no-repeat;
    color: #fff;
    box-shadow: 0 22px 46px -22px rgba(200, 60, 50, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
/* 画像を馴染ませる下方向の締めグラデ */
.st-foot-cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(201, 48, 42, 0) 55%, rgba(150, 30, 26, .35) 100%);
    pointer-events: none;
    z-index: 0;
}
.st-foot-cta-card > * { position: relative; z-index: 1; }
.st-foot-cta-text { width: 100%; }
.st-foot-cta-card .st-foot-eyebrow { color: rgba(255, 255, 255, .82); }
.st-foot-cta-title {
    font-family: var(--st-round);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 10px 0 8px;
}
.st-foot-cta-lead { font-size: 13.5px; opacity: .95; margin: 0; line-height: 1.9; }
.st-foot-cta-actions {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.st-foot-tel {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 26px;
    border-radius: 16px;
    background: #fff;
    color: var(--st-red-deep);
    line-height: 1.25;
}
.st-foot-tel small { font-size: 11px; letter-spacing: .1em; color: var(--st-red); font-weight: 500; }
.st-foot-tel strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--st-round);
    font-size: 21px;
    font-weight: 700;
}
.st-foot-tel strong svg { width: 17px; height: 17px; }
.st-foot-tel:hover { transform: translateY(-3px); color: var(--st-red-deep); box-shadow: 0 14px 26px -14px rgba(0, 0, 0, .35); }
.st-foot-tel-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.st-foot-tel-urgent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .02em;
}
.st-foot-tel-urgent svg { width: 13px; height: 13px; opacity: .85; }
.st-foot-tel-urgent span { font-family: var(--st-round); font-weight: 700; font-size: 14px; }
.st-foot-tel-urgent:hover { color: #fff; text-decoration: underline; }
.st-foot-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .85);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.st-foot-pill svg { width: 16px; height: 16px; }
.st-foot-pill:hover { background: #fff; color: var(--st-red-deep); transform: translateY(-3px); }

/* =============================================================
   MAIN
============================================================= */
.st-foot-main { padding: 62px 0 52px; background: #fff; }
.st-foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 52px;
}
.st-foot-brand-name {
    font-family: var(--st-round);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .06em;
    margin: 0 0 16px;
    color: var(--st-ink);
}
.st-foot-brand-name a { color: var(--st-ink); }
.st-foot-brand-logo img { max-height: 52px; width: auto; margin-bottom: 16px; }
.st-foot-catch {
    font-size: 13.5px;
    color: var(--st-sub);
    line-height: 2;
    margin: 0 0 22px;
    max-width: 360px;
}
.st-foot-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.st-foot-insta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--st-line);
    font-size: 13px;
    font-weight: 500;
    color: var(--st-ink);
    transition: border-color .25s, color .25s, transform .25s;
}
.st-foot-insta svg { width: 18px; height: 18px; color: var(--st-red); transition: color .25s; }
.st-foot-insta:hover { border-color: var(--st-red); color: var(--st-red-deep); transform: translateY(-2px); }

/* 列見出し */
.st-foot-col-title {
    font-family: var(--st-round);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--st-ink);
    margin: 0 0 20px;
    padding-bottom: 14px;
    position: relative;
}
.st-foot-col-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--st-red), var(--st-red-2));
}

/* ナビ */
.st-foot-nav { list-style: none; margin: 0; padding: 0; }
.st-foot-nav li + li { margin-top: 2px; }
.st-foot-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--st-ink);
}
.st-foot-nav a svg {
    width: 14px; height: 14px;
    color: var(--st-red);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .3s ease;
}
.st-foot-nav a:hover { color: var(--st-red-deep); transform: translateX(4px); }
.st-foot-nav a:hover svg { opacity: 1; transform: translateX(0); }

/* 連絡先 */
.st-foot-contact { list-style: none; margin: 0; padding: 0; }
.st-foot-contact li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--st-line);
}
.st-foot-contact li:first-child { padding-top: 0; }
.st-foot-c-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    margin-top: 3px;
    color: var(--st-red);
}
.st-foot-c-icon svg { width: 20px; height: 20px; }
.st-foot-c-label {
    /*display: block;*/
    margin-right: 15px;
    font-size: 10.5px;
    letter-spacing: .12em;
    color: var(--st-sub);
    font-weight: 500;
}
.st-foot-c-value {
    font-family: var(--st-round);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--st-ink);
    line-height: 1.5;
    word-break: break-all;
}
.st-foot-c-note {
    display: block;
    margin-top: 2px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    color: var(--st-sub);
    letter-spacing: .01em;
}

/* =============================================================
   BOTTOM
============================================================= */
.st-foot-bottom {
    border-top: 1px solid var(--st-line);
    background: #fff;
}
.st-foot-bottom-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.st-foot-copy {
    font-size: 12px;
    color: var(--st-sub);
    letter-spacing: .04em;
}
.st-foot-copy a { color: var(--st-ink); font-weight: 700; }
.st-foot-copy a:hover { color: var(--st-red-deep); }
.st-foot-totop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--st-sub);
}
.st-foot-totop .st-foot-totop-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--st-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-red);
    transition: all .3s ease;
}
.st-foot-totop .st-foot-totop-circle svg { width: 16px; height: 16px; }
.st-foot-totop:hover { color: var(--st-red-deep); }
.st-foot-totop:hover .st-foot-totop-circle {
    background: var(--st-red);
    border-color: var(--st-red);
    color: #fff;
    transform: translateY(-3px);
}

/* =============================================================
   レスポンシブ
============================================================= */
@media screen and (max-width: 900px) {
    .st-foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .st-foot-brand { grid-column: 1 / -1; }
    .st-foot-cta-card { padding: 40px 36px; }
}
@media screen and (max-width: 640px) {
    .st-foot-cta { padding: 48px 20px 0; }
    .st-foot-cta-card { padding: 34px 24px 32px; gap: 22px; }
    .st-foot-cta-title { font-size: 21px; }
    .st-foot-tel-group { width: 100%; }
    .st-foot-tel, .st-foot-pill { width: 100%; justify-content: center; }
    .st-foot-tel { align-items: center; }
    .st-foot-main { padding: 46px 0 40px; }
    .st-foot-grid { grid-template-columns: 1fr; gap: 34px; }
    .st-foot-brand { grid-column: auto; }
    .st-foot-catch { max-width: none; }
    .st-foot-bottom-inner { flex-direction: column-reverse; gap: 18px; text-align: center; }
}
