/* ##############################################################################

    GNAV - 02

############################################################################## */

/* grid
*************************************************** */
  .gnav--cont {
    display: grid;
    grid-template-areas:
      'comp page'
      'sub page'
      'tel page'
      'btn page';
    grid-template-columns: calc(260px + 160px) 1fr;
    grid-template-rows: repeat(3,max-content) 1fr;
  }
  .gnav--logo { grid-area: logo; }
  .gnav_list-page { grid-area: page; }
  .gnav_list-comp { grid-area: comp; }
  .gnav .sub_list { grid-area: sub; }
  .gnav .sns_area { grid-area: sns; }
  .gnav .tel_area { grid-area: tel; }
  .gnav .head_btn_list { grid-area: btn; }
  @media screen and (max-width: 1064px) {
    .gnav--cont {
      grid-template-columns: calc(260px + 96px) 1fr;
    }
  }
  @media screen and (max-width: 768px) {
    .gnav--cont {
      grid-template-areas:
        'logo'
        'page'
        'comp'
        'tel'
        'btn'
        'sns'
        'sub';
      grid-template-columns: none;
      grid-template-rows: repeat(7,max-content);
    }
  }

/* common
*************************************************** */
  .gnav--in {
    height: 100%;
    width: 100%;
    margin-left: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gnav--in::before {
    opacity: .95;
  }
  .gnav--cont {
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 120px;
    padding-right: 120px;
  }
  .gnav.pdg-head_btn .gnav--cont {
    padding-bottom: 148px;
  }
  .gnav--cont > * {
    width: 100%;
  }
  @media screen and (max-width: 1280px) {
    .gnav--cont {
      padding-top: 96px;
      padding-bottom: 96px;
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 768px) {
    .gnav--in {
      -webkit-justify-content: start;
      -ms-flex-pack: start;
      justify-content: start;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav--cont {
      padding-top: 72px;
      padding-bottom: 24px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .gnav.pdg-head_btn .gnav--cont {
      padding-bottom: 108px;
    }
  }

/* gnav_layer
*************************************************** */
  .gnav_layer::before {
    opacity: .5;
  }

/* gnav--logo
*************************************************** */
  .gnav--logo {
    position: absolute;
    width: auto;
    top: 47px;
    left: 44px;
  }
  @media screen and (max-width: 560px) {
    .gnav--logo {
      top: 28px;
      left: 28px;
      width: 96px;
    }
  }

/* gnav_list
*************************************************** */
  .gnav_list--item .ico-arrow {
    display: none;
  }
  .gnav_list--item .gnav_list--item_in .label {
    row-gap: 8px;
  }

  /* --- page ---  */
  .gnav_list-page {
    margin-bottom: 40px;
  }
  .gnav_list-page .gnav_list--item_in .txt:nth-of-type(2) {
    font-size: 80%;
    opacity: .65;
  }

  /* --- comp ---  */
  .gnav_list-comp {
    margin-bottom: 32px;
    row-gap: 24px;
  }
  .gnav_list-comp .gnav_list--item_in {
    font-size: 116%;
  }
  .gnav_list-comp .gnav_list--item_in .txt.fnt-en {
    display: none;
  }
  .gnav_list-comp .snav_list {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .gnav_list-comp {
      row-gap: 0;
    }
    .gnav_list--item .gnav_list--item_in {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav_list {
      row-gap: 0;
    }
    .gnav_list--item .gnav_list--item:first-child .gnav_list--item_in {
      padding-top: 0;
    }
    .gnav_list--item .gnav_list--item_in .label {
      row-gap: 10px;
    }
    .gnav_list-page,
    .gnav_list-comp {
      margin-bottom: 28px;
    }
    .gnav_list-page .gnav_list--item_in .txt:nth-of-type(2) {
      font-size: 79%;
    }
    .gnav_list-comp .gnav_list--item_in {
      font-size: 112%;
    }
    .gnav_list-comp .gnav_list--item:not(:last-child) .gnav_list--item_in .txt::after {
      margin-left: 6px;
      margin-right: 6px;
    }
  }

/* snav_list
*************************************************** */
  .snav_list {
    margin-top: 16px;
    row-gap: 8px;
    padding-left: 16px;
  }
  .snav_list--item_in .ttl {
    column-gap: 8px;
  }
  @media screen and (max-width: 560px) {
    .snav_list {
      margin-top: 12px;
      row-gap: 6px;
      padding-left: 12px;
    }
  }

/* sub_list
*************************************************** */
  .gnav .sub_list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  @media screen and (max-width: 768px) {
    .gnav .sub_list {
      margin-top: 16px;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 16px;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav .sub_list--item {
      font-size: 88%;
    }
  }

/* sns_list
*************************************************** */
  .gnav .sns_area {
    position: fixed;
    width: auto;
    right: 120px;
    bottom: 80px;
    column-gap: 16px;
  }
  .gnav .sns_list {
    column-gap: 8px;
  }
  @media screen and (max-width: 1280px) {
    .gnav .sns_area {
      right: 40px;
      bottom: 48px;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav .sns_area {
      position: static;
      margin-top: 24px;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }

/* tel_area
*************************************************** */
  .tel_area {
    margin-top: 40px;
  }
  .tel_area .tel {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px;
  }
  .tel_area a {
    column-gap: 8px;
    font-size: 187%;
    line-height: 1em;
  }
  .tel_area a svg {
    width: 28px;
    height: 28px;
  }
  .tel_area .open_close {
    font-size: 86%;
    opacity: .8;
  }
  @media screen and (max-width: 768px) {
    .tel_area {
      margin-top: 16px;
    }
    .tel_area .tel {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .tel_area a {
      column-gap: 8px;
      font-size: 200%;
    }
    .tel_area a svg {
      width: 26px;
      height: 26px;
    }
  }

/* head_btn_list
*************************************************** */
  .gnav .head_btn_list {
    margin-top: 24px;
    width: 260px;
  }
  .gnav .head_btn_list.head_btn_clm-1 .head_btn_list--item {
    width: 100%;
  }
  .gnav .head_btn_list.head_btn_clm-2 .head_btn_list--item {
    width: 50%;
  }
  .gnav .head_btn_list.head_btn_clm-3 .head_btn_list--item {
    width: calc(100% / 3);
  }
  .gnav .head_btn_list--item .head_btn--in {
    height: 80px;
    column-gap: 0px;
  }
  .gnav .head_btn_list--item .label {
    row-gap: 8px;
  }
  .gnav .head_btn_list--item .txt:nth-of-type(1) {
    font-size: 120%;
  }
  .gnav .head_btn_list--item .txt:nth-of-type(2) {
    font-size: 80%;
  }
  @media screen and (max-width: 768px) {
    .gnav .head_btn_list {
      width: 100%;
    }
    .gnav .head_btn_list--item .head_btn--in {
      height: 56px;
      column-gap: 16px;
    }
    .gnav .head_btn_list--item .txt:nth-of-type(1) {
      font-size: 108%;
    }
  }


/* ##############################################################################

    TAP TRUE

############################################################################## */
  @media screen and (min-width: 769px) {
    .header.slide_true .snav_list--item-parent {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    .header.slide_true .gnav_sub {
      margin-top: -40px;
    }
    .header.slide_true .gnav_list-comp .gnav_list--item.has_sub .gnav_list--item_in {
      padding-right: 0;
    }
    .header.slide_true .gnav_list-comp .gnav_list--item.has_sub .gnav_list--item_in .ico-arrow {
      display: none;
    }
  }
