@charset "UTF-8";
:root {
  --header-logo-height: 36px;
  --hmenu-logo-height: 56px;
  --hmenu-padding-multiplier: 4;
  --hmenu-width-minuend: 40vw;
  --hmenu-height-minuend: 20vh;
  --hmenu-close-btn-width: 42px;
  --hmenu-columns: 1fr 1fr;
  --hmenu-fade-height: 50px;
}
@media (width <= 768px) {
  :root {
    --header-logo-height: 28px;
    --hmenu-logo-height: 42px;
    --hmenu-padding-multiplier: 3;
    --hmenu-width-minuend: 20vw;
    --hmenu-close-btn-width: 36px;
    --hmenu-columns: 1fr 1fr;
    --hmenu-fade-height: 32px;
  }
}
@media (width <= 480px) {
  :root {
    --header-logo-height: 20px;
    --hmenu-logo-height: 24px;
    --hmenu-padding-multiplier: 2;
    --hmenu-width-minuend: 12vw;
    --hmenu-close-btn-width: 24px;
    --hmenu-columns: 1fr;
    --hmenu-fade-height: 20px;
  }
}

body header {
  position: sticky;
  z-index: 99999;
  background-color: var(--color-white);
  top: var(--margin-value);
  left: 0;
  margin: var(--margin-value);
  padding: var(--padding-value);
  border-radius: var(--border-radius);
  box-shadow: 0 0 var(--shadow-value) var(--color-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header a img {
  height: var(--header-logo-height);
}
body header a span.service-name {
  font-size: var(--fontsize-large);
}
body header .header-right {
  display: flex;
  align-items: center;
}
body header .header-right a.login-btn {
  background-color: var(--color-azure);
  color: var(--color-white);
  border-radius: var(--border-circle);
  padding: calc(var(--padding-value) / 2) var(--padding-value);
  margin-right: var(--margin-value);
}
body header .header-right #hmenu-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-disabled);
  z-index: 999999;
  -webkit-backdrop-filter: blur(var(--blur-value));
          backdrop-filter: blur(var(--blur-value));
}
body header .header-right #hmenu #hmenu-container {
  display: none;
  position: fixed;
  width: calc(100% - var(--hmenu-width-minuend));
  height: calc(100% - var(--hmenu-height-minuend));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000000;
  background-color: var(--color-white);
  box-shadow: 0 0 var(--shadow-value) var(--color-shadow);
  border-radius: var(--border-radius);
  padding: calc(var(--modal-padding-multiplier) * var(--padding-value));
  border-radius: var(--border-radius);
}
body header .header-right #hmenu #hmenu-container #hmenu-close-btn {
  width: var(--hmenu-close-btn-width);
  height: var(--hmenu-close-btn-width);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-color: var(--color-white);
  box-shadow: 0 0 var(--shadow-value) var(--color-shadow);
  padding: 0.5em;
  border-radius: var(--border-circle);
  cursor: pointer;
}
body header .header-right #hmenu #hmenu-container #hmenu-content {
  height: 100%;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  padding: var(--hmenu-fade-height) 0;
  /*Google Chrome、Safariへの対応*/
}
body header .header-right #hmenu #hmenu-container #hmenu-content::-webkit-scrollbar {
  display: none;
}
body header .header-right #hmenu #hmenu-container #hmenu-content .hmenu-fade {
  position: absolute;
  width: calc(100% - 2 * var(--modal-padding-multiplier) * var(--padding-value));
  height: var(--hmenu-fade-height);
}
body header .header-right #hmenu #hmenu-container #hmenu-content .hmenu-fade:first-of-type {
  top: calc(var(--modal-padding-multiplier) * var(--padding-value));
  left: calc(var(--modal-padding-multiplier) * var(--padding-value));
  background: linear-gradient(to bottom, var(--color-white), transparent);
}
body header .header-right #hmenu #hmenu-container #hmenu-content .hmenu-fade:last-of-type {
  bottom: calc(var(--modal-padding-multiplier) * var(--padding-value));
  right: calc(var(--modal-padding-multiplier) * var(--padding-value));
  background: linear-gradient(to top, var(--color-white), transparent);
}
body header .header-right #hmenu #hmenu-container #hmenu-content > a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
body header .header-right #hmenu #hmenu-container #hmenu-content > a img {
  height: var(--hmenu-logo-height);
}
body header .header-right #hmenu #hmenu-container #hmenu-content section {
  margin-top: calc(var(--modal-padding-multiplier) * var(--padding-value));
}
body header .header-right #hmenu #hmenu-container #hmenu-content section h1 {
  text-align: center;
  font-size: var(--fontsize-large);
  margin-bottom: var(--margin-value);
}
body header .header-right #hmenu #hmenu-container #hmenu-content section ul {
  text-align: center;
  padding-bottom: var(--padding-value);
  display: grid;
  grid-auto-flow: row;
  gap: var(--margin-value);
  align-items: stretch;
  grid-template-columns: var(--hmenu-columns);
}
body header .header-right #hmenu #hmenu-container #hmenu-content section ul li {
  background-color: var(--color-palegray);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .header-right #hmenu #hmenu-container #hmenu-content section ul li:has(a.lock) {
  background-color: color-mix(in srgb, var(--color-palegray), black 30%);
  color: var(--color-white);
}
body header .header-right #hmenu #hmenu-container #hmenu-content section ul li a {
  padding: var(--padding-value);
  display: block;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .header-right #hmenu #hmenu-container #hmenu-content section ul li a img {
  height: 1.4em;
}
body header .header-right #hmenu #hmenu-container #hmenu-content p {
  text-align: center;
}
body header .header-right #hmenu #hmenu-container #hmenu-content p.service-name {
  font-size: var(--fontsize-large);
}
body header .header-right #hmenu #hmenu-container #hmenu-content p:not(.service-name) {
  margin: var(--margin-value);
  color: var(--color-gray);
}/*# sourceMappingURL=header.css.map */