@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

:root {

	--text-light: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

body {
	word-break: keep-all;
	color: var(--text-main);
}

* {
	outline: 0;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
	font-style: normal;
	list-style: none;
}

.pc {
	display: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

/* ---------------------------------------------------------
	CSS Document form
--------------------------------------------------------- */

input, textarea, select, button {
	outline: 0;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
}

button,
input[type='button'],
input[type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: .4s;
}

input[type='checkbox'],
input[type='radio'] {
	vertical-align: top;
	width: 22px;
	height: 22px;
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #c8c8c8;
}

::-moz-placeholder {
	opacity: 1;
	color: #c8c8c8;
}

:-ms-input-placeholder {
	color: #c8c8c8;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

main {
	overflow: hidden;
	padding-top: 60px;
}

.target {
	margin-top: -70px;
	padding-top: 70px;
}

#pc_header,
#navi {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document sp_header
--------------------------------------------------------- */

#sp_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 5vw 0 4vw;
	border-bottom: solid 1px #e9ecef;
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

#sp_header .sp_header-logo {
	width: 110px;
	padding-bottom: 5px;
}

#sp_header .sp_header-logo img {
	height: 40px;
}

#sp_header .sp_header-controls {
	display: flex;
	align-items: center;
}

#sp_header .util-box {
	display: none;
}

#sp_header .util-box.active {
	display: block;
}

#sp_header .header-cart-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 30px;
	margin-right: 2vw;
	padding-top: 5px;
	border-radius: 4px;
	background: transparent;
	font-size: 18px;
	color: var(--text-main);
	transition: color 0.2s;
	position: relative;
}

#sp_header .header-cart-count {
	min-width: 14px;
	padding: 2px 3px;
	border-radius: 10px;
	background: #dc2626;
	text-align: center;
	font-weight: 700;
	font-size: 8px;
	color: #fff;
	position: absolute;
	top: -1px;
	right: -1px;
}

#sp_header .sp_header-my a {
	margin-right: 10px;
	padding: 7px 0;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-logout {
	margin-right: 10px;
}

#sp_header .sp_header-logout a {
	display: inline-block;
	vertical-align: top;
	padding: 7px 10px;
	border-radius: 99px;
	background: #e5e7eb;
	font-weight: 600;
	font-size: 12px;
	color: #0f172a;
}

#sp_header .sp_header-login {
	margin-right: 15px;
	margin-left: 5px;
}

#sp_header .sp_header-login a {
	display: inline-block;
	vertical-align: top;
	padding: 8px 16px;
	border-radius: 10px;
	background: #1e3a8a;
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}

#sp_header .m-menuBtn {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
}

#sp_header .m-menuBtn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #0f172a;
}

#sp_header .m-menuBtn span:nth-child(2) {
	width: 18px;
}

.kal-drawer {
	display: flex;
	flex-direction: column;
	background: #fff;
	position: fixed;
	inset: 0;
	z-index: 200;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.kal-drawer.open {
	transform: translateX(0);
}

.kal-top-area {
	background: #1e3a8a;
	color: #fff;
	padding-bottom: 24px;
}

.kal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5vw;
}

.kal-header-h2 {
	font-size: 5vw;
	margin: 0;
	font-weight: 700;
}

