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

    MEGAMENU - 02

############################################################################## */
  .megamenu {
    position: absolute;
    top: calc(100% - 12px);
    right: 40px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    width: 100%;
    max-width: 820px;
    padding-top: 20px;
  }
  .megamenu--in {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .megamenu--in::before {
    border-radius: 8px;
    background-color: rgba(240,240,240,.8);
  }
  .megamenu--in::after {
    border-radius: 4px;
    inset: 8px;
  }
  .megamenu .inner {
    max-width: 740px;
    column-gap: 40px;
  }
  .megamenu_desc {
    width: 260px;
  }
  .megamenu_desc .ttl a {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .megamenu_desc .img_area {
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 12px;
  }
  .megamenu_desc .img_area .bg_img {
    background-color: #ccc;
  }
  .megamenu_list {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .megamenu_list--item {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .megamenu_list--item_in {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 10px;
  }
  .megamenu_list--item_in::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    translate: 0 -50%;
    width: 4px;
    height: 4px;
  }
  .megamenu_list--item .img_area {
    display: block;
  }
  .megamenu_list--item .ttl {
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .megamenu_list--item .ico {
    width: 12px;
    height: 12px;
  }
  @media (any-hover: hover) {
    .hnav_list--item:hover .megamenu {
      opacity: 1;
      pointer-events: all;
    }
  }