/* ************************************************ 
 * ------------------------------------------------
 *	共通設定
 * ------------------------------------------------
 * ************************************************ */

body {
	font-size:14px;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ＭＳ ゴシック", "Osaka‐等幅", sans-serif;
	color:#333333;
	background:#f8f9fa;
	margin: 0px;
	padding: 0px;
	line-height: 1.6;
}

/* Modern CSS Reset */
* {
	box-sizing: border-box;
}

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

/* Header Styles */
.header-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	border-radius: 8px;
	overflow: hidden;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.shop-info {
	display: flex;
	flex-direction: column;
}

.shop-name {
	font-weight: bold;
	color: #2c3e50;
	font-size: 1.1em;
}

.shop-category {
	font-size: 0.9em;
	color: #6c757d;
}

.business-hours {
	display: flex;
	flex-direction: column;
	text-align: right;
	font-size: 0.9em;
	color: #6c757d;
}

.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: white;
}

.logo-section {
	flex: 1;
}

.header-promotions {
	display: flex;
	gap: 15px;
	align-items: center;
	flex: 2;
	justify-content: center;
}

.promo-banner {
	max-height: 80px;
	width: auto;
	min-height: 60px;
}

.payment-info {
	flex: 1;
	text-align: right;
}

/* Content Layout */
.content-wrapper {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Sidebar Styles */
.sidebar {
	background: white;
	border-radius: 8px;
	padding: 20px;
	height: fit-content;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-banners {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.brand-link {
	display: block;
	transition: transform 0.2s ease;
}

.brand-link:hover {
	transform: translateY(-2px);
}

.sidebar-section {
	margin-bottom: 25px;
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 20px;
}

.sidebar-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.sidebar-title {
	background: #7e7e7e;
	color: white;
	padding: 10px;
	margin: 0 0 15px 0;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 4px;
}

.sidebar-content {
	padding: 0 5px;
}

/* Calendar centering */
.side_section_cal {
	text-align: center;
}

.side_cal {
	display: inline-block;
	text-align: center;
}

.side_cal_memo {
	text-align: center;
	margin-top: 10px;
}

.category-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.category-link {
	display: block;
	padding: 8px 12px;
	color: #495057;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.2s ease;
	font-weight: 500;
}

.category-link:hover {
	background-color: #f8f9fa;
	color: #007bff;
}

.category-title {
	font-weight: bold;
	color: #343a40;
	margin: 15px 0 10px 0;
	font-size: 0.95em;
}

.category-image {
	max-width: 100%;
	margin-top: 5px;
	border-radius: 4px;
}

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

.freepage-list li {
	margin-bottom: 8px;
}

.freepage-list a {
	color: #495057;
	text-decoration: none;
	padding: 5px 0;
	display: block;
}

.freepage-list a:hover {
	color: #007bff;
}

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

.trackback-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e9ecef;
}

.trackback-date {
	font-size: 0.8em;
	color: #6c757d;
	margin-top: 5px;
}

.feed-section {
	text-align: center;
	margin-top: 20px;
}

/* Main Content Styles */
.main-content {
	background: white;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 0px 0px rgba(0,0,0,0.1);
}

.promotion-banners {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	align-items: center;
}

.promotion-banners img {
	max-height: 400px;
	width: auto;
	max-width: 400px;
	min-height: 100px;
	border-radius: 4px;
	transition: transform 0.2s ease;
	flex-shrink: 1;
}

.promotion-banners img:hover {
	transform: scale(1.05);
}

/* Recently Viewed Products */
.recently-viewed {
	margin-top: 40px;
}

.section-title {
	background: #f9f9f9;
	color: #898989;
	padding: 4px 10px;
	margin: 0 0 20px 0;
	font-size: 0.9em;
	font-weight: 500;
	text-align: center;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1.2;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	justify-items: center;
	margin-top: 30px;
}

.product-item {
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: white;
	max-width: 160px;
	min-width: 160px;
}

.product-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 100%; /* This creates a square aspect ratio */
}

.product-image img {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	transition: transform 0.2s ease !important;
}

.product-item:hover .product-image img {
	transform: translate(-50%, -50%) scale(1.05) !important;
}

.product-info {
	padding: 12px;
	text-align: center;
}

.product-name {
	font-size: 0.8em;
	margin: 0 0 8px 0;
	line-height: 1.3;
	text-align: center;
}

.product-name a {
	color: #343a40;
	text-decoration: none;
}

.product-name a:hover {
	color: #007bff;
}

.product-price {
	text-align: center;
}

.product-price .regular-price {
	text-decoration: line-through;
	color: #6c757d;
	font-size: 0.8em;
	margin: 0 0 5px 0;
}

.product-price .price {
	font-weight: bold;
	color: #dc3545;
	font-size: 1em;
	margin: 0 0 4px 0;
}

.product-price .discount-rate {
	background: #dc3545;
	color: white;
	padding: 1px 6px;
	border-radius: 10px;
	font-size: 0.7em;
	display: inline-block;
	margin: 0;
}

.product-price .sold-out {
	background: #6c757d;
	color: white;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.8em;
	margin: 5px 0 0 0;
	border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.content-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 15px;
	}
	
	.header-main {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	
	.header-top {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		justify-items: center;
	}
	
	.promotion-banners {
		flex-direction: column;
		align-items: center;
	}
	
	/* Mobile responsive for item_box */
	.item_box {
		width: calc(50% - 10px);
		margin: 5px;
		min-width: 150px;
	}
	
	.top_items {
		justify-content: center;
		gap: 10px;
	}
	
	.category_items {
		justify-content: center;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.item_box {
		width: 100%;
		margin: 5px 0;
		max-width: 300px;
	}
}


table.thin {
    border-collapse: collapse;
　　border-style: solid;
}

td.thin, th.thin {
    border: 1px solid black;
}

tr.title {
        background:#ff6600;
        color:#ffffff;
	font-weight: bold;
}


form {
	margin: 0px;
	padding: 0px;
	}


div {
	margin: 0px;
	padding: 0px;
	}

/*
img {
	border: 0px;
	}
*/

a:link {
	color: #2a7bb4;
	text-decoration: none;
	}

a:visited {
	color: #2a7bb4;
	text-decoration: none;
	}

a:active {
	color: #2a7bb4;
	text-decoration: none;
	}

a:hover {
	color: #d7a50d;
	text-decoration: none;
	}

#contents {
	margin: 20px auto;
	max-width: 1200px;
	background: transparent;
}

/*ページ中央の枠線の色*/
#center {
	border: 1px solid #FFFFFF;
	background: #FFF;
	margin: 0px 5px 0px 5px;
	}