.kal-close {
	padding: 4px;
	border: 0;
	background: none;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.kal-user-status {
	padding: 0 5vw;
}

.guest-view .user-msg {
	margin-bottom: 16px;
	font-weight: 500;
	font-size: 3.5vw;
	opacity: 0.9;
}

.guest-view .btn-group {
	display: flex;
	justify-content: space-between;
}

.guest-view .btn-group div {
	width: 48%;
}

.guest-view .btn-group a {
	display: block;
	border-radius: 6px;
	background: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 3.5vw;
	line-height: 10vw;
	color: #1e3a8a;
}

.guest-view .btn-group .btn-group-agreement a {
	border: solid 1px rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* member-view */
.member-view .user-info {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 4vw;
}
.member-view .user-info b {
	font-weight: 700;
	font-size: 5vw;
}

.member-quick-menu {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; /* ??? ???? ?? */
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15);
}
.quick-link {
  color: #fff; text-decoration: none; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px; opacity: 0.9;
  background: rgba(255,255,255,0.1); padding: 10px 12px; border-radius: 8px; transition: all 0.2s;
}
.quick-link:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.quick-link i { font-size: 16px; }
.quick-link.danger { color: #ffc9c9; background: rgba(255, 173, 173, 0.1); }
.quick-link.danger:hover { background: rgba(255, 173, 173, 0.2); }
.quick-link::before { content: none; } /* ?? ? ?? */

/* ---------------------------------------------------------
	CSS Document sp_header > sp_navi
--------------------------------------------------------- */


/* 2. SPLIT BODY */
.kal-body {
	flex: 1;
	display: flex;
	overflow: hidden;
}
/* [Left] Tabs */
.kal-tabs {
	width: 100px;
	
	background: #f3f4f6;
	overflow-y: auto;
	flex-shrink: 0;
	padding-bottom: 20px;
	border-right: 1px solid #eee;
}

.kal-tab {
	padding: 16px 10px;
	font-size: 13px;
	color: #777;
	text-align: left;
	font-weight: 500;
	border-bottom: 1px solid #e5e7eb;
	cursor: pointer;
	word-break: keep-all;
	line-height: 1.35;
}

.kal-tab.active {
	
	background: #fff;
	color: #00256c;
	font-weight: 800;
	
	position: relative;
	border-right: none;
	margin-right: -1px;
	z-index: 2;
}

.kal-tab.active::after {
	
	content:'';
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	width:4px;
	background: #0064de;
	
}

/* [Right] Panels */
.kal-panels {
	flex: 1;
	overflow-y: auto;
	background: #fff;
	padding: 20px 16px;
}

.kal-panel {
	display: none;
	padding-bottom: 40px;
}

.kal-panel.active {
	display: block;
	animation: fadeIn 0.3s;
}
/* ?? ?? ? ??? */
.menu-group {
	margin-bottom: 26px;
}

.group-title {
	font-size: 14px;
	font-weight: 800;
	color: #00256c;
	margin-bottom: 10px;
	display: block;
	border-bottom: 2px solid #00256c;
	padding-bottom: 6px;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
	color: #333;
	text-decoration: none;
}

.menu-item span {
	color: #999;
	font-size: 11px;
}

/* == ??? ?? CSS ?? == */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	} to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 200px;
	overflow: hidden;
	background: #000 no-repeat top / auto 100%;
	font-size: 0;
	line-height: 210px;
	color: #fff;
}

#visual .container {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}

#visual .h1 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 8vw;
}

#visual .h1 + p {
	font-size: 2.5vw;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	border-bottom: solid 1px #e9ecef;
}

#bread ol {
	display: flex;
	align-items: center;
	height: 9vw;
	padding: 0 4vw;
	font-size: 2.5vw;
	line-height: 5vw;
	color: #94a3b8;
}

#bread li:first-of-type a {
	display: inline-block;
	vertical-align: 0;
	padding: 0 1em;
	border-radius: 20px;
	background: #e5e7eb;
	font-weight: 500;
	color: #475569;
}

#bread li:not(:last-of-type):after {
	content: '/';
	margin: 0 0.5em;
}

#bread li a {
	color: #94a3b8;
}

/* ---------------------------------------------------------
	CSS Document anchor
--------------------------------------------------------- */

#anchor {
	margin-bottom: 40px;
	font-size: 0;
}

#anchor li {
	display: inline-block;
	vertical-align: top;
	width: 20%;
}

#anchor li:not(:last-of-type) {
	border-right: solid 1px #c4c6c7;
}

#anchor li div,
#anchor li a {
	display: block;
	height: 60px;
	background: #aaadaf;
	text-decoration: none;
	line-height: 60px;
	color: #fff;
}

