:root {
--owner-bg: #050505;
--owner-panel: #111111;
--owner-panel-light: #181818;
--owner-text: #f4f4f4;
--owner-muted: #a9a9a9;
--owner-border: rgba(255, 255, 255, 0.14);
--owner-accent: #d0a85c;
--owner-accent-hover: #e2bd78;
--owner-danger: #ff8585;
}
body.owner-login-page {
    margin: 0;
    color: var(--owner-text);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(255, 255, 255, 0.07),
            transparent 420px
        ),
        var(--owner-bg);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;
    line-height: 1.7;
}

.owner-page {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

/* ヘッダー */

.owner-header {
	max-width: 1024px;
    padding: 32px 20px 20px;
    text-align: center;
}

.owner-brand {
    display: inline-block;
    width: min(100%, 700px);
}

.owner-brand img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.owner-program-label {
    margin: 12px 0 0;
    color: var(--owner-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1;
}
/* メイン */

.owner-main {
    width: min(calc(100% - 32px), 620px);
    margin: 0 auto;
    padding: 16px 0 56px;
}

.owner-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--owner-border);
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.96);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.owner-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        var(--owner-accent),
        transparent
    );
}

.owner-card-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--owner-border);
}

.owner-eyebrow {
    margin: 0 0 8px;
    color: var(--owner-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.owner-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 5vw, 2.15rem);
    line-height: 1.35;
}

.owner-lead {
    margin: 14px auto 0;
    max-width: 440px;
    color: var(--owner-muted);
    font-size: 0.95rem;
}

.owner-card-body {
    padding: 30px 32px 32px;
}

/* メッセージ */

.owner-alert {
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 133, 133, 0.4);
    border-radius: 10px;
    color: #ffd1d1;
    background: rgba(140, 30, 30, 0.18);
    font-size: 0.9rem;
}

.owner-alert strong {
    display: block;
    margin-bottom: 2px;
}

/* フォーム */

.owner-field {
    margin-bottom: 20px;
}

.owner-field label {
    display: block;
    margin-bottom: 8px;
    color: #eeeeee;
    font-size: 0.9rem;
    font-weight: 700;
}

/*
 * 現在のinputタグにowner-inputクラスを追加してください。
 * クラスを追加できない場合も、下のtype指定で適用されます。
 */
.owner-input,
.owner-login-form input[type="text"],
.owner-login-form input[type="email"],
.owner-login-form input[type="password"] {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 12px 15px;
    color: #ffffff;
    border: 1px solid var(--owner-border);
    border-radius: 10px;
    outline: none;
    background: #0b0b0b;
    font-size: 16px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.owner-input::placeholder,
.owner-login-form input::placeholder {
    color: #747474;
}

.owner-input:focus,
.owner-login-form input[type="text"]:focus,
.owner-login-form input[type="email"]:focus,
.owner-login-form input[type="password"]:focus {
    border-color: var(--owner-accent);
    background: #0e0e0e;
    box-shadow: 0 0 0 3px rgba(208, 168, 92, 0.16);
}

/* ブラウザ自動入力時の背景色対策 */

.owner-login-form input:-webkit-autofill,
.owner-login-form input:-webkit-autofill:hover,
.owner-login-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    caret-color: #ffffff;
    box-shadow: 0 0 0 1000px #0b0b0b inset;
}

/* ボタン */

.owner-submit,
.owner-login-form button[type="submit"],
.owner-login-form input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    padding: 12px 20px;
    color: #080808;
    border: 1px solid var(--owner-accent);
    border-radius: 10px;
    background: var(--owner-accent);
    box-shadow: none;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.owner-submit:hover,
.owner-login-form button[type="submit"]:hover,
.owner-login-form input[type="submit"]:hover {
    border-color: var(--owner-accent-hover);
    background: var(--owner-accent-hover);
}

.owner-submit:active,
.owner-login-form button[type="submit"]:active,
.owner-login-form input[type="submit"]:active {
    transform: translateY(1px);
}

.owner-submit:focus-visible,
.owner-secondary-button:focus-visible,
.owner-back-link:focus-visible {
    outline: 3px solid rgba(208, 168, 92, 0.42);
    outline-offset: 3px;
}

/* セキュリティ表示 */

.owner-security {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 13px 14px;
    border: 1px solid var(--owner-border);
    border-radius: 10px;
    color: var(--owner-muted);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.82rem;
}

.owner-security-icon {
    flex: 0 0 auto;
    color: var(--owner-accent);
    font-size: 1rem;
}

.owner-recaptcha {
    margin: 14px 0 0;
    color: #777777;
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: center;
}

.owner-recaptcha a {
    color: #a9a9a9;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* 新規登録カード */

.owner-register-card {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid var(--owner-border);
    border-radius: 16px;
    background: var(--owner-panel);
    text-align: center;
}

.owner-register-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.owner-register-card p {
    margin: 8px 0 18px;
    color: var(--owner-muted);
    font-size: 0.9rem;
}

.owner-secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 11px 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: transparent;
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.owner-secondary-button:hover {
    color: #ffffff;
    border-color: var(--owner-accent);
    background: rgba(208, 168, 92, 0.08);
    text-decoration: none;
}

/* サインインヘルプ */

.owner-help {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--owner-border);
    border-radius: 14px;
    background: var(--owner-panel);
}

.owner-help summary {
    position: relative;
    padding: 18px 52px 18px 20px;
    color: #eeeeee;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.owner-help summary::-webkit-details-marker {
    display: none;
}

.owner-help summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--owner-accent);
    content: "＋";
    font-size: 1.3rem;
    line-height: 1;
    transform: translateY(-50%);
}

.owner-help[open] summary::after {
    content: "－";
}

.owner-help[open] summary {
    border-bottom: 1px solid var(--owner-border);
}

.owner-help-body {
    padding: 20px;
    color: var(--owner-muted);
    font-size: 0.9rem;
}

.owner-help-body p:first-child {
    margin-top: 0;
}

.owner-help-body ul {
    margin: 14px 0 0;
    padding-left: 1.4em;
}

.owner-help-body li + li {
    margin-top: 10px;
}

/* 戻るリンク */

.owner-back {
    margin-top: 22px;
    text-align: center;
}