/* ************************************************ 
 *	ヘッダーメニュー
 * ************************************************ */

#header {
	margin: 30px auto 10px auto;
	max-width: 1200px;
	padding: 0 20px;
}

/* ------------------------------------- 
 *	ヘッダー　グローバルメニューのオンマウス（旧スタイル - 非推奨）
 *	※新しいWebフォントメニューに置き換え済み
 * ------------------------------------- */

/*
#header .menu img {
	background: #999;
	}

#header .menu img:hover {
	background: #7F7F7F;
	}
*/



/* ------------------------------------- 
 *	ショップタイトルのサイズ、色
 * ------------------------------------- */

#title_size {
	font: 22px/130% "Verdana", "ヒラギノ角ゴ Pro W3", "ＭＳ ゴシック", "Osaka‐等幅";
	font-weight: bold;
	padding-top:10px;
	}


#title_size a {

	color: #7F7F7F;
	}


#title_size a:link {
	color: #7F7F7F;

	}

#title_size a:visited {
	color: #7F7F7F;
	}

#title_size a:active {
	color: #7F7F7F;
	}

#title_size a:hover {
	color: #7F7F7F;
	background: #EEE;
	text-decoration: none;
	}



/* ************************************************ 
 *	左側メニュー
 * ************************************************ */

/* ------------------------------------- 
 *	商品検索（更新済み）
 * ------------------------------------- */

#search {
	width: 100%;
	margin: 0;
	}

#search select {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px;
	font-family: "Noto Sans JP", sans-serif;
	background: white;
	}

#search input[type="text"] {
	border: none;
	margin: 0;
	padding: 8px 20px;
	background: transparent;
	font-family: "Noto Sans JP", sans-serif;
	}


/* ------------------------------------- 
 *	左メニュー最下部　フリーエリア
 *	バナーを貼る際などにご利用ください
 *	※初期設定では適用されていません
 * ------------------------------------- */
#freespace_left {
	font-size: 14px;
	border: 2px solid #7F7F7F;
	margin-top: 10px;
	padding: 5px;
	text-align: center;
	}



/* ************************************************ 
 *	右側メニュー
 * ************************************************ */

.cart {
	font-size: 11px;
	margin: 0px 2px 10px 2px;
	background: #FFF;
	}
.cart ul {
	line-height: 160%;
	margin: 0px 5px 0px 5px;
	padding: 5px;
	}
.cart li {
	list-style-type: none;
	}
.cart p {
	border-top: 1px dotted #333;
	margin: 3px;
	padding: 5px;
	text-align: right;
	font-weight: bolder;
	}
.cart input {
	margin: 5px;
	}


/* ************************************************ 
 *	左右メニューのレイアウト
 * ************************************************ */

.side {
	width: 200px;
	padding: 0px 0px 10px 0px;
	background: #f0f0f0;
/* url(https://img.shop-pro.jp/tmpl_img/8/background_side.jpg) no-repeat;*/
	}



.list ul {
	line-height: 160%;
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	}