#anchor li div span,
#anchor li a span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	font-size: 3vw;
	line-height: 1.2;
}

#anchor li.this div,
#anchor li.this a {
	background: #0b89da;
	position: relative;
	z-index: 0;
}

#anchor li.this div:after,
#anchor li.this a:after {
	content: '';
	width: 0;
	height: 0;
	border: solid 10px transparent;
	border-top: solid 12px #0b89da;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	bottom: -22px;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	padding: 10vw 5vw 10vw;
	background: #020617;
}

/* ---------------------------------------------------------
	CSS Document footer > f_gnavi
--------------------------------------------------------- */

#footer .f_gnavi .section {
	margin-bottom: 5vw;
	padding: 5vw;
	border-radius: 5vw;
	border: solid 1px #94a3b8;
	background: #fff;
	text-align: left;
	color: #0d2341;
}

#footer .f_gnavi .caption {
	margin-bottom: 3vw;
	font-weight: 700;
	font-size: 3.5vw;
}

#footer .f_gnavi .memo {
	margin-bottom: 4vw;
	font-size: 3vw;
	color: #94a3b8;
}

#footer .f_gnavi .find {
	margin-bottom: 10px;
	padding: 4vw;
	border-radius: 5vw;
	border: solid 1px #e2e8f0;
	background: #f9fafb;
}

#footer .f_gnavi .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footer .f_gnavi .f_gnavi_img img {
	height: 40px;
}

#footer .f_gnavi .f_gnavi_02 .f_gnavi_img img {
	height: 34px;
}

#footer .f_gnavi .f_gnavi_03 .f_gnavi_img img {
	height: 41px;
}

#footer .f_gnavi .dl {
	line-height: 1.8;
}

#footer .f_gnavi .f_gnavi_03 .dl {
	text-align: right;
	line-height: 1.8;
}

#footer .f_gnavi .dt {
	font-size: 3vw;
	color: #94a3b8;
}

#footer .f_gnavi .dt a {
	display: block;
	color: #94a3b8;
}

#footer .f_gnavi .dd {
	font-weight: 700;
	font-size: 3.5vw;
}

#footer .f_gnavi .dd a {
	display: block;
	color: #0f172a;
}

#footer .f_gnavi .dd a.tel {
	font-size: 4.5vw;
	line-height: 1.2;
}

#footer .f_gnavi .buy {
	margin-top: 15px;
}

#footer .f_gnavi .buy a {
	display: inline-block;
	vertical-align: top;
	width: 94px;
	height: 40px;
	border-radius: 99px;
	background: #1976D2;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 40px;
	color: #fff;
}

#footer .f_gnavi .buy a .icon {
	font-size: 14px;
}

/* ---------------------------------------------------------
	CSS Document footer > f_license
--------------------------------------------------------- */

#footer .f_license {
	margin-bottom: 10vw;
	padding: 5vw;
	border-radius: 5vw;
	border: solid 1px #d2d8e5;
	background: linear-gradient(to right, #f9fafb 0%, #e5ecfa 100%);
}

#footer .f_license-start {
	font-weight: 400;
	font-size: 3.5vw;
	line-height: 1.7;
}

#footer .f_license-en {
	font-weight: 600;
	font-size: 3.2vw;
	letter-spacing: 0.15em;
	color: #475569;
}

#footer .f_license ul {
	display: flex;
	flex-wrap: wrap;
}

#footer .f_license li {
	margin: 3vw 3vw 0 0;
}

#footer .f_license li a {
	display: inline-block;
	vertical-align: top;
	padding: 1em 2em;
	border-radius: 40px;
	background: #1976D2;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
	font-weight: 600;
	font-size: 3.2vw;
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document footer > f_company
--------------------------------------------------------- */

#footer .f_company {
}

#footer .f_company .f_sitemap {
	display: flex;
	margin-bottom: 5vw;
	font-weight: 400;
	font-size: 3vw;
	color: #e5e7eb;
}