.owner-back-link {
    color: var(--owner-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.owner-back-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* JavaScript無効表示 */

.owner-noscript {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 193, 7, 0.45);
    border-radius: 10px;
    color: #ffe5a3;
    background: rgba(139, 103, 0, 0.15);
    font-size: 0.9rem;
}

/* フッター */

.owner-footer {
    margin-top: auto;
    padding: 30px 20px 34px;
    color: #7f7f7f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.75rem;
}

.owner-footer-logo {
    display: block;
    width: 150px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 14px;
}

.owner-footer p {
    margin: 3px 0;
}

.owner-copyright {
    margin-top: 14px !important;
    color: #606060;
}
#submit-btn {
  /*background-color: #007bff; /* 例：鮮やかな青 */
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease; /* 変化を滑らかにする */
}
#submit-btn:disabled {
  /*background-color: #7dff00*/; /* 背景色は同じまま */
  opacity: 0.5;              /* 透明度を50%にして色を薄く見せる */
  cursor: not-allowed;       /* カーソルを禁止マークにする */
}
/* スマートフォン */

@media (max-width: 575.98px) {
    .owner-header {
        padding: 24px 16px 14px;
    }

    .owner-brand {
        width: 100%;
    }

    .owner-program-label {
        margin-top: 8px;
        font-size: 0.66rem;
        letter-spacing: 0.2em;
    }

    .owner-main {
        width: min(calc(100% - 24px), 620px);
        padding-top: 10px;
    }

    .owner-card {
        border-radius: 16px;
    }

    .owner-card-header {
        padding: 25px 20px 20px;
    }

    .owner-card-body {
        padding: 24px 20px 26px;
    }

    .owner-lead {
        font-size: 0.88rem;
    }

    .owner-register-card {
        padding: 22px 18px;
    }

    .owner-help summary {
        padding-left: 18px;
    }
}

/* ==================================================
   オーナーアカウントページ
================================================== */

.owner-account-main {
    width: min(calc(100% - 32px), 820px);
    margin: 0 auto;
    padding: 16px 0 56px;
}


/* メインカード */

.owner-account-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 20px;
    background: #101010;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.owner-account-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        #e0b962,
        transparent
    );
}

.owner-account-header {
    padding: 32px 32px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    text-align: center;
}

.owner-account-eyebrow {
    margin: 0 0 8px;
    color: #f0c86d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.owner-account-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 5vw, 2.15rem);
    line-height: 1.4;
}

.owner-account-lead {
    max-width: 520px;
    margin: 13px auto 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.owner-account-body {
    padding: 30px 32px 34px;
}


/* メニュー */

.owner-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.owner-menu-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 24px;
    gap: 15px;
    align-items: center;
    min-height: 120px;
    padding: 20px;
    color: #ffffff;
    border: 1px solid #707070;
    border-radius: 13px;
    background: #181818;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.16s ease,
        box-shadow 0.2s ease;
}

.owner-menu-item:hover {
    color: #ffffff;
    border-color: #f0c86d;
    background: #222222;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.owner-menu-item:active {
    transform: translateY(0);
}

.owner-menu-item:focus-visible {
    outline: 3px solid rgba(240, 200, 109, 0.45);
    outline-offset: 3px;
}


/* アイコン */

.owner-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #f0c86d;
    border: 1px solid #747474;
    border-radius: 12px;
    background: #0a0a0a;
}

.owner-menu-icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* メニュー内文字 */

.owner-menu-content {
    min-width: 0;
}

.owner-menu-title {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.owner-menu-description {
    display: block;
    color: #d6d6d6;
    font-size: 0.81rem;
    line-height: 1.65;
}

.owner-menu-arrow {
    color: #f0c86d;
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.owner-menu-item:hover .owner-menu-arrow {
    transform: translateX(3px);
}


/* サインオフ */

.owner-menu-item--signoff .owner-menu-icon {
    color: #ffffff;
}

.owner-menu-item--signoff:hover {
    border-color: #d0d0d0;
}


/* 退会エリア */

.owner-danger-zone {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid #b75555;
    border-radius: 16px;
    background: #190e0e;
}

.owner-danger-heading {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.owner-danger-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffabab;
    border: 1px solid #c45d5d;
    border-radius: 10px;
    background: #2b1111;
}

.owner-danger-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.owner-danger-text {
    flex: 1;
    min-width: 0;
}

.owner-danger-title {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.owner-danger-description {
    margin: 7px 0 0;
    color: #e3caca;
    font-size: 0.85rem;
    line-height: 1.75;
}

.owner-danger-action {
    margin-top: 18px;
    text-align: right;
}

.owner-danger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    color: #ffffff;
    border: 1px solid #df7373;
    border-radius: 9px;
    background: #542020;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.owner-danger-link:hover {
    color: #ffffff;
    border-color: #ffaaaa;
    background: #762a2a;
    text-decoration: none;
}

.owner-danger-link:focus-visible {
    outline: 3px solid rgba(255, 130, 130, 0.42);
    outline-offset: 3px;
}


/* 補足案内 */

.owner-account-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px 16px;
    color: #dedede;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 11px;
    background: #161616;
    font-size: 0.82rem;
    line-height: 1.7;
}

.owner-account-note-icon {
    flex: 0 0 auto;
    color: #f0c86d;
    font-weight: 800;
}
/* ==================================================
   会員様へのお知らせ
================================================== */

.owner-member-news {
    margin-bottom: 24px;
    overflow: hidden;
	
    border: 1px solid #d4b45f;
    border-radius: 14px;
    background: #17140d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 22px rgba(0, 0, 0, 0.25);
}


/* 見出し */

.owner-member-news-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(240, 200, 109, 0.45);
    background: #211b0d;
}

.owner-member-news-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #000000;
    border-radius: 50%;
    background: #f0c86d;
}

.owner-member-news-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.owner-member-news-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.owner-member-news-subtitle {
    margin: 2px 0 0;
    color: #e4d8ba;
    font-size: 0.78rem;
}


/* お知らせ一覧 */

.owner-member-news-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.owner-member-news-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.owner-member-news-item:last-child {
    border-bottom: 0;
}


/* 日付・NEW表示 */

.owner-member-news-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
}