.list li {
	list-style-type: none;
	background: url(https://img.shop-pro.jp/tmpl_img/8/list_white.gif) no-repeat 6px 7px;
	}

.list li a {
	color: #666;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	display: block;
	width: 100%;
	text-indent: 1em;
	}

.list li a:visited {
	color: #666;
	text-decoration: none;
	display: block;
	width: 100%;
	}

.list li a:hover {
	color: #000;
	text-decoration: none;
	background: #FFF url(https://img.shop-pro.jp/tmpl_img/8/list_red.gif) no-repeat 6px 7px;
	display: block;
	width: 100%;
	}

.list li a:active {
	color: #000;
	text-decoration: none;
	background: #FFF url(https://img.shop-pro.jp/tmpl_img/8/list_red.gif) no-repeat 6px 7px;
	display: block;
	width: 100%;
	}


/* ************************************************ 
 *	店主のコーナー　レイアウト
 * ************************************************ */

.freespace_right {
	font-size: 14px;
	border: 2px solid #FFCC00;
	margin-top: 10px;
	padding: 5px;
	text-align: center;
	}

.freespace_right img {
	border: 1px solid #7F7F7F;
	margin: 5px 0px 5px 0px;
	padding: 3px;
	}

.freespace_right p {
	text-align: left;
	font-size: 11px;
	}

/* ************************************************ 
 *	RSSリンクのレイアウト
 * ************************************************ */

.feed {
	text-align: center;
	margin: 20px auto;
	}

.feed img {
	border: 0px;
	}


/* ************************************************ 
 *	フッターメニュー
 * ************************************************ */

#footer {
	font-size: 14px;
	padding: 30px;
	text-align: center;
	}

#footer p {
	font-size: 11px;
	margin: 10px 0px 0px 0px;
	font-family: "Verdana";
	}

/* ************************************************ 
 *	コンテンツ共通
 * ************************************************ */

/* ------------------------------------- 
 *	Modern Product Item Display (Updated)
 *	※トップ及びサブカテゴリー表示時に使用
 * ------------------------------------- */