#footer .f_company .f_sitemap li:not(:last-of-type):after {
	content: '・';
	margin: 0 0.5em;
}

#footer .f_company .f_sitemap a {
	color: #fff;
	opacity: 0.8;
}

#footer .f_company .f_sns {
	display: flex;
	align-items: center;
	margin-bottom: 10vw;
}

#footer .f_company .f_sns .icon {
	margin-left: 6px;
}

#footer .f_company .f_sns .icon a {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: solid 1px #475569;
	background: #0f172a;
	transition: var(--transition);
}

#footer .f_company .f_sns .map {
	margin-right: 20px;
}

#footer .f_company .f_sns .map a {
	display: inline-block;
	vertical-align: top;
	width: 102px;
	height: 36px;
	border-radius: 36px;
	background: #1976D2;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 36px;
	color: #fff;
	transition: var(--transition);
}

#footer .f_company .f_sns .map .icon {
	margin: 0 0.2em 0 -0.3em;
}

/* ---------------------------------------------------------
	CSS Document footer > f_copyright
--------------------------------------------------------- */

#footer .f_copyright {
	color: #9ca3af;
}

#footer .f_copyright-logo {
	display: flex;
	align-items: center;
	margin-bottom: 2vw;
}

#footer .f_copyright-logo img {
	height: 32px;
}

#footer .f_copyright-content {
	margin-top: 4px;
	font-weight: 400;
	font-size: 3vw;
	line-height: 1.8;
}

#footer .f_copyright-company {
	font-weight: 700;
}

#footer .f_copyright-content_row {
	display: flex;
	flex-wrap: wrap;
}

#footer .f_copyright-content div:after {
	display: inline-block;
	vertical-align: 0;
	content: '|';
	margin: 0 10px;
	font-weight: 400;
}

#footer .f_copyright-content div:last-of-type:after {
	display: none;
}

#footer .f_copyright-content a {
	color: #9ca3af;
}

/* ---------------------------------------------------------
	CSS Document cart-backdrop
--------------------------------------------------------- */

.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-backdrop.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 90vw;
  background: #fff; z-index: 2001; transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cd-header { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.cd-header h3 { font-size: 18px; font-weight: 800; color: var(--color-primary); margin: 0; display: flex; align-items: center; gap: 8px; }
