@charset "UTF-8";
/* =======================================================
　基本設定
======================================================= */
:root {
  --color-brightest: #fff;
  --color-contrast: #edeae2;
  --color-contrast02: #efeeed;
  --color-base: #261b05;
  --color-base02: #222;
  --color-main: #00a0a8;
  --color-accent: #ffda0f;
  --color-primary: #ea2e46;
  --color-sub: #89dde1;
  --z-index-max: 9999;
  --z-index-burger: 9100;
  --z-index-header: 9000;
  --z-index-on: 2;
  --transition-duration: 0.5s;
  --font-base-offset-top: 0.07em;
  --border-radius: 8px;
  --font-family-base: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", yugothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-family-rounded: "Rounded Mplus 1c", serif;
  --font-family-lobster: "Lobster12", serif;
  --font-family-mairyo: Meiryo, "メイリオ", sans-serif;
  --font-weight-base: 700;
}
/* =======================================================
header
======================================================= */
@media (width <= 767px) {
  #header {
    height: 60px;
    border-bottom: revert;
  }
  #header .wrapper {
    height: 100%;
  }
  .site_title {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 24px;
  }
  .site_title a {
    display: grid;
    width: 65px;
  }
  #pNav_sp {
    position: fixed;
    top: 8px;
    right: 147px;
    z-index: var(--z-index-max);
    display: revert;
  }
  #pNav_sp a {
    display: grid;
    place-content: center;
    width: fit-content;
    min-width: 78px;
    padding-block: calc(var(--_padding-block) - var(--font-base-offset-top)) calc(var(--_padding-block) + var(--font-base-offset-top));
    font-family: var(--font-family-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    background-color: var(--color-accent);
    border-radius: 10px;
    box-shadow: revert;
    --_padding-block: 12px;
  }
  #loginNav,
  #spNav {
    width: 66px;
  }
  #loginNav {
    right: 66px;
  }
  #loginNav svg.icon_login {
    top: 4.5px;
    left: 50%;
    width: 36px;
    height: 36px;
    translate: -50%;
  }
  .bl-login-txt {
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 100%;
    font-family: var(--font-family-mairyo);
    font-size: 10px;
    font-weight: 700;
    line-height: calc(15/10);
    color: var(--color-main);
    text-align: center;
    translate: -50%;
  }
  .menu-trigger {
    position: relative;
    top: 11px;
    left: 50%;
    translate: -50%;
    width: 36px;
    height: 22px;
  }
  .menu-trigger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 50%;
    translate: 0 -50%;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger .bl-menu-trigger-txt {
    position: absolute;
    bottom: -21px;
    left: 50%;
    height: auto;
    font-family: var(--font-family-mairyo);
    font-size: 10px;
    font-weight: 700;
    line-height: calc(15/10);
    color: var(--color-brightest);
    text-align: center;
    background-color: transparent;
    translate: -50%;
  }
  .active .bl-menu-trigger-txt {
    display: none;
  }
  .active .menu-trigger {
    top: 50%;
    translate: -50% -50%;
  }
  .active .menu-trigger span:nth-of-type(1) {
    top: 50%;
    translate: 0 -50%;
    rotate: -45deg;
  }
  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .active .menu-trigger span:nth-of-type(3) {
    top: 50%;
    translate: 0 -50%;
    bottom: revert;
    rotate: 45deg;
  }
}