@charset "utf-8";

/* -----------------------------------------------
 * base.css
 * LastUpdate : 16/02/15
----------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Old+Standard+TT:400,700);

* {
    box-sizing:border-box;
}

body {
	-webkit-text-size-adjust: 100%;
}
img {
    max-width: 100%;
    height: auto;
    width /***/:auto;　/*IE8のみ適用*/
}
#map_canvas img {
    max-width: auto !important;
}

.inner {
    min-width: 980px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#main h2 {
    font-size: 42px;
    text-align: center;
    background: #fff;
}



.box {
  margin-bottom: 60px;
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
header {
    position: relative;
}
h1.logo {
    background: #00a0e9;
    width: 190px;
    position: absolute;
    text-align: center;
    padding: 30px 0;
    z-index: 99;
}

header .tel {
    font-size: 11px;
    margin-right: 20px;
    margin-top: 5px;
}
header .tel b {
    margin-left: 3.2em;
}
header .tel span {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 1em;
}
header .tel i {
    background: #00a0e9;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 90%;
    line-height: 1.25em;
    height: 1.25em;
    width: 1.25em;
    font-weight: normal;
    margin-right: 5px;
}
#head-top li {
    float: left;
}
#head-top li a {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 45px;
    padding: 0 15px;
    color: #fff;
}
#head-top li a i {
    font-weight: normal;
}
#head-top .mail {
    /*background: #339ecf;*/
    background: #2e74e7;
}
#head-top .consultation {
    background: #285F95;
}
#head-top .os {
    background: #17b7fa;
}
#head-top .consultation i,#head-top .mail i,#head-top .os i {
    margin-right: 8px;
}
#head-top .mail i {
    font-size: 90%;
}
#head-top .consultation i {
    font-size: 20px;
}
#head-top .consultation a {
  font-size: 16px;
}
#head-top .fb {
    background: #2e74e7;
}
#head-top .tw {
    background: #2ea0e7;
}
#head-top .fb a {
    padding: 0 20px;
}
#head-top li a {
    display: block;
}
nav {
    margin: 10px 0;
}
nav ul {
    position: relative;
    margin: 0;
    padding: 0;
}
nav ul:after {
    display: block;
    clear: both;
    content: '';
}
nav li {
    float: left;
    border-left: 1px solid #eee;
    position: relative;
}
nav li:last-child {
    border-right: 1px solid #eee;
}
nav li.active {
  background: #eee;
}
nav li a {
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}
nav li a span {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 12px;
    margin-top: 10px;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 99;
    background: #152647;
    

    visibility: hidden;
    opacity: 0;
    transition: .2s ease-in-out;
    transform: translateY(10px);
}
nav ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
ul ul li:hover > ul {
    transform: translateX(0) translateY(0);
}
nav ul ul li {
    float: none;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
}
nav ul ul li:last-child {
    border:none;
}
nav ul ul a {
    font-size: 12px;
    font-weight: normal;
    text-align: left;
    color: #fff;
    padding: 15px;
}
nav ul ul a:hover {
    background: rgba(0,0,0,.4);
}
nav ul ul ul {
    position: absolute;
    top: 0px;
    left: 100%;
    transform: translateX(-20px) translateY(0);
}
nav ul ul ul li {
    background: rgba(0,0,0,.2);
}
/* Underline From Left */
nav li a.menuTitle {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
nav li a.menuTitle:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #ccc;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav li a.menuTitle:hover:before, nav li a.menuTitle:focus:before, nav li a.menuTitle:active:before {
  right: 0;
}

/* Icon Forward */
nav ul ul li a {
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.4em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
nav ul ul li a:before {
  content: "\f105";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav ul ul li a:hover:before, nav ul ul li a:focus:before, nav ul ul li a:active:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}



/* ---------------------------------------------------------------------------------------------

　   CONTENTS

--------------------------------------------------------------------------------------------- */
.breadcrumb {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.breadcrumb li {
    float: left;
    font-size: 11px;
}
.breadcrumb li:after {
    content: ">";
    margin: 0 10px;
}
.breadcrumb li:last-child:after {
    content: none;
    margin: 0;
}
.breadcrumb li a {
    color: #181414;
}
.breadcrumb li a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
footer {
    background: #2B313D;
    padding-top: 40px;
    /*margin-top: 80px;*/
}
footer p,footer a {
    color: #fff;
    font-size: 13px;
}
footer .company_name {
    font-size: 21px;
    margin-bottom: 10px;
}
footer .company_name span {
    display: block;
    font-size: 13px;
}
footer .sns {
    margin-top: 20px;
}
footer .sns a {
    display: inline-block;
    font-size: 18px;
    margin-right: 20px;
}
footer .sns a.fb:hover i {
    color: #3A5699;
}
footer .sns a.tw:hover i {
    color: #2EA0E7;
}
footer ul {
    float: left;
    margin-right: 40px;
}
footer ul:last-child {
    margin-right: 0;
}
footer ul ul {
  float: none;
}
footer li a {
    display: block;
    line-height: 1.6em;
}
footer li a:before {
    content: "\f0da";
    font-family: "FontAwesome";
    margin-right: 5px;
}

footer li a:hover {
    color: #2ea0e7;
}
footer ul ul {
    margin-left: 1.2em;
}
.copy {
    background: #0C1427;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}

/* ---------------------------------------------------------------------------------------------

　   アコーディオン

--------------------------------------------------------------------------------------------- */

.displayNone {
    display: none;
}
.accordion li {
    /*border-bottom: 1px solid #ccc;
    padding: 10px;*/
}
.accordion a {
    display: block;
}

.contentWrap {
    /*margin: 10px;*/
}
.switch {
    /*cursor:pointer;
    font-weight: bold;
    padding:10px 40px 10px 10px;
    font-size: 14px;
    background: #eee;
    border-bottom: 1px solid #ccc;*/
    position: relative;
}



/* ---------------------------------------------------------------------------------------------

　   PAGE TOP

--------------------------------------------------------------------------------------------- */
#pageTop,#pageTop_mail {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
#pageTop a,#pageTop_mail a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #00A0E9;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover,#pageTop_mail a:hover {
  text-decoration: none;
  opacity: 0.7;
  border-radius: 50%;
}



/* ---------------------------------------------------------------------------------------------

　   BUTTON

--------------------------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    /*padding: 10px 60px;*/
    box-sizing: border-box;
    padding: 25px 30px;
}
.btn.jp {
  font-size: 14px;
}
.btn01 {
    border:1px solid #152647;
}
.btn02 {
    background: #00a0e9;
    color: #fff;
}

.btn:hover {
    border-radius: 50px;
}

.btn01:hover {

}
.btn i:first-child {
  margin-right: 10px;
}
.btn i:last-child {
  margin-left: 10px;
}
.btn.jp i {
  font-size: 18px;
}