.cd-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #999; padding: 4px; transition: color 0.2s; }
.cd-close:hover { color: #333; }

.cd-body { flex: 1; overflow-y: auto; padding: 20px; background: #fafafa; }
.empty-cart-msg { text-align: center; color: #999; font-size: 14px; margin-top: 60px; }

.cd-item { 
  background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 12px;
  position: relative; transition: all 0.2s; 
}
.cd-item:hover { border-color: #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.cd-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.cd-name { font-size: 14px; font-weight: 700; color: #333; line-height: 1.4; padding-right: 20px; }
.cd-del { position: absolute; top: 12px; right: 12px; color: #ccc; cursor: pointer; font-size: 14px; }
.cd-del:hover { color: #ff5555; }
.cd-opt { font-size: 12px; color: #777; margin-bottom: 12px; background: #f8f9fa; display: inline-block; padding: 2px 6px; border-radius: 4px; }
.cd-action-row { display: flex; align-items: center; justify-content: space-between; }
.cd-qty-ctrl { display: flex; align-items: center; border: 1px solid #eee; border-radius: 4px; overflow: hidden; height: 32px; background: #fff; }
.cd-qty-btn { width: 28px; height: 100%; display: flex; align-items: center; justify-content: center; background: #fdfdfd; cursor: pointer; font-size: 11px; color: #555; }
.cd-qty-btn:hover { background: #eee; }
.cd-qty-val { width: 34px; text-align: center; font-size: 13px; font-weight: 600; border: none; outline: none; background: transparent; pointer-events: none; }
.cd-price { font-size: 15px; font-weight: 700; color: var(--color-primary); }

.cd-footer { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cd-sum-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: #666; }
.cd-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 2px solid #333; font-weight: 800; font-size: 18px; color: var(--color-primary); }
.cd-checkout-btn { 
  display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; 
  height: 50px; background: #172554; color: #fff; font-weight: 700; border-radius: 6px; 
  font-size: 16px; border: none; cursor: pointer; transition: background 0.2s;
}
.cd-checkout-btn:hover { background: #1e3a8a; }

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 64px;
	height: 30px;
	overflow: hidden;
	border-radius: 30px;
	background: #1e3a8a;
	text-align: center;
	font-weight: 400;
	font-size: 11px;
	line-height: 30px;
	letter-spacing: 0.05em;
	color: #fff;
	position: fixed;
	bottom: 5vw;
	right: 5vw;
	z-index: 9;
}

/* ---------------------------------------------------------
	CSS Document modal
--------------------------------------------------------- */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17, 24, 39, 0.4); /* ??? ???? */
      backdrop-filter: blur(4px); /* ?? ?? ?? */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.2s ease-in-out;
    }
    .modal-backdrop.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      width: 90%;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .modal-backdrop.active .modal {
      transform: scale(1) translateY(0);
    }

    /* ?? ?? */
    .btn-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      color: #9ca3af;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s;
    }
    .btn-close:hover {
      background: #f3f4f6;
      color: #4b5563;
    }

    /* ?? ?? */
    .modal-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    /* ??? ??? ?? (Soft Tint) */
    .modal-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .icon-success {
      background: #d1fae5;
      color: #059669;
      /* Checkmark ?? */
      font-weight: bold;
    }
    .icon-error {
      background: #fee2e2;
      color: #dc2626;
      font-weight: 800;
    }
    .icon-info {
      background: #eff6ff;
      color: #2563eb;
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      line-height: 1.4;
      padding-top: 2px;
    }
    .modal-sub {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.4;
    }

    .divider {
      height: 1px;
      background: #f3f4f6;
      margin: 0 -24px 16px; /* ?? ?? ?? */
    }

    .modal-body {
      font-size: 14px;
      color: #374151;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .modal-body strong {
      color: #111827;
      font-weight: 600;
    }


    /* ?? ??? */
    .hint {
      margin-top: 12px;
      font-size: 12px;
      color: #9ca3af;
      padding-left: 2px;
    }

    /* ?? ?? */
    .modal-body code {
      display: block;
      font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
      font-size: 12px;
      background: #1e293b; /* Dark Mode Code Block */
      color: #e2e8f0;
      padding: 12px;
      border-radius: 8px;
      margin: 8px 0;
      word-break: break-all;
    }
    
    /* ?? ?? ?? */
    .code-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 8px;
      background: #f3f4f6;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .code-row code {
      background: transparent;
      color: #1f2937;
      border: none;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .btn-copy {
      background: #ffffff;
      border: none;
      border-left: 1px solid #e5e7eb;
      padding: 0 16px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: #0D47A1;
      transition: background 0.2s;
    }
    .btn-copy:hover {
      background: #eff6ff;
    }

    /* ?? ?? (?? ??) */
    .modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 10px; /* ?? ?? ?? */
    }


    /* =========================================
       NEW MODAL ACTION BUTTONS STYLES
       ========================================= */
    .btn-modal-action {
      border-radius: 10px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s ease;
      border: 1px solid transparent;
    }
    .btn-modal-action:active {
      transform: scale(0.98);
    }

    /* Secondary Action (e.g., Close, Cancel) */
    .btn-modal-secondary {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #374151;
    }
    .btn-modal-secondary:hover {
      background: #f9fafb;
      border-color: #d1d5db;
    }

    /* Primary Action (e.g., Confirm, OK, Go to Main) */
    .btn-modal-primary {
      background: #1976D2;
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    }
    .btn-modal-primary:hover {
      background: #0D47A1;
      box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    }
    
    /* ?? ?? ??? ?? (?? ?? ????) */
    .modal-footer .btn {
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 13px;
    }