/*
 ─────────────────────────
 *タイトル：CMT official Homepage
 *機能名称：CSS
 *作成者名：CMT
 *作成開始：2023.12.16
 *更新履歴：

 *機能説明：

         Copyright(C) CMT LLC. All Rights Reserved.
 ─────────────────────────
*/

/* ----- body ----- */
html,body{
	width            :100%;
	height           :100%;
	margin           :0px;
	padding          :0px;
	font-family      :"Meiryo","Yu Gothic","YuGothic",sans-serif;
	font-size        :11px;
	color            :#000;
	background       :#f8f8f8;
	white-space      :nowrap;
	overflow-x       :hidden;  //テキストはみ出し部非表示
}

/* ------------------------ */
div.main{
	padding          :10px;
}

/* ----- table note ----- */
table.note{
	border-collapse  :separate;
	border-spacing   :1px;
}

table.note th{
	padding          :0px;
	color            :#888;
}

table.note td{
	padding          :0px;
	color            :#666;
	line-height      :17px;
	vertical-align   :top;
}

/* --------- image -------- */
img{
	border           :none;
	vertical-align   :middle;
}

img.icon{
	width            :70px;
	margin           :0px 4px 0px 0px;
	border-radius    :5px;
}

/* ------------------------ */
a:link{
	color            :#000;
	text-decoration  :none;
}

a:active{
	color            :#000;
	text-decoration  :none;
}

a:visited{
	color            :#000;
	text-decoration  :none;
}

a:hover{
	color            :#369;
	text-decoration  :underline;
}

a:hover img{
	opacity          :0.5;
}

/* ------------------------ */
a.button{
	margin           :0px;
	padding          :4px 6px 4px 6px;
	color            :#000;
	background       :#eee;
	border           :1px #888 solid;
	border-radius    :3px;
	cursor           :pointer;
}

a.button:hover{
	color            :#f00;
	background       :#fdd;
	border           :1px #f00 solid;
	text-decoration  :none;
}

input[type='text']{
	padding          :3px;
	font-size        :13px;
	color            :#000;
	background       :#fff;
	width            :98px;
	height           :18px;
	border           :1px #bbb solid;
	border-radius    :5px;
}

input[type='text']:focus{
	background       :#ffc;
	border           :1px #888 solid;
}

/* ------------------------ */
@media screen and (max-width:160px) {
	img.icon{width   :18px;}
}
