@charset "UTF-8";


/* =================================================

   COMMON

================================================= */
body {
  background: #fff;
  font-family: Century Gothic, sans-serif;
  color: #fff;
}
a,a:link {
  color: #fff;
}

/* -------------------------------------
   FONT
------------------------------------- */
body {
  font-size: 70%;

}
@media screen and (min-width:960px) {
  body {
    font-size: 81%;
  }
}


/* =====================================

   #loader

===================================== */
div#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 180px;
  z-index: 100;
  margin-left: -85px;
  margin-top: -90px;
}
div#loader > img#loading {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 25px;
}
div#loader > img#loadlogo {
  position: absolute;
  width: 170px;
  height: 40px;
  bottom: 0;
  left: 0;
}
div#fade {
  width: 100%;
  height: 100%;
  _display: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}

/* =====================================

   #container

===================================== */
div#container {
  position: relative;
  width: 100%;
  min-height: 100%;
  z-index: 2;
  overflow: hidden;
}





/* =====================================

   header

===================================== */
header#header {
  display: block;
  position: relative;
  width: 100%;
  background: #fff;
  min-height: 100px;
  border: 1px solid #ddd;
}
@media only screen and (min-width:960px) {
  header#header {
    position: fixed;
    background: #fff;
    z-index: 10000;
    min-height: 80px;
    z-index: 10000;
  }
  header#header div#header-top {
    position: fixed;
    width: 96%;
    height: 70px;
    padding: 0 2%;
    padding-bottom: 10px;
  }
}

/* -------------------------------------
   header > logo
------------------------------------- */
header#header img.logo {
  display: block;
  position: absolute;
  width: 176px;
  height: 48px;
  top: 25px;
  left: 50%;
  margin-left: -110px;
  z-index: 10000;
}
/* iPhone */
@media only screen and (min-width:480px) {
  header#header img.logo {
    width: 220px;
    height: 60px;
    top: 15px;
  }
}
@media only screen and (min-width:960px) {
  header#header img.logo {
    width: 220px;
    height: 60px;
    left: 2%;
    top: 0;
    margin-top: 10px;
    margin-left: 0;
  }
}

/* -------------------------------------
   header > .menu_icon (spのみ)
------------------------------------- */
header#header div.menu_icon {
  display: block;
  position: absolute;
  background: #fff;
  top: 23px;
  right: 2%;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 5px;/* width,heightの半分 */
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  z-index: 10001;
}
header#header div.menu_icon:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 22px;
  margin-top: -11px;
  margin-left: -13px;
  background: #006fb7;
}
header#header div.menu_icon a {
  display: block;
  width: 100%;
  height: 100%;
}
header#header div.menu_icon a:before,
header#header div.menu_icon a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  background: #fff;
  margin-left: -13px;
}
header#header div.menu_icon a:before {
  margin-top: -8px;
  height: 6px;
}
header#header div.menu_icon a:after {
  margin-top: 1px;
  height: 7px;
}
@media only screen and (min-width:960px) {
  header#header div.menu_icon {
    display: none;
  }
}


/* -------------------------------------
   header > .menu (PCのみ)
------------------------------------- */
header#header nav.menu {
  display: none;
}
@media only screen and (min-width:960px) {
  header#header nav.menu {
    display: block;
    float: right;
    width: 100%;
  }
  header#header nav.menu li {
    display: block;
    height: 80px;
    width: 150px;
    float: right;
    font-size: 150%;
    line-height: 80px;
    text-align: center;
    letter-spacing: 0.2em;
  }
  header#header nav.menu li a {
    display: block;
    height: 80px;
  }
  header#header nav.menu li a,
  header#header nav.menu li a:link {
    color: #006fb7;
  }
  header#header nav.menu li a:hover {
    background: #006fb7;
    color: #fff;
  }
}

/* -------------------------------------
   header > .menu_sp (SPのみ)
------------------------------------- */
header#header nav.menu_sp {
  position: relative;
  width: 80%;
  height: 100%;
  margin: 0 auto;
  background: #fff;
  padding-top: 100px;
}
header#header nav.menu_sp ul {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  display: none;
}
header#header nav.menu_sp ul li:first-child {
  margin-top: 0;
}
header#header nav.menu_sp ul li {
  border: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 110%;
  letter-spacing: 0.3em;
  margin-top: -1px;
}
header#header nav.menu_sp ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #006fb7;
}
header#header nav.menu_sp ul li a:hover {
  background: #006fb7;
  color: #fff;
}

@media only screen and (min-width:480px) {
  header#header nav.menu_sp ul li {
    font-size: 150%;
  }
}
@media only screen and (min-width:960px) {
  header#header nav.menu_sp {
    display: none;
  }
}





/* =====================================

   main

===================================== */
section#main {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #006fb7;
  background: #fff;
}
@media screen and (min-width:960px) {
  section#main {
    padding-top: 80px;
    height: 755px;
  }
}

/* -------------------------------------
   main > bg
------------------------------------- */
section#main img.bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../images/main_bg2.jpg) no-repeat;
  background-size: 100%;
}

