@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #4d4d4d;
  --color-red: #e60012;
  --color-light-gray: #f2f2f2;
  --color-line-gray: #e5e5e5;
  --color-business-blue: #212e58;
  --color-footer-gray: #666;
  --color-lily: #faf6f0;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
}

/* ------------------------
  reset
------------------------ */
html {
  height: 100%;
}

.l-header *,
.l-header *::after,
.l-header *::before,
.l-footer *,
.l-footer *::after,
.l-footer *::before {
  box-sizing: border-box;
}
.l-header *,
.l-footer * {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
.l-header pre,
.l-header textarea,
.l-footer pre,
.l-footer textarea {
  overflow: auto;
}
.l-header template,
.l-footer template {
  display: none;
}
.l-header details,
.l-header main,
.l-header summary,
.l-footer details,
.l-footer main,
.l-footer summary {
  display: block;
}
.l-header input[type=number],
.l-footer input[type=number] {
  width: auto;
}
.l-header input[type=search],
.l-footer input[type=search] {
  -webkit-appearance: textfield;
}
.l-header input[type=search]::-webkit-search-cancel-button,
.l-header input[type=search]::-webkit-search-decoration,
.l-footer input[type=search]::-webkit-search-cancel-button,
.l-footer input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.l-header progress,
.l-footer progress {
  display: inline-block;
}
.l-header small,
.l-footer small {
  font-size: 75%;
}
.l-header sub,
.l-header sup,
.l-footer sub,
.l-footer sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
.l-header sup,
.l-footer sup {
  top: -0.5em;
}
.l-header sub,
.l-footer sub {
  bottom: -0.25em;
}
.l-header textarea,
.l-footer textarea {
  resize: vertical;
}
.l-header audio,
.l-header canvas,
.l-header iframe,
.l-header img,
.l-header svg,
.l-header video,
.l-footer audio,
.l-footer canvas,
.l-footer iframe,
.l-footer img,
.l-footer svg,
.l-footer video {
  vertical-align: middle;
}
.l-header audio:not([controls]),
.l-footer audio:not([controls]) {
  display: none;
}
.l-header img,
.l-footer img {
  border: 0;
  max-width: 100%;
  height: auto;
}
.l-header button,
.l-header input,
.l-header select,
.l-header textarea,
.l-footer button,
.l-footer input,
.l-footer select,
.l-footer textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}
.l-header button,
.l-footer button {
  overflow: visible;
}
.l-header button,
.l-header select,
.l-footer button,
.l-footer select {
  text-transform: none;
}
.l-header input,
.l-footer input {
  line-height: normal;
}
.l-header button,
.l-header html input[type=button],
.l-header input[type=reset],
.l-header input[type=submit],
.l-footer button,
.l-footer html input[type=button],
.l-footer input[type=reset],
.l-footer input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}
.l-header button[disabled],
.l-header html input[disabled],
.l-footer button[disabled],
.l-footer html input[disabled] {
  cursor: default;
}
.l-header button::-moz-focus-inner,
.l-header input::-moz-focus-inner,
.l-footer button::-moz-focus-inner,
.l-footer input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.l-header code,
.l-header kbd,
.l-header pre,
.l-header samp,
.l-footer code,
.l-footer kbd,
.l-footer pre,
.l-footer samp {
  font-family: monospace;
}
.l-header ol,
.l-header ul,
.l-footer ol,
.l-footer ul {
  list-style: none;
}
.l-header select,
.l-footer select {
     -moz-appearance: none;
  -webkit-appearance: none;
}
.l-header table,
.l-footer table {
  border-spacing: 0;
  border-collapse: collapse;
}
.l-header fieldset,
.l-footer fieldset {
  border: 0;
}

/* ------------------------
  Common Base Settings
------------------------ */
html.is-scrollLock {
  overflow-y: clip;

  scrollbar-gutter: stable;
}