.owner-member-news-date {
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.owner-member-news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 23px;
    padding: 2px 9px;
    color: #000000;
    border-radius: 20px;
    background: #f0c86d;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}


/* お知らせ内容 */

.owner-member-news-content {
    min-width: 0;
}

.owner-member-news-heading {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.6;
}

.owner-member-news-text {
    margin: 7px 0 0;
    color: #e2e2e2;
    font-size: 0.84rem;
    line-height: 1.75;
}

.owner-member-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 9px;
    color: #f4d486;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.owner-member-news-link::after {
    content: "›";
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.owner-member-news-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.owner-member-news-link:hover::after {
    transform: translateX(3px);
}

.owner-member-news-link:focus-visible {
    outline: 3px solid rgba(240, 200, 109, 0.45);
    outline-offset: 4px;
}


/* お知らせが1件もない場合 */

.owner-member-news-empty {
    margin: 0;
    padding: 18px 20px;
    color: #dedede;
    font-size: 0.86rem;
    text-align: center;
}

/* ==================================================
   お知らせ欄：二重枠を解消
================================================== */

.owner-member-news {
    position: relative;
    margin: 0 0 28px;
    overflow: hidden;

    /* 四辺の枠をなくす */
    border: 0;
    border-radius: 10px;

    background: #171717;
    box-shadow: none;
}


/* 左側だけゴールドのアクセント線 */

.owner-member-news::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: #e0b962;
}


/* 見出し部分 */

.owner-member-news-header {
    padding: 17px 20px 15px 24px;

    /* 見出し部分を枠で区切らない */
    border-bottom: 0;
    background: #1d1d1d;
}


/* お知らせアイコン */

.owner-member-news-icon {
    width: 36px;
    height: 36px;
    color: #000000;
    background: #e0b962;
}


/* 一覧部分 */

.owner-member-news-list {
    margin: 0;
    padding: 0 20px 2px 24px;
}


/* お知らせ1件ごとの区切り */

.owner-member-news-item {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;

    /* 全幅の枠ではなく、薄い横線だけ */
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.owner-member-news-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.owner-member-news-item:last-child {
    border-bottom: 0;
}


/* お知らせがない場合 */

.owner-member-news-empty {
    margin: 0;
    padding: 18px 20px 20px 24px;
    color: #dedede;
    background: #171717;
}
/* ==================================================
   パスワード変更ページ
================================================== */

.owner-password-main {
    width: min(calc(100% - 32px), 650px);
    margin: 0 auto;
    padding: 16px 0 56px;
}


/* メインカード */

.owner-password-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 20px;
    background: #101010;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.owner-password-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        #e0b962,
        transparent
    );
}


/* 見出し */

.owner-password-header {
    padding: 32px 32px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    text-align: center;
}

.owner-password-eyebrow {
    margin: 0 0 8px;
    color: #f0c86d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.owner-password-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 5vw, 2.1rem);
    line-height: 1.4;
}

.owner-password-lead {
    max-width: 500px;
    margin: 13px auto 0;
    color: #e2e2e2;
    font-size: 0.94rem;
    line-height: 1.8;
}

.owner-password-body {
    padding: 30px 32px 34px;
}


/* 入力項目 */

.owner-password-field {
    margin-bottom: 22px;
}

.owner-password-label-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 9px;
}

.owner-password-label {
    margin: 0;
    color: #ffffff;
    font-size: 0.91rem;
    font-weight: 800;
}

.owner-password-required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 21px;
    padding: 1px 8px;
    color: #000000;
    border-radius: 20px;
    background: #e0b962;
    font-size: 0.67rem;
    font-weight: 900;
}


/* パスワード入力欄 */

.owner-password-input-wrap {
    position: relative;
}

.owner-password-input {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 12px 72px 12px 15px;
    color: #ffffff;
    border: 1px solid #777777;
    border-radius: 10px;
    outline: none;
    background: #171717;
    font-family: inherit;
    font-size: 16px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.owner-password-input::placeholder {
    color: #b8b8b8;
    opacity: 1;
}

.owner-password-input:hover {
    border-color: #aaaaaa;
}

.owner-password-input:focus {
    border-color: #f0c86d;
    background: #1c1c1c;
    box-shadow:
        0 0 0 3px rgba(240, 200, 109, 0.24),
        0 0 14px rgba(240, 200, 109, 0.12);
}


/* Chromeなどの自動入力対策 */

.owner-password-input:-webkit-autofill,
.owner-password-input:-webkit-autofill:hover,
.owner-password-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    caret-color: #ffffff;
    border: 1px solid #777777;
    box-shadow: 0 0 0 1000px #171717 inset;
}


/* 表示・非表示ボタン */

.owner-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    min-width: 56px;
    min-height: 38px;
    padding: 5px 9px;
    color: #ffffff;
    border: 1px solid #707070;
    border-radius: 7px;
    background: #292929;
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.owner-password-toggle:hover {
    color: #000000;
    border-color: #f0c86d;
    background: #f0c86d;
}

.owner-password-toggle:focus-visible {
    outline: 3px solid rgba(240, 200, 109, 0.45);
    outline-offset: 2px;
}


/* 入力欄下の補足 */

.owner-password-field-note {
    margin: 7px 0 0;
    color: #cfcfcf;
    font-size: 0.78rem;
    line-height: 1.65;
}


/* パスワード条件
   四辺を囲まず、左側の線だけにする */

.owner-password-guide {
    margin: 2px 0 26px;
    padding: 15px 17px;
    border: 0;
    border-left: 4px solid #e0b962;
    border-radius: 0 9px 9px 0;
    background: #191919;
}

.owner-password-guide-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.87rem;
    font-weight: 800;
}

.owner-password-guide-list {
    margin: 0;
    padding-left: 1.3em;
    color: #dedede;
    font-size: 0.8rem;
    line-height: 1.8;
}

.owner-password-guide-list li + li {
    margin-top: 3px;
}

.owner-password-guide-list li::marker {
    color: #f0c86d;
}


/* エラー・完了メッセージ */

.owner-password-message {
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 0;
    border-left: 4px solid;
    border-radius: 0 9px 9px 0;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.7;
}

.owner-password-message strong {
    display: block;
    margin-bottom: 2px;
}

.owner-password-message--error {
    border-left-color: #ff8585;
    background: #491919;
}

.owner-password-message--success {
    border-left-color: #75d99a;
    background: #143522;
}


/* ボタン */

.owner-password-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 12px;
    margin-top: 6px;
}

.owner-password-cancel,
.owner-password-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.93rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.15s ease;
}


/* 戻るボタン */

.owner-password-cancel {
    color: #ffffff;
    border: 1px solid #858585;
    background: #1b1b1b;
}

.owner-password-cancel:hover {
    color: #ffffff;
    border-color: #d0d0d0;
    background: #292929;
    text-decoration: none;
}


/* 変更ボタン */

.owner-password-submit {
    color: #000000;
    border: 1px solid #f0c86d;
    background: #e0b962;
    box-shadow: 0 4px 14px rgba(224, 185, 98, 0.2);
}

