/* ========== Header ========== */
:root {
  --header-h: 72px;
  /* Ã£Æ’ËœÃ£Æ’Æ’Ã£Æ’â‚¬Ã£Æ’Â¼Ã©Â«ËœÃ£Ââ€¢Ã¯Â¼Ë†Ã¥Â¿â€¦Ã¨Â¦ÂÃ£ÂÂ«Ã¥Â¿Å“Ã£ÂËœÃ£ÂÂ¦Ã¨ÂªÂ¿Ã¦â€¢Â´Ã¯Â¼â€° */
}

body {
  padding-top: var(--header-h);
}

.l_header {
  background: rgba(255, 255, 255, 1.0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.l_header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.l_header__brandLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  color: #111;
}

.l_header__logo {
  height: 42px;
  width: auto;
  display: block;
  /* display: none; */
}

.l_header__brandText {
  display: grid;
  line-height: 1.15;
  gap: 4px;
}

.l_header__brandLead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, .62);
}

.l_header__brandName {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #111;
}

.l_header__nav {
  margin-left: auto;
}

.l_header__menu {
  display: flex;
  align-items: center;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l_header__link {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  position: relative;
  padding: 8px 2px;
}

.l_header__link:hover {
  opacity: .75;
}

.l_header__topbar {
  background: var(--accent);
  width: 100%;
  padding: 10px 10px;
}

.l_header__SNS {
  width: 100%;
  display: flex;
  justify-content: end;
  column-gap: 10px;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
}

.l_header__SNS a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 1px solid #fff;
  padding: 7px;
  border-radius: 999px; */
}

.l_header__SNS .sns-icon {
  width: 20px;
  height: auto;
  display: block;
}

.l_header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 10px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.l_header__btn--contact {
  background: var(--accent);
  color: #fff;
}

/* ========== SP toggle ========== */
.l_header__toggle {
  display: none;
  /* 1024Ã¦Å“ÂªÃ¦Âºâ‚¬Ã£ÂÂ§Ã¨Â¡Â¨Ã§Â¤ÂºÃ£Ââ€¢Ã£Ââ€ºÃ£â€šâ€¹ */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.l_header__toggleLines {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  margin: 0 auto;
}

.l_header__toggleLines::before,
.l_header__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #111;
}

.l_header__toggleLines::before {
  top: -7px;
}

.l_header__toggleLines::after {
  top: 7px;
}

/* ========== Drawer ========== */
html.is-locked,
html.is-locked body {
  overflow: hidden;
}

.l_drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.l_header.is-drawer-open .l_drawer {
  display: block;
}

.l_drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.l_drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 74px);
  background: #fff;
  padding: 18px 18px 22px;
  box-shadow: -12px 0 32px rgba(0, 0, 0, .16);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.l_drawer__close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.l_drawer__nav {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  margin: 0 auto;
  width: 100%;
}

.l_drawer__link {
  text-decoration: none;
  color: #111;
  font-weight: 800;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  text-align: center;
  font-size: clamp(18px, 5vw, 24px);
}

.l_drawer__SNS {
  display: grid;
  width: 100%;
  max-width: 450px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 auto;
}

.l_drawer__SNS a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.l_drawer__SNS .sns-icon {
  width: 40px;
  height: auto;
  display: block;
}



.popup__line {
    display: flex;
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 15;
    width: 70px;
    /* height: 200px; */
    box-shadow: -3px 5px 10px #aaa;
    /* border-radius: 50px; */
}

.popup__line p {
    /* writing-mode: initial; */
    font-size: 20px;
    font-weight: bold;
    text-align: center!important;
    line-height: 1em;
    padding: 0;
    height: 100%;
    width: 1em;
    margin: 0 auto;
    color: #fff;
    font-family: Meiryo;
}

.popup__line .sns-icon {
    background: #fff;
    padding: 5px;
    /* border-radius: 50%; */
    border: 1px solid #fff;
}

.l_header__LINE {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: var(--lineGreen);
    /* border-radius: 999px; */
    width: 100%;
    height: 100%;
    /* aspect-ratio: 1 / 1; */
    font-size: 11px;
    text-align: center;
    gap: 10px;
    /* color: var(--lineGreen); */
    line-height: 1.3em;
}



/* ========== ResponsiveÃ¯Â¼Ë†Ã©â€¡ÂÃ¨Â¦ÂÃ¯Â¼Å¡Ã£Æ’â€“Ã£Æ’Â¬Ã£â€šÂ¤Ã£â€šÂ¯Ã£Æ’ÂÃ£â€šÂ¤Ã£Æ’Â³Ã£Æ’Ë†Ã£â€šâ€™1024Ã£ÂÂ«Ã¯Â¼â€° ========== */
@media (max-width:1023px) {
  .l_header__nav {
    display: none;
  }

  .l_header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* SPÃ£ÂÂ§Ã£Æ’Â­Ã£â€šÂ´Ã£ÂÂ¨Ã¦â€“â€¡Ã¥Â­â€”Ã£ÂÅ’Ã¨Â©Â°Ã£ÂÂ¾Ã£â€šâ€¹Ã¥Â Â´Ã¥ÂË†Ã£ÂÂ®Ã¤Â¿ÂÃ©â„¢Âº */
  .l_header__brandName {
    font-size: 14px;
  }

  .l_header__brandLead {
    font-size: 11px;
  }
}

@media screen and (max-width:767px) {
  .popup__line {
    display: none;
  }
}


@media screen and (max-width:425px) {
  .l_header__logo {
    height: 30px;
  }

  .l_header__inner {
    gap: 0;
  }
}


/* overlay / panel Ã£ÂÂ®Ã§Â©ÂÃ¥Â±Â¤Ã£â€šâ€™Ã¦ËœÅ½Ã§Â¤ÂºÃ¯Â¼Ë†Ã¤Â¿ÂÃ©â„¢ÂºÃ¯Â¼â€° */
.l_drawer__overlay {
  z-index: 0;
}

.l_drawer__panel {
  z-index: 1;
}

/* Ã£â€šÂ¿Ã£Æ’Æ’Ã£Æ’â€”Ã¥ÂÂÃ¥Â¿Å“Ã£â€šâ€™Ã¨â€°Â¯Ã£ÂÂÃ£Ââ„¢Ã£â€šâ€¹Ã¤Â¿ÂÃ©â„¢Âº */
.l_drawer__link {
  touch-action: manipulation;
}