.item_box {
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: white;
	margin: 10px;
	width: 180px;
	float: left;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.item_box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.item_thumbnail {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 100%; /* This creates a square aspect ratio */
	margin: 0;
	display: block;
}

.item_thumbnail img {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	transition: transform 0.2s ease !important;
}

.item_box:hover .item_thumbnail img {
	transform: translate(-50%, -50%) scale(1.05) !important;
}

.item_frame {
	display: none; /* Hide old frame style */
}

/* Product info section inside item_box - Match recently viewed products exactly */
.item_box .name {
	padding: 20px 20px 10px 20px;
	font-size: 0.9em;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

.item_box .name a {
	color: #343a40;
	text-decoration: none;
	font-weight: bold; /* Match the bold font from recently viewed products */
}

.item_box .name a:hover {
	color: #007bff;
}

/* Category/Group name styling for item_box */
.item_box_name {
	padding: 15px 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	font-size: 0.9em;
	line-height: 1.4;
}

.item_box_name a {
	color: #343a40;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}

.item_box_name a:hover {
	color: #007bff;
}

/* Price styling to match recently viewed products exactly */
.item_box .price {
	padding: 0 20px 20px 20px;
}

.item_box .regular_price_top,
.item_box .price .regular_price_top,
.item_box .regular-price {
	text-decoration: line-through;
	color: #6c757d;
	font-size: 0.8em;
	margin: 0 0 5px 0;
	display: block;
}

.item_box .price_top,
.item_box .price .price_top,
.item_box .price .price {
	font-weight: bold;
	color: #dc3545;
	font-size: 1.1em;
	margin: 0 0 5px 0;
	display: block;
}

.item_box .discount_rate_top,
.item_box .price .discount_rate_top,
.item_box .discount-rate {
	background: #dc3545;
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.8em;
	display: inline-block;
	margin: 0;
}

.item_box .sold-out {
	background: #6c757d;
	color: white;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.8em;
	margin: 5px 0 0 0;
	border-radius: 4px;
}

/* ------------------------------------- 
 *	商品一覧表示のレイアウト (Modern Update)
 * ------------------------------------- */
.category_items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin: 20px 0;
	text-align: center;
}

.category_items .item_box {
	float: none; /* Remove float for flexbox */
	margin: 0;
	width: 180px;
}

.category_items td {
	font-size: 14px;
	padding: 10px 0px 10px 0px;
	display: contents; /* Allow flex layout */
}

.category_items p {
	font-size: 14px;
	margin: 5px 0px 0px 0px;
	padding: 0px;
}

/* Override any inherited styles for category_items */
.category_items .item_box .name {
	padding: 20px 20px 10px 20px;
	font-size: 0.9em;
	line-height: 1.4;
	margin: 0 0 10px 0;
	text-align: center;
}

.category_items .item_box .name a {
	color: #343a40;
	text-decoration: none;
	font-weight: bold; /* Match the bold font from recently viewed products */
}

.category_items .item_box .name a:hover {
	color: #007bff;
}

.category_items .item_box .price {
	padding: 0 20px 20px 20px;
	text-align: center;
}

.category_items .item_box .price_top,
.category_items .item_box .regular_price_top,
.category_items .item_box .discount_rate_top {
	display: block;
	margin: 0 0 5px 0;
}

.category_items .item_box .price_top {
	font-weight: bold;
	color: #dc3545;
	font-size: 1.1em;
}

.category_items .item_box .regular_price_top {
	text-decoration: line-through;
	color: #6c757d;
	font-size: 0.8em;
}

.category_items .item_box .discount_rate_top {
	background: #dc3545;
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.8em;
	display: inline-block;
}

/* ------------------------------------- 
 *	検索結果ページ専用スタイル (Search Results Page Styles)
 * ------------------------------------- */

/* Search info card styling */
.search-info-card {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-info-card h2 {
	background: #7e7e7e;
	color: white;
	padding: 12px 20px;
	margin: -20px -20px 15px -20px;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	border-radius: 8px 8px 0 0;
}

.search-conditions {
	margin-bottom: 15px;
}

.search-conditions p {
	margin: 5px 0;
	color: #495057;
}

.search-results-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-top: 15px;
	border-top: 1px solid #e9ecef;
}

.results-count {
	font-weight: bold;
	color: #343a40;
}

.sort-controls {
	display: flex;
	gap: 10px;
	align-items: center;
}

.sort-controls select {
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: white;
	font-family: "Noto Sans JP", sans-serif;
}

.sort-link {
	color: #e67e22;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.sort-link:hover {
	background-color: #f8f9fa;
	color: #d35400;
}

.sort-link.current {
	background: #e67e22;
	color: white;
	font-weight: 600;
	cursor: default;
}

/* Pagination styling */
.pagination-wrapper {
	text-align: center;
	margin: 30px 0;
}

.pagination-btn {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 2px;
	background: #e9ecef;
	color: #212529;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid #ced4da;
	transition: all 0.2s ease;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

.pagination-btn:hover {
	background: #dee2e6;
	color: #212529;
	text-decoration: none;
	border-color: #adb5bd;
}

.pagination-btn.current {
	background: #ced4da;
	color: #212529;
	font-weight: bold;
	border-color: #adb5bd;
}

.pagination-btn:visited {
	color: #212529;
}

/* Cart button specific styling - orange color */
button.pagination-btn[type="submit"], 
.pagination-btn.cart-btn {
	background: #e67e22;
	color: white;
	border: 1px solid #d35400;
}

button.pagination-btn[type="submit"]:hover, 
.pagination-btn.cart-btn:hover {
	background: #d35400;
	color: white;
	border-color: #c0392b;
}

button.pagination-btn[type="submit"]:visited, 
.pagination-btn.cart-btn:visited {
	color: white;
}

/* Sold out styling for item_box */
.item_box .sold_out_label {
	background: #6c757d;
	color: white;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.8em;
	margin: 5px 10px 10px 10px;
	border-radius: 4px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

/* ------------------------------------- 
 *	ぱんくずリスト
 * ------------------------------------- */
.footstamp {
	padding: 10px;
	font-size: 14px;
	}

.footstamp p {
    margin: 0 0 3px;
}


/* ------------------------------------- 
 *	ページタイトル
 * ------------------------------------- */
.pagetitle {
	margin: 20px 0px 1px 0px;
	padding: 0px 10px 5px 10px;
	border-bottom: 3px solid #7F7F7F;
	font-size: 14px;
	clear: both;
	}

/* ------------------------------------- 
 *	商品が無い時の表示
 * ------------------------------------- */
.nodata {
	margin: 50px 0px 50px 0px;
	text-align: center;
	}



/* ************************************************ 
 *	TOPコンテンツ
 * ************************************************ */

/* ------------------------------------- 
 *	お知らせ・おすすめエリアレイアウト (Modern Update)
 * ------------------------------------- */
.top_items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start;
	margin: 20px 0;
	padding: 0;
}

.top_items .item_box {
	float: none; /* Remove float for flexbox */
	margin: 0;
}

.top_items tr {
	display: contents; /* Allow flex layout */
}

.top_items td {
	font-size: 11px;
	text-align: center;
	padding-bottom: 10px;
	display: contents; /* Allow flex layout */
}

/* Override any inherited styles for top_items */
.top_items .item_box .name {
	padding: 20px 20px 10px 20px;
	font-size: 0.9em;
	line-height: 1.4;
	margin: 0 0 10px 0;
	text-align: left;
}

.top_items .item_box .name a {
	color: #343a40;
	text-decoration: none;
	font-weight: bold; /* Match the bold font from recently viewed products */
}

.top_items .item_box .name a:hover {
	color: #007bff;
}

.top_items .item_box .price {
	padding: 0 20px 20px 20px;
	text-align: left;
}

.top_items .item_box .price_top,
.top_items .item_box .regular_price_top,
.top_items .item_box .discount_rate_top {
	display: block;
	margin: 0 0 5px 0;
}

.top_items .item_box .price_top {
	font-weight: bold;
	color: #dc3545 !important;
	font-size: 1.1em;
}

.top_items .item_box .regular_price_top {
	text-decoration: line-through;
	color: #6c757d;
	font-size: 0.8em;
}

.top_items .item_box .discount_rate_top {
	background: #dc3545;
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.8em;
	display: inline-block;
}

/* Additional specific targeting for dynamic content prices */
.dynamic-content .item_box .price_top,
.dynamic-content .price_top {
	font-weight: bold;
	color: #dc3545 !important;
	font-size: 1.1em;
}

.dynamic-content .item_box .price,
.dynamic-content .price {
	font-weight: bold;
	color: #dc3545 !important;
}

/* Ensure all price elements in dynamic content are red */
.dynamic-content [class*="price"]:not([class*="regular"]) {
	color: #dc3545 !important;
}
	font-size: 0.8em;
	display: inline-block;
}

/* ------------------------------------- 
 *	お知らせエリア
 * ------------------------------------- */
.info_space {
	margin: 20px;
	}

/* ------------------------------------- 
 *	フリースペース
 * ------------------------------------- */
.free_space {
	margin: 20px;
	}

/* ------------------------------------- 
 *	Dynamic Content Universal Price Styling
 *	※すべての動的コンテンツの価格を統一
 * ------------------------------------- */

/* Universal price styling for all dynamic content */
.dynamic-content .item_box .price_top,
.dynamic-content .price_top,
.dynamic-content .item_box .price,
.dynamic-content .price,
div[class*="item"] .price_top,
div[class*="item"] .price:not(.regular_price):not([class*="regular"]) {
	font-weight: bold !important;
	color: #dc3545 !important;
	font-size: 1.1em !important;
}

/* Ensure regular prices stay gray with strikethrough */
.dynamic-content .regular_price_top,
.dynamic-content .regular-price,
div[class*="item"] .regular_price_top,
div[class*="item"] .regular-price {
	text-decoration: line-through !important;
	color: #6c757d !important;
	font-size: 0.8em !important;
}

/* Discount rate styling */
.dynamic-content .discount_rate_top,
.dynamic-content .discount-rate,
div[class*="item"] .discount_rate_top,
div[class*="item"] .discount-rate {
	background: #dc3545 !important;
	color: white !important;
	padding: 2px 8px !important;
	border-radius: 12px !important;
	font-size: 0.8em !important;
	display: inline-block !important;
}

/* ------------------------------------- 
 *	お知らせエリア
 *	箇条書きでお知らせを掲載する際にご利用ください
 *	※初期設定では適用されていません
 * ------------------------------------- */

#information ul {
	font-size: 11px;
	line-height: 160%;
	margin: 0px 20px 0px 15px;
	padding: 0px 0px 0px 0px;
	}


#information li {
	padding: 0px 0px 0px 20px;
	list-style-type: none;
	background: url(https://img.shop-pro.jp/tmpl_img/8/list_red.gif) no-repeat 6px 7px;
	}

#information p {
	margin: 10px 0px 20px 20px;
	}


