/* =========================
   ✅ コンテンツ幅（119寄せ）
========================= */
.custom-container {
    max-width: 1100px;
}


/* =========================
   上段（会社名＋右リンク）
========================= */
.header-top {
    min-height: 40px;
    display: flex;
    align-items: center;
}

.header-top__in {
    width: 100%;
    padding: 4px 20px;
    /* ←左右余白で調整 */

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.page-title {
    margin-top: 35px;
    margin-bottom: 50px;
}

/* 左：会社名 */
.header-top__company {
    font-size: 11px;
    line-height: 1.2;
    color: #666;
}

/* 右：リンク */
.header-top__links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    font-size: 11px;
    color: #666;
}

.header-top__links a {
    font-size: 11px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
}

.header-top__links a:hover {
    text-decoration: underline;
}

.header-top__links a::after {
    content: "|";
    margin-left: 8px;
}

.header-top__links a:last-child::after {
    content: "";
}

.spec-item {
    margin-bottom: .5rem;
}

.spec-label {
    width: 120px;
    flex-shrink: 0;
}

.spec-colon {
    width: 20px;
    flex-shrink: 0;
}

.spec-value {
    flex: 1;
}


/* =========================
   ✅ 見出し
========================= */

p {
    font-size: 14px;
    color: #555;
}

/* =========================
   ✅ パンくず
========================= */

.mod_breadcrumb_inner {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.mod_breadcrumb_inner ul {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.mod_breadcrumb_inner li {
    display: flex;
    align-items: center;
}

.mod_breadcrumb_inner li:not(:last-child)::after {
    content: ">";
    margin: 0 10px;
    color: #999;
}

.mod_breadcrumb_inner a {
    color: #666;
    text-decoration: none;
}

.mod_breadcrumb_inner a:hover {
    text-decoration: underline;
}


/* =========================
   ✅ お知らせ
========================= */
.alert {
    padding: 16px;
    border: 1px solid #b6dff5;
    border-radius: 6px;
    background-color: #e7f3ff;
}

.maintenance-notice {
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #9cc9e7;
}

.maintenance-notice-title {
    color: #c00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.maintenance-notice-period {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.maintenance-notice-message {
    line-height: 1.8;
}

/* =========================
   ✅ カード
========================= */
.card {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}


/* =========================
   ✅ ボタン
========================= */
.btn {
    padding: 6px 14px;
    font-weight: 500;
    border-radius: 6px;
}


/* =========================
   ✅ フッター（Panasonic完全寄せ）
========================= */

ol,
ul {
    list-style: none;
}

/* Snsber
-----------------------------------------*/
.Snsber {
    margin-top: 30px;
    padding: 30px 10px;
}

@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
    .Snsber {
        padding: 25px 10px;
    }
}

.Snsber p {
    text-align: center;
    font-size: 20px;
    color: #666;
}

@media only screen and (max-width:640px) and (max-device-width:1280px) {
    .Snsber p {
        font-size: 16px;
    }
}

.Snsber ul {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Snsber ul li {
    width: 38px;
    margin: 0 17px;
}

@media only screen and (max-width:640px) and (max-device-width:1280px) {
    .Snsber ul li {
        margin: 0 15px;
    }
}

.Snsber ul li.Snsber__youtube {
    width: 44px;
}

.Snsber ul li.Snsber__sumu {
    width: 145px;
}

.Snsber ul li img {
    width: 100%;
    height: auto;
}

.Snsber ul li a:hover {
    opacity: 0.7;
}

.Snsber ul li a:focus {
    opacity: 0.7;
}

.Snsber ul li a:active {
    opacity: 0.7;
}


/* リンク */
.holdings-footer a {
    color: #333;
    text-decoration: none;
}

.holdings-footer a:hover {
    text-decoration: underline;
}

/* コピー */
.holdings-footer__copyright {
    margin-top: 10px;
    line-height: 1.6;
}

/* =========================
   ✅ 管理画面（フォーム統一）
========================= */

.form-container {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    max-width: 1050px;
    margin: 20px auto;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-group label {
    width: 140px;
    font-size: 13px;
    font-weight: 600;
}

/* 入力欄 */
.form-group input,
.form-group select {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 13px;
}

/* =========================
   ✅ select（見た目改善）
========================= */

.select-box {
    position: relative;
    flex: 1;
}

.select-box select {
    width: 100%;
    padding: 6px 30px 6px 8px;
    border: 1px solid #ccc;
    appearance: none;
    background: #fff;
}

/* ▼アイコン */
.select-box::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #666;
    pointer-events: none;
}

/* hover / focus */
.select-box select:hover {
    border-color: #999;
}

.select-box select:focus {
    border-color: #0d6efd;
    outline: none;
}


/* =========================
   ✅ ボタン強化
========================= */

.btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-warning {
    background: #f0ad4e;
    color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}


/* =========================
   ✅ テーブル整形
========================= */

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
}

th,
td {
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
    vertical-align: middle;
}

th {
    background-color: #f5f5f5;
}


/* =========================
   ✅ 検索フォーム
========================= */

.search-box {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}