@charset "UTF-8";

/*/////////////////////////////////////////////////////////////
パンツ日記

Copyright (C) KAYAC Inc. All Rights Reserved.
------------------------------------------------------------

[Base] Resetting HTML elements styles
	0. All
	1. HTML, Body, Anchor
	2. Others
		2-1. Inline-level Elements
		2-2. Block-level Elements
		2-3. Table

[Layout] 
	0. Base Layout
	1. Header
	2. Content
	3. Footer

[Module] 
	1. パンツ日記って？
	2. 説明詳細
	90. Others
	99. Clearfix


//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	0. All
------------------------------------------------------------ */

body, div,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre, code, p, blockquote, th, td,
form, fieldset, legend, input, select, textarea {
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------
	1. HTML, Body, Anchor
------------------------------------------------------------ */

body {
	background: #fff url(/pc/img/bg_body.png) repeat-x;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 1.8;
}

/* ---------------
EXAMPLES FONT-SIZE
------------------
58% = 8px
65% = 9px
72% = 10px
79% = 11px
86% = 12px
93% = 13px
100% = 14px
108% = 15px
115% = 16px
122% = 17px
129% = 18px
136% = 19px
143% = 20px
150% = 21px
158% = 22px
165% = 23px
172% = 24px
179% = 25px
186% = 26px
--------------- */

a:link {
	color: #09c;
	text-decoration: underline;
}

a:visited {
	color: #09c;
}

a:hover,
a:active  {
	color: #FF6398;
	text-decoration: none;
}

/* ------------------------------------------------------------
	2. Others
------------------------------------------------------------ */

/*  2-1. Inline-level Elements
------------------------------------------------- */
img {
	border: none;
	vertical-align: bottom;
}

object {
	vertical-align: middle;
	outline: none;
}

address, caption, cite, code, dfn, th, var {
	font-weight: normal;
	font-style: normal;
}

em, strong {
	font-weight: bold;
	font-style: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

fieldset {
	border: none;
}

input, textarea, select, label {
	font-size: 100%;
	font-family: inherit;
	vertical-align: middle;
}

label {
	cursor: pointer;
}

textarea {
	overflow: auto;
}

/*  2-2. Block-level Elements
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	line-height: 1;
}

hr {
	display: none;
}

q:before, q:after {
	content: '';
}

abbr, acronym {
	border: none;
	font-variant: normal;
}

pre, code {
	font-family: monospace;
}

ul, ol {
	list-style: none;
}

/*  2-3. Table
------------------------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	font-family: inherit;
}

caption, th, td {
	text-align: left;
	vertical-align: top;
}

/*/////////////////////////////////////////////////////////////
[Layout] 
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	0. Base Layout
------------------------------------------------------------ */

body {
	text-align: center;
}

div#container {
	position: relative;
	width: 900px;
	margin: 0 auto;
	text-align: left;
}

/* ------------------------------------------------------------
	1. Header
------------------------------------------------------------ */

div#header {
	position: absolute;
	top: 0;
	left: 0;
}

/* ------------------------------------------------------------
	2. Content
------------------------------------------------------------ */
div.section {
	margin-bottom: 30px;
}

/* ------------------------------------------------------------
	3. Footer
------------------------------------------------------------ */

div#footer {
	margin: 50px 0 10px;
}

/* kayacProject
------------------------------------------------- */
div#footer dl#kayacProject {
	font-size: 79%;
}

div#footer dl#kayacProject dt {
	float: left;
	width: 120px;
}

div#footer dl#kayacProject dd {
	margin-left: 120px;
}

div#footer dl#kayacProject dd ul li {
	float: left;
	margin: 0 10px 3px 0;
	white-space: nowrap;
}

/* copyright
------------------------------------------------- */
div#footer p#copyright {
	clear: both;
	padding-top: 10px;
	text-align: center;
	font-weight: bold;
}

/*/////////////////////////////////////////////////////////////
[Module] 
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	1. パンツ日記って？
------------------------------------------------------------ */

/* パンツ日記って？
------------------------------------------------- */
div#blockIntro {
	min-height: 209px;
	margin-left: 415px;
	padding-top: 70px;
	background: url(/pc/img/bg_about.jpg) no-repeat;
	text-align: center;
}

div#blockIntro h2,
div#blockIntro h3 {
	margin-bottom: 15px;
}

div#blockIntro p {
	color: #069;
	font-size: 86%;
	line-height: 2;
}

/* 例
------------------------------------------------- */
div#blockExample p.unitType {
	float: left;
	width: 450px;
}

div#blockExample p.unitResolution {
	clear: both;
}

/* ------------------------------------------------------------
	2. 説明詳細
------------------------------------------------------------ */

div#blockDetail {
	position: relative;
	min-height: 414px;
}

div#blockHowto,
div#blockAbility {
	margin-bottom: 30px;
}

div#blockHowto h2,
div#blockAbility h2 {
	margin-bottom: 20px;
}

/* パンツ日記のつかいかた
------------------------------------------------- */
div#blockHowto p {
	margin-bottom: 1em;
}

/* パンツ日記でできること
------------------------------------------------- */
div#blockAbility ol {
	list-style: decimal;
	padding-left: 30px;
}

/* キャプチャ
------------------------------------------------- */
div#blockCapture {
	position: absolute;
	top: 0;
	right: 0;
}

/* ------------------------------------------------------------
	90. Others
------------------------------------------------------------ */

/* for Voice Browser */
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/* Noscript Message */
p#msgNoscript {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 5px 0;
	border-top: 1px solid #f00;
	border-bottom: 1px solid #f00;
	background: #fcc;
	color: #f00;
	line-height: 1.2;
	text-align: center;
	opacity: 0.7;
}

/* ------------------------------------------------------------
	99. Clearfix
------------------------------------------------------------ */

div#footer dl#kayacProject dd ul:after,
.group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
	font-size: 0.1em;
	line-height: 0;
}
div#footer dl#kayacProject dd ul,
.group {
    display: inline-block;
}
/* Hides from IE-mac \*/
* html div#footer dl#kayacProject dd ul,
* html .group {
    height: 1%;
}
div#footer dl#kayacProject dd ul,
.group {
    display: block;
}
/* End hide from IE-mac */