.l-header,
.l-footer {
  background-color: #fff;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #000;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
.l-header a,
.l-footer a {
  text-decoration: none;
  color: #000;
}
.l-header a:visited,
.l-footer a:visited {
  color: inherit;
}
.l-header a:active,
.l-footer a:active {
  color: inherit;
}
.l-header *:focus,
.l-footer *:focus {
  outline-color: var(--color-red);
}

/* ------------------------
  Components
------------------------ */
.c-hero {
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-line-gray);
}

.c-hero_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .c-hero_inner {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .c-hero_inner {
    padding: 0 80px;
  }
}

.c-hero_lead {
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .c-hero_lead {
    padding: 0 40px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .c-hero_lead {
    padding: 0 80px;
  }
}

.c-page_ttl {
  position: relative;
}

.c-page_ttl_txt {
  position: relative;
  padding-bottom: 32px;
  text-align: center;
  font-size: 2rem;
  font-weight: var(--weight-bold);
  line-height: 1.25;
}
.c-page_ttl_txt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: var(--color-line-gray);
}
.c-page_ttl_02 .c-page_ttl_txt {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.5;
}
.c-page_ttl_02 .c-page_ttl_txt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: var(--color-line-gray);
}

.c-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn > a,
.c-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.9375rem;
  border: 1px solid var(--color-gray);
  border-radius: 0.3125rem;
  width: 100%;
  background-color: var(--color-white);

  -moz-column-gap: 0.625rem;

       column-gap: 0.625rem;
}
.c-btn._fill > a,
.c-btn._fill button {
  background-color: var(--color-gray);
  color: var(--color-white);
}
.c-btn._size-full {
  width: 100%;
}

.c-btn_txt {
  font-size: 1rem;
}

.c-btn_icon {
  display: block;
  width: 0.375rem;
  height: 0.625rem;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
._fill .c-btn_icon {
  background-color: var(--color-white);
}

[target=_blank] .c-btn_icon {
  margin-left: -0.3125rem;
  width: 1.25rem;
  height: 1.25rem;

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
}
[href*=".pdf"] .c-btn_icon {
  margin-left: -0.3125rem;
  width: 2.5rem;
  height: 1.25rem;

  -webkit-mask-image: url("/assets/img/common/pdf.svg");

          mask-image: url("/assets/img/common/pdf.svg");
}
[href^="#"] .c-btn_icon {
  transform: rotate(90deg);
}
._icon-dl .c-btn_icon {
  margin-right: -0.3125rem;
  width: 1.5rem;
  height: 1.5rem;

  -webkit-mask-image: url("/assets/img/common/dl.svg");

          mask-image: url("/assets/img/common/dl.svg");
}
._icon-grid .c-btn_icon {
  margin-right: -0.3125rem;
  width: 1.5rem;
  height: 1.5rem;

  -webkit-mask-image: url("/assets/img/common/grid.svg");

          mask-image: url("/assets/img/common/grid.svg");
}

.c-breadcrumb_wrapper {
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .c-breadcrumb {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
  }
}
.c-breadcrumb.is-scrollable {
  overflow-x: scroll;
}

.c-breadcrumb_list {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px;
  width: 100%;

  -moz-column-gap: 20px;

       column-gap: 20px;
}
@media (min-width: 768px) {
  .c-breadcrumb_list {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .c-breadcrumb_list {
    padding: 20px 80px;
  }
}
.is-scrollable .c-breadcrumb_list {
  width: -moz-max-content;
  width: max-content;
}

.c-breadcrumb_item {
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.667;
}
.c-breadcrumb_item:not(:last-child) {
  position: relative;
}
.c-breadcrumb_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -12px;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--color-line-gray);
}
.c-breadcrumb_item > a {
  text-decoration: underline;
  font-size: inherit;
  line-height: inherit;
}
.c-breadcrumb_item > a[aria-current=page] {
  text-decoration: none;
  pointer-events: none;
}

