﻿h1 {
	font-size: 10pt;
	font-weight:bold;
	color: #333333;
	margin-left: 10px;
	margin-top: 0;
	margin-bottom: 0;

}


h2 {
	margin-bottom: 0px;
	margin-left: 10px;
	margin-top: 20px;
	font-weight:bold;
	color:#333333;
	font-size: 13pt;

}

.product_ttl1 {
	color: #FFFFFF;
	font-size: 17.5pt;
	font-weight:bold;
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 3px;
	width:471px;
	text-align: left;

}

.product_ttl2 {
	color: #FFFFFF;
	font-size: 18pt;
	font-weight:bold;
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 3px;
	width:495px;
	text-align: left;

}

.product_area {
	background-color: #0056B3;
	border-color: #0056B3;
	width: 492px;
	height: 69px;
	margin-left: 10px;
	border-collapse: collapse;
}

.price_area{
	height: 69px;
	margin-left: 10px;
	background-color:#EBEBEB;
	border-color: #EBEBEB;
	border-collapse: collapse;

}

.price {
	margin-left: 20px;
	margin-top: 0;

}

.price1 {
	font-weight: bold;
	color:#333;

}

.price2 {
	font-size: 18pt;
	margin-left: 10px;
	color:#333;

}

.price3 {
	font-size: 11pt;
	color:#333;

}


.info {
	color:#333;
	font-size: 10.5pt;
	margin-top: 5px;
	margin-left: 10px;
}

.info2{
	margin-left: 10px;
	color: #333333;
	font-size: 10.5pt;
}


.download {
	border-collapse: collapse;
	border: 1px solid #808080;
	width:750px;
	height:169px;
	margin-left:10px;
}

.download-text1 {
	color: #333333;
	font-weight:bold;
	font-size:12pt;
	width: 311px;

}

.pdf {
	font-weight:bold;
	font-size: 12pt;
	color: #333333;
}

.download-text2 {
	color: #333333;
	font-size:10pt;

}

.download-text3 {
	color: #333333;
	font-size:10pt;
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.s1 {
	margin-left:10px;
	font-size: 10pt;
	color:#333;
	
}

.s2 {
	font-size: 8pt;
	color:#333;
	text-align:center;
	
}

.s3 {
	text-align:center;
	font-size: 9pt;
	color:#333;
	
}

.s4 {
	margin-top:2px;
	
}


.pdf {
	color: #333333;
	font-weight: bold;
	font-size:11pt;
	margin-left:10pt;
}

.product-info-area {
	border-collapse: collapse;
	border: 1px solid #666666;
	width: 750px;
	margin-left:10px;
	color:#333;

}

.product-info-text1 {
	border: 1px solid #808080;
	font-size: 10pt;
	color: #333333;
	background-color:#CCCCCC;
	width: 166px;
    padding-left:4px;
	
}

.product-info-text2 {
	border: 1px solid #808080;
	font-size: 10pt;
	color: #333333;
    padding-left:4px;
}

.product-info-text3{
	padding-bottom:4px;
}


/* モータ詳細ページの画像コンテナスタイル */

.motor-image-area {
	text-align: center;
}

.motor-thumbnail {
	width: 100px;
	cursor: pointer;
	margin: 10px;
}

.motor-display-area {
	width: 350px;
	height: 250px;
	border: 2px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.motor-display-area img {
	max-width: 100%;
	max-height: 100%;
}

/* お客さまにご用意いただくもの */
.user-table-area {
    width: 750px; /* コンテナの幅を750pxに固定 */
    margin-left: 10px ;
    color: #333; /* このコンテナ内の文字色 */
    padding: 0px; /* コンテナの内側の余白 */
    box-sizing: border-box; /* paddingをwidthに含める */
}

/* このコンテナ内のテーブル */
.user-table-area table {
    width: 100%; /* 親コンテナ（option-table-area）の幅に合わせる */
    border-collapse: collapse; /* セルの境界線を結合 */
    margin: 0; /* 親コンテナのマージンを使うためリセット */
    border: 1px solid #777; /*テーブルの外枠 */
}

/* このコンテナ内のth, td */
.user-table-area th,
.user-table-area td {
   	font-size: 10pt;
    padding: 12px 15px; /* セル内の余白 */
    text-align: left; /* テキストの左寄せ */
    border: none; /* 縦線はなし */
    border-bottom: 1px solid #777; /* すべてのtdの下線を濃い灰色に */
    border-top: 1px solid #777;
    color:#333;
}

/* 項目（左側）の横幅を広げる */
.user-table-area td:first-child {
    width: 190px; /* 項目の幅を200pxに固定 */
	font-size: 10pt;
}

/* 内容（右側）の横幅は残りのスペースを埋める */
.user-table-area td:last-child {
    width: auto; /* 自動調整 */
}

/* 全体を囲むコンテナ（カードの配置用） */
.option-board-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列に分ける */
    gap: 0; /* 余白なし */
    max-width: 750px; /* 最大幅を固定 */
    border: 1px solid #888; /* コンテナの枠線を維持 */
    box-sizing: border-box;
    border-bottom: 0; /* 全体に統一ルールを適用 */
    border-right: 0; /* 全体に統一ルールを適用 */
    margin-left:10px;
}

/* 各オプション製品のカード全体を囲むリンク */
.option-board-link {
    text-decoration: none;  /* リンクの下線をなくす */
    border-bottom: 0; /* 全体に統一ルールを適用 */
    border-right: 1px solid #888; /* 縦線を維持 */
}


/* 各オプション製品のカード */
.option-board {
    border: none;   /* 個別の枠はなくす */
    border-radius: 0;       /* 角丸をなくす */
    padding: 10px;
    box-shadow: none;       /* 影をなくす */
    background-color: #fff; /* カードの背景色 */
    text-align: center;     /* テキストを中央寄せ */
    box-sizing: border-box; /* paddingとborderをwidthに含める */
    display: flex;  /* カード内の要素をflexboxで制御 */
    flex-direction: column; /* 要素を縦に並べる */
    align-items: center;    /* 中央揃え */
    height: 100%;   /* 親リンク要素の高さに合わせる */
    transition: background-color 0.2s ease; /* ホバー時の背景色変化をスムーズに */
    min-height: 120px; /* カードの高さを統一 */
    border-bottom: 1px solid #888; /* 全体に統一ルールを適用 */
    border-left:10px;

}

/* カード全体を囲むリンクのホバー効果 */
.option-board-link:hover .option-board {
    background-color: #F0F8FF; /* カーソルを当てたら */
}

.option-board-link.dummy {
    visibility: hidden;
    width: calc((100% - 2px) / 3);
}

/* カード内の画像 */
.option-board-image {
    width: auto; /* 幅は自動調整 */
    height: auto; /* 高さも自動調整 */
    max-width: 100%; /* 最大幅を親要素の100%に制限 */
    max-height: 100px; /* 最大高さを100pxに制限（適宜調整） */
    object-fit: contain; /* 枠内に収まるように縮小 */
    display: block;
}
/* カードのタイトル */
.option-board-title {
    font-size: 10.5pt;
    color: #0056B3;
    margin-bottom: 10px;
    font-weight: bold;
}

/* カードの説明文 */
.option-board-description {
    font-size: 10pt;
    color: #333;
    margin-bottom: 0;
    line-height: 1.5;
    flex-grow: 1; /* 説明文が長い場合に高さを調整 */
}

.contact-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background-color: #f8f8f8;
    border: 2px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    margin-left:15px;
    margin-top:10px;
}

.contact-button:hover {
     text-decoration:underline;

}
  