﻿@charset "utf-8";

/*---------------------------------------------------------
　携帯サイト用CSS
-----------------------------------------------------------*/

/* font memo ----
　77%=10px
　85%=11px
　92%=12px
　100%=13px
　107%=14px
　114%=15px
　122%=16px
----------------- */

/* --------------------------------------------------------
	ページメイン設定
-----------------------------------------------------------*/
body {
	margin: 5px;
	color: #444;
	font-size: 13px;
	text-align: left;
	background-color: #fff;
}

* {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-family: Verdana, Arial, 'MS P Gothic', 'Hiragino Kaku Gothic Pro W3', Osaka, sans-serif;
}


/* --------------------------------------------------------
	テキスト
-----------------------------------------------------------*/
h1 {
	margin: 0 0 10px;
	color: #473399;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}

h2,
h3 {
	margin: 0;
	color: #473399;
	font-size: 13px;
}

p { 
	margin: 0 0 10px;
}

em,
strong {
	color: #ff8080; /* ピンク */
	font-weight: bold;
}

/* --------------------------------------------------------
	リンク
-----------------------------------------------------------*/
a:link {
	color: #667acc;
	text-decoration: none;
}

a:visited {
	color: #8f66cc;
	text-decoration: none;
}

a:hover {
	color: #ff8080;
	text-decoration: underline;
}

a:active {
	color: #ff8080;
	text-decoration: underline;
}


/* --------------------------------------------------------
	リスト
-----------------------------------------------------------*/

ul {
	margin: 0;
	list-style: none;
}

li {
	margin-bottom: 5px;
}

/* 定義リスト基本 */
dl {
	margin: 0;
}

dt {
	margin: 0;
	color: #ff8080;
}

dd {
	margin: 0 0 0 5px;
}

/*  --------------------------------------------------------
	その他
------------------------------------------------------------*/

/* 画像 */
img {
	border: none;
}

