@charset "utf-8";

/* ========================================
Foundation
======================================== */

/* Reset
-----------------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

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

a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
	vertical-align:middle;
}

/* Base
-----------------------------------------*/

html {

}

body {

}

/* ========================================
Layout
======================================== */

/* Header
-----------------------------------------*/

/*--------------------
Intro
--------------------*/

#intro {
	position: relative;
	height: 330px;
	background: url('../images/bg.png') #fff;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	#intro {
		height: 630px;
	}
}

/*--------------------
Navigation
--------------------*/

nav.navbar {
	min-height: 52px;
	font-family: 'Questrial', 'Helvetica', 'Arial', sans-serif;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	z-index: 0;
	margin-bottom: 0;
	border: none;
}


/* Main
-----------------------------------------*/

/*--------------------
About
--------------------*/

#about {
	margin: 100px auto;
}

/*--------------------
Map
--------------------*/

#map {
	height: 440px;
}
@media screen and (min-width: 768px) {
	#map {
		height: 500px;
	}
}

/*--------------------
Contact
--------------------*/

#contact {
	padding: 100px 0;
}

/* Footer
-----------------------------------------*/

footer {
	position: relative;
	width: 100%;
	height: 200px;
	background: #b0d9cb;
	font-family: 'Questrial', 'Helvetica', 'Arial', sans-serif;
	text-align: center;
}

/* ========================================
Object
======================================== */

/* Compornent
-----------------------------------------*/

/*--------------------
Btn
--------------------*/

.c-ttl {
	font-size: 40px;
	margin-bottom: 26px;
}

/* Project
-----------------------------------------*/

/*--------------------
Information
--------------------*/

.p-intro__logo {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 196px;
	height: 152px;
}

/*--------------------
Navigation
--------------------*/

nav .nav {
	float: none;
	text-align: center;
	margin: 0 auto;
	min-height: 52px;
}
nav .nav li {
	float: none;
	display: block;
}
nav .nav li a {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 50px;
	color: #313131;
}
@media screen and (min-width: 768px) {
	nav .nav li {
		display: inline-block;
	}
	nav .nav li a {
		margin: 0 61px;
	}
	nav .nav li a:hover {
		background: none;
		border-bottom: 2px solid #d8c28a;
	}
	nav .nav li a:focus {
		background: none;
	}
}

nav li a img {
	vertical-align: middle;
}

/*--------------------
About
--------------------*/

#about dl {
	border-left: 3px solid #b0d9cb;
	margin-bottom: 10px;
	margin-left: 5px;
}

/*--------------------
#Contact
--------------------*/

.typeform-widget {
	width: 100%;
	height: 308px;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.typeform-widget {
		width: 768px;
	}
}
@media screen and (min-width: 992px) {
	.typeform-widget {
		width: 950px;
	}
}

/*--------------------
Footer
--------------------*/

.p-footer__hl {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 18px;
}
.p-footer__fb {
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 32px;
	color: #fff;
}
.p-footer__fb a {
	color: #fff;
}
.p-footer__cp {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: auto;
}

/* Utitlity
-----------------------------------------*/

.u-questrial {
	font-family: 'Questrial', 'Helvetica', 'Arial', sans-serif;
}

/*--------------------
Clearfix
--------------------*/

/* For modern browsers */
.u-cf:before,
.u-cf:after {
    content:"";
    display:block;
    overflow:hidden;
}
.u-cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.u-cf {
    zoom:1;
}

/*--------------------
Center Block
--------------------*/

