@charset "utf-8";

/* ======================================================
 * parts_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Elements >>> Text
 * - Elements >>> List
 * - Elements >>> Link
 * - Elements >>> Image
 * - Elements >>> Other
 * - Conditional Elements >>> Heading
 * - Conditional Elements >>> Navi
 * - Layout >>> Table
 * - Layout >>> Column
 * - Layout >>> Box
 * - Layout >>> Other
 * - Components
 * - Clearfix
 * Media Queries
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
  /* ----- sprite ----- */
  .a-blank::after,
  .a-pdf::after {
    vertical-align: top;
    background: url(/china/common/img/com_sprite01.png) no-repeat;
    content: "";
  }
  .a-blank::after {
    width: 13px;
    height: 13px;
    background-position: 0 0;
  }
  .link-button > li > .a-blank:hover::after,
  .link-button-v2 > li > .a-blank::after {
    background-position: 0 -40px;
  }
  .a-pdf::after {
    width: 14px;
    height: 14px;
    background-position: -40px 0;
  }
  
  /* link-inline */
  .link-inline.a-blank::after,
  .link-inline.a-pdf::after {
    display: inline-block;
    margin: .3em 11px 0 10px;
  }
  
  /* link-text */
  .link-text > li > .a-blank::after,
  .link-text > li > .a-pdf::after {
    display: inline-block;
    margin: .3em 0 0 10px;
  }
  
  /* link-button */
  .link-button > li > .a-blank::after,
  .link-button-v2 > li > .a-blank::after,
  .link-button > li > .a-pdf::after,
  .link-button-v2 > li > .a-pdf::after {
    position: absolute;
    top: 50%;
    right: 13px;
    margin-top: -7px;
  }
  
  /* link-border */
  .link-border {
    position: relative;
    display: inline-block;
  }
  .link-border::before {
    content: "";
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 0;
    border-bottom: solid 1px #6a90c5;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .link-button > li > a .link-border::before,
  .link-button-v2 > li > a .link-border::before {
    left: 0;
    border-bottom: solid 1px #fff;
  }
  .link-border:hover::before,
  .link-button > li > a:hover .link-border::before,
  .link-button-v2 > li > a:hover .link-border::before {
    width: 100%;
  }
  
  /* ----- data-row-pc ----- */
  [data-row-pc]:not([data-row-pc="1"]) {
    -webkit-display: flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  [data-row-pc] > * {
    margin-left: 36px;
  }
  [data-row-pc="2"] > *:nth-child(-n+2),
  [data-row-pc="3"] > *:nth-child(-n+3),
  [data-row-pc="4"] > *:nth-child(-n+4) {
    margin-top: 0 !important;
  }
  [data-row-pc="1"] > *,
  [data-row-pc="2"] > *:nth-child(2n+1),
  [data-row-pc="3"] > *:nth-child(3n+1),
  [data-row-pc="4"] > *:nth-child(4n+1) {
    margin-left: 0 !important;
  }
  [data-row-pc="2"] > * {
    width: calc((100% - 36px) / 2);
  }
  [data-row-pc="3"] > * {
    width: calc((100% - 72px) / 3);
  }
  [data-row-pc="4"] > * {
    width: calc((100% - 108px) / 4);
  }
  
  /* ------------------------------------------------------
   * Elements >>> Text
  ------------------------------------------------------ */
  /* ----- text-paragraph ----- */
  .text-paragraph {
    margin: 2.5em 0 1.5em;
  }
  
  /* ----- text-lead ----- */
  .text-lead {
    line-height: 1.5;
    margin: 1em 0;
    font-size: 2.4rem;
    font-weight: bold;
  }
  
  /* ------------------------------------------------------
   * Elements >>> List
  ------------------------------------------------------ */
  [class*="list-note"],
  [class*="list-bullet"],
  [class*="list-order"] {
    margin: 1em 0;
  }
  [class*="list-note"] > li + li {
    margin-top: .8em;
  }
  [class*="list-bullet"] > li + li,
  [class*="list-order"] > li + li {
    margin-top: 1.7em;
  }
  .is-nest {
    margin-top: .7em;
  }
  
  /* ----- list-note ----- */
  .list-note > li {
    position: relative;
    padding-left: 1.3em;
    color: #666666;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .list-note > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-note-order ----- */
  .list-note-order > li {
    position: relative;
    padding-left: 2.7em;
    color: #666666;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .list-note-order > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-bullet ----- */
  .list-bullet > li {
    position: relative;
    padding-left: 20px;
  }
  
  /* icon */
  .list-bullet > li::before {
    position: absolute;
    top: .6em;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #033775;
    content: "";
  }
  
  /* ----- list-bullet-v2 ----- */
  .list-bullet-v2 > li {
    position: relative;
    padding-left: 14px;
  }
  .list-bullet-v2 > li + li {
    margin-top: 0.7em !important;
  }
  
  /* icon */
  .list-bullet-v2 > li::before {
    position: absolute;
    top: .5em;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #778899;
    content: "";
  }
  
  /* ----- list-order ----- */
  .list-order > li {
    position: relative;
    padding-left: 2em;
  }
  .list-order > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    background: #0d5eaf;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
  }
  
  /* ----- list-order-v2 ----- */
  .list-order-v2 > li {
    position: relative;
    padding-left: 3em;
  }
  .list-order-v2 > li + li {
    margin-top: 0.7em !important;
  }
  .list-order-v2 > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-description ----- */
  .list-description {
    margin: 1em 0;
  }
  .list-description > dt {
    font-size: 2.0rem;
    font-weight: bold;
  }
  .list-description > dd {
  }
  
  /* ------------------------------------------------------
   * Elements >>> Link
  ------------------------------------------------------ */  
  /* ----- link-text ----- */
  .link-text {
    margin: 1em 0;
  }
  .link-text > li + li {
    margin-top: .5em;
  }
  .link-text > li > a {
    display: inline-block;
    position: relative;
    padding-left: 38px;
    color: #333;
  }
  .link-text > li > a:hover {
    color: #0d5eaf;
  }
  
  /* icon */
  .link-text > li > a::before {
    display: block;
    position: absolute;
    top: .5em;
    left: 0;
    width: 18px;
    height: 11px;
    background: url(/china/common/img/com_sprite01.png) no-repeat -80px 0;
    vertical-align: top;
    content: "";
  }
  
  /* data-row-pc */
  .link-text[data-row-pc="auto"] {
    margin-right: -60px;
    margin-bottom: -.5em;
  }
  .link-text[data-row-pc="auto"] > li {
    margin: 0 60px .5em 0;
  }
  
  /* ----- link-button ----- */
  .link-button,
  .link-button-v2 {
    margin: 1em 0;
  }
  .link-button > li > a,
  .link-button-v2 > li > a {
    display: inline-block;
    position: relative;
    min-width: 240px;
    padding: 16px 20px 14px;
    border: 1px solid #033775;
    background-color: #fff;
    color: #333;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .link-button > li > a {
    transition: 0.3s ease;
  }
  .link-button-v2 > li > a {
    padding: 32px 20px 31px;
    border: 1px solid #033775;
    background-color: #033775;
    color: #fff;
  }
  .link-button > li > a.a-blank,
  .link-button-v2 > li > a.a-blank,
  .link-button > li > a.a-pdf,
  .link-button-v2 > li > a.a-pdf {
    padding-right: 35px;
  }
  .link-button > li > a:hover,
  .link-button-v2 > li > a:hover {
    background-color: #0d5eaf;
    border: solid 1px #0d5eaf;
    color: #fff;
  }
  .link-button > li > a:hover {
    padding-left: 25px;
  }
  .link-button .link_label,
  .link-button-v2 .link_label {
    position: relative;
    display: inline-block;
    padding-left: 38px;
    line-height: 1.5;
  }
  .link-button > li > a .link_label {
    transition: 0.3s ease;
  }
  .link-button > li > a:hover .link_label {
    padding-left: 33px;
  }
  
  /* icon */
  .link-button > li > a .link_label::before,
  .link-button-v2 > li > a .link_label::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 18px;
    height: 11px;
    margin-top: -5px;
    background: url(/china/common/img/com_sprite01.png) no-repeat -80px 0;
    content: "";
  }
  .link-button-v2 > li > a .link_label::before {
    background: url(/china/common/img/com_sprite01.png) no-repeat -120px 0;
    transition: 0.3s ease;
  }
  .link-button > li > a:hover .link_label::before {
    background: url(/china/common/img/com_sprite01.png) no-repeat -120px 0;
  }
  .link-button-v2 > li > a:hover .link_label::before {
    left: 5px;
    background: url(/china/common/img/com_sprite01.png) no-repeat -120px 0;
  }
  
  /* data-row-pc */
  .link-button[data-row-pc] > li,
  .link-button-v2[data-row-pc] > li {
    -webkit-display: flex;
    display: flex;
    margin-top: 20px;
  }
  .link-button[data-row-pc] > li > a,
  .link-button-v2[data-row-pc] > li > a {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  
  /* ------------------------------------------------------
   * Elements >>> Image
  ------------------------------------------------------ */
  /* ----- image-set ----- */
  .image-set {
    margin: 1em 0;
  }
  .image-set .image_caption {
    margin-top: 7px;
    font-size: 1.4rem;
    text-align: left;
  }
  
  /* gp-al-** */
  .image-set.gp-al-center {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .image-set.gp-al-right {
    -webkit-display: flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  /* for IE11 hack */
  _:-ms-lang(x)::-ms-backdrop, .image-set.gp-al-center > .image_inner,
  _:-ms-lang(x)::-ms-backdrop, .image-set.gp-al-right > .image_inner{
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    min-width: 1px;
  }
  
  /* ------------------------------------------------------
   * Conditional Elements >>> Heading
  ------------------------------------------------------ */
  /* ----- heading-lv1 ----- */
  .heading-lv1 {
    width: 100%;
    margin-bottom: 6.25em;
    background: url(/china/common/img/com_bg01.png) no-repeat 50% 50%;
  }
  .heading-lv1 .block {
    max-width: 1600px;
    margin: 0 auto;
  }
  .heading-lv1 .heading_title {
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    min-height: 200px;
    padding: 48px 0;
    color: #033775;
    font-size: 7.0rem;
    line-height: 1.2;
  }
  
  /* ----- heading-lv2 ----- */
  .heading-lv2 {
    margin: 5em 0 1.9em;
  }
  .heading-lv2 .block {
    display: block;
    text-decoration: none;
  }
  .heading-lv2 .heading_title {
    position: relative;
    color: #033775;
    font-size: 3.6rem;
    line-height: 1.4;
  }
  
  /* ----- heading-lv3 ----- */
  .heading-lv3 {
    margin: 3.75em 0 1.9em;
  }
  .heading-lv3 .block {
    display: block;
    text-decoration: none;
  }
  .heading-lv3 .heading_title {
    position: relative;
    padding-bottom: 22px;
    color: #778899;
    font-size: 3.0rem;
    line-height: 1.4;
  }
  .heading-lv3 .heading_title::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: #033775;
    content: "";
  }

  /* ----- heading-category ----- */
  .heading-category {
    position: relative;
    min-height: 1000px;
    margin: 0 0 2.5em;
    padding: 244px 0 0;
  }
  .heading-category.category-services {
    margin-bottom: 0;
  }
  .heading-category .heading-bg01 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 649px;
    height: 667px;
    background: url(/china/common/img/com_bg02.png) no-repeat 0 0;
  }
  .heading-category .heading-bg02 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1920px;
    height: 735px;
  }
  .heading-category.category-office .heading-bg02 {
    background: url(/china/office/img/index_im01.png) no-repeat 0 0;
  }
  .heading-category.category-attorney .heading-bg02 {
    background: url(/china/attorney/img/index_im01.png) no-repeat 0 0;
  }
  .heading-category.category-services .heading-bg02 {
    background: url(/china/service/img/index_im01.png) no-repeat 0 0;
  }
  .heading-category .block {
    display: inline-block;
    position: relative;
    padding: 18px 2.7% 18px 6.61%;
  }
  .heading-category .block::before {
    display: block;
    position: absolute;
    top: 0;
    left: 210px;
    width: 356px;
    height: 2px;
    background: #1a4a82;
    content: "";
  }
  .heading-category .block::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 356px;
    height: 2px;
    background: #1a4a82;
    content: "";
  }
  .heading-category .heading_subtitle {
    line-height: 1.1;
    color: #1a4a82;
    font-size: 7.7rem;
    text-shadow: 1px 1px #fff,1px -1px #fff,-1px 1px #fff,-1px -1px #fff;
  }
  .heading-category .heading_title {
    line-height: 1.1;
    color: #1a4a82;
    font-size: 3.6rem;
    text-shadow: 1px 1px #fff,1px -1px #fff,-1px 1px #fff,-1px -1px #fff;
  }
  .heading-category .heading_lead {
    position: absolute;
    top: 840px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #033775;
    font-size: 3.6rem;
    text-align: center;
  }
  
  /* ------------------------------------------------------
   * Conditional Elements >>> Navi
  ------------------------------------------------------ */
  /* ----- navi-anchor ----- */
  .navi-anchor {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    margin: 1em 0;
    background: #fff;
    border-top: solid 1px #d3d3d3;
    border-bottom: solid 1px #d3d3d3;
  }
  .navi-anchor .navi-inner {
    -webkit-display: flex;
    display: flex;
  }
  .navi-anchor .navi-inner > li {
    flex: 1;
    position: relative;
  }
  .navi-anchor .navi-inner > li::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 40px;
    margin-top: -20px;
    background: #ccc;
    content: "";
  }
  .navi-anchor .navi-inner > li:first-child::before {
    display: none;
  }
  .navi-anchor .navi-inner > li > a {
    display: block;
    position: relative;
    width: 100%;
    min-height: 88px;
    padding: 24px 10px 20px;
    color: #333;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
  }
  .navi-anchor .navi-inner > li > a:hover {
    color: #0d5eaf;
    text-decoration: none;
  }
  .navi-anchor .navi-inner > li > a::before {
    position: absolute;
    bottom: 12px;
    left: 50%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-top: 1px solid #033775;
    border-right: 1px solid #033775;
    content: "";
  }
  .navi-anchor .navi-inner > li > a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #0d5eaf;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    content: "";
  }
  .navi-anchor .navi-inner > li > a:hover::after {
    width: 100%;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Table
  ------------------------------------------------------ */
  /* ----- table-layout ----- */
  .table-layout {
    margin: 1em 0;
  }
  .table-layout .table_inner {
    width: 100%;
  }
  .table-layout th,
  .table-layout td {
    padding: 14px 20px 13px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    font-weight: normal;
    text-align: left;
  }
  .table-layout thead th {
    vertical-align: middle;
  }
  .table-layout th > *:first-child,
  .table-layout td > *:first-child {
    margin-top: 0 !important;
  }
  .table-layout .cell-style1 {
    background-color: #93a5bd;
    color: #fff;
    font-weight: bold;
  }
  .table-layout .cell-style2 {
    background-color: #eff4fa;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Column
  ------------------------------------------------------ */  
  /* ----- column-layout ----- */
  .column-layout {
    margin: 1em 0;
  }
  .column-layout > .column_item {
    margin-top: 24px;
  }
  .column-layout > .column_item > *:first-child {
    margin-top: 0 !important;
  }
  
  /* ----- column-media ----- */
  .column-media {
    margin: 1em 0;
  }
  .column-media > .column_image > *:first-child,
  .column-media > .column_detail > *:first-child {
    margin-top: 0 !important;
  }
  
  /* data-media-size */
  .column-media[data-media-size="1/2"] > .column_image {
    width: calc((100% - 36px) / 2);
  }
  .column-media[data-media-size="1/3"] > .column_image {
    width: calc((100% - 72px) / 3);
  }
  .column-media[data-media-size="1/4"] > .column_image {
    width: calc((100% - 108px) / 4);
  }
  
  /* data-image */
  .column-media > .column_image[data-image="right"] {
    float: right;
    margin-left: 36px;
  }
  .column-media > .column_image[data-image="left"] {
    float: left;
    margin-right: 36px;
  }
  
  /* data-wraparound */
  .column-media > .column_detail[data-wraparound="false"] {
    overflow: hidden;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Box
  ------------------------------------------------------ */
  /* ----- box-layout ----- */
  .box-layout {
    margin: 1.85em 0 0;
    background-color: #eff4fa;
  }
  .box-layout > .box_inner {
    padding: 34px 40px 33px;
  }
  .box-layout > .box_inner > *:first-child {
    margin-top: 0 !important;
  }
  
  /* ------------------------------------------------------
   * Components
  ------------------------------------------------------ */
  /* ----- map-layout ----- */
  .map-layout {
    margin: 1em 0;
  }
  .map-layout iframe {
    width: 100%;
    height: 500px;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .column-media::after {
    display: block;
    clear: both;
    content: "";
  }
}
