﻿@charset "utf-8";

/*
--------------------------------------------------
基本フォント定義
--------------------------------------------------
*/
html, body, input, select, textarea {
    font-family:
    		"メイリオ",
    		"MS P Gothic", "ＭＳ Ｐゴシック",
            "Hiragino Kaku Gothic Pro W3", "ヒラギノ角ゴ Pro W3",
            Osaka,
            sans-serif;
    
	color: #666666;
}

html, body {
    font-size: 12px;
    line-height: 1.6;
}

/*
--------------------------------------------------
タグ基本動作
--------------------------------------------------
*/
/* 画像の枠線除去 */
img {
    border-style: none;
}

/* リンク色設定 */
a:link, a:visited, a:hover, a:active {
	color: #336699;
	text-decoration: underline;
}

/* Chromeでのテキストエリアリサイズ制限 */
textarea {
	resize: none;
}

/* 折り返し等設定 */ *
{
	margin: 0;
	padding: 0;
	word-break: break-all;
	word-wrap: break-word;
}