/* ************************************************ 
 *	商品詳細　レイアウト
 * ************************************************ */

#detail {
	padding: 20px 0px 20px 0px;
	}

#detail .td1 {
	background: #EEE;
	}

#detail .td2 {
	background: #FFF;
	}

#detail .large {
	border: 1px solid #CCC;
	margin: 0px 20px 0px 20px;
	width: 300px;
	}

#detail .small {
	margin: 20px 0px 0px 20px;
	width: 120px;
	height: 120px;
	}


#detail p {
	font-size: 14px;
	margin: 2px;
	padding: 2px;
	//border: 1px solid #CCC;
	//background: #EEE;
	
	}

#detail ul {
	margin: 20px;
	padding: 5px;
	}

#detail li {
	padding: 0px 0px 0px 20px;
	list-style-type: none;
	background: url(https://img.shop-pro.jp/tmpl_img/8/list_arrow_red.gif) no-repeat 6px 0px;
	}

/* ------------------------------------- 
 *	商品詳細-購入数選択・「カートに入れる」ボタン
 * ------------------------------------- */

.product_num {
	width: 50px;
	}

.product_incart {
	margin: 10px;
	text-align: center;
	}

/* ------------------------------------- 
 *	この商品を買った人はこんな商品も買ってます
 * ------------------------------------- */

#together {
	width:1000px;
	margin: 0px 0px 0px 0px;
	height:100%;
	}

#together .tog_main_title {
	font-weight: bolder;
	margin-top:30px;
	padding-bottom:5px;
	border-bottom: 5px solid #CCC;
	}

#together .together_list {
	margin:0px 0px 5px 25px;
	float:left;
	width: 200px;
	text-align:center;
	}

/* ------------------------------------- 
 *	トラックバック
 * ------------------------------------- */

#trackback {
	margin: 0px 20px 20px 20px;
	}

#trackback .tb_main_title {
	font-weight: bolder;
	margin-top:30px;
	padding-bottom:5px;
	border-bottom: 5px solid #CCC;
	}


#trackback .tb_url {
	font-size: 11px;
	padding: 5px 10px 5px 10px;
	}

#trackback .tb {
	margin: 10px 0px 10px 0px;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	}

#trackback .tb_date {
	font-size: 10px;
	padding: 10px 10px 10px 10px;
	}

#trackback .tb_title {
	font-weight: bold;
	padding: 0px 10px 10px 10px;
	}

#trackback .tb_body {
	line-height: 150%;
	padding: 10px 10px 10px 10px;
	border-top: 1px dotted #CCC;
	border-bottom: 1px dotted #CCC;
	}

#trackback .tb_state {
	padding: 5px 10px 5px 10px;
	}

/* ------------------------------------- 
 *	最近チェックした商品
 * ------------------------------------- */

/* Old styling removed - now using modern .product-item styling */



/* ************************************************ 
 *	商品一覧　レイアウト
 * ************************************************ */

