header {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  padding: 2rem 1em 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background 0.3s, box-shadow 0.3s;
}
@media all and (min-width: 1024px) {
  header.js-is-scroll {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 1rem 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
@media all and (max-width: 1023px) {
  .front header, .under header {
    padding: 0;
  }
}
@media all and (max-width: 1023px) {
  .front header {
    width: 100%;
    max-height: 100%;
    background: rgba(0, 0, 0, 0.75) url(../img/dummy/common/header_bg_sp@2x.png) no-repeat center/cover;
    position: fixed;
    overflow-y: auto;
    display: none;
  }
}
@media all and (max-width: 1023px) {
  .under header {
    background: var(--c_white);
  }
}
header > .wrapper {
  max-width: 123rem;
  margin: auto;
}
header > .wrapper .head-grid-wrap {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 2rem 0;
  grid-template-areas: "logo-wrap sub-nav-wrap" "main-nav-wrap main-nav-wrap";
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap {
  grid-area: logo-wrap;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .logo-wrap {
    min-height: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 6rem 0 1rem;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap .logo {
  width: 100%;
  max-width: 42.8rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .logo-wrap .logo {
    max-width: 30.5rem;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap .logo picture {
  width: 100%;
}
header > .wrapper .head-grid-wrap .logo-wrap .logo picture img {
  width: 100%;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap {
  display: contents;
}
@media all and (max-width: 1023px) {
  .front header > .wrapper .head-grid-wrap .sp-contents-wrap, .under header > .wrapper .head-grid-wrap .sp-contents-wrap {
    width: 100%;
    border-top: 0.1rem solid var(--c_white);
    padding: 2rem;
  }
}
@media all and (max-width: 1023px) {
  .front header > .wrapper .head-grid-wrap .sp-contents-wrap {
    display: block;
  }
}
@media all and (max-width: 1023px) {
  .under header > .wrapper .head-grid-wrap .sp-contents-wrap {
    max-height: calc(100svh - 100%);
    background: rgba(0, 0, 0, 0.75) url(../img/dummy/common/header_bg_sp@2x.png) no-repeat center/cover;
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: auto;
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap {
  grid-area: main-nav-wrap;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav {
    flex-flow: column;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li {
  position: relative;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li::after {
  content: "";
  width: 0;
  height: 1.5em;
  border-left: 0.1rem solid var(--c_txt);
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li::after {
    content: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:first-child::before {
  content: "";
  width: 0;
  height: 1.5em;
  border-left: 0.1rem solid var(--c_txt);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:first-child::before {
    content: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > p {
  min-width: 16.4rem;
  font-weight: 300;
  text-align: center;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > p {
    color: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li > p {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:hover > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:hover > p, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:focus-within > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav > li:focus-within > p {
    color: var(--c_primary);
    border-color: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li {
  display: flex;
  flex-flow: column;
  justify-content: stretch;
  align-items: stretch;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li p {
  font-size: 1.7rem;
  border-bottom: 0.3rem solid transparent;
  padding: 0.5em 1rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li p {
    text-align: left;
    color: var(--c_white);
    border: none;
    padding: 0.5em 3rem 0.5em 0;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item {
  position: relative;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item:hover .child-list, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item:focus-within .child-list {
    display: block;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item.active .icon-toggle-obj-sp::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item.active .icon-toggle-obj-sp::after {
    rotate: 180deg;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item.active .icon-toggle-obj-sp::after {
    opacity: 0;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item > p {
  position: relative;
  z-index: 1;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list {
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  min-width: 25rem;
  background: var(--c_white);
  padding: 1em 0 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list {
    width: 100%;
    background: none;
    padding: 0;
    position: static;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li:not(.child-ttl) + li {
  border-top: 0.1rem solid var(--bdr_gray);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li:not(.child-ttl) + li {
    border: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl {
  border-bottom: 0.1rem solid var(--c_primary);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl {
    border: none;
    position: relative;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c_primary);
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl p {
    pointer-events: none;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li.child-ttl p {
    color: var(--c_white);
    padding-right: 3rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p {
  font-size: 1.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1em 2rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p {
    padding: 1em 0 1em 1em;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a span.icon-arrow-obj, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p span.icon-arrow-obj {
  width: 1em;
  height: 1em;
  text-indent: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p span.icon-arrow-obj::before {
  content: "";
  width: 50%;
  height: 50%;
  border-top: 0.1rem solid var(--c_txt);
  border-right: 0.1rem solid var(--c_txt);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p span.icon-arrow-obj::before {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li p span.icon-arrow-obj::before {
    border-color: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a:focus-within {
    color: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a:hover span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav li.parent-item .child-list li a:focus-within span.icon-arrow-obj::before {
    border-color: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-arrow-obj-sp {
  width: 2rem;
  height: 2rem;
  text-indent: 100%;
  border: 0.1rem solid var(--c_white);
  border-radius: 100vw;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  overflow: hidden;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-arrow-obj-sp {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--c_white);
  transition: all 0.3s;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp:before {
  width: 0.8rem;
  height: 0.1rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-toggle-obj-sp::after {
  width: 0.1rem;
  height: 0.8rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .icon-arrow-obj-sp::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid var(--c_white);
  border-right: 0.1rem solid var(--c_white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 0.1rem) -50%;
  rotate: 45deg;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap {
  grid-area: sub-nav-wrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem 0.5rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap {
    flex-flow: column;
    padding-top: 5rem;
    position: relative;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap::before {
    content: "";
    width: calc(100vw - var(--scrollbar));
    height: 0;
    border-top: 0.1rem solid var(--c_white);
    position: absolute;
    top: 2rem;
    left: -2rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sp-sub-nav-contents-wrap {
  display: contents;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sp-sub-nav-contents-wrap {
    width: 100%;
    display: flex;
    flex-flow: column-reverse;
    gap: 2.5rem 0.5rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem 0.5rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem 2.5rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item {
  position: relative;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item:hover .child-list, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item:focus-within .child-list {
    display: block;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item > p {
  position: relative;
  z-index: 1;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  background: var(--c_white);
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
    width: 100%;
    max-width: 100%;
    display: block;
    position: static;
    translate: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li:not(.child-ttl) + li {
  border-top: 0.1rem solid var(--bdr_gray);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl {
  border-bottom: 0.1rem solid var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li p {
  font-size: 1.3rem;
  padding: 1em 2rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a span.icon-arrow-obj, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li p span.icon-arrow-obj {
  width: 1em;
  height: 1em;
  text-indent: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li p span.icon-arrow-obj::before {
  content: "";
  width: 50%;
  height: 50%;
  border-top: 0.1rem solid var(--c_txt);
  border-right: 0.1rem solid var(--c_txt);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li p span.icon-arrow-obj::before {
    transition: all 0.3s;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:focus-within {
    color: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:hover span.icon-arrow-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:focus-within span.icon-arrow-obj::before {
    border-color: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
  width: 3.7rem;
  height: 3.7rem;
  background: var(--c_primary);
  border: 0.1rem solid var(--c_primary);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 1/1;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
    width: 5rem;
    height: 5rem;
    background: none;
    border-color: var(--c_white);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_white);
  display: block;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a span {
  position: absolute;
  top: 100%;
  left: 100%;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-access > a::before {
  -webkit-mask: url(../img/dummy/common/icon_access.svg) no-repeat center/contain;
          mask: url(../img/dummy/common/icon_access.svg) no-repeat center/contain;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-access > a::before {
    -webkit-mask: url(../img/dummy/common/icon_access_line.svg) no-repeat center/50% auto;
            mask: url(../img/dummy/common/icon_access_line.svg) no-repeat center/50% auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-contact > a::before {
  -webkit-mask: url(../img/dummy/common/icon_contact.svg) no-repeat center/contain;
          mask: url(../img/dummy/common/icon_contact.svg) no-repeat center/contain;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-contact > a::before {
    -webkit-mask: url(../img/dummy/common/icon_contact_line.svg) no-repeat center/50% auto;
            mask: url(../img/dummy/common/icon_contact_line.svg) no-repeat center/50% auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search {
  background: var(--c_txt);
  border: 0.1rem solid var(--c_txt);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search {
    width: 100%;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: auto;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search > a {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search > a::before {
  -webkit-mask: url(../img/dummy/common/icon_search.svg) no-repeat center/contain;
          mask: url(../img/dummy/common/icon_search.svg) no-repeat center/contain;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list {
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list {
    background: none;
    translate: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
    border-radius: 1rem;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
    width: 100%;
    max-width: 33.5rem;
    border-radius: 0.5rem;
    margin: auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box {
  display: flex;
  justify-content: stretch;
  align-items: center;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input {
  width: 100%;
  border: none;
  padding: 1rem 4rem 1rem 1rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c_placeholder);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::placeholder {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c_placeholder);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::-moz-placeholder {
    font-size: 1.8rem;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::placeholder {
    font-size: 1.8rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit {
  width: auto;
  height: 100%;
  text-indent: 100%;
  color: transparent;
  background: none;
  border: none;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  cursor: pointer;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit::before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask: url(../img/dummy/common/icon_search.svg) no-repeat center/contain;
          mask: url(../img/dummy/common/icon_search.svg) no-repeat center/contain;
  background: var(--c_txt);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit::before {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:focus-within {
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:hover::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:focus-within::before {
    background: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a::before {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within {
    background: var(--c_white);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover > a::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within > a::before {
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover.icon-search > a::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within.icon-search > a::before {
    background: var(--c_txt);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link {
  gap: 1em;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link li {
  font-size: 1.2rem;
  color: var(--c_white);
}
#nav-toggle, #nav-toggle span {
  width: 100%;
  display: block;
  transition: all 0.4s;
  z-index: 9999;
}

#nav-toggle {
  width: 5rem;
  height: 5rem;
  background: var(--c_primary);
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  cursor: pointer;
}
@media all and (max-width: 1023px) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle > span {
  width: 3rem;
  height: 0.2rem;
  background: var(--c_white);
  position: absolute;
  left: 50%;
  rotate: 0;
  translate: -50% -50%;
}
#nav-toggle > span:nth-of-type(1) {
  top: 25%;
}
#nav-toggle > span:nth-of-type(2) {
  top: 50%;
}
#nav-toggle > span:nth-of-type(3) {
  width: 1.8rem;
  bottom: 25%;
  translate: calc(-50% - 0.6rem) -50%;
}
#nav-toggle.active {
  background: transparent;
  right: calc(var(--scrollbar));
}
.under #nav-toggle.active > span {
  background: var(--c_primary);
}
#nav-toggle.active > span:nth-of-type(1) {
  top: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}
#nav-toggle.active > span:nth-of-type(2) {
  width: 0;
  rotate: 0;
}
#nav-toggle.active > span:nth-of-type(3) {
  width: 3rem;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
/*# sourceMappingURL=maps/header.css.map */
