@charset "utf-8";

/* ======================================================
 * layout_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 2px 0px #ccc;
    border-bottom: solid 1px #eaeaea;
  }
  .HeaderBody {
    position: relative;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 81px;
    padding: 0 4%;
  }
  .Header.is-fixed .HeaderBody {
    height: 51px;
  }
  
  /* ----- header-identity ----- */
  .header-identity {
    width: 198px;
  }
  .Header.is-fixed .header-identity {
    width: 148px;
  }
  
  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Gnav {
    -webkit-flex: 1;
    flex: 1;
    margin-left: auto;
  }
  .GnavBody .menu {
    display: none;
  }
  
  /* ----- gnav-list ----- */
  .gnav-list {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: 100%;
  }
  .gnav-list > li {
    position: relative;
    display: block;
    table-layout: fixed;
    height: 80px;
    margin-left: 1.9%;
  }
  .Header.is-fixed .gnav-list > li {
    height: 50px;
  }
  .gnav-list > li.inquiry {
    margin-left: 2.7%;
  }
  .gnav-list > li.english .jp {
    display: none;
  }
  .gnav-list > li.english,
  .gnav-list > li.search {
    margin-left: 3.2%;
  }
  .gnav-list > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #008cd6;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .gnav-list > li:hover::after,
  .gnav-list > li.current::after {
    height: 5px;
  }
  .gnav-list > li.inquiry:hover::after,
  .gnav-list > li.english:hover::after,
  .gnav-list > li.search:hover::after {
    display: none;
  }
  .gnav-list > li > a {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #666;
    font-size: 0.9375vw;/*1.8rem*/
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
  }
  .gnav-list > li.inquiry > a,
  .gnav-list > li.search > a {
    position: relative;
    display: block;
    text-indent: -9999px;
  }
  .gnav-list > li.inquiry > a {
    width: 27px;
    height: 20px;
    margin-top: 30px;
  }
  .Header.is-fixed .gnav-list > li.inquiry > a {
    margin-top: 15px;
  }
  .gnav-list > li.inquiry > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 20px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 0;
  }
  .gnav-list > li.english .en > a {
    position: relative;
    display: block;
    /*width: 24px;
    height: 24px;*/
    line-height: 24px;
    margin-top: 28px;
    padding-left: 33px;
    font-size: 0.72917vw;/*1.4rem*/
    text-decoration: none;
  }
  .Header.is-fixed .gnav-list > li.english .en > a {
    margin-top: 15px;
  }
  .gnav-list > li.english .en > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(/common/img/com_sprite01.png) no-repeat -80px 0;
  }
  .gnav-list > li.search > a {
    width: 25px;
    height: 24px;
    margin-top: 28px;
  }
  .Header.is-fixed .gnav-list > li.search > a {
    margin-top: 15px;
  }
  .gnav-list > li.search > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 24px;
    background: url(/common/img/com_sprite01.png) no-repeat -160px 0;
  }
  .gnav-list > li.inquiry > a:hover::before {
    background-position: -40px 0;
  }
  .gnav-list > li.english .en > a:hover::before {
    background-position: -120px 0;
  }
  .gnav-list > li.search > a:hover::before {
    background-position: -200px 0;
  }

  /* ----- mega-menu ----- */
  .mega-menu {
    display: none;
    position: fixed;
    top: 81px;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 30px 48px;
    background: #f3f3f8;
  }
  .Header.is-fixed .mega-menu {
    top: 51px;
  }
  .mega-menu a {
    color: #333333;
    text-decoration: none;
  }
  .mega-menu a:hover {
    color: #014099;
    text-decoration: underline;
  }
  /* menu-head */
  .mega-menu .menu-head {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .mega-menu .menu-head .close {
    font-size: 0.9375vw;
  }
  .mega-menu .menu-head .close a {
    position: relative;
    padding-right: 23px;
  }
  .mega-menu .menu-head .close a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 1px;
    background: #014099;
    transform: rotate(45deg);
  }
  .mega-menu .menu-head .close a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 1px;
    background: #014099;
    transform: rotate(-45deg);
  }
  /* heading */
  .mega-menu .heading01 {
    font-size: 1.04167vw;
    font-weight: bold;
  }
  .mega-menu .heading01::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    margin: 0 20px 2px 0;
    background: #014099;
    vertical-align: middle;
  }
  .mega-menu .heading01 a::after {
    content: "";
    display: inline-block;
    width: 23px;
    height: 7px;
    margin: 0 0 0 10px;
    background: url(/common/img/com_sprite01.png) no-repeat -40px -40px;
    vertical-align: middle;
  }
  .mega-menu .heading02 {
    font-size: 0.9375vw;
  }
  .mega-menu .heading02::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    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: 20px;
  }
  .mega-menu .menu-layout02 {
    -webkit-display: flex;
    display: flex;
    margin-top: 20px;
  }
  .mega-menu .menu-layout02 .layout_item:nth-child(1) {
    width: 34%;
    padding-right: 1.7%;
  }
  .mega-menu .menu-layout02 .layout_item:nth-child(2) {
    width: 34%;
    padding-right: 1.7%;
  }
  .mega-menu .menu-layout02 .layout_item:nth-child(3) {
    width: 17%;
    padding-right: 1.7%;
  }
  .mega-menu .menu-layout02 .layout_item:nth-child(4) {
    width: 15%;
  }
  .mega-menu .menu-layout03 {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 15px;
  }
  .mega-menu .menu-layout04 {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 15px;
    padding-right: 3.34%;
  }
  .mega-menu .menu-layout05,
  .mega-menu .menu-layout06,
  .mega-menu .menu-layout07 {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin-top: 15px;
  }
  /* icon-list01 */
  .mega-menu .icon-list01 {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .mega-menu .icon-list01 > li {
    width: 19.0%;
    margin-top: 5px;
    margin-right: 1%;
  }
  .mega-menu .icon-list01 > li:last-child {
    margin-right: 0;
  }
  .mega-menu .icon-list01 > li > a {
    display: block;
    line-height: 50px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 25px;
    font-size: 0.8vw;
    text-align: center;
  }
  .mega-menu .icon-list01 > li > a::before {
    content: "";
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
  .mega-menu .icon-list01 > li.keyword01 > a::before {
    width: 24px;
    height: 26px;
    background: url(/solution/img/solution_sprite01.png) no-repeat 0 0;
  }
  .mega-menu .icon-list01 > li.keyword02 > a::before {
    width: 23px;
    height: 29px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -100px 0;
  }
  .mega-menu .icon-list01 > li.keyword03 > a::before {
    width: 23px;
    height: 29px;
    background: url(/solution/img/solution_sprite01.png) no-repeat 0 -50px;
  }
  .mega-menu .icon-list01 > li.keyword04 > a::before {
    width: 30px;
    height: 30px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -100px -50px;
  }
  .mega-menu .icon-list01 > li.keyword05 > a::before {
    width: 30px;
    height: 30px;
    background: url(/solution/img/solution_sprite01.png) no-repeat 0 -100px;
  }
  .mega-menu .icon-list01 > li.keyword06 > a::before {
    width: 26px;
    height: 26px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -100px -100px;
  }
  .mega-menu .icon-list01 > li.keyword07 > a::before {
    width: 31px;
    height: 26px;
    background: url(/solution/img/solution_sprite01.png) no-repeat 0 -150px;
  }
  .mega-menu .icon-list01 > li.keyword08 > a::before {
    width: 24px;
    height: 19px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -100px -150px;
  }
  .mega-menu .icon-list01 > li.keyword09 > a::before {
    width: 36px;
    height: 17px;
    background: url(/solution/img/solution_sprite01.png) no-repeat 0 -200px;
  }
  .mega-menu .icon-list01 > li.keyword10 > a::before {
    width: 30px;
    height: 35px;
    background: url(/solution/img/solution_sprite01.png) no-repeat -100px -200px;
  }

  /* icon-list02 */
  .mega-menu .menu-layout02 .icon-list02 {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5em;
  }
  .mega-menu .menu-layout02 .icon-list02[data-row-pc]:not([data-row-pc="1"]):not([data-row-pc="auto"]) > * {
    margin-top: 0.5em;
  }
  .mega-menu .menu-layout02 .icon-list02 > li {
    margin-top: 0.5em;
    line-height: 1.3;
  }
  .mega-menu .menu-layout02 .icon-list02[data-row-pc="1"] > li:first-child {
    margin-top: 0;
  }
  .mega-menu .icon-list02 > li > a {
    font-size: 0.83333vw;
  }
  .mega-menu .icon-list02 > li > a::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 7px;
    margin: 0 0 0 10px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
    vertical-align: middle;
  }
  .mega-menu .icon-list02 > li > a.a-blank::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 0 0 10px;
    background: url(/common/img/com_sprite01.png) no-repeat -80px -40px;
    vertical-align: middle;
  }
  .mega-menu .menu-layout03 .icon-list02 {
    width: 23.56%;
  }
  .mega-menu .menu-layout03 .icon-list02 > li {
    margin-top: 12px;
  }
  .mega-menu .menu-layout03 .icon-list02 > li:first-child {
    margin-top: 0;
  }
  .mega-menu .menu-layout04 .icon-list02 {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex: 1;
    flex: 1;
  }
  .mega-menu .menu-layout04 .icon-list02 > li {
    margin-top: 12px;
  }
  .mega-menu .menu-layout04 .icon-list02 > li:nth-child(1),
  .mega-menu .menu-layout04 .icon-list02 > li:nth-child(2) {
    margin-top: 0;
  }
  .mega-menu .menu-layout04 .icon-list02 > li:nth-child(odd) {
    width: 58%;
    padding-right: 1.9%;
  }
  .mega-menu .menu-layout04 .icon-list02 > li:nth-child(even) {
    width: 42%;
  }
  .mega-menu .menu-layout06 .icon-list02 + .icon-list02 {
    width: 23.46%;
    max-width: 400px;
    margin-left: 2.04%;
  }
  .mega-menu .menu-layout06 .icon-list02 > li {
    margin-top: 13px;
  }
  .mega-menu .menu-layout06 .icon-list02 > li:first-child {
    margin-top: 0;
  }
  .mega-menu .menu-layout08 .icon-list02 > li {
    margin-top: 15px;
  }
  /* image-link */
  .mega-menu .menu-layout03 .image-link {
    width: 23.46%;/*414px*/
    max-width: 400px;
    margin-right: 2.49%;/*44px*/
  }
  .mega-menu .menu-layout04 .image-link {
    width: 23.46%;
    max-width: 400px;
    margin-right: 1.98%;
  }
  .mega-menu .menu-layout05 .image-link {
    width: 17.23%;
    max-width: 400px;
    margin-right: 2.04%;
  }
  .mega-menu .menu-layout06 .image-link,
  .mega-menu .menu-layout07 .image-link {
    width: 23.46%;
    max-width: 400px;
    margin-right: 2.04%;
  }
  .mega-menu .image-link > a {
    display: block;
  }
  .mega-menu .image-link > a > .text {
    position: relative;
    line-height: 50px;
    background: #fff;
    font-size: 0.9375vw;
    text-align: center;
  }
  .mega-menu .image-link > a > .text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 7px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
  }
  .mega-menu .image-link > a.a-blank > .text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 13px;
    margin-top: -6px;
    background: url(/common/img/com_sprite01.png) no-repeat -120px -40px;
  }
  /* btn-list */
  .mega-menu .btn-list {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 48%;/*848px*/
    margin-right: 2.49%;/*44px*/
  }
  .mega-menu .btn-list > li {
    width: 48.8%;
    height: 52px;
    margin-top: 15px;
    margin-right: 2.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 {
    position: relative;
    display: block;
    line-height: 50px;
    background: #fff;
    font-size: 0.9vw;
    border: solid 1px #ccc;
    border-radius: 25px;
    text-align: center;
  }
  .mega-menu .btn-list > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 7px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
  }
  /* banner-link */
  .mega-menu .banner-link {
    width: 41.95%;
  }
  /* icon-btn-list */
  .mega-menu .icon-btn-list {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-flex: 1;
    flex: 1;
    margin-top: -20px;
  }
  .mega-menu .icon-btn-list > li {
    position: relative;
    display: table;
    width: 23.26%;/*201px*/
    height: 110px;
    margin-top: 20px;
    margin-right: 2.31%;/*20px*/
    border: solid 1px #ccc;
    border-radius: 3px;
  }
  .mega-menu .icon-btn-list > li:nth-child(4n) {
    margin-right: 0;
  }
  .mega-menu .icon-btn-list > li::before {
    content: "";
    position: absolute;
    left: 50%;
  }
  .mega-menu .icon-btn-list > li.ir01::before {
    top: 15px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -160px;
  }
  .mega-menu .icon-btn-list > li.ir02::before {
    top: 18px;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    background: url(/common/img/com_sprite01.png) no-repeat -54px -160px;
  }
  .mega-menu .icon-btn-list > li.ir03::before {
    top: 17px;
    width: 47px;
    height: 37px;
    margin-left: -23px;
    background: url(/common/img/com_sprite01.png) no-repeat -110px -160px;
  }
  .mega-menu .icon-btn-list > li.ir04::before {
    top: 16px;
    width: 30px;
    height: 38px;
    margin-left: -15px;
    background: url(/common/img/com_sprite01.png) no-repeat -185px -160px;
  }
  .mega-menu .icon-btn-list > li.ir05::before {
    top: 10px;
    width: 41px;
    height: 42px;
    margin-left: -20px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -200px;
  }
  .mega-menu .icon-btn-list > li.ir06::before {
    top: 15px;
    width: 39px;
    height: 40px;
    margin-left: -20px;
    background: url(/common/img/com_sprite01.png) no-repeat -54px -200px;
  }
  .mega-menu .icon-btn-list > li.ir07::before {
    top: 14px;
    width: 55px;
    height: 36px;
    margin-left: -27px;
    background: url(/common/img/com_sprite01.png) no-repeat -110px -200px;
  }
  .mega-menu .icon-btn-list > li.ir08::before {
    top: 14px;
    width: 36px;
    height: 41px;
    margin-left: -18px;
    background: url(/common/img/com_sprite01.png) no-repeat -185px -200px;
  }
  .mega-menu .icon-btn-list > li::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 10px;
    width: 18px;
    height: 7px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
  }
  .mega-menu .icon-btn-list > li > a {
    display: table-cell;
    padding: 65px 0 0;
    line-height: 1.3;
    background: #fff;
    font-size: 0.9375vw;
    text-align: center;
    vertical-align: top;
  }
  .mega-menu .icon-btn-list > li.ir05 > a {
    padding: 55px 0 0;
  }
  /* image-btn-link */
  .mega-menu .image-btn-link {
    width: 23.46%;
    margin-right: 2.15%;
  }
  .mega-menu .image-btn-link > li {
    position: relative;
    display: table;
    width: 100%;
    margin-top: 20px;
    background: #fff;
  }
  .mega-menu .image-btn-link > li:first-child {
    margin-top: 0;
  }
  .mega-menu .image-btn-link > li > a {
    display: table-cell;
    vertical-align: middle;
  }
  .mega-menu .image-btn-link > li > a::before {
    content: "";
    display: block;
    padding-top: 24.15%;
  }
  .mega-menu .image-btn-link > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 7px;
    margin-top: -3px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
  }
  .mega-menu .image-btn-link > li > a > span {
    position: absolute;
    top: 50%;
    left: 41%;
    margin-top: -0.7em;
    font-size: 0.9375vw;
  }

  /* ----- 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%;
    left: 50%;
    width: 1000px;
    margin-top: -90px;
    margin-left: -500px;
  }
  .gsc-control-cse {
    width: 1000px;
    background: #fff;
    padding: 20px 20px;
    border: none;
    border-radius: 3px;
  }
  .searchWrap .search-input::-webkit-input-placeholder {
    color: #666;
    font-size: 2.2rem;
    opacity: 1;
  }
  .searchWrap .search-input::-moz-placeholder {
    color: #666;
    font-size: 2.2rem;
    opacity: 1;
  }
  .searchWrap .close {
    width: 263px;
    margin: 50px auto 0;
  }
  .searchWrap .close > a {
    position: relative;
    background: #fff;
    line-height: 50px;
    border-radius: 25px;
    font-size: 1.8rem;
    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 {
    overflow: hidden;
    margin-top: 81px;
  }
  .Header.is-fixed .Main {
    margin-top: 51px;
  }
  .container[data-wide="true"] {
    max-width: 100%;
  }
  .MainBody {
    background: #e5f6ff;
    background: -moz-linear-gradient(top, #e5f6ff 0, #f5fcff 45px, #ffffff 90px);
    background: -webkit-linear-gradient(top, #e5f6ff 0,#f5fcff 45px,#ffffff 90px);
    background: linear-gradient(to bottom, #e5f6ff 0,#f5fcff 45px,#ffffff 90px);
  }
  
  /* ----- pageGuide ----- */
  /* breadcrumbs */
  .breadcrumbs {
    width: 100%;
    padding: 15px 4%;
  }
  .container[data-wide="true"] .breadcrumbs {
    max-width: 100%;
  }
  .breadcrumbs > li {
    position: relative;
    float: left;
    padding: 0 15px 0 25px;
    color: #666;
    font-size: 0.72917vw;
  }
  .breadcrumbs > li::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    color: #888;
    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;
  }
  
  /* ----- pageHead ----- */
  .pageHead {
    margin-top: 20px;
  }
  .pageHead .heading-lv1 {
    padding: 0 4%;
  }
  
  /* ----- container ----- */
  .container {
    max-width: 1200px;
    margin: 20px auto 0;
  }
  /* contents */
  .contents {
    width: 100%;
    padding-bottom: 50px;
  }
  .contents > *:first-child,
  .contents > *:first-child > [class*="heading-lv"] {
    margin-top: 0 !important;
  }
  [data-sidebar="true"] .contents {
    float: left;
    width: 76%;
  }
  /* sidebar */
  [data-sidebar="true"] .sidebar {
    float: right;
    width: 20%;
  }
  .sidebar {
    margin-bottom: 2em;
    background: #fff;
    box-shadow: -2px -2px 3px rgba(0,0,0,0.1);
  }
  .sidebar .sidebar-nav a {
    text-decoration: none;
  }
  .sidebar .sidebar-nav .nav_category {
    margin: 18px 0;
  }
  .sidebar .sidebar-nav .nav_head > a {
    position: relative;
    display: block;
    padding: 32px 15px 30px 28px;
    background: #014099;
    background: -moz-linear-gradient(left, #014099 0%, #008cd6 100%);
    background: -webkit-linear-gradient(left, #014099 0%,#008cd6 100%);
    background: linear-gradient(to right, #014099 0%,#008cd6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#014099', endColorstr='#008cd6',GradientType=1 );
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
  }
  .sidebar .sidebar-nav .nav_head > a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 16px;
    height: 22px;
    margin-top: -11px;
    background: url(/common/img/com_sprite01.png) no-repeat -80px -440px;
  }
  .sidebar .sidebar-nav .nav_category li a span {
    position: relative;
  }
  .sidebar .sidebar-nav .nav_category li a[target="_blank"] span::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: .3em 8px 0 8px;
    background: url(/common/img/com_sprite01.png) no-repeat;
    background-position: -80px -40px;
    vertical-align: top;
    content: "";
  }
  .sidebar .sidebar-nav .nav_category li a[href*=".pdf"] span::after {
    width: 16px;
    height: 16px;
    background-position: 0 -360px;
  }
  .sidebar .sidebar-nav .nav_category.stage1 > li > a {
    display: block;
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .sidebar .sidebar-nav .nav_category.stage1 > li > a span {
    display: inline-block;
    padding: 0 15px 0 30px;
  }
  .sidebar .sidebar-nav .nav_category.stage1 > li.is-current > a,
  .sidebar .sidebar-nav .nav_category.stage1 > li.is-open > a {
    background: #f3f3f8;
  }
  .sidebar .sidebar-nav .nav_category.stage1 > li.is-current > a span,
  .sidebar .sidebar-nav .nav_category.stage1 > li.is-open > a span {
    border-left: 4px solid #008cd6;
  }
  .sidebar .sidebar-nav .nav_category.stage2 {
    margin: 0;
  }
  .sidebar .sidebar-nav .nav_category.stage2 > li > a {
    display: block;
    padding: 15px 0;
    font-size: 1.3rem;
  }
  .sidebar .sidebar-nav .nav_category.stage2 > li > a span {
    position: relative;
    display: inline-block;
    padding: 0 15px 0 50px;
  }
  .sidebar .sidebar-nav .nav_category.stage2 > li.is-current > a {
    background: #f3f3f8;
  }
  .sidebar .sidebar-nav .nav_category.stage2 > li.is-current > a span::before {
    position: absolute;
    content: "";
    top: .75em;
    left: 27px;
    width: 14px;
    height: 2px;
    background: #008cd6;
  }

  
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    background: #fff;
  }

  /* ----- FooterContent01 ----- */
  .Footer > .FooterBody > .FooterContent01 {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  /* menu-btn */
  .Footer > .FooterBody > .FooterContent01 .menu-btn {
    position: relative;
    width: 311px;/*16.2%*/
    height: 80px;
    border-top: solid 1px #e5e5e5;
    border-right: solid 1px #ddd;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn.open {
    height: 81px;
    margin-bottom: -1px;
    border-bottom: solid 1px #fff;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 31.51%;
    display: block;
    width: 8%;
    height: 1px;
    background: #9f9f9f;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn.open::before {
    background: #fff;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn > a {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 6.43%;
    color: #333333;
    font-size: 1.6rem;
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn > a:hover {
    color: #014099;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn > a::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 31.51%;
    display: block;
    width: 8%;
    height: 1px;
    background: #9f9f9f;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn > a::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 31.51%;
    display: block;
    width: 8%;
    height: 1px;
    background: #9f9f9f;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn.open > a::before {
    top: 37px;
    transform: rotate(-405deg);
  }
  .Footer > .FooterBody > .FooterContent01 .menu-btn.open > a::after {
    bottom: 40px;
    transform: rotate(405deg);
  }
  /* search-area */
  .Footer > .FooterBody > .FooterContent01 .search-area {
    -webkit-flex: 1;
    flex: 1;
    height: 80px;
    padding: 0 4.57% 0 5.23%;
    border-top: solid 1px #e5e5e5;
    border-bottom: solid 1px #cccccc;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form .search-input {
    -webkit-flex: 1;
    flex: 1;
    height: 50px;
    border: none;
    border-bottom: solid 1px #999999;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form .search-input::-webkit-input-placeholder {
    color: #666;
    font-size: 1.8rem;
    opacity: 1;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form .search-input::-moz-placeholder {
    color: #666;
    font-size: 1.8rem;
    opacity: 1;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form .search-button {
    width: 120px;
    line-height: 50px;
    margin-left: 1.45%;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 25px;
    color: #333;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .Footer > .FooterBody > .FooterContent01 .search-area form .search-button:hover {
    color: #014099;
  }
  /* Pagetop */
  .Footer > .FooterBody > .FooterContent01 .Pagetop {
    width: 80px;/*4.16%*/
    height: 80px;
    border-bottom: solid 1px #cccccc;
  }
  .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: 20px;
    height: 20px;
    margin: -5px 0 0 -10px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* ----- FooterContent02 ----- */
  .Footer > .FooterBody > .FooterContent02 {
    width: 100%;
    padding: 40px 4% 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;
    padding-bottom: 40px;
    border-bottom: solid 1px #e5e5e5;
  }
  .Footer > .FooterBody > .FooterContent02 .banner-list > li {
    width: calc((100% - 36px) / 4);
    margin-right: 36px;
  }
  .Footer > .FooterBody > .FooterContent02 .banner-list > li:nth-child(4n) {
    margin-right: 0;
  }
  /* link-column */
  .Footer > .FooterBody > .FooterContent02 .link-column {
    padding: 35px 0;
    border-bottom: solid 1px #e5e5e5;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl + dl {
    margin-top: 68px;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl > dt {
    font-size: 0.9375vw;/*1.8rem*/
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl > dt > a::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 7px;
    margin: 0 0 0 9px;
    background: url(/common/img/com_sprite01.png) no-repeat 0 -40px;
    vertical-align: middle;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl > dd {
    font-size: 0.83333vw;/*1.6rem*/
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl > dd > ul {
    margin-top: 20px;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item > dl > dd > ul > li + li {
    margin-top: 13px;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item a {
    color: #333;
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterContent02 .link-column .column_item a:hover {
    color: #014099;
    text-decoration: underline;
  }

  /* ----- FooterContent03 ----- */
  .Footer > .FooterBody > .FooterContent03 {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 30px 4% 40px;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility {
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list {
    -webkit-display: flex;
    display: flex;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li {
    margin-right: 50px;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li:last-child {
    margin-right: 0;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li > a {
    color: #555555;
    font-size: 0.83333vw;/*1.6rem*/
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterContent03 .FooterUtility .utility-list > li > a:hover {
    color: #014099;
    text-decoration: underline;
  }
  .Footer > .FooterBody > .FooterContent03 .footer-copyright {
    margin-left: auto;
    color: #555555;
    font-size: 0.72917vw;/*1.4rem*/
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .breadcrumbs::after,
  .container::after {
    display: block;
    clear: both;
    content: "";
  }
}


/* ======================================================
 * Hack
====================================================== */
@supports (-ms-ime-align: auto) {
.gnav-list > li > a {
    white-space: nowrap;
}
}


/* ======================================================
 * Print
====================================================== */
@media print {
  body {
    width: 1200px;
  }
  .Header {
    position: inherit;
    top: auto;
  }
  .Main {
    margin-top: 0;
  }
  .Pagetop {display:none!important;}
}