/* ------------------------------------- 
 *	サブカテゴリー　レイアウト
 * ------------------------------------- */
.subcategory {
	padding: 10px;
	font-size: 11px;
	}


/* ------------------------------------- 
 *	検索条件表示 (Modern Update)
 * ------------------------------------- */
.search_result {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	margin: 20px 0;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	font-family: "Noto Sans JP", sans-serif;
}

.search_result h3 {
	background: #7e7e7e;
	color: white;
	padding: 12px 20px;
	margin: -20px -20px 15px -20px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 8px 8px 0 0;
}

.search_result p {
	margin: 8px 0;
	color: #495057;
	line-height: 1.5;
}

.search_result strong {
	color: #e67e22;
	font-weight: 600;
}

/* ------------------------------------- 
 *	一覧表示　並び順を変更 (Modern Update)
 * ------------------------------------- */
.sort {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 15px 20px;
	margin: 20px 0;
	font-size: 14px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	font-family: "Noto Sans JP", sans-serif;
	color: #495057;
}

.sort .sort-link {
	color: #495057;
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 3px;
	transition: all 0.2s ease;
	margin: 0 5px;
	display: inline-block;
	font-weight: 500;
	background: #e9ecef;
	border: 1px solid #ced4da;
}

.sort .sort-link:hover {
	background-color: #dee2e6;
	color: #495057;
	border-color: #adb5bd;
}

.sort .sort-link.current {
	background: #6c757d;
	color: white;
	font-weight: 600;
	cursor: default;
	border-color: #6c757d;
}

/* ------------------------------------- 
 *	一覧表示　商品数と表示数 (Modern Update)
 * ------------------------------------- */
.pagenavi {
	margin: 20px 0;
	font-size: 14px;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}

.pagenavi a {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 2px;
	background: #e67e22;
	color: white !important;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.2s ease;
	font-weight: 500;
}

.pagenavi a:hover {
	background: #d35400;
	color: white !important;
	text-decoration: none;
}

.pagenavi a:visited {
	color: white !important;
}

.pagenavi .current {
	background: #d35400;
	color: white !important;
	padding: 8px 15px;
	margin: 0 2px;
	border-radius: 4px;
	font-weight: bold;
	display: inline-block;
}



/* ************************************************ 
 *	商品オプションページ
 * ************************************************ */

/* ------------------------------------- 
 *	オプション表の罫線の色
 * ------------------------------------- */
#Option .option_table {
	background-color:#999;
}

/* ------------------------------------- 
 *	オプション　項目背景の色 
 * ------------------------------------- */
#Option .option_cell1 {
	text-align:left;
	color: #333333;
	background-color:#EEEEEE;
	margin: 2px;
	padding: 2px 10px 2px 10px;
	font-weight:bold;
	white-space:nowrap;
}

/* ------------------------------------- 
 *	オプション　価格背景の色
 * ------------------------------------- */
#Option .option_cell2 {
	text-align:left;
	background-color:#FFFFFF;
	padding: 2px 10px 2px 6px;
}

/* ------------------------------------- 
 *	サブカテゴリリスト
 * ------------------------------------- */
.subcategory_list {
	float:left;
	width: 120px;
	text-align:center;
	margin: 10px 10px;
}



/* ************************************************ 
 *	特定商取引法・お支払い方法・配送設定について
 * ************************************************ */

#ShopKeeper {
	margin: 20px auto;
	background: #999999;
	width: 930px;
	}


#ShopKeeper th {
	width: 150px;
	background: #EEE;
	border-top: 0px solid #FFF;
	border-right: 0px solid #CCC;
	border-bottom: 0px solid #CCC;
	border-left: 0px solid #FFF;
	color: #000;
	font-size: 14px;
	padding: 0px 5px 0px 5px;
	}

#ShopKeeper td {
	width: 400px;
	background: #FFF;
	padding: 5px;
	}

.SK p {
	margin: 0px 0px 10px 0px;
	padding: 15px 0px 0px 30px;
	border-top: 0px solid #CCC;
	background: white;
}.SK .area {
	padding: 0px 30px 20px 30px;
	}

.SK .title {
	background: #EEE;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px dotted #CCC;
	border-left: 1px solid #CCC;
	padding: 5px;
	color: #000;
	}

.SK .note {
	background: #FFF;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	margin: 0px 0px 10px 0px;
	padding: 5px;
	}

.payment_img {
	width:30px;
	height:30px;
	margin:3px;
}


/* ************************************************ 
 *	プライバシーポリシー
 * ************************************************ */

#PrivacyExplain {
	margin: 20px;
	font-size: 14px;
	}

#PrivacyExplain .title {
	margin: 20px 0px 0px 0px;
	padding: 5px 5px 10px 5px;
	border-top: 2px solid #CCC;
	color: #000;
	font-weight: bolder;
	}

#PrivacyExplain .note {
	font-size: 11px;
	line-height: 150%;
	margin: 10px 5px 20px 15px;
	}