/* -------------------------------------
   main > copy_en
------------------------------------- */
section#main div#copy_en {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
}
section#main div#copy_en div.inner {
  margin: 0 auto;
  border: 1px solid #006fb7;
  width: 17em;
  font-size: 120%;
  text-align: right;
  padding: 20px;
  line-height: 200%;
  letter-spacing: 0.6em;
}
@media screen and (min-width:480px) {
  section#main div#copy_en {
    top: 15%;
  }
  section#main div#copy_en div.inner {
    border: 2px solid #006fb7;
    font-size: 120%;
    width: 250px;
 }
}
@media screen and (min-width:600px) {
  section#main div#copy_en {
    top: 50%;
    margin-top: -200px;
  }
}
@media screen and (min-width:960px) {
  section#main div#copy_en {
    top: 50%;
    margin-top: -200px;
  }
  section#main div#copy_en div.inner {
    margin: 0 auto;
    border: 2px solid #006fb7;
    width: 400px;
    font-size: 200%;
    text-align: right;
    padding: 20px;
    line-height: 200%;
    letter-spacing: 0.6em;
  }
}

/* -------------------------------------
   main > main_copy
------------------------------------- */
section#main div#main_copy {
  position: relative;
  background: #fff;
  width: 100%;
  height: 110px;
}
section#main div#main_copy h2 {
  text-align: center;
  font-size: 120%;
  letter-spacing: 0.4em;
  padding-top: 10px;
  line-height: 2.5em;
}
section#main div#main_copy h2 span.sp_span {
  display: none;
}
section#main div#main_copy h2 br.sp_br {
  display: block;
}
@media screen and (min-width:600px) {
  section#main div#main_copy {
    display: block;
    position: relative;
    background: #fff;
  }
}
@media screen and (min-width:480px) {
  section#main div#main_copy h2 {
    font-size: 110%;
  }
}
@media screen and (min-width:600px) {
  section#main div#main_copy h2 span.sp_span {
    display: inline;
  }
  section#main div#main_copy h2 br.sp_br {
    display: none;
  }
}
@media screen and (min-width:960px) {
  section#main div#main_copy {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
  }
  section#main div#main_copy h2 {
    font-size: 120%;
    letter-spacing: 1em;
  }
}


/* -------------------------------------
   section
------------------------------------- */
div.section_inner {
  padding-top: 50px;
}
div.section_inner h2 {
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  margin-bottom: 50px;
  border: 1px solid #fff;
  width: 150px;
  font-size: 110%;
  line-height: 50px;
  height: 50px;
}
section div.bg {
  min-height: 755px;
}
@media screen and (min-width:480px) {
  div.section_inner h2 {
    font-size: 120%;
    width: 200px;
  }
}
@media screen and (min-width:960px) {
  div.section_inner {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  div.section_inner h2 {
    border: 2px solid #fff;
    width: 246px;
    font-size: 150%;
    line-height: 55px;
    height: 60px;
  }
}


/* -------------------------------------
   about
------------------------------------- */
section#about {
  background: #abacad;
  color: #fff;
}
section#about div.section_inner {
  padding-bottom: 50px;
}
section.about div.about_inner {
  border: 1px solid #fff;
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
section.about div.about_inner table {
  display: none;
}
section.about div.about_inner div.about_sp {
  width: 95%;
  margin: 0 auto;
}
section.about div.about_sp div.area {
  padding-bottom: 30px;
}
section.about div.about_sp div.area:last-child {
  padding-bottom: 0;
}
section.about div.about_sp div.area h5 {
  font-size: 115%;
  line-height: 2em;
  letter-spacing: 0.2em;
  text-decoration: underline;
}
section.about div.about_sp div.area p {
  font-size: 95%;
  line-height: 2em;
  letter-spacing: 0.2em;
  padding-left: .5em;
}
section.about div.about_sp div.area p.mid {
  display: none;
}
@media screen and (min-width:480px) {
  section.about div.about_sp div.area p.min {
    display: none;
  }
  section.about div.about_sp div.area p.mid {
    display: inherit;
  }
}
@media screen and (min-width:960px) {
  section.about div.about_inner {
    width: 60%;
  }
  section.about div.about_sp {
    display: none;
  }
  section.about div.about_inner table {
    display: table;
    margin: 0 auto;
    width: 90%;
    letter-spacing: 0.5em;
  }
  section.about div.about_inner table th {
    width: 150px;
    padding-bottom: 20px;
    vertical-align: top;
    line-height: 20px;
  }
  section.about div.about_inner table td {
    vertical-align: top;
    padding-bottom: 20px;
    line-height: 20px;
  }
}


/* -------------------------------------
   service
------------------------------------- */
section#service > div.bg {
  background: #7dc6f4;
  color: #fff;
}
section#service div#service_inner {
  display: none;
}
section#service div#service_inner_sp div.part {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
}
section#service div#service_inner_sp div.part img {
  filter:alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}