.owner-password-submit:hover {
    color: #000000;
    border-color: #ffe09a;
    background: #f0cb7b;
}

.owner-password-cancel:active,
.owner-password-submit:active {
    transform: translateY(1px);
}

.owner-password-cancel:focus-visible,
.owner-password-submit:focus-visible {
    outline: 3px solid rgba(240, 200, 109, 0.45);
    outline-offset: 3px;
}


/* セキュリティ案内 */

.owner-password-security {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 22px;
    padding-top: 18px;
    color: #d5d5d5;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.79rem;
    line-height: 1.7;
}

.owner-password-security-icon {
    flex: 0 0 auto;
    color: #f0c86d;
    font-weight: 900;
}


/* スマートフォン */

@media (max-width: 575.98px) {
    .owner-password-main {
        width: min(calc(100% - 24px), 650px);
        padding-top: 10px;
    }

    .owner-password-card {
        border-radius: 16px;
    }

    .owner-password-header {
        padding: 26px 20px 21px;
    }

    .owner-password-body {
        padding: 24px 20px 27px;
    }

    .owner-password-actions {
        grid-template-columns: 1fr;
    }

    .owner-password-submit {
        order: 1;
    }

    .owner-password-cancel {
        order: 2;
    }
}


/* 動きを抑える設定 */

@media (prefers-reduced-motion: reduce) {
    .owner-password-input,
    .owner-password-toggle,
    .owner-password-cancel,
    .owner-password-submit {
        transition: none;
    }
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}
/*----------------------------------------------*/
/* スマートフォン */

@media (max-width: 575.98px) {
    .owner-member-news {
        margin-bottom: 22px;
    }

    .owner-member-news-header {
        padding: 15px 16px 14px 20px;
    }

    .owner-member-news-list {
        padding-right: 16px;
        padding-left: 20px;
    }

    .owner-member-news-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }
}
/* スマートフォン */

@media (max-width: 575.98px) {
    .owner-member-news-header {
        padding: 15px 7px;
    }

    .owner-member-news-item {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 17px　7px;
    }

    .owner-member-news-meta {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .owner-member-news-title {
        font-size: 1rem;
    }
}
/* スマートフォン */

@media (max-width: 650px) {
    .owner-account-main {
        width: min(calc(100% - 24px), 820px);
        padding-top: 10px;
    }

    .owner-account-card {
        border-radius: 16px;
    }

    .owner-account-header {
        padding: 26px 20px 22px;
    }

    .owner-account-body {
        padding: 22px 20px 26px;
    }

    .owner-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .owner-menu-item {
        min-height: 104px;
        padding: 17px;
    }

    .owner-danger-zone {
        padding: 20px;
    }

    .owner-danger-action {
        text-align: left;
    }

    .owner-danger-link {
        width: 100%;
    }
}


/* 小さいスマートフォン */

@media (max-width: 380px) {
    .owner-menu-item {
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        gap: 12px;
        padding: 15px;
    }

    .owner-menu-icon {
        width: 46px;
        height: 46px;
    }

    .owner-menu-title {
        font-size: 0.94rem;
    }

    .owner-menu-description {
        font-size: 0.77rem;
    }
}


/* 動きを減らす設定 */

@media (prefers-reduced-motion: reduce) {
    .owner-menu-item,
    .owner-menu-arrow,
    .owner-danger-link {
        transition: none;
    }

    .owner-menu-item:hover {
        transform: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .owner-login-page * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
} position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 480px;
  word-wrap: break-word;
  background-color: #404040;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card-text{
  color : #DDD;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.125);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-body {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.125);
  border-top: 1px solid rgba(0, 0, 0, 0.5125);
}
    .form-container {
      width: 95%;
      max-width: 720px;
      margin: 0 auto;
      padding: 32px;
      background: #333;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
.card-text:last-child {
	margin-bottom: 0;
	color: #333;
}
.no-marker {
  list-style: none;
  padding-left: 0;
}
    h1 {
      margin: 0 0 8px;
      font-size: 28px;
      text-align: center;
    }

    .intro {
      margin: 0 0 32px;
      color: #eee;
      text-align: center;
    }

    .form-group {
      margin-bottom: 26px;
    }

    label,
    .group-label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
    }

    .required {
      display: inline-block;
      margin-right: 6px;
      padding: 1px 7px;
      border-radius: 4px;
      background: #d93025;
      color: #ddd;
      font-size: 12px;
      vertical-align: 2px;
    }

    .optional {
      display: inline-block;
      margin-right: 6px;
      padding: 1px 7px;
      border-radius: 4px;
      background: #ccaa77;
      color: #ddd;
      font-size: 12px;
      vertical-align: 2px;
    }

    input,
    select {
      width: 100%;
      min-height: 48px;
      padding: 10px 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #444;
      color: #ddd;
      font-size: 16px;
    }

    input:focus,
    select:focus {
      border-color: #1769aa;
      outline: 3px solid rgba(23, 105, 170, 0.18);
    }

    input[readonly] {
      background: #333;
      color: #aaa;
      cursor: not-allowed;
    }

    .help-text {
      margin: 7px 0 0;
      color: #fff;
      font-size: 14px;
    }

    .public-notice {
      margin: 7px 0 0;
      color: #cccc00;
      font-size: 14px;
      font-weight: bold;
    }

    .password-warning {
      margin: 12px 0 0;
      padding: 15px;
      border-left: 5px solid #d93025;
      background: #fff4f3;
      color: #70231d;
      font-size: 14px;
    }

    .password-warning strong {
      display: block;
      margin-bottom: 4px;
      color: #b3261e;
    }

    .error-message {
      display: none;
      margin: 7px 0 0;
      color: #d93025;
      font-size: 14px;
      font-weight: bold;
    }

    .submit-button {
      width: 100%;
      min-height: 52px;
      margin-top: 10px;
      border: 0;
      border-radius: 7px;
      background: #1769aa;
      color: #fff;
      font-size: 17px;
      font-weight: bold;
      cursor: pointer;
    }

    .submit-button:hover {
      background: #0e578f;
    }

    .submit-button:focus {
      outline: 3px solid rgba(23, 105, 170, 0.3);
      outline-offset: 3px;
    }
.<strong>form-control</strong>:disabled, .form-control[readonly] {
  background-color: #e9secef;
  opacity: 1;
}

    @media (max-width: 600px) {
      body {
        padding: 12px;
      }

      .form-container {
        padding: 24px 18px;
      }

      h1 {
        font-size: 24px;
      }
    }

  * {
      box-sizing: border-box;
    }

    body,html {
      margin: 0;
      padding: 10px 6px;
      background: #111;
      color: #ddd;
 
.toukoform_box form table td {
	margin-left: 0px;
	padding: 0px 10px 0px 10px;

}

#userform td {
	border: 0px;
	padding-left: 5px;
}

#contents {
	line-height: 1.1;
	overflow: hidden;
}
#wapper {
	width: auto;
	margin: 0 auto;
	max-width: 720px;
	min-width: 780px;
}
#content_share {
	overflow: hidden;
}
#content {
	overflow: hidden;
	clear:left;
}
#content li {
	text-align: left;
	float : left;
	height: 220px;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content li.middle_left {
	text-align: left;
	float: left;
	width : 280px;
	height: 200px;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
}
/* lifeの作品*/
@media screen and (max-width: 478px){
#lifeselect {
	height: 500px;
}
}
/* タブレットのスタイル Nexus7 2012*/
@media screen and (max-width: 1200px){
#lifeselect {
	height: 300px;
}
}
#lifeselect span.bgcolor{
	text-align: left;
	float : left;
	width : 120px;
	height: auto;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#lifesakuhin span.bgcolor{
	text-align: left;
	float :left;
	width : 160px;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