/* -------------------------------------
*     商品オプション 表形式
* ------------------------------------- */
#option_tbl {
     border-collapse:collapse;
     margin:10px auto 0;
     border-top:1px solid #ccc;
     border-left:1px solid #ccc;
     width:100%;
}
#option_tbl th{
     padding:5px;
     border-bottom:1px solid #ccc;
     border-right:1px solid #ccc;
}
#option_tbl td input{
     float:none;
     margin:0 0 5px;
     width:auto;
}
#option_tbl th,
#option_tbl td.none {
     background:#eee;
}
#option_tbl td {
     padding:5px;
     text-align:center;
     border-bottom:1px solid #ccc;
     border-right:1px solid #ccc;
}
.stock_zero {
     color:red;
}




.tbl_calendar {
  border: none !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}
.tbl_calendar th, .tbl_calendar td {
  padding: 4px !important;
  text-align: center !important;
  border-bottom: 1px solid #ccc !important;
}

/* ************************************************ 
 * ------------------------------------------------
 *	Webフォントの読み込み
 * ------------------------------------------------
 * ************************************************ */

/* Google Fonts - Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ************************************************ 
 * ------------------------------------------------
 *	メインナビゲーション（新デザイン）
 * ------------------------------------------------
 * ************************************************ */

.main-navigation {
	background: #424242;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin: 0 auto;
	position: relative;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-menu li {
	margin: 0;
	position: relative;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 20px;
	color: #ffffff !important;
	text-decoration: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 13px;
	transition: all 0.3s ease;
	border: none;
	background: transparent;
	min-height: 60px;
	justify-content: center;
	position: relative;
	min-width: 100px;
	margin: 0;
}

.nav-item:link {
	color: #ffffff !important;
}

.nav-item:visited {
	color: #ffffff !important;
}

.nav-item:active {
	color: #ffffff !important;
}

/* アイコン風の装飾を各メニューに追加 */
.nav-item .nav-icon {
	font-size: 18px;
	margin-bottom: 6px;
	display: block;
	line-height: 1;
	color: #ffffff;
	filter: grayscale(100%) brightness(0) invert(1);
}

.nav-item span {
	font-size: 15px;
	line-height: 1.2;
	white-space: nowrap;
	text-align: center;
	font-weight: 500;
}

.nav-item:hover {
	background: #e67e22;
	color: #ffffff !important;
	transform: none;
	text-decoration: none;
}

.nav-item:hover::before {
	transform: none;
}

/* 検索エリア */
.nav-search {
	flex: 1;
	max-width: 320px;
	margin: 0 15px;
}

.search-box {
	display: flex;
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: none;
	transition: all 0.3s ease;
	height: 40px;
	border: 1px solid #bdc3c7;
}

.search-box:focus-within {
	box-shadow: none;
	transform: none;
	border-color: #e67e22;
}

.search-input {
	flex: 1;
	border: none;
	padding: 10px 16px;
	font-size: 14px;
	outline: none;
	background: transparent;
	font-family: "Noto Sans JP", sans-serif;
}

.search-input::placeholder {
	color: #999;
	font-style: italic;
}

.search-btn {
	background: #e67e22;
	border: none;
	padding: 10px 18px;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 500;
	min-width: 80px;
	white-space: nowrap;
	flex-shrink: 0;
}

.search-btn .search-icon {
	filter: grayscale(100%) brightness(0) invert(1);
	margin-right: 4px;
}

.search-btn:hover {
	background: #d35400;
	transform: none;
}

/* カートエリア */
.nav-cart {
	margin-left: 15px;
}

.cart-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 25px;
	color: #ffffff !important;
	text-decoration: none;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 13px;
	background: #e67e22;
	transition: all 0.3s ease;
	min-height: 60px;
	justify-content: center;
	box-shadow: none;
	position: relative;
	min-width: 120px;
}

.cart-link:link {
	color: #ffffff !important;
}

.cart-link:visited {
	color: #ffffff !important;
}

.cart-link:active {
	color: #ffffff !important;
}

.cart-link .cart-icon {
	font-size: 18px;
	margin-bottom: 6px;
	color: #ffffff;
	display: block;
	line-height: 1;
	filter: grayscale(100%) brightness(0) invert(1);
}

.cart-link span {
	font-size: 15px;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
}

.cart-link:hover {
	background: #f39c12;
	color: #ffffff !important;
	transform: none;
	box-shadow: none;
	text-decoration: none;
}

.cart-link:hover::before {
	transform: none;
	animation: none;
}

@keyframes bounce {
	0% { transform: scale(1.15) translateY(0); }
	100% { transform: scale(1.15) translateY(-2px); }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		padding: 10px;
	}
	
	.nav-menu {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 10px;
	}
	
	.nav-item {
		padding: 8px 14px;
		min-height: 50px;
	}
	
	.nav-search {
		margin: 10px 0;
		max-width: 100%;
	}
	
	.nav-cart {
		margin: 10px 0;
	}
}

/* ************************************************ 
 *	ヘッダーメニュー（既存のスタイルを更新）
 * ************************************************ */

/* ************************************************ 
 *	Modern Special Commercial Transactions Law Template
 * ************************************************ */

.sk-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	font-family: "Noto Sans JP", sans-serif;
}

