@charset "UTF-8";
/* Scss Document */
/* Scss Document */
body {
  font-size: 62.5%;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  -webkit-text-size-adjust: 100%;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: ease; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
body, h1, h2, h3, h4, h5, h6, p {
  font-size: 1rem;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 500; }

a {
  text-decoration: none; }
  a:hover {
    color: #FF0000;
    text-decoration: underline; }
  a:link {
    color: #0000FF; }
  a:active {
    color: #0000FF; }
  a:visited {
    color: #990066; }

img {
  vertical-align: bottom; }

a img {
  border: none; }

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho, "Meiryo UI", "メイリオ", "Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  outline: none; }

input:focus,
button {
  outline: 0; }

.clear {
  display: none;
  clear: both; }

img.centering {
  position: absolute; }

::selection {
  background: #D6E3FF; }

::-moz-selection {
  background: #D6E3FF; }

.pcNone {
  display: none; }

@media (max-width: 767px) {
  /* responsive none fore SP */
  .spNone {
    display: none; } }
div.system-free {
  height: 100%;
  overflow: hidden;
  position: relative; }
  div.system-free img {
    vertical-align: middle; }
  div.system-free hr {
    height: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #000; }
  div.system-free .table-x {
    width: 100%;
    overflow-x: auto;
    position: relative; }
  div.system-free table {
    overflow: auto;
    border-collapse: collapse; }
    div.system-free table th,
    div.system-free table td {
      padding: 10px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }

@media (max-width: 600px) {
  div.system-free table img {
    width: 100%;
    height: auto; } }
.header {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; }
  .header::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -moz-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.1s linear; }

.logo {
  margin: 80px 0 0 90px;
  padding: 0;
  font-weight: normal;
  position: relative;
  z-index: 2;
  transition: 0.1s linear; }
  .logo__anchor {
    width: 100%;
    height: 100%;
    color: #FFF !important;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    flex-direction: column; }
    .logo__anchor:hover {
      text-decoration: none;
      animation-name: logoMove;
      animation-duration: 0.5s;
      animation-timing-function: linear; }
    .logo__anchor--color {
      fill: #FFF; }
    .logo__anchor--txt {
      margin: 20px 0 0;
      font-size: 2.25rem;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      line-height: 1.0;
      position: relative;
      transition: 0.1s linear; }
      .logo__anchor--txt::before {
        content: '株式会社';
        font-size: 1rem;
        position: absolute;
        top: 0;
        right: -20px;
        transition: 0.1s linear; }

@media (max-width: 1100px) {
  .logo {
    margin: 20px 0 0 20px; }
    .logo__anchor {
      flex-direction: row; }
      .logo__anchor--txt {
        margin: 20px 0 0 10px;
        font-size: 1.75rem;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb; }
        .logo__anchor--txt::before {
          font-size: 0.875rem;
          position: absolute;
          top: -20px;
          right: auto;
          left: 0; } }
@media (max-width: 460px) {
  .logo__anchor svg {
    width: 50px;
    height: 33px; }
  .logo__anchor--txt {
    font-size: 1.5rem; }
    .logo__anchor--txt::before {
      font-size: 0.75rem; } }
@keyframes logoMove {
  0% {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  50% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); } }
.headerRight {
  margin: 20px 0 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 4; }
  .headerRight__upper {
    margin: 0 30px 20px 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center; }
  .headerRight__lower {
    height: 60px;
    padding: 0 210px 0 0;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center; }

@media (max-width: 800px) {
  .headerRight__upper {
    display: none; }
  .headerRight__lower {
    padding: 0; } }
@media (max-width: 600px) {
  .headerRight {
    margin: 20px 20px 0 0; } }
.languageChange {
  min-height: 16px;
  padding: 0 0 0 26px;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  line-height: 1.0;
  background-image: url("../img/common/ico01.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 16px; }
  .languageChange span {
    min-height: 15px;
    color: #FFF;
    display: inline-block; }
    .languageChange span:first-of-type {
      margin: 0 10px 0 0;
      padding: 0 11px 0 0;
      position: relative; }
      .languageChange span:first-of-type::after {
        content: '';
        width: 1px;
        height: 15px;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #FFF; }
    .languageChange span a {
      color: #FFF !important;
      transition: 0.1s linear;
      position: relative; }
      .languageChange span a:hover {
        top: 1px;
        left: 1px; }

.searchBox {
  margin: 0 0 0 50px;
  padding: 0;
  position: relative; }
  .searchBox__txt {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 290px;
    height: 40px;
    margin: 0;
    padding: 0 10px;
    display: block;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .searchBox__btn {
    position: absolute;
    top: 50%;
    right: 10px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.minimize::after {
  height: 100px;
  -moz-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1); }
.minimize .logo {
  margin: 20px 0 0 40px; }
  .minimize .logo__anchor {
    color: #000 !important;
    flex-direction: row; }
    .minimize .logo__anchor--color {
      fill: #000; }
    .minimize .logo__anchor--txt {
      margin: 20px 0 0 10px;
      font-size: 1.75rem;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
      .minimize .logo__anchor--txt::before {
        font-size: 0.875rem;
        position: absolute;
        top: -20px;
        right: auto;
        left: 0; }
.minimize .headerRight__upper {
  display: none; }
.minimize .gNav__item--anchor {
  color: #000 !important; }
  .minimize .gNav__item--anchor::before {
    background-color: #000; }
.minimize .spMenu .gNav__item--anchor {
  color: #FFF !important; }
  .minimize .spMenu .gNav__item--anchor::before {
    content: none; }

@media (max-width: 1300px) {
  .minimize .logo {
    margin: 20px 0 0 20px; } }
@media (max-width: 460px) {
  .minimize .logo__anchor--txt {
    font-size: 1.5rem; }
    .minimize .logo__anchor--txt::before {
      font-size: 0.75rem; } }
.sub .logo {
  margin: 20px 0 0 40px; }
  .sub .logo__anchor {
    color: #FFF !important;
    flex-direction: row; }
    .sub .logo__anchor--color {
      fill: #FFF; }
    .sub .logo__anchor--txt {
      margin: 20px 0 0 10px;
      font-size: 1.75rem;
      -ms-writing-mode: lr-tb;
      writing-mode: horizontal-tb; }
      .sub .logo__anchor--txt::before {
        font-size: 0.875rem;
        position: absolute;
        top: -20px;
        right: auto;
        left: 0; }
.sub.minimize .logo {
  margin: 20px 0 0 40px; }
  .sub.minimize .logo__anchor {
    color: #000 !important; }
    .sub.minimize .logo__anchor--color {
      fill: #000; }
.sub.minimize .spMenu .logo__anchor {
  color: #FFF !important; }
  .sub.minimize .spMenu .logo__anchor--color {
    fill: #FFF; }

@media (max-width: 1300px) {
  .sub .logo {
    margin: 20px 0 0 20px; }
  .sub.minimize .logo {
    margin: 20px 0 0 20px; } }
@media (max-width: 460px) {
  .sub .logo__anchor--txt {
    font-size: 1.5rem; }
    .sub .logo__anchor--txt::before {
      font-size: 0.75rem; } }
.gNav {
  height: 40px;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center; }
  .gNav__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex; }
  .gNav__item {
    margin: 0 60px 0 0;
    padding: 0;
    line-height: 1.0;
    position: relative; }
    .gNav__item--anchor {
      color: #FFF !important;
      display: block;
      position: relative;
      z-index: 2; }
      .gNav__item--anchor::before {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: -5px;
        left: 0;
        background-color: #FFF;
        transform: scaleX(0);
        transform-origin: center right;
        transition: transform 0.2s ease; }
      .gNav__item--anchor:hover {
        text-decoration: none;
        top: 1px;
        left: 1px; }
        .gNav__item--anchor:hover::before {
          transform-origin: center left;
          -moz-transform: scaleX(1);
          -webkit-transform: scaleX(1);
          transform: scaleX(1); }
    .gNav__item ul {
      width: auto;
      min-width: 140px;
      margin: 0;
      padding: 30px 0 15px;
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .gNav__item ul li {
        margin: 0 0 15px;
        display: block;
        white-space: nowrap; }
        .gNav__item ul li:last-of-type {
          margin: 0; }
        .gNav__item ul li a {
          padding: 0;
          color: #FFF !important;
          display: inline-block;
          background-color: #000; }
          .gNav__item ul li a:hover {
            color: #000 !important;
            text-decoration: none;
            background-color: #FFF; }
  .gNav.none {
    display: none; }

@media (max-width: 1300px) {
  .gNav__item {
    margin: 0 40px 0 0; } }
@media (max-width: 1100px) {
  .gNav {
    display: none; } }
.spMenu {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #172644;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3; }
  .spMenu .logo {
    position: absolute;
    top: 0;
    left: 0; }
    .spMenu .logo__anchor {
      color: #FFF !important; }
      .spMenu .logo__anchor--color {
        fill: #FFF; }
  .spMenu__wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .spMenu .gNav {
    height: auto;
    margin: 200px 0 0;
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: -o-block;
    display: block; }
    .spMenu .gNav__list {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
    .spMenu .gNav__item {
      margin: 0 0 30px; }
      .spMenu .gNav__item:last-of-type {
        margin: 0; }
  .spMenu .languageChange {
    margin: 50px 0; }
  .spMenu .searchBox {
    margin: 0; }
  .spMenu__sns {
    margin: 50px 0 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center; }
    .spMenu__sns a img {
      margin: 0 10px;
      transition: 0.1s linear; }
    .spMenu__sns a:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      opacity: 0.7;
      filter: alpha(opacity=70);
      -ms-filter: alpha(opacity=70); }

.btnMenu {
  width: 180px;
  height: 60px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 9999; }
  .btnMenu a {
    width: 100%;
    height: 100%;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .btnMenu a:hover {
      color: #FFF !important;
      text-decoration: none;
      background-color: #003399; }
      .btnMenu a:hover.menu-trigger span:nth-of-type(1), .btnMenu a:hover.menu-trigger span:nth-of-type(2), .btnMenu a:hover.menu-trigger span:nth-of-type(3) {
        background-color: #FFF; }
      .btnMenu a:hover.menu-trigger strong {
        color: #FFF; }

.menu-trigger {
  background-color: #FFF; }

.menu-trigger,
.menu-trigger span {
  transition: all .4s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.menu-trigger span {
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  transition: 0.1s linear; }
  .menu-trigger span:nth-of-type(1) {
    margin: 0 auto 5px;
    background-color: #000; }
  .menu-trigger span:nth-of-type(2) {
    margin: 0 auto;
    background-color: #000; }
  .menu-trigger span:nth-of-type(3) {
    margin: 5px auto 0;
    background-color: #000; }

.menu-trigger.active span:nth-of-type(1) {
  margin: 0 auto;
  top: 2px;
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg); }

.menu-trigger.active span:nth-of-type(2) {
  left: 0;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards; }

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0; } }
@keyframes active-menu-bar02 {
  100% {
    height: 0; } }
.menu-trigger.active span:nth-of-type(3) {
  margin: 0 auto;
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg); }

.menu-trigger strong {
  margin: 0 0 0 10px;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.0;
  position: relative; }

@media (max-width: 1300px) {
  .btnMenu {
    margin: 0; } }
@media (max-width: 800px) {
  .btnMenu {
    right: 20px; } }
@media (max-width: 600px) {
  .btnMenu {
    width: 120px;
    height: 40px;
    position: relative;
    top: auto;
    right: auto; } }
.tPath {
  width: 100%;
  margin: 20px 0 0;
  padding: 0 100px;
  font-size: 0.875rem;
  line-height: 1.0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .tPath__anchor {
    margin: 0 0 0 10px;
    color: #000 !important; }
    .tPath__anchor:hover {
      text-decoration: none; }
    .tPath__anchor:not(:first-of-type) {
      padding: 0 0 0 15px;
      background-image: url("../img/common/ar03.svg");
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 5px 8px; }

@media (max-width: 1300px) {
  .tPath {
    padding: 0 60px; } }
@media (max-width: 980px) {
  .tPath {
    padding: 0 40px; } }
@media (max-width: 700px) {
  .tPath {
    padding: 0 20px; } }
.pageTransition {
  width: 100%;
  height: 50px;
  overflow: hidden;
  margin: 0 auto 0;
  padding: 0;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  list-style: none; }
  .pageTransition__item {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    line-height: 1; }
    .pageTransition__item:last-of-type {
      margin: 0; }
  .pageTransition__anchor {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #FFF !important;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #172644;
    border: 1px solid #172644;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.1s linear; }
    .pageTransition__anchor:hover {
      color: #172644;
      text-decoration: none;
      background-color: #003399;
      border: 1px solid #003399; }
    .pageTransition__anchor--current {
      width: 100%;
      height: 100%;
      color: #FFF !important;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #003399; }

.footer {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 100px;
  background-color: #003399;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .footer__upper {
    margin: 0;
    padding: 0 0 100px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .footer__name {
    margin: 0;
    padding: 0;
    font-style: normal;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center; }
    .footer__name--right {
      margin: 0 0 0 20px; }
    .footer__name--txt {
      color: #FFF !important;
      font-size: 1.5rem; }
      .footer__name--txt:hover {
        text-decoration: none; }
    .footer__name--contact {
      margin: 10px 0;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex; }
      .footer__name--contact p {
        color: #FFF; }
        .footer__name--contact p:last-of-type {
          width: 130px;
          height: 20px;
          margin: 0 0 0 30px; }
          .footer__name--contact p:last-of-type a {
            width: 100%;
            height: 100%;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: #003399;
            font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
            font-weight: 700;
            line-height: 1.0;
            background-color: #FFF;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            transition: 0.1s linear;
            position: relative; }
            .footer__name--contact p:last-of-type a:hover {
              color: #FFF;
              text-decoration: none;
              background-color: #172644;
              top: 1px;
              left: 1px; }
              .footer__name--contact p:last-of-type a:hover span {
                background-image: url("../img/common/ar01_white.svg"); }
            .footer__name--contact p:last-of-type a span {
              padding: 0 15px 0 0;
              font-size: 0.75rem;
              font-weight: 600;
              font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
              line-height: 1.0;
              background-image: url("../img/common/ar01_blue.svg");
              background-position: right center;
              background-repeat: no-repeat;
              background-size: 10px; }
    .footer__name--cc {
      color: #FFF;
      font-family: "Barlow", sans-serif;
      font-weight: 500; }
  .footer__sns {
    width: 180px;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between; }
    .footer__sns a img {
      transition: 0.1s linear; }
    .footer__sns a:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      opacity: 0.7;
      filter: alpha(opacity=70);
      -ms-filter: alpha(opacity=70); }
    .footer__sns--amazon {
      width: 180px;
      margin: 14px 0 0; }
      .footer__sns--amazon a {
        width: 100%;
        height: 100%;
        padding: 10px 0;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #009499;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        transition: 0.1s linear; }
        .footer__sns--amazon a:hover {
          text-decoration: none;
          -moz-transform: scale(1.05);
          -webkit-transform: scale(1.05);
          transform: scale(1.05);
          opacity: 0.7;
          filter: alpha(opacity=70);
          -ms-filter: alpha(opacity=70); }
        .footer__sns--amazon a p {
          margin: 0 0 0 3px;
          color: #FFF;
          font-size: 0.625rem;
          font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
          line-height: 1.4; }
  .footer__lower {
    margin: 100px 0 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .footer__cp {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: flex-start;
    flex-direction: column; }
    .footer__cp--title {
      margin: 0;
      padding: 5px 13px;
      color: #FFF;
      font-size: 0.9375rem;
      font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
      font-weight: 600;
      line-height: 1.0;
      background-color: #172644; }
    .footer__cp--jpn {
      margin: 30px 0;
      padding: 0;
      color: #FFF;
      font-size: 1.5rem;
      font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
      font-weight: 900;
      line-height: 1.0; }
    .footer__cp--eng {
      margin: 0;
      padding: 0;
      color: #FFF;
      font-size: 1.125rem;
      font-weight: 500;
      font-family: "Barlow", sans-serif; }
      .footer__cp--eng span {
        color: #f9db6c; }

@media (max-width: 1400px) {
  .footer__upper {
    flex-direction: column; }
  .footer__name {
    flex-direction: column; }
    .footer__name--right {
      margin: 20px 0 0;
      text-align: center; }
    .footer__name--contact {
      align-items: center;
      flex-direction: column; }
      .footer__name--contact p:last-of-type {
        margin: 20px 0 0; }
  .footer__sns {
    margin: 30px 0 0; }
  .footer__lower {
    flex-direction: column; }
  .footer__cp {
    align-items: center; }
    .footer__cp--jpn {
      text-align: center; }
    .footer__cp--eng {
      text-align: center; } }
@media (max-width: 1300px) {
  .footer {
    padding: 100px 60px; } }
@media (max-width: 980px) {
  .footer {
    padding: 100px 40px; } }
@media (max-width: 700px) {
  .footer {
    padding: 100px 20px; } }
@media (max-width: 500px) {
  .footer {
    padding: 60px 20px 100px; }
    .footer__upper {
      padding: 0 0 60px; }
    .footer__lower {
      margin: 60px 0 0; } }
.footerNav {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }
  .footerNav__list {
    margin: 0 0 0 70px;
    padding: 0;
    list-style: none; }
    .footerNav__list:first-of-type {
      margin: 0; }
  .footerNav__item {
    margin: 40px 0 0;
    padding: 0;
    line-height: 1.0; }
    .footerNav__item:first-of-type {
      margin: 0; }
    .footerNav__item a {
      color: #FFF !important;
      position: relative; }
      .footerNav__item a::before {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: -5px;
        left: 0;
        background-color: #FFF;
        transform: scaleX(0);
        transform-origin: center right;
        transition: transform 0.2s ease; }
      .footerNav__item a:hover {
        text-decoration: none;
        top: 1px;
        left: 1px; }
        .footerNav__item a:hover::before {
          transform-origin: center left;
          -moz-transform: scaleX(1);
          -webkit-transform: scaleX(1);
          transform: scaleX(1); }
    .footerNav__item ul {
      margin: 30px 0 0 10px;
      padding: 0 0 0 10px;
      list-style: none;
      border-left: 1px solid #FFF; }
      .footerNav__item ul li {
        margin: 0 0 30px;
        padding: 0;
        line-height: 1.0; }
        .footerNav__item ul li:last-of-type {
          margin: 0; }
        .footerNav__item ul li a {
          color: #FFF !important; }
          .footerNav__item ul li a:hover {
            text-decoration: none; }

@media (max-width: 1400px) {
  .footerNav {
    margin: 50px 0 0; } }
@media (max-width: 1100px) {
  .footerNav {
    display: none; } }
.footerBnr {
  width: 100%;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start; }
  .footerBnr__item {
    width: auto;
    height: 100px;
    margin: 30px 30px 0 0;
    padding: 0; }
    .footerBnr__item:last-of-type {
      margin: 30px 0 0; }
    .footerBnr__item a {
      display: block;
      transition: 0.1s linear;
      position: relative; }
      .footerBnr__item a:hover {
        top: 1px;
        left: 1px;
        opacity: 0.7;
        filter: alpha(opacity=70);
        -ms-filter: alpha(opacity=70); }

@media (max-width: 1400px) {
  .footerBnr {
    justify-content: center; }
    .footerBnr__item {
      margin: 30px 15px 0; }
      .footerBnr__item:last-of-type {
        margin: 30px 15px 0; } }
@media (max-width: 620px) {
  .footerBnr__item {
    width: calc((100% - 20px)/2);
    height: auto;
    margin: 20px 20px 0 0; }
    .footerBnr__item:nth-of-type(even) {
      margin: 20px 0 0; }
    .footerBnr__item img {
      width: 100%;
      height: auto; } }
.fixedContact {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 200px;
  right: 30px;
  z-index: 1001;
  transition: 0.1s linear; }
  .fixedContact__anchor {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF !important;
    font-size: 0.8125rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.0;
    background-color: #003399;
    border: 1px solid #003399;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.1s linear; }
    .fixedContact__anchor:hover {
      color: #003399 !important;
      text-decoration: none;
      background-color: #FFF; }
      .fixedContact__anchor:hover span {
        background-image: url("../img/common/ico03_blue.svg"); }
    .fixedContact__anchor span {
      padding: 28px 0 0;
      background-image: url("../img/common/ico03.svg");
      background-position: top center;
      background-repeat: no-repeat;
      background-size: 25px 20px; }
  .fixedContact.scroll {
    top: 120px; }

@media (max-width: 1300px) {
  .fixedContact {
    right: 20px; } }
@media (max-width: 800px) {
  .fixedContact {
    top: 120px; } }
@media (max-width: 500px) {
  .fixedContact {
    width: 100%;
    height: 40px;
    top: auto;
    right: 0;
    bottom: 0; }
    .fixedContact__anchor {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
      .fixedContact__anchor span {
        min-height: 16px;
        padding: 0 0 0 28px;
        display: inline-block;
        background-position: left center;
        background-size: 20px 16px; }
    .fixedContact.scroll {
      top: auto; } }
.pagetop {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0;
  z-index: 11111; }
  .pagetop a {
    width: 100%;
    height: 100%;
    color: #FFF;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #172644;
    transition: 0.1s linear; }
    .pagetop a span {
      width: 100%;
      padding: 26px 0 0;
      font-size: 0.75rem;
      line-height: 1.2;
      font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
      text-align: center;
      display: block;
      background-image: url("../img/common/ar07.svg");
      background-position: top center;
      background-repeat: no-repeat;
      background-size: 22px 13px; }
    .pagetop a:hover {
      color: #172644;
      text-decoration: none;
      background-color: #FFF; }
      .pagetop a:hover span {
        background-image: url("../img/common/ar07_blue.svg"); }

.container {
  width: 100%;
  margin: 0;
  padding: 0; }

.pageImage {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative; }
  .pageImage::before {
    content: '';
    display: block;
    padding-top: 34%; }
  .pageImage span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    .pageImage span img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .pageImage::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25); }

.pageTitle {
  width: 100%;
  padding: 0 100px;
  color: #FFF;
  line-height: 1.0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  left: 0;
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .pageTitle__eng {
    font-size: 4.5rem;
    font-family: "Barlow", sans-serif;
    font-weight: 300; }
  .pageTitle__jpn {
    margin: 30px 0 0;
    font-size: 1.125rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
    font-weight: 700; }

@media (max-width: 1300px) {
  .pageTitle {
    padding: 0 60px; } }
@media (max-width: 1100px) {
  .pageImage::before {
    padding-top: 50%; } }
@media (max-width: 980px) {
  .pageTitle {
    padding: 0 40px; }
    .pageTitle__eng {
      font-size: 3.75rem; }
    .pageTitle__jpn {
      font-size: 1rem; } }
@media (max-width: 700px) {
  .pageImage::before {
    padding-top: 75%; }

  .pageTitle {
    padding: 0 20px; } }
@media (max-width: 500px) {
  .pageImage::before {
    padding-top: 110%; }

  .pageTitle__eng {
    font-size: 2.5rem; } }
.companyNav {
  width: 100%;
  height: 80px;
  max-width: 1300px;
  margin: 100px auto 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }
  .companyNav__item {
    width: 20%;
    margin: 0;
    padding: 0;
    position: relative; }
    .companyNav__item--anchor {
      width: 100%;
      height: 100%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000 !important;
      transition: 0.1s linear; }
      .companyNav__item--anchor:hover {
        text-decoration: none;
        background-color: #eef0f6; }
        .companyNav__item--anchor:hover span {
          padding: 0 0 0 35px;
          background-image: url("../img/common/ar02_blue.svg"); }
      .companyNav__item--anchor span {
        min-height: 18px;
        padding: 0 0 0 28px;
        display: inline-block;
        background-image: url("../img/common/ar02.svg");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 18px;
        transition: 0.1s linear; }
    .companyNav__item.active .companyNav__item--anchor {
      background-color: #eef0f6; }

@media (max-width: 1100px) {
  .message .companyNav {
    width: calc(100% - 120px);
    margin: 100px 60px 0; } }
@media (max-width: 980px) {
  .message .companyNav {
    width: calc(100% - 80px);
    margin: 100px 40px 0; } }
@media (max-width: 700px) {
  .message .companyNav {
    width: calc(100% - 40px);
    margin: 100px 20px 0; }

  .companyNav {
    height: auto;
    flex-direction: column; }
    .companyNav__item {
      width: 100%; }
      .companyNav__item--anchor {
        padding: 20px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; } }
.basicsNav {
  width: 100%;
  height: 80px;
  max-width: 1300px;
  margin: 100px auto 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }
  .basicsNav__item {
    width: 25%;
    margin: 0;
    padding: 0;
    position: relative; }
    .basicsNav__item--anchor {
      width: 100%;
      height: 100%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000 !important;
      transition: 0.1s linear; }
      .basicsNav__item--anchor:hover {
        text-decoration: none;
        background-color: #eef0f6; }
        .basicsNav__item--anchor:hover span {
          padding: 0 0 0 35px;
          background-image: url("../img/common/ar02_blue.svg"); }
      .basicsNav__item--anchor span {
        min-height: 18px;
        padding: 0 0 0 28px;
        display: inline-block;
        background-image: url("../img/common/ar02.svg");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 18px;
        transition: 0.1s linear; }
    .basicsNav__item.active .basicsNav__item--anchor {
      background-color: #eef0f6; }

@media (max-width: 700px) {
  .basicsNav {
    height: auto;
    flex-direction: column; }
    .basicsNav__item {
      width: 100%; }
      .basicsNav__item--anchor {
        padding: 20px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; } }
/* ------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////
ローディング
/////////////////////////////////////////////////////////////////////
------------------------------------------------------------------ */
#is-loading {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30000;
  background-color: #FFF; }

#loading {
  width: 100%;
  height: 100%;
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30001;
  background-color: #003699;
  background-image: radial-gradient(at 66% 47%, rgba(211, 99, 248, 0.34) 0px, transparent 50%), radial-gradient(at 0% 100%, rgba(150, 136, 64, 0.5) 0px, transparent 50%), radial-gradient(at 98% 5%, rgba(0, 0, 0, 0.39) 0px, transparent 50%), radial-gradient(at 97% 95%, #006e99 0px, transparent 50%), radial-gradient(at 6% 10%, rgba(99, 0, 153, 0.6) 0px, transparent 50%); }
  #loading span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    #loading span img {
      display: block; }
      #loading span img.name {
        animation-name: zoomImage;
        animation-duration: 6s;
        animation-timing-function: ease-in-out; }

@keyframes zoomImage {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -moz-transform: scale(3);
    -webkit-transform: scale(3);
    transform: scale(3); } }
