@charset "UTF-8";
/*+基本設定
-------------------------------------------------------------*/
/*+全体的なリセット
----------------------------------------------------*/
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-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

/*+ブロック化
----------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*+縦スクロールのずれ修正
----------------------------------------------------*/
html {
  overflow-y: scroll;
}

/*+引用符をとる
----------------------------------------------------*/
blockquote, q {
  quotes: none;
}

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

/*+フォーム
----------------------------------------------------*/
input, textarea {
  margin: 0;
  padding: 0;
}

/*+リスト
----------------------------------------------------*/
ol, ul {
  list-style: none;
}

/*+テーブル
----------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

/*+リンクをクリックしたときに出る点線を消す
----------------------------------------------------*/
a:focus {
  outline: none;
}

/*+クリアフィクス
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

/*+インラインブロック
----------------------------------------------------*/
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*+フォント
----------------------------------------------------*/
html {
  font-size: 95%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 80%;
  }
}

body, h1, h2, h3, p, ul, li, ol, address, pre {
  color: #333; /*文字色*/
  font-family: Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: 100%; /*iPhoneのフォント拡大化対策*/
}

/*+イメージ
----------------------------------------------------*/
img {
  max-width: 100%;
}

/*+テーブル
----------------------------------------------------*/
table {
  width: 100%;
}

/*+リンク表現
----------------------------------------------------*/
a {
  text-decoration: none;
}

a, a:hover {
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/*+CSS3
----------------------------------------------------*/
.tShadow { /*テキストシャドウ*/
  text-shadow: 1px 1px 3px #000;
}

.bShadow { /*ボックスシャドウ*/
  box-shadow: 1px 1px 3px #000;
}

.bShadowI { /*ボックスシャドウ内側*/
  box-shadow: inset 1px 1px 3px #000;
}

.bRadius { /*角丸*/
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.transition { /*トランジション*/
  transition: 1.5s;
}

.opacity { /*透明*/
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  opacity: 0.25;
}

.bOpacity { /*背景のみ透明*/
  background-color: rgba(255, 255, 255, 0.2);
}

.gradation { /*グラデーション*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = "#ffffff", endColorstr = "#000000");
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
  background-image: linear-gradient(top, #ffffff, #000000);
}

/*スマートフォン*/
/*++ブレイクポイント
-------------------------------------------------------------*/
/*++色
-------------------------------------------------------------*/
/*++フォント
-------------------------------------------------------------*/
/*++sp
-------------------------------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .anchor {
    display: block;
    padding-top: 102px;
    /*上に余白を付ける*/
    margin-top: -102px;
    /*上の余白を打ち消す*/
  }
}
/*++header
-------------------------------------------------------------*/
header .upper {
  overflow: hidden;
}
header .upper img {
  width: 400px;
  padding: 20px;
  float: left;
}
@media screen and (max-width: 768px) {
  header .upper img {
    width: 65%;
    padding: 8px;
    float: none;
  }
}
header .upper span {
  float: right;
  margin-top: 50px;
  margin-right: 2rem;
}
header .upper span img {
  width: auto;
  height: 23px;
  padding: 0px;
  margin-left: 7px;
}
header .upper span img.on {
  /*border:solid 1px $primary-color;*/
}
header .upper span img.off {
  filter: saturate(100%);
}
header .upper span img:hover {
  filter: saturate(100%);
}
@media screen and (max-width: 768px) {
  header .upper span {
    display: none;
  }
}
header nav {
  width: 100%;
  background-color: #0122DF;
}
header nav ul {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}
header nav ul li {
  float: left;
  line-height: 3;
  width: 20%;
  border-left: solid 1px #fff;
  box-sizing: border-box;
}
header nav ul li.language {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav ul li.language {
    display: block;
  }
}
header nav ul li a {
  display: block;
  text-align: center;
  color: #fff;
}
header nav ul li a:hover {
  background-color: #034FFD;
}

h1 img {
  vertical-align: bottom;
  width: 100%;
}
h1 img.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  h1 img.sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  h1 img.pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /*JSを使いfixedクラスが付与された際の設定*/
  header.fixed {
    position: fixed;
    /*fixedを設定して固定*/
    background-color: #fff;
    z-index: 999;
    /*最前面へ*/
    top: 0px;
    /*位置指定*/
    left: 0;
    /*位置指定*/
    max-width: 100%;
    border-bottom: solid 1px #0122DF;
  }
}
/*++レスポンシブ
-------------------------------------------------------------*/
.hamburger .btn-gNav {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}

.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 10px;
  transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
  background: #000;
  top: 6px;
  transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #000;
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