/* PCのスタイル */
/* ▼表示領域が3000px未満の場合 */
@media screen and (min-width: 1200px){
#content div.mini {
	width : 281px;
	height: 285px;
	font-size : 12px;
}
#content div.mini2 {
	width : 274px;
	height: 585px;
	font-size : 12px;
}

#content div.rank {
	overflow-y:scroll;
	overflow-x:hidden;
 	width:240px;
  	height:90% ;
   	border:0
}
.cover {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 3px 3px 2px 2px;
    width: 95%;
  	height:195px ;
    background-size: cover;
}
#content li.wide {
	width : 558px;
	height: 285px;
	font-size : 12px;
}
}
/* タブレットのスタイル Nexus7 2012*/
/* ▼表示領域が1200px未満の場合 */
@media screen and (max-width: 800px)and (orientation: portrait){
#content li.mini {
	width : 48%;
	height: 285px;
	font-size : 12.5px;
}
#content li.mini2 {
	width : 274px;
	height: 585px;
	font-size : 12px;
}

#content div.rank {
	overflow-y:scroll;
	overflow-x:hidden;
 	width:240px;
  	height:90% ;
   	border:0
}
.cover {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 5px 3px 2px 2px;
    width: 95%;
    height: 195px;
    background-size: cover;
}
#content li.wide {
	width : 558px;
	height: 285px;
	font-size : 12px;
}}

/* landscape | portrait（横向き or 縦向き） */
/*screen and (orientation: portrait)*/

/* スマホのスタイル ihpone6 横向き*/
/* ▼表示領域が1200px未満の場合 */
@media screen and (max-width: 1200px) and (orientation: landscape){
#content li.mini {
	width : 48%;
	height: 275px;
	font-size : 13px;
}
#content li.mini2 {
	width : 345px;
	height: 585px;
	font-size : 12px;
}

#content div.rank {
	overflow-y:scroll;
	overflow-x:hidden;
 	width:335px;
  	height:85% ;
   	border:0
}
.cover {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 5px 3px 2px 2px;
    width: 95%;
    height: 195px;
    background-size: cover;
}
#content li.wide {
	width : 335px;
	height: 285px;
	font-size : 14px;
}
}
/* スマホのスタイル ihpone6 縦向き */
/* ▼表示領域が478px未満の場合 */
@media screen and (max-width: 480px) and (orientation: portrait){
#content li.mini {
	width : 100%;
	height: 275px;
	font-size : 13px;
}
#content li.mini2 {
	width : 345px;
	height: 585px;
	font-size : 12px;
}

#content div.rank {
	overflow-y:scroll;
	overflow-x:hidden;
 	width:350px;
  	height:85% ;
   	border:0
}
.cover {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 5px 3px 2px 2px;
    width: 95%;
    height: 195px;
    background-size: cover;
}
#content li.wide {
	width : 395px;
	height: 285px;
	font-size : 14px;
}
}

/* スマホのスタイル iphone5 */
/* ▼表示領域が320px未満の場合 */
@media (max-width: 320px){
#lifesakuhin span.bgcolor{
	text-align: left;
	float :left;
	width : 130px;
	margin: 5px 2px 5px 2px;
	padding: 5px 5px 5px 5px;
}
#content li.mini {
	width : 95%;
	height: 280px;
	font-size : 12px;
}
#content li.mini2 {
	width : 280px;
	height: 585px;
	font-size : 12px;
}

#content div.rank {
	overflow-y:scroll;
	overflow-x:hidden;
 	width:240px;
  	height:90% ;
   	border:0
}
.cover {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 5px 3px 2px 2px;
    width: 95%;
    height: 195px;
    background-size: cover;
}
#content li.wide {
	width : 280px;
	height: 230px;
	font-size : 12px;
}

}
/* ---- */

#content li.midle {
	text-align: left;
	/*float: left;*/
	width : 280px;
	height: 200px;
	margin: 5px 5px 5px 10px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
}
#content li.lage {
	text-align: left;
	float: left;
	width : 280px;
	height: 220px;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
}
#content li.tejyun {
	text-align: left;
	float: left;
	width : 280px;
	height: 350px;
	margin: 15px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
		font-size: 14px;

}



