@charset "UTF-8";
:root {
  --font-default-jp: "Noto Sans JP", sans-serif;
  --font-primary: "Rubik", sans-serif;
  --font-secondary-jp: "Zen Kaku Gothic New", sans-serif;
  --font-accent: "Josefin Sans", sans-serif;
  --fs-small: 12px;
  --fs-base: 16px;
  --fs-medium: 18px;
  --color-navy: rgba(46, 49, 80, 1);
  --color-darkBlue: rgba(137, 140, 167, 1);
  --color-mint: rgba(220, 240, 223, 1);
  --color-black: rgba(51, 51, 51, 1);
  --color-deep-blue: rgba(62, 67, 101, 1);
  --color-slate-blue: rgba(184, 187, 209, 1);
  --color-indigo-dark: rgba(105, 109, 138, 1);
  --color-light-gray-blue: rgba(199, 202, 223, 1);
  --color-stone-gray: rgba(182, 200, 216, 1);
  --color-forest-green: rgba(47, 109, 58, 1);
  --color-leaf-green: rgba(111, 191, 126, 1);
  --color-pale-green: rgba(237, 248, 239, 1);
  --color-sage-green: rgba(184, 225, 192, 1);
  --color-nature-green: rgba(69, 151, 84, 1);
  --color-white: rgba(255, 255, 255, 1);
  --padding-sp: 0 1rem;
  --padding-pc: 0 1.875rem;
  --sidebar-width: 246px;
  --sidebar-width-small: 206px;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
  overflow-x: hidden;
}

.header {
  position: relative;
}
.header__top {
  position: fixed;
  top: 0;
  z-index: 33;
  --header--height: 56px;
  width: 100%;
  height: var(--header--height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .header__top--fixed {
    position: fixed;
    top: 0;
  }
}
.header__top-group {
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .header__top {
    display: none;
  }
}
.header__logo img {
  width: 40px;
}
.header__tagline {
  font-family: var(--font-secondary-jp);
  color: var(--color-navy);
  flex-grow: 1;
}
.header__tagline h1 {
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
  margin-left: 6px;
  font-weight: 700;
}
.header__tagline-highlight {
  font-size: var(--fs-base);
  margin-left: 5px;
  font-weight: 700;
}
.header__hamburger {
  position: relative;
  border: none;
  background: none;
  width: 40px;
  -webkit-appearance: none;
  aspect-ratio: 1;
}
.header__hamburger span {
  position: absolute;
  display: block;
  width: 13.33px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -1px); /*1px=ハンバーガーメニューのタグをひし形の中央に*/
  transition: transform 200ms;
}
.header__hamburger--line-1 {
  margin: -5px 0 0;
}
.header__hamburger--line-3 {
  margin: 5px 0 0;
}
.header__hamburger--active .header__hamburger--line-1 {
  transform: translate(-50%, 0px) rotate(45deg);
  margin: 0;
}
.header__hamburger--active .header__hamburger--line-2 {
  opacity: 0;
}
.header__hamburger--active .header__hamburger--line-3 {
  transform: translate(-50%, 0px) rotate(-45deg);
  margin: 0;
}
.header__hamburger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 28px;
  -webkit-appearance: none;
  aspect-ratio: 1;
  background: transparent;
  transform: rotate(45deg) translate(50%, -50%);
  transform-origin: right top;
  z-index: -1;
  border: 1px solid var(--color-navy);
}