@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  header

---------------------------------*/
#globalContainer {
  position: relative;
}
@media screen and (min-width: 1025px) {
  header {
    padding-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: .3s;
    width: 100%;
    z-index: 20;
  }
  header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    transition: .3s;
    width: 100%;
  }
  header .wrap #logo {
    width: 90px;
    height: 60px;
  }
  header .wrap #logo a {
    display: block;
    background: url("../images/f_logo.svg") no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  .home header {
    background: #fff;
  }
  .home header .wrap #logo a {
    background: url("../images/logo.svg") no-repeat;
    background-size: contain;
  }
  /*  
  ナビゲーション
---------------------------------*/
  header .wrap #gnav_main #navTgl, header .wrap #gnav_main label {
    display: none;
  }
  header .wrap #gnav_main ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
  }
  header .wrap #gnav_main ul li {
    margin-left: 40px;
  }
  header .wrap #gnav_main ul li a {
    display: block;
    color: #fff;
    font-weight: 500;
    padding: 40px 20px;
    height: 100%;
    position: relative;
  }
  .home header .wrap #gnav_main ul li a {
    color: #333;
  }
  header .wrap #gnav_main ul li a:hover {
    opacity: 1;
  }
  header .wrap #gnav_main ul li a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #2E4FB5;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
  }
  header .wrap #gnav_main ul li.dropdown a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header .wrap #gnav_main ul li.current a::after {
    background: #2E4FB5;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    transform: scale(1, 1);
  }
  header .wrap #gnav_main ul li.contact a {
    background: #2e4fb5;
    color: #fff;
    overflow: hidden;
    padding: 10px 20px;
    position: relative;
    border: 2px solid #2e4fb5;
  }
  header .wrap #gnav_main ul li.contact a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 120%;
    height: 100%;
    background: #fff;
    transform-origin: right top;
    transform: skewX(-30deg) scale(0, 1);
    transition: transform .3s;
  }
  header .wrap #gnav_main ul li.contact a:hover::before {
    transform-origin: left top;
    transform: skewX(-30deg) scale(1, 1);
  }
  header .wrap #gnav_main ul li.contact a:hover {
    color: #2e4fb5;
  }
  header .wrap #gnav_main ul li.contact a span {
    z-index: 4;
    position: relative;
  }
  /*  
  スクロールアクション
---------------------------------*/
  header.is-animation {
    background: #fff;
  }
  header.is-animation .wrap {
    padding: 0 30px;
    width: 100%;
  }
  header.is-animation .wrap #logo a {
    background: url("../images/logo.svg") no-repeat;
    background-size: contain;
  }
  header.is-animation .wrap #gnav_main ul li a {
    color: #333;
    position: relative;
    padding: 25px 20px;
  }
  header.is-animation .wrap #gnav_main ul li.contact a {
    color: #fff;
    padding: 10px 20px;
  }
  header.is-animation .wrap #gnav_main ul li.contact a:hover {
    opacity: 1;
    color: #2e4fb5;
  }
  header #gnav_main .gnav .in_menu {
    display: none;
  }
  .home .header-bg {
    height: 104px;
  }
}
/*  
  1024px〜トグルメニュー（ipad proサイズから）
---------------------------------*/
@media screen and (max-width: 1024px) {
  header {
    position: relative;
    z-index: 20;
  }
  header .wrap {
    padding: 20px 2.5%;
    width: 100%;
  }
  header .wrap #logo {
    width: 90px;
    height: 60px;
  }
  header .wrap #logo a {
    display: block;
    background: url("../images/logo.svg") no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
  }
  header #gnav_main {
    width: 100%;
    display: block;
    z-index: 100;
    position: relative;
  }
  header #gnav_main #navTgl {
    display: none;
  }
  /* 三MENU */
  header #gnav_main .open {
    color: #333;
    cursor: pointer;
    position: fixed;
    top: 14px;
    right: 15px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    background: transparent;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  header #gnav_main .open::after {
    content: 'MENU';
    font-size: 10px;
    font-size: 0.625em;
    line-height: 1;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
  }
  header #gnav_main .open span {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2.2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #333;
  }
  header #gnav_main .open span:nth-of-type(1) {
    top: 15px;
  }
  header #gnav_main .open span:nth-of-type(2) {
    top: 25px;
  }
  header #gnav_main .open span:nth-of-type(3) {
    top: 35px;
  }
  /* ×CLOSE */
  header #gnav_main #navTgl:checked + .open::after {
    color: #333;
    content: 'CLOSE';
    font-size: 10px;
    font-size: 0.625em;
    line-height: 1;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
  }
  header #gnav_main #navTgl:checked + .open span {
    background-color: #333;
  }
  header #gnav_main #navTgl:checked + .open span:nth-of-type(1) {
    display: none;
  }
  header #gnav_main #navTgl:checked + .open span:nth-of-type(2) {
    width: 30px;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 25px;
    right: 0;
  }
  header #gnav_main #navTgl:checked + .open span:nth-of-type(3) {
    width: 30px;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 25px;
    right: 0;
  }
  /* スクロールしたら黒くする */
  header.is-animation #gnav_main .open {
    color: #333;
  }
  header.is-animation #gnav_main .open span {
    background-color: #333;
  }
  header #gnav_main label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
  }
  header #gnav_main .close {
    pointer-events: none;
    z-index: 6;
    width: 100%;
    transition: background-color .3s;
  }
  header #navTgl:checked ~ .close {
    height: 100vh;
    position: fixed;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.2);
  }
  /* :::::: drawer menu :::::: */
  header #gnav_main .gnav {
    z-index: 7;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
    display: none;
  }
  header #gnav_main .gnav::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  header #gnav_main #navTgl:checked ~ .gnav {
    display: block;
    /*-webkit-transform: translateY(0);
  transform: translateY(0);*/
    /*opacity: 1;*/
  }
  header #gnav_main #navTgl:checked ~ .gnav {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  header #gnav_main .gnav .pc_none {
    display: block;
  }
  header #gnav_main .gnav ul {
    padding: 70px 0 0;
    list-style-type: none;
    display: block;
  }
  header #gnav_main .gnav ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  header #gnav_main .gnav ul li a {
    display: block;
    width: 100%;
    padding: 0.3em 1em;
    color: #4E4947;
    overflow: hidden;
    position: relative;
    font-size: 1.05em;
    line-height: 45px;
    margin-right: 10px;
  }
  header #gnav_main .gnav ul li.current a {
    /*font-weight: 600;*/
  }
  header #gnav_main .gnav ul li a:hover {
    opacity: 1;
  }
  /* ドロップダウン */
  header #gnav_main .gnav ul li.dropdown {
    position: relative;
  }
  header #gnav_main .gnav ul li.dropdown .ac-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  header #gnav_main .gnav ul li.dropdown .ac-btn::before {
    content: '';
    width: 14px;
    height: 10px;
    background: url("../images/ac_btn.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    right: 20px;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  header #gnav_main .gnav ul li.dropdown .ac-btn.active::before {
    transform: rotate(-180deg);
  }
  /* 子カテゴリー */
  header #gnav_main .gnav .in_menu {
    padding: 0;
    display: none;
  }
  header #gnav_main .gnav .in_menu ul.child {
    padding: 0;
  }
  header #gnav_main .gnav ul.child li {
    /*border-top: 1px dotted #ccc;*/
    border-bottom: none;
    margin-bottom: 0;
    background: rgba(235, 234, 229, 0.9);
  }
  header #gnav_main .gnav ul.child li a {
    line-height: 35px;
    margin-right: 10px;
    padding-left: 2.2em;
    font-size: .9em;
    position: relative;
  }
  header #gnav_main .gnav ul.child li a::before {
    content: '';
    width: 7px;
    height: 10px;
    background: url("../images/ac_child.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 20px;
    bottom: 0;
    margin: auto;
  }
} /* トグルメニューend */
@media screen and (max-width: 580px) { /* -- SP -- */
  header .wrap {
    padding: 25px 5%;
  }
  header .wrap #logo {
    width: 110px;
  }
} /* SPend */
@keyframes fade-in {
  0% {
    opacity: 0;
    /*transform: translate3d(0, 50%, 0);*/
  }
  100% {
    opacity: 1;
    /*transform: translate3d(0, 0, 0);*/
  }
}
/*---------------------------------

  ページタイトル

---------------------------------*/
#headttl {
  position: relative;
}
#headttl .wrap {
  padding: 140px 0 10px;
  margin: 0 auto 100px;
  max-width: 1200px;
  width: 90%;
  position: relative;
}
#headttl .ttl {
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.6;
}
#headttl .ttl span {
  font-size: 45px;
  font-weight: 500;
  font-family: 'Noto Serif JP';
}
#headttl .ttl h1 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 10px;
  padding-left: 60px;
  position: relative;
}
#headttl .ttl h1::before {
  background: #fff;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  height: 2px;
  width: 50px;
}
#headttl .bg {
  background: #aaa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  height: 520px;
  width: 100%;
  z-index: -1;
  transition: all .3s;
}
@media screen and (max-width: 1200px) {
  #headttl .bg {
    height: 480px;
  }
}
@media screen and (max-width: 1024px) {
  #headttl .bg {
    height: 400px;
  }
}
@media screen and (max-width: 896px) {
  #headttl .bg {
    height: 350px;
  }
  #headttl .wrap {
    padding: 30px 0 10px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 600px) {
  #headttl .bg {
    height: 330px;
  }
}
@media screen and (max-width: 480px) {
  #headttl {
    overflow: hidden;
  }
  #headttl .wrap {
    padding: 20px 0 10px;
    margin: 0 auto;
  }
}
/*
  画像アニメーション
---------------------------------*/
#headttl figure {
  width: 90%;
  position: absolute;
  right: 50px;
  top: 170px;
}
#headttl .img-anime {
  width: 50%;
  margin-left: auto;
  overflow: hidden;
  transform: skewX(-20deg);
}
#headttl .img-anime img {
  width: 100%;
  transform: skewX(20deg) scale(1.3);
}
#headttl .img-anime::before {
  animation: img-anime 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 1;
}
@keyframes img-anime {
  100% {
    transform: translateX(100%);
  }
}
@media screen and (max-width: 896px) {
  #headttl figure {
    width: 115%;
    position: static;
  }
  #headttl .img-anime {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  #headttl figure {
    width: 130%;
  }
  #headttl .img-anime {
    width: 80%;
  }
}
/*
  パンくず
---------------------------------*/
#breadlist {
  font-size: 14px;
  list-style: none;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #fff;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: #fff;
}
/*---------------------------------

  各ページ共通

---------------------------------*/
.page .content_inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
.page .inner_r_w {
  padding-right: 200px;
}
.page section {
  margin: 0 0 80px;
}
.page section:last-child {
  padding-bottom: 80px;
  margin: 0;
}
.page section .txt_wrap {
  margin: 0 auto;
  max-width: 900px;
  width: 90%;
}
@media screen and (max-width: 480px) {
  .page .inner_r_w {
    padding-right: 0;
  }
  .page section:last-child {
    padding-bottom: 50px;
    margin: 0;
  }
}
/*
  h2
---------------------------------*/
.page section h2.ttl {
  color: #2E4FB5;
  font-size: 30px;
  font-family: 'Noto Serif JP';
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  margin: 30px 0 50px;
}
.page section h2.ttl span {
  font-size: 14px;
  font-weight: 300;
  margin-left: 1.5em;
}
@media screen and (max-width: 480px) {
  .page section h2.ttl {
    font-size: 25px;
    margin: 20px 0 40px;
  }
  .page section h2.ttl span {
    display: block;
    margin-left: 0;
  }
}
/*
  h3
---------------------------------*/
.page section h3.ttl {
  color: #333;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 30px;
  padding: 0;
  position: relative;
}
.page section h3.ttl span {
  color: #2E4FB5;
  font-size: 14px;
  font-weight: 300;
  margin-left: 1em;
}
/*
  テキスト・写真
---------------------------------*/
.page section .txt {
  line-height: 1.9;
  text-align: justify;
  word-break:break-all;
}
.page section figure {
  width: 100%;
}
.page section figure img {
  width: 100%;
  vertical-align: bottom;
}
/*
  テキストと写真の並び
---------------------------------*/
.page section .img_txt_outer {
  display: flex;
  justify-content: space-between;
}
.page section .img_txt_outer figure {
  margin-right: 50px;
  width: 43%;
}
.page section .img_txt_outer .txt_wrap {
  margin: 0 0 50px;
  width: 52%;
}
@media screen and (max-width: 896px) {
  .page section .img_txt_outer {
    display: block;
  }
  .page section .img_txt_outer figure {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .page section .img_txt_outer .txt_wrap {
    margin: 0 0 30px;
    width: 100%;
  }
}
/*
  ul
---------------------------------*/
.page section ul {
  list-style: none;
  margin-top: 30px;
}
.page section ul li {
  padding: 0 0 0 20px;
  position: relative;
}
.page section ul li + li {
  margin-top: 15px;
}
.page section ul li::before {
  background: #6D7385;
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 10px;
  height: 2px;
}
/*---------------------------------

  各ページ共通最初のブロック

---------------------------------*/
.page section.first_block {
  margin: 300px auto 100px !important;
  max-width: 1200px;
  width: 90%;
}
@media screen and (max-width: 1200px) {
  .page section.first_block {
    margin-top: 260px !important;
  }
}
@media screen and (max-width: 1024px) {
  .page section.first_block {
    margin-top: 210px !important;
  }
}
@media screen and (max-width: 896px) {
  .page section.first_block {
    margin-top: 80px !important;
  }
}
@media screen and (max-width: 600px) {
  .page section.first_block {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 480px) {
  .page section.first_block {
    margin: 50px auto 70px !important;
  }
}
/*---------------------------------

  レイアウト

---------------------------------*/
/*
  サイドバーなし
---------------------------------*/
.page #mainContainer {
  margin: 30px auto 0;
}
/*---------------------------------
  サイドバーあり
---------------------------------*/
.page.side #mainContainer {
  position: relative;
}
/*  
  内容
---------------------------------*/
.page.side #mainContainer .content_wrapper {
  margin: 0;
}
.page.side #mainContainer .content_wrapper section.content_box {
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 480px) {
  .page.side #mainContainer .content_wrapper section.content_box {
    padding-top: 50px;
    margin-top: -50px;
  }
}
/*  
  サイドバー
---------------------------------*/
.page #mainContainer .side_block {
  position: absolute;
  top: 0;
  right: 10%;
  height: 100%;
  width: 200px;
  z-index: 1;
  transition: all .3s;
}
@media screen and (max-width: 1660px) {
  .page #mainContainer .side_block {
    right: 5%;
  }
}
@media screen and (max-width: 1280px) {
  .page #mainContainer .side_block {
    right: 2.5%;
  }
}
@media screen and (max-width: 980px) {
  .page #mainContainer .side_block {
    right: 0%;
  }
}
.page #mainContainer .sideber {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 100px;
  border-left: 3px solid #2E4FB5;
}
.page #mainContainer .sideber ul {
  list-style: none;
  min-width: 180px;
}
.page #mainContainer .sideber ul li {
  padding-left: 20px;
}
.page #mainContainer .sideber ul li:last-child {
  border-bottom: none;
}
.page #mainContainer .sideber ul li > span, .page #mainContainer .sideber ul a {
  color: #bbb;
  display: block;
  font-size: .9em;
  font-weight: 500;
  padding: 10px 0;
}
.page #mainContainer .sideber ul li a:hover {
  opacity: 1;
  color: #2E4FB5;
}
/* 現在地 */
.page #mainContainer .sideber ul li a.current {
  color: #2E4FB5;
}
/* child */
.page #mainContainer .sideber ul li.link_none {
  padding-left: 0;
}
.page #mainContainer .sideber ul li > span {
  background: #2E4FB5;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}
