@charset "utf-8";

/* ======================================================
 * layout_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - common_new
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * common_new
  ------------------------------------------------------ */
  /* ----- font ----- */
  body {
    font-family: Yu Gothic, Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, Osaka, Arial, MS PGothic, sans-serif;
    min-width: calc(1200px + 30px * 2);
  }
  /* ----- a ----- */

  /* ----- opacity ----- */

  /* ----- transition ----- */

  /* ----- sprite ----- */

  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .header {
    width: max(100%, calc(1200px + 30px * 2));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    height: 80px;
    transition: top .25s cubic-bezier(.4,0,.2,1) 0s;
    box-shadow: 0 0 8px #dadada;
  }
  .header.is-not-fixed {
    top: -80px;
    box-shadow: none;
  }
  .header_inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .header_head {
    flex-shrink: 0;
  }
  .header-logoType:hover {
    opacity: .7;
  }
  .header_body {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
  }

  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .GnavBody {
  }

  /* ----- gnav-list ----- */
  .gnav-list {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    height: 100%;
    margin-top: 4px;
    column-gap: 6px;
  }
  .gnav-listList1,
  .gnav-listList2,
  .gnav-listList3,
  .gnav-listList4,
  .gnav-listList5 {
    width: 164px;
    height: 74px;
    border-radius: 0 0px 6px 6px;
    border: 1px solid #ccc;
    border-top-width: 9px;
  }
  .gnav-listList1 {
    border-color: #ff6000;
  }
  .gnav-listList2 {
    border-color: #ffba00;
  }
  .gnav-listList3 {
    border-color: #1dc88a;
  }
  .gnav-listList4 {
    border-color: #0090ff;
  }
  .gnav-listList5 {
    border-color: #999;
  }
  a.gnav-listType {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
  }
  a.gnav-listType:hover .gnav-listLabel {
    text-decoration: underline;
  }
  .gnav-listLabel {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    color: #333;
    margin-top: 4px;
  }
  /* ----- type-menu ----- */
  .type-menu {
    display: none;
  }
  #nav-menu__sp, #nav-menu {
    display: none !important;
  }
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
    overflow: hidden;
    padding-top: 80px;
  }
  .MainBody {
  }

  /* ----- pageGuide ----- */
  .pageGuide {
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  /* breadcrumbs */
  .breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
  }
  .container[data-wide="true"] .breadcrumbs {
    max-width: 100%;
  }
  .breadcrumbs > li {
    position: relative;
    float: left;
    padding: 0 13px 0 20px;
  }
  .breadcrumbs > li::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    font-weight: normal !important;
  }
  .breadcrumbs > li:first-child {
    padding-left: 0;
  }
  .breadcrumbs > li:first-child::before {
    display: none;
  }
  .breadcrumbs > li:last-child {
    font-weight: bold;
  }

  /* ----- pageHead ----- */
  .pageHead {
  }
  .pageHead .heading-lv1,
  .pageHead .heading-lv1-v2 {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ----- container ----- */
  .container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  /* contents */
  .contents {
  }
  .contents > *:first-child,
  .contents > *:first-child > [class*="heading-lv"] {
    margin-top: 0 !important;
  }
  [data-sidebar="true"] .contents {
    overflow: hidden;
    float: left;
    width: 912px;
  }
  /* sidebar */
  .sidebar {
  }
  [data-sidebar="true"] .sidebar {
    float: right;
    width: 240px;
  }

  /* ------------------------------------------------------
   * Assist
  ------------------------------------------------------ */

  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .footer {
    margin-top: 84px;
    border-top: 1px solid #999;
  }
  .footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 13px;
  }

  /* ----- footer-copyright ----- */
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright_label {
    font-size: 1.2rem;
  }

  /* ----- Pagetop ----- */
  .Pagetop {
  }

  /* ------------------------------------------------------
   * Other
  ------------------------------------------------------ */

  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .breadcrumbs::after,
  .container::after {
    display: block;
    clear: both;
    content: "";
  }
}

/* ======================================================
 * Media Queries
====================================================== */
/***
@media screen and (min-width: 1921px) {
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
}
***/


/* ======================================================
 * Print
====================================================== */
@media print {
  .sp-hidden,
  .Pagetop {display:none!important;}
}