@charset "utf-8";
/* adiva-template v1.0.1 | (c) adiva | adiva.jp | MIT licensed */

/*
 * Global Setting 
 * ================================================================================
 */


/*	Reset
	------------------	*/
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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, audio, video {
	display: block;
	position:relative;
}

div, h1, h2, h3, h4, h5, h6, dl, dt, dd, ol, ul {
	display: block;
	position:relative;
}

/* Box Model */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	overflow-y:scroll;
}

body {
	-webkit-tap-highlight-color: rgba(255,255,255, 0.3);
	-webkit-touch-callout:none;
	-webkit-user-select: text;
	-webkit-text-size-adjust: none;
	line-height: 1;
}

/* Selection Colours */
::selection {
	background: #fff;
}
::-moz-selection {
	background: #fff;
}
img::selection {
	background: transparent;
}
img::-moz-selection {
	background: transparent;
}

/* a */
a {
	text-decoration:underline;
	word-wrap:break-word;
	color: inherit;
}
a:active {
	outline:0px none black;
}
a:focus {
	outline:0px none black;
}
a img {
	border: none;
}

ul, ol {
	margin-left:1rem;
}
li {
	margin-bottom:0.5rem;
}
nav > ul {
	margin:0;
	list-style:none;
}
nav > ul > li {
	margin:0;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}


/*
 * Common Style 
 * ================================================================================
 */

/* Font Style
	------------------ */
/* Size */
.fs_xxlarge {
	font-size: 880%;
/*	line-height: 9;
	letter-spacing: -2px;*/
}
.fs_xlarge {
	font-size: 360%;
}
.fs_larger {
	font-size: 240%;
}
.fs_large {
	font-size: 180%;
}
.fs_bigger {
	font-size: 140%;
}
.fs_big {
	font-size: 120%;
}
.fs_normal, normal {
	font-size: 100%;
}
.fs_small, small {
	font-size: 90%;
}
.fs_xsmall {
	font-size: 80%;
}

/* Color */
.fc_white {
	color:#fff;
}
.fc_lightgray {
	color:#ddd;
}
.fc_gray {
	color:#888;
}
.fc_darkgray {
	color:#444;
}
.fc_black {
	color:#111;
}
.fc_red {
	color:#900;
}
.fc_orange {
	color:#f60;
}
.fc_yellow {
	color:#FEDD78;
}
.fc_green {
	color:#006934;
}
.fc_blue {
	color:#1D2088;
}
.fc_darkblue {
	color:#303f6a;
}
.fc_purple {
	color:#921d3e;
}

/* Align */
.ta_left {
	text-align:left;
}
.ta_center {
	text-align:center;
}
.ta_right {
	text-align:right;
}

/* Weight */
.fw_normal {
	font-weight:normal;
}
.fw_bold {
	font-weight:bold;
}

/* Line Height */
.lh_1 {
	line-height:1 !important;
}
.lh_11 {
	line-height:1.1 !important;
}
.lh_12 {
	line-height:1.2 !important;
}
.lh_14 {
	line-height:1.4 !important;
}
.lh_16 {
	line-height:1.6 !important;
}

/* Other */
address {
	font-style: normal;
	line-height:1 !important;
}
.nowrap {
	white-space: nowrap;
}
.nounderline {
	text-decoration:none;
}
.disp_n {
	display:none;
}
.disp_ib {
	display:inline-block;
}





/* Flex Box */
.flex_center {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items:         center;
}
.flex_stretch {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items:         stretch;
}
.flex_grow_item {
	-webkit-flex-grow: 1;
	flex-grow:         1;
}