#content li.comment_title {
	text-align: left;
	width : auto;
	height: 1em;
	margin: 15px 5px 5px 5px;
	padding: 7px 0px 2px 2px;
	background: #fff;
	/*border: solid 1px #ddd;	*/
	border: 0;
}
#content li.comment_a {
	text-align: left;
	float: none;
	width : auto;
	height: 1em;
	margin: 5px 5px 5px 5px;
	padding: 7px 0px 2px 2px;
	background: #fff;
	border: solid 1px #ddd;
	border: 0;
}
#content li.comment_b {
	text-align: left;
	float: none;
	width : auto;
	height: 1em;
	margin: 5px 5px 5px 20px;
	padding: 7px 0px 12px 2px;
	background: #fff;
	border: solid 1px #ddd;
	border: 0;
}
#content li.sakusya_comment_title {
	text-align: left;
	float:none;
	width : 95%;
	height: 1.5em;
	margin: 15px 5px -1px 5px;
	padding: 2px;
	background: #FFFEE8;
	border: 1px solid #ddd;
	max-width:  720px;
	min-width: 280px;
	border-left: 5px solid #3333dd; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content li.sakusya_comment_area {
	text-align: left;
	
	width : 95%;
	height: auto;
	margin: 0px 5px 5px 5px;
	padding: 2px;
	background: #fefefe;
	border: 1px solid #ddd;
	max-width:  966px;
	min-width: 280px;
	min-height: 1.5em;
	border-left: 5px solid #aaaadd; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content li.sakuhin_jyouhou {
	text-align: left;
	width : 92%;
	float:none;
	height: auto;
	margin: 0px 5px -1px 5px;
	padding: 2px;
	background: #fff;
	border: 1px solid #ddd;
	max-width:  720px;
	min-width: 280px;
	min-height: 1.5em;
	border-left: 5px solid #eee; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content li.used_tool {
	text-align: left;
	font-size:11;
	width : 92%;
	height : auto;
	overflow:hidden;
	float:none;
	/*height: 420px;*/ 
	margin: 0px 5px -1px 5px;
	padding: 2px;
	background: #fff;
	border: 1px solid #ddd;
	max-width:  966px;
	min-width: 280px;
	min-height: 50px;
	max-height: 200px;
	
	border-left: 5px solid #777777; /* 左ボーダーを、10px幅の実線、線色#55cc44に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content .used_tool_img {
	text-align: left;
	font-size:11;
	width : 92%;
	overflow:hidden;
	float:none;
	height: auto; 
	margin: 0px 5px -1px 5px;
	padding: 2px;
	background: #fff;
	border: 1px solid #ddd;
	max-width:  966px;
	min-width: 280px;
		
	border-left: 5px solid #77dd77; /* 左ボーダーを、10px幅の実線、線色#55cc44に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    background-image: url(/image/bord.png) ;
}
.eturansya_comment_area {
	font-size: 14px;
	text-align: left;
	width : 90%;
	height: auto;
	margin: 0px 5px 0px 5px;
	padding: 2px;
	background: #fdfdfd;
	border: 1px solid #ddd;
	max-width:  966px;
	min-width: 300px;
	border-left: 5px solid #ccccdd; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.eturansya_comment_list_area {
	font-size: 14px;
	text-align: left;
	width : 90%;
	height: auto;
	margin: 5px 5px 5px 5px;
	padding: 2px;
	background: #eee;
	border: 1px solid #ccc;
	max-width:  966px;
	min-width: 300px;
	border-left: 5px solid #ccc; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.eturansya_comment_list_myarea {
	font-size: 14px;
	text-align: left;
	width : 90%;
	height: auto;
	margin: 5px 5px 5px 5px;
	padding: 2px;
	background: #ced;
	border: 1px solid #333;
	max-width:  966px;
	min-width: 300px;
	border-left: 5px solid #ccc; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content li.eturansya_comment_list_myarea_del {
	font-size: 14px;
	text-align: left;
	width : 90%;
	height: auto;
	margin: 5px 5px 5px 5px;
	padding: 2px;
	background: #ecc;
	border: 1px solid #333;
	max-width:  966px;
	min-width: 300px;
	border-left: 5px solid #ccc; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.eturansya_comment_title {
	text-align: left;
	width : 90%;
	height: 1.5em;
	margin: 15px 5px -1px 5px;
	padding: 2px;
	background: #fff;
	border: 1px solid #666;
	max-width:  966px;
	min-width: 300px;
	border-left: 5px solid #3366cc; /* 左ボーダーを、10px幅の実線、線色#CC3366に */
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
#content .comment_line {
	font-size: 80%;
	text-align: left;
	width : auto;
	height: auto;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	max-width:  966px;
	min-width: 300px;
	max-height: 7em;
	min-height: 2em;
	background: #fff;
}
#content li.comment_box {
	font-size: 80%;
	text-align: left;
	width : 40em;
	height: 7em;
	margin: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
	background: #fff;
}
#content li.comment_box:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
#content li#cs {
	float: left;
	width : 560px;
	height: 300px;
	margin: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
}
#content li.banner {
	float: left;
	width : 437px;
	height: 143px;
	margin: 5px 5px 5px 10px;
	padding: 5px 5px 5px 5px;
	background: #fff;
	border: solid 1px #ddd;
}
#content li.flash {
	width : 437px;
	height: 308px;
	margin: 5px 5px 15px 10px;
	background: #fff;
	border: solid 1px #ddd;
}
div.level1 {
	z-index: 1;
	position: absolute;
}
div.level2 {
	z-index: 2;
	position: absolute;
}
#content li.mini a:link {
	letter-spacing: normal;
	word-spacing: normal;
	text-decoration: none;
	color: #003070;
}



#news {
	width: 380px;
	overflow: auto;
	height: 150px;
	border: 0;
	overflow: hidden;
	padding: 5px 0px 5px 15px;
}
#news ul {
	width: 340px;
	background-color: #FFF;
	list-style-type: disc;
	list-style: outside; /* マークを表示させるために必要 */
	margin-left: 18px;
	height: 25px;
}
#news li {
	width: 300px;
	background-color: #FFF;
	height: 25px;
	padding-left: 0px; /* マークと文字の間隔 */
}
li:last-child.news {
	margin-bottom: 8px; /* 一番下の間隔8px */
}
/*-------------------------------*/
/* CLASS の指定*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/

.img_small {
	margin: 1px 1px 1px 1px;
	width: 100%;
	height: auto;
	max-height:68%;
}
.img_small_left {
	margin: 0px 5px 0px 5px;
	width: 190px;
	height: auto;
	float: left;
}
.img_small_100_left {
	margin: 0px 5px 0px 5px;
	width: auto;
	height: 100px;
	float: left;
}
.img_lage {
	margin: 1px 1px 1px 1px;
	width: 280px;
	height: auto;
	max-height: 220px;
		float: left;
}

.img_left {
	margin: 0px;
		float: left;
}

.Title01 {
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: none;
	letter-spacing: 2px;
}
div.title_info011_layout {
	padding-left: 20px;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 0px;
}
div.title_info02_layout {
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px;
	padding-bottom: 0px;
	text-align: left;
	/*max-width: 1100px;*/
	width : auto;
}

/* 木工作品集　一覧表画像背景色 */
.bgcolor {
	background-color: #fff;
	border: solid 1px #fff;
}

