@charset "UTF-8";
:root {
  --COLOR_BASE_DARK: #000;
  --COLOR_BASE_LIGHT: #fff;
  --COLOR_BACKGROUND_DARK: #222;
  --COLOR_BACKGROUND_LIGHT: #f7f7f7;
  --GRADIENT_BUTTON: ;
  --GRADIENT_BACKGROUND: linear-gradient(100deg, #00ffc8 35%, #ef0);
  --GRADIENT_LINE: linear-gradient(to right, #2fffd8, #e2ff30);
  --SIZE_MODULE_MARGIN: 40px;
  --SIZE_NESTED_MODULE_MARGIN: 16px;
  --FONT_SIZE: 14px;
  --FONT_SIZE_NOTE: 14px;
  --LINE_HEIGHT: 1.5;
  --OPACITY: 0.5;
  --BOX_SHADOW: 0px 0px 18px rgba(0, 0, 0, 0.1);
  --TEXT_SHADOW: 1px 1px 5px rgba(0, 0, 0, 0.5);
  --BORDER_RADIUS_SMALL: 5px;
  --BORDER_RADIUS_LARGE: 10px;
  --TRANSITION: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

*::backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

* {
  letter-spacing: 0.03rem;
  margin: 0;
  padding: 0;
}

html {
  font-size: 2.77vw;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 4.4rem;
}
html:has(dialog[open]) {
  scrollbar-gutter: stable;
}
head noscript {
  display: none;
}

body {
  background-color: var(--COLOR_BACKGROUND_LIGHT);
  color: var(--COLOR_FOREGROUND_DARK);
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  height: 100%;
  line-height: var(--LINE_HEIGHT);
  margin: 0;
  overflow-wrap: anywhere;
  overflow-x: clip;
  padding: 0;
}

body:has(dialog[open]) {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

p,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

em {
  font-style: normal;
  font-weight: bold;
}

a:where(img) {
  pointer-events: none;
}
a:not([class]) {
  color: #00b236;
  transition: opacity 0.2s;
}

strong {
  color: var(--COLOR_ROLE_DANGER_DARK);
}

strong a:not([class]) {
  color: #000;
}

sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.5em;
}

sup {
  top: -0.5em;
}

img,
svg {
  height: auto;
  max-width: 100%;
}

::placeholder {
  opacity: 1;
}

label {
  cursor: pointer;
}

[type="text"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="week"],
select {
  line-height: 1;
}

[type="text"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  appearance: none;
  border-radius: 0;
  color: currentColor;
  font-size: 16px;
}

[type="date"]::-webkit-inner-spin-button,
[type="date"]::-webkit-clear-button {
  appearance: none;
}

[type="date"]::-webkit-calendar-picker-indicator {
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

button {
  background: none;
  border: none;
  color: var(--COLOR_FOREGROUND_DARK);
  cursor: pointer;
  font-family: Robot, "Noto Sans JP", sans-serif;
  font-size: var(--FONT_SIZE);
  line-height: var(--LINE_HEIGHT);
}

textarea {
  overflow-x: hidden;
  overflow-y: auto;
  resize: vertical;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

select {
  cursor: pointer;
}

[hidden="hidden"] {
  display: none !important;
}

@font-face {
  font-display: block;
  font-family: icomoon;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/icomoon.ttf?iarn28) format("truetype");
}
@keyframes arrowbefore {
  100% {
    left: auto;
    opacity: 0;
    right: -1.1rem;
  }
}
@keyframes arrowafter {
  99% {
    left: 0;
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrowleftbefore {
  100% {
    left: -1.1rem;
    opacity: 0;
    right: auto;
  }
}
@keyframes bggradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.l-wrap {
  padding-top: 4.4rem;
}
.l-section {
  overflow-x: hidden;
  padding: 2rem;
  position: relative;
}

[class^="l-pageTitle"] + .l-section {
  padding-top: 2rem;
}

html[lang="ja"] .l-section:last-child {
  padding-top: 0;
}

.l-section--contact {
  background-color: #fff;
}
.l-section--contact p:has(b) {
  color: #00b236;
  text-align: center;
}

.l-section--gradation-half,
.l-section--gradation-full,
.l-section--gradation-high {
  padding: 2rem !important;
}
.l-section--gradation-half::before,
.l-section--gradation-full::before,
.l-section--gradation-high::before {
  animation: bggradient 20s ease infinite;
  background: linear-gradient(100deg, #00ffc8 35%, #ef0);
  background-size: 200% 200%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  max-height: 26rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.l-section--gradation-half::before {
  max-height: 26rem;
}

.l-section--gradation-high::before {
  max-height: 36.2rem;
}

.l-section--gradation-full::before {
  max-height: none;
}

.l-section--no-top {
  padding-top: 0 !important;
}

.l-section--no-bottom {
  padding-bottom: 0 !important;
}
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.l-header__outer {
  background-color: var(--COLOR_BASE_LIGHT);
  display: flex;
  justify-content: space-between;
}

html[lang="ja"] .l-header__title {
  background: linear-gradient(90deg, #00ffc8 0, #fcff19 100%);
  display: flex;
}
html[lang="ja"] .l-header__title::after {
  background: linear-gradient(to right, transparent, #fff);
  content: "";
  display: block;
  height: 100%;
}

.l-header__titleLogo {
  min-width: 0;
}

.l-header__titleLink {
  height: 100%;
}

html[lang="en"] .l-header__titleLink {
  aspect-ratio: 480/90;
}

html[lang="en"] .l-header__titleLogo {
  object-fit: cover;
}

.l-header__inner {
  display: flex;
  flex-shrink: 0;
}

.l-header__logoImg {
  display: block;
  height: 100%;
}
.l-navigation__list {
  display: flex;
}

.l-navigation__link {
  color: var(--COLOR_BASE_DARK);
  text-decoration: none;
}
.l-breadcrumb {
  background-color: var(--COLOR_BACKGROUND_LIGHT);
  border-top: 1px solid rgba(28, 26, 32, 0.2);
  height: 3rem;
}

.l-breadcrumb__inner {
  height: 100%;
}

.l-breadcrumb__list {
  align-items: center;
  display: flex;
  height: 100%;
  overflow-x: auto;
  padding-inline: 1rem;
}

.l-breadcrumb__item {
  font-size: 1.2rem;
  opacity: 0.4;
  white-space: nowrap;
}
.l-breadcrumb__item::after {
  border-right-style: solid;
  border-right-width: 1px;
  border-top-style: solid;
  border-top-width: 1px;
  content: "";
  display: inline-block;
  height: 0.8rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  transform: rotate(45deg);
  vertical-align: sub;
  width: 0.8rem;
}
.l-breadcrumb__item:last-child {
  opacity: 1;
  padding-right: 1.5rem;
}
.l-breadcrumb__item:last-child::after {
  content: none;
}

.l-breadcrumb__link {
  color: var(--COLOR_BASE_DARK);
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  vertical-align: sub;
}
.l-pageTitle-articleList {
  background: linear-gradient(100deg, #24ffaf 10%, #e1ff2b 70%);
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-word;
}

.l-pageTitle-articleList__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  position: relative;
  top: -0.2rem;
}

.l-pageTitle-articleList__heading {
  font-weight: normal;
  letter-spacing: 0.2rem;
}
.l-pageTitle-articleDetail {
  animation: bggradient 20s ease infinite;
  background: linear-gradient(100deg, #00ffc8 35%, #ef0);
  background-size: 200% 200%;
  margin-inline: auto;
  overflow-x: hidden;
  padding: 2rem;
  width: 100%;
}

.l-pageTitle-articleDetail__inner {
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
  padding-top: 2.2rem;
}

.l-pageTitle-articleDetail__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
  order: 1;
}

.l-pageTitle-articleDetail__heading {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.06rem;
  line-height: 3.2rem;
  order: 2;
  position: relative;
}
.l-pageTitle-articleDetail__heading::before {
  background-color: #000;
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  top: 1.7rem;
  transform: translateX(-1.5rem);
  width: 100%;
}

.l-pageTitle-articleDetail__subTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  order: 3;
}

.l-pageTitle-articleDetail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  order: 4;
  padding-block: 1.3rem;
}
.l-pageTitle-articleDetail__tags .m-tag {
  line-height: 1.8rem;
  min-height: 1.8rem;
  min-width: 10rem;
  transition: opacity 0.3s ease;
}
.l-pageTitle-author {
  padding: 2rem;
  position: relative;
}
.l-pageTitle-author::before {
  animation: bggradient 20s ease infinite;
  background: linear-gradient(100deg, #00ffc8 35%, #ef0);
  background-size: 200% 200%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  max-height: 26rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.l-pageTitle-author .m-card-profile {
  margin: 0;
}
.l-pageTitle-author .m-text-small {
  font-size: 0.67em;
}
.l-pageTitle-tags {
  animation: bggradient 20s ease infinite;
  background: linear-gradient(100deg, #00ffc8 35%, #ef0);
  background-size: 200% 200%;
  margin-inline: auto;
  overflow-x: hidden;
  padding: 2rem;
  width: 100%;
}

.l-pageTitle-tags__inner {
  padding-bottom: 1.8rem;
  padding-left: 1.1rem;
  padding-top: 2rem;
}

.l-pageTitle-tags__heading {
  font-size: 3.2rem;
  line-height: 4rem;
  padding: 1rem 0 0.7rem;
  position: relative;
}
.l-pageTitle-tags__heading::before {
  background-color: #000;
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  top: 3rem;
  transform: translateX(-1.1rem);
  width: 100%;
}

.l-pageTitle-tags__description {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03rem;
  line-height: normal;
}
.l-pageTitle-featured__heading {
  line-height: 0;
}

.l-pageTitle-featured__kv {
  width: 100%;
}

.l-search__form {
  align-items: center;
  display: flex;
}

.l-search__input {
  background: transparent;
  border: 0;
  font-family: Robot, "Noto Sans JP", sans-serif;
  outline: 0;
  width: 100%;
}
.l-search__input::placeholder {
  opacity: 0.6;
}

.l-search__button {
  color: transparent;
  overflow: hidden;
  position: relative;
}
.l-search__button::after {
  color: var(--COLOR_BASE_DARK);
  content: "\e903";
  display: block;
  font-family: icomoon; /* stylelint-disable-line */
  font-size: 1.3rem;
  font-weight: bolder;
  inset: 0;
  margin: auto;
  position: absolute;
}

.l-search__buttonText {
  position: absolute;
}
.l-footer {
  background-color: var(--COLOR_BASE_DARK);
  position: relative;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
}

.l-footer__topButton {
  background-color: rgba(255, 255, 255, 0.5);
  height: 6.6rem;
  order: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 6.6rem;
}
.l-footer__topButton::after {
  border-right: 0.2rem solid var(--COLOR_BASE_LIGHT);
  border-top: 0.2rem solid var(--COLOR_BASE_LIGHT);
  content: "";
  display: block;
  height: 1.1rem;
  inset: 0;
  margin: auto;
  position: absolute;
  transform: translateY(0.4rem) rotate(-45deg);
  width: 1.1rem;
}

.l-footer__topButtonText {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.l-footer__logo {
  display: block;
  margin-inline: auto;
  order: 2;
  width: fit-content;
}

.l-footer__snsList {
  align-items: center;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
}

.l-footer__snsLink {
  display: block;
  width: 3.5rem;
}

.l-footer__snsIcon {
  width: 100%;
}

.l-footer__categoryLink,
.l-footer__utilityLink {
  color: var(--COLOR_BASE_LIGHT);
  text-decoration: none;
}

.l-footer__categoryItem {
  letter-spacing: 0.05rem;
}

.l-footer__utilityLink {
  letter-spacing: 0.03rem;
}

.l-footer__copyright {
  color: var(--COLOR_BASE_LIGHT);
  text-align: center;
}

.l-footer__copyright small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}
.m-quotation {
  font-size: 1.6rem;
  min-height: 11rem;
  padding: 2.2rem 3rem 2.2rem 6.4rem;
  position: relative;
}
.m-quotation::before {
  color: #00b236;
  content: "“";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5rem;
  left: 4rem;
  position: absolute;
  top: -0.2rem;
}
.m-quotation::after {
  background-image: linear-gradient(190deg, #24ffaf 20%, #54f281 30%, #e1ff2b);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: -0.3rem;
  width: 1.2rem;
}
.m-box {
  overflow: hidden;
  padding: 2rem;
}

.m-box--white {
  background-color: #fff;
}

.m-box--border {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1.2rem;
}

.m-box--gray {
  background-color: #f7f7f7;
}

.m-box--deepGray {
  background-color: #e6e6e6;
}

.m-box--no-top {
  padding-top: 0 !important;
}

.m-box--no-bottom {
  padding-bottom: 0 !important;
}

.m-layout__item > .m-box {
  height: 100%;
}
.m-box-overview {
  margin: 2rem 0;
  padding: 0.7rem 2rem 0.3rem 4.5rem;
  position: relative;
}
.m-box-overview::after {
  background-color: #00b236;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 2.8rem;
  width: 3rem;
  z-index: 0;
}
.m-box-overview::before {
  background: linear-gradient(190deg, #24ffaf 20%, #54f281 30%, #e1ff2b);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.2rem;
  z-index: 1;
}
.m-button {
  display: flex;
  justify-content: center;
  padding-block: 3rem;
}

.m-button--no-top {
  padding-top: 0 !important;
}

.m-button--no-bottom {
  padding-bottom: 0 !important;
}

.m-button__item {
  align-items: center;
  border-radius: 1.2rem;
  color: #1c1a20;
  display: inline-flex;
  font-size: 1.6rem;
  justify-content: center;
  max-width: 28rem;
  min-height: 6.3rem;
  min-width: min(28rem, 100%);
  overflow: hidden;
  padding: 2.04rem 2.5rem 1.7rem;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.m-button__text {
  line-height: 2.8rem;
  position: relative;
  z-index: 3;
}

.m-button--application .m-button__text::before {
  content: "\e906";
}

.m-button--download .m-button__text::before {
  content: "\e907";
}

.m-button--contact .m-button__text::before {
  content: "\e905";
}

.m-button--application .m-button__text,
.m-button--download .m-button__text,
.m-button--contact .m-button__text {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.m-button--application .m-button__text::before,
.m-button--download .m-button__text::before,
.m-button--contact .m-button__text::before {
  color: #1c1a20;
  font-family: icomoon !important; /* stylelint-disable-line */
}

.m-button--gradient .m-button__item {
  background-color: #54f281;
}
.m-button--gradient .m-button__item::before {
  background: linear-gradient(to right, #e2ff30, #2fffd8);
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 20vw) 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: transform 0.2s ease;
  width: 65%;
  z-index: 1;
}

.m-button--white .m-button__item {
  background-color: #fff;
  border: 1px solid #000;
  transition: color 0.2s ease;
}
.m-card-article {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  position: relative;
}

.m-card-article__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.m-card-article__media {
  aspect-ratio: 16/9;
  border-radius: 1.2rem 1.2rem 0 0;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.m-card-article__media::before {
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 2;
}

.m-card-article__thumbnail {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

.m-card-article__badge {
  background-color: #000;
  border-radius: 0 0 1.2rem 0;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2rem;
  order: 1;
  text-align: center;
  width: fit-content;
}

.m-card-article__badge time {
  letter-spacing: 0;
}

.m-card-article__time {
  display: block;
}

.m-card-article__heading {
  order: 3;
}

.m-card-article__title {
  color: #00b236;
  display: block;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  text-decoration: none;
}
.m-card-article__title::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.m-card-article__titleSmall {
  display: block;
  font-size: 1.6rem;
}

.m-card-article__subTitle {
  color: #00b236;
  order: 3;
  padding: 0 3rem 0;
}

.m-card-article__subTitle + .m-card-article__heading .m-card-article__title {
  padding-top: 0;
}

.m-card-article__description {
  letter-spacing: 0.03rem;
  order: 3;
}

.m-card-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  order: 4;
}

.m-card-article__tag {
  border: 1px solid #000;
  border-radius: 100rem;
  color: #000;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8rem;
  min-height: 1.8rem;
  padding: 0 1.6rem;
  position: relative;
  text-decoration: none;
  z-index: 3;
}

.m-card-article__indicator {
  background-color: #000;
  border-radius: 1.2rem 0 1rem 0;
  bottom: 0;
  height: 3rem;
  position: absolute;
  right: 0;
  width: 3rem;
}
.m-card-article__indicator::before,
.m-card-article__indicator::after {
  background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 1rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.7rem;
  z-index: 1;
}
.m-card-article__indicator::after {
  left: auto;
  opacity: 0;
  right: 2.5rem;
}
.m-card-case {
  border: 1px solid #000;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column-reverse;
  padding: 3.1rem;
}

.m-card-case + .m-card-case {
  margin-top: 2rem;
}

.m-card-case__thumbnail {
  line-height: 0;
}

.m-card-case__thumbnail img {
  border-radius: 1.2rem;
  object-fit: cover;
  width: 100%;
}

.m-card-case__title {
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 1.4rem 2rem 1rem;
  position: relative;
}
.m-card-case__title::after {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.m-card-case__description {
  margin-bottom: 1.1rem;
  margin-top: 3.5rem;
}

.m-card-case__description > li {
  line-height: 2.6rem;
  padding-left: 3.4rem;
  position: relative;
}
.m-card-case__description > li::before {
  color: #1d1a21;
  content: "•";
  font-size: 1.9rem;
  font-weight: 700;
  left: 1.8rem;
  position: absolute;
  top: 0.2rem;
}
.m-card-download {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BASE_DARK);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  position: relative;
}

.m-card-download__media {
  border-radius: 1.2rem 1.2rem 0 0;
  height: auto;
  line-height: 0;
  max-height: 32%;
  overflow: hidden;
  position: relative;
}
.m-card-download__media::before {
  background: radial-gradient(
    rgb(from var(--COLOR_BASE_DARK) r g b/0.1),
    rgb(from var(--COLOR_BASE_DARK) r g b/0.5)
  );
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 2;
}

.m-card-download__thumbnail {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

.m-card-download__body {
  flex-grow: 1;
}

.m-card-download__heading {
  color: #00b236;
  display: block;
  font-weight: normal;
  text-decoration: none;
}

.m-card-download__description {
  letter-spacing: 0.03rem;
}

.m-card-download__button {
  align-items: center;
  background-color: var(--COLOR_BASE_DARK);
  border-radius: 0.6rem;
  color: var(--COLOR_BASE_LIGHT);
  column-gap: 1.4rem;
  display: inline-flex;
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  min-height: 3rem;
  min-width: 12rem;
  padding: 0.65rem 1.15rem 0.65rem 1.8rem;
  text-decoration: none;
}
.m-card-download__button::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
.m-card-download__button::after {
  background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 1rem;
  width: 0.75rem;
}
.m-card-feature {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row-reverse;
  margin-block: 1rem;
  padding: 1.2rem;
}

.m-card-feature__thumbnail {
  background-color: #f5f5f7;
  flex: 0 0 9rem;
  max-height: 9rem;
  max-width: 9rem;
}

.m-card-feature__thumbnail > img {
  border-radius: 1.2rem;
  width: 100%;
}

.m-card-feature__body {
  flex: 0 0 calc(100% - 9rem);
  letter-spacing: 0.03rem;
  line-height: 2.6rem;
  margin-top: 1rem;
  max-width: calc(100% - 9rem);
  padding: 0.6rem 0 0 1.2rem;
}

.m-card-feature__title,
.m-card-feature__title > * {
  color: #000;
  display: block;
  font-size: 1.4rem;
}
.m-card-info {
  background-color: #54f281;
  min-height: 22rem;
  overflow: hidden;
  padding: 2.4rem 5.4rem 1.3rem;
  position: relative;
}
.m-card-info::before {
  background: linear-gradient(to right, #adff50, #5cff88);
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 22vw) 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: transform 0.2s ease;
  width: 56%;
  z-index: 1;
}

.m-card-info__inner {
  position: relative;
  z-index: 3;
}

.m-card-info--light {
  background-color: #60f254;
}

.m-card-info--highlight {
  background-color: #a7fe1d;
}

.m-card-info__heading {
  border-bottom: 1px solid #000;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 2rem;
  padding: 1.3rem 0.2rem 3rem;
}

.m-card-info__link {
  color: #000;
  text-decoration: none;
}
.m-card-info__link::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.m-card-info__description {
  font-size: 1.6rem;
  letter-spacing: 0.07rem;
  line-height: 2.8rem;
}

.m-card-info__indicator {
  background-color: #000;
  border-radius: 1.2rem 0 0 0;
  bottom: 0;
  font-size: 0;
  height: 3rem;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  width: 3rem;
  z-index: 2;
}
.m-card-info__indicator::before,
.m-card-info__indicator::after {
  background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 0.8rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.7rem;
  z-index: 1;
}
.m-card-info__indicator::after {
  left: auto;
  opacity: 0;
  right: 2.5rem;
}
.m-card-person {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-block: 1rem;
  padding: 1.2rem;
}

.m-card-person__thumbnail {
  flex: 0 0 9rem;
  max-height: 9rem;
  max-width: 9rem;
}

.m-card-person__thumbnail > img {
  border-radius: 1.2rem;
  width: 100%;
}

.m-card-person__body {
  flex: 0 0 calc(100% - 9rem);
  max-width: calc(100% - 9rem);
  padding: 0.6rem 0 0 1.2rem;
}

.m-card-person__title {
  font-size: 1rem;
  letter-spacing: 0.03rem;
  line-height: 1.6;
}

.m-card-person__name {
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
  line-height: 2.6rem;
  padding: 2.4rem 3rem 2rem;
}

.m-card-person__title + .m-card-person__name {
  padding: 0.4rem 0 0;
}

.m-card-person__description {
  color: #1d1a21;
  letter-spacing: 0.03rem;
  line-height: 2.8rem;
  padding-top: 1rem;
}
.m-card-profile {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1.7rem;
  margin-top: 1rem;
  padding: 3rem;
  position: relative;
}

.m-card-profile__hgroup {
  display: flex;
  flex-direction: column-reverse;
}

.m-card-profile__media {
  aspect-ratio: 1/1;
  border-radius: 1.2rem;
  height: fit-content;
  line-height: 1;
  overflow: hidden;
  position: relative;
}
.m-card-profile__media::before {
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 2;
}

.m-card-profile__face {
  border-radius: 1.2rem;
  height: 100%;
  left: 0px;
  object-fit: cover;
  position: absolute;
  top: 0px;
  transition: transform 0.3s;
  width: 100%;
}

.m-card-profile__title {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.7;
  padding: 1.2rem 0 0 0;
}

.m-card-profile__heading {
  border-bottom: 1px solid #000;
  font-size: 2rem;
  padding: 0.8rem 0 1.4rem 0;
}

.m-card-profile__heading a {
  color: #1d1a21;
  text-decoration: none;
}
.m-card-profile__heading a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.m-card-profile__description {
  padding-top: 1.8rem;
}

.m-card-profile__description > p {
  letter-spacing: 0.03rem !important;
  line-height: 2.6rem !important;
  padding-block: 0 !important;
}

.m-card-profile__description p:not([class]) + :is(p:not([class]), .m-list),
p[class^="text-"] + :is(p:not([class]), .m-list),
p[class^="green"] + :is(p:not([class]), .m-list) {
  margin-top: 0;
}

.m-card-profile__indicator {
  background-color: #000;
  border-radius: 1.2rem 0 1rem 0;
  bottom: 0;
  height: 3rem;
  position: absolute;
  right: 0;
  width: 3rem;
}
.m-card-profile__indicator::before,
.m-card-profile__indicator::after {
  background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 1rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.7rem;
  z-index: 1;
}
.m-card-profile__indicator::after {
  left: auto;
  opacity: 0;
  right: 2.5rem;
}
.m-form-search {
  display: flex;
  padding: 2rem 0 3rem;
}

.m-form-search__select {
  max-width: 36.5rem;
  position: relative;
}
.m-form-search__select::after {
  border-right: 0.2rem #000 solid;
  border-top: 0.2rem #000 solid;
  content: "";
  height: 1rem;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top center;
  width: 1rem;
}

.m-form-search__input {
  border: 1px solid #000;
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  outline: 0;
  width: 100%;
}

input.m-form-search__input {
  border: 1px solid #e0e0e0;
  color: #000;
  font-size: inherit;
}
input.m-form-search__input::placeholder {
  color: #e0e0e0;
}

.m-form-search__button {
  background-color: #000;
  color: #fff;
}
.m-heading-label {
  background-color: rgb(0, 178, 54);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 2.4rem;
  padding-block: 1rem;
  padding-inline: 1em;
}
.m-heading-level2 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding-block: 1rem;
}

.m-heading-level2--green {
  color: #00b236;
}
.m-heading-level3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  padding-block: 0.8rem;
}

.m-heading-level3--green {
  color: #00b236;
}

.m-heading-level3--bold {
  font-weight: bold;
}
.m-heading-level4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  padding-block: 1rem;
}

.m-heading-level4--green {
  color: #00b236;
}

.m-heading-level4--bold {
  font-weight: bold;
}
.m-heading-section {
  padding: 0 0 0 1.1rem;
}

.m-heading-section--large {
  padding: 2rem 0 1.7rem 1.1rem;
}

.m-heading-section--reverse {
  display: flex;
  flex-direction: column-reverse;
}

.m-heading-section--no-top {
  padding-top: 0 !important;
}

.m-heading-section--no-bottom {
  padding-bottom: 0 !important;
}

.m-heading-section__title {
  font-size: 2.8rem;
  font-weight: normal;
  letter-spacing: 0;
  line-height: normal;
  padding: 1rem 0;
  position: relative;
}
.m-heading-section__title::before {
  background-color: #000;
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  top: 2.9rem;
  transform: translateX(-1.1rem);
  width: 100%;
}

.m-heading-section__title a {
  color: #000;
  text-decoration: none;
}

.m-heading-section--level6 .m-heading-section__title {
  font-size: 2rem;
  line-height: normal;
  padding: 1.2rem 0 1rem;
}
.m-heading-section--level6 .m-heading-section__title::before {
  top: 2.9rem;
}

.m-heading-section:has(.m-heading-section__head) {
  display: flex;
  flex-direction: column-reverse;
}

.m-heading-section:has(.m-heading-section__head) .m-heading-section__title {
  font-size: 2.2rem;
  line-height: normal;
  padding: 1.2rem 0 0.9rem 0;
}
.m-heading-section:has(.m-heading-section__head)
  .m-heading-section__title::before {
  top: 50%;
}
hr:not([class]) {
  margin-block: 3rem;
}
.m-layout-article {
  display: grid;
}
.m-layout-grid {
  display: grid;
  gap: 1.2rem;
}
.m-layout-info {
  display: grid;
  padding-top: 2rem;
}
.m-layout-media {
  display: flex;
  flex-direction: column-reverse;
}
.m-layout {
  display: grid;
  gap: 1.2rem;
}
.m-layout > * {
  height: 100%;
}

.m-layout__item {
  list-style: none;
}
.m-layout-person {
  display: grid;
}

.m-layout-person__item {
  display: grid;
  grid-row: span 1;
  grid-template-rows: subgrid;
}
.m-link-anchor {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.m-link-anchor > li > a {
  border-bottom: 1px solid #000;
  color: #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03rem;
  line-height: 2.6rem;
  padding: 1.7rem 5rem 1.05rem 2rem;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-link-anchor > li > a::after {
  aspect-ratio: 1/0.8660254038;
  background: #000;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  content: "";
  display: block;
  height: 0.9rem;
  margin-block: auto;
  margin-left: auto;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease;
  width: 1.15rem;
}
a:not([class])[target="_blank"]::after,
a:not([class])[href^="http"]::after {
  color: inherit;
  content: "\e90c";
  display: inline-block;
  font-size: 1.2rem;
  font-family: icomoon, serif !important; /* stylelint-disable-line */
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.8rem;
  text-transform: none;
}

a:not([class])[href$="pdf"]::after {
  color: inherit;
  content: "\e90a";
  display: inline-block;
  font-size: 1.2rem;
  font-family: icomoon, serif !important; /* stylelint-disable-line */
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.8rem;
  text-transform: none;
}

.m-link-icon {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.m-list-alphabet {
  counter-reset: alphabet-counter;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.m-list-alphabet > li {
  counter-increment: alphabet-counter;
  line-height: 2.8rem;
  padding: 0.65rem 0;
  padding-left: 2rem;
  position: relative;
}
.m-list-alphabet > li::before {
  content: counter(alphabet-counter, lower-alpha) ".";
  font-family: Roboto, sans-serif;
  left: 0;
  position: absolute;
  top: 0.8rem;
}

.m-list-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block: 1.5rem;
}

.m-list-description__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.m-list-description__item p:not([class]) {
  padding: 0;
}

.m-list-description__title {
  font-weight: bold;
}

.m-list {
  font-size: 1.4rem;
  padding-block: 1rem;
}

.m-list > li {
  border-bottom: solid 1px #e0e0e0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.8rem;
  padding: 0.65rem 0;
  padding-left: 1.3rem;
  position: relative;
}
.m-list > li::before {
  color: #00b236;
  content: "•";
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0.6rem;
}

.m-list > li > a {
  text-decoration: none;
}

.m-list > li > .m-list {
  padding: 0.25rem 0.65rem 0 1rem;
}

.m-list > li > .m-list > li {
  border: none;
  padding: 0.1rem 0 0.25rem 1.3rem;
}
.m-list > li > .m-list > li::before {
  color: #3275ba;
  content: "–";
  top: 0;
}
.m-list-notes {
  counter-reset: ol-counter;
  display: grid;
  gap: 1rem;
  padding-block: 1rem;
}

.m-list-notes > li {
  counter-increment: ol-counter;
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  padding-left: 1.5rem;
  position: relative;
}
.m-list-notes > li::before {
  content: counter(ol-counter) ".";
  left: 0;
  position: absolute;
}

.m-list-notes > li > a {
  padding-right: 0.5rem;
}
.m-list-number {
  counter-reset: ol-counter;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.m-list-number > li {
  border-bottom: 1px solid #e0e0e0;
  counter-increment: ol-counter;
  line-height: 2.8rem;
  padding: 0.65rem 0;
  padding-left: 2.5rem;
  position: relative;
}
.m-list-number > li::before {
  color: #000;
  content: counter(ol-counter) ".";
  font-family: Roboto, sans-serif;
  height: 2rem;
  left: 0;
  line-height: 2rem;
  min-width: 2rem;
  position: absolute;
  text-align: center;
  top: 1.2rem;
}

.m-list-number--bold > li {
  font-weight: bold;
}

.m-list-number--blue > li,
.m-list-number--green > li {
  padding-left: 3rem;
}
.m-list-number--blue > li::before,
.m-list-number--green > li::before {
  color: #fff;
  content: counter(ol-counter);
  font-size: 1.1rem;
  top: 1rem;
}

.m-list-number--blue > li::before {
  background-color: #0077c0;
}

.m-list-number--green > li::before {
  background-color: #00b236;
}
.m-list-tags {
  column-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  row-gap: 1.2rem;
}
.m-media-external {
  position: relative;
}

.m-media-external--youtube {
  aspect-ratio: 16/9;
}

.m-media-external > iframe {
  border: none;
  max-width: 100%;
}

.m-media-external--youtube > iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.m-media {
  padding: 1rem 0;
  text-align: center;
}
.m-media img {
  display: block;
  width: 100%;
}

.m-media__link {
  transition: opacity 0.2s;
}

.m-media__caption {
  color: #00b236;
  letter-spacing: 0;
  line-height: 1.4;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  text-align: left;
}

.m-media__scale {
  color: #00b236;
  font-family: icomoon !important; /* stylelint-disable-line */
  line-height: 1;
  padding-left: 0.5rem;
  padding-top: 0.4rem;
  text-align: left;
}
.m-media__scale::before {
  content: "\e909";
  font-size: 1.5rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.m-media__zoom {
  color: #00b236;
  transition: opacity 0.2s;
}
.m-navigation-pager {
  display: flex;
  justify-content: center;
  padding-block: 2rem;
}

.m-navigation-pager__list {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  gap: 1.4rem;
}

.m-navigation-pager__link {
  align-items: center;
  border-radius: 0.4rem;
  color: #000;
  display: inline-flex;
  height: 3.6rem;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 3.6rem;
}
.m-navigation-pager__link[aria-current="page"] {
  background-color: #1cd193;
  color: #fff;
}

.m-navigation-pager__item--min,
.m-navigation-pager__item--max {
  display: inline-flex;
  gap: 1.4rem;
}

.m-navigation-pager__item--min {
  flex-direction: row-reverse;
}
.m-table-arrange {
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  margin-block: 2rem;
  width: 100%;
}

.m-table-arrange tr:first-child :where(th:nth-child(2), th:last-child) {
  text-align: center;
}

.m-table-arrange tr th {
  background-color: #000;
  color: #fff;
  font-weight: normal;
  width: 20rem;
}
.m-table-arrange tr th:first-child {
  height: 7rem;
  padding-block: 1rem;
  width: 25%;
}
.m-table-arrange tr th:nth-child(2) {
  width: 15%;
}
.m-table-arrange tr th:last-child {
  width: 35%;
}

.m-table-arrange tr :where(th, td) {
  background-color: #f7f7f7;
  border: 1px solid #999;
  line-height: 2.6rem;
  padding: 1.2rem 0.5rem;
}

.m-table-arrange tr {
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}
.m-table-arrange tr:first-child {
  border-top: 1px solid #e0e0e0;
}
.m-table-arrange tr:first-child th:not(:first-child) {
  background-color: #fff;
  color: #000;
}
.m-table-description {
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  margin-block: 2rem;
  width: 100%;
}

.m-table-description tr {
  border-top: 1px solid #999;
  display: flex;
  flex-wrap: wrap;
  line-height: normal;
}
.m-table-description tr:last-child {
  border-bottom: 1px solid #999;
}

.m-table-description tr > th {
  color: #00b236;
  padding: 1.8rem 2.5rem 0.9rem;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 100%;
}
.m-table-description tr > th::before {
  background: linear-gradient(190deg, #24ffaf 20%, #54f281 30%, #e1ff2b);
  content: "";
  display: block;
  height: 2.5rem;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 1.4rem;
  width: 0.6rem;
}

.m-table-description tr > td {
  padding: 2.3rem 2.5rem;
  padding-top: 0;
}

.m-table-description--border,
.m-table-description--border tr > td {
  border: 1px solid #999;
}
.m-table {
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  margin-block: 2rem;
  width: 100%;
}

.m-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.m-table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.m-table tr :where(th, td) {
  background-color: #f7f7f7;
  border: 1px solid #999;
  color: #00b236;
  font-weight: normal;
  line-height: 2.6rem;
  padding: 1.2rem 0.5rem;
  word-break: break-word;
}
.m-tag {
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  color: #000;
  display: flex;
  font-size: 1rem;
  height: 1.9rem;
  justify-content: center;
  padding: 0 1.6rem;
  text-decoration: none;
}
.m-text-lead {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 2.4rem;
  padding-block: 1rem;
}
p:not([class]),
p[class^="text-"],
p[class^="green"] {
  letter-spacing: 0.03rem;
  line-height: 2.6rem;
  padding-block: 1rem;
}
.m-text-small {
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  line-height: 1.8rem !important;
  padding-block: 1rem;
}
.green {
  color: #00b236;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}
.m-margin-topBottom {
  margin-block: 2rem;
}
.m-margin-top {
  margin-top: 2rem;
}
.m-margin-bottom {
  margin-bottom: 2rem;
}
.m-margin-rightLeft,
.m-margin-inlineNarrow {
  margin-inline: 2rem;
}
.m-margin-inlineNarrow {
  margin-inline: 2rem;
}
.m-margin-wide {
  margin: 2rem;
}
.m-widget-carousel {
  overflow: visible;
  padding-top: 1rem;
  position: relative;
}

.m-widget-carousel__track {
  display: flex;
}

.m-widget-carousel__slide {
  flex-shrink: 0;
}

.m-widget-carousel__arrow {
  background-color: #fff;
  border: 1px solid #1c1a20;
  border-radius: 0.4rem;
  bottom: 1.8rem;
  height: 3.5rem;
  position: absolute;
  width: 3.5rem;
}
.m-widget-carousel__arrow:disabled {
  cursor: auto;
  opacity: 0.5 !important;
}
.m-widget-carousel__arrow::after {
  background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-black.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 1.4rem;
  margin: auto;
  width: 0.9rem;
}

.m-widget-carousel__arrow--prev {
  right: 5.7rem;
}
.m-widget-carousel__arrow--prev::after {
  transform: rotate(-180deg);
}

.m-widget-carousel__arrow--next {
  right: 1rem;
}
.m-widget-dialog {
  align-items: center;
  background-color: transparent;
  border: 0;
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.m-widget-dialog[open] {
  animation: zoomUp 1s;
  animation-fill-mode: forwards;
  display: flex;
}
.m-widget-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}
.m-widget-dialog:not(.is-open) {
  opacity: 0;
}

.m-widget-dialog__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 100%;
  max-width: 100%;
  overflow: clip;
  padding: 0;
  position: relative;
  width: 100%;
}

.m-widget-dialog__media {
  background-color: #fff;
}

.m-widget-dialog__close {
  color: transparent;
  margin-left: auto;
  min-height: 3rem;
  min-width: 3rem;
  position: relative;
}
.m-widget-dialog__close::before,
.m-widget-dialog__close::after {
  background-color: #fff;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 0.2rem;
}
.m-widget-dialog__close::before {
  transform: rotate(45deg);
}
.m-widget-dialog__close::after {
  transform: rotate(-45deg);
}
.m-widget-disclosure {
  padding-block: 2rem;
}

.m-widget-disclosure__heading {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BASE_DARK);
  min-height: 5rem;
  outline: 0;
  padding: 1.1rem 2rem;
}

.m-widget-disclosure__title {
  align-items: center;
  color: #00b236;
  display: flex;
  font-size: 1.4rem;
  gap: 0.5rem;
  justify-content: space-between;
  letter-spacing: 0.03rem;
  line-height: 2.8rem;
}
.m-widget-disclosure__title::after {
  border-bottom: 1px solid var(--COLOR_BASE_DARK);
  border-right: 1px solid var(--COLOR_BASE_DARK);
  content: "";
  display: block;
  height: 0.79rem;
  min-width: 0.79rem;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.m-widget-disclosure[open] .m-widget-disclosure__title::after {
  transform: rotate(-135deg);
}

.m-widget-disclosure__content {
  background-color: var(--COLOR_BASE_LIGHT);
  border: 1px solid var(--COLOR_BASE_DARK);
  border-top: none;
  padding: 2rem 2.1rem;
}

@media (width >= 768px) {
  :root {
    --FONT_SIZE: 16px;
    --FONT_SIZE_NOTE: ;
    --LINE_HEIGHT: 1.5;
    --SIZE_MODULE_MARGIN: 64px;
    --SIZE_NESTED_MODULE_MARGIN: 24px;
  }
  html {
    scroll-padding-top: 8rem;
  }
  body {
    font-size: 1.6rem;
  }
  html {
    font-size: 0.78vw;
  }
  .l-wrap {
    padding-top: 8rem;
  }
  .l-section {
    padding: 4rem 9.9rem;
  }
  [class^="l-pageTitle"] + .l-section {
    padding-top: 4rem;
  }
  .l-section--gradation-half,
  .l-section--gradation-full,
  .l-section--gradation-high {
    padding: 4rem 9.9rem !important;
  }
  .l-section--gradation-half::before {
    max-height: 29.6rem;
  }
  .l-section--gradation-high::before {
    max-height: 53.2rem;
  }
  .l-header__outer {
    height: 8rem;
  }
  .l-header__inner {
    align-items: center;
    gap: 2rem;
  }
  .l-header__hamburgerButton {
    display: none;
  }
  html[lang="ja"] .l-header__title::after {
    width: 100px;
  }
  .l-header__logoImg {
    height: 4.1rem;
    width: fit-content;
  }
  .l-header__titleLogo {
    height: 100%;
    width: 100%;
  }
  .l-header__logo {
    margin-right: 1.9rem;
  }
  .l-navigation {
    height: 100%;
  }
  .l-navigation * {
    height: 100%;
  }
  .l-navigation__list {
    flex-direction: row;
    font-size: 1.6rem;
  }
  .l-navigation__link {
    display: grid;
    letter-spacing: 0.03rem;
    padding: 0 3rem;
    place-items: center;
    position: relative;
  }
  .l-navigation__link::after {
    background: var(--GRADIENT_LINE);
    bottom: 0;
    content: "";
    height: 0.3rem;
    left: 0;
    position: absolute;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 0;
  }
  .l-breadcrumb__list {
    padding-inline: 2rem;
  }
  .l-breadcrumb__item {
    position: relative;
    top: -0.01rem;
  }
  .l-breadcrumb__item::after {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .l-breadcrumb__item:nth-child(2) {
    top: -0.13rem;
  }
  .l-pageTitle-articleList {
    height: 39.6rem;
    padding: 0 10rem;
  }
  .l-pageTitle-articleList__inner {
    top: 0.3rem;
  }
  .l-pageTitle-articleList__heading {
    font-size: 6rem;
    line-height: 8rem;
  }
  .l-pageTitle-articleList__subTitle {
    font-size: 1.6rem;
    padding: 0.6rem 0.35rem 0;
  }
  .l-pageTitle-articleDetail {
    padding: 8rem 9.9rem 4rem;
  }
  .l-pageTitle-articleDetail__inner {
    padding-left: 0;
    padding-top: 0;
  }
  .l-pageTitle-articleDetail__time {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
  .l-pageTitle-articleDetail__heading {
    font-size: 3.2rem;
    letter-spacing: 0.04rem;
    line-height: 4.8rem;
  }
  .l-pageTitle-articleDetail__heading::before {
    top: 2.2rem;
    transform: translateX(-2.5rem);
  }
  .l-pageTitle-articleDetail__subTitle {
    font-size: 1.6rem;
  }
  .l-pageTitle-articleDetail__tags {
    padding-bottom: 1.2rem;
    padding-top: 1.9rem;
  }
  .l-pageTitle-articleDetail__tags .m-tag {
    line-height: 2.4rem;
    min-height: 2.4rem;
    min-width: 12.8rem;
  }
  .l-pageTitle-articleDetail__tags .m-tag:hover,
  .l-pageTitle-articleDetail__tags .m-tag:focus-within {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .l-pageTitle-author {
    padding: 4rem 9.9rem;
  }
  .l-pageTitle-author::before {
    max-height: 29.6rem;
  }
  .l-pageTitle-author .m-card-profile {
    gap: 3.8rem;
    padding: 3.4rem 5.3rem 3.6rem 4rem;
  }
  .l-pageTitle-author .m-card-profile__title {
    letter-spacing: 0.03rem;
    line-height: 1.4;
    padding-bottom: 0.8rem;
  }
  .l-pageTitle-author .m-card-profile__heading {
    letter-spacing: 0.05rem;
    line-height: 3rem;
    padding: 0px 0 1.3rem 0;
  }
  .l-pageTitle-author .m-card-profile__description {
    letter-spacing: 0.03rem;
    line-height: 2.8rem;
    padding-right: 2rem;
    padding-top: 1.75rem;
  }
  .l-pageTitle-tags {
    padding: 4rem 9.9rem;
  }
  .l-pageTitle-tags__inner {
    padding-block: 4rem;
    padding-left: 0;
  }
  .l-pageTitle-tags__heading {
    font-size: 6rem;
    letter-spacing: 0.25rem;
    line-height: 7.2rem;
    padding: 0.7rem 0 0.4rem;
  }
  .l-pageTitle-tags__heading::before {
    top: 4rem;
    transform: translateX(-2.5rem);
  }
  .l-search {
    margin-right: 0.1rem;
    width: 24rem;
  }
  .l-search__form {
    border-bottom: 1px solid var(--COLOR_BASE_DARK);
    gap: 0.5em;
    height: 3.4rem;
    margin-right: 0;
    padding: 0 1rem 0 0;
  }
  .l-search__input {
    font-size: 1.6rem;
    height: 2.4rem;
    position: relative;
    top: -0.2em;
  }
  .l-search__button {
    cursor: default;
    flex: 0 0 auto;
    height: 2rem;
    width: 2rem;
  }
  .l-search__button::after {
    font-size: 1.8rem;
    height: 1.8rem;
    line-height: 1;
    width: 1.8rem;
  }
  .l-footer {
    padding: 6rem;
  }
  .l-footer__logo {
    margin-bottom: 5.3rem;
  }
  .l-footer__logoImg {
    width: 25.5rem;
  }
  .l-footer__category {
    margin-bottom: 3.6rem;
    order: 3;
  }
  .l-footer__categoryList {
    column-gap: 3rem;
    display: flex;
    font-size: 1.6rem;
    justify-content: center;
  }
  .l-footer__sns {
    margin-bottom: 2.9rem;
    order: 4;
  }
  .l-footer__topButton {
    width: 6.6rem;
  }
  .l-footer__utility {
    margin-bottom: 5rem;
    margin-inline: auto;
    order: 5;
    width: 68%;
  }
  .l-footer__utilityList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-footer__utilityItem {
    font-size: 1.4rem;
    line-height: 3.3rem;
  }
  .l-footer__utilityItem::after {
    color: var(--COLOR_BASE_LIGHT);
    content: "|";
    font-size: 1.1rem;
    padding: 0 1.9rem;
    position: relative;
    top: -0.1rem;
  }
  .l-footer__utilityItem:last-child::after {
    content: none;
  }
  .l-footer__copyright {
    order: 6;
  }
  .m-quotation {
    font-size: 2rem;
    min-height: 14.5rem;
    padding: 3.4rem 4rem 3rem 7.3rem;
  }
  .m-quotation::before {
    font-size: 5.6rem;
    top: 0.5rem;
  }
  .m-quotation::after {
    top: 0;
  }
  .m-box {
    padding: 4rem 9.9rem;
  }
  .m-box--narrow {
    padding: 3rem;
    padding-bottom: 5rem;
  }
  .m-box-overview {
    margin: 2.1rem 0;
    padding: 1.5rem 7rem 0.8rem;
  }
  .m-box-overview::after {
    top: 4.5rem;
    width: 5.5rem;
  }
  .m-box-overview:has(.m-layout-grid) {
    padding: 3rem 7rem 0.8rem;
  }
  .m-button {
    padding-block: 4rem;
  }
  .m-button--white {
    padding-block: 5rem;
  }
  .m-button__item {
    max-width: 100%;
    min-width: 35.2rem;
    padding: 1.5rem 4rem;
  }
  .m-button--gradient .m-button__item::before {
    clip-path: polygon(0 0, calc(100% - 5vw) 0, 100% 100%, 0 100%);
    width: 52%;
  }
  .m-card-article__badge {
    font-size: 1.4rem;
    line-height: 2.6rem;
    padding: 0 1.2rem;
  }
  .m-card-article__body {
    padding-bottom: 2rem;
  }
  .m-card-article__time {
    margin-top: -0.8rem;
  }
  .m-card-article__title {
    font-size: 2.4rem;
    padding: 2rem 3rem 1.5rem;
  }
  .m-card-article__description {
    line-height: 2.8rem;
    padding: 0 3rem;
  }
  .m-card-article__tags {
    padding: 2.9rem 3rem 0;
    padding-bottom: 3rem;
    padding-top: 2.6rem;
  }
  .m-card-article__tag {
    font-size: 1.2rem;
    line-height: 2.4rem;
    min-height: 2.4rem;
    padding: 0 1.7rem;
  }
  .m-card-case {
    flex-direction: row-reverse;
    padding: 3.4rem 4rem;
    padding-bottom: 4.1rem;
  }
  .m-card-case + .m-card-case {
    margin-top: 3rem;
  }
  .m-card-case__thumbnail {
    flex: 0 0 23rem;
    max-height: 23rem;
    max-width: 23rem;
  }
  .m-card-case__body {
    flex: 0 0 calc(100% - 23rem);
    max-width: calc(100% - 23rem);
    padding-left: 0.9rem;
  }
  .m-card-case__title {
    font-size: 2rem;
    line-height: 3rem;
    padding: 2.4rem 3rem 2rem;
  }
  .m-card-case__title::after {
    left: 2.9rem;
    width: calc(100% - 4.2rem);
  }
  .m-card-case__description {
    line-height: 2.8rem;
    margin-bottom: 0;
    margin-top: 3.35rem;
    padding: 0 1.6rem;
  }
  .m-card-case__description > li {
    line-height: 2.8rem;
  }
  .m-card-case__description > li::before {
    font-size: 2.1rem;
    left: 1.9rem;
    top: 0;
  }
  .m-card-download__body {
    padding-bottom: 5rem;
    padding-inline: 3rem;
  }
  .m-card-download__heading {
    font-size: 2.4rem;
    padding-block: 2rem 1.5rem;
  }
  .m-card-download__description {
    line-height: 2.8rem;
  }
  .m-card-download__button {
    margin-top: 3.5rem;
  }
  .m-card-feature {
    margin-block: 0.6rem;
  }
  .m-card-feature__thumbnail {
    flex: 0 0 12rem;
    max-height: 12rem;
    max-width: 12rem;
  }
  .m-card-feature__body {
    flex: 0 0 calc(100% - 12rem);
    line-height: 2.8rem;
    max-width: calc(100% - 12rem);
    padding: 1.8rem 2rem 1rem;
  }
  .m-card-feature__title,
  .m-card-feature__title > * {
    font-size: 1.6rem;
  }
  .m-card-info {
    min-height: 28.8rem;
    padding: 2.5rem 5.3rem 2.4rem;
  }
  .m-card-info::before {
    clip-path: polygon(0 0, calc(100% - 6vw) 0, 100% 100%, 0 100%);
    width: 47%;
  }
  .m-card-info__inner::before {
    content: "";
    display: block;
    min-height: 4.8rem;
  }
  .m-card-info__heading {
    margin-bottom: 1.9rem;
    padding: 0.7rem 0 2.8rem;
  }
  .m-card-info__indicator {
    height: 3.6rem;
    width: 3.6rem;
  }
  .m-card-info__indicator::before,
  .m-card-info__indicator::after {
    height: 1.2rem;
    width: 0.9rem;
  }
  .m-card-person {
    margin-block: 0.6rem;
  }
  .m-card-person__thumbnail {
    flex: 0 0 12rem;
    max-height: 12rem;
    max-width: 12rem;
  }
  .m-card-person__body {
    flex: 0 0 calc(100% - 12rem);
    max-width: calc(100% - 12rem);
    padding: 1.8rem 2rem 1rem;
  }
  .m-card-person__title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .m-card-person__name {
    font-size: 2rem;
  }
  .m-card-person__title + .m-card-person__name {
    padding: 1.1rem 0 0;
  }
  .m-card-profile {
    flex-direction: row-reverse;
    gap: 4rem;
    justify-content: flex-end;
    margin-bottom: 3rem;
    margin-top: 1.8rem;
    padding: 3.3rem 4rem;
  }
  .m-card-profile__media {
    flex: 0 0 23rem;
  }
  .m-card-profile__face {
    max-height: 23rem;
    max-width: 23rem;
  }
  .m-card-profile__body {
    flex: 1;
  }
  .m-card-profile__title {
    line-height: 1.4;
    padding: 0;
  }
  .m-card-profile__heading {
    font-size: 2.6rem;
    padding: 0.6rem 0 1rem 0;
  }
  .m-card-profile__description {
    padding-top: 1.75rem;
  }
  .m-card-profile__description > p {
    line-height: 2.8rem !important;
  }
  .m-card-profile__indicator {
    height: 3.6rem;
    width: 3.6rem;
  }
  .m-form-search {
    justify-content: center;
  }
  .m-form-search__select {
    flex-grow: 1;
  }
  .m-form-search__select::after {
    right: 2.5rem;
  }
  .m-form-search__input {
    border-radius: 1.2rem 0 0 1.2rem;
    font-size: 1.6rem;
    height: 6.4rem;
    line-height: 6.3rem;
    padding: 0 4.5rem 0 3.7rem;
  }
  input.m-form-search__input {
    padding: 2rem 2.2rem;
    width: 64rem;
  }
  .m-form-search__button {
    border-radius: 0 1.2rem 1.1rem 0;
    flex: 1;
    font-size: 1.6rem;
    letter-spacing: 0.02rem;
    max-width: 26rem;
    min-height: 6.4rem;
  }
  .m-heading-label {
    font-size: 2rem;
    line-height: 3rem;
    padding-block: 1.5rem;
  }
  .m-heading-level2 {
    font-size: 3.2rem;
    padding-block: 1.5rem;
  }
  .m-heading-level3 {
    font-size: 2.4rem;
    padding-block: 1.5rem;
  }
  .m-heading-level4 {
    font-size: 2rem;
    padding-block: 1.5rem;
  }
  .m-heading-section {
    padding: 0 0.3rem;
  }
  .m-heading-section__title {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
    line-height: 5.8rem;
    margin-left: -0.3rem;
    padding: 1rem 0 0.6rem;
  }
  .m-heading-section__title::before {
    top: 3.5rem;
    transform: translateX(-2.5rem);
  }
  .m-heading-section--level6 .m-heading-section__title {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    line-height: 2.9rem;
    padding: 1.5rem 0 1.3rem 0;
  }
  .m-heading-section--level6 .m-heading-section__title::before {
    top: 2.8rem;
  }
  .m-heading-section__subTitle {
    font-family: "Noto Sans JP", sans-serif;
    margin-left: -0.2rem;
  }
  .m-heading-section:has(.m-heading-section__head) .m-heading-section__title {
    font-size: 2.8rem;
    letter-spacing: 0.13rem;
    line-height: 3.4rem;
    padding: 1.4rem 0 1.2rem;
  }
  .m-heading-section:has(.m-heading-section__head)
    .m-heading-section__title::before {
    top: calc(50% + 0.2rem);
  }
  hr:not([class]) {
    margin-block: 4rem;
  }
  .m-layout-article {
    column-gap: 1.2rem;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 4rem;
    padding-top: 2rem;
    row-gap: 4rem;
  }
  .m-layout-article--wide {
    row-gap: 6rem;
  }
  .m-layout-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .m-layout-grid__content[data-column="1"] {
    grid-column: span 1;
  }
  .m-layout-grid__content[data-column="2"] {
    grid-column: span 2;
  }
  .m-layout-grid__content[data-column="3"] {
    grid-column: span 3;
  }
  .m-layout-grid__content[data-column="4"] {
    grid-column: span 4;
  }
  .m-layout-grid__content[data-column="5"] {
    grid-column: span 5;
  }
  .m-layout-grid__content[data-column="6"] {
    grid-column: span 6;
  }
  .m-layout-grid__content[data-column="7"] {
    grid-column: span 7;
  }
  .m-layout-grid__content[data-column="8"] {
    grid-column: span 8;
  }
  .m-layout-grid__content[data-column="9"] {
    grid-column: span 9;
  }
  .m-layout-grid__content[data-column="10"] {
    grid-column: span 10;
  }
  .m-layout-grid__content[data-column="11"] {
    grid-column: span 11;
  }
  .m-layout-info {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 4rem;
  }
  .m-layout-media {
    display: grid;
    gap: 8.33333333%;
    grid-template-columns: 7fr 4fr;
  }
  .m-layout-media--rowReversePC {
    direction: rtl;
  }
  .m-layout-media__content,
  .m-layout-media__media {
    direction: ltr;
    flex: 0 0 auto;
  }
  .m-layout[data-column-pc="auto"] {
    display: flex;
    flex-wrap: wrap;
  }
  .m-layout[data-column-pc="auto"] > * {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .m-layout[data-column-pc="1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .m-layout[data-column-pc="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-layout[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .m-layout[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .m-layout[data-column-pc="5"] {
    grid-template-columns: repeat(5, 1fr);
  }
  .m-layout[data-column-pc="6"] {
    grid-template-columns: repeat(6, 1fr);
  }
  .m-layout-person {
    gap: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .m-link-anchor {
    flex-direction: column;
    gap: 1.4rem;
    padding-bottom: 3.1rem;
    padding-top: 2rem;
  }
  .m-link-anchor > li > a {
    display: block;
    line-height: 2.8rem;
    padding: 1.1rem 5rem 1.3rem 2rem;
  }
  a:not([class])[target="_blank"]::after,
  a:not([class])[href^="http"]::after {
    font-size: 1.6rem;
  }
  a:not([class])[href$="pdf"]::after {
    font-size: 1.9rem;
    vertical-align: bottom;
  }
  .m-list {
    font-size: 1.6rem;
    padding-block: 1.5rem;
  }
  .m-list + p:not([class]) {
    margin-top: -1.5rem;
  }
  .m-list-notes {
    padding-block: 1.5rem;
  }
  .m-list-number {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
  .m-list-tags {
    gap: 2.1rem 0.7rem;
    padding: 2rem 0;
  }
  .m-media {
    padding: 2rem 0;
  }
  .m-media__caption {
    letter-spacing: initial;
  }
  .m-media__scale {
    padding-left: 0;
    padding-top: 0.2rem;
  }
  .m-media__scale::before {
    font-size: 1.8rem;
    margin-right: 1.7rem;
  }
  .m-media__caption + .m-media__scale {
    padding-top: 0.5rem;
  }
  .m-navigation-pager {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .m-navigation-pager__item--back,
  .m-navigation-pager__item--next {
    background-color: #000;
    border-radius: 0.4rem;
    height: 3.6rem;
    position: relative;
    width: 3.6rem;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link,
  .m-navigation-pager__item--next .m-navigation-pager__link {
    color: transparent;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link::before,
  .m-navigation-pager__item--back .m-navigation-pager__link::after,
  .m-navigation-pager__item--next .m-navigation-pager__link::before,
  .m-navigation-pager__item--next .m-navigation-pager__link::after {
    background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: "";
    height: 1.1rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0.8rem;
    z-index: 1;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link::after,
  .m-navigation-pager__item--next .m-navigation-pager__link::after {
    left: auto;
    opacity: 0;
    right: 2.5rem;
  }
  .m-navigation-pager__item--next {
    margin-left: 5.6rem;
  }
  .m-navigation-pager__item--back {
    margin-right: 5.6rem;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link::before,
  .m-navigation-pager__item--back .m-navigation-pager__link::after {
    transform: rotateY(180deg);
  }
  .m-table-arrange tr th:first-child {
    padding: 2.1rem 1.5rem 2.2rem;
    width: 14.7%;
  }
  .m-table-arrange tr th:nth-child(2) {
    width: 15%;
  }
  .m-table-arrange tr th:last-child {
    width: 35%;
  }
  .m-table-arrange tr :where(th, td) {
    line-height: 2.8rem;
    padding: 2.1rem 1.5rem 2.2rem;
  }
  .m-table-arrange tr:first-child th:not(:first-child) {
    padding-block: 2.2rem;
  }
  .m-table-arrange.m-table-arrange--2column tr th:first-child,
  .m-table-arrange.m-table-arrange--2column tr th:last-child {
    text-align: center;
    width: 50%;
  }
  .m-table-description tr {
    border-top: 1px solid #999;
    display: table-row;
  }
  .m-table-description tr > th {
    padding: 2.8rem 3rem;
    white-space: nowrap;
    width: 12%;
  }
  .m-table-description tr > th::before {
    height: 3rem;
    top: 2.5rem;
  }
  .m-table-description tr > td {
    padding: 2.3rem 3rem;
  }
  .m-table tr :where(th, td) {
    line-height: 2.8rem;
    padding: 2.1rem 1.5rem 2.2rem;
    text-align: left;
  }
  .m-tag {
    font-size: 1.2rem;
    height: 2.5rem;
  }
  .m-text-lead {
    font-size: 2rem;
    line-height: 3rem;
    padding-block: 1.5rem;
  }
  p:not([class]),
  p[class^="text-"],
  p[class^="green"] {
    line-height: 2.8rem;
    padding-block: 1.5rem;
  }
  p:not([class]) + :is(p:not([class]), .m-list),
  p[class^="text-"] + :is(p:not([class]), .m-list),
  p[class^="green"] + :is(p:not([class]), .m-list) {
    margin-top: -1.5rem;
  }
  .m-text-small {
    padding-block: 1.5rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-center {
    text-align: center;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-justify {
    text-align: justify;
  }
  .md\:text-start {
    text-align: start;
  }
  .md\:text-end {
    text-align: end;
  }
  .m-margin-topBottom {
    margin-block: 4rem;
  }
  .m-margin-top {
    margin-top: 4rem;
  }
  .m-margin-bottom {
    margin-bottom: 4rem;
  }
  .m-margin-rightLeft {
    margin-inline: 9.9rem;
  }
  .m-margin-wide {
    margin: 4rem 9.9rem;
  }
  .m-margin-inlineNarrow {
    margin-inline: 24rem;
  }
  .m-widget-carousel {
    padding-bottom: 4rem;
    padding-top: 2rem;
  }
  .m-widget-carousel__arrow {
    background-color: #000;
    border: 0;
    border-radius: 0;
    bottom: auto;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.2s ease-in-out;
    width: 3.6rem;
    z-index: 10;
  }
  .m-widget-carousel__arrow:disabled {
    cursor: auto;
    opacity: 0 !important;
  }
  .m-widget-carousel__arrow::after {
    background-image: url("/themes/custom/knowledge_charge/images/common/icon-arrow-wh.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: "";
    height: 1rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0.7rem;
    z-index: 1;
  }
  .m-widget-carousel__arrow--next {
    left: auto;
    right: -7.8vw;
    transform: translateX(0);
  }
  .m-widget-carousel__arrow--prev {
    left: -7.8vw;
    right: auto;
    transform: translateX(0);
  }
  .m-widget-carousel__arrow--prev::after {
    transform: rotate(-180deg);
  }
  .m-widget-dialog__close {
    min-height: 5rem;
    min-width: 5rem;
    right: -0.6rem;
  }
  .m-widget-dialog__inner {
    gap: 1.3rem;
    max-width: 70%;
  }
  .m-widget-disclosure {
    padding-block: 3rem;
  }
  .m-widget-disclosure__title {
    font-size: 1.6rem;
  }
  .m-widget-disclosure__content {
    padding: 2.7rem 2.9rem;
  }
}

@media (width >= 768px) and (any-hover: hover) {
  .l-navigation__link:hover,
  .l-navigation__link:focus-within {
    background-color: var(--COLOR_BASE_DARK);
    color: var(--COLOR_BASE_LIGHT);
  }
  .l-navigation__link:hover::after,
  .l-navigation__link:focus-within::after {
    width: 100%;
  }
  .m-widget-carousel:hover .m-widget-carousel__arrow {
    opacity: 0.5;
  }
}

@media (width < 768px) {
  html {
    font-size: 2.77vw;
  }
  .l-header__outer {
    height: 4.4rem;
  }
  .l-header__logo {
    display: none;
  }
  html[lang="ja"] .l-header__title::after {
    width: 50px;
  }
  .l-header__titleLogo {
    height: 100%;
    width: 100%;
  }
  .l-header__hamburgerButton {
    border-left: 1px solid var(--COLOR_BASE_DARK);
    margin-left: 0.4rem;
    order: 4;
    overflow: hidden;
    position: relative;
    width: 5.5rem;
  }
  .l-header__hamburgerButton::before,
  .l-header__hamburgerButton::after {
    background-color: var(--COLOR_BASE_DARK);
    content: "";
    height: 1px;
    position: absolute;
    width: 0.92rem;
  }
  .l-header__hamburgerButton::before {
    left: 1.8rem;
    top: 1.5rem;
  }
  .l-header__hamburgerButton::after {
    bottom: 1.5rem;
    right: 1.8rem;
  }
  .l-header__hamburgerButton[aria-expanded="true"]::before {
    animation: topLeftLine 0.8s ease;
  }
  .l-header__hamburgerButton[aria-expanded="true"]::after {
    animation: bottomRightLine 0.8s ease;
  }
  @keyframes topLeftLine {
    25% {
      left: 100%;
      right: auto;
    }
    50% {
      left: auto;
      right: 100%;
    }
    75% {
      left: auto;
      right: 50%;
    }
    100% {
      left: 25%;
      right: auto;
    }
  }
  @keyframes bottomRightLine {
    25% {
      left: auto;
      right: 100%;
    }
    50% {
      left: 100%;
      right: auto;
    }
    75% {
      left: 50%;
      right: auto;
    }
    100% {
      left: auto;
      right: 25%;
    }
  }
  .l-header__hamburgerText {
    background-color: var(--COLOR_BASE_DARK);
    color: transparent;
    height: 0.1rem;
    inset: 0;
    margin: auto;
    position: absolute;
    width: 1.86rem;
  }
  .l-navigation {
    background-color: var(--COLOR_BACKGROUND_DARK);
    bottom: 0;
    height: calc(100svh - 4.4rem);
    left: 0;
    opacity: 0;
    padding: 1.2rem 0;
    position: absolute;
    top: 4.4rem;
    transform: skewX(10deg) translateX(-100%);
    visibility: hidden;
    width: 100%;
    z-index: 1;
  }
  .l-navigation.is-hide {
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease-out;
  }
  .l-navigation.is-open {
    opacity: 1;
    transform: skewX(0) translateX(0);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease-out;
    visibility: visible;
  }
  .l-navigation__inner {
    padding: 0 2rem;
  }
  .l-navigation__list {
    flex-direction: column;
  }
  .l-navigation__link {
    align-items: center;
    border-bottom: 1px solid var(--COLOR_BASE_LIGHT);
    color: var(--COLOR_BASE_LIGHT);
    display: flex;
    font-size: 1.4rem;
    min-height: 5.2rem;
    padding: 0 4rem 0 1.2rem;
    position: relative;
    transition: opacity 0.2s;
  }
  .l-navigation__link::after {
    aspect-ratio: 1/0.8660254038;
    background-color: var(--COLOR_BASE_LIGHT);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    content: "";
    display: block;
    position: absolute;
    right: 1rem;
    transform: rotate(90deg);
    width: 1.2rem;
  }
  .l-pageTitle-articleList {
    gap: 0.9rem;
    padding: 0 2rem;
  }
  .l-pageTitle-articleList__inner {
    gap: 0.9rem;
  }
  .l-pageTitle-articleList__heading {
    font-size: 3.2rem;
    height: 14.9rem;
    letter-spacing: 0.2rem;
  }
  .l-pageTitle-articleList__subTitle {
    align-items: flex-end;
    display: flex;
    height: 8.2rem;
  }
  .l-search__form {
    height: 100%;
    position: relative;
  }
  .l-search__form::before {
    background-color: var(--COLOR_BASE_LIGHT);
    content: "";
    height: 3.5rem;
    left: -13rem;
    position: absolute;
    width: 14rem;
  }
  .l-search__form::after {
    background-color: var(--COLOR_BACKGROUND_DARK);
    bottom: 0.6rem;
    content: "";
    height: 1px;
    left: -12rem;
    position: absolute;
    width: 15rem;
  }
  .l-search__input {
    font-size: 1.2rem;
    height: 3rem;
    left: -12rem;
    position: absolute;
    width: 13rem;
  }
  .l-search__form.is-hide::before,
  .l-search__form.is-hide::after {
    visibility: hidden;
  }
  .l-search__form.is-hide .l-search__input {
    visibility: hidden;
  }
  .l-search__button {
    height: 3.5rem;
    padding: 0 1.8rem;
  }
  .l-search__button::after {
    height: 1.35rem;
    top: -0.6rem;
    width: 1.35rem;
  }
  .l-footer {
    padding: 8.5rem 2rem 2rem 2rem;
  }
  .l-footer__logo {
    padding-bottom: 2.3rem;
  }
  .l-footer__logoImg {
    width: 19.6rem;
  }
  .l-footer__sns {
    margin-bottom: 4.3rem;
    order: 3;
  }
  .l-footer__category {
    order: 4;
    padding-bottom: 1.6rem;
  }
  .l-footer__category > :first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .l-footer__categoryLink {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    font-size: 1.4rem;
    padding: 1.8rem 3rem 1.1rem 1rem;
    position: relative;
  }
  .l-footer__categoryLink::after {
    border-bottom: 0.2rem solid var(--COLOR_BASE_LIGHT);
    border-right: 0.2rem solid var(--COLOR_BASE_LIGHT);
    content: "";
    display: block;
    height: 0.9rem;
    position: absolute;
    right: 1.8rem;
    top: 2.1rem;
    transform: rotate(-45deg);
    width: 0.9rem;
  }
  .l-footer__utility {
    font-size: 1rem;
    letter-spacing: 0.03rem;
    line-height: 2.2rem;
    order: 5;
    padding-bottom: 2.4rem;
  }
  .l-footer__utilityLink {
    font-size: 1rem;
  }
  .l-footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--COLOR_BASE_LIGHT);
    font-size: 1rem;
    letter-spacing: 0.05rem;
    order: 6;
    padding-top: 2rem;
    text-align: center;
  }
  .m-button--narrow {
    padding-bottom: 4rem;
  }
  .m-button--narrow .m-button__item {
    width: 81.533333%;
  }
  .m-button--application .m-button__text,
  .m-button--download .m-button__text,
  .m-button--contact .m-button__text {
    gap: 0.9rem;
    line-height: 1.8;
  }
  .m-card-article__body {
    padding-bottom: 2.3rem;
  }
  .m-card-article__title {
    font-size: 2rem;
    padding: 2rem 2rem 1.5rem 2rem;
  }
  .m-card-article__badge {
    padding: 0.35rem 1.45rem 0.35rem 1.15rem;
  }
  .m-card-article__badge + .m-card-article__title {
    padding: 2rem 2rem 1.5rem 2rem;
  }
  .m-card-article__description {
    line-height: 2.6rem;
    padding: 0 2rem;
  }
  .m-card-article__tags {
    padding: 1.5rem 2rem 1.8rem;
  }
  .m-card-download__body {
    padding-bottom: 2.3rem;
    padding-inline: 2rem;
  }
  .m-card-download__heading {
    font-size: 2rem;
    padding-block: 2rem 1.5rem;
  }
  .m-card-download__description {
    line-height: 2.6rem;
  }
  .m-card-download__button {
    margin-top: 3.2rem;
  }
  .m-form-search {
    flex-direction: column;
  }
  .m-form-search__input {
    border-radius: 1.2rem 1.2rem 0 0;
    height: 4rem;
    padding: 0 4.5rem 0 1.7rem;
    width: 100%;
  }
  input.m-form-search__input {
    height: 4.8rem;
    padding: 1.4rem 1.9rem;
  }
  .m-form-search__button {
    border-radius: 0 0 1.2rem 1.2rem;
    font-size: 1.6rem;
    height: 4rem;
    letter-spacing: 0.02rem;
  }
  .m-layout-article {
    gap: 2rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
  .m-layout-article--narrow {
    margin-inline: auto;
    width: 81.533333%;
  }
  .m-layout-media--columnReverseSP {
    flex-direction: column;
  }
  .m-layout[data-column-sp="auto"] {
    display: flex;
    flex-wrap: wrap;
  }
  .m-layout[data-column-sp="auto"] > * {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .m-layout[data-column-sp="1"] {
    grid-template-columns: repeat(1, 1fr);
  }
  .m-layout[data-column-sp="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-layout[data-column-sp="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .m-navigation-pager__item--back,
  .m-navigation-pager__item--next {
    display: none;
  }
  .m-widget-carousel__track {
    padding-bottom: 7.5rem;
  }
}

@media (width < 768px) and (any-hover: hover) {
  .l-navigation__link:hover,
  .l-navigation__link:focus-within {
    opacity: 0.5;
    transition: opacity 0.2s;
  }
}

@media (any-hover: hover) {
  a:not([class]):hover,
  a:not([class]):focus-within {
    opacity: 0.5;
    transition: opacity 0.2s;
  }
  .l-breadcrumb__link[href]:hover,
  .l-breadcrumb__link[href]:focus-within {
    opacity: 0.5;
    transition: opacity 0.2s;
  }
  .l-footer__logo,
  .l-footer__topButton,
  .l-footer__categoryLink,
  .l-footer__snsLink,
  .l-footer__utilityLink {
    transition: opacity 0.2s;
  }
  .l-footer__logo:hover,
  .l-footer__logo:focus-within,
  .l-footer__topButton:hover,
  .l-footer__topButton:focus-within,
  .l-footer__categoryLink:hover,
  .l-footer__categoryLink:focus-within,
  .l-footer__snsLink:hover,
  .l-footer__snsLink:focus-within,
  .l-footer__utilityLink:hover,
  .l-footer__utilityLink:focus-within {
    opacity: 0.5;
  }
  .m-button--gradient .m-button__item:hover::before,
  .m-button--gradient .m-button__item:focus-within::before {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .m-button--white .m-button__item:hover,
  .m-button--white .m-button__item:focus-within {
    border-color: #00b236;
    color: #00b236;
  }
  .m-card-article:has(a.m-card-article__title):hover
    .m-card-article__media::before {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .m-card-article:has(a.m-card-article__title):hover
    .m-card-article__thumbnail {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
  .m-card-article:has(a.m-card-article__title):hover
    .m-card-article__indicator {
    background-color: #54f281;
    color: #fff;
  }
  .m-card-article:has(a.m-card-article__title):hover
    .m-card-article__indicator::before {
    animation: arrowbefore 0.6s;
  }
  .m-card-article:has(a.m-card-article__title):hover
    .m-card-article__indicator::after {
    animation: arrowafter 0.6s;
  }
  .m-card-article__tag {
    transition: opacity 0.2s;
  }
  .m-card-article__tag:hover {
    opacity: 0.5;
    transition: opacity 0.2s;
  }
  .m-card-download:hover {
    cursor: pointer;
  }
  .m-card-download:hover .m-card-download__media::before {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .m-card-download:hover .m-card-download__thumbnail {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
  .m-card-download:hover .m-card-download__button {
    background-color: #54f281;
  }
  .m-card-info:hover::before {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .m-card-info:hover .m-card-info__indicator::before {
    animation: arrowbefore 0.6s;
  }
  .m-card-info:hover .m-card-info__indicator::after {
    animation: arrowafter 0.6s;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover
    .m-card-profile__media::before {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover
    .m-card-profile__heading
    a {
    opacity: 1;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover .m-card-profile__face {
    transform: scale(1.1);
    transition: transform 0.3s;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover
    .m-card-profile__indicator {
    background-color: #54f281;
    color: #fff;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover
    .m-card-profile__indicator::before {
    animation: arrowbefore 0.6s;
  }
  .m-card-profile:has(.m-card-profile__indicator):hover
    .m-card-profile__indicator::after {
    animation: arrowafter 0.6s;
  }
  .m-form-search__input:focus-within {
    outline: 1px solid #000;
  }
  .m-form-search__button:hover,
  .m-form-search__button:focus-within {
    background-color: #1cd193;
    border: 1px solid #000;
    color: #000;
  }
  .m-link-anchor > li > a:hover,
  .m-link-anchor > li > a:focus-within {
    border-color: #00b236;
    color: #00b236;
    opacity: 1;
    transition: color 0.3s ease;
  }
  .m-link-anchor > li > a:hover::after,
  .m-link-anchor > li > a:focus-within::after {
    background: #00b236;
    transition: background 0.3s ease;
  }
  .m-list-tags .m-tag:hover,
  .m-list-tags .m-tag:focus-within {
    border-color: #00b236;
    color: #00b236;
  }
  .m-media__link:hover,
  .m-media__link:focus-within,
  .m-media__zoom:hover,
  .m-media__zoom:focus-within {
    opacity: 0.5;
    transition: opacity 0.2s;
  }
  .m-navigation-pager__link:hover {
    opacity: 0.5;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link:hover,
  .m-navigation-pager__item--back .m-navigation-pager__link:focus-within {
    background-color: #1cd193;
    opacity: 1;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link:hover::before,
  .m-navigation-pager__item--back
    .m-navigation-pager__link:focus-within::before {
    animation: arrowleftbefore 0.6s;
  }
  .m-navigation-pager__item--back .m-navigation-pager__link:hover::after,
  .m-navigation-pager__item--back
    .m-navigation-pager__link:focus-within::after {
    animation: arrowafter 0.6s;
  }
  .m-navigation-pager__item--next .m-navigation-pager__link:hover,
  .m-navigation-pager__item--next .m-navigation-pager__link:focus-within {
    background-color: #1cd193;
    opacity: 1;
  }
  .m-navigation-pager__item--next .m-navigation-pager__link:hover::before,
  .m-navigation-pager__item--next
    .m-navigation-pager__link:focus-within::before {
    animation: arrowbefore 0.6s;
  }
  .m-navigation-pager__item--next .m-navigation-pager__link:hover::after,
  .m-navigation-pager__item--next
    .m-navigation-pager__link:focus-within::after {
    animation: arrowafter 0.6s;
  }
}
