﻿@charset "utf-8";

/**
 * 検索・ブロック定義
 *
 * CSS versions	3
 *
 * @category   Web Application
 * @package    Argus
 * @copyright  2018 Polaris, Inc.
 *
 */
 .BLK20802 #product_maker
 {
     margin:2rem auto 1rem;
     padding:0.4rem 0.4rem 2rem;
     width:220px;
 }
 .BLK20802 #product_maker h3
 {
	margin: 0 auto 1rem;
	padding: 1.5rem 2rem;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #1F4799, #023499);
	font-size: 1.6rem;
	font-weight: bold;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
 }
 .BLK20802 #product_maker a
 {
     padding: 0.8rem 0.5rem 0.8rem 1.8rem;
     display: block;
     text-align: left;
     color: #333;
     font-size: 1.1rem; /* 少し小さめに */
     line-height: 1.6;
     border-bottom: 1px solid #ccc;
     position: relative;
     text-decoration: none;
     transition: all 0.2s ease-in-out;
 }
 .BLK20802 #product_maker a::before
 {
     content: "●";
     position: absolute;
     left: 0.5rem;
     top: 50%;
     transform: translateY(-50%);
     color: #1F4799; /* ポイントの色 */
     font-size: 0.9rem;
 }
 .BLK20802 #product_maker a:hover
 {
     background-color: #f5f5f5;
     color: #1F4799;
 }
 .BLK20802 #product_maker a:hover::before
 {
     color: #023499;
 }
   