.page-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 15px 0;
	background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
	border-radius: 12px;
	color: white;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-title {
	font-size: 2.2em;
	font-weight: 700;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sk-section {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 30px;
	overflow: hidden;
	border: 1px solid #e9ecef;
}

/* Orange background with white text for section headers */
.section-header {
	background: linear-gradient(135deg, #cccccc 0%, #999999 100%) !important;
	padding: 5px 5px;
	margin: 0;
	border-bottom: none;
	border-radius: 8px 8px 8px 8px;
}

.section-title {
	color: white !important;
	font-size: 1.4em;
	font-weight: 600;
	margin: 0;
	background: transparent !important;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Override any old SK styles */
.SK p {
	background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
	color: white !important;
	font-weight: 600;
	border: none !important;
	margin: 0px 0px 10px 0px;
	padding: 20px 30px;
	font-size: 1.4em;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	border-radius: 8px 8px 0 0;
}

/* Ensure old table headers are also clean */
.SK p table,
.SK p table td {
	background: white !important;
	border: none !important;
}

/* Table-style layout for shop information */
.sk-table {
	display: flex;
	flex-direction: column;
}

.sk-row {
	display: flex;
	border-bottom: 1px solid #f1f3f4;
	transition: background-color 0.2s ease;
}

.sk-row:hover {
	background-color: #f8f9fa;
}

.sk-row:last-child {
	border-bottom: none;
}

.sk-label {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 18px 25px;
	font-weight: 600;
	color: #495057;
	min-width: 220px;
	border-right: 1px solid #dee2e6;
	display: flex;
	align-items: center;
	font-size: 0.95em;
}

.sk-value {
	padding: 18px 25px;
	color: #343a40;
	flex: 1;
	line-height: 1.6;
	display: flex;
	align-items: center;
}

/* Payment and Delivery Items - Enhanced Design */
.sk-item {
	margin: 0 0 15px 0;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	background: white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: all 0.2s ease;
	overflow: hidden;
}

.sk-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	transform: translateY(-1px);
}

.sk-item:last-child {
	margin-bottom: 0;
}

.sk-item-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
	padding: 20px 30px;
	border-bottom: 1px solid #dee2e6;
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
}

.sk-item-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #e67e22 0%, #d35400 100%);
}

.sk-item-title {
	font-size: 1.1em;
	font-weight: 600;
	color: #343a40;
	margin: 0;
}

.payment-icon,
.delivery-icon {
	max-width: 60px;
	max-height: 60px;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.sk-item-content {
	padding: 25px 30px;
	background: white !important;
	position: relative;
}

.sk-item-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 30px;
	right: 30px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #e67e22 50%, transparent 100%);
	opacity: 0.3;
}

.payment-cards {
	margin-bottom: 20px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 6px;
	border-left: 3px solid #e67e22;
}

.payment-cards img {
	max-height: 35px;
	margin-right: 12px;
	margin-bottom: 8px;
	filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
	transition: transform 0.2s ease;
}

.payment-cards img:hover {
	transform: scale(1.05);
}

.payment-details,
.delivery-details {
	color: #495057;
	line-height: 1.7;
	font-size: 0.95em;
}

.payment-details p,
.delivery-details p {
	margin: 8px 0;
	position: relative;
	padding-left: 15px;
}

.payment-details p::before,
.delivery-details p::before {
	content: '&#8226;';
	color: #e67e22;
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.sk-container {
		padding: 15px;
	}
	
	.page-header {
		padding: 20px 15px;
		margin-bottom: 25px;
	}
	
	.page-title {
		font-size: 1.6em;
	}
	
	.sk-row {
		flex-direction: column;
	}
	
	.sk-label {
		min-width: auto;
		border-right: none;
		border-bottom: 1px solid #dee2e6;
		border-radius: 0;
	}
	
	.sk-value {
		padding: 15px 25px;
	}
	
	.section-header {
		padding: 15px 20px;
	}
	
	.section-title {
		font-size: 1.2em;
	}
	
	.sk-item-header {
		padding: 15px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.sk-item-content {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.sk-container {
		padding: 10px;
	}
	
	.page-header {
		padding: 15px 10px;
	}
	
	.page-title {
		font-size: 1.4em;
	}
	
	.sk-label,
	.sk-value {
		padding: 12px 15px;
	}
	
	.sk-item-header {
		padding: 12px 15px;
	}
	
	.sk-item-content {
		padding: 15px;
	}
}

/* Form styling improvements */
.sk-form input[type="text"],
.sk-form textarea,
.sk-form select {
	border: 2px solid #e9ecef;
	border-radius: 6px;
	padding: 12px 15px;
	font-size: 14px;
	transition: all 0.3s ease;
	background: white;
	width: 100%;
	box-sizing: border-box;
}

.sk-form input[type="text"]:focus,
.sk-form textarea:focus,
.sk-form select:focus {
	border-color: #e67e22;
	box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
	outline: none;
}

.sk-form input[type="submit"],
.sk-form button {
	background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
}

.sk-form input[type="submit"]:hover,
.sk-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.sk-form .form-row {
	margin-bottom: 20px;
}

.sk-form label {
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 6px;
	display: block;
}

.sk-form .required-mark {
	color: #e74c3c;
	font-weight: bold;
	margin-left: 4px;
}