/* 追記 */
.borderRed {
	border: 1px #235A4D;
}
.borderBlack {
	border: 1px solid #999999;
}
.border-dark {
	border: 1px solid #999999;
}
.header {
	background: #444238;
}
.header td {
	padding-bottom: 10px;
}
.header td.logo {
	padding-bottom: 0;
}
.header a:link, .header a:visited {
	color: #fff;
}
.header a:hover, .header a:active {
	color: #b7303c;
}


div.gazo-box {
	float: left;
	padding-right: 20px;
}
/*入力系*/
INPUT {
	font-size : medium;/*font-weight : bold;*/
}


div.size_layout {
	width : auto;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: left;
}
div.size_input_layout {
	width : 15em;
	font-size : 12px;
	font-weight : bold;
}
div.size_text_layout {
	width : auto;
	font-size : 12px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 5px;
	text-align: left;
}
div.size_box {
	width: 20em;
}

.login_box {
	max-width: 700px;
	min-width: 280px;
}
.login_area {
	max-width: 500px;
	min-width: 300px;
	text-align: left;
	text-decoration: none;
}
.toukoform_box {
	width: auto;
	padding: 0px 5px 5px 5px;
	font-size : 12px;
	max-width: 800px;
	min-width: 250px;
}
.toukoimage_area {
	font-size : 12px;
	float: left;
	width : 250px;
	height : 250px;
	max-width: 250px;
	min-width: 250px;
	border-radius: 4px;
	border: solid 1px #ddd;
	overflow: auto;

}
.box_srcollbar {
	overflow: auto;
	width: 90%;
	height: 90%;
	padding: 0px 5px 5px 5px;
	margin: 0px 5px 5px 5px;
	border: 1px solid #777;
	background-color: #fff;
	color: #333;
	max-width:  966px;
	min-width: 280px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.toolbox {
	width: 100%;
	height:auto;
	max-width: 100%;
	min-width: 200px;
	text-align: left;
	margin: 1px 1px 1px 1px;
	border-radius: 4px;
	overflow: hidden;
	border: solid 1px #ddd;
}

.toollistbox {
	float: left;
	width: 210px;
	height:450px;
	max-width: 100%;
	min-width: 200px;
	text-align: left;
	margin: 1px 1px 1px 1px;
	border-radius: 4px;
	overflow: hidden;
	border: solid 1px #ddd;
	font-size : 12px;
}
.toollistbox2 {
	float: left;
/*	width: auto;*/
	height:auto;
	min-height: 350px;
	max-width: 200px;
	min-width: 150px;
	text-align: left;
	margin: 1px 1px 1px 2px;
	border-radius: 4px;
	overflow: hidden;
	border: solid 1px #ddd;
	font-size : 12px;
}
.toollistbox_etc {
	width: 100%;
	height:auto;
}

.float {
		float: left;
}
.tooletcbox {
	float: left;
	width: 100%;
	height:150px;
	max-width: 100%;
	min-width: 200px;
	text-align: left;
	margin: 1px 1px 1px 1px;
	border-radius: 4px;
	overflow: hidden;
	border: solid 1px #ddd;
	font-size : 12px;
}
#category {
	/*width: 100%;*/
	text-align: left;
	margin: 1px 1px 1px 1px;
	border-radius: 4px;
	overflow: hidden;
	/*border: solid 1px #ddd;*/
}
#category  a { 
    color: #66F;
   /* text-decoration: underline;*/
    cursor: pointer;
}
#category  a:visited {
	text-decoration: none;
	color: #b7303c;
}
#category  a:active {
	color: #bbb;
	text-decoration: none;
}
#category  a:hover {
	color: #000088;
	text-decoration: none;
}
.sakuhin img {
	border: solid 1px #ddd;
}
.p12sakuhinTitle {
	font-size: 13px;
	line-height: 18px;
	padding: 2px 2px 2px 1px;
	color: #994444;
	font-weight: bold;

}
.p10sakuhinSakusya {
	font-size: 12px;
	line-height: 12px;
	padding: 2px 2px 1px 1px;
	color: #555555;
/*	font-weight: bold;*/

}
.p11sakuhinBtns {
	font-size: 12px;
	line-height: 12px;
	padding: 0px 1px  2px 2px;
	color: #ffffff;
/*	font-weight: bold;*/

}
.sakuhinImg {
	padding: 1px 1px 5px 5px;
/*	font-weight: bold;*/

}
.toolimg {    position: relative;
	writing-mode: tb-rl; /* IE独自仕様 */
writing-mode: vertical-rl;
-moz-writing-mode: vertical-rl;
-o-writing-mode: vertical-rl;
-webkit-writing-mode: vertical-rl;

 	margin: 5px 0px 0px 0px;
	float: left;
	padding: 0px;
	width: 40px;
	height: 200px;
	font-size : 12px;
	color: #ffffff;
	
	
/*	border-radius: 2px;
//	border: solid 1px #ddd;font-weight: bold;*/
	

}
.toolimg_guide {    position: relative;
	writing-mode: tb-rl; /* IE独自仕様 */
writing-mode: vertical-rl;
-moz-writing-mode: vertical-rl;
-o-writing-mode: vertical-rl;
-webkit-writing-mode: vertical-rl;

 	margin: 5px 0px 0px 0px;
	float: left;
	padding: 0px;
	width: 100px;
	height: 100px;
	border-radius: 2px;
	font-size : 12px;
	color: #235A4D;
/*	border: solid 1px #ddd;font-weight: bold;*/
	

}
.tooltext_absolute {
    position: absolute;
    left: 0px;
    top: 10px;
	font-size : 11px;
	color: #232366;
}
.clear {
    clear:both;/*floatの解除、ここがポイント*/
}
.Kyun_button button {
    width:auto;
    font-size:12px;
    font-weight:bold;
    text-decoration:none;
    display:block;
    text-align:center;
    padding:4px 0 4px;
    color:#fff;
 
    background-image:-moz-linear-gradient(
    top,
    #4ffa035 0%,
    #4ffa035 49%,
    #ff8300 50%,
    #ff8300);
 
    background-image:-webkit-gradient(
    linear,left top,left bottom,
    from(#4ffa035),
    color-stop(0.49,#4ffa035),
    color-stop(0.50,#ff8300),
    to(#ff8300));

}

.cover_small {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 1px;
	width: 250px;
    height: 120px;
    border: 1px solid #ccc;
    background-size: cover;
	max-height: 160px;
}
.cover2{
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 5px;
    width: 250;
    height: auto;
    border: 1px solid #ccc;
    background-size: cover;
	float: left;
}
.cover_wide {
    display: inline-block;
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0px;
    width: 100%;
    height: 250px;
    border: 1px solid #ccc;
    background-size: cover;
	max-width: 500px;
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.login_box {
	max-width: 700px;
	min-width: 280px;
}
.login_area {
	max-width: 500px;
	min-width: 300px;
	text-align: left;
	text-decoration: none;
}
.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}
.gallery {
    border: 1px solid #999;
    border-radius: 3px;
    padding: 10px;
    background-color: #F5F5F5;
    line-height: 1;
}
.p12red {
	font-size: 14px;
	color: #F00;
	line-height: 18px;
}
.p18red {
	font-size: 18px;
	color: #F00;
	line-height: 22px;
}
.p18black {
	font-size: 18px;
	color: #333;
	line-height: 22px;
}
/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

.material-icons.md-warning { color: rgba(250, 230, 100, 1); 
.material-icons.md-dark{ color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

  .list-group-horizontal-sm .list-group-item:last-child {
    margin-bottom: 0.5rem;
  }
	
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.form-actions .cancel-button,
.form-actions .submit-button {
  display: flex;
  flex: 1;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.cancel-button {
  border: 1px solid #777;
  background: #fff;
  color: #444;
}

.cancel-button:hover {
  background: #eee;
}

.submit-button {
  margin-top: 0;
  border: 0;
  background: #1769aa;
  color: #fff;
}

.submit-button:hover {
  background: #0e578f;
}

@media (max-width: 600px) {
  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .cancel-button,
  .form-actions .submit-button {
    width: 100%;
  }
}
/* ==================================================
   オーナーアカウントページ
================================================== */

.owner-account-main {
    width: min(calc(100% - 32px), 820px);
    margin: 0 auto;
    padding: 16px 0 56px;
}


/* メインカード */

.owner-account-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 20px;
    background: #101010;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.owner-account-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        #e0b962,
        transparent
    );
}

.owner-account-header {
    padding: 32px 32px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    text-align: center;
}

.owner-account-eyebrow {
    margin: 0 0 8px;
    color: #f0c86d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.owner-account-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 5vw, 2.15rem);
    line-height: 1.4;
}

.owner-account-lead {
    max-width: 520px;
    margin: 13px auto 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.owner-account-body {
    padding: 30px 32px 34px;
}


/* メニュー */

.owner-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.owner-menu-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 24px;
    gap: 15px;
    align-items: center;
    min-height: 120px;
    padding: 20px;
    color: #ffffff;
    border: 1px solid #707070;
    border-radius: 13px;
    background: #181818;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.16s ease,
        box-shadow 0.2s ease;
}

.owner-menu-item:hover {
    color: #ffffff;
    border-color: #f0c86d;
    background: #222222;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.owner-menu-item:active {
    transform: translateY(0);
}

.owner-menu-item:focus-visible {
    outline: 3px solid rgba(240, 200, 109, 0.45);
    outline-offset: 3px;
}


/* アイコン */

.owner-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #f0c86d;
    border: 1px solid #747474;
    border-radius: 12px;
    background: #0a0a0a;
}

.owner-menu-icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* メニュー内文字 */

.owner-menu-content {
    min-width: 0;
}

.owner-menu-title {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.owner-menu-description {
    display: block;
    color: #d6d6d6;
    font-size: 0.81rem;
    line-height: 1.65;
}

.owner-menu-arrow {
    color: #f0c86d;
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.owner-menu-item:hover .owner-menu-arrow {
    transform: translateX(3px);
}


/* サインオフ */

.owner-menu-item--signoff .owner-menu-icon {
    color: #ffffff;
}

.owner-menu-item--signoff:hover {
    border-color: #d0d0d0;
}


/* 退会エリア */

.owner-danger-zone {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid #b75555;
    border-radius: 16px;
    background: #190e0e;
}

.owner-danger-heading {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.owner-danger-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffabab;
    border: 1px solid #c45d5d;
    border-radius: 10px;
    background: #2b1111;
}

.owner-danger-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.owner-danger-text {
    flex: 1;
    min-width: 0;
}

.owner-danger-title {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.owner-danger-description {
    margin: 7px 0 0;
    color: #e3caca;
    font-size: 0.85rem;
    line-height: 1.75;
}

.owner-danger-action {
    margin-top: 18px;
    text-align: right;
}

.owner-danger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    color: #ffffff;
    border: 1px solid #df7373;
    border-radius: 9px;
    background: #542020;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.owner-danger-link:hover {
    color: #ffffff;
    border-color: #ffaaaa;
    background: #762a2a;
    text-decoration: none;
}

.owner-danger-link:focus-visible {
    outline: 3px solid rgba(255, 130, 130, 0.42);
    outline-offset: 3px;
}


/* 補足案内 */

.owner-account-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px 16px;
    color: #dedede;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 11px;
    background: #161616;
    font-size: 0.82rem;
    line-height: 1.7;
}

.owner-account-note-icon {
    flex: 0 0 auto;
    color: #f0c86d;
    font-weight: 800;
}


/* スマートフォン */

@media (max-width: 650px) {
    .owner-account-main {
        width: min(calc(100% - 24px), 820px);
        padding-top: 10px;
    }

    .owner-account-card {
        border-radius: 16px;
    }

    .owner-account-header {
        padding: 26px 20px 22px;
    }

    .owner-account-body {
        padding: 22px 20px 26px;
    }

    .owner-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .owner-menu-item {
        min-height: 104px;
        padding: 17px;
    }

    .owner-danger-zone {
        padding: 20px;
    }

    .owner-danger-action {
        text-align: left;
    }

    .owner-danger-link {
        width: 100%;
    }
}


/* 小さいスマートフォン */

@media (max-width: 380px) {
    .owner-menu-item {
        grid-template-columns: 46px minmax(0, 1fr) 18px;
        gap: 12px;
        padding: 15px;
    }

    .owner-menu-icon {
        width: 46px;
        height: 46px;
    }

    .owner-menu-title {
        font-size: 0.94rem;
    }

    .owner-menu-description {
        font-size: 0.77rem;
    }
}


/* 動きを減らす設定 */

@media (prefers-reduced-motion: reduce) {
    .owner-menu-item,
    .owner-menu-arrow,
    .owner-danger-link {
        transition: none;
    }

    .owner-menu-item:hover {
        transform: none;
    }
}
	
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
	  max-width: 720px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
 	  max-width: 720px;
 }
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #333;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