.page #mainContainer .sideber ul li > ul.child li {
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  .page #mainContainer .side_block {
    display: none;
  }
}
/*  
  実績&お問い合わせ　リンク
---------------------------------*/
.content_nav_block {
  display: flex;
}
.content_nav_block > div {
  background: #333;
  width: 50%;
}
.content_nav_block > div a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 60px 30px 80px;
  height: 100%;
}
.content_nav_block > div a .s_ttl {
  font-size: .85em;
  font-weight: 300;
}
.content_nav_block > div a .ttl {
  font-size: 1.6em;
  font-weight: 500;
  margin: 10px 0 20px;
}
.content_nav_block > div a .txt {
  font-size: .9em;
  font-weight: 300;
  margin-bottom: 50px;
}
.content_nav_block > div a .btn {
  border: 1px solid;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 30px 13px;
}
/* 背景色 */
.content_nav_block .case_block a {
  background: #2E4FB5;
}
.content_nav_block .contact_block a {
  background: #2E3192;
}
@media screen and (max-width: 480px) {
  .content_nav_block {
    display: block;
  }
  .content_nav_block > div {
    width: 100%;
  }
  .content_nav_block > div a {
    padding: 30px 30px 50px;
    height: auto;
  }
}
/*
  ページャー
---------------------------------*/
.pager {
  margin: 50px auto 0;
  max-width: 800px;
}
.pager ul#info_number {
  list-style: none;
  font-size: 0;
  letter-spacing: -.4em;
  text-align: center;
  border: 0;
  display: inline-flex;
  justify-content: center;
  width: 100%;
}
.pager ul#info_number li {
  width: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  margin: 0 5px;
  background: #fff;
  border: 0;
}
.pager ul#info_number li .page-numbers {
  text-align: center;
  min-width: 50px;
  min-height: 50px;
  line-height: 50px;
  display: block;
  color: #004797;
}
.pager ul#info_number li .current {
  color: #fff;
  background: #004797;
}
.pager ul#info_number li .prev, .pager ul#info_number li .next {
  padding: 0 10px;
}
.pager ul#info_number li a:hover {
  opacity: 1;
  color: #fff;
  background: #004797;
}
@media screen and (max-width: 480px) {
  .pager {
    margin: 10px auto 0;
  }
  .pager ul#info_number li {
    margin: 0;
  }
  .pager ul#info_number li .page-numbers {
    min-width: 40px;
    min-height: 40px;
    line-height: 40px;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  width: 100%;
}
#page-top a {
  background: #f2f2f2;
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 50px;
  text-align: center;
  display: block;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 20px;
  height: 14px;
  background: url("../images/pagetop.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #ccc;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
/*---------------------------------

	footer

---------------------------------*/
footer .ftop {
  background: #384e85;
  padding: 80px 0;
}
footer .ftop .wrap {
  margin: 0 auto;
  max-width: 1120px;
  width: 90%;
}
footer .ftop .wrap .logo {
  width: 120px;
  margin: 0 auto 50px;
}
footer .ftop .fnav__wrap {
  display: flex;
  justify-content: space-between;
}
footer .ftop .fnav__wrap dl {
  width: 23%;
}
footer .ftop .fnav__wrap dl dt {
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
footer .ftop .fnav__wrap dl dt::before, footer .ftop .fnav__wrap dl dt::after {
  content: '';
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .ftop .fnav__wrap dl dt::before {
  background: #b3b3b3;
  width: 100%;
}
footer .ftop .fnav__wrap dl dt::after {
  background: #e6e6e6;
  width: 30px;
}
footer .ftop .fnav__wrap dl dd {
  font-size: 14px;
  margin-top: 10px;
}
footer .ftop .fnav__wrap dl dt a, footer .ftop .fnav__wrap dl dd a {
  color: #fff;
  display: block;
  position: relative;
}
footer .ftop .fnav__wrap dl dt a::after, footer .ftop .fnav__wrap dl dd a::after {
  content: '';
  width: 7px;
  height: 14px;
  background: url("../images/arr.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
footer .ftop .fnav__wrap dl dt a:hover, footer .ftop .fnav__wrap dl dd a:hover {
  color: #ccc;
  opacity: 1;
}
footer .ftop .fnav__wrap dl dt a:hover::after, footer .ftop .fnav__wrap dl dd a:hover::after {
  right: 10px;
  opacity: 1;
}
/*
	
---------------------------------*/
footer .fbottom {
  background: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}
footer .fbottom .license {
  order: 1;
  width: 130px;
}
footer .fbottom .license img {
  width: 100%;
  vertical-align: bottom;
}
footer .fbottom ul {
  list-style: none;
  margin-bottom: 30px;
}
footer .fbottom ul li {
  display: inline-block;
}
footer .fbottom ul li a {
  color: #4d4d4d;
  font-size: 14px;
}
footer .fbottom ul li::after {
  content: '|';
  color: #ccc;
  margin: 0 1.5em;
}
footer .fbottom ul li:last-child::after {
  content: none;
}
footer .fbottom .copylight small {
  font-size: 12px;
  letter-spacing: 2px;
}
@media screen and (max-width: 896px) {
  footer .ftop {
    padding: 50px 0;
  }
  footer .ftop .wrap .logo {
    margin: 0 auto;
  }
  footer .ftop .fnav__wrap {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  footer .fbottom {
    display: block;
    padding: 10px 10px;
    text-align: center;
  }
  footer .fbottom .license {
    width: 130px;
    margin: 20px auto;
  }
}