﻿/*
 * Author: Carlos Alvarez
 * URL: http://Alvarez.is
 *
 * Project Name: NYC Design
 * Version: 1.0
 * Date: 04-20-2014
 * URL:
 */


/* ==========================================================================
   Base Styles, Bootstrap Modifications & Fonts Import
   ========================================================================== */
/*
@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700);
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
*/
html,
button,
input,
select,
textarea {
    color: #222;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #f2c2c9;
    color: #a4003a;
    text-shadow: none;
}

::selection {
    background: #16a085;
    color: #a4003a;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

.centered {
	text-align: center
}


/* ==========================================================================
   General styles
   ========================================================================== */

html,
body {
    height: 100%;
}

body {
    font-family: Meiryo, "Lato" sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;

    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Oswald", sans-serif;
	font-weight: 300;
}

/* ==========================================================================
   MENU CONFIGURATION
   ========================================================================== */

.menu {
	position: fixed;
	right: -200px;
	width: 260px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: left;
}

.menu.menu-open {
	right: 0px;
}

.menu-wrap {
	position: absolute;
	top: 0;
	left: 60px;
	background: #1a1a1a;
	width: 200px;
	height: 100%;
}

.menu h1.logo a {
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 40px;
	text-transform: uppercase;
	color: #ffffff;
	margin-top: 20px;
}

.menu h1.logo a:hover {
	color: #f85c37;
}

.menu img.logo {
	margin: 20px 0;
	max-width: 160px;
}

.menu a {
	margin-left: 20px;
	color: #808080;
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.menu a:hover {
	color: #ffffff;
}

.menu a:active {
	color: #ffffff;
}

.menu a > i {
	float: left;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	width: 25px;
	font-size: 14px;
	line-height: 40px;
	margin: 25px 2px;
}

.menu-close {
	cursor: pointer;
	display: block;
	/*position: absolute;*/
  float: right;
	font-size: 14px;
	color: #808080;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-top: 20px;
	right: 5px;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.body-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.body-push-toright {
	left: 200px;
}

.body-push-toleft {
	left: -200px;
}

.menu,
.body-push {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#menuToggle {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 11;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	background: rgba(0,0,0,0.25);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#menuToggle:hover {
	color: #ffffff;
	background: rgba(0,0,0,0.2);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}


/* ==========================================================================
   ヘッダ
   ========================================================================== */
#header_wrap {
  position: relative;
  background-image: url(../img/bg_main.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #212d58;
  padding-top: 120px;
  text-align: center;
}

#header_logo {
}

#header_logo img {
  width: 100%;
}

#header_copy {
  margin-top: 50px;
}

#header_copy img {
  width: 100%;
}

#header_menu {
  width: 100%;
  margin-top: 100px;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  #header_wrap {
    height: auto;
    padding-top: 80px;
  }

  #header_copy {
    margin-top: 40px;
  }

  #header_menu {
    position: relative;
    margin-top: 30px;
  }
}

#header_menu ul {
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#header_menu .container {
  padding: 0;
}

#header_menu [class*=col-] {
  margin: 0;
  padding: 0;
}

#header_menu li:first-child {
  margin-left: 8.33333333%;
}

@media (max-width: 767px) {
  #header_menu li:first-child {
    margin-left: 0;
  }
}

#header_menu li {
  float: left;
}

#header_menu li a {
}

#header_menu li a img {
  display: block;
  width: 100%;
}

#header_menu li a img.img_on {
  display: none;
}

#header_menu li a:hover img.img_on {
  display: block;
}

#header_menu li a:hover img.img_off {
  display: none;
}


/* ==========================================================================
   About
   ========================================================================== */
#about_wrap {
  background: #dde1e6;
}

#about_inner {
  background-image: url(../img/bg_01.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 50px 0;
}

#about_wrap p {
  line-height: 180%;
  font-size: 15px;
  margin-bottom: 30px;
  padding: 0 20px;
}

#about_wrap p strong {
  color: #252e57;
}

#about_wrap #about_btn_company {
}

#about_wrap #about_btn_company img.img_on {
  display: none;
}

#about_wrap #about_btn_company img.img_off {
  display: inline-block;
}

#about_wrap #about_btn_company:hover img.img_on {
  display: inline-block;
}

#about_wrap #about_btn_company:hover img.img_off {
  display: none;
}


/* ==========================================================================
   業務領域
   ========================================================================== */