@media screen and (max-width: 768px) {
  .btn-gNav {
    display: block;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 80px;
    transition: 0.3s;
    background-image: url("../images/logo2.png");
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: 10px 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .gNav {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .gNav li {
    background-color: #0122DF;
  }
  .gNav.open {
    right: 0;
  }
  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
    margin-top: 1rem;
  }
  .gNav .gNav-menu li {
    width: 100%;
    padding: 15px;
    border-bottom: #fff 1px solid;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .gNav .gNav-menu li {
    padding: 0px;
  }
  .gNav .gNav-menu li:first-child {
    border-top: #525252 1px solid;
  }
}
/*++コンテンツ
-------------------------------------------------------------*/
.contents {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  margin-top: 3rem;
}
.contents a {
  color: #000;
}
.contents a:hover {
  text-decoration: underline;
}
.contents h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/*++コンセプト
-------------------------------------------------------------*/
.concept {
  margin-top: 0rem;
  padding-top: 2rem;
  width: 100%;
}
.concept h2 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  color: #0122DF;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .concept h2 {
    font-size: 1.4rem;
  }
}
.concept ul {
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .concept ul {
    width: 100%;
  }
}
.concept ul li {
  text-align: center;
  margin-bottom: 0.5rem;
}
.concept p {
  text-align: center;
  line-height: 3;
}
.concept p.en {
  line-height: 2;
  margin-bottom: 2rem;
}
.concept p.mini {
  font-size: 0.85rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .concept p {
    line-height: 2;
  }
}

strong {
  font-weight: bold;
  color: #D50057;
}

em {
  font-weight: bold;
}

/*++分野
-------------------------------------------------------------*/
.grayBack {
  background-color: #F8F8F8;
}

.service {
  padding: 2rem;
  box-sizing: border-box;
}
.service h2 {
  margin-bottom: 2rem;
}
.service h2 span {
  display: block;
  font-size: 1rem;
  color: #0122DF;
}
.service .boxes {
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}
.service .boxes .box {
  float: left;
  width: 32%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .service .boxes .box {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.service .boxes .box:last-child {
  margin-right: 0rem;
}
.service .boxes .box img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .service .boxes .box img {
    width: 100%;
  }
}
.service .boxes .box h3 {
  margin-top: 0rem;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  background-color: #0122DF;
  padding: 10px;
}
.service .boxes .box h3 span {
  font-size: 1rem;
  margin-left: 5px;
  color: #fff;
  display: block;
}
.service .boxes .box a {
  text-decoration: none;
}
.service .boxes .box p {
  line-height: 1.6;
}
.service .boxes .box p.en {
  text-align: justify;
  word-break: break-all;
}

/*++プラン
-------------------------------------------------------------*/
.plan h2 {
  margin-bottom: 2rem;
}
.plan h2 span {
  display: block;
  font-size: 1rem;
  color: #0122DF;
}
.plan .free {
  background-color: #fff;
  overflow: hidden;
  padding: 30px;
  border: solid 5px #C6E1F2;
  margin-bottom: 2rem;
}
.plan .free .left {
  width: 55%;
  float: left;
}
@media screen and (max-width: 768px) {
  .plan .free .left {
    float: none;
    width: 100%;
  }
}
.plan .free .left h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background-color: #C6E1F2;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin-top: 1rem;
}
.plan .free .left h3.en {
  font-size: 1.6rem;
}
.plan .free .left p {
  line-height: 2.6;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .plan .free .left p {
    line-height: 2;
    text-align: center;
  }
}
.plan .free img {
  display: block;
  float: right;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .plan .free img {
    float: none;
    width: 100%;
  }
}
.plan h3 {
  background-color: #C6E1F2;
  padding: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.2rem;
}
.plan h3 span {
  font-size: 1rem;
}
.plan table {
  margin: 1rem;
  width: 90%;
  box-sizing: border-box;
}
.plan table th,
.plan table td {
  padding: 1rem;
  border: solid 1px #ccc;
}
.plan table th span.mini,
.plan table td span.mini {
  font-size: 0.85rem;
}
.plan table th {
  background-color: #F8F8F8;
  font-weight: bold;
}
.plan p {
  margin-bottom: 1rem;
  margin-left: 1rem;
}
.plan p.mini {
  font-size: 0.85rem;
  margin-left: 1.5rem;
  margin-top: 2rem;
}
.plan ul {
  margin-left: 2rem;
  margin-top: 2rem;
}
.plan ul li {
  margin-bottom: 1rem;
  margin-left: 1rem;
  list-style-type: disc;
}

/*+++フロー
-------------------------------------------------------------*/
.flow {
  margin-top: 2rem;
  overflow: hidden;
}
.flow .box {
  text-align: center;
  width: 19%;
  float: left;
}
@media screen and (max-width: 768px) {
  .flow .box {
    float: none;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.flow .box i {
  font-size: 7rem;
  color: #0073D0;
}
@media screen and (max-width: 768px) {
  .flow .box i {
    font-size: 12rem;
  }
}
.flow .box h4 {
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .flow .box h4 {
    font-size: 1.2rem;
  }
}
.flow .fa-angles-right {
  display: block;
  width: 8%;
  float: left;
  font-size: 3rem;
  padding-top: 2rem;
  color: #0073D0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow .fa-angles-right {
    float: none;
    width: 100%;
    margin-bottom: 2rem;
    transform: rotate(90deg);
    position: relative;
    left: 13px;
  }
}

/*++プロフィール
-------------------------------------------------------------*/
.profile {
  background-color: #F8F8F8;
  box-sizing: border-box;
  padding: 2rem;
}
.profile h2 {
  margin-bottom: 2rem;
}
.profile h2 span {
  display: block;
  font-size: 1rem;
  color: #0122DF;
}
.profile p.catch {
  font-weight: bold;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3 !important;
}
@media screen and (max-width: 768px) {
  .profile p.catch {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.profile .boxes {
  overflow: hidden;
}
.profile .boxes img {
  float: left;
  display: block;
  width: 27%;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .profile .boxes img {
    float: none;
    width: 100%;
  }
}
.profile .boxes .right {
  float: right;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .profile .boxes .right {
    float: none;
    width: 100%;
  }
}
.profile .boxes .right p {
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .profile .boxes .right p {
    line-height: 2;
  }
}
.profile .career {
  width: 70%;
  margin-left: 30%;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .profile .career {
    margin-left: 0;
    width: 100%;
  }
}
.profile .career h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  border-bottom: dotted 1px #333;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.profile .career li {
  list-style-type: disc;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

/*++問い合わせボタン
-------------------------------------------------------------*/
a.button {
  display: block;
  text-align: center;
  width: 600px;
  max-width: 95%;
  line-height: 5;
  background: linear-gradient(#D14D15, #D15926);
  margin: auto;
  margin-bottom: 3rem;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 7px;
}
a.button:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*++コンサルティング
-------------------------------------------------------------*/
.localNav {
  background-color: #F8F8F8;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .localNav {
    margin-top: 2rem;
  }
}
.localNav ul {
  width: 1000px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}
.localNav ul li {
  float: left;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .localNav ul li {
    float: none;
    width: 100%;
  }
}
.localNav ul li a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px;
  font-size: 1.2rem;
}
.localNav ul li a:hover {
  opacity: 0.8;
}
.localNav ul li a span {
  display: block;
  font-size: 1rem;
}

.consulting {
  overflow: hidden;
}
.consulting .box {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .consulting .box {
    margin-bottom: 2rem;
  }
}
.consulting .box img {
  width: 100%;
  vertical-align: bottom;
}
.consulting .box h3 {
  color: #fff;
  padding: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}
.consulting .box .lead {
  overflow: hidden;
}
.consulting .box .lead p {
  line-height: 2;
  float: left;
  width: 58%;
  box-sizing: border-box;
}
.consulting .box .lead p.en {
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .consulting .box .lead p {
    float: none;
    width: 100%;
    padding: 10px;
  }
}
.consulting .box .lead img {
  display: block;
  float: right;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .consulting .box .lead img {
    float: none;
    width: 100%;
  }
}
.consulting .box h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  background-color: #C6E1F2;
  padding: 10px;
  padding-left: 1rem;
  border-radius: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .consulting .box h4 {
    width: 96%;
    box-sizing: border-box;
    margin: auto;
    margin-top: 1rem;
  }
}
.consulting .box ul {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .consulting .box ul {
    padding: 10px;
  }
}
.consulting .box ul li {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}

.blue {
  background: linear-gradient(#0073D0, #3B8ED1) !important;
}

/*++コンタクト
-------------------------------------------------------------*/
.contact {
  margin-bottom: 5rem;
}
.contact form table {
  width: 700px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .contact form table {
    width: 100%;
  }
}
.contact form table th,
.contact form table td {
  padding: 1rem;
  border: solid 1px #ccc;
}
.contact form table th {
  width: 200px;
  background-color: #F8F8F8;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .contact form table th {
    width: 100px;
  }
}
.contact form table td input[type=text],
.contact form table td textarea {
  width: 100%;
}
.contact form table td label {
  margin-right: 20px;
}
.contact form p input[type=submit] {
  width: 700px;
  max-width: 90%;
  margin: auto;
  display: block;
  margin-top: 2rem;
  padding: 20px;
  font-size: 1.2rem;
  color: #fff;
  pointer-events: none;
}

p.privacypolicy {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

/*++プライバシーポリシー
-------------------------------------------------------------*/
.privacypolicy {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .privacypolicy {
    padding: 10px;
    box-sizing: border-box;
  }
}
.privacypolicy p {
  margin-bottom: 1rem;
}
.privacypolicy h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/*++リンク集
-------------------------------------------------------------*/
div.links {
  padding: 20px;
  padding-bottom: 4rem;
}

/*++フッター
-------------------------------------------------------------*/
footer .links {
  background-color: #C6E1F2;
  padding: 20px;
}
footer .links ul {
  overflow: hidden;
  width: 860px;
  max-width: 100%;
  margin: auto;
}
footer .links ul li {
  float: left;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  footer .links ul li {
    float: none;
    margin-bottom: 1rem;
  }
}
footer .links ul li a {
  color: #000;
  font-size: 0.85rem;
  text-align: center;
}
footer .address {
  background-color: #0073D0;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  line-height: 4;
}
@media screen and (max-width: 768px) {
  footer .address {
    line-height: 2;
    padding: 10px;
  }
}

.en footer .links ul {
  width: 640px;
}

/*++トップに戻る
-------------------------------------------------------------*/
#page-top {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

#page-top a {
  display: block;
  border-radius: 2px;
  background-color: #0073D0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 15px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */