@charset "UTF-8";
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/* ==========================================================
 html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section {
  display: block; }

/* ==========================================================
 reseting
========================================================== */
* {
  box-sizing: border-box;
  font: inherit; }

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, button, figure, figcaption {
  margin: 0;
  padding: 0; }

input, textarea {
  margin: 0; }

input, textarea, select {
  -webkit-appearance: none;
  outline: none; }

textarea {
  resize: none; }

button {
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: none;
  vertical-align: top;
  color: inherit; }

label {
  cursor: pointer; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%; }

fieldset, img {
  border: 0; }

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: top; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6, strong, em, b {
  font-weight: inherit; }

a, input {
  /* outline: none; -webkit-tap-highlight-color:rgba(0,0,0,0);*/ }

sup, sub {
  font-size: 63%; }

sup {
  font-size: 75.5%;
  vertical-align: top; }

sub {
  font-size: 75.5%;
  vertical-align: bottom; }

html,
body {
  height: 100%; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  line-height: 1.714;
  color: #212121; }

a {
  color: #3368d5;
  text-decoration: underline; }
  a:hover, a:active {
    text-decoration: none; }

.global_wrapper {
  min-height: 100%; }

.global_inner {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
  text-align: left; }
  @media screen and (max-width: 768px) {
    .global_inner {
      padding: 0 15px;
      max-width: none; } }

/* ==========================================================
 サイト共通ヘッダー
========================================================== */
.global_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%; }
  body._fixed-header .global_header {
    position: fixed; }
  @media (max-width: 1200px) {
    .global_header {
      position: fixed; } }
  .global_header > .global_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    max-width: 1200px;
    height: 85px;
    background: #fff;
    transition: height 0.2s ease; }
    body._fixed-header .global_header > .global_inner {
      height: 48px; }
    @media (max-width: 1200px) {
      .global_header > .global_inner {
        height: 48px; } }
  .global_header .gh_logo {
    float: left;
    padding-left: 30px;
    transition: padding 0.2s ease; }
    body._fixed-header .global_header .gh_logo {
      padding-left: 16px; }
    @media (max-width: 1200px) {
      .global_header .gh_logo {
        padding-left: 16px; } }
    .global_header .gh_logo a {
      display: block;
      width: 200px;
      height: 28px;
      background: url("/img/common/logo.png") no-repeat left top;
      background-size: contain;
      text-decoration: none;
      transition: opacity 0.2s ease; }
      .global_header .gh_logo a:hover, .global_header .gh_logo a:active, .global_header .gh_logo a:focus {
        opacity: .7;
        text-decoration: none; }
      body._fixed-header .global_header .gh_logo a {
        width: 174px;
        height: 24px; }
      @media (max-width: 1200px) {
        .global_header .gh_logo a {
          width: 174px;
          height: 24px; } }
      .global_header .gh_logo a span {
        display: none; }
  .global_header .gh_button {
    display: none;
    position: absolute;
    right: 0;
    width: 48px;
    height: inherit; }
    @media screen and (max-width: 768px) {
      .global_header .gh_button {
        display: block; } }
    .global_header .gh_button span, .global_header .gh_button::before, .global_header .gh_button::after {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      width: 16px;
      height: 2px;
      background-color: #3368d5;
      transform: translateX(-50%);
      backface-visibility: hidden;
      transition: all 0.2s ease; }
    .global_header .gh_button::before {
      top: 19px; }
      body._open-header .global_header .gh_button::before {
        top: 16px;
        transform: translateX(-50%) translateY(8px) rotate(45deg); }
    .global_header .gh_button span {
      top: 24px; }
      body._open-header .global_header .gh_button span {
        opacity: 0; }
    .global_header .gh_button::after {
      top: 29px; }
      body._open-header .global_header .gh_button::after {
        top: 32px;
        transform: translateX(-50%) translateY(-8px) rotate(-45deg); }
    .global_header .gh_button i {
      display: none; }

/* ==========================================================
 サイト共通グローバルナビゲーション
========================================================== */
.global_navigation {
  padding: 0 30px;
  width: 100%;
  height: inherit;
  transition: padding 0.2s ease; }
  @media (max-width: 984px) {
    .global_navigation {
      padding: 0 15px;
      font-size: 12px; } }
  @media screen and (max-width: 768px) {
    .global_navigation {
      display: none; } }
  .global_navigation > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    height: inherit; }
    .global_navigation > ul > li {
      height: inherit;
      text-align: center; }
      .global_navigation > ul > li > button {
        display: none; }
      .global_navigation > ul > li > a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        position: relative;
        padding: 0 1em;
        height: inherit;
        color: #212121;
        text-decoration: none;
        transition: padding 0.2s ease; }
        @media (max-width: 984px) {
          .global_navigation > ul > li > a {
            padding: 0 .5em; } }
        .global_navigation > ul > li > a::after {
          content: '';
          position: absolute;
          left: 50%;
          bottom: 0;
          display: block;
          width: 0;
          height: 3px;
          background-color: #3368d5;
          transform: translateX(-50%);
          transition: width 0.2s ease; }
      .global_navigation > ul > li:hover a {
        color: #3368d5; }
        .global_navigation > ul > li:hover a::after {
          width: 100%; }
      .global_navigation > ul > li div.gn_menu {
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 50;
        overflow: hidden;
        width: 100%; }
        .global_navigation > ul > li div.gn_menu > div {
          width: 100%;
          height: 0;
          background-color: rgba(0, 0, 0, 0.7);
          color: #fff;
          transition: height 0.2s ease; }
      .global_navigation > ul > li:hover div.gn_menu > div {
        height: 300px; }

/* ==========================================================
 サイト共通ユーティリティリンク
========================================================== */
.gh_utility {
  height: inherit;
  font-size: 13px; }
  @media screen and (max-width: 768px) {
    .gh_utility {
      display: none; } }
  .gh_utility ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: end;
    -moz-justify-content: end;
    justify-content: end; }
    .gh_utility ul li {
      width: 85px;
      height: 85px;
      transition: height 0.2s ease; }
      body._fixed-header .gh_utility ul li {
        width: 48px;
        height: 48px; }
      @media (max-width: 1200px) {
        .gh_utility ul li {
          width: 48px;
          height: 48px; } }
      .gh_utility ul li a {
        display: block;
        position: relative;
        width: inherit;
        height: inherit;
        background: #000;
        color: #fff;
        text-decoration: none;
        text-decoration: none;
        transition: opacity 0.2s ease; }
        .gh_utility ul li a:hover, .gh_utility ul li a:active, .gh_utility ul li a:focus {
          opacity: .7;
          text-decoration: none; }
        .gh_utility ul li a > span {
          display: block;
          position: absolute;
          top: 50%;
          width: 100%;
          text-align: center;
          transform: translateY(-50%); }
          .gh_utility ul li a > span i {
            display: block;
            font-size: 24px;
            line-height: 24px;
            font-style: normal; }
            body._fixed-header .gh_utility ul li a > span i {
              font-size: 18px;
              line-height: 18px; }
            @media (max-width: 1200px) {
              .gh_utility ul li a > span i {
                font-size: 18px;
                line-height: 18px; } }
            .gh_utility ul li a > span i::before {
              font-family: "Material Icons"; }
          .gh_utility ul li a > span span {
            font-size: 10px;
            font-weight: bold; }
            body._fixed-header .gh_utility ul li a > span span {
              display: none; }
            @media (max-width: 1200px) {
              .gh_utility ul li a > span span {
                display: none; } }
      .gh_utility ul li:nth-child(1) a i::before {
        content: '\E0BE'; }
      .gh_utility ul li:nth-child(2) a {
        background-color: #3368d5; }
        .gh_utility ul li:nth-child(2) a i::before {
          content: '\E894'; }
      .gh_utility ul li:nth-child(3) a {
        background-color: #757575; }
        .gh_utility ul li:nth-child(3) a i::before {
          content: '\E8B6'; }

.global_mainVisual {
  position: relative;
  padding: 0 0 41.4507772%;
  width: 100%;
  transition: padding 0.2s ease; }
  @media (max-width: 984px) {
    .global_mainVisual {
      padding: 0 0 calc(61.80339887499% + 48px); } }
  .global_mainVisual::before {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.25); }
    @media screen and (max-width: 768px) {
      .global_mainVisual::before {
        position: absolute; } }
  .global_mainVisual::after {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: url("/img/mainvisual_bg-04.jpg") no-repeat 50% 50%;
    background-size: cover; }
    @media screen and (max-width: 768px) {
      .global_mainVisual::after {
        position: absolute; } }
  body.top .global_mainVisual .global_inner {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateX(-50%); }
  .global_mainVisual .global_inner .mv_title {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    z-index: 20;
    margin: auto;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-feature-settings: "palt"; }
    .global_mainVisual .global_inner .mv_title span {
      display: block;
      font-family: "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
      font-size: 3.6vw;
      transition: font-size 0.2s ease; }
      @media screen and (max-width: 768px) {
        .global_mainVisual .global_inner .mv_title span {
          font-size: 7.2vw; } }
    .global_mainVisual .global_inner .mv_title i {
      display: block;
      font-family: "Times New Roman", Times, serif;
      font-size: 1.2vw;
      font-style: normal; }
      @media screen and (max-width: 768px) {
        .global_mainVisual .global_inner .mv_title i {
          font-size: 2.4vw; } }

.breadcrumb {
  background: #3368d5; }
  .breadcrumb #b_inner ul::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden; }
  .breadcrumb #b_inner ul li {
    float: left; }
    .breadcrumb #b_inner ul li span:after {
      content: ">"; }

.global_container {
  padding-bottom: 35px; }
  .global_container #gc_inner::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden; }
  .global_container #gc_main {
    float: right;
    width: 960px;
    background: #4caf50; }
    @media screen and (max-width: 768px) {
      .global_container #gc_main {
        float: none;
        width: 100%; } }
  .global_container #gc_sub {
    float: left;
    width: 240px;
    background: #8bc34a; }
    @media screen and (max-width: 768px) {
      .global_container #gc_sub {
        float: none;
        width: 100%; } }
    .global_container #gc_sub .local_navigation ul li {
      padding-left: 10px; }

.global_footer {
  position: relative;
  overflow: hidden;
  margin: -35px 0 0;
  background-color: #f6f6f6;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .global_footer {
      border-width: 5px; } }
  .global_footer .gf_pageTop {
    background-color: #3368d5;
    height: 50px;
    font-size: 24px; }
    .global_footer .gf_pageTop .global_inner {
      height: inherit; }
    .global_footer .gf_pageTop a {
      display: block;
      height: inherit;
      color: #f6f6f6;
      text-align: right;
      text-decoration: none;
      transition: opacity 0.2s ease; }
      .global_footer .gf_pageTop a:hover, .global_footer .gf_pageTop a:active, .global_footer .gf_pageTop a:focus {
        opacity: .7;
        text-decoration: none; }
      @media screen and (max-width: 768px) {
        .global_footer .gf_pageTop a {
          text-align: center; } }
      .global_footer .gf_pageTop a::before {
        content: '\E316';
        display: inline-block;
        width: 30px;
        height: 30px;
        font-family: "Material Icons";
        font-size: 30px;
        line-height: 30px;
        vertical-align: middle; }
      .global_footer .gf_pageTop a span {
        display: inline-block;
        vertical-align: middle; }
  @media screen and (max-width: 768px) {
    .global_footer > .global_inner {
      padding: 0; } }
  .global_footer .gf_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    padding: 60px 0; }
    @media screen and (max-width: 768px) {
      .global_footer .gf_link {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0; } }
    .global_footer .gf_link a {
      text-decoration: none;
      transition: opacity 0.2s ease; }
      .global_footer .gf_link a:hover, .global_footer .gf_link a:active, .global_footer .gf_link a:focus {
        opacity: .7;
        text-decoration: none; }
    @media screen and (max-width: 768px) {
      .global_footer .gf_link > ul {
        padding: .75em 1em;
        width: 50%;
        border-top: 1px solid #e5e5e5; }
        .global_footer .gf_link > ul:nth-child(2n+1) {
          border-right: 1px solid #e5e5e5; } }
    .global_footer .gf_link > ul > li:not(:last-child) {
      margin-bottom: .5em; }
    .global_footer .gf_link > ul > li p {
      font-size: 16px; }
      @media screen and (max-width: 768px) {
        .global_footer .gf_link > ul > li p {
          font-size: 14px; } }
      .global_footer .gf_link > ul > li p > a {
        display: block;
        position: relative;
        padding-left: 1.25em;
        color: #212121; }
        .global_footer .gf_link > ul > li p > a::before {
          content: '\E315';
          position: absolute;
          left: 0;
          top: 50%;
          font-family: "Material Icons";
          font-size: 16px;
          color: #3368d5;
          transform: translateY(-50%); }
        .global_footer .gf_link > ul > li p > a:hover {
          color: #3368d5; }
    .global_footer .gf_link > ul > li > ul {
      margin-top: .5em;
      margin-left: 1.75em;
      font-size: 12px; }
      @media screen and (max-width: 768px) {
        .global_footer .gf_link > ul > li > ul {
          display: none; } }
      .global_footer .gf_link > ul > li > ul > li {
        margin-bottom: .5em; }
        .global_footer .gf_link > ul > li > ul > li > a {
          color: #757575; }
          .global_footer .gf_link > ul > li > ul > li > a:hover {
            color: #3368d5; }
  .global_footer .gf_utility {
    border-top: 1px solid #e5e5e5;
    padding: 1em 0; }
    .global_footer .gf_utility::after {
      clear: both;
      content: ".";
      display: block;
      height: 0;
      visibility: hidden; }
    @media screen and (max-width: 768px) {
      .global_footer .gf_utility {
        font-size: 12px; } }
    .global_footer .gf_utility .gf_logo {
      float: left; }
      @media screen and (max-width: 768px) {
        .global_footer .gf_utility .gf_logo {
          display: none; } }
      .global_footer .gf_utility .gf_logo a {
        display: block;
        width: 145px;
        height: 20px;
        background: url("/img/common/logo.png") no-repeat left top;
        background-size: contain;
        text-decoration: none;
        transition: opacity 0.2s ease; }
        .global_footer .gf_utility .gf_logo a:hover, .global_footer .gf_utility .gf_logo a:active, .global_footer .gf_utility .gf_logo a:focus {
          opacity: .7;
          text-decoration: none; }
        .global_footer .gf_utility .gf_logo a span {
          display: none; }
    .global_footer .gf_utility ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end;
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      align-items: flex-start; }
      @media screen and (max-width: 768px) {
        .global_footer .gf_utility ul {
          -webkit-flex-wrap: wrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center; } }
      .global_footer .gf_utility ul li {
        margin-left: 1em; }
        @media screen and (max-width: 768px) {
          .global_footer .gf_utility ul li {
            margin: 0 .5em; } }
        .global_footer .gf_utility ul li a {
          color: #757575;
          text-decoration: none;
          transition: opacity 0.2s ease; }
          .global_footer .gf_utility ul li a:hover, .global_footer .gf_utility ul li a:active, .global_footer .gf_utility ul li a:focus {
            opacity: .7;
            text-decoration: none; }
          .global_footer .gf_utility ul li a:hover {
            color: #3368d5; }
  .global_footer .gf_copyright {
    height: 60px;
    background-color: #212121;
    font-size: 14px;
    color: #f6f6f6;
    line-height: 60px;
    text-align: center; }
    .global_footer .gf_copyright a {
      color: #f6f6f6; }

/*# sourceMappingURL=import.css.map */
