@charset "utf-8";
/* =============================================================
   SHOWTIME 会社概要ページ リデザイン
   トップと同じトンマナ：白 × 赤 ／ 親しみ・柔らかい・洗練
   ※ .sto-company 配下のみに適用
============================================================= */

@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');

.sto-company {
    --c-red: #e8443b;
    --c-red-2: #ff6b5e;
    --c-red-deep: #c9302a;
    --c-pink: #fff1ef;
    --c-cream: #fffaf8;
    --c-ink: #38322f;
    --c-sub: #7c736e;
    --c-line: #f2e3df;
    --c-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", sans-serif;
    --c-font: "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
    --c-radius: 24px;
    --c-shadow: 0 18px 44px -20px rgba(200, 60, 50, .26);
    --c-shadow-soft: 0 10px 30px -14px rgba(90, 70, 65, .20);

    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 20px;
    color: var(--c-ink);
    font-family: var(--c-font);
    line-height: 1.9;
    overflow: hidden;
}
.sto-company * { box-sizing: border-box; }

/* 背景の淡いブロブ */
.sto-company::before,
.sto-company::after {
    content: ""; position: absolute; border-radius: 50%; z-index: 0;
    filter: blur(6px); opacity: .5; pointer-events: none;
}
.sto-company::before {
    display: none;
    width: 250px; height: 250px; top: -70px; right: -90px;
    background: linear-gradient(135deg, #ffd9d2, #ffeae6);
}
.sto-company::after {
    width: 200px; height: 200px; bottom: 40px; left: -80px;
    background: linear-gradient(135deg, #ffe2dc, #fff3f0);
}
.sto-inner { position: relative; z-index: 1; }

/* 見出し */
.sto-head { text-align: center; margin: 0 0 36px; }
.sto-en {
    display: inline-block; font-family: var(--c-round);
    font-size: 12px; font-weight: 700; letter-spacing: .34em;
    color: var(--c-red); margin: 0 0 12px; padding-left: .34em;
}
.sto-en::before, .sto-en::after {
    content: ""; display: inline-block; width: 26px; height: 2px; border-radius: 2px;
    background: var(--c-red); vertical-align: middle; margin: 0 12px 3px;
}
.sto-title {
    font-family: var(--c-round); font-weight: 700;
    font-size: clamp(25px, 5vw, 32px); line-height: 1.35; margin: 0; color: var(--c-ink);
}

/* 写真ギャラリー */
.sto-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 36px;
}
.sto-gallery figure { margin: 0; }
.sto-gallery img {
    display: block; width: 100%; height: 100%; aspect-ratio: 5 / 3; object-fit: cover;
    border-radius: 16px; box-shadow: var(--c-shadow-soft);
    transition: transform .25s, box-shadow .25s;
}
.sto-gallery figure:hover img { transform: translateY(-3px); box-shadow: var(--c-shadow); }

/* 概要テーブル */
.sto-table-wrap {
    background: #fff; border: 1px solid var(--c-line);
    border-radius: var(--c-radius); box-shadow: var(--c-shadow-soft);
    padding: 14px 34px; margin: 0 0 40px;
}
.sto-table { width: 100%; border-collapse: collapse; }
.sto-table th,
.sto-table td {
    text-align: left; vertical-align: top;
    padding: 18px 0; border-bottom: 1px solid var(--c-line);
    font-size: 15px; line-height: 1.8;
}
.sto-table tr:last-child th,
.sto-table tr:last-child td { border-bottom: none; }
.sto-table th {
    width: 150px; font-family: var(--c-round); font-weight: 700;
    color: var(--c-red); white-space: nowrap; padding-right: 20px;
}
.sto-table td { color: var(--c-ink); }
.sto-table td small { display: inline-block; margin-top: 6px; font-size: 12.5px; color: var(--c-sub) !important; line-height: 1.6; }
.sto-table a {
    color: var(--c-red-deep); font-family: var(--c-round); font-weight: 700; text-decoration: none;
}
.sto-table a:hover { text-decoration: underline; }

/* 地図 */
.sto-map {
    border-radius: var(--c-radius); overflow: hidden;
    border: 1px solid var(--c-line); box-shadow: var(--c-shadow-soft);
    line-height: 0;
}
.sto-map iframe { display: block; width: 100%; height: 450px; border: 0; }

/* レスポンシブ */
@media screen and (max-width: 720px) {
    .sto-gallery { grid-template-columns: 1fr 1fr; }
    .sto-table-wrap { padding: 10px 22px; }
    .sto-table th, .sto-table td { display: block; width: 100%; }
    .sto-table th {
        padding: 16px 0 4px; border-bottom: none;
    }
    .sto-table td { padding: 0 0 16px; border-bottom: 1px solid var(--c-line); }
    .sto-table tr:last-child td { border-bottom: none; }
}
@media screen and (max-width: 480px) {
    .sto-gallery { grid-template-columns: 1fr; }
    .sto-map iframe { height: 340px; }
}