section#service div#service_inner_sp div.part div.obi {
  position: absolute;
  z-index: 100;
  width: 100%;
  color: #000;
  background: #fff;
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
section#service div#service_inner_sp div.part h3 {
  padding-top: 5%;
  padding-bottom: 3%;
  font-size: 120%;
  letter-spacing: 0.3em;
  margin: 0 auto;
}
section#service div#service_inner_sp div.part p {
  display: block;
  font-size: 90%;
  letter-spacing: 0.3em;
  line-height: 2em;
  z-index: 100;
  margin: 0 auto;
  padding-bottom: 2%;
}
@media screen and (min-width:760px) {
  section#service div#service_inner_sp div.part p {
    font-size: 150%;
  }
}
section#service div#service_inner_sp div.part.card div.obi {
  top: 5%;
  width: 95%;
  text-align: left;
  padding-left: 5%;
}
section#service div#service_inner_sp div.part.smart div.obi {
  top: 5%;
  width: 95%;
  text-align: right;
  padding-right: 5%; 
}
section#service div#service_inner_sp div.part.web div.obi {
  bottom: 5%;
  width: 95%;
  text-align: left;
  padding-left: 5%; 
}
section#service div#service_inner_sp div.part.analysis div.obi {
  bottom: 5%;
  width: 95%;
  text-align: right;
  padding-right: 5%;
}


@media screen and (min-width:960px) {
  section#service div.section_inner {
      padding-bottom: 0;
  }
  section#service div#service_inner_sp {
    display: none;
  }
  section#service div#service_inner {
    display: block;
    position: relative;
  }
  section#service div#service_inner div.service_inner {
    display: table;
  }
  section#service div.part {
    display: table-cell;
    width:25%;
    vertical-align: top;
    position: relative;
  }
  section#service div.needle {
    top: 50%;
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
  }
  section#service div.needle.up {
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    margin-top: -30px;
  }
  section#service div.needle.down {
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  section#service div.needle#needle_card{ 
    left: 1%;
    border-bottom: 20px solid #f2c200;
  }
  section#service div.needle#needle_smart {
    left: 26%;
    border-top: 20px solid #006fb7;
  }
  section#service div.needle#needle_web {
    left: 51%;
    border-bottom: 20px solid #3ecf7a;
  }
  section#service div.needle#needle_analysis {
    left: 76%;
    border-top: 20px solid #7b55ba;
  }
  section#service div#service_card_img,
  section#service div#service_card_ballon {
    background: #f2c200;
  }
  section#service div#service_smart_img,
  section#service div#service_smart_ballon {
    background: #006fb7;
  }
  section#service div#service_web_img,
  section#service div#service_web_ballon {
    background: #3ecf7a;
  }
  section#service div#service_analysis_img,
  section#service div#service_analysis_ballon {
    background: #7b55ba;
  }
  section#service div.ballon {
    padding-left: 20px;
    padding-top: 2%;
  }
  section#service div.part h3 {
    font-size: 150%;
    letter-spacing: 0.3em;
    line-height: 2.0em;
    padding-bottom: 1em;
  }
  section#service div.part p {
    font-size: 80%;
    line-height: 1.5em;
    letter-spacing: 0.3em;
  }
}
/* -------------------------------------
   design
------------------------------------- */
section#design > div.bg {
  background: #fff;
  color: #006fb7;
  height: 100%;
}
section#design > div.bg a {
  color: #006fb7;
}
section#design > div.bg div.section_inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding-bottom: 100px;
}
section#design div.bg div.section_inner > h2 {
  border: 2px solid #006fb7;
}
section#design div#gallery {
  width: 80%;
  margin: 0 auto;
}

/* -------------------------------------
   contact
------------------------------------- */
section#contact > div.bg {
  background: #006fb7;
  color: #fff;
  min-height: 600px;
}
section#contact div.section_inner {
  padding-bottom: 0;
}
section#contact div.contact_inner {
  width: 90%;
  margin: 0 auto;
}
section#contact div.contact_inner > div {
  padding-bottom: 25px;
}
section#contact div.contact_inner > div span {
  display: block;
  font-size: 100%;
  letter-spacing: 0.3em;
  line-height: 2em;
  text-align: center;
}
section#contact div.contact_inner img {
  margin: 0 auto;
  width: 60px;
  display: block;
}
@media screen and (min-width:960px) {
  section#contact div.contact_inner > div span {
    font-size: 150%;
  }
}


/* -------------------------------------
   footer
------------------------------------- */
footer#footer {
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #2e2d2d;
}
@media screen and (min-width:960px) {
  footer#footer {
    height: 35px;
    line-height: 35px;
    text-align: right;
    padding-right: 2%;
  }
}

a#pagetop {
  position: fixed;
  display: block;
  width: 60px;
  height: 60px;
  right: 2%;
  bottom: 10px;
  border: 1px solid #006fb7;
  color: #006fb7;
  -webkit-border-radius: 5px;/* width,heightの半分 */
  -moz-border-radius: 5px;
  border-radius: 5px;
  z-index: 10000;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  background: #fff;
  filter:alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
}
@media screen and (min-width:960px) {
  a#pagetop {
    bottom: 40px;
  }
}
a#pagetop i.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a#pagetop i.arrow-up:before {
  content: "\f062";
}