.u-cb {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------
Display
--------------------*/

.u-block { display: block; }
.u-inline { display: inline; }
.u-inline-block { display: inline-block; }
.u-table-cell { display: table-cell; }
.u-none { display: none; }

/*--------------------
Position
--------------------*/

.u-absolute { position: absolute; }
.u-relative { position: relative; }
.u-fixed { position: fixed; }

/*--------------------
Float
--------------------*/

.u-fl { float: left; }
.u-fr { float: right; }

/*--------------------
Text Align
--------------------*/

.u-tal { text-align: left; }
.u-tac { text-align: center; }
.u-tar { text-align: right; }

/*--------------------
Vertical Align
--------------------*/

.u-vat { vertical-align: top; }
.u-vam { vertical-align: middle;}
.u-vab { vertical-align: bottom; }

/*--------------------
Font Size
--------------------*/

.u-fs10 { font-size: 10px; }
.u-fs11 { font-size: 11px; }
.u-fs12 { font-size: 12px; }
.u-fs13 { font-size: 13px; }
.u-fs14 { font-size: 14px; }
.u-fs16 { font-size: 16px; }
.u-fs18 { font-size: 18px; }
.u-fs20 { font-size: 20px; }
.u-fs22 { font-size: 22px; }
.u-fs24 { font-size: 24px; }
.u-fs26 { font-size: 26px; }
.u-fs28 { font-size: 28px; }

/*--------------------
Line Height
--------------------*/

.u-lh100 { line-height: 1; }
.u-lh110 { line-height: 1.1; }
.u-lh120 { line-height: 1.2; }
.u-lh130 { line-height: 1.3; }
.u-lh140 { line-height: 1.4; }
.u-lh150 { line-height: 1.5; }
.u-lh160 { line-height: 1.6; }
.u-lh170 { line-height: 1.7; }
.u-lh180 { line-height: 1.8; }
.u-lh190 { line-height: 1.9; }
.u-lh120 { line-height: 2.0; }

/*--------------------
Bold
--------------------*/

.u-bold { font-weight: bold; }

/*--------------------
Width
--------------------*/

.u-w00 { width: 0px; }
.u-w05 { width: 5px; }
.u-w08 { width: 8px; }
.u-w13 { width: 13px; }
.u-w21 { width: 21px; }
.u-w34 { width: 34px; }
.u-w55 { width: 55px; }
.u-w89 { width: 89px; }
.u-w144 { width: 144px; }
.u-w233 { width: 233px; }
.u-w377 { width: 377px; }
.u-w610 { width: 610px; }
.u-w987 { width: 987px; }

/*--------------------
Height
--------------------*/

.u-w00 { height: 0px; }
.u-w05 { height: 5px; }
.u-w08 { height: 8px; }
.u-w13 { height: 13px; }
.u-w21 { height: 21px; }
.u-w34 { height: 34px; }
.u-w55 { height: 55px; }
.u-w89 { height: 89px; }
.u-w144 { height: 144px; }
.u-w233 { height: 233px; }
.u-w377 { height: 377px; }
.u-w610 { height: 610px; }
.u-w987 { height: 987px; }

/*--------------------
Margin
--------------------*/

/* Margin-top */

.u-mgt00 { margin-top: 0px; }
.u-mgt05 { margin-top: 5px; }
.u-mgt08 { margin-top: 8px; }
.u-mgt13 { margin-top: 13px; }
.u-mgt21 { margin-top: 21px; }
.u-mgt34 { margin-top: 34px; }
.u-mgt55 { margin-top: 55px; }
.u-mgt89 { margin-top: 89px; }
.u-mgt144 { margin-top: 144px; }

/* Margin-right */

.u-mgr00 { margin-right: 0px; }
.u-mgr05 { margin-right: 0px; }
.u-mgr08 { margin-right: 8px; }
.u-mgr13 { margin-right: 13px; }
.u-mgr21 { margin-right: 21px; }
.u-mgr34 { margin-right: 34px; }
.u-mgr55 { margin-right: 55px; }
.u-mgr89 { margin-right: 89px; }
.u-mgr144 { margin-right: 144px; }

/* Margin-bottom */

.u-mgb00 { margin-bottom: 0px; }
.u-mgb05 { margin-bottom: 5px; }
.u-mgb08 { margin-bottom: 8px; }
.u-mgb13 { margin-bottom: 13px; }
.u-mgb21 { margin-bottom: 21px; }
.u-mgb34 { margin-bottom: 34px; }
.u-mgb55 { margin-bottom: 55px; }
.u-mgb89 { margin-bottom: 89px; }
.u-mgb144 { margin-bottom: 144px; }

/* Margin-left */

.u-mgl00 { margin-left: 0px; }
.u-mgl05 { margin-left: 5px; }
.u-mgl08 { margin-left: 8px; }
.u-mgl13 { margin-left: 13px; }
.u-mgl21 { margin-left: 21px; }
.u-mgl34 { margin-left: 34px; }
.u-mgl55 { margin-left: 55px; }
.u-mgl89 { margin-left: 89px; }
.u-mgl144 { margin-left: 144px; }

/*--------------------
Image
--------------------*/

.u-img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}
.u-img-rounded {
	border-radius: 6px;
}
.u-img-circle {
	border-radius: 50%;
}
.u-img-thumbnail {
	display: inline-block;
	max-width: 100%;
	height: auto;
	padding: 4px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
