@charset "UTF-8";
/* ======================================================
 * header
====================================================== */
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 769px) {
  .Header {
    padding: 0 10px;
    background-color: #000;
  }
  .Header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: 64px;
    margin: 0 auto;
    background-color: #000;
  }
  .Header__head {
    padding: 10px 0;
    flex-shrink: 0;
  }
  .Header__body {
    flex: auto;
    margin-left: 15px;
  }
  .Header__foot {
    flex-shrink: 0;
    margin-left: 50px;
  }

  .header-logo > a {
    display: flex;
    align-items: center;
  }
  .header-logo__text {
    height: 30px;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
  }

  .header-gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 64px;
  }
  .header-gnav__item {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    margin-left: 45px;
  }
  a.header-gnav__link,
  .header-gnav__btn {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
  }
  a.header-gnav__link:visited,
  a.header-gnav-more__item a:visited {
    color: #fff;
  }
  .header-gnav__link:hover,
  .header-gnav__btn:hover,
  .header-gnav-more__link:hover {
    color: #fff;
  }
  .header-gnav-more {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 180px;
    background-color: #000;
    z-index: 100;
    transform: translateX(-50%);
  }
  .header-gnav-more__item {
    position: relative;
  }
  .header-gnav-more__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 160px;
    height: 1px;
    background-color: #4d4d4d;
    transform: translateX(-50%);
  }
  .header-gnav-more__item:first-of-type::before {
    content: none;
  }
  a.header-gnav-more__link {
    display: block;
    width: 100%;
    padding: 10px;
    color: #ccc;
    font-size: 13px;
    text-align: center;
  }
  .header-gnav__trigger {
    position: relative;
    padding-left: 17px;
  }
  .header-gnav__trigger::before,
  .header-gnav__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 1px;
    margin: -1px 0 0 0;
    background-color: #fff;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .header-gnav__trigger::before {
    transform: rotate(90deg);
  }
  .header-gnav__trigger.is-active::before {
    transform: rotate(0deg);
  }


  /* ------------------------------------------------------
   * Header__important
  ------------------------------------------------------ */
  .Header__important {
    display: none;
    margin: 0 -10px;
    background-color: #ffd9dd;
  }
  .Header__important__inner {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 1200px;
    margin: 0 auto;
    padding: 8px 15px;
    font-size: 14px;
    background-color: #ffd9dd;
  }
  .Header__important__title {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 5px;
    color: #ac2330;
    font-weight: bold;
  }
  .Header__important__list {
    display: flex;
    flex-flow: row wrap;
    gap: 5px 15px;
  }
  .Header__important__item {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}

@media print, screen and (max-width: 1024px) and (min-width: 861px) {
  .header-gnav__item {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 860px) and (min-width: 769px) {
  .header-gnav__list {
    flex-wrap: wrap;
    height: 100%;
  }
}

/* ======================================================
 * SP
====================================================== */
@media print, screen and (max-width: 768px) {
  .Header {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #000;
    z-index: 2147483640;
  }
  .Header.is-scrollingUp {
    position: fixed;
    top: 0;
    left: 0;
  }
  .Header__inner {
    display: flex;
    align-items: center;
    padding: 5px 15px 6px;
    height: 40px;
  }

  .header-logo > a {
    display: flex;
    align-items: center;
  }
  .header-logo__icon {
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .header-logo__text {
    height: 20px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2;
  }

  .header-gnav__wrap {
    display: none;
    position: fixed;
    top: 40px;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: calc(100vh - 40px);
    background-color: #fff;
    z-index: 1;
  }
  .header-gnav__menu {
    display: block;
    position: absolute;
    top: 2px;
    right: 5px;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%;
    transition: none;
  }
  .header-gnav__menu:hover {
    opacity: 1;
  }
  .header-gnav__menu__icon {
    display: block;
    overflow: hidden;
  }
  .header-gnav__inner {
    padding: 20px 15px 110px;
    line-height: 1.2;
  }
  .header-gnav__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }
  .header-gnav__btn {
    width: calc((100% - 15px) / 2);
  }
  .header-gnav__btn a {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 42px;
    padding: 5px 15px;
    border: 1px solid #666;
    border-radius: 10px;
    background-color: #fff;
  }
  .header-gnav__btn a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 12px;
    background-color: #666;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateY(-50%);
  }
  .header-gnav__section {
    margin-top: 20px;
  }
  .header-gnav__title {
    padding: 6px 10px 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    background-color: #f2f2f2;
  }
  .header-gnav__list[data-col-sp="2"] {
    display: flex;
    flex-flow: row wrap;
    gap: 0 15px;
  }
  [data-col-sp="2"] .header-gnav__item {
    width: calc((100% - 15px) / 2);
  }
  .header-gnav__item {
    border-bottom: 1px solid #f2f2f2;
  }
  .header-gnav__item > a {
    display: flex;
    align-items: center;
    gap: 0 5px;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 50px;
    padding: 10px 30px 10px 15px;
    font-size: 14px;
  }
  .header-gnav__item > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 12px;
    background-color: #666;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transform: translateY(-50%);
  }

  /* ------------------------------------------------------
   * Header__important
  ------------------------------------------------------ */
  .Header__important {
    display: none;
    padding: 0 15px 15px;
    background-color: #ffeef0;
  }
  .Header__important__title {
    padding-top: 15px;
    color: #ac2330;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }
  .Header__important__item {
    margin-top: 10px;
    font-size: 14px;
  }
  .Header__important__item a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  .Header__important__item a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0.55em;
    left: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5f6b78;
    border-right: 2px solid #5f6b78;
    transform: rotate(45deg);
  }
}