@charset "Shift_JIS";
/* header */
.head-wrap {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.head-wrap h1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 999px){
  .head-wrap {
    height: 36px;
    padding: 4px;
    background: var(--color-headline);
  }
  .head-wrap .inner {
    align-items: center;
  }
  .head-wrap h1 {
    height: 26px;
  }
}
@media screen and (min-width: 1000px){
  .head-wrap {
    height: 150px;
    background: var(--color-header);
    box-shadow: unset;
  }
  .head-wrap header {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  .head-wrap .inner {
    height: 100px;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .head-wrap h1 {
    height: 54px;
    max-width: 35%;
  }
  .head-wrap .header-info {
    color: var(--color-menu-txt);
  }
  .head-wrap .header-info .sns {
    position: absolute;
    right: 18px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: right;
    gap: 18px;
  }
  .head-wrap .header-info .sns a {
    display: block;
    height: 36px;
    width: 36px;
  }
  .head-wrap .header-info .sns a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .head-wrap .header-info p:first-of-type {
    font-size: 24px;
  }
  .head-wrap .header-info p:first-of-type .small {
    font-weight: normal;
  }
  .head-wrap .header-x-icon {
    width: 32px;
    position: absolute;
    bottom: 6px;
    right: 24px;
  }
  .head-wrap .header-x-icon a {
    width: 32px;
    height: 33px;
    display: block;
    mask-image: url(../../temp5/img/sns/x-logo.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background: var(--color-white);
    transition: 1s;
  }
  .head-wrap .header-x-icon a:hover {
    background: #32889a;
  }
  .head-wrap .pc-header-nav {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .head-wrap .pc-header-nav a {
    padding: 8px 20px;
    font-size: 92% !important;
    font-weight: 700;
    color: var(--color-menu-txt);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 1s;
  }
  .head-wrap .pc-header-nav a .small {
    font-weight: normal;
  }
  .head-wrap .pc-header-nav a:hover {
    background: #32889a;
    color: var(--color-white);
  }
}