@charset "utf-8";

/* ======================================================
 * layout_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
====================================================== */

@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    background: #fff;
    border-bottom: solid 1px #eaeaea;
  }
  .HeaderBody {
    position: relative;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;/*垂直*/
    width: 100%;
    height: 55px;
    padding: 0 15px;
  }
  
  /* ----- header-identity ----- */
  .header-identity {
    width: 137px;
  }
  
  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Gnav {
    margin-left: auto;
  }
  .GnavBody {
    position: relative;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .GnavBody .menu {
    position: relative;
    margin-left: 30px;
  }
  .GnavBody .menu::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background: #444;
  }
  .GnavBody .menu.open::before {
    background: #fff;
  }
  .GnavBody .menu > a {
    display: block;
    width: 20px;
    height: 14px;
    text-indent: -9999px;
  }
  .GnavBody .menu > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #444;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .GnavBody .menu > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: #444;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .GnavBody .menu.open > a::before {
    top: 6px;
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  .GnavBody .menu.open > a::after {
    bottom: 7px;
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }

  /* ----- gnav-list ----- */
  .gnav-list {
    display: none;
    overflow-y: scroll;
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100% - 55px);
    padding-bottom: 40px;
    background: #f3f3f8;
  }
  .gnav-list a {
    color: #333;
    text-decoration: none;
  }
  /* search */
  .gnav-list > li.search {
    display: none;
  }
  .GnavBody p.search {
    position: fixed;
    top: 18px;
    right: 66px;
    width: 19px;
    height: 18px;
  }
  .GnavBody p.search > a {
    position: relative;
    display: block;
    width: 19px;
    height: 18px;
    text-indent: -9999px;
  }
  .GnavBody p.search > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 18px;
    background: url(/common/img/com_sprite01.png) no-repeat -220px 0;
    background-size: 260px auto;
  }
  /* not search */
  .gnav-list > li.solution,
  .gnav-list > li.project,
  .gnav-list > li.lab,
  .gnav-list > li.corporate,
  .gnav-list > li.ir,
  .gnav-list > li.csr,
  .gnav-list > li.recruit {
    border-top: solid 1px #ccc;
  }
  .gnav-list > li.recruit {
    border-bottom: solid 1px #ccc;
  }
  .gnav-list > li.inquiry,
  .gnav-list > li.english {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .gnav-list > li.solution > a,
  .gnav-list > li.project > a,
  .gnav-list > li.lab > a,
  .gnav-list > li.corporate > a,
  .gnav-list > li.ir > a,
  .gnav-list > li.csr > a,
  .gnav-list > li.recruit > a {
    position: relative; 
    display: block;
    padding: 12px 15px;
    background: #f3f3f8;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .gnav-list > li.solution > a::after,
  .gnav-list > li.project > a::after,
  .gnav-list > li.lab > a::after,
  .gnav-list > li.corporate > a::after,
  .gnav-list > li.ir > a::after,
  .gnav-list > li.csr > a::after,
  .gnav-list > li.recruit > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 21px;
    height: 6px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat -160px -20px;
    background-size: 260px auto;
  }
  .gnav-list > li > a.js-navmenu_trigger {
    position: relative;
  }
  .gnav-list > li > a.js-navmenu_trigger::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 1px;
    background: #014099;
  }
  .gnav-list > li > a.js-navmenu_trigger::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 24px;
    width: 1px;
    height: 20px;
    margin-top: -10px;
    background: #014099;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .gnav-list > li > a.js-navmenu_trigger.is-active::after {
    margin-top: -9px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .gnav-list > li.inquiry {
    margin-top: 40px;
    padding: 0 15px;
  }
  .gnav-list > li.inquiry > a {
    position: relative;
    display: block;
    line-height: 45px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 22px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
  }
  .gnav-list > li.inquiry > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 15px;
    margin-top: -7px;
    background: url(/common/img/com_sprite01.png) no-repeat -160px 0;
    background-size: 260px auto;
  }
  .gnav-list > li.english {
    margin-top: 20px;
    padding: 0 15px;
  }
  .gnav-list > li.english > ul {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;/*水平*/
  }
  .gnav-list > li.english > ul > li {
    width: 50%;
  }
  .gnav-list > li.english > ul > li.jp > * {
    border: solid 1px #ccc;
    border-radius: 22px 0 0 22px;
  }
  .gnav-list > li.english > ul > li.en > * {
    border: solid 1px #ccc;
    border-radius: 0 22px 22px 0;
  }
  .gnav-list > li.english > ul > li a,
  .gnav-list > li.english > ul > li span {
    display: block;
    line-height: 45px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
  }
  .gnav-list > li.english > ul > li a {
    color: #666;
    background: #ccc;
  }
  .gnav-list > li.english > ul > li span {
    color: #333;
    background: #fff;
  }

  /* ----- mega-menu ----- */
  .mega-menu {
    padding: 15px 15px 35px;
    background: #fff;
  }
  .mega-menu a {
    color: #333333;
    text-decoration: none;
  }
  /* menu-head */
  .mega-menu .menu-head .close {
    display: none;
  }

  /* heading */
  .mega-menu .heading01 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .mega-menu .heading01::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 17px;
    margin: 0 10px 2px 0;
    background: #014099;
    vertical-align: middle;
  }
  .mega-menu .heading01 a::after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 6px;
    margin: 0 0 0 10px;
    background: url(/common/img/com_sprite01.png) no-repeat -160px -20px;
    background-size: 260px auto;
    vertical-align: middle;
  }
  .mega-menu .heading02 {
    font-size: 1.5rem;
  }
  .mega-menu .heading02::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    margin: 0 10px 2px 0;
    background: #008cd6;
    vertical-align: middle;
  }
  .mega-menu .heading02 > span {
    font-weight: bold;
  }
  /* menu-layout */
  .mega-menu .menu-layout01 {
    margin-top: 10px;
  }
  .mega-menu .menu-layout02 .layout_item {
    margin-top: 30px;
  }
  .mega-menu .menu-layout08 {
    margin-top: 20px;
  }
  /* icon-list01 */
  .mega-menu .icon-list01 {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .mega-menu .icon-list01 > li {
    width: 47.8%;
    margin-top: 11px;
    margin-right: 4.4%;
  }
  .mega-menu .icon-list01 > li:nth-child(even) {
    margin-right: 0;
  }
  .mega-menu .icon-list01 > li:nth-child(1),
  .mega-menu .icon-list01 > li:nth-child(2) {
    margin-top: 0;
  }
  .mega-menu .icon-list01 > li > a {
    display: block;
    padding: 10px 5px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 22px;
    font-size: 1.3rem;
    text-align: center;
  }
  .mega-menu .icon-list01 > li > a::before {
    content: "";
    display: inline-block;
    margin: 0 5px 0 0;
    vertical-align: middle;
  }
  .mega-menu .icon-list01 > li.keyword01 > a::before {
    width: 20px;
    height: 21px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px 0;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword02 > a::before {
    width: 18px;
    height: 23px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -175px 0;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword03 > a::before {
    width: 18px;
    height: 23px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px -25px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword04 > a::before {
    width: 25px;
    height: 25px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -175px -25px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword05 > a::before {
    width: 25px;
    height: 25px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px -50px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword06 > a::before {
    width: 21px;
    height: 21px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -175px -50px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword07 > a::before {
    width: 23px;
    height: 19px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px -75px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword08 > a::before {
    width: 20px;
    height: 15px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -175px -75px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword09 > a::before {
    width: 31px;
    height: 14px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px -100px;
    background-size: 250px auto;
  }
  .mega-menu .icon-list01 > li.keyword10 > a::before {
    width: 24px;
    height: 28px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -125px -125px;
    background-size: 250px auto;
  }
  /* icon-list02 */
  .mega-menu .menu-layout02 .icon-list02 {
    margin-top: 1.0em;
  }
  .mega-menu .menu-layout03 .icon-list02 {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  .mega-menu .menu-layout03 .icon-list02 > li {
    width: 47.8%;
    margin-right: 4.4%;
  }
  .mega-menu .menu-layout03 .icon-list02 > li:nth-child(even) {
    margin-right: 0;
  }
  .mega-menu .menu-layout03 .icon-list02 > li:nth-child(1),
  .mega-menu .menu-layout03 .icon-list02 > li:nth-child(2) {
    margin-top: 1.5em;
  }
  .mega-menu .menu-layout04 .icon-list02 {
    margin-top: 1.5em;
  }
  .mega-menu .menu-layout06 .icon-list02 {
    margin-top: 1.5em;
  }
  .mega-menu .icon-list02 > li {
    margin-top: 1.0em;
  }
  .mega-menu .icon-list02 > li > a {
    font-size: 1.4rem;
  }
  .mega-menu .icon-list02 > li > a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 6px;
    margin: 0 0 0 5px;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -20px;
    background-size: 260px auto;
    vertical-align: middle;
  }
  .mega-menu .icon-list02 > li > a.a-blank::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 0 0 10px;
    background: url(/common/img/com_sprite01.png) no-repeat -200px -20px;
    background-size: 260px auto;
    vertical-align: middle;
  }
  /* image-link */
  .mega-menu .image-link {
    margin-top: 20px;
  }
  .mega-menu .image-link > a {
    display: block;
  }
  .mega-menu .image-link > a > .text {
    position: relative;
    padding: 12px 0;
    background: #f3f3f8;
    font-size: 1.5rem;
    text-align: center;
  }
  .mega-menu .image-link > a > .text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 14px;
    height: 6px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -20px;
    background-size: 260px auto;
  }
  .mega-menu .image-link > a.a-blank > .text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    background: url(/common/img/com_sprite01.png) no-repeat -200px -20px;
    background-size: 260px auto;
  }
  /* btn-list */
  .mega-menu .btn-list {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .mega-menu .btn-list > li {
    position: relative;
    display: table;
    width: 47.8%;
    margin-top: 10px;
    margin-right: 4.4%;
  }
  .mega-menu .btn-list > li:nth-child(even) {
    margin-right: 0
  }
  .mega-menu .btn-list > li:nth-child(1),
  .mega-menu .btn-list > li:nth-child(2) {
    margin-top: 0;
  }
  .mega-menu .btn-list > li > a {
    display: table-cell;
    height: 45px;
    line-height: 1.2;
    padding: 5px 20px 3px;
    background: #fff;
    font-size: 1.5rem;
    border: solid 1px #ccc;
    border-radius: 22px;
    text-align: center;
    vertical-align: middle;
  }
  .mega-menu .btn-list > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 14px;
    height: 6px;
    margin-top: -5px;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -20px;
    background-size: 260px auto;
  }
  /* banner-link */
  .mega-menu .banner-link {
    margin-top: 20px;
  }
  /* icon-btn-list */
  .mega-menu .icon-btn-list {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .mega-menu .icon-btn-list > li {
    position: relative;
    display: table;
    width: 47.8%;
    height: 45px;
    margin-top: 10px;
    margin-right: 4.4%;
    border: solid 1px #ccc;
    border-radius: 22px;
  }
  .mega-menu .icon-btn-list > li:nth-child(even) {
    margin-right: 0;
  }
  .mega-menu .icon-btn-list > li:nth-child(1),
  .mega-menu .icon-btn-list > li:nth-child(2) {
    margin-top: 0;
  }
  .mega-menu .icon-btn-list > li > a {
    display: table-cell;
    line-height: 1.2;
    font-size: 1.5rem;
    text-align: center;
    vertical-align: middle;
  }
  .mega-menu .icon-btn-list > li > a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
  }
  .mega-menu .icon-btn-list > li.ir01 > a::before {
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -120px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir02 > a::before {
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -171px -120px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir03 > a::before {
    width: 28px;
    height: 22px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -204px -120px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir04 > a::before {
    width: 18px;
    height: 23px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -240px -120px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir05 > a::before {
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -150px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir06 > a::before {
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -171px -150px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir07 > a::before {
    width: 34px;
    height: 22px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -200px -150px;
    background-size: 260px auto;
  }
  .mega-menu .icon-btn-list > li.ir08 > a::before {
    width: 23px;
    height: 25px;
    margin: 0 10px 0 0;
    background: url(/common/img/com_sprite01.png) no-repeat -238px -150px;
    background-size: 260px auto;
  }
  /* image-btn-link */
  .mega-menu .image-btn-link > li {
    position: relative;
    display: table;
    width: 100%;
    margin-top: 25px;
    background: #f3f3f8;
  }
  .mega-menu .image-btn-link > li > a {
    display: table-cell;
    height: 80px;
    padding: 0 20px 0 135px;
    vertical-align: middle;
  }
  .mega-menu .image-btn-link > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 14px;
    height: 6px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat -140px -20px;
    background-size: 260px auto;
  }
  .mega-menu .image-btn-link > li > a > span {
    font-size: 1.5rem;
  }

  /* ----- searchWrap ----- */
  .searchWrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(1,64,153,0.8);
  }
  .searchWrap .search-form {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    padding: 0 15px;
    margin: -140px auto 0;
  }
  .gsc-control-cse {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
  }
  .searchWrap .search-input::-webkit-input-placeholder {
    color: #666;
    font-size: 1.5rem;
    opacity: 1;
  }
  .searchWrap .search-input::-moz-placeholder {
    color: #666;
    font-size: 1.5rem;
    opacity: 1;
  }
  .searchWrap .close {
    width: 66.66%;
    margin: 40px auto 0;
  }
  .searchWrap .close > a {
    position: relative;
    display: block;
    width: 100%;
    background: #fff;
    line-height: 44px;
    border-radius: 22px;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
  }
  .searchWrap .close > a::before {
    position: absolute;
    top: 50%;
    right: 19px;
    width: 16px;
    height: 1px;
    background: #08459c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
  }
  .searchWrap .close > a::after {
    position: absolute;
    top: 50%;
    right: 27px;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    background: #08459c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
  }

  
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    margin-top: 55px;
  }
  .MainBody {
    padding-top: 20px;
  }
  
  /* ----- pageGuide ----- */
  /* breadcrumbs */
  .breadcrumbs {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px 15px;
    font-size: 1.0rem;
  }
  .container[data-wide="true"] .breadcrumbs {
    max-width: 100%;
  }
  .breadcrumbs > li {
    position: relative;
    float: left;
    padding: 0 13px 0 20px;
    color: #666;
  }
  .breadcrumbs > li::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    font-weight: normal !important;
  }
  .breadcrumbs > li:first-child {
    padding-left: 0;
  }
  .breadcrumbs > li:first-child::before {
    display: none;
  }
  .breadcrumbs > li:last-child {
    font-weight: bold;
  }
  .breadcrumbs > li a {
    color: #666;
    text-decoration: none;
  }
  
  /* ----- container ----- */
  .container {
    overflow: hidden;
    padding: 0 15px;
  }
  
  /* sidebar */
  .sidebar {
    display: none;
  }
  
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    background: #fff;
  }

  /* ----- FooterContent01 ----- */
  .Footer > .FooterBody > .FooterContent01 {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    border-bottom: solid 1px #ccc;
  }
  /* menu-btn */
  .Footer > .FooterBody > .FooterContent01 .menu-btn {
    display: none;
  }
  /* search-area */
  .Footer > .FooterBody > .FooterContent01 .search-area {
    display: none;
  }
  /* Pagetop */
  .Footer > .FooterBody > .FooterContent01 .Pagetop {
    width: 40px;
    height: 40px;
  }
  .Footer > .FooterBody > .FooterContent01 .Pagetop > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #bfbfbf;
    text-indent: -9999px;
  }
  .Footer > .FooterBody > .FooterContent01 .Pagetop > a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    margin: -3px 0 0 -7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* ----- FooterContent02 ----- */
  .Footer > .FooterBody > .FooterContent02 {
    width: 100%;
    padding: 5px 15px 0;
    border-top: solid 1px #e5e5e5;
  }
  /* banner-list */
  .Footer > .FooterBody > .FooterContent02 .banner-list {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: solid 1px #e5e5e5;
  }
  .Footer > .FooterBody > .FooterContent02 .banner-list > li {
    width: calc((100% - 15px) / 2);
    margin: 15px 15px 0 0;
  }
  .Footer > .FooterBody > .FooterContent02 .banner-list > li:nth-child(even) {
    margin-right: 0;
  }

  /* ----- FooterContent03 ----- */
  .Footer > .FooterBody > .FooterContent03 {
    padding: 0 15px 20px;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li {
    width: calc((100% - 15px) / 2);
    margin: 12px 15px 0 0;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li:nth-child(even) {
    margin-right: 0;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li > a {
    color: #555;
    font-size: 1.3rem;
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterContent03 .footer-copyright {
    margin-top: 10px;
    color: #555;
    font-size: 1.0rem;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .breadcrumbs::after {
    display: block;
    clear: both;
    content: "";
  }
}


