@charset "utf-8";
/* CSS Document */

/* ==========================
   PC Global Navigation
========================== */

    .ohtaya-pcnav,
    .ohtaya-pcnav * {
      box-sizing: border-box;
    }

    .ohtaya-pcnav {
      display: block;
      width: 950px;
      background: #ffffff;
      border-bottom: 1px solid #d8d8d8;
      font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
      position: relative;
      z-index: 1000;
      margin: auto;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
    }

    .ohtaya-pcnav__inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .ohtaya-pcnav__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 55px;
    }

    .ohtaya-pcnav__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .ohtaya-pcnav__logo img {
      display: block;
      width: 88%;
      max-height: 117px;
      padding-left: 24px;
    }

    .ohtaya-pcnav__emergency {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 214px;
      height: 56px;
      padding: 0 22px;
      background: #368262;
      color: #ffffff;
      border-radius: 12px 12px 0 0;
      font-size: 17px;
      font-weight: 700;
      line-height: 1;
      text-decoration: none;
      letter-spacing: .04em;
    }

    .ohtaya-pcnav__emergency span {
      margin-right: 4px;
      color: #ffd400;
      font-size: 14px;
    }

    .ohtaya-pcnav__menu {
      width: 100%;
    }

    .ohtaya-pcnav__list {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      margin: 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid #e6e6e6;
      border-left: 1px solid #e6e6e6;
    }

    .ohtaya-pcnav__item {
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none;
      border-right: 1px solid #e6e6e6;
    }

    .ohtaya-pcnav__link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-height: 45px;
      padding: 8px 10px;
      color: #333333;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.4;
      text-align: center;
      text-decoration: none;
      background: #ffffff;
      transition: background .2s ease, color .2s ease;
    }

    .ohtaya-pcnav__item:hover>.ohtaya-pcnav__link,
    .ohtaya-pcnav__item:focus-within>.ohtaya-pcnav__link {
      background: #f7f3eb;
      color: #8a6a3f;
    }

    .ohtaya-pcnav__arrow {
      display: inline-block;
      color: #b49b75;
      font-size: 10px;
      line-height: 1;
      transform: translateY(1px);
    }

    /* Dropdown / Mega menu */
    .ohtaya-pcnav__dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      width: 260px;
      padding-top: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
      pointer-events: none;
      z-index: 1010;
    }

    .ohtaya-pcnav__item:hover>.ohtaya-pcnav__dropdown,
    .ohtaya-pcnav__item:focus-within>.ohtaya-pcnav__dropdown {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
      pointer-events: auto;
    }

    .ohtaya-pcnav__dropdownInner {
      background: #ffffff;
      border: 1px solid #e5ddd2;
      border-radius: 0 0 14px 14px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .13);
      overflow: hidden;
    }

    .ohtaya-pcnav__dropdownTitle {
      margin: 0;
      padding: 12px 16px;
      background: #f7f3eb;
      color: #5a3f24;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
    }

    .ohtaya-pcnav__childList {
      margin: 0;
      padding: 8px 0;
      list-style: none;
    }

    .ohtaya-pcnav__childList li {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .ohtaya-pcnav__childList a {
      position: relative;
      display: block;
      padding: 10px 16px 10px 28px;
      color: #333333;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.5;
      text-decoration: none;
      transition: background .2s ease, color .2s ease;
    }

    .ohtaya-pcnav__childList a::before {
      content: "▶";
      position: absolute;
      top: 50%;
      left: 14px;
      color: #8a6a3f;
      font-size: 9px;
      transform: translateY(-50%);
    }

    .ohtaya-pcnav__childList a:hover,
    .ohtaya-pcnav__childList a:focus {
      background: #fff4f1;
      color: #8f241a;
    }

    /* SPでは非表示 */
    @media screen and (max-width: 900px) {
      .ohtaya-pcnav {
        display: none !important;
      }
    }
