@charset "utf-8";

/*
======================================================================
* ファイル名：default.css (for WEB-BOX)
* 概要　　　：ブラウザ間の差を無くし、WEB-BOXの機能を適正にするためのCSSです。
* バージョン：v1.3
* 更新日時　：2019/03/01
* 
* YUI reset css Lisence
* YUI 3.18.1 (build f7e7bcb)
* Copyright 2014 Yahoo! Inc. All rights reserved.
* Licensed under the BSD License.
* http://yuilibrary.com/license/
======================================================================*/

html{
	color: #000;
	background-color: transparent;
	background-image: none;
	overflow-y: scroll;/*縦スクロールバーを常に表示*/
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}
body{
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
p,
blockquote {
	margin:0;
	padding:0;
}
input,
textarea,
th,
td {
	margin: 0;
}
table {
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
img {
    vertical-align: middle;
}
address,
caption,
cite,
code,
dfn,
th,
var {
	font-style:normal;
	font-weight:normal;
}
strong {
	font-style:normal;
}
caption,
th {
	text-align:left;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
	letter-spacing: inherit;
	*font-size:100%; /*to enable resizing for IE*/
}
/*because legend doesn't inherit in IE */
legend {
	color:#000;
}
blockquote {
    background-color: #eee;
    display: block;
    padding: 12px;
    border-left: 5px solid #ddd;
	color: #333;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 WEB-BOX 
-----------------------------------------------------------
----------------------------------------------------------- */
img {
	max-width: 100%;
	height: auto !important;
}

/*
---------------------------------------------------------
 HTMLエディタ
 (下記設定を上書きするとHTMLエディタの機能に不具合が生じます) 
--------------------------------------------------------- */
h1 {
    font-size: 189%;
}

h2 {
    font-size: 159%;
}

h3 {
    font-size: 144%;
}

h4 {
    font-size: 122%;
}

h5 {
    font-size: 107%;
}

h6 {
    font-size: 107%;
}
ol {
    list-style-type: decimal;
	padding-left: 2em;
}
ul {
	list-style-type: disc;
	padding-left: 2em;
}
hr {
    margin: 14px 0;
    padding: 0px;
}
em {
	font-style: italic;
}
strong {
    font-weight: bold;
}

table {
	border-collapse: separate;
}