.c-fav {
  position: relative;
}
.p-search_result .c-fav {
  width: 24px;
  height: 24px;
}
.c-fav input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
}
.c-fav input[type=checkbox]:checked + label svg {
  fill: var(--color-red);
  stroke: none;
}
.c-fav label {
  display: block;
  position: relative;
  width: inherit;
  height: inherit;
  cursor: pointer;
}
.c-fav label svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: inherit;
  height: inherit;

  fill: var(--color-white);
  stroke: var(--color-gray);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.c-fav .c-fav_tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: -17px;
  right: -8px;
  padding: 5px 10px;
  border: 1px solid var(--color-gray);
  border-radius: 15px;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translateY(-100%);
  background-color: var(--color-white);
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.667;
}
.c-fav .c-fav_tooltip::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -8px;
  width: 10px;
  height: 10px;
  background-color: var(--color-white);

  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-fav .c-fav_tooltip::before {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-gray);

  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-fav .c-fav_tooltip > p {
  display: block;
}
.c-fav .c-fav_tooltip > a {
  text-decoration: underline;
}
.c-fav .c-fav_tooltip.favactive {
  visibility: visible;
  opacity: 1;
}

.c-fav input[type=checkbox] {
  transition: visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-fav input[type=checkbox]:focus + label + .c-fav_tooltip {
  transition: visibility 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-fav label + .c-fav_tooltip {
  transition: visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-fav label:hover + .c-fav_tooltip {
  transition: visibility 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-modal {
  display: none;
}
.c-modal.is-open {
  display: block;
}

html:has(.c-modal.is-open) {
  scrollbar-gutter: stable;
}

body:has(.c-modal.is-open) {
  height: 100%;
}

.c-modal_anim[aria-hidden=true] {
  animation: modalClose 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=true] .c-modal_dialog {
  animation: modalContentClose 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=false] {
  animation: modalOpen 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=false] .c-modal_dialog {
  animation: modalContentOpen 0.64s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-modal_overlay {
  display: grid;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 102, 102, 0.7);

  place-content: center;
}

.c-modal_dialog {
  overflow-y: scroll;
  padding: 60px 20px;
  height: auto;
  max-height: calc(100dvh - 120px);
  background-color: var(--color-white);

  scrollbar-gutter: stable;
}
@media (min-width: 768px) {
  .c-modal_dialog {
    padding: 60px;
  }
}

.c-modal_content {
  position: relative;
}

.c-modal_close {
  position: absolute;
  top: -17px;
  right: 4px;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .c-modal_close {
    top: -10px;
    right: -17px;
  }
}
.c-modal_close button {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-modal_close button span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  transform: rotate(45deg);
  background-color: var(--color-gray);
}
.c-modal_close button span:last-child {
  transform: rotate(-45deg);
}

.c-modal_close_link {
  margin: 40px auto 0;
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalContentOpen {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modalContentClose {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.c-btn > a,
.c-btn button {
  transition: border-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn > a .c-btn_icon,
.c-btn button .c-btn_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn > a:hover,
.c-btn button:hover {
  border-color: var(--color-red);
  transition: border-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--color-white);
  color: var(--color-red);
}
.c-btn > a:hover .c-btn_icon,
.c-btn button:hover .c-btn_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: arw 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--color-red);
}
@keyframes arw {
  0% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
  49% {
    -webkit-mask-position: 0.375rem 0px;
            mask-position: 0.375rem 0px;
  }
  50% {
    -webkit-mask-position: -0.375rem 0px;
            mask-position: -0.375rem 0px;
  }
  100% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
}
.c-btn > a[target=_blank]:hover .c-btn_icon,
.c-btn > a[href*=".pdf"]:hover .c-btn_icon,
.c-btn button[target=_blank]:hover .c-btn_icon,
.c-btn button[href*=".pdf"]:hover .c-btn_icon {
  animation: none;
}
.c-btn._icon-dl > a:hover .c-btn_icon,
.c-btn._icon-dl button:hover .c-btn_icon,
.c-btn._icon-grid > a:hover .c-btn_icon,
.c-btn._icon-grid button:hover .c-btn_icon {
  animation: none;
}
.c-btn._fill > a:hover,
.c-btn._fill button:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}
.c-btn._fill > a:hover .c-btn_icon,
.c-btn._fill button:hover .c-btn_icon {
  background-color: var(--color-white);
}

.c-breadcrumb_item > a {
  transition: color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-breadcrumb_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: var(--color-red);
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) and (max-width: 1439.98px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1439.98px) {
  .u-hidden-down-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1440px) {
  .u-hidden-xlg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1440px) {
  .u-hidden-up-xlg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-xlg {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ------------------------
  Header
------------------------ */
@media (max-width: 1279px) {
  body .u-header {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1280px) {
  body .u-header-lg {
    display: none !important;
    visibility: hidden;
  }
}
body .l-header * {
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body .l-header {
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body .l-header.is-sticky {
  position: sticky;
}
body .l-header.is-ready {
  position: sticky;
  transition: transform 0.46s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-100%);
}
body .l-header.is-ready.is-forward {
  transition: none;
}
body .l-header.is-hidden {
  transition: transform 0.46s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-100%);
}
@media (min-width: 1280px) {
  body .l-header_menu_wrapper {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 1280px) {
  body .l-header_purpose_item br {
    display: none !important;
    visibility: hidden;
  }
}
body .l-header_gnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 65px 6px 15px;
  border-bottom: 1px solid var(--color-line-gray);
  height: 83px;
  background-color: var(--color-white);
  transition: padding 0.5s ease; 
}
@media (min-width: 1330px) {
  body .l-header_gnav {
    padding: 0 60px;
  }
}
@media (max-width: 1329px) {
  body .l-header_gnav {
    padding: 0 37px;
  }
}
@media (max-width: 1309px) {
  body .l-header_gnav {
    padding: 0 15px;
  }
}
@media (min-width: 1280px) {
  body .l-header_gnav {
    position: relative;
    /* padding: 0 60px; */
    height: 120px;
  }
}
@media (max-width: 1279px) {
  body .l-header_gnav {
    padding: 6px 65px 6px 15px;
  }
}
body .l-header_logo {
  width: 100px;
}
@media (min-width: 768px) {
  body .l-header_logo {
    width: 155px;
  }
}
@media (min-width: 1280px) {
  body .l-header_nav {
    height: 100%;
  }
}
body .l-header_purpose {
  display: flex;
  position: relative;
  z-index: 1;

  gap: 10px;
}
@media (min-width: 1280px) {
  body .l-header_purpose {
    gap: 0;
  }
}
body .l-header_purpose_item > a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--color-line-gray);
  border-radius: 5px;
  height: 70px;
  background-color: var(--color-lily);
  font-size: 12px;
  line-height: 1.5;

  gap: 4px;
}
@media (min-width: 1280px) {
  body .l-header_purpose_item > a {
    flex-direction: row;
    padding: 10px 15px;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid var(--color-line-gray);
    border-radius: 0;
    height: -moz-fit-content;
    height: fit-content;
    transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    font-size: 14px;
    line-height: 1.43;
  }
  body .l-header_purpose_item > a .arw_icon {
    transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
  body .l-header_purpose_item > a:hover {
    background-color: var(--color-red);
    color: var(--color-white);
  }
  body .l-header_purpose_item > a:hover .arw_icon {
    background-color: var(--color-white);
  }
}
body .l-header_purpose_item .arw_icon {
  display: block;
  position: relative;
  width: 6px;
  height: 10px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (min-width: 1280px) {
  body .l-header_purpose_item .arw_icon {
    margin-left: 5px;
  }
}
body .l-header_purpose_item.is-active > a {
  background-color: var(--color-red);
  color: var(--color-white);
}
body .l-header_purpose_item.is-active .arw_icon {
  background-color: var(--color-white);
}
body .l-header_purpose_item.is-active > a {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_purpose_item.is-active > a:hover {
  background-color: rgba(230, 0, 18, 0.7);
}
@media (min-width: 1280px) {
  body .l-header_purpose_item:last-child {
    border-right: 1px solid var(--color-line-gray);
  }
}
body .l-header_nav_top {
  display: flex;

  gap: 20px;
}
@media (min-width: 1280px) {
  body .l-header_nav_top {
    position: relative;
    padding-right: 45px;
  }
}
body .l-header_nav_bottom {
  border-top: 1px solid var(--color-line-gray);
}
body .l-header_supple,
body .l-header_nav_list {
  display: flex;
  align-items: center;

  gap: 20px;
}
body .l-header_supple_item {
  position: relative;
  height: 100%;
}
body .l-header_supple_item > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  font-size: 14px;
  line-height: 1.428;
}
body .l-header_supple_item > a .arw_icon,
body .l-header_supple_item > a .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_supple_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_supple_item > a:hover .arw_icon,
body .l-header_supple_item > a:hover .blank_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_supple_item .js-subDrawer {
  display: inline-flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  font-size: 14px;
  line-height: 1.428;
}
body .l-header_supple_item .js-subDrawer .arw_icon,
body .l-header_supple_item .js-subDrawer .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_supple_item .js-subDrawer.is-expanded {
  position: relative;
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_supple_item .js-subDrawer.is-expanded .arw_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_supple_item .js-subDrawerTarget {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  left: -20px;
  margin: auto;
  padding: 20px;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-light-gray);
}
body .l-header_supple_item .js-subDrawerTarget > ul + ul {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line-gray);
}
body .l-header_supple_item .js-subDrawerTarget li {
  font-size: 14px;
  line-height: 1.428;
}
body .l-header_supple_item .js-subDrawerTarget li ul {
  margin-top: 20px;
  padding-left: 1em;
}
body .l-header_supple_item .js-subDrawerTarget li ul li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: none;
}
body .l-header_supple_item .js-subDrawerTarget li + li {
  margin-top: 20px;
}
body .l-header_supple_item .js-subDrawerTarget a {
  display: inline-flex;
  align-items: center;
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_supple_item .js-subDrawerTarget a .arw_icon,
body .l-header_supple_item .js-subDrawerTarget a .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_supple_item .js-subDrawerTarget a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_supple_item .js-subDrawerTarget a:hover .arw_icon,
body .l-header_supple_item .js-subDrawerTarget a:hover .blank_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_supple_item .js-subDrawerTarget.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_supple_item .blank_icon {
  display: block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_supple_item .arw_icon {
  display: block;
  margin-left: 5px;
  width: 6px;
  height: 10px;
  transform: rotate(90deg);
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_nav_list {
  justify-content: flex-end;

  gap: 40px;
}
body .l-header_nav_item {
  padding: 25px 0;
}
body .l-header_nav_search {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
}
body .l-header_nav_search input[type=text] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 15px 5px 30px;
  border: 1px solid var(--color-line-gray);
  border: none;
  border-radius: 5px;
  outline: none;
  width: 280px;
  height: 30px;
  background: none;
  background-color: var(--color-light-gray);
  font-size: 14px;
}
body .l-header_nav_search input[type=text]::-moz-placeholder {
  color: var(--color-gray);
}
body .l-header_nav_search input[type=text]::placeholder {
  color: var(--color-gray);
}
body .l-header_nav_search input[type=submit] {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -140px;
  border: none;
  width: 30px;
  height: 30px;

  -webkit-appearance: none;
}
body .l-header_nav_search input {
  visibility: hidden;
  transition: transform 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: scaleX(0.5);
  transform-origin: right;
}
body .l-header_nav_search::before {
  content: "検索ボタン";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background-color: var(--color-gray);
  pointer-events: none;

  -webkit-mask-image: url("/assets/img/common/search.svg");

          mask-image: url("/assets/img/common/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_nav_search .search_btn {
  height: 100%;
}
body .l-header_nav_search .search_btn > button {
  display: flex;
  align-items: center;
  padding-left: 20px;
  height: 100%;
  font-size: 14px;
  line-height: 1.428;
}
body .l-header_nav_search.is-open {
  width: 110px;
}
body .l-header_nav_search.is-open::before {
  transition: transform 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translateX(-162px);
}
body .l-header_nav_search.is-open input {
  visibility: visible;
  transform: scaleX(1);
}
body .l-header_nav_search.is-open .search_btn {
  visibility: hidden;
}
body .l-header_nav_item {
  cursor: pointer;
}
body .l-header_nav_item > a {
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_nav_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_nav_item_txt {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
body .l-header_nav_item_txt .arw_icon {
  display: block;
  margin-left: 5px;
  width: 6px;
  height: 10px;
  transform: rotate(90deg);
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer {
  position: absolute;
  left: 0;
  width: 100%;
}
body .js-drawerMask {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
body .js-drawerMask.is-show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_item {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
}
body .l-header_drawer_cont {
  margin: 0 auto;
  padding: 50px 80px;
  max-width: 1440px;
}
@media (min-width: 1300px) {
  body .l-header_drawer_cont {
    display: grid;

    grid-template-columns: calc(0.3 * 100%) 1fr;
  }
  body .l-header_drawer_cont .l-header_drawer_sub {
    margin-top: 0;
  }
}
body .l-header_drawer_main > a {
  display: inline-flex;
  align-items: center;
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
body .l-header_drawer_main > a .arw_icon,
body .l-header_drawer_main > a .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_main > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_drawer_main > a:hover .arw_icon,
body .l-header_drawer_main > a:hover .blank_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_drawer_main .arw_icon {
  display: block;
  margin-left: 10px;
  width: 6px;
  height: 10px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_main p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.428;
}
body .l-header_drawer_sub {
  margin-top: 40px;
}
body .l-header_drawer_sub._col2 {
  display: grid;

  grid-template-columns: 1fr 290px;
  gap: 44px;
}
body .l-header_drawer_sub .bnr_txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
  background-color: var(--color-business-blue);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.875;
}
body .l-header_drawer_sub .bnr_txt .arw_icon {
  display: block;
  width: 6px;
  height: 10px;
  background-color: var(--color-white);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_sub .bnr_txt_sub {
  display: block;
  font-size: 14px;
  line-height: 1.59;
}
body .l-header_drawer_sub_list {
  display: grid;

  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
body .l-header_drawer_sub_list._col2 {
  grid-template-columns: repeat(2, 1fr);
}
body .l-header_drawer_sub_list._col4 {
  grid-template-columns: repeat(4, 1fr);
}
body .l-header_drawer_sub_item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line-gray);
}
body .l-header_drawer_sub_item .drawer_txt_sub {
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_sub_item .drawer_thumb {
  overflow: hidden;
}
body .l-header_drawer_sub_item .drawer_thumb > img {
  opacity: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body .l-header_drawer_sub_item > a {
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_sub_item > a + a {
  display: flex;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-line-gray);
}
body .l-header_drawer_sub_item > a .arw_icon,
body .l-header_drawer_sub_item > a .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_sub_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_drawer_sub_item > a:hover .drawer_txt_sub {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_drawer_sub_item > a:hover .drawer_thumb > img {
  transition: transform 0.46s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1.06);
}
body .l-header_drawer_sub_item > a:hover .arw_icon,
body .l-header_drawer_sub_item > a:hover .blank_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_drawer_sub_item._span1 {
  max-width: 370px;
  grid-column: span 2;
}
body .l-header_drawer_sub_item._span2 {
  grid-column: span 2;
}
body .l-header_drawer_sub_item._span3 {
  grid-column: span 3;
}
body .l-header_drawer_sub_item .drawer_thumb {
  margin-bottom: 10px;
}
body .l-header_drawer_sub_item .drawer_thumb + .drawer_txt {
  font-weight: 700;
}
body .l-header_drawer_sub_item .drawer_txt {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1.875;
}
body .l-header_drawer_sub_item .drawer_txt .arw_icon {
  display: block;
  width: 6px;
  height: 10px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_sub_item .drawer_txt .blank_icon {
  display: block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_sub_item .drawer_txt._bold {
  font-weight: 700;
}
body .l-header_drawer_sub_item .drawer_txt_sub {
  display: inline-block;
  margin-left: 1em;
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.875;
}
body .l-header_drawer_supple {
  display: grid;
  margin-top: 40px;
  padding: 40px 40px 30px;
  background-color: var(--color-light-gray);
  font-size: 16px;
  line-height: 1.875;

  gap: 38px;
  grid-template-columns: 32px 1fr;
}
body .l-header_drawer_supple > dt {
  font-weight: 700;
}
body .l-header_drawer_supple_list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
body .l-header_drawer_supple_item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line-gray);
}
body .l-header_drawer_supple_item .drawer_txt {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  line-height: 1.875;
}
body .l-header_drawer_supple_item .drawer_txt .arw_icon {
  display: block;
  width: 6px;
  height: 10px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_supple_item .drawer_txt .blank_icon {
  display: block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_drawer_supple_item .drawer_txt._bold {
  font-weight: 700;
}
body .l-header_drawer_supple_item > a {
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_supple_item > a .arw_icon,
body .l-header_drawer_supple_item > a .blank_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_supple_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .l-header_drawer_supple_item > a:hover .arw_icon,
body .l-header_drawer_supple_item > a:hover .blank_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .l-header_drawer_bnr > a {
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_drawer_bnr > a:hover {
  opacity: 0.7;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .js-drawer {
  transition: color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .js-drawer .arw_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .js-drawer.is-expanded {
  position: relative;
  transition: color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: var(--color-red);
}
body .js-drawer.is-expanded .arw_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}
body .js-drawer.is-expanded::before {
  content: "";
  position: absolute;
  right: -100%;
  bottom: 0;
  left: -100%;
  margin: auto;
  width: 150%;
  height: 25px;
}
body .js-drawerTarget {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .js-drawerTarget.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_hamburger {
  position: absolute;
  top: 33px;
  right: 15px;
  width: 30px;
  height: 14px;
}
body .l-header_hamburger > button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: inherit;
  min-height: auto;
}
body .l-header_hamburger > button[aria-expanded=true] span:first-of-type {
  transition: transform 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translateY(6px) rotate(45deg);
}
body .l-header_hamburger > button[aria-expanded=true] span:last-of-type {
  transition: transform 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translateY(-6px) rotate(-45deg);
}
body .l-header_hamburger > button[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray);
}
body .l-header_hamburger span:first-of-type {
  transition: transform 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_hamburger span:last-of-type {
  transition: transform 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_hamburger span:nth-of-type(2) {
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_menu_main {
  overflow-y: scroll;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-white);
}
body .l-header_menu_main[aria-hidden=true] {
  opacity: 0;
  height: 0;
  pointer-events: none;
}
body .l-header_menu_main[aria-hidden=false] {
  opacity: 1;
  padding: 40px 20px 120px;
  height: calc(100lvh - 83px);
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_menu_search {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40px;
}
body .l-header_menu_search input[type=text] {
  padding: 10px;
  border: 1px solid var(--color-line-gray);
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: calc(100% - 40px);
  background: none;
  background-color: var(--color-light-gray);
}
body .l-header_menu_search input[type=text]::-moz-placeholder {
  color: var(--color-gray);
}
body .l-header_menu_search input[type=text]::placeholder {
  color: var(--color-gray);
}
body .l-header_menu_search input[type=submit] {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border: none;
  width: 40px;
  height: 40px;

  -webkit-appearance: none;
}
body .l-header_menu_search::before,
body .l-header_menu_search::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 11px;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
body .l-header_menu_search::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0 5px 5px 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-gray);
}
body .l-header_menu_search::after {
  right: 11px;
  width: 18px;
  height: 18px;
  background-color: var(--color-white);

  -webkit-mask-image: url("/assets/img/common/search.svg");

          mask-image: url("/assets/img/common/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_menu_link_list_wrapper {
  margin-top: 20px;
}
body .l-header_menu_link_list_wrapper .l-header_menu_link:not(:first-child) {
  margin-top: 10px;
}
body .l-header_menu_link_list_wrapper .l-header_menu_link .c-btn a {
  justify-content: space-between;
  padding: 10px 15px;
}
body .l-header_menu_link_list_wrapper .l-header_menu_link .c-btn_txt {
  font-size: 14px;
  line-height: 1.43;
}
body .l-header_menu_link_list_wrapper .l-header_menu_link .c-btn_icon {
  width: 6px;
  height: 10px;
  transform: rotate(0deg);
}
body .l-header_menu {
  margin-top: 40px;
}
body .l-header_menu_second_list {
  margin-top: 7px;
  padding-left: 1em;
}
body .l-header_menu_child_listItem > a[target=_blank],
body .l-header_menu_second_listItem > a[target=_blank],
body .l-header_menu_lang_listItem > a[target=_blank] {
  display: flex;
  align-items: center;
}
body .l-header_menu_child_listItem > a .blank_icon,
body .l-header_menu_second_listItem > a .blank_icon,
body .l-header_menu_lang_listItem > a .blank_icon {
  display: block;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_menu_second_listItem > a .blank_icon {
  margin-left: 5px;
}
body .l-header_menu_child_listItem > a,
body .l-header_menu_child_listItem > span,
body .l-header_menu_second_listItem > a,
body .l-header_menu_second_listItem > span {
  display: block;
  font-size: 14px;
  line-height: 1.43;
}
body .l-header_menu_child_listItem:not(:first-child),
body .l-header_menu_second_listItem:not(:first-child) {
  margin-top: 7px;
}
body .l-header_menu_child_listItem:last-of-type {
  margin-bottom: 20px;
}
body .l-header_menu_child_listItem._box {
  margin-top: 15px;
  padding: 15px;
  background-color: var(--color-light-gray);
}
body .l-header_menu_child_listItem._box a + a {
  margin-top: 5px;
}
body .l-header_menu_nav_label > a,
body .l-header_menu_nav_label > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
}
body .l-header_menu_nav_label .acc_icon {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}
body .l-header_menu_nav_label .acc_icon::before,
body .l-header_menu_nav_label .acc_icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray);
}
body .l-header_menu_nav_label .acc_icon::after {
  transition: transform 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: rotate(90deg);
}
body .l-header_menu_nav_label .arw_icon {
  display: block;
  position: relative;
  width: 10px;
  height: 16px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_menu_nav_label .blank_icon {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
body .l-header_menu_nav_label > button[aria-expanded=true] .acc_icon::after {
  transform: rotate(0deg);
}
body .l-header_menu_sns_list {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  gap: 20px;
}
body .l-header_menu_sns_listItem {
  width: 30px;
  height: 30px;
}
body .l-header_menu_sns_listItem > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_menu_sns_listItem > a:hover {
  opacity: 0.7;
  transition: opacity 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body .l-header_menu_sns_listItem > a > svg {
  position: absolute;
  width: 100%;
  height: 100%;

  fill: var(--color-gray);
}
body .l-header_menu_supple {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
body .l-header_menu_supple_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 20px;
}
body .l-header_menu_supple_listItem {
  font-size: 14px;
  line-height: 1.43;
}
body .l-header_menu_credit {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  body .l-header_menu_credit {
    margin-top: 0;
    padding-top: 30px;
  }
}
body .l-header_menu_credit > p {
  text-align: center;
}
body .l-header_menu_credit > p > small {
  font-size: 12px;
  line-height: 1.66;
}
body .l-header_menu_lang_list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  gap: 20px;
}
body .js-accordion_target {
  overflow: hidden;
  height: 0;
}
body .js-accordion_target.is-accordion_disable {
  overflow: visible !important;
  height: auto !important;
}
@media (min-width: 1280px) {
  body .l-header .js-accordion_target {
    overflow: visible;
    height: auto;
  }
}