#field_wrap {
  background: #fff;
  padding: 50px 0;
}

#field_wrap .area_title {
  text-align: center;
}

#field_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dde1e6;
}

#field_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#field_inner {
  position: relative;
  margin-top: 40px;
}

#field_inner .field_text {
}

#field_inner .field_text p {
  height: 270px;
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #field_inner .field_text p {
    position: relative;
    display: block;
    max-width: 451px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

#field_inner .field_diagram {
}

#field_inner .field_diagram img {
  max-width: 100%;
}


/* ==========================================================================
   役割
   ========================================================================== */
#role_wrap {
  background-color: #dde1e6;
}

#role_wrap .block {
  padding-top: 50px;
  padding-bottom: 50px;
}

#role_wrap .block_title {
  height: 110px;
}

#role_wrap .block_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

#role_wrap .block_title p {
  margin-top: 10px;
  font-size: 17px;
}

#role_wrap .block_content {
  margin-top: 20px;
}

#role_wrap .block_content img {
  width: 100%;
}

#role_wrap .block_content p {
  margin-top: 25px;
  font-size: 14px;
  line-height: 200%;
}

@media (max-width: 991px) {
  #role_wrap .block_title {
    height: auto;
  }

  #role_wrap #role {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   得意分野
   ========================================================================== */
#expertise_wrap {
  padding: 50px 0;
  background-color: #eef0f2;
}

#expertise_wrap .area_title {
  text-align: center;
}

#expertise_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dde1e6;
}

#expertise_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#expertise_inner {
  text-align: center;
  margin-top: 30px;
}

#expertise_inner .expertise_diagram {
  text-align: center;
  margin-top: 20px;
}

#expertise_inner .expertise_diagram img {
  display: inline-block;
  margin: 0 7px;
  margin-bottom: 20px;
}

#expertise_inner {
  text-align: center;
}


/* ==========================================================================
   取り組み
   ========================================================================== */
#approach_wrap {
  padding: 50px 0;
}

#approach_wrap .area_title {
  text-align: center;
}

#approach_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dde1e6;
}

#approach_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#approach_inner {
  text-align: center;
  margin-top: 40px;
}

#approach_inner img {
  max-width: 100%;
}


/* ==========================================================================
   会社概要
   ========================================================================== */
#company_wrap {
  padding: 50px 0;
  background-image: url(../img/bg_footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #c0ccdb;
}

#company_wrap .area_title {
  text-align: center;
}

#company_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

#company_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#company_inner {
  margin-top: 30px;
}

#company_inner dt {
  float: left;
  width: 20%;
  text-align: justify;
  color: #252e57;
  font-size: 15px;
  /*text-justify: auto;*/
}

#company_inner dd {
  float: left;
  width: 80%;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

#company_inner dd p {
  margin-bottom: 5px;
}


/* ==========================================================================
   プライバシー
   ========================================================================== */
#privacy_wrap {
  background: #ffffff;
  padding: 50px 0;
}

#privacy_wrap .area_title {
  text-align: center;
}

#privacy_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dde1e6;
}

#privacy_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#privacy_inner {
  margin-top: 30px;
}

#privacy_inner dt {
  float: left;
  width: 20%;
  text-align: justify;
  color: #252e57;
  font-size: 15px;
  /*text-justify: auto;*/
}

#privacy_inner dd {
  float: left;
  width: 80%;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 30px;
}

#privacy_inner dd p {
  margin-bottom: 5px;
}

/* ==========================================================================
   プライバシー取り扱い
   ========================================================================== */
#privacy_treat_wrap {
  background: #eef0f2;
  padding: 50px 0;
}

#privacy_treat_wrap .area_title {
  text-align: center;
}

#privacy_treat_wrap .area_title h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

#privacy_treat_wrap .area_title p {
  margin-top: 10px;
  font-size: 17px;
}

#privacy_treat_inner {
  margin-top: 30px;
}

#privacy_treat_inner dt {
  float: left;
  width: 20%;
  text-align: justify;
  color: #252e57;
  font-size: 15px;
  /*text-justify: auto;*/
}

#privacy_treat_inner dd {
  float: left;
  width: 80%;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 30px;
}

#privacy_treat_inner dd p {
  margin-bottom: 5px;
}


/* ==========================================================================
   フッタ
   ========================================================================== */
#footer {
  background-color: #404a6f;
  padding: 15px 0;
}

#footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
}