@charset "utf-8";

/* ======================================================
 * home.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Page Components
 * - Clearfix
 * PC Media Queries
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Page Components
 * - Clearfix
 * SP Media Queries
 * Print
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 100;
  }
  .Header > .HeaderBody {
    -webkit-display: flex;
    display: flex;
    max-width: 1920px;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    background: #ffffff;
  }
  .Header > .HeaderBody > .header-identity {
    padding: 21px 10px 0 39px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #333333;
    text-decoration: none;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text {
    white-space: nowrap;
    margin-left: 28px;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text > span {
    display: block;
    font-size: 1.6rem;
  }

  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Header > .HeaderBody > .Gnav {
    margin-left: auto;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn {
    display: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody {
    -webkit-display: flex;
    display: flex;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody * {
    color: #333333;
    text-decoration: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li {
    line-height: 26px;
    border-left: solid 1px #ccc;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li:first-child {
    border-left: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a {
    display: block;
    padding: 0 24px;
    line-height: 1.3;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a:hover {
    color: #0d5eaf;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #6a90c5;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a:hover::after {
    width: 100%;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList {
    padding-right: 19px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li {
    line-height: 16px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li > a {
    padding: 0 16px;
    font-size: 1.3rem;
    font-weight: normal;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li:first-child > a {
    padding-left: 28px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn {
    margin: 0;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a {
    display: block;
    width: 100px;
    height: 100px;
    background: #033775 url(/common/img/head_ic01.png) no-repeat 50% 50%;
    background-size: 26px auto;
    text-indent: -9999px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a:hover {
    background-color: #0d5eaf;
  }

  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
  }
  .container {
    padding-bottom: 100px;
  }

  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background: #333;
  }
  .Footer > .FooterBody {
    -webkit-display: flex;
    display: flex;
    padding: 55px 59px 45px;
  }
  .Footer > .FooterBody > .footer-info {
    -webkit-display: flex;
    display: flex;
  }
  .Footer > .FooterBody > .footer-info > .name {
    line-height: 1.3;
    margin: 0;
    color: #fff;
    font-size: 3.2rem;
  }
  .Footer > .FooterBody > .footer-info > .name > span {
    display: block;
    font-size: 2.0rem;
  }
  .Footer > .FooterBody > .footer-info > .address {
    margin: 4px 0 0 36px;
    color: #adadad;
    font-size: 1.3rem;
  }
  .Footer > .FooterBody > .footer-info > .address > p {
    margin: 0;
    line-height: 1.5;
  }
  .Footer > .FooterBody > .footer-info > .address > p + p {
    margin: 12px 0 0;
  }
  .Footer > .FooterBody > .FooterUtility {
    margin-left: auto;
  }
  .Footer > .FooterBody > .FooterUtility a {
    color: #fff;
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterUtility a::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .Footer > .FooterBody > .FooterUtility a:hover::after {
    width: 100%;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 {
    -webkit-display: flex;
    display: flex;
    justify-content: flex-end;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 > li {
    margin-left: 36px;
    font-size: 1.5rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 > li:first-child {
    margin-left: 0;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 {
    -webkit-display: flex;
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 > li {
    margin-left: 29px;
    font-size: 1.3rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 > li:first-child {
    margin-left: 0;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-copyright {
    margin-top: 8px;
    color: #adadad;
    font-size: 1.3rem;
    text-align: right;
  }
  .Footer > .Pagetop {
    display: none;
  }

  /* ------------------------------------------------------
   * Page Components
  ------------------------------------------------------ */
  /* ----- mainVisual-area ----- */
  .mainVisual-area {
    width: 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item {
    position: relative;
    width: 100%;
    height: 800px;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item01 {
    background: url(/img/index_mv01.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item02 {
    background: url(/img/index_mv02.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item03 {
    background: url(/img/index_mv03.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item04 {
    background: url(/img/index_mv04.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item05 {
    background: url(/img/index_mv05.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item .catch {
    position: absolute;
    bottom: 6.25%;
    left: 0;
    right: 0;
    width: 83.3%;
    margin: 0 auto;
    padding: 27px 0;
    background: rgba(255,255,255,0.85);
    font-size: 2.7rem;
    text-align: center;
  }
  .mainVisual-area .slick-arrow.slick-prev {
    position: absolute;
    top: 380px;
    left: 60px;
    z-index: 10;
    width: 42px;
    height: 42px;
    padding: 0;
    display: block;
    background: none;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-arrow.slick-next {
    position: absolute;
    top: 380px;
    right: 60px;
    z-index: 10;
    width: 42px;
    height: 42px;
    padding: 0;
    display: block;
    background: none;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-arrow.slick-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
  }
  .mainVisual-area .slick-arrow.slick-next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    width: 30px;
    height: 30px;
    margin: -15px -15px 0 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
  }
  .mainVisual-area .slick-dots {
    position: absolute;
    bottom: 20px;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
  }
  .mainVisual-area .slick-dots > li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #c8d3d8;
    border: none;
    border-radius: 5px;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-dots > li:hover,
  .mainVisual-area .slick-dots > li.slick-active {
    background: #033775;
  }

  /* ----- section-lead ----- */
  .section-lead {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
  }
  .section-lead > .inner {
    padding: 55px 0 50px;
  }
  .section-lead > .inner > .lead01 {
    line-height: 1.5;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
  }
  .section-lead > .inner > .lead02 {
    margin-top: 15px;
    line-height: 1.9;
    font-size: 1.8rem;
    text-align: center;
  }

  /* ----- section-attorney ----- */
  .section-attorney {
    overflow: hidden;
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 600px;
    margin: 0 auto;
  }
  .section-attorney .inner {
    width: 100%;
    height: 100%;
    background: url(/img/index_im01.jpg) no-repeat 50% 50%;
    background-size: auto 100%;
    transition: 0.8s ease;
  }
  .section-attorney .block {
    position: absolute;
    top: 252px;
    left: 58.5%;
    display: inline-block;
    color: #fff;
    text-decoration: none;
  }
  .section-attorney .block > .section-title {
    font-size: 4.2rem;
  }
  .section-attorney .block > .section-title span {
    transition: .3s;
    display: inline-block;
  }
  .section-attorney .block > .section-more {
    display: inline-block;
    line-height: 1.1;
    padding-left: 28px;
    font-size: 1.4rem;
  }
  .section-attorney .block > .section-more::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 19px;
    height: 11px;
    margin: 0 9px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    transition: 0.3s ease;
  }
  .section-attorney .block:hover > .section-more::before {
    left: 5px;
  }
  .section-attorney .block > .section-more::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .section-attorney .block:hover > .section-more::after {
    width: 100%;
  }

  /* ----- section-service ----- */
  .section-service {
    overflow: hidden;
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 0;/*760px*/
    margin: 0 auto;
    padding-top: 39.58%;
  }
  .section-service > .inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 51%;/*980px*/
    height: 84.2%;/*640px*/
    background: #eff4fa;
  }
  .section-service .section-img01 {
    position: absolute;
    top: 18.75%;
    left: -79.5%;
    width: 100.8%;
  }
  .section-service .section-img02 {
    position: absolute;
    top: 78.1%;
    right: 27.1%;
    width: 41%;
  }
  .section-service .block {
    position: absolute;
    top: 27.9%;
    right: 0;
    display: block;
    width: 89%;
    height: 37.5%;
    padding: 7.1% 0 0 23.5%;
    background: rgba(3,55,117,0.9);
    color: #fff;
    text-decoration: none;
  }
  .section-service .block:hover {
    background: rgba(13,94,175,0.9);
  }
  .section-service .block > .section-title {
    font-size: 2.1875vw;/*4.2rem*/
  }
  .section-service .block > .section-more {
    position: relative;
    display: inline-block;
    padding-left: 27px;
    line-height: 1.1;
    font-size: 0.9vw;/*1.4rem*/
  }
  .section-service .block > .section-more::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 19px;
    height: 11px;
    margin: 0 9px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    transition: 0.3s ease;
  }
  .section-service .block:hover > .section-more::before {
    left: 5px;
  }
  .section-service .block > .section-more::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .section-service .block:hover > .section-more::after {
    width: 100%;
  }

  /* ----- section-office ----- */
  .section-office {
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 0;/*760px*/
    margin: 0 auto;
    padding-top: 39.58%;
  }
  .section-office > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 51.4%;/*987px*/
    height: 84.2%;/*640px*/
    background: #eff4fa;
  }
  .section-office .section-img01 {
    position: absolute;
    top: 18.75%;
    right: -78.3%;
    width: 100.1%;
  }
  .section-office .section-img02 {
    position: absolute;
    top: 78.1%;
    left: 26.8%;
    width: 40.7%;
  }
  .section-office .block {
    position: absolute;
    top: 28.1%;
    left: 0;
    display: block;
    width: 88.4%;
    height: 37.5%;
    padding: 7% 0 0 265px;
    background: rgba(3,55,117,0.9);
    color: #fff;
    text-decoration: none;
-webkit-perspective: 500px;
perspective: 500px;
  }
  .section-office .block:hover {
    background: rgba(13,94,175,0.9);
  }
  .section-office .block > .section-title {
    font-size: 2.1875vw;/*4.2rem*/
  }
  .section-office .block > .section-more {
    position: relative;
    display: inline-block;
    line-height: 1.1;
    padding-left: 27px;
    font-size: 0.9vw;/*1.4rem*/
  }
  .section-office .block > .section-more::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 19px;
    height: 11px;
    margin: 0 9px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    transition: 0.3s ease;
  }
  .section-office .block:hover > .section-more::before {
    left: 5px;
  }
  .section-office .block > .section-more::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #fff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .section-office .block:hover > .section-more::after {
    width: 100%;
  }

  /* ----- section-wrap > section-contact & section-recruit ----- */
  .section-wrap {
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 0;/*900px*/
    margin: 120px auto 0;
    padding-top: 46.88%;
  }
  .section-wrap > .inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60%;/*540px*/
    background: #eff4fa;
  }
  .section-wrap .section-contact {
    position: absolute;
    top: 7%;
    left: 8.3%;
    width: 36.4%;/*700px*/
    height: 129.6%;/*700px*/
  }
  .section-wrap .section-recruit {
    position: absolute;
    top: 36.8%;
    right: 13.1%;
    width: 35.9%;/*690px*/
    height: 129.6%;/*700px*/
  }
  .section-wrap .section-contact > .section-img01 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 91.4%;
  }
  .section-wrap .section-recruit > .section-img01 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 92.7%;
  }
  .section-wrap .section-contact > .block,
  .section-wrap .section-recruit > .block {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 42.8%;/*300px*/
    height: 42.8%;/*300px*/
    color: #333333;
    text-align: center;
    text-decoration: none;
    -webkit-perspective: 500px;
    perspective: 500px;
  }
  .section-wrap .section-contact > .block {
    padding-top: 20%;
    background: rgba(255,255,255,0.9) url(/img/index_ic01.png) no-repeat 50% 33%;
  }
  .section-wrap .section-recruit > .block {
    padding-top: 21.4%;
    background: rgba(255,255,255,0.9) url(/img/index_ic02.png) no-repeat 50% 36%;
  }
  .section-wrap .section-contact > .block > .section-title,
  .section-wrap .section-recruit > .block > .section-title {
    font-size: 1.67vw;/*3.2rem*/
  }
  .section-wrap .section-contact > .block > .section-more,
  .section-wrap .section-recruit > .block > .section-more {
    position: relative;
    display: inline-block;
    line-height: 1.1;
    padding-left: 27px;
    color: #033775;
    font-size: 0.9vw;/*1.4rem*/
  }
  .section-wrap .section-contact > .block > .section-more::before,
  .section-wrap .section-recruit > .block > .section-more::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 19px;
    height: 11px;
    margin: 0 9px 0 0;
    background: url(/common/img/com_ic02.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
    transition: 0.3s ease;
  }
  .section-wrap .section-contact > .block:hover > .section-more::before,
  .section-wrap .section-recruit > .block:hover > .section-more::before {
    left: 5px;
  }
  .section-wrap .section-contact > .block > .section-more::after,
  .section-wrap .section-recruit > .block > .section-more::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #033775;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .section-wrap .section-contact > .block:hover > .section-more::after,
  .section-wrap .section-recruit > .block:hover > .section-more::after {
    width: 100%;
  }

  /* ----- section-news ----- */
  .section-news {
    position: relative;
    max-width: 1600px;
    width: 83.3%;
    margin: 90px auto 0;
  }
  .section-news .news-wrap {
    -webkit-display: flex;
    display: flex;
  }
  .section-news .news-wrap > .news-title {
    width: 200px;
    font-size: 4.2rem;
  }
  .section-news .news-wrap > .news-layout {
    flex: 1;
  }
  .section-news .news-wrap > .news-layout > .news_article {
    border-bottom: solid 1px #ddd;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block {
    display: block;
    padding: 25px 10px 23px 35px;
    text-decoration: none;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property {
    -webkit-display: flex;
    display: flex;
    white-space: nowrap;
    padding-top: 4px;
    line-height: 19px;
    color: #666;
    font-size: 1.4rem;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_date {
    margin-right: 18px;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon {
    width: 100px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type1 {
    background: #e37b02;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type2 {
    background: #3176b0;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type3 {
    background: #dc1f2c;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type4 {
    background: #1ab067;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type5 {
    background: #7B04D3;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type6 {
    background: #D10CA4;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type7 {
    background: #00C9C1;
  }
  .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type8 {
    background: #8B3008;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_title {
    margin-left: 50px;
    color: #333;
    font-size: 1.8rem;
  }
  .section-news .news-wrap > .news-layout > .news_article > a:hover > .news_detail > .news_title {
    color: #0d5eaf;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_title::after {
    content: "";
    bottom: 0;
    display: block;
    width: 0;
    border-bottom: solid 1px #0d5eaf;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .section-news .news-wrap > .news-layout > .news_article > a:hover > .news_detail > .news_title::after {
    width: 100%;
  }
  .section-news .news-more {
    width: 100%;
    margin: 60px auto 0;
  }
  .section-news .news-more > a {
    display: block;
    width: 100%;
    padding: 30px 0;
    background: #033775;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    text-align: center;
  }
  .section-news .news-more > a:hover {
    background: #0d5eaf;
  }
  .section-news .news-more > a::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 11px;
    margin: 0 19px 2px 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: auto 11px;
    vertical-align: middle;
    transition: 0.3s ease;
  }
  .section-news .news-more > a:hover::before {
    background-position: 5px 0;
  }

  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * PC Media Queries
====================================================== */
@media screen and (min-width: 1300px) and (max-width: 1450px) {
  .Header > .HeaderBody > .header-identity {
    padding-left: 15px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text {
    margin-left: 15px;
    font-size: 2.0rem;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text > span {
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a {
    white-space: nowrap;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a {
    display: block;
    width: 80px;
  }
  .section-wrap .section-contact > .block {
    background-size: 50px auto;
  }
  .section-wrap .section-recruit > .block {
    background-size: 50px auto;
  }
}
@media screen and (min-width: 970px) and (max-width: 1299px) {
  .Header > .HeaderBody > .header-identity {
    padding-left: 10px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_img {
    width: 90px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text {
    margin-left: 10px;
    font-size: 1.8rem;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text > span {
    font-size: 1.4rem;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a {
    white-space: nowrap;
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li > a {
    padding: 0 10px;
    font-size: 1.2rem;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li:first-child > a {
    padding-left: 10px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a {
    width: 60px;
  }
  .Footer > .FooterBody {
    padding: 55px 20px 45px;
  }
  .Footer > .FooterBody > .footer-info > .name {
    font-size: 2.0rem;
  }
  .Footer > .FooterBody > .footer-info > .name > span {
    font-size: 1.5rem;
  }
  .Footer > .FooterBody > .footer-info > .address {
    margin: 4px 0 0 15px;
    font-size: 1.1rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 > li {
    margin-left: 18px;
    font-size: 1.4rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 > li {
    margin-left: 15px;
    font-size: 1.2rem;
  }
  .section-wrap .section-contact > .block {
    background-size: 40px auto;
  }
  .section-wrap .section-recruit > .block {
    background-size: 40px auto;
  }
  .section-news .news-wrap > .news-title {
    width: 150px;
    font-size: 3.0rem;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block {
    padding: 12px 10px 11px 15px;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_title {
    margin-left: 20px;
  }
  @media screen and (min-width: 768px) and (max-width: 969px) {
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a {
    white-space: normal;
  }
  }
}

/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: fixed;
    width: 100%;
    height: 55px;
    z-index: 100;
  }
  .Header > .HeaderBody {
    -webkit-display: flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 55px;
    background: #ffffff;
  }
  .Header > .HeaderBody > .header-identity {
    padding: 13px 0 0 15px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #333333;
    text-decoration: none;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_img {
    width: 73px;
    height: 29px;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text {
    white-space: nowrap;
    margin-left: 14px;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .Header > .HeaderBody > .header-identity > .identity_logo > a > .logo_text > span {
    display: block;
    font-size: 1.1rem;
  }

  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Header > .HeaderBody > .Gnav {
    position: relative;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn {
    position: relative;
    width: 55px;
    height: 55px;
    margin: 0;
    background: #033775;
    cursor: pointer;
    text-indent: -9999px;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    display: block;
    width: 16px;
    height: 1px;
    margin-left: -8px;
    background: #fff;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn::after {
    content: "";
    position: absolute;
    top: 27px;
    left: 50%;
    display: block;
    width: 16px;
    height: 1px;
    margin-left: -8px;
    background: #fff;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn > span::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 50%;
    display: block;
    width: 16px;
    height: 1px;
    margin-left: -8px;
    background: #fff;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn.on::before {
    top: 27px;
    width: 20px;
    margin-left: -10px;
    transform: rotate(45deg);
  }
  .Header > .HeaderBody > .Gnav > .menu-btn.on::after {
    display: none;
  }
  .Header > .HeaderBody > .Gnav > .menu-btn.on > span::before {
    top: 27px;
    width: 20px;
    margin-left: -10px;
    transform: rotate(-45deg);
  }
  .Header > .HeaderBody > .Gnav > .GnavBody {
    position: fixed;
    top: 55px;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #033775;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody * {
    color: #fff;
    text-decoration: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody {
    padding: 25px 50px 0;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li {
    border-bottom: solid 1px #355f91;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a {
    position: relative;
    display: block;
    padding: 15px 25px 15px 0;
    font-size: 1.8rem;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList > li > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 16px;
    height: 10px;
    margin: -5px 7px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList {
    -webkit-display: flex;
    display: flex;
    margin-top: 50px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li {
    width: 50%;
    border: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li:first-child {
    border-right: solid 1px #033775;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li > a {
    position: relative;
    display: block;
    padding: 10px 0 9px;
    background: #355f91;
    font-size: 1.4rem;
    text-align: center;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .gnavList + .gnavList > li > a::before {
    display: none;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn {
    width: 100%;
    margin-top: 20px;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a {
    display: block;
    width: 100%;
    padding: 14px 0 13px;
    border: solid 1px #fff;
    font-size: 1.4rem;
    text-align: center;
  }
  .Header > .HeaderBody > .Gnav > .GnavBody > .contactBtn > a::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 16px;
    margin: 0 10px 3px 0;
    background: url(/common/img/head_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    width: 100%;
    padding-top: 55px;
  }
  .container {
    padding-bottom: 40px;
  }

  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    width: 100%;
    padding: 0 15px;
    background: #333;
  }
  .Footer > .FooterBody {
    padding: 0;
  }
  .Footer > .FooterBody > .footer-info {
    -webkit-display: flex;
    display: flex;
    padding: 40px 0 32px;
    border-bottom: solid 1px #5c5c5c;
  }
  .Footer > .FooterBody > .footer-info > .name {
    white-space: nowrap;
    line-height: 1.3;
    color: #fff;
    font-size: 1.6rem;
  }
  .Footer > .FooterBody > .footer-info > .name > span {
    display: block;
    font-size: 1.0rem;
  }
  .Footer > .FooterBody > .footer-info > .address {
    margin: 0 0 0 20px;
    color: #adadad;
    font-size: 0.9rem;
  }
  .Footer > .FooterBody > .footer-info > .address > p {
    line-height: 1.5;
  }
  .Footer > .FooterBody > .footer-info > .address > p + p {
    margin-top: 8px;
  }
  .Footer > .FooterBody > .FooterUtility {
    padding-top: 10px;
  }
  .Footer > .FooterBody > .FooterUtility a {
    color: #fff;
    text-decoration: none;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 {
    -webkit-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility01 > li {
    margin: 17px 14px 0;
    font-size: 1.4rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 {
    -webkit-display: flex;
    display: flex;
    justify-content: center;
    margin: 19px 0 18px;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-utility02 > li {
    margin: 0 12px;
    font-size: 1.2rem;
  }
  .Footer > .FooterBody > .FooterUtility > .footer-copyright {
    margin: 0 -15px;
    padding: 10px 0;
    border-top: solid 1px #5c5c5c;
    color: #adadad;
    font-size: 1.1rem;
    text-align: center;
  }
  .Footer > .Pagetop {
    display: none;
  }

  /* ------------------------------------------------------
   * Page Components
  ------------------------------------------------------ */
  /* ----- mainVisual-area ----- */
  .mainVisual-area {
    width: 100%;
    margin-bottom: 40px;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item {
    position: relative;
    width: 100%;
    height: 400px;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item01 {
    background: url(/img/index_mv01_s.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item02 {
    background: url(/img/index_mv02_s.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item03 {
    background: url(/img/index_mv03_s.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item04 {
    background: url(/img/index_mv04_s.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item.item05 {
    background: url(/img/index_mv05_s.jpg) no-repeat 50% 0;
    background-size: auto 100%;
  }
  .mainVisual-area .mainVisual-list .mainVisual-item .catch {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    width: 92%;
    margin: 0 auto;
    padding: 10px 10px;
    background: rgba(255,255,255,0.85);
    font-size: 1.8rem;
    text-align: center;
  }
  .mainVisual-area .slick-arrow.slick-prev {
    position: absolute;
    bottom: -30px;
    left: 15px;
    z-index: 10;
    width: 20px;
    height: 20px;
    padding: 0;
    display: block;
    background: none;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-arrow.slick-next {
    position: absolute;
    bottom: -30px;
    right: 15px;
    z-index: 10;
    width: 20px;
    height: 20px;
    padding: 0;
    display: block;
    background: none;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-arrow.slick-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border-top: solid 2px #033775;
    border-left: solid 2px #033775;
    transform: rotate(-45deg);
  }
  .mainVisual-area .slick-arrow.slick-next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    width: 14px;
    height: 14px;
    margin: -7px -7px 0 0;
    border-top: solid 2px #033775;
    border-right: solid 2px #033775;
    transform: rotate(45deg);
  }
  .mainVisual-area .slick-dots {
    position: absolute;
    bottom: -23px;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
  }
  .mainVisual-area .slick-dots > li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: #c8d3d8;
    border: none;
    border-radius: 4px;
    text-indent: -9999px;
    cursor: pointer;
  }
  .mainVisual-area .slick-dots > li:hover,
  .mainVisual-area .slick-dots > li.slick-active {
    background: #033775;
  }
  /* ----- section-lead ----- */
  .section-lead {
    padding: 20px 15px 20px;
  }
  .section-lead > .inner > .lead01 {
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
  }
  .section-lead > .inner > .lead02 {
    margin-top: 10px;
    line-height: 1.9;
    font-size: 1.4rem;
    text-align: center;
  }

  /* ----- section-attorney ----- */
  .section-attorney {
    position: relative;
    height: 300px;
    margin: 0 auto;
    background: url(/img/index_im01.jpg) no-repeat 20% 0;
    background-size: auto 100%;
  }
  .section-attorney .block {
    position: absolute;
    top: 190px;
    right: 0;
    left: 0;
    display: inline-block;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .section-attorney .block > .section-title {
    font-size: 2.5rem;
  }
  .section-attorney .block > .section-more {
    display: inline-block;
    line-height: 1.1;
    font-size: 1.2rem;
  }
  .section-attorney .block > .section-more::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin: 0 7px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ----- section-service ----- */
  .section-service {
    position: relative;
    width: 100%;
    height: 357px;
  }
  .section-service > .inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 110px;
    background: #eff4fa;
  }
  .section-service .section-img01 {
    max-width: 345px;
    margin: 30px auto 0;
  }
  .section-service .section-img02 {
    display: none;
  }
  .section-service .block {
    position: absolute;
    bottom: -216px;
    right: 0;
    left: 0;
    display: block;
    max-width: 305px;
    height: 110px;
    margin: 0 auto;
    padding: 25px 0 25px;
    background: rgba(3,55,117,0.9);
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .section-service .block > .section-title {
    font-size: 2.5rem;
  }
  .section-service .block > .section-more {
    position: relative;
    display: inline-block;
    line-height: 1.1;
    font-size: 1.2rem;
  }
  .section-service .block > .section-more::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin: 0 6px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ----- section-office ----- */
  .section-office {
    position: relative;
    width: 100%;
    height: 357px;
  }
  .section-office > .inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 110px;
    background: #eff4fa;
  }
  .section-office .section-img01 {
    max-width: 345px;
    margin: 30px auto 0;
  }
  .section-office .section-img02 {
    display: none;
  }
  .section-office .block {
    position: absolute;
    bottom: -216px;
    right: 0;
    left: 0;
    display: block;
    max-width: 305px;
    height: 110px;
    margin: 0 auto;
    padding: 25px 0 25px;
    background: rgba(3,55,117,0.9);
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .section-office .block > .section-title {
    font-size: 2.5rem;
  }
  .section-office .block > .section-more {
    position: relative;
    display: inline-block;
    line-height: 1.1;
    font-size: 1.2rem;
  }
  .section-office .block > .section-more::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin: 0 6px 0 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ----- section-wrap > section-contact & section-recruit ----- */
  .section-wrap {
    position: relative;
    width: 100%;
    height: 550px;
  }
  .section-wrap > .inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 475px;
    padding: 0 15px;
    background: #eff4fa;
  }
  .section-wrap .section-contact {
    position: relative;
    max-width: 345px;
    height: 245px;
    margin: 28px auto 0;
  }
  .section-wrap .section-recruit {
    position: relative;
    max-width: 345px;
    height: 245px;
    margin: 30px auto 0;
  }
  .section-wrap .section-contact > .section-img01 {
    position: absolute;
    top: 20px;
    right: 0;
    width: 225px;
  }
  .section-wrap .section-recruit > .section-img01 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 225px;
  }
  .section-wrap .section-contact > .block,
  .section-wrap .section-recruit > .block {
    position: absolute;
    top: 0;
    display: block;
    width: 150px;
    height: 150px;
    color: #333333;
    text-align: center;
    text-decoration: none;
  }
  .section-wrap .section-contact > .block {
    left: 0;
    padding-top: 65px;
    background: rgba(255,255,255,0.9) url(/img/index_ic01.png) no-repeat 50% 36px;
    background-size: 35px auto;
  }
  .section-wrap .section-recruit > .block {
    right: 0;
    padding-top: 65px;
    background: rgba(255,255,255,0.9) url(/img/index_ic02.png) no-repeat 50% 33px;
    background-size: 29px auto;
  }
  .section-wrap .section-contact > .block > .section-title,
  .section-wrap .section-recruit > .block > .section-title {
    font-size: 2.3rem;
  }
  .section-wrap .section-contact > .block > .section-more,
  .section-wrap .section-recruit > .block > .section-more {
    display: inline-block;
    line-height: 1.1;
    color: #033775;
    font-size: 1.2rem;
  }
  .section-wrap .section-contact > .block > .section-more::before,
  .section-wrap .section-recruit > .block > .section-more::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin: 0 6px 2px 0;
    background: url(/common/img/com_ic02.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ----- section-news ----- */
  .section-news {
    width: 100%;
    margin: 40px auto 0;
    padding: 0 15px;
  }
  .section-news .news-wrap > .news-title {
    font-size: 2.3rem;
  }
  .section-news .news-wrap > .news-layout > .news_article {
    border-bottom: solid 1px #ddd;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block {
    display: block;
    padding: 17px 0 15px;
    color: #666;
    text-decoration: none;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property {
    -webkit-display: flex;
    display: flex;
    line-height: 18px;
    padding-bottom: 5px;
    font-size: 1.2rem;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_date {
    margin-right: 10px;
    font-size: 1.3rem;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon {
    width: 100px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type1 {
    background: #e37b02;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type2 {
    background: #3176b0;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type3 {
    background: #dc1f2c;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_property > .news_icon.type4 {
    background: #1ab067;
  }
  .section-news .news-wrap > .news-layout > .news_article > .block > .news_detail > .news_title {
    font-size: 1.4rem;
  }
  .section-news .news-more {
    width: 100%;
    margin: 35px auto 0;
  }
  .section-news .news-more > a {
    display: block;
    width: 100%;
    padding: 19px 0;
    background: #033775;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    text-align: center;
  }
  .section-news .news-more > a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    margin: 0 6px 2px 0;
    background: url(/common/img/com_ic01.png) no-repeat 0 0;
    background-size: contain;
    vertical-align: middle;
  }

  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * Print
====================================================== */
@media print {
  * {
    opacity: 1!important;
  }
  .Header {
    width: 1920px;
    position: inherit;
  }
  .Main {
    width: 1920px;
    padding-top: 0;
  }
  .Footer {
    width: 1920px;
  }
  .effect-slide-left {
    left: 0 !important;
  }
  .effect-slide-left02 {
    left: 0 !important;
  }
  .effect-slide-right {
    right: 0 !important;
  }
  .effect-slide-bottom {
    top: 78.1% !important;
  }
  .effect-slide-bottom02 {
    bottom: 0 !important;
  }

}
