@charset "UTF-8";

/*PC用表示*/
html.body{ width:100%;
}
/*------------------------------------------------------------
	リセット
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------------
	クリアフィクス
------------------------------------------------------------*/
.cf:after {
	content: "";
	display: block;
	clear: both;
}
.cf {
	zoom: 1;
}

/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
body{
    font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size:18px;
	line-height:180%;
	color:#444444;
}
.bold{
	font-weight: bold;
}
.fsize_large{
	font-size: 1.3em;
	line-height: 1.8em;
	margin-bottom: 1em;
}

.fsize_small{
	font-size: 0.85em;
	line-height: 1.4em;
}
.s18{
	font-size: 18px;
	line-height: 1.8em;
}
.s12{
	font-size: 12px;
}
h2{
	font-weight: bold;
	font-size: 1.7em;
	color: #ff7400;/*テーマカラーオレンジ*/
}


/*------------------------------------------------------------
	基本フォントリンク
------------------------------------------------------------*/
.boldred{
	font-weight: bold;
	color: red;
}
.redatention{
	font-size: 0.7em;
	font-weight: bold;
	color: red;
}
.atention{
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.4em;
	padding-top: 10px;
}
a:link { 
	color: #444444; 
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #ff7400;/*テーマカラーオレンジ*/
}
a:hover {
		color: #ff7400;/*テーマカラーオレンジ*/
}
a:active { color: #ff7400;/*テーマカラーオレンジ*/
	}


/*----------配置----------*/

.left{
	float: left;
}
.right{
	float: right;
}
.tcenter{
 text-align: center	
}
.tright{
	text-align: right;
}
.blockcenter{
	margin: 0 auto;
}


/*------------段落---------------*/
.wspace3em{
	padding-top: 5em;
	padding-bottom: 3em;
}
.wspace2em{
	padding-top: 2em;
	padding-bottom: 2em;
}
.wspace_pt5em{
	padding-top: 5em;
}

.wspace_mt3em{
	margin-top: 3em;
}

.wspace_mt1em{
	margin-top: 1em;
}
.wspace_mb2em{
	margin-bottom: 2em;
}

.wspace_mt2em{
	padding-top: 2em;
}
.wspace_pt3em{
	padding-top: 3em;
}
/*------------------------------------------------------------
	画像の切り替え
------------------------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 620px){
.pc { display: none !important; }
.sp { display: block !important; }
}


/*------------------------------------------------------------
	ページスクロール
------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background-color: #ff6666;/*テーマカラーピンク*/
  opacity: .8;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  color: #fff;
}
.scroll-top:hover {
  cursor: pointer;
}
