@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #333333;
  font-weight: 400;
  font-size: 62.5%;
}
html body {
  background-color: #f7fbff;
}
html body:has(#wpadminbar) main {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  html body:has(#wpadminbar) main {
    margin-top: 66px;
  }
}
html main {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  html main {
    margin-top: 98px;
  }
}

.sp {
  display: inherit;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: inherit;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.en {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.paragraph-reg {
  line-height: 150%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .paragraph-reg {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.anim-text {
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .anim-text:hover {
    color: #ff7c18;
    opacity: 1;
  }
}

.anim-opacity {
  transition: 0.6s;
}
@media screen and (min-width: 768px) {
  .anim-opacity:hover {
    opacity: 0.8;
  }
}

.anim-button {
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .anim-button:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3882352941) !important;
    transform: translateY(-3px);
  }
}
.anim-button--noshadow {
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .anim-button--noshadow:hover {
    transform: translateY(-3px);
  }
}

.tableScroll {
  position: relative;
}
@media screen and (min-width: 768px) {
  .tableScroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tableScroll::-webkit-scrollbar {
    display: none;
    height: 0;
  }
}
.tableScroll__hint {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 60px;
  color: #ffffff;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.6980392157);
  border-radius: 8px;
  visibility: visible;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-size: 1rem;
}
.tableScroll__hint.hide {
  opacity: 0;
  visibility: hidden;
}
.tableScroll__hint::before, .tableScroll__hint::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.tableScroll__hint::after {
  left: auto;
  right: 12px;
  transform: translateY(-50%) rotate(-90deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  padding: 0 40px;
  width: 100%;
  height: 98px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header {
    height: 56px;
    padding: 0 15px;
    align-items: center;
  }
}
.header__logo {
  position: relative;
  z-index: 1000;
  padding-right: 24px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding: 0;
    gap: 8px;
    border-right: none;
  }
}
.header__logo--femtet {
  width: 152px;
}
@media screen and (max-width: 767px) {
  .header__logo--femtet {
    width: 100px;
  }
}
.header__logo--corporate {
  width: 189px;
}
@media screen and (max-width: 767px) {
  .header__logo--corporate {
    width: 128px;
  }
}
.header__humburger {
  position: relative;
  z-index: 1000;
  width: 18px;
  height: 18px;
  margin-left: 12px;
}
.header__humburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__humburger--close {
  display: none;
  filter: brightness(0);
}
.header__humburger.is-active .header__humburger--open {
  display: none;
}
.header__humburger.is-active .header__humburger--close {
  display: block;
}
.header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    margin-left: auto;
  }
}
.header__nav--sp {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100vw;
  height: 100%;
  padding-bottom: 96px;
  background-color: #ffffff;
  flex-direction: column;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.6s;
}
.header__nav--sp.is-active {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav--sp .header__navButtons {
  padding: 16px 16px;
}
.header__nav--sp .header__navLinks {
  margin-bottom: 32px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #cccccc;
}
.header__nav--sp .header__navLinks li:first-of-type .listItem {
  padding-top: 12px;
}
.header__nav--sp .header__navLinks .listItem {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
.header__nav--sp .header__navLinks .listItem__linkExtendIcon {
  margin-left: auto;
  font-size: 14px;
  font-size: 1.4rem;
}
.header__nav--sp .header__navLinks .listItem__linkExtendIcon--close {
  padding-top: 2px;
  font-size: 11px;
  font-size: 1.1rem;
}
.header__nav--sp .header__navLinks--child {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  overflow: hidden;
}
.header__nav--sp .header__navLinks--child.is-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.header__nav--sp .header__navButton {
  margin-bottom: 32px;
  padding: 0 16px;
}
.header__nav--sp .header__subLinks {
  margin-bottom: 32px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-size: 1.4rem;
}
.header__nav--sp .header__close {
  flex-shrink: 0;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  background-color: #2b64b0;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav--sp .header__close img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.header__navButtons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__navButtons .listItem {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-color: #ffffff;
  overflow: hidden;
}
.header__navButtons .listItem__lang {
  position: relative;
  z-index: 1000;
  margin-right: 8px;
  width: 100px;
  height: 32px;
  padding: 8px;
  background-color: #f1f1f1;
  border-radius: 9999px;
  gap: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__navButtons .listItem__lang {
    width: 64px;
    height: 20px;
    padding: 5px 10px;
    gap: 6px;
  }
}
.header__navButtons .listItem__lang a {
  font-weight: 700;
  color: #8e8e8e;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .header__navButtons .listItem__lang a {
    font-size: 10px;
    font-size: 1rem;
  }
}
.header__navButtons .listItem__lang a.is-current {
  color: #333333;
}
.header__navButtons .listItem__lang hr {
  width: 2px;
  height: 100%;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .header__navButtons .listItem__lang hr {
    width: 1.5px;
  }
}
.header__navButtons .listItem__quote, .header__navButtons .listItem__contact {
  width: 190px;
  height: 44px;
  background-color: #2b64b0;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__navButtons .listItem__contact {
  background-color: #162643;
}
.header__navLinks {
  display: flex;
  gap: 20px;
}
.header__navLinks .listItem__link {
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.header__navLinks .listItem__linkExtendIcon {
  display: block;
  margin-left: 4px;
  font-weight: 600;
  color: #2b64b0;
  font-size: 14px;
  font-size: 1.4rem;
}
.header__navLinks .listItem__subMenu {
  position: fixed;
  top: 98px;
  left: 0;
  width: 100%;
  padding-left: 200px;
  height: 140px;
  background-color: #e6f0ff;
  display: flex;
  align-items: center;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.header__navLinks .listItem__subMenu.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.header__navLinks .listItem__subMenu .subMenuItem {
  width: 160px;
  height: 50px;
}
.header__navLinks .listItem__subMenu .subMenuItem .filterButton {
  font-size: 14px;
  font-size: 1.4rem;
}
.header__navLinks .listItem__subMenu .subMenuItem .filterButton__arrow {
  transform: translateY(-50%) rotate(-90deg);
}
.header__navLinks .listItem__subMenu .subMenuItem .filterButton.external {
  background-color: #ffffff;
  color: #333333;
}
.header__navLinks .listItem__subMenu .subMenuItem .filterButton.external .filterButton__arrow img {
  filter: none;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header--supportDesk {
  align-items: center;
}
.header--supportDesk .header__nav .header__navButtons {
  align-items: center;
  gap: 16px;
}
.header--supportDesk .header__nav .listItem {
  border-radius: 0;
}
.header--supportDesk .header__nav .listItem__lang {
  margin-right: 0;
}

.footerCta {
  width: 100%;
  padding: 88px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 80%;
}
@media screen and (max-width: 767px) {
  .footerCta {
    padding: 48px 16px;
  }
}
.footerCta__title {
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .footerCta__title {
    margin-bottom: 24px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.footerCta__list {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footerCta__list {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }
}
.footerCta__list .listItem {
  width: 428px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footerCta__list .listItem {
    width: 100%;
    gap: 24px;
  }
}
.footerCta__list .listItem__heading {
  height: 80px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footerCta__list .listItem__heading {
    height: fit-content;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.footerCta__list .listItem__image {
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .footerCta__list .listItem__image {
    width: 120px;
    height: 120px;
  }
}
.footerCta__list .listItem__image img {
  width: 100%;
  height: 100%;
}
.footerCta__list .listItem__button {
  width: 270px;
}
.footerCta__list .listItem__button--document {
  width: 335px;
}
@media screen and (max-width: 767px) {
  .footerCta__list .listItem__button--document {
    width: 270px;
  }
}
.footerCta__list hr {
  width: 1px;
  height: auto;
  background: white;
}
@media screen and (max-width: 767px) {
  .footerCta__list hr {
    width: 100%;
    height: 1px;
  }
}

.footer {
  padding-top: 56px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 48px 16px;
  }
}
.footer__logo {
  max-width: 1120px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 24px;
  }
}
.footer__logo img {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 240px;
  }
}
.footer__links {
  max-width: 1120px;
  max-height: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__links {
    max-height: 480px;
    margin-bottom: 8px;
    flex-direction: column;
  }
}
.footer__list {
  width: 280px;
  margin-bottom: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    margin-bottom: 12px;
    padding-left: 16px;
    width: 50%;
  }
  .footer__list:last-child {
    margin-bottom: 0;
  }
}
.footer__list:nth-of-type(3) {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .footer__list:nth-of-type(3) {
    margin-bottom: 12px;
  }
}
.footer__list .listLabel {
  margin-bottom: 16px;
  display: block;
  position: relative;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__list .listLabel {
    margin-bottom: 8px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.footer__list .listLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 10px;
  height: 3px;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .footer__list .listLabel::before {
    left: -12px;
    height: 2px;
    width: 8px;
  }
}
.footer__list .listItem {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-size: 1.2rem;
}
.footer__list .listItem:last-child {
  margin-bottom: 8px;
}
.footer__subLinks {
  padding: 24px 0;
  border-top: 2px solid #ededed;
}
@media screen and (max-width: 767px) {
  .footer__subLinks {
    padding: 24px 0 0;
    border-top: 1px solid #ededed;
  }
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    margin-bottom: 24px;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.footer__terms {
  max-width: 710px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media screen and (max-width: 767px) {
  .footer__terms {
    max-width: auto;
    flex-direction: column;
    gap: 8px;
  }
}
.footer__terms li:nth-of-type(3) {
  margin-right: 210px;
}
@media screen and (max-width: 767px) {
  .footer__terms li:nth-of-type(3) {
    margin-right: 0;
  }
}
.footer__terms .listItem {
  display: block;
  width: fit-content;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-size: 1.2rem;
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .footer__sns a {
    display: block;
    height: 24px;
  }
  .footer__sns a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.footer__copyright {
  text-align: center;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
    font-size: 1rem;
  }
}
.footer--supportDesk .footer__subLinks {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .footer--supportDesk .footer__subLinks {
    padding: 0;
  }
}
.footer--form {
  border-top: 2px solid #ededed;
}
@media screen and (max-width: 767px) {
  .footer--form {
    border-top: 1px solid #ededed;
  }
}
.footer--form .footer__subLinks {
  padding-top: 0;
  border-top: none;
}
.footer--form .footer__inner {
  max-width: 100%;
  justify-content: center;
}
.footer--form .footer__inner .footer__terms {
  max-width: 100%;
}
.footer--form .footer__inner .footer__terms li {
  margin: 0;
}

.pageTitle {
  width: 100%;
  height: 240px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pageTitle {
    height: 96px;
  }
}
.pageTitle--case, .pageTitle--information {
  padding: 56px 0;
  height: auto;
}
@media screen and (max-width: 767px) {
  .pageTitle--case, .pageTitle--information {
    padding: 32px 16px;
  }
}
.pageTitle--case .pageTitle__text, .pageTitle--information .pageTitle__text {
  text-align: left;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .pageTitle--case .pageTitle__text, .pageTitle--information .pageTitle__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.pageTitle__text {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 150%;
  text-align: center;
  font-size: 53px;
  font-size: 5.3rem;
}
@media screen and (max-width: 767px) {
  .pageTitle__text {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.pageTitle__text span {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .pageTitle__text span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.pageTitle__inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.pageTitle__info {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pageTitle__info {
    margin-bottom: 12px;
  }
}
.pageTitle__number {
  margin-right: 24px;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .pageTitle__number {
    margin-right: 16px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.pageTitle__category {
  margin-right: 10px;
  padding: 6px 16px;
  background-color: #e6f0ff;
  color: #0165a7;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .pageTitle__category {
    padding: 4px 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.button {
  position: relative;
  cursor: pointer;
  height: 60px;
  width: 100%;
  background-color: #2b64b0;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .button:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3882352941);
    transform: translateY(-3px);
  }
}
.button__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .button__arrow {
    right: 12px;
    width: 24px;
    height: 24px;
  }
}
.button__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.button__arrowDown {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__arrowDown img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.button--orange {
  background-color: #ff7c18;
  border-radius: 4px;
  border: 2px solid #ffffff;
}
.button--darkblue {
  background-color: #162643;
}
.button--white {
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #162643;
  color: #162643;
}
.button--white .button__arrow img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(1330%) hue-rotate(178deg) brightness(96%) contrast(94%);
}
.button--download {
  padding-right: 40px;
  height: 45px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
  color: #2b64b0;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .button--download {
    padding-right: 24px;
    height: 40px;
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .button--download .button__arrow {
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
.button--download .button__arrow img {
  filter: invert(29%) sepia(27%) saturate(4061%) hue-rotate(197deg) brightness(93%) contrast(78%);
}

.filterButton {
  position: relative;
  padding: 0 16px;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  font-weight: 700;
  border-radius: 10px;
  border: 3px solid #2b64b0;
  font-size: 15px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .filterButton {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.filterButton.link {
  height: 60px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .filterButton.link {
    height: 50px;
  }
}
.filterButton.link .filterButton__arrow {
  width: 24px;
  height: 24px;
}
.filterButton.external {
  background-color: #2b64b0;
  color: #ffffff;
}
.filterButton.external img {
  filter: brightness(0) invert(1);
}
.filterButton.anchor {
  height: 60px;
  padding-right: 32px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .filterButton.anchor {
    height: 50px;
  }
}
.filterButton.anchor .filterButton__arrow {
  width: 20px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .filterButton.anchor .filterButton__arrow {
    right: 8px;
    width: 14px;
    height: 14px;
  }
}
.filterButton__number {
  margin-right: 4px;
  font-size: 20px;
  font-size: 2rem;
}
.filterButton__icon {
  margin-right: 4px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .filterButton__icon {
    margin-left: -8px;
    margin-right: 8px;
    width: 32px;
  }
}
.filterButton__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.filterButton__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.filterButton.is-current > .filterButton,
.is-current > .filterButton {
  background-color: #2b64b0;
  color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.filterButton.is-current > .filterButton .filterButton__arrow img,
.is-current > .filterButton .filterButton__arrow img {
  filter: brightness(0) invert(1);
}
.filterButton.is-current > .filterButton .filterButton__icon,
.is-current > .filterButton .filterButton__icon {
  filter: brightness(0) invert(1);
}
.filterButton.is-current.listItem--event > .filterButton,
.is-current.listItem--event > .filterButton {
  background-color: #ffc800;
  color: #333333;
}
.filterButton.is-current.listItem--news > .filterButton,
.is-current.listItem--news > .filterButton {
  background-color: #0099f1;
}
.filterButton.is-current.listItem--seminar > .filterButton,
.is-current.listItem--seminar > .filterButton {
  background-color: #b02b7d;
}
.filterButton.is-current.listItem--tech > .filterButton,
.is-current.listItem--tech > .filterButton {
  background-color: #006b2d;
}
.filterButton.is-current.listItem--column > .filterButton,
.is-current.listItem--column > .filterButton {
  background-color: #5600a6;
}

.caseArchiveFilter__link .link {
  height: 50px;
  padding-left: 40px;
}

.listItem--event .filterButton {
  border: 3px solid #ffc800;
}

.listItem--news .filterButton {
  border: 3px solid #0099f1;
}

.listItem--seminar .filterButton {
  border: 3px solid #b02b7d;
}

.listItem--tech .filterButton {
  border: 3px solid #006b2d;
}

.listItem--column .filterButton {
  border: 3px solid #5600a6;
}

.fixedButton {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fixedButton {
    right: 0;
  }
}
.fixedButton__pageTop {
  margin-bottom: 40px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  width: 105px;
  height: 105px;
  border-radius: 9999px;
  background-color: #162643;
  flex-direction: column;
  gap: 12px;
  letter-spacing: 0.07em;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.4s;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fixedButton__pageTop {
    margin-bottom: 16px;
    margin-right: 16px;
    width: 72px;
    height: 72px;
    transform: translateY(24px);
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .fixedButton__pageTop:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.3882352941);
    margin-bottom: 44px;
  }
}
.fixedButton__pageTop.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.fixedButton__pageTop img {
  width: 32px;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .fixedButton__pageTop img {
    width: 24px;
  }
}
.fixedButton .floatingInformation {
  position: relative;
  pointer-events: auto;
}
.fixedButton .floatingInformation__inner {
  position: relative;
  max-width: 300px;
  padding: 24px 20px 20px;
  background-color: #ffffff;
  border: 3px solid #2b64b0;
  border-radius: 8px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation__inner {
    max-width: 100%;
    padding: 16px;
    border: 2px solid #2b64b0;
  }
}
.fixedButton .floatingInformation__heading {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation__heading {
    margin-bottom: 16px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.fixedButton .floatingInformation__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.fixedButton .floatingInformation__list .listItem {
  padding-top: 16px;
  border-top: 1px solid #cccccc;
}
.fixedButton .floatingInformation__list .listItem__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fixedButton .floatingInformation__list .listItem__date {
  color: #898989;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-size: 1.2rem;
}
.fixedButton .floatingInformation__list .listItem__category {
  padding: 4px 8px;
  background-color: #2b64b0;
  color: #ffffff;
  letter-spacing: 0.03em;
  font-size: 10px;
  font-size: 1rem;
}
.fixedButton .floatingInformation__list .listItem__title {
  display: block;
  letter-spacing: 0.03em;
  gap: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixedButton .floatingInformation__list .listItem__title img {
  margin-bottom: 16px;
  width: 14px;
  height: 8px;
  transform: rotate(-90deg);
}
.fixedButton .floatingInformation__button {
  position: absolute;
  cursor: pointer;
  top: 32px;
  right: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation__button {
    top: 24px;
    width: 16px;
    height: 16px;
  }
}
.fixedButton .floatingInformation__buttonIcon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fixedButton .floatingInformation__buttonIcon--close {
  display: none;
}
.fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__inner {
  padding: 16px;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__inner {
    padding: 8px 16px;
  }
}
.fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__heading {
  margin-bottom: 0;
}
.fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__list {
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__button {
  top: 24px;
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation:is(.floatingInformation--close, .is-closed) .floatingInformation__button {
    top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__inner {
    padding: 8px 16px;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__heading {
    margin-bottom: 0;
  }
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__list {
    height: 0;
    visibility: hidden;
    opacity: 0;
  }
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__button {
    top: 18px;
  }
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__button .floatingInformation__buttonIcon--open {
    display: none;
  }
  .fixedButton .floatingInformation:not(.is-open) .floatingInformation__button .floatingInformation__buttonIcon--close {
    display: block;
  }
}

.breadcrumb {
  padding-top: 20px;
  padding-bottom: 40px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 16px 16px 40px;
  }
}
.breadcrumb .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumbs {
    font-size: 10px;
    font-size: 1rem;
  }
}
.breadcrumb .breadcrumbs__bar {
  width: 8px;
  height: 1px;
  background-color: #333333;
  opacity: 0.1;
}
.breadcrumb .breadcrumbs span:not(:last-of-type) {
  flex-shrink: 0;
  text-decoration: underline;
  opacity: 0.5;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
}
.editor-styles-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #333333;
  font-weight: 400;
  background-color: #f7fbff;
}

.blockPattern {
  max-width: 1120px;
  margin: 0 auto;
}
.blockPattern__h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 180%;
  color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .blockPattern__h2 {
    font-size: 18px;
  }
}
.blockPattern__h3 {
  padding: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  color: #ffffff;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .blockPattern__h3 {
    padding: 12px;
    font-size: 14px;
  }
}
.blockPattern__paragraph,
.blockPattern p {
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .blockPattern__paragraph,
  .blockPattern p {
    font-size: 14px;
  }
}
.blockPattern__image {
  display: flex;
  flex-direction: column-reverse;
}
.blockPattern__image figcaption {
  line-height: 150%;
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .blockPattern__image figcaption {
    margin-bottom: 8px;
    font-size: 12px;
  }
}
.blockPattern__image img {
  width: 100% !important;
  object-fit: cover;
  border-radius: 8px;
}
.blockPattern__column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blockPattern__table table {
  width: 100%;
  table-layout: fixed;
}
.blockPattern__table table thead {
  border-bottom: none;
}
.blockPattern__table table td,
.blockPattern__table table th {
  box-sizing: border-box;
  padding: 16px 24px;
  line-height: 150%;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
  background-color: #ffffff;
  border-color: #dedede;
}
@media screen and (max-width: 767px) {
  .blockPattern__table table td,
  .blockPattern__table table th {
    padding: 10px;
    font-size: 12px;
  }
}
.blockPattern__table table td:first-of-type,
.blockPattern__table table th:first-of-type {
  background-color: #e6f0ff;
  width: 182px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blockPattern__table table td:first-of-type,
  .blockPattern__table table th:first-of-type {
    width: 110px;
  }
}
.blockPattern__table table th:first-of-type {
  background-color: #2b64b0;
  color: #ffffff;
}
.blockPattern__macroTech {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blockPattern__macroTech {
    margin-bottom: 24px;
  }
}
.blockPattern__macroTech__description {
  font-size: 16px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .blockPattern__macroTech__description {
    font-size: 14px;
  }
}
.blockPattern__macroExample__images {
  display: flex;
  gap: 0 !important;
}
.blockPattern__macroExample__images .wp-block-column {
  flex-basis: auto !important;
  flex-grow: 0 !important;
  width: fit-content !important;
}
.blockPattern__macroTitle {
  margin-bottom: 20px;
  background-color: #2b64b0;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .blockPattern__macroTitle {
    margin-bottom: 12px;
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
  }
}
.blockPattern__faqWrapper {
  margin-bottom: 40px;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .blockPattern__faqWrapper {
    margin-bottom: 24px;
    padding: 24px 16px;
  }
}
.blockPattern__faqTitle {
  margin-bottom: 40px;
  position: relative;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .blockPattern__faqTitle {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
.blockPattern__faqTitle[class*=blockPattern__faqTitle--] {
  padding-left: 68px;
}
@media screen and (max-width: 767px) {
  .blockPattern__faqTitle[class*=blockPattern__faqTitle--] {
    padding-left: 48px;
  }
}
.blockPattern__faqTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .blockPattern__faqTitle::before {
    width: 40px;
    height: 40px;
  }
}
.blockPattern__faqTitle--hertz::before {
  background-image: url("../../../assets/svg/category/category_hertz.svg");
}
.blockPattern__faqTitle--gauss::before {
  background-image: url("../../../assets/svg/category/category_gauss.svg");
}
.blockPattern__faqTitle--coulomb::before {
  background-image: url("../../../assets/svg/category/category_coulomb.svg");
}
.blockPattern__faqTitle--galileo::before {
  background-image: url("../../../assets/svg/category/category_galileo.svg");
}
.blockPattern__faqTitle--watt::before {
  background-image: url("../../../assets/svg/category/category_watt.svg");
}
.blockPattern__faqTitle--bernoulli::before {
  background-image: url("../../../assets/svg/category/category_bernoulli.svg");
}
.blockPattern__faqTitle--rayleigh::before {
  background-image: url("../../../assets/svg/category/category_rayleigh.svg");
}
.blockPattern__faqTitle--mach::before {
  background-image: url("../../../assets/svg/category/category_mach.svg");
}
.blockPattern__faqTitle--install::before {
  background-image: url("../../../assets/svg/category/category_install.svg");
}
.blockPattern__faqTitle--modelling::before {
  background-image: url("../../../assets/svg/category/category_modelling.svg");
}
.blockPattern__faqTitle--mesh::before {
  background-image: url("../../../assets/svg/category/category_mesh.svg");
}
.blockPattern__faqTitle--result::before {
  background-image: url("../../../assets/svg/category/category_result.svg");
}
.blockPattern__faqTitle--macro::before {
  background-image: url("../../../assets/svg/category/category_macro.svg");
}
.blockPattern__faqTitle--other::before {
  background-image: url("../../../assets/svg/category/category_others.svg");
}
.blockPattern__faq {
  margin-bottom: 40px;
  padding: 0 32px;
  background-color: #f5f7f8;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq {
    margin-bottom: 16px;
    padding: 0 16px;
  }
}
.blockPattern__faq:last-of-type {
  margin-bottom: 0;
}
.blockPattern__faq::details-content {
  block-size: 0;
  opacity: 0;
  overflow: clip;
  transition: block-size 0.5s ease, opacity 0.5s ease, content-visibility 0.5s allow-discrete;
}
.blockPattern__faq[open]::details-content {
  block-size: auto;
  opacity: 1;
}
.blockPattern__faq[open] > summary::after {
  background-image: url("../../../assets/svg/faq/faq_close.svg");
}
.blockPattern__faq > *:nth-child(3) {
  margin-top: 0 !important;
}
.blockPattern__faq summary {
  padding: 32px 0;
  padding-left: 48px;
  padding-right: 24px;
  position: relative;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 16px;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq summary {
    font-size: 14px;
    padding: 16px 0;
    padding-left: 32px;
    padding-right: 24px;
  }
}
.blockPattern__faq summary::before, .blockPattern__faq summary::after {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.blockPattern__faq summary::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("../../../assets/svg/faq/faq_question.svg");
}
@media screen and (max-width: 767px) {
  .blockPattern__faq summary::before {
    width: 20px;
    height: 20px;
  }
}
.blockPattern__faq summary::after {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("../../../assets/svg/faq/faq_open.svg");
}
@media screen and (max-width: 767px) {
  .blockPattern__faq summary::after {
    width: 16px;
    height: 16px;
  }
}
.blockPattern__faq__answerBlock {
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answerBlock {
    padding-bottom: 24px;
  }
}
.blockPattern__faq__answerBlock .wp-block-group__inner-container > *:nth-child(2) {
  margin-top: 0 !important;
}
.blockPattern__faq__answer {
  position: relative !important;
  margin-top: 10px !important;
  padding: 32px 0;
  padding-left: 48px;
  border-top: 1px solid #dedede;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer {
    font-size: 14px;
    padding: 16px 0;
    padding-left: 32px;
  }
}
.blockPattern__faq__answer::before {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 28px;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("../../../assets/svg/faq/faq_answer.svg");
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer::before {
    width: 20px;
    height: 20px;
  }
}
.blockPattern__faq__answer--closeButton {
  margin: 40px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer--closeButton {
    margin-top: 24px;
  }
  .blockPattern__faq__answer--closeButton > div {
    width: 100%;
  }
}
.blockPattern__faq__answer--closeButton .button {
  position: relative;
  width: 330px;
  height: 60px;
  background-color: #2b64b0;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer--closeButton .button {
    width: 100%;
    height: 44px;
  }
}
.blockPattern__faq__answer--closeButton .button::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 20px;
  height: 20px;
  background-image: url("../../../assets/svg/faq/faq_close.svg");
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer--closeButton .button::before {
    right: 12px;
    width: 16px;
    height: 16px;
  }
}
.blockPattern__faq__answer--closeButton .wp-element-button {
  background-color: #2b64b0;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .blockPattern__faq__answer--closeButton .wp-element-button {
    font-size: 14px;
  }
}

article,
.blockPattern {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  article,
  .blockPattern {
    padding: 0 16px 48px;
  }
}
article > *:first-child,
.blockPattern > *:first-child {
  margin-top: 0 !important;
}
article .blockPattern__image,
article .blockPattern__column,
article .blockPattern__table,
.blockPattern .blockPattern__image,
.blockPattern .blockPattern__column,
.blockPattern .blockPattern__table {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  article .blockPattern__image,
  article .blockPattern__column,
  article .blockPattern__table,
  .blockPattern .blockPattern__image,
  .blockPattern .blockPattern__column,
  .blockPattern .blockPattern__table {
    margin: 24px 0;
  }
}
article .blockPattern__h2,
article .blockPattern__h3,
.blockPattern .blockPattern__h2,
.blockPattern .blockPattern__h3 {
  margin-top: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  article .blockPattern__h2,
  article .blockPattern__h3,
  .blockPattern .blockPattern__h2,
  .blockPattern .blockPattern__h3 {
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
article .blockPattern__paragraph,
article .wp-block-column > p,
article > p,
.blockPattern .blockPattern__paragraph,
.blockPattern .wp-block-column > p,
.blockPattern > p {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  article .blockPattern__paragraph,
  article .wp-block-column > p,
  article > p,
  .blockPattern .blockPattern__paragraph,
  .blockPattern .wp-block-column > p,
  .blockPattern > p {
    margin-bottom: 16px;
  }
}
article .blockPattern__link,
.blockPattern .blockPattern__link {
  color: #2b64b0;
  text-decoration: underline;
}
article .blockPattern__faq[open] > summary::after,
.blockPattern .blockPattern__faq[open] > summary::after {
  background-image: url("../../../muratasoftware_template/assets/svg/faq/faq_close.svg");
}
article .blockPattern__faq summary::before,
.blockPattern .blockPattern__faq summary::before {
  background-image: url("../../../muratasoftware_template/assets/svg/faq/faq_question.svg");
}
article .blockPattern__faq summary::after,
.blockPattern .blockPattern__faq summary::after {
  background-image: url("../../../muratasoftware_template/assets/svg/faq/faq_open.svg");
}
article .blockPattern__faq__answer::before,
.blockPattern .blockPattern__faq__answer::before {
  background-image: url("../../../muratasoftware_template/assets/svg/faq/faq_answer.svg");
}
article .blockPattern__faq__answer--closeButton .button::before,
.blockPattern .blockPattern__faq__answer--closeButton .button::before {
  background-image: url("../../../muratasoftware_template/assets/svg/faq/faq_close.svg");
}
article .blockPattern__faqTitle--hertz::before,
.blockPattern .blockPattern__faqTitle--hertz::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_hertz.svg");
}
article .blockPattern__faqTitle--gauss::before,
.blockPattern .blockPattern__faqTitle--gauss::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_gauss.svg");
}
article .blockPattern__faqTitle--coulomb::before,
.blockPattern .blockPattern__faqTitle--coulomb::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_coulomb.svg");
}
article .blockPattern__faqTitle--galileo::before,
.blockPattern .blockPattern__faqTitle--galileo::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_galileo.svg");
}
article .blockPattern__faqTitle--watt::before,
.blockPattern .blockPattern__faqTitle--watt::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_watt.svg");
}
article .blockPattern__faqTitle--bernoulli::before,
.blockPattern .blockPattern__faqTitle--bernoulli::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_bernoulli.svg");
}
article .blockPattern__faqTitle--rayleigh::before,
.blockPattern .blockPattern__faqTitle--rayleigh::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_rayleigh.svg");
}
article .blockPattern__faqTitle--mach::before,
.blockPattern .blockPattern__faqTitle--mach::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_mach.svg");
}
article .blockPattern__faqTitle--install::before,
.blockPattern .blockPattern__faqTitle--install::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_install.svg");
}
article .blockPattern__faqTitle--modelling::before,
.blockPattern .blockPattern__faqTitle--modelling::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_modelling.svg");
}
article .blockPattern__faqTitle--mesh::before,
.blockPattern .blockPattern__faqTitle--mesh::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_mesh.svg");
}
article .blockPattern__faqTitle--result::before,
.blockPattern .blockPattern__faqTitle--result::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_result.svg");
}
article .blockPattern__faqTitle--macro::before,
.blockPattern .blockPattern__faqTitle--macro::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_macro.svg");
}
article .blockPattern__faqTitle--other::before,
.blockPattern .blockPattern__faqTitle--other::before {
  background-image: url("../../../muratasoftware_template/assets/svg/category/category_others.svg");
}

.cta {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 40px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 80%;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 20px;
    border-radius: 8px;
  }
}
.cta__title {
  margin-bottom: 30px;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .cta__title {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.cta__bar {
  height: auto;
  width: 2px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cta__bar {
    height: 1px;
    width: 100%;
  }
}
.cta__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.cta__detail {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .cta__detail {
    gap: 16px;
  }
}
.cta__icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .cta__icon {
    width: 64px;
    height: 64px;
  }
}
.cta__icon img {
  width: 100%;
  height: 100%;
}
.cta__copy {
  margin-bottom: 10px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.03em;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .cta__copy {
    margin-bottom: 8px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .cta__button {
    width: 100% !important;
  }
  .cta__button .button {
    font-size: 12px !important;
  }
}
.cta__button--document {
  width: 335px;
}
@media screen and (max-width: 767px) {
  .cta__button--document {
    width: 100% !important;
  }
}
.cta__button--trial {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .cta__button--trial {
    width: 100% !important;
  }
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination .page-numbers {
  width: 50px;
  height: 50px;
  border: 1px solid #162643;
  color: #162643;
  transition: all 0.5s;
  font-size: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pagination .page-numbers .pagination__arrow {
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 768px) {
  .pagination .page-numbers:hover {
    background-color: #162643;
    border-color: #162643;
    color: #ffffff;
  }
}
.pagination .page-numbers.current {
  background-color: #162643;
  border-color: #162643;
  color: #ffffff;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .pagination .page-numbers.prev:hover img, .pagination .page-numbers.next:hover img {
    filter: brightness(0) invert(1);
  }
}
.pagination .page-numbers.dots {
  border: none;
}
@media screen and (min-width: 768px) {
  .pagination .page-numbers.dots:hover {
    background-color: transparent;
    border-color: transparent;
    color: #162643;
  }
}
.pagination__arrow {
  width: 18px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__arrow img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(1330%) hue-rotate(178deg) brightness(96%) contrast(94%);
}
.pagination__arrow--prev {
  transform: rotate(90deg);
}
.pagination__arrow--next {
  transform: rotate(-90deg);
}

.mv {
  position: relative;
  height: 640px;
  padding-top: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv {
    width: 100%;
    height: fit-content;
    padding: 20px 20px 40px;
  }
}
.mv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 640px;
}
.mv__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__inner {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    gap: 24px;
    flex-direction: column;
  }
}
.mv__contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .mv__contents {
    gap: 24px;
    align-items: center;
  }
}
.mv__heading {
  color: #ffffff;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .mv__heading {
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
  }
}
.mv__heading--femtet {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .mv__heading--femtet {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.mv__achievements {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .mv__achievements {
    width: 220px;
  }
}
.mv__achievements img,
.mv__achievements video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mv__buttons {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .mv__buttons {
    width: 100%;
    padding: 0 8px;
    flex-direction: column;
    gap: 12px;
  }
}
.mv__buttons--document {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .mv__buttons--document {
    width: 100%;
  }
}
.mv__buttons--trial {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .mv__buttons--trial {
    width: 100%;
  }
}
.mv__image {
  width: 620px;
  height: 368px;
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 360px;
    height: 180px;
  }
}
.mv__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.topAbout {
  position: relative;
  padding: 160px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .topAbout {
    padding: 48px 16px;
    padding-top: 96px;
  }
}
.topAbout__features {
  position: absolute;
  z-index: 1;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .topAbout__features {
    margin-bottom: 32px;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    gap: 24px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .topAbout__features .listItem {
    width: 100%;
  }
}
.topAbout__features .listItem__heading {
  margin-bottom: 12px;
  display: block;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .topAbout__features .listItem__heading {
    color: #333333;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topAbout__features .listItem__detail {
  padding: 12px;
  width: 350px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7fbff;
  box-shadow: 0px 8px 24px 0px rgba(43, 100, 176, 0.4);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .topAbout__features .listItem__detail {
    padding: 16px;
    width: 100%;
    height: 130px;
  }
}
.topAbout__features .listItem__description {
  white-space: nowrap;
  font-weight: 700;
  line-height: 150%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .topAbout__features .listItem__description {
    padding-left: 4px;
    white-space: normal;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.topAbout__features .listItem__image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .topAbout__features .listItem__image {
    width: 100px;
    height: 100px;
  }
}
.topAbout__features .listItem__image img {
  width: 100%;
  height: 100%;
}
.topAbout__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.topAbout__intro {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .topAbout__intro {
    flex-direction: column;
    gap: 24px;
  }
}
.topAbout__intro--description {
  flex-shrink: 0;
  font-weight: 500;
  line-height: 200%;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .topAbout__intro--description {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topAbout__intro--image {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .topAbout__intro--image {
    width: 100%;
  }
}
.topAbout__video {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .topAbout__video {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.topAbout__video--image1 {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .topAbout__video--image1 {
    width: 120px;
    order: 2;
  }
}
.topAbout__video--embed {
  width: 588px;
  height: 342px;
}
@media screen and (max-width: 767px) {
  .topAbout__video--embed {
    order: 1;
    width: 100%;
    height: 100%;
  }
}
.topAbout__video--embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/9;
}
.topAbout__video--thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.topAbout__video--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.topAbout__video--image2 {
  width: 195px;
}
@media screen and (max-width: 767px) {
  .topAbout__video--image2 {
    margin-left: auto;
    width: 120px;
    order: 3;
  }
}

.topFeatures {
  position: relative;
  width: 100%;
  height: 100%;
}
.topFeatures__bg {
  position: sticky;
  top: 96px;
  left: 0;
  width: 100vw;
  height: calc(100svh - 96px);
}
@media screen and (max-width: 767px) {
  .topFeatures__bg {
    position: sticky;
    width: 100%;
    top: 56px;
    width: 100vw;
    height: 100%;
  }
}
.topFeatures__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.topFeatures__wrapper {
  position: relative;
  z-index: 1;
  margin-top: calc(-100svh + 96px);
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .topFeatures__wrapper {
    margin-top: calc(-100svh - 56px);
    padding: 0 16px 48px;
  }
}
.topFeatures__heading {
  width: 100%;
  height: calc(100svh - 178px);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .topFeatures__heading {
    height: 200px;
    justify-content: center;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topFeatures__heading--lg {
  margin-bottom: 20px;
  color: #2b64b0;
  font-size: 62px;
  font-size: 6.2rem;
}
@media screen and (max-width: 767px) {
  .topFeatures__heading--lg {
    margin-bottom: 4px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.topFeatures__inner {
  margin-bottom: 80px;
  width: 100%;
  padding: 80px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .topFeatures__inner {
    margin-bottom: 40px;
    padding: 20px 24px;
  }
}
.topFeatures__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .topFeatures__content {
    flex-direction: column;
    padding: 24px 0;
  }
}
.topFeatures__content:not(:last-of-type) {
  border-bottom: 1px dashed #a9a9a9;
}
.topFeatures__content:first-of-type {
  padding-top: 0;
}
.topFeatures__content:last-of-type {
  padding-bottom: 0;
}
.topFeatures__content--detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .topFeatures__content--detail {
    margin-bottom: 16px;
    gap: 16px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .topFeatures__content--number {
    width: 125px;
  }
}
.topFeatures__content--heading {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .topFeatures__content--heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topFeatures__content--heading span {
  color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .topFeatures__content--heading span {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.topFeatures__content--description {
  font-weight: 700;
  line-height: 150%;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .topFeatures__content--description {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topFeatures__content--image {
  width: 560px;
}
@media screen and (max-width: 767px) {
  .topFeatures__content--image {
    width: 100%;
  }
}
.topFeatures__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topFeatures__button {
    width: 100%;
  }
}

.topFunctions {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .topFunctions {
    padding: 48px 16px;
  }
}
.topFunctions__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.topFunctions__heading {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .topFunctions__heading {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topFunctions__heading--lg {
  color: #2b64b0;
  font-size: 24px;
  font-size: 2.4rem;
}
.topFunctions__description {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 500;
  line-height: 200%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .topFunctions__description {
    text-align: left;
    margin-bottom: 16px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topFunctions__image {
  width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .topFunctions__image {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .topFunctions__image img {
    margin: 0 auto;
  }
}
.topFunctions__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topFunctions__button {
    width: 100%;
  }
}

.topSupport {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .topSupport {
    padding: 48px 16px;
  }
}
.topSupport__heading {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .topSupport__heading {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topSupport__heading--lg {
  font-size: 62px;
  font-size: 6.2rem;
}
@media screen and (max-width: 767px) {
  .topSupport__heading--lg {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.topSupport__inner {
  max-width: 1120px;
  margin: 0 auto 60px;
  background-color: #ffffff;
  padding: 40px 0;
  box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .topSupport__inner {
    margin-bottom: 40px;
    padding: 24px 16px;
    flex-direction: column;
    gap: 24px;
  }
}
.topSupport__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 324px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .topSupport__content {
    width: 100%;
  }
}
.topSupport__content--image {
  margin-bottom: 20px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .topSupport__content--image {
    width: 120px;
  }
  .topSupport__content--image--tech {
    height: 80px;
    width: auto;
  }
}
.topSupport__content--image img {
  width: 100%;
  height: 100%;
}
.topSupport__content--heading {
  margin-bottom: 10px;
  font-weight: 700;
  color: #2b64b0;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .topSupport__content--heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topSupport__content--button {
  width: 100%;
  margin: 20px 0 auto;
}
@media screen and (max-width: 767px) {
  .topSupport__content--button {
    margin-top: 16px;
  }
}
.topSupport hr {
  border-right: 2px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .topSupport hr {
    border-bottom: 1px solid #e0e0e0;
  }
}
.topSupport__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topSupport__button {
    width: 100%;
  }
}

.topCase {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .topCase {
    padding: 48px 16px;
  }
}
.topCase__heading {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .topCase__heading {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topCase__heading--lg {
  color: #2b64b0;
  font-size: 62px;
  font-size: 6.2rem;
}
@media screen and (max-width: 767px) {
  .topCase__heading--lg {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.topCase__description {
  margin-bottom: 60px;
  text-align: center;
  line-height: 200%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .topCase__description {
    margin-bottom: 24px;
    line-height: 150%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topCase__inner {
  max-width: 1120px;
  margin: 0 auto 60px;
  background-color: #ffffff;
  padding: 40px 0;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.4);
  border: 3px solid #2b64b0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .topCase__inner {
    margin-bottom: 40px;
    padding: 24px 16px;
    border: 1px solid #2b64b0;
    flex-direction: column;
    gap: 24px;
  }
}
.topCase__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 322px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .topCase__content {
    width: 100%;
  }
}
.topCase__content--image {
  margin-bottom: 20px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .topCase__content--image {
    margin-bottom: 16px;
    width: 100%;
    height: 100%;
  }
}
.topCase__content--image img {
  width: 100%;
  height: 100%;
}
.topCase__content--heading {
  margin-bottom: 10px;
  font-weight: 700;
  color: #2b64b0;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .topCase__content--heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.topCase hr {
  border-right: 2px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .topCase hr {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}
.topCase__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .topCase__button {
    width: 100%;
  }
}

.femtetAbout {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .femtetAbout {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.femtetAbout__inner {
  max-width: 1120px;
  margin: 0 auto 80px;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .femtetAbout__inner {
    margin-bottom: 0;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.femtetAbout__image {
  flex-shrink: 0;
  width: 450px;
}
@media screen and (max-width: 767px) {
  .femtetAbout__image {
    width: 280px;
  }
}
.femtetAbout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.femtetAbout__description {
  font-weight: 500;
  line-height: 200%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .femtetAbout__description {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.femtetIssues {
  margin-bottom: 96px;
  background-color: #f1f1f1;
  padding: 60px 0 96px;
}
@media screen and (max-width: 767px) {
  .femtetIssues {
    margin-bottom: 40px;
    padding: 48px 16px;
  }
}
.femtetIssues__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.femtetIssues__heading {
  margin-bottom: 40px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .femtetIssues__heading {
    gap: 12px;
    margin-bottom: 24px;
  }
}
.femtetIssues__heading--image {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .femtetIssues__heading--image {
    width: 64px;
    height: 64px;
  }
}
.femtetIssues__heading--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.femtetIssues__heading--title {
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .femtetIssues__heading--title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.femtetIssues__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .femtetIssues__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.femtetIssues__list .listItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .femtetIssues__list .listItem {
    border-radius: 8px;
    padding: 16px 24px;
  }
}
.femtetIssues__list .listItem__heading {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .femtetIssues__list .listItem__heading {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.femtetIssues__list .listItem__heading--lg {
  display: block;
  color: #2b64b0;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .femtetIssues__list .listItem__heading--lg {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.femtetIssues__list .listItem__icon {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .femtetIssues__list .listItem__icon {
    width: 16px;
    height: 16px;
  }
}
.femtetIssues__list .listItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.femtetSolutions {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.femtetSolutions__heading {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions__heading {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.femtetSolutions__heading--lg {
  color: #2b64b0;
  font-size: 62px;
  font-size: 6.2rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions__heading--lg {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.femtetSolutions__inner {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions__inner {
    margin-bottom: 48px;
  }
}
.femtetSolutions__inner:nth-child(odd) .femtetSolution {
  flex-direction: row-reverse;
}
.femtetSolutions .femtetSolution {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution {
    flex-direction: column;
    gap: 24px;
  }
}
.femtetSolutions .femtetSolution__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__content {
    flex-direction: column;
    gap: 16px;
  }
}
.femtetSolutions .femtetSolution__heading {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__heading {
    flex-direction: column;
    gap: 16px;
  }
}
.femtetSolutions .femtetSolution__heading--number {
  padding: 24px 16px;
  color: #ffffff;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__heading--number {
    padding: 12px;
    display: flex;
    gap: 6px;
    align-items: center;
  }
}
.femtetSolutions .femtetSolution__heading--number--text {
  margin-bottom: 4px;
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 100%;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__heading--number--text {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.femtetSolutions .femtetSolution__heading--number--number {
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 100%;
  font-size: 46px;
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__heading--number--number {
    font-size: 20px;
    font-size: 2rem;
  }
}
.femtetSolutions .femtetSolution__headingTitle {
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__headingTitle {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.femtetSolutions .femtetSolution__headingTitle--lg {
  color: #2b64b0;
  font-size: 46px;
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__headingTitle--lg {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.femtetSolutions .femtetSolution__description {
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__description {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.femtetSolutions .femtetSolution__description--lg {
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__description--lg {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.femtetSolutions .femtetSolution__image {
  flex-shrink: 0;
  width: 480px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__image {
    padding: 0 16px;
    width: 100%;
  }
}
.femtetSolutions .femtetSolution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.femtetSolutions .femtetSolution__case {
  width: 100%;
  background-color: #f1f1f1;
  padding: 40px 60px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__case {
    padding: 24px 16px;
  }
}
.femtetSolutions .femtetSolution__case--heading {
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__case--heading {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.femtetSolutions .femtetSolution__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.femtetSolutions .femtetSolution__list .listItem {
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetSolution__list .listItem {
    height: 260px;
  }
}
.femtetSolutions .femtetSolution__list .listItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.femtetSolutions .femtetCompetitiveSolution {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution {
    padding-top: 0;
  }
}
.femtetSolutions .femtetCompetitiveSolution__heading {
  margin-bottom: 40px;
  gap: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution__heading {
    margin-bottom: 24px;
    gap: 12px;
  }
}
.femtetSolutions .femtetCompetitiveSolution__heading--bar {
  width: 100%;
  height: 3px;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution__heading--bar {
    height: 2px;
  }
}
.femtetSolutions .femtetCompetitiveSolution__heading--title {
  flex-shrink: 0;
  width: fit-content;
  color: #2b64b0;
  font-weight: 700;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution__heading--title {
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.femtetSolutions .femtetCompetitiveSolution__description {
  margin-bottom: 40px;
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution__description {
    margin-bottom: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.femtetSolutions .femtetCompetitiveSolution__video {
  max-width: 900px;
  height: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .femtetSolutions .femtetCompetitiveSolution__video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
  }
}
.femtetSolutions .femtetCompetitiveSolution__video--thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.femtetSolutions .femtetCompetitiveSolution__video--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .products {
    margin-bottom: 48px;
  }
}
.products__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .products__description {
    margin-bottom: 24px;
    padding: 0 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.products__inner {
  margin-bottom: 80px;
  padding: 60px 0;
  background-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .products__inner {
    margin-bottom: 48px;
    padding: 48px 16px;
  }
}
.products__anchorHeading {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .products__anchorHeading {
    margin-bottom: 24px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.products__anchor {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .products__anchor {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.products__anchor .listItem .filterButton__icon {
  flex-shrink: 0;
  width: 48px;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .products__anchor .listItem .filterButton__icon {
    width: 32px;
    margin-right: 6px !important;
    margin-left: 0;
  }
}
.products__anchor .listItem--hertz .filterButton__icon, .products__anchor .listItem--galileo .filterButton__icon, .products__anchor .listItem--rayleigh .filterButton__icon {
  margin-left: 0;
  margin-right: 0;
}
.products__anchor .listItem--gauss .filterButton__icon, .products__anchor .listItem--watt .filterButton__icon, .products__anchor .listItem--mach .filterButton__icon {
  margin-left: 0;
}
.products__list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .products__list {
    gap: 64px;
    padding: 0 16px;
  }
}
.products__list .product {
  max-width: 1120px;
  margin: 0 auto;
}
.products__list .product__heading {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .products__list .product__heading {
    margin-bottom: 16px;
    gap: 8px;
  }
}
.products__list .product__heading--icon {
  width: 92px;
}
@media screen and (max-width: 767px) {
  .products__list .product__heading--icon {
    width: 56px;
  }
}
.products__list .product__heading--icon img {
  width: 100%;
  height: 100%;
}
.products__list .product__heading--title {
  font-weight: 700;
  color: #2b64b0;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .products__list .product__heading--title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.products__list .product__description {
  margin-bottom: 40px;
  line-height: 150%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .products__list .product__description {
    margin-bottom: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.products__list .product__table {
  margin-bottom: 40px;
  border: 1px solid #ccced5;
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .products__list .product__table {
    margin-bottom: 24px;
  }
}
.products__list .product__table tr:not(:last-of-type) {
  border-bottom: 1px solid #ccced5;
}
.products__list .product__table tr td {
  box-sizing: border-box;
  padding: 24px;
  line-height: 150%;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  background-color: #ffffff;
  border-color: #dedede;
}
@media screen and (max-width: 767px) {
  .products__list .product__table tr td {
    padding: 10px;
    font-size: 12px;
  }
}
.products__list .product__table tr td:first-of-type {
  width: 300px;
  background-color: #e6f0ff;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .products__list .product__table tr td:first-of-type {
    width: 110px;
  }
}
.products__list .product__examples {
  padding: 40px;
  background-color: #f1f1f1;
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .products__list .product__examples {
    padding: 24px 16px;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}
.products__list .product__examples--1 {
  grid-template-columns: repeat(1, 1fr);
}
.products__list .product__examples--1 .listItem__image {
  height: 560px !important;
}
.products__list .product__examples--2 {
  grid-template-columns: repeat(2, 1fr);
}
.products__list .product__examples--3 {
  grid-template-columns: repeat(3, 1fr);
}
.products__list .product__examples .listItem {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .products__list .product__examples .listItem {
    gap: 12px;
  }
}
.products__list .product__examples .listItem__heading {
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .products__list .product__examples .listItem__heading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.products__list .product__examples .listItem__image {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .products__list .product__examples .listItem__image {
    height: 100% !important;
  }
}
.products__list .product__examples .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products__list .product__buttons {
  margin-top: 40px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .products__list .product__buttons {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.products__list .product__buttons .button {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .products__list .product__buttons .button {
    width: 100%;
  }
}

.caseTop {
  max-width: 1120px;
  margin: 0 auto 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .caseTop {
    margin-bottom: 48px;
  }
}
.caseTop__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .caseTop__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.caseTop__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}
@media screen and (max-width: 767px) {
  .caseTop__list {
    padding: 0 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.caseTop__list .listItem {
  background-color: #ffffff;
  padding: 20px 20px 40px;
  border-radius: 8px;
  box-shadow: 0px 0px 24px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem {
    padding: 16px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.caseTop__list .listItem__image {
  margin-bottom: 16px;
  width: auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem__image {
    margin-bottom: 12px;
    height: 85px;
  }
}
.caseTop__list .listItem__image .icon_example {
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem__image .icon_example {
    padding-left: 16px;
  }
}
.caseTop__list .listItem__title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  line-height: 160%;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem__title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.caseTop__list .listItem__copy {
  margin-bottom: 10px;
  text-align: center;
  line-height: 160%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem__copy {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .caseTop__list .listItem__button {
    margin-top: auto;
  }
  .caseTop__list .listItem__button .button {
    height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .caseTop__list .listItem__button .button__arrow {
    right: 8px;
    width: 20px;
    height: 20px;
  }
}

.caseArchiveFilter {
  background-color: #f1f1f1;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter {
    padding: 0 16px;
    padding-bottom: 48px;
  }
}
.caseArchiveFilter__heading {
  margin-bottom: 40px;
  flex-direction: column;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter__heading {
    margin-bottom: 24px;
  }
}
.caseArchiveFilter__title {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.caseArchiveFilter__title span {
  font-size: 14px;
  font-size: 1.4rem;
}
.caseArchiveFilter__list {
  display: grid;
  grid-template-columns: repeat(5, 180px);
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.caseArchiveFilter__list .listItem {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter__list .listItem.caseArchiveFilter__link .filterButton {
    padding-left: 0px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .caseArchiveFilter__list .listItem .filterButton {
    justify-content: center;
  }
  .caseArchiveFilter__list .listItem .filterButton .filterButton__icon {
    width: 32px;
    margin-right: 6px !important;
    margin-left: 0;
  }
}
.caseArchiveFilter__list .listItem--gauss .filterButton__icon {
  margin-right: 6px;
}
.caseArchiveFilter__list .listItem--coulomb .filterButton__icon {
  margin-right: 8px;
}
.caseArchiveFilter__list .listItem--galileo .filterButton__icon, .caseArchiveFilter__list .listItem--rayleigh .filterButton__icon {
  margin-left: -4px;
}
.caseArchiveFilter__list .listItem--mach .filterButton__icon {
  margin-right: 0;
  margin-left: -10px;
}
.caseArchiveFilter__list .listItem .filterButton {
  width: 100%;
}
.caseArchiveFilter__list .listItem.is-current .filterButton {
  background-color: #2b64b0;
  color: #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.caseArchive {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 0;
}
@media screen and (max-width: 767px) {
  .caseArchive {
    padding: 48px 16px;
  }
}
.caseArchive__list {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .caseArchive__list {
    margin-bottom: 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.caseArchive__list .listItem {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
.caseArchive__list .listItem__image {
  width: 100%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  overflow: hidden;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.caseArchive__list .listItem__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseArchive__list .listItem__detail {
  padding: 15px 20px 30px;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.caseArchive__list .listItem__number {
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
  color: #898989;
  font-size: 12px;
  font-size: 1.2rem;
}
.caseArchive__list .listItem__categories {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.caseArchive__list .listItem__categories span {
  width: 100%;
  height: 25px;
  font-weight: 500;
  color: #ffffff;
  background-color: #2b64b0;
  font-size: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caseArchive__list .listItem__title {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 150%;
  font-size: 16px;
  font-size: 1.6rem;
}
.caseArchive__list .listItem__button {
  margin-top: auto;
}

.caseBibliography {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .caseBibliography {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.caseBibliography__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .caseBibliography__description {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.caseBibliography__list .listItem {
  display: grid;
  grid-template-columns: 50px 95px 1fr;
  grid-auto-flow: column;
  background-color: #ffffff;
  border: 1px solid #dedede;
}
.caseBibliography__list .listItem + .listItem {
  border-top: none;
}
.caseBibliography__list .listItem:nth-of-type(odd) .listItem__column-1 {
  background-color: #e6f0ff;
}
.caseBibliography__list .listItem:nth-of-type(odd) .listItem__column-2 {
  background-color: #e6f0ff;
}
.caseBibliography__list .listItem__value {
  line-height: 150%;
  font-size: 12px;
  font-size: 1.2rem;
}
.caseBibliography__list .listItem__column-1 {
  grid-column: 1/2;
  grid-row: 1/5;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid #dedede;
}
.caseBibliography__list .listItem__column-2 {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  border-right: 1px solid #dedede;
}
.caseBibliography__list .listItem__column-2 + .listItem__column-2 {
  border-top: 1px solid #dedede;
}
.caseBibliography__list .listItem__column-3 {
  padding: 12px 24px;
}
.caseBibliography__list .listItem__column-3 + .listItem__column-3 {
  border-top: 1px solid #dedede;
}

.caseMacro {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .caseMacro {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.caseMacro__description {
  margin-bottom: 20px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .caseMacro__description {
    margin-bottom: 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.caseMacro__description span {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .caseMacro__description span {
    margin-bottom: 24px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.caseMacro__button {
  width: 330px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .caseMacro__button {
    margin-bottom: 40px;
  }
}
.caseMacro__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.caseMacro__list .listItem {
  padding: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem {
    padding: 24px 16px;
  }
}
.caseMacro__list .listItem__heading {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__heading {
    margin-bottom: 24px;
    flex-direction: column;
    gap: 16px;
  }
}
.caseMacro__list .listItem__number {
  flex-shrink: 0;
  height: fit-content;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  padding: 14px 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__number {
    padding: 6px 12px;
    gap: 4px;
  }
}
.caseMacro__list .listItem__number span {
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__number span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.caseMacro__list .listItem__number .macro_number {
  margin-bottom: 2px;
  line-height: 100%;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__number .macro_number {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.caseMacro__list .listItem__title {
  font-weight: 700;
  color: #2b64b0;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__title {
    width: 100%;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.caseMacro__list .listItem__button {
  width: 330px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .caseMacro__list .listItem__button {
    margin-top: 24px;
    width: 100%;
  }
}

.charge {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .charge {
    padding: 0 16px;
  }
}
.charge__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .charge__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.charge__anchor {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .charge__anchor {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.charge__anchor .listItem .filterButton {
  height: 70px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .charge__anchor .listItem .filterButton {
    height: 50px;
  }
  .charge__anchor .listItem .filterButton .filterButton__arrow {
    right: 16px;
  }
}

.chargeBasic {
  max-width: 1120px;
  margin: 0 auto 80px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeBasic {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.chargeBasic__heading {
  width: 100%;
  height: 120px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  color: #ffffff;
  font-weight: 700;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 38px;
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chargeBasic__heading {
    height: 64px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.chargeBasic__content {
  background-color: #ffffff;
  padding: 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeBasic__content {
    padding: 24px 16px;
    box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  }
}
.chargeBasic__description {
  width: fit-content;
  margin: 0 auto 32px;
  padding: 20px 60px;
  text-align: center;
  line-height: 160%;
  border: 2px solid #2b64b0;
  border-radius: 8px;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__description {
    margin-bottom: 24px;
    padding: 12px 16px;
    border: 1px solid #2b64b0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeBasic__prices {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .chargeBasic__prices {
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.chargeBasic__license--heading {
  margin-bottom: 10px;
  background-color: #2b64b0;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__license--heading {
    padding: 8px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.chargeBasic__licensePrice {
  display: flex;
  justify-content: center;
  align-items: baseline;
  background-image: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position-y: 92%;
}
.chargeBasic__licensePrice--sm {
  color: #2b64b0;
  font-weight: 700;
  letter-spacing: -0.2rem;
  font-size: 23px;
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__licensePrice--sm {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.chargeBasic__licensePrice--lg {
  color: #ff4649;
  font-weight: 700;
  font-size: 96px;
  font-size: 9.6rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__licensePrice--lg {
    font-size: 60px;
    font-size: 6rem;
  }
}
.chargeBasic .paragraph-reg {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .chargeBasic .paragraph-reg {
    margin-bottom: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeBasic__functions--heading {
  margin-bottom: 32px;
  background-color: #2b64b0;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__functions--heading {
    margin-bottom: 16px;
    padding: 8px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.chargeBasic__functions--image {
  width: 888px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .chargeBasic__functions--image {
    width: 100%;
    margin-bottom: 24px;
  }
}
.chargeBasic__functions--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chargeBasic__functions--notes {
  padding: 0;
  list-style: none;
  counter-reset: note;
}
.chargeBasic__functions--notes .listItem {
  counter-increment: note;
  position: relative;
  padding-left: 36px;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .chargeBasic__functions--notes .listItem {
    padding-left: 24px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.chargeBasic__functions--notes .listItem::before {
  content: "注" counter(note) "：";
  position: absolute;
  left: 0;
}

.chargeAcademic {
  max-width: 1120px;
  margin: 0 auto 80px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.chargeAcademic__heading {
  width: 100%;
  height: 120px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  color: #ffffff;
  font-weight: 700;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 38px;
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__heading {
    height: 64px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.chargeAcademic__content {
  background-color: #ffffff;
  padding: 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__content {
    padding: 24px 16px;
    box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  }
}
.chargeAcademic__description {
  width: fit-content;
  margin: 0 auto 32px;
  padding: 20px 60px;
  text-align: center;
  line-height: 160%;
  border: 2px solid #2b64b0;
  border-radius: 8px;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__description {
    margin-bottom: 24px;
    padding: 12px 16px;
    border: 1px solid #2b64b0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeAcademic__prices {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__prices {
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.chargeAcademic__license--heading {
  margin-bottom: 10px;
  background-color: #2b64b0;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__license--heading {
    padding: 8px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.chargeAcademic__licensePrice {
  display: flex;
  justify-content: center;
  align-items: baseline;
  background-image: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position-y: 92%;
}
.chargeAcademic__licensePrice--sm {
  color: #2b64b0;
  font-weight: 700;
  letter-spacing: -0.3rem;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__licensePrice--sm {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.chargeAcademic__licensePrice--lg {
  color: #ff4649;
  font-weight: 700;
  font-size: 96px;
  font-size: 9.6rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__licensePrice--lg {
    font-size: 60px;
    font-size: 6rem;
  }
}
.chargeAcademic .paragraph-reg {
  margin-top: 16px;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic .paragraph-reg {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeAcademic__functions--heading {
  margin-bottom: 32px;
  background-color: #2b64b0;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__functions--heading {
    margin-bottom: 16px;
    padding: 8px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.chargeAcademic__functions--image {
  width: 888px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__functions--image {
    width: 100%;
    margin-bottom: 24px;
  }
}
.chargeAcademic__functions--image--academic {
  width: 772px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__functions--image--academic {
    width: 100%;
    margin-bottom: 24px;
  }
}
.chargeAcademic__functions--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chargeAcademic__functions--notes {
  padding: 0;
  list-style: none;
  counter-reset: note;
}
.chargeAcademic__functions--notes .listItem {
  counter-increment: note;
  position: relative;
  padding-left: 36px;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .chargeAcademic__functions--notes .listItem {
    padding-left: 24px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.chargeAcademic__functions--notes .listItem::before {
  content: "注" counter(note) "：";
  position: absolute;
  left: 0;
}

.chargePriceLists {
  max-width: 1120px;
  margin: 0 auto 80px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargePriceLists {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.chargePriceLists__heading {
  width: 100%;
  height: 120px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  color: #ffffff;
  font-weight: 700;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 38px;
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chargePriceLists__heading {
    height: 64px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.chargePriceLists__content {
  background-color: #ffffff;
  padding: 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargePriceLists__content {
    padding: 24px 16px;
    box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
    overflow-x: scroll;
  }
}
.chargePriceLists__table {
  width: 100%;
  table-layout: fixed;
  overflow-x: scroll;
  border: 1px solid #dedede;
}
.chargePriceLists__table th {
  height: 64px;
  background-color: #2b64b0;
  color: #ffffff;
  padding: 0 24px;
  border-bottom: 1px solid #dedede;
}
.chargePriceLists__table tr:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.chargePriceLists__table th,
.chargePriceLists__table td {
  width: 260px;
  height: 56px;
  padding: 0 20px;
  font-weight: 700;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .chargePriceLists__table th,
  .chargePriceLists__table td {
    width: 220px;
    height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargePriceLists__table th:not(:last-of-type),
.chargePriceLists__table td:not(:last-of-type) {
  border-right: 1px solid #dedede;
}

.chargeOptions {
  max-width: 1120px;
  margin: 0 auto 80px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeOptions {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.chargeOptions__heading {
  width: 100%;
  height: 120px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  color: #ffffff;
  font-weight: 700;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 38px;
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chargeOptions__heading {
    height: 64px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.chargeOptions__content {
  background-color: #ffffff;
  padding: 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeOptions__content {
    padding: 24px 16px;
    box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  }
}
.chargeOptions__description {
  margin-bottom: 32px;
  line-height: 160%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .chargeOptions__description {
    margin-bottom: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeOptions .chargeOption {
  margin-bottom: 32px;
  padding: 40px;
  background-color: #f1f1f1;
  border-radius: 8px;
}
.chargeOptions .chargeOption:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption {
    margin-bottom: 24px;
    padding: 16px;
  }
}
.chargeOptions .chargeOption__heading {
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-weight: 700;
  color: #2b64b0;
  border-bottom: 3px solid #2b64b0;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__heading {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2b64b0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.chargeOptions .chargeOption__button {
  width: 330px;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__button {
    margin-top: 12px;
    width: 100%;
  }
}
.chargeOptions .chargeOption__cases {
  margin-top: 16px;
}
.chargeOptions .chargeOption__cases--heading {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__cases--heading {
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.chargeOptions .chargeOption__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.chargeOptions .chargeOption__list .listItem {
  display: block;
  border-radius: 8px;
}
.chargeOptions .chargeOption__list .listItem__image {
  width: 100%;
  height: 180px;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__list .listItem__image {
    height: 160px;
  }
}
.chargeOptions .chargeOption__list .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.chargeOptions .chargeOption__list .listItem__title {
  height: 70px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2b64b0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__list .listItem__title {
    height: 64px;
    padding: 0 12px;
  }
}
.chargeOptions .chargeOption__list .listItem__title--text {
  color: #ffffff;
  font-weight: 700;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .chargeOptions .chargeOption__list .listItem__title--text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.chargeLicenses {
  max-width: 1120px;
  margin: 0 auto 80px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeLicenses {
    padding: 0 16px;
    margin-bottom: 48px;
  }
}
.chargeLicenses__heading {
  width: 100%;
  height: 120px;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  color: #ffffff;
  font-weight: 700;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 38px;
  font-size: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .chargeLicenses__heading {
    height: 64px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.chargeLicenses__content {
  background-color: #ffffff;
  padding: 40px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .chargeLicenses__content {
    padding: 24px 16px;
    box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  }
}
.chargeLicenses__description {
  margin-bottom: 32px;
  line-height: 160%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .chargeLicenses__description {
    margin-bottom: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeLicenses .chargeLicense {
  margin-bottom: 32px;
}
.chargeLicenses .chargeLicense:last-of-type {
  margin-bottom: 0;
}
.chargeLicenses .chargeLicense__heading {
  margin-bottom: 32px;
  background-color: #2b64b0;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__heading {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2b64b0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.chargeLicenses .chargeLicense__notes {
  margin: 32px 0;
  padding: 0;
  list-style: none;
  counter-reset: note;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__notes {
    margin: 16px 0;
  }
}
.chargeLicenses .chargeLicense__notes .listItem {
  counter-increment: note;
  position: relative;
  padding-left: 28px;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__notes .listItem {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.chargeLicenses .chargeLicense__notes .listItem::before {
  content: "注：";
  position: absolute;
  left: 0;
}
.chargeLicenses .chargeLicense__inner {
  margin-top: 32px;
  padding: 40px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__inner {
    margin-top: 16px;
    padding: 16px;
  }
}
.chargeLicenses .chargeLicense__description {
  margin-bottom: 24px;
  text-align: center;
  line-height: 150%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__description {
    margin-bottom: 16px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.chargeLicenses .chargeLicense__image {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .chargeLicenses .chargeLicense__image {
    width: 100%;
  }
  .chargeLicenses .chargeLicense__image--node {
    width: 240px;
    margin: 0 auto;
  }
  .chargeLicenses .chargeLicense__image--hard {
    width: 220px;
    margin: 0 auto;
  }
  .chargeLicenses .chargeLicense__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.informationArchiveFilter {
  max-width: 1120px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .informationArchiveFilter {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.informationArchiveFilter__list {
  display: grid;
  grid-template-columns: repeat(6, 165px);
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .informationArchiveFilter__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.informationArchive {
  max-width: 1120px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .informationArchive {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.informationArchive__list {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .informationArchive__list {
    margin-bottom: 40px;
  }
}
.informationArchive__list .listItem {
  display: flex;
  align-items: center;
  padding: 16px 0;
  height: 80px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .informationArchive__list .listItem {
    flex-wrap: wrap;
    height: auto;
  }
}
.informationArchive__list .listItem:first-of-type {
  border-top: 1px solid #e6e6e6;
}
.informationArchive__list .listItem__date {
  margin-right: 24px;
  display: block;
  color: #898989;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.03em;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .informationArchive__list .listItem__date {
    margin-right: 12px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.informationArchive__list .listItem__category {
  flex-shrink: 0;
  margin-right: 20px;
  display: block;
  width: 100px;
  height: 24px;
  font-size: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .informationArchive__list .listItem__category {
    width: 80px;
    height: 20px;
    margin-right: 12px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.informationArchive__list .listItem__category--event {
  background-color: #ffe37d;
}
.informationArchive__list .listItem__category--news {
  background-color: #80ccff;
}
.informationArchive__list .listItem__category--seminar {
  background-color: #f4b2db;
}
.informationArchive__list .listItem__category--tech {
  background-color: #85e4ad;
}
.informationArchive__list .listItem__category--column {
  background-color: #ccabeb;
}
.informationArchive__list .listItem a {
  display: block;
  width: 100%;
}
.informationArchive__list .listItem__title {
  line-height: 150%;
  letter-spacing: 0.03em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .informationArchive__list .listItem__title {
    margin-top: 8px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.faq {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.faq__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .faq__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.faq__description--link {
  font-weight: 700;
  color: #2b64b0;
  text-decoration: underline;
}
.faq__anchor {
  margin-bottom: 80px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .faq__anchor {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.faq__anchor .listItem {
  width: 208px;
}
@media screen and (max-width: 767px) {
  .faq__anchor .listItem {
    width: 100%;
  }
}
.faq__anchor--tech {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .faq__anchor--tech {
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.faq__anchor--tech .listItem {
  width: 100%;
}
.faq__list {
  padding: 0;
}
.faq__list .listItem {
  display: grid;
  grid-template-columns: 50px 95px 1fr;
  grid-auto-flow: column;
  background-color: #ffffff;
  border: 1px solid #dedede;
}
.faq__list .listItem + .listItem {
  border-top: none;
}
.faq__list .listItem:nth-of-type(odd) .listItem__column-1 {
  background-color: #e6f0ff;
}
.faq__list .listItem:nth-of-type(odd) .listItem__column-2 {
  background-color: #e6f0ff;
}
.faq__list .listItem__value {
  line-height: 150%;
  font-size: 12px;
  font-size: 1.2rem;
}
.faq__list .listItem__column-1 {
  grid-column: 1/2;
  grid-row: 1/5;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid #dedede;
}
.faq__list .listItem__column-2 {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  border-right: 1px solid #dedede;
}
.faq__list .listItem__column-2 + .listItem__column-2 {
  border-top: 1px solid #dedede;
}
.faq__list .listItem__column-3 {
  padding: 12px 24px;
}
.faq__list .listItem__column-3 + .listItem__column-3 {
  border-top: 1px solid #dedede;
}

.corporate {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .corporate {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.corporate__inner {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .corporate__inner {
    margin-bottom: 40px;
  }
}
.corporate__title {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .corporate__title {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.corporate__subTitle {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 150%;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .corporate__subTitle {
    margin-bottom: 8px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.corporate__overview {
  width: 100%;
}
.corporate__overview tr {
  border-top: 1px solid #dedede;
}
.corporate__overview tr:last-of-type {
  border-bottom: 1px solid #dedede;
}
.corporate__overview tr td {
  padding: 20px 0;
  line-height: 160%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .corporate__overview tr td {
    padding: 16px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.corporate__overview--heading {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .corporate__overview--heading {
    width: 120px;
  }
}
.corporate__ceo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .corporate__ceo {
    margin-top: 16px;
  }
}
.corporate__ceo--company {
  display: block;
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .corporate__ceo--company {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.corporate__ceo--position {
  margin-right: 18px;
  display: block;
}
@media screen and (max-width: 767px) {
  .corporate__ceo--position {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.corporate__ceo--name {
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .corporate__ceo--name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.corporate__access {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .corporate__access {
    flex-direction: column;
    gap: 16px;
  }
}
.corporate__access--map {
  width: 525px;
  height: 340px;
}
@media screen and (max-width: 767px) {
  .corporate__access--map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
  }
}
.corporate__access--map iframe {
  width: 100%;
  height: 100%;
}
.corporate__access--heading {
  margin-bottom: 10px;
  line-height: 160%;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .corporate__access--heading {
    margin-bottom: 8px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.corporate__access--train {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .corporate__access--train {
    margin-bottom: 24px;
  }
}
.corporate__access--train .listItem {
  padding-left: 18px;
  position: relative;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .corporate__access--train .listItem {
    padding-left: 16px;
  }
}
.corporate__access--train .listItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 3px;
  background-color: #2b64b0;
}

.support {
  max-width: 1120px;
  margin: 0 auto 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .support {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.support__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .support__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.support__menu {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .support__menu {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.support__menu .listItem {
  height: 200px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .support__menu .listItem {
    height: 80px;
    padding: 16px;
    flex-direction: row;
  }
}
.support__menu .listItem__image {
  min-height: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .support__menu .listItem__image {
    flex-shrink: 0;
    margin-left: 8px;
  }
  .support__menu .listItem__image--tech {
    height: 88%;
    margin-left: 0;
  }
}
.support__menu .listItem__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.support__menu .listItem__heading {
  flex-shrink: 0;
  height: 55px;
  font-weight: 600;
  line-height: 200%;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .support__menu .listItem__heading {
    height: auto;
    margin-left: 14px;
    text-align: left;
  }
  .support__menu .listItem__heading--support {
    margin-left: 18px;
  }
  .support__menu .listItem__heading--contents {
    margin-left: 24px;
  }
}
.support__menu .listItem__arrow {
  width: 20px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .support__menu .listItem__arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
  }
}
.support__inner {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .support__inner {
    padding: 24px 16px;
  }
}
.support__inner:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .support__inner:not(:last-child) {
    margin-bottom: 40px;
  }
}
.support__heading {
  margin-bottom: 32px;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 48px;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .support__heading {
    margin-bottom: 24px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.support__subHeading {
  margin-bottom: 20px;
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .support__subHeading {
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.support__steps {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .support__steps {
    padding-left: 8px;
    gap: 24px;
  }
}
.support__steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .support__steps::before {
    width: 2px;
  }
}
.support__steps .listItem {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem {
    flex-wrap: wrap;
    gap: 4px;
  }
}
.support__steps .listItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -39px;
  transform: translateY(-50%);
  width: 18px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_down.svg");
}
@media screen and (max-width: 767px) {
  .support__steps .listItem::before {
    top: calc(50% + 24px);
    left: -14px;
    width: 14px;
    height: 14px;
  }
}
.support__steps .listItem:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.support__steps .listItem:not(:last-child)::before {
  top: calc(50% - 12px);
}
@media screen and (max-width: 767px) {
  .support__steps .listItem:not(:last-child)::before {
    top: calc(50% + 8px);
  }
}
.support__steps .listItem__step {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem__step {
    width: calc(100% - 8px);
    height: auto;
    margin-left: auto;
  }
}
.support__steps .listItem__step--sp {
  margin-bottom: 8px;
  display: block;
  width: 100%;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  padding: 2px 0;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-size: 1rem;
}
.support__steps .listItem__step--sp strong {
  margin-left: 2px;
  margin-bottom: 2px;
  font-size: 16px;
  font-size: 1.6rem;
}
.support__steps .listItem__image {
  flex-shrink: 0;
  width: 264px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem__image {
    width: 100px;
    height: auto;
  }
}
.support__steps .listItem__description {
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem__description {
    max-width: calc(100% - 104px);
  }
}
.support__steps .listItem__heading {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem__heading {
    margin-bottom: 4px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.support__steps .listItem__list {
  padding-left: 8px;
  list-style: "-";
  line-height: 180%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .support__steps .listItem__list {
    padding-left: 6px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.support__steps .listItem__list li {
  padding-left: 8px;
}
.support__videos {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .support__videos {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.support__video {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
.support__video--thumbnail {
  width: 100%;
  height: 280px;
}
@media screen and (max-width: 767px) {
  .support__video--thumbnail {
    height: 180px;
  }
}
.support__video--thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.support__video--detail {
  padding: 20px;
  background-color: #f1f1f1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 767px) {
  .support__video--detail {
    padding: 16px;
  }
}
.support__video--title {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .support__video--title {
    margin-bottom: 12px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.support__video--recommends {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .support__video--recommends {
    padding-left: 14px;
  }
}
.support__video--recommends li:first-child {
  margin-left: -16px;
  list-style: none;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .support__video--recommends li:first-child {
    margin-bottom: 4px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.support__video--recommends .listItem {
  list-style: "・";
}
@media screen and (max-width: 767px) {
  .support__video--recommends .listItem {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.support__video--button {
  margin: 0 auto;
  width: 330px;
}
@media screen and (max-width: 767px) {
  .support__video--button {
    width: 100%;
  }
}
.support__button {
  margin: 64px auto;
  width: 330px;
}
@media screen and (max-width: 767px) {
  .support__button {
    margin: 40px auto;
    width: 100%;
  }
}
.support__content {
  margin-top: 20px;
  display: flex;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .support__content {
    margin-top: 16px;
    flex-direction: column;
  }
}
.support__content--image {
  flex-shrink: 0;
  width: 488px;
}
@media screen and (max-width: 767px) {
  .support__content--image {
    width: 100%;
    height: 180px;
  }
}
.support__content--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: aqua;
}
.support__content--detail {
  padding: 40px;
  background-color: #f1f1f1;
  width: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 767px) {
  .support__content--detail {
    width: 100%;
    padding: 16px;
  }
}
.support__content--heading {
  margin-bottom: 20px;
  font-weight: 700;
  color: #2b64b0;
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .support__content--heading {
    margin-bottom: 12px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.support__content--recommends {
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .support__content--recommends {
    padding-left: 14px;
  }
}
.support__content--recommends li:first-child {
  margin-left: -16px;
  list-style: none;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .support__content--recommends li:first-child {
    margin-bottom: 4px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.support__content--recommends .listItem {
  list-style: "・";
}
@media screen and (max-width: 767px) {
  .support__content--recommends .listItem {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.support__content--button {
  margin-top: 20px;
  width: 330px;
}
@media screen and (max-width: 767px) {
  .support__content--button {
    margin-top: 16px;
    width: 100%;
  }
}

.supportDesk {
  max-width: 1120px;
  margin: 0 auto 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .supportDesk {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.supportDesk__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .supportDesk__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.supportDesk__menu {
  padding: 40px 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-radius: 8px;
  border: 3px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .supportDesk__menu {
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
  }
  .supportDesk__menu > li:nth-child(3n) {
    border-right: none !important;
  }
  .supportDesk__menu > li:not(:last-child) {
    border-bottom: 1px solid #e0e0e0 !important;
  }
  .supportDesk__menu > li:last-child {
    border-right: 1px solid #e0e0e0;
  }
}
.supportDesk__menu > li:not(:last-child) {
  border-right: 2px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .supportDesk__menu > li:not(:last-child) {
    border-right: 1px solid #e0e0e0;
  }
}
.supportDesk__menu .listItem {
  height: 150px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .supportDesk__menu .listItem {
    padding-bottom: 16px;
    width: 100%;
    height: 125px;
    gap: 8px;
  }
}
.supportDesk__menu .listItem__image {
  min-height: 0;
  height: 100%;
}
.supportDesk__menu .listItem__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.supportDesk__menu .listItem__heading {
  flex-shrink: 0;
  height: 55px;
  font-weight: 600;
  line-height: 200%;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .supportDesk__menu .listItem__heading {
    line-height: 150%;
    height: 32px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.supportTopics {
  max-width: 1120px;
  margin: 0 auto 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .supportTopics {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.supportTopics__heading {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 48px;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .supportTopics__heading {
    margin-bottom: 24px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.supportTopics__filter {
  margin-bottom: 40px;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .supportTopics__filter {
    margin-bottom: 24px;
    gap: 8px;
    flex-wrap: wrap;
  }
}
.supportTopics__button {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .supportTopics__button {
    width: 160px;
  }
}
.supportTopics__showAllButton {
  width: 440px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .supportTopics__showAllButton {
    margin-top: 24px;
    width: 100%;
  }
}

.tutorial {
  max-width: 1120px;
  margin: 0 auto 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tutorial {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.tutorial__inner {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .tutorial__inner {
    margin-bottom: 48px;
  }
}
.tutorial__heading {
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 48px;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .tutorial__heading {
    margin-bottom: 16px;
    text-align: center;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.tutorial__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .tutorial__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.tutorial__list .listItem {
  width: 100%;
  height: 272px;
  background-color: #ffffff;
  flex-direction: column;
  box-shadow: 0px 7.38px 23.08px 0px rgba(43, 100, 176, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tutorial__list .listItem {
    height: 80px;
    flex-direction: row;
    padding: 0 16px;
    gap: 16px;
  }
}
.tutorial__list .listItem__image {
  margin-bottom: 20px;
  width: 280px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .tutorial__list .listItem__image {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 80px;
  }
}
.tutorial__list .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tutorial__list .listItem__detail {
  width: 100%;
}
.tutorial__list .listItem__title {
  margin-bottom: 10px;
  color: #2b64b0;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .tutorial__list .listItem__title {
    margin-bottom: 2px;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.tutorial__list .listItem__description {
  text-align: center;
  line-height: 150%;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .tutorial__list .listItem__description {
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.tutorial__description {
  margin-bottom: 40px;
  line-height: 150%;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .tutorial__description {
    margin-bottom: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.tutorial__content {
  margin-bottom: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  box-shadow: 0px 7.38px 23.08px 0px rgba(43, 100, 176, 0.2509803922);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .tutorial__content {
    padding: 24px 16px;
  }
}
.tutorial__content .tutorialVideoList__heading {
  background-color: #2b64b0;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__heading {
    padding: 8px 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.tutorial__content .tutorialVideoList__carousel {
  position: relative;
  padding: 40px 40px 0;
  filter: drop-shadow(0 8px 25px rgba(43, 100, 176, 0.2));
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel {
    padding: 24px 16px 0;
  }
}
.tutorial__content .tutorialVideoList__carousel .splide__arrow {
  border: 0;
  border-radius: 0;
  opacity: 1;
  background-color: #2b64b0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .tutorial__content .tutorialVideoList__carousel .splide__arrow:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel .splide__arrow {
    width: 32px;
    height: 32px;
  }
}
.tutorial__content .tutorialVideoList__carousel .splide__arrow img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel .splide__arrow img {
    width: 14px;
    height: 14px;
  }
}
.tutorial__content .tutorialVideoList__carousel .splide__arrow--prev {
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel .splide__arrow--prev {
    left: 0;
  }
}
.tutorial__content .tutorialVideoList__carousel .splide__arrow--next {
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel .splide__arrow--next {
    right: 0;
  }
}
.tutorial__content .tutorialVideoList__carousel .splide__slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel .splide__slide img {
    height: 168px;
  }
}
.tutorial__content .tutorialVideoList__carousel--inner {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
}
.tutorial__content .tutorialVideoList__carousel--title {
  padding: 20px;
  font-weight: 700;
  color: #2b64b0;
  line-height: 160%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .tutorial__content .tutorialVideoList__carousel--title {
    padding: 16px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.downloadArchive {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .downloadArchive {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.downloadArchive__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.downloadArchive__anchor {
  margin-bottom: 40px;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .downloadArchive__anchor {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.downloadArchive__anchor .listItem {
  width: 290px;
}
@media screen and (max-width: 767px) {
  .downloadArchive__anchor .listItem {
    width: 100%;
  }
}
.downloadArchive__anchor .listItem--licenseTools .filterButton__icon {
  width: 26px;
}
@media screen and (max-width: 767px) {
  .downloadArchive__anchor .listItem--licenseTools .filterButton__icon {
    width: 32px;
  }
}
.downloadArchive__inner {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .downloadArchive__inner {
    margin-bottom: 40px;
    padding: 24px 16px;
  }
}
.downloadArchive__heading {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .downloadArchive__heading {
    margin-bottom: 24px;
    gap: 8px;
  }
}
.downloadArchive__heading--icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 767px) {
  .downloadArchive__heading--icon {
    width: 32px;
    height: 32px;
  }
}
.downloadArchive__heading--icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.downloadArchive__heading--text {
  color: #2b64b0;
  font-weight: 700;
  color: #2b64b0;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive__heading--text {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.downloadArchive .downloadContent:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent:not(:last-of-type) {
    margin-bottom: 24px;
  }
}
.downloadArchive .downloadContent__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__heading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.downloadArchive .downloadContent__description {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__description {
    margin-bottom: 16px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.downloadArchive .downloadContent__tableWrapper {
  margin-top: 20px;
  position: relative;
  overflow-x: scroll;
}
.downloadArchive .downloadContent__table {
  width: 100%;
  border: 1px solid #dedede;
  table-layout: fixed;
}
.downloadArchive .downloadContent__table tr {
  border-top: 1px solid #dedede;
}
.downloadArchive .downloadContent__table--heading {
  width: 288px;
  height: 56px !important;
  background-color: #2b64b0;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__table--heading {
    height: 48px !important;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.downloadArchive .downloadContent__table--heading:first-of-type {
  width: 172px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__table--heading:first-of-type {
    width: 140px;
  }
}
.downloadArchive .downloadContent__table--heading, .downloadArchive .downloadContent__table--text {
  height: 70px;
  padding: 12px 24px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__table--heading, .downloadArchive .downloadContent__table--text {
    width: 180px;
    height: 56px;
    padding: 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.downloadArchive .downloadContent__table--heading:not(:last-of-type), .downloadArchive .downloadContent__table--text:not(:last-of-type) {
  border-right: 1px solid #dedede;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__table--update {
    width: 100px;
  }
}
.downloadArchive .downloadContent__tableTextSmall {
  font-size: 12px;
  font-size: 1.2rem;
}
.downloadArchive .downloadContent__table--link {
  width: 240px;
  height: 45px;
  padding-left: 40px;
  padding-right: 20px;
  background-color: #2b64b0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent__table--link {
    width: 170px;
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .downloadArchive .downloadContent__table--link img {
    width: 16px;
    height: 16px;
  }
}
.downloadArchive .downloadContent--licenseTools .downloadContent__table--heading, .downloadArchive .downloadContent--licenseTools .downloadContent__table--text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--licenseTools .downloadContent__table--heading, .downloadArchive .downloadContent--licenseTools .downloadContent__table--text {
    width: 140px;
    white-space: wrap;
  }
}
.downloadArchive .downloadContent--licenseTools .downloadContent__table--file {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--licenseTools .downloadContent__table--file {
    width: 64px;
  }
}
.downloadArchive .downloadContent--licenseTools .downloadContent__table--button {
  width: 288px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--licenseTools .downloadContent__table--button {
    width: 190px;
  }
}
.downloadArchive .downloadContent--licenseTools .downloadContent__table--text {
  text-align: center;
}
.downloadArchive .downloadContent--licenseTools .downloadContent__table--text:first-of-type {
  text-align: left;
  width: 100%;
}
.downloadArchive .downloadContent--cadAddIn .downloadContent__table--text {
  text-align: left;
}
.downloadArchive .downloadContent--cadAddIn .downloadContent__table--update {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--cadAddIn .downloadContent__table--update {
    width: 100px;
  }
}
.downloadArchive .downloadContent--cadAddIn .downloadContent__table--note {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--cadAddIn .downloadContent__table--note {
    width: 320px;
  }
}
.downloadArchive .downloadContent--cadAddIn .downloadContent__table--button {
  width: 288px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContent--cadAddIn .downloadContent__table--button {
    width: 190px;
  }
}
.downloadArchive .downloadContentDetail {
  margin-bottom: 40px;
  padding: 40px 0;
  background-color: #f5f7f8;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail {
    margin-bottom: 24px;
    padding: 24px 0;
  }
}
.downloadArchive .downloadContentDetail__heading {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__heading {
    padding-left: 16px;
  }
}
.downloadArchive .downloadContentDetail__heading--text {
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__heading--text {
    font-size: 20px;
    font-size: 2rem;
  }
}
.downloadArchive .downloadContentDetail__detail {
  padding: 40px 40px 0;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__detail {
    padding: 16px;
  }
}
.downloadArchive .downloadContentDetail__subHeading {
  margin-top: 32px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__subHeading {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.downloadArchive .downloadContentDetail__flow {
  margin-bottom: 40px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__flow {
    margin-bottom: 24px;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
  }
}
.downloadArchive .downloadContentDetail__flowItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__flowItem {
    gap: 8px;
  }
}
.downloadArchive .downloadContentDetail__flowItem--name {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__flowItem--name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.downloadArchive .downloadContentDetail__flowItem--image {
  width: 392px;
  height: 320px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__flowItem--image {
    width: 100%;
    height: 100%;
  }
}
.downloadArchive .downloadContentDetail__flowItem--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.downloadArchive .downloadContentDetail__flowArrow {
  width: 90px;
  height: 64px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__flowArrow {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
    margin-top: 8px;
  }
}
.downloadArchive .downloadContentDetail__flowArrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.downloadArchive .downloadContentDetail__usage {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__usage {
    padding: 16px;
  }
}
.downloadArchive .downloadContentDetail__usageList {
  width: 100%;
}
.downloadArchive .downloadContentDetail__usageList .listItem {
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 56px;
  counter-increment: number;
  position: relative;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__usageList .listItem {
    margin-bottom: 12px;
    padding-bottom: 12px;
    padding-left: 48px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.downloadArchive .downloadContentDetail__usageList .listItem::before {
  content: counter(number);
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: #2b64b0;
  color: #ffffff;
  font-weight: 500;
  border-radius: 3px;
  font-size: 18px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.downloadArchive .downloadContentDetail__usageList .listItem:not(:last-of-type) {
  border-bottom: 1px solid #dedede;
}
.downloadArchive .downloadContentDetail__usageNote .listItem {
  position: relative;
  padding-left: 36px;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .downloadArchive .downloadContentDetail__usageNote .listItem {
    padding-left: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.downloadArchive .downloadContentDetail__usageNote .listItem::before {
  content: "注：";
  position: absolute;
  left: 0;
}

.releaseInfo {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .releaseInfo {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.releaseInfo__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .releaseInfo__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.releaseInfo .releaseVideos {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .releaseInfo .releaseVideos {
    margin-bottom: 40px;
    padding: 24px 16px;
  }
}
.releaseInfo .releaseVideos__heading {
  margin-bottom: 20px;
  color: #2b64b0;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .releaseInfo .releaseVideos__heading {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.releaseInfo .releaseVideos__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .releaseInfo .releaseVideos__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.releaseInfo .releaseVideos__list .listItem__title {
  margin-bottom: 16px;
  line-height: 160%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .releaseInfo .releaseVideos__list .listItem__title {
    margin-bottom: 8px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.releaseInfo .releaseVideos__list .listItem__video {
  width: 100%;
  height: 325px;
  background-color: bisque;
}
@media screen and (max-width: 767px) {
  .releaseInfo .releaseVideos__list .listItem__video {
    height: 180px;
  }
}
.releaseInfo__heading {
  margin-bottom: 40px;
  text-align: center;
  color: #2b64b0;
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .releaseInfo__heading {
    margin-bottom: 24px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.releaseInfo__tableWrapper {
  position: relative;
  overflow-x: scroll;
}
.releaseInfo__table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #dedede;
}
.releaseInfo__table tr {
  border-top: 1px solid #dedede;
}
.releaseInfo__table td {
  background-color: #e6f0ff;
}
.releaseInfo__table td:nth-of-type(2) {
  background-color: #ffffff;
}
.releaseInfo__table--heading {
  width: 496px;
  height: 56px !important;
  background-color: #2b64b0;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}
.releaseInfo__table--heading:first-of-type {
  width: 132px;
}
.releaseInfo__table--heading, .releaseInfo__table--text {
  padding: 12px 24px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .releaseInfo__table--heading, .releaseInfo__table--text {
    padding: 10px 16px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.releaseInfo__table--heading:not(:last-of-type), .releaseInfo__table--text:not(:last-of-type) {
  border-right: 1px solid #dedede;
}
.releaseInfo__table--whatsnew {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .releaseInfo__table--whatsnew {
    width: 200px;
  }
}
.releaseInfo__table--changelog {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .releaseInfo__table--changelog {
    width: 410px;
  }
}
.releaseInfo__table--buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.releaseInfo__tableLink {
  width: 120px;
  height: 35px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  font-size: 12px;
  font-size: 1.2rem;
}
.releaseInfo__tableLink--whatsnew {
  background-color: #2b64b0;
  color: #ffffff;
}
.releaseInfo__tableLink--whatsnew .releaseInfo__tableLinkBadge {
  background-color: #162643;
}
.releaseInfo__tableLink--changelog {
  background-color: #ffffff;
  color: #2b64b0;
  border: 1px solid #2b64b0;
}
.releaseInfo__tableLink--changelog .releaseInfo__tableLinkBadge {
  background-color: #2b64b0;
}
.releaseInfo__tableLinkBadge {
  padding: 2px 6px;
  border-radius: 2px;
  color: #ffffff;
  font-size: 8px;
  font-size: 0.8rem;
}

.event {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .event {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.event__heading {
  margin-bottom: 24px;
  font-weight: 700;
  color: #2b64b0;
  line-height: 160%;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .event__heading {
    margin-bottom: 16px;
    text-align: center;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.event__description {
  margin-bottom: 40px;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .event__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.event__list {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .event__list {
    margin-bottom: 64px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.event__list .listItem {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
.event__list .listItem__image {
  width: 100%;
  height: unset;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.event__list .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.event__list .listItem__detail {
  padding: 20px 20px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 767px) {
  .event__list .listItem__detail {
    padding: 16px 12px;
  }
}
.event__list .listItem__state {
  margin-bottom: 8px;
  background-color: #2b64b0;
  width: 95px;
  height: 25px;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .event__list .listItem__state {
    margin-bottom: 4px;
    width: 64px;
    height: 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.event__list .listItem__state--end {
  background-color: #333333;
}
.event__list .listItem__date {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: #2b64b0;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .event__list .listItem__date {
    margin-bottom: 8px;
  }
}
.event__list .listItem__title {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 160%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .event__list .listItem__title {
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.event__list .listItem__button {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .event__list .listItem__button .button {
    height: 36px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .event__list .listItem__button .button__arrow {
    right: 8px;
    width: 20px;
    height: 20px;
  }
}
.event__tableWrapper {
  position: relative;
  overflow-x: scroll;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .event__tableWrapper {
    margin-bottom: 64px;
  }
}
.event__table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #dedede;
}
.event__table tr {
  border-top: 1px solid #dedede;
}
.event__table td:nth-of-type(1) {
  background-color: #e6f0ff;
}
.event__table--heading {
  height: 56px !important;
  background-color: #2b64b0;
  color: #ffffff;
}
.event__table--heading:first-of-type {
  width: 244px;
}
.event__table--heading, .event__table--text {
  padding: 12px 24px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .event__table--heading, .event__table--text {
    padding: 10px 16px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.event__table--heading:not(:last-of-type), .event__table--text:not(:last-of-type) {
  border-right: 1px solid #dedede;
}
@media screen and (max-width: 767px) {
  .event__table--event {
    width: 200px;
  }
}
.event__table--pdf {
  width: 168px;
}
@media screen and (max-width: 767px) {
  .event__table--pdf {
    width: 132px;
  }
}
@media screen and (max-width: 767px) {
  .event__table--months {
    width: 224px;
  }
}
.event__table--link {
  width: 120px;
  height: 35px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  background-color: #ffffff;
  color: #2b64b0;
  border: 1px solid #2b64b0;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .event__table--link {
    width: 100px;
  }
}
.event__table--link--pdf {
  padding: 2px 6px;
  background-color: #2b64b0;
  border-radius: 2px;
  color: #ffffff;
  font-size: 8px;
  font-size: 0.8rem;
}
.event__tableEntry {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .event__tableEntry {
    gap: 10px;
  }
}
.event__tableEntryDate {
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .event__tableEntryDate {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.event__tableEntryButton {
  flex-shrink: 0;
  position: relative;
  padding: 6px 8px;
  width: 88px;
  background-color: #2b64b0;
  font-weight: 700;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .event__tableEntryButton {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.event__tableEntryButton--end {
  background-color: #333333;
  cursor: not-allowed;
}
.event__tableEntryButton::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%) rotate(-90deg);
  width: 10px;
  height: 8px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.event .informationArchive__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .event .informationArchive__list {
    margin-bottom: 24px;
  }
  .event .informationArchive__list > .listItem:nth-child(n+4) {
    display: none;
  }
}
.event__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .event__button {
    width: 100%;
  }
}

.inquiryEvent {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryEvent {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryEvent__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryEvent__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryEvent__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
.inquiryEvent .selectedEvent {
  height: fit-content;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent {
    padding: 16px;
  }
}
.inquiryEvent .selectedEvent__wrapper {
  background-color: #e6f0ff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent__wrapper {
    padding: 16px;
  }
}
.inquiryEvent .selectedEvent__inner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent__inner {
    padding: 16px;
  }
}
.inquiryEvent .selectedEvent__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryEvent .selectedEvent__list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiryEvent .selectedEvent__list .listItem:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #9b9797;
}
.inquiryEvent .selectedEvent__list .listItem__title {
  position: relative;
  padding-left: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent__list .listItem__title {
    padding-left: 30px;
    height: 100%;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.inquiryEvent .selectedEvent__list .listItem__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #2b64b0;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent__list .listItem__title::before {
    width: 22px;
    height: 22px;
  }
}
.inquiryEvent .selectedEvent__list .listItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .inquiryEvent .selectedEvent__list .listItem__title::after {
    left: 5px;
  }
}
.inquiryEvent .selectedEvent__note {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryEvent .selectedEvent__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryEvent .selectedEvent__note--link {
  margin: 0 4px;
  font-weight: 700;
  color: #da5d64;
  text-decoration: underline;
}
.inquiryEvent .selectedEvent__note--link a {
  cursor: pointer;
}

.form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: #333333 !important;
}
.form__heading {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
  line-height: 150%;
  color: #2b64b0;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .form__heading {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.form__purpose {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 160%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__purpose {
    margin-bottom: 16px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.form__purpose .wpcf7-list-item {
  margin: 0;
  cursor: pointer;
  display: flex;
}
.form__purpose .wpcf7-list-item label,
.form__purpose .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
}
.form__purpose .wpcf7-list-item input[type=radio] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.form__purpose .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #2b64b0;
  border-radius: 9999px;
}
.form__purpose .wpcf7-list-item-label {
  position: relative;
  padding-left: 34px;
}
.form__purpose .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
  border-radius: 9999px;
}
.form__caution {
  margin-bottom: 10px;
  display: block;
  color: #da5d64;
  line-height: 160%;
  font-size: 14px;
  font-size: 1.4rem;
}
.form__label {
  margin-bottom: 8px;
  display: flex;
  font-weight: 700;
  font-size: 13px !important;
}
.form__label sup {
  margin-right: 6px;
  color: #da5d64;
}
.form__half {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .form__half {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.form__full {
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .form__full {
    margin-bottom: 16px;
  }
}
.form__full--end {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .form__full--end {
    margin-bottom: 32px;
  }
}
.form__radio {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__radio {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.form__radio .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__radio .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  cursor: pointer;
  display: flex;
}
.form__radio .wpcf7-radio .wpcf7-list-item label,
.form__radio .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
}
.form__radio .wpcf7-radio .wpcf7-list-item input[type=radio] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.form__radio .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-color: #2b64b0;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .form__radio .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
    top: 50%;
    left: 5px;
  }
}
.form__radio .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .form__radio .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 30px;
  }
}
.form__radio .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .form__radio .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 22px;
    height: 22px;
  }
}
.form__radio--blue .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  background-color: #2b64b0 !important;
}
.form__radio--blue .wpcf7-list-item .wpcf7-list-item-label::before {
  border: 2px solid #2b64b0 !important;
}
.form__radio--dots {
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .form__radio--dots {
    padding: 12px;
    margin-bottom: 10px;
  }
}
.form__radio--dots .wpcf7-list-item {
  position: relative;
  pointer-events: auto;
  padding-bottom: 14px;
  border-bottom: 1px dashed #9b9797;
}
.form__radio--dots .wpcf7-list-item.last {
  padding-bottom: 0;
  border-bottom: none;
}
.form__radio--purpose {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .form__radio--purpose {
    margin-bottom: 0;
  }
}
.form__radio--purpose .form__radio--controllNumber {
  position: absolute;
  bottom: 10px;
  left: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__radio--purpose .form__radio--controllNumber {
    margin-top: 8px;
    position: relative;
    left: 0;
    bottom: 0;
  }
}
.form__radio--purpose .form__radio--controllNumber .wpcf7-form-control-wrap {
  pointer-events: auto;
}
.form__radio--purpose .form__radio--controllNumber .wpcf7-text,
.form__radio--purpose .form__radio--controllNumber .wpcf7-date {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 32px;
  padding: 6px 16px;
  pointer-events: auto;
}
.form__radio--newsletter {
  margin-top: 12px;
}
.form__radio--newsletter .wpcf7-radio {
  flex-direction: row;
  gap: 32px;
}
.form__checkboxWrapper {
  margin-bottom: 8px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .form__checkboxWrapper {
    padding: 12px;
  }
}
.form__checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__checkbox {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.form__checkbox:not(:last-of-type) {
  padding-bottom: 12px;
  border-bottom: 1px dashed #9b9797;
}
.form__checkbox .wpcf7-list-item {
  margin: 0;
  cursor: pointer;
}
.form__checkbox .wpcf7-list-item label,
.form__checkbox .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
}
.form__checkbox .wpcf7-list-item input[type=checkbox] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.form__checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #2b64b0;
}
.form__checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .form__checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    left: 5px;
  }
}
.form__checkbox .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 34px;
  height: 26px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form__checkbox .wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 30px;
    height: 22px;
  }
}
.form__checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .form__checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 22px;
    height: 22px;
  }
}
.form__checkbox--multiple {
  width: fit-content;
  cursor: default;
  flex-shrink: 0;
}
.form__checkbox--multiple span {
  cursor: default;
}
.form__checkbox--multiple .wpcf7-number {
  pointer-events: none;
  margin-right: 10px;
  width: 56px;
  height: 32px;
  background-color: #ecebeb;
  border-radius: 8px;
  border: 1px solid #2b64b0;
  text-align: center;
  cursor: not-allowed;
}
.form__checkbox--multiple .wpcf7-number.is-active {
  pointer-events: auto;
  background-color: #ffffff;
  cursor: text;
}
.form__checkbox--multiple .wpcf7-number::-webkit-inner-spin-button, .form__checkbox--multiple .wpcf7-number::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  -moz-appearance: textfield !important;
}
.form__select {
  position: relative;
}
.form__select::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .form__select::before {
    right: 12px;
    width: 14px;
    height: 14px;
  }
}
.form__textRed {
  margin-top: 8px;
  display: block;
  font-weight: 700;
  color: #da5d64;
  font-size: 13px;
  font-size: 1.3rem;
}
.form__termsText {
  margin-top: 16px;
  margin-bottom: 24px;
  overflow-y: scroll;
  height: 284px;
  padding: 10px;
  background-color: #ffffff;
  line-height: 160%;
  font-size: 14px;
  font-size: 1.4rem;
}
.form__agreementText {
  margin-top: 8px;
  padding: 10px;
  background-color: #ffffff;
  line-height: 160%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__agreementText {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.form__agreementText--link {
  font-weight: 700;
}
.form__button {
  width: 440px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__button {
    width: 100%;
  }
}
.form__zipcode {
  display: flex;
  align-items: center;
}
.form__zipcode--text {
  margin-right: 8px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .form__zipcode--text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.form__zipcode--first {
  margin-right: 10px;
  width: 88px;
}
.form__zipcode--last {
  width: 135px;
}
.form__department--note {
  margin-top: 8px;
  display: block;
  font-weight: 700;
  color: #da5d64;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .form__department--note {
    margin-top: 4px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.form__file {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .form__file {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.form__file .wpcf7-form-control-wrap {
  display: none;
}
.form__file--label {
  cursor: pointer;
  padding: 16px;
  width: 240px;
  height: 56px;
  border-radius: 5px;
  background-color: #2b64b0;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form__file--label {
    padding: 10px;
    width: 100%;
    justify-content: center;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.form__file--name {
  padding: 16px;
  width: 240px;
  height: 56px;
  background-color: #f5f5f7;
  color: #999daa;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form__file--name {
    padding: 10px;
    width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.form .wpcf7-text {
  background-color: #ffffff !important;
  border-radius: 8px;
  width: 100%;
  height: 56px;
  padding: 16px;
  border: 1px solid #2b64b0;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
  cursor: text;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-text {
    padding: 12px;
    height: 52px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.form .wpcf7-text::placeholder {
  color: #999daa;
}
.form .wpcf7-text:focus {
  box-shadow: 0px 0px 8px 0px rgba(43, 100, 176, 0.8);
}
.form .wpcf7-text.wpcf7-not-valid {
  border: 2px solid #da5d64;
}
.form .wpcf7-text.wpcf7-not-valid::placeholder {
  color: #da5d64;
}
.form .wpcf7-select {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  height: 56px;
  padding: 16px;
  border: 1px solid #2b64b0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-select {
    padding: 12px;
    height: 52px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.form .wpcf7-select:has(option[value=""]:checked) {
  color: #999daa;
}
.form .wpcf7-select option {
  color: initial;
}
.form .wpcf7-textarea {
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  height: 164px;
  padding: 16px;
  border: 1px solid #2b64b0;
  display: flex;
  align-items: center;
  cursor: text;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-textarea {
    height: 180px;
    padding: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.form .wpcf7-textarea::placeholder {
  color: #999daa;
}
.form .wpcf7-textarea.quote_textarea {
  margin-top: -12px;
}
.form .wpcf7-acceptance {
  display: block;
}
.form .wpcf7-acceptance .wpcf7-list-item {
  cursor: pointer;
  margin: 0;
}
.form .wpcf7-acceptance .wpcf7-list-item label,
.form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
}
.form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    left: 5px;
  }
}
.form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  content: "";
  background-color: #2b64b0;
}
.form .wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 34px;
  line-height: 160%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-acceptance .wpcf7-list-item-label {
    padding-left: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.form .wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-acceptance .wpcf7-list-item-label::before {
    width: 22px;
    height: 22px;
  }
}
.form__submit {
  position: relative;
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form__submit {
    width: 100% !important;
  }
}
.form__submit--newsletter {
  margin-top: 40px !important;
}
.form__submit::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.4s;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .form__submit:hover::before {
    transform: translateY(calc(-50% - 3px));
  }
}
.form__submit .form__button:disabled {
  background-color: #999;
}
@media screen and (min-width: 768px) {
  .form__submit .form__button:disabled:hover {
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 768px) {
  .form__submit:has(.form__button:disabled):hover::before {
    transform: translateY(-50%);
  }
}
.form__caution {
  margin-bottom: 8px;
  color: #da5d64;
  line-height: 160%;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .form__caution {
    font-size: 13px !important;
  }
}
.form__toolTip {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form__toolTip.is-active .form__toolTip--text {
  display: block;
}
.form__toolTip--icon {
  flex-shrink: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  background-color: #2b64b0;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__toolTip--text {
  display: none;
  position: relative;
  padding: 8px 16px;
  background-color: #e2efff;
  border-radius: 5px;
}
.form__toolTip--text p {
  font-size: 10px !important;
}
.form__toolTip--text::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -16px;
  border: 8px solid transparent;
  border-right: 12px solid #e6f0ff;
}
.form__toolTip--text .inquiryFlow__notes {
  margin: 0 !important;
  font-size: 10px !important;
}
.form__toolTip--text .inquiryFlow__notes:not(:first-child) {
  margin-top: 4px !important;
}
.form__toolTip--text .inquiryFlow__notes .listItem {
  padding-left: 10px !important;
  font-size: 10px !important;
}
.form__toolTip--text .inquiryFlow__notes--list .listItem {
  padding-left: 10px !important;
}
.form__toolTip--text .inquiryFlow__notes--list .listItem::before {
  content: "-";
}
.form .blockPattern__faq {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .form .blockPattern__faq {
    margin-bottom: 16px;
  }
}
.form .blockPattern__faq summary {
  padding: 24px 32px 24px 48px;
}
@media screen and (max-width: 767px) {
  .form .blockPattern__faq summary {
    padding: 16px 32px 16px 32px;
  }
}
.form .blockPattern__faq__answerBlock {
  margin-top: -10px;
}
.form .blockPattern__faq__answerBlock .blockPattern__faq__answer {
  padding-top: 20px;
}
.form .blockPattern__faq__answerBlock .blockPattern__faq__answer--closeButton {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .form .blockPattern__faq__answerBlock .blockPattern__faq__answer--closeButton {
    margin-top: 8px;
    width: 240px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.form .blockPattern__faq__answerBlock .blockPattern__faq__answer::before {
  top: 20px;
}
.form__submitHidden, .form__submit:has(.form__submitHidden) {
  display: none !important;
}
.form button,
.form [type=button],
.form [type=submit],
.form [role=button],
.form .button,
.form .form__submit,
.form .wpcf7-submit,
.form .wpcf7-list-item,
.form .wpcf7-list-item label,
.form .wpcf7-list-item-label {
  cursor: pointer;
}
.form input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=reset]),
.form textarea {
  cursor: text;
}
.form select {
  cursor: pointer;
}
.form :disabled {
  cursor: not-allowed !important;
}

.wpcf7-response-output {
  display: none !important;
}

.inquiry {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .inquiry {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiry__list {
  display: grid;
  grid-template-columns: repeat(2, 416px);
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .inquiry__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.inquiry__list .listItem {
  padding: 24px 24px 30px;
  background-color: #ffffff;
  box-shadow: 0px 0px 27.73px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiry__list .listItem {
    padding: 24px 12px;
  }
}
.inquiry__list .listItem__image {
  margin-bottom: 20px;
  width: 100%;
  height: 97px;
}
@media screen and (max-width: 767px) {
  .inquiry__list .listItem__image {
    margin-bottom: 12px;
    height: 48px;
  }
}
.inquiry__list .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inquiry__list .listItem__title {
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
  color: #2b64b0;
  line-height: 160%;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .inquiry__list .listItem__title {
    margin-bottom: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.inquiry__list .listItem__description {
  margin-bottom: 10px;
  height: 70px;
  text-align: center;
  line-height: 160%;
  font-size: 18px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .inquiry__list .listItem__description {
    margin-bottom: 6px;
    height: 64px;
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .inquiry__list .listItem__button .button {
    text-align: center;
    padding-right: 32px;
    padding-left: 24px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .inquiry__list .listItem__button .button__arrow {
    width: 20px;
    height: 20px;
    right: 8px;
  }
}

.inquiryStatus {
  margin: 80px 0;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .inquiryStatus {
    margin: 40px 0;
    gap: 4px;
  }
}
.inquiryStatus__box {
  width: 346px;
  height: 60px;
  border: 3px solid #2b64b0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .inquiryStatus__box {
    width: 100px;
    height: 32px;
    border: 2px solid #2b64b0;
  }
}
.inquiryStatus__box span {
  font-weight: 700;
  color: #2b64b0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .inquiryStatus__box span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.inquiryStatus__box.is-current {
  background-color: #2b64b0;
}
.inquiryStatus__box.is-current span {
  color: #ffffff;
}
.inquiryStatus__arrow {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .inquiryStatus__arrow {
    width: 12px;
    height: 12px;
  }
}
.inquiryStatus__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiryFlow {
  height: fit-content;
  background-color: #ffffff;
  padding: 40px 24px;
  border-radius: 8px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .inquiryFlow {
    padding: 24px 16px;
  }
}
.inquiryFlow__heading {
  margin-bottom: 32px;
  color: #2b64b0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__heading {
    margin-bottom: 16px;
  }
}
.inquiryFlow__heading--title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__heading--title {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.inquiryFlow__heading--subTitle {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__heading--subTitle {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.inquiryFlow__notes {
  margin-bottom: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__notes {
    gap: 8px;
  }
}
.inquiryFlow__notes .listItem {
  position: relative;
  padding-left: 16px;
  line-height: 150%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__notes .listItem {
    padding-left: 14px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.inquiryFlow__notes .listItem::before {
  content: "※";
  position: absolute;
  left: 0;
}
.inquiryFlow__notes .listItem__link--red {
  color: #da5d64;
  font-weight: 700;
  text-decoration: underline;
}
.inquiryFlow__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inquiryFlow__button {
    width: 100%;
  }
}

.inquiryStep {
  margin-bottom: 32px;
  padding: 20px;
  background-color: #f7fbff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryStep {
    margin-bottom: 16px;
    padding: 16px;
  }
}
.inquiryStep__list {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list {
    gap: 12px;
  }
}
.inquiryStep__list .listItem {
  position: relative;
  height: 88px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem {
    margin-right: 0;
    padding-bottom: 12px;
    height: 110px;
    flex-wrap: wrap;
    gap: 4px;
  }
}
.inquiryStep__list .listItem:last-of-type {
  border-bottom: none;
}
.inquiryStep__list .listItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem::before {
    top: calc(50% + 12px);
  }
}
.inquiryStep__list .listItem__step {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem__step {
    width: 100%;
    height: fit-content;
  }
}
.inquiryStep__list .listItem__step--sp {
  margin-bottom: 8px;
  display: block;
  width: 100%;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  padding: 2px 0;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-size: 1rem;
}
.inquiryStep__list .listItem__step--sp strong {
  margin-left: 2px;
  margin-bottom: 2px;
  font-size: 16px;
  font-size: 1.6rem;
}
.inquiryStep__list .listItem__icon {
  flex-shrink: 0;
  width: 52px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem__icon {
    width: 64px;
    height: auto;
  }
}
.inquiryStep__list .listItem__icon--sm {
  margin-left: 10px;
  width: 42px;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem__icon--sm {
    width: 56px;
  }
}
.inquiryStep__list .listItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inquiryStep__list .listItem__text {
  font-weight: 700;
  color: #2b64b0;
  font-size: 14px;
  font-size: 1.4rem;
}
.inquiryStep__list .listItem__text p {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryStep__list .listItem__text {
    margin-left: auto;
    width: calc(100% - 78px);
    font-size: 12px;
    font-size: 1.2rem;
  }
  .inquiryStep__list .listItem__text p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.form__submit {
  position: relative;
  width: 440px;
  margin: 0 auto;
}
.form__submit::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url("../../../muratasoftware_template/assets/svg/common/arrow_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .form__submit:hover::before {
    transform: translateY(calc(-50% - 3px));
  }
}
.form .wpcf7-not-valid-tip {
  display: none;
}
.form .form__error {
  color: #da5d64;
  font-weight: 700;
  display: none;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .form .form__error {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.form .wpcf7-response-output,
.form .wpcf7-spinner {
  display: none;
}

.inquiryConfirm {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryConfirm__table {
  width: 100%;
  border: 1px solid #dedede;
  border-top: none;
}
.inquiryConfirm__table--row {
  display: grid;
  grid-template-columns: 460px 1fr;
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm__table--row {
    grid-template-columns: 1fr;
  }
}
.inquiryConfirm__table--heading {
  background-color: #e6f0ff;
  border-right: 1px solid #dedede;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm__table--heading {
    padding: 8px 16px;
    border-bottom: 1px solid #dedede;
  }
}
.inquiryConfirm__table--text {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm__table--text {
    padding: 16px;
  }
}
.inquiryConfirm__table--text .listItem {
  width: 100%;
  white-space: pre-wrap;
}
.inquiryConfirm__buttons {
  margin-top: 40px;
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm__buttons {
    flex-direction: column;
    gap: 16px;
  }
}
.inquiryConfirm__buttons .form__submit {
  margin: 0;
}
.inquiryConfirm__buttons--back {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .inquiryConfirm__buttons--back {
    width: 100%;
  }
}
.inquiryConfirm__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.inquiryConfirm__turnstile[hidden] {
  display: none !important;
}

.inquirySuccess {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquirySuccess {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquirySuccess__inner {
  padding: 80px 40px;
  background-color: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(43, 100, 176, 0.2509803922);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquirySuccess__inner {
    padding: 24px 16px;
  }
}
.inquirySuccess__heading {
  margin-bottom: 40px;
  text-align: center;
  color: #2b64b0;
  font-weight: 700;
  line-height: 150%;
  font-size: 38px;
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .inquirySuccess__heading {
    margin-bottom: 24px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.inquirySuccess__description {
  margin-bottom: 40px;
  text-align: center;
  line-height: 150%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .inquirySuccess__description {
    margin-bottom: 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.inquirySuccess__description .strong {
  font-weight: 700;
}
.inquirySuccess__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inquirySuccess__button {
    width: 100%;
  }
}

.inquiryTrial {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryTrial {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryTrial__image {
  width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .inquiryTrial__image {
    width: 100%;
    margin: 40px auto;
  }
}
.inquiryTrial__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inquiryTrial__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryTrial__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryTrial__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryTrial__form {
    padding: 24px 16px;
  }
}

.inquiryTrialLicense {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryTrialLicense {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryTrialLicense__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryTrialLicense__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryTrialLicense__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
.inquiryTrialLicense .selectedDocument {
  height: fit-content;
  background-color: #e6f0ff;
  border-radius: 8px;
  padding: 20px;
}
.inquiryTrialLicense .selectedDocument__inner {
  background-color: #ffffff;
  padding: 20px;
}
.inquiryTrialLicense .selectedDocument__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryTrialLicense .selectedDocument__list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiryTrialLicense .selectedDocument__list .listItem:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #9b9797;
}
.inquiryTrialLicense .selectedDocument__list .listItem__title {
  position: relative;
  padding-left: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.inquiryTrialLicense .selectedDocument__list .listItem__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #2b64b0;
  border: 2px solid #2b64b0;
}
.inquiryTrialLicense .selectedDocument__list .listItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.inquiryTrialLicense .selectedDocument__note {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryTrialLicense .selectedDocument__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryTrialLicense .selectedDocument__note--link {
  margin: 0 4px;
  font-weight: 700;
  color: #da5d64;
  text-decoration: underline;
}
.inquiryTrialLicense .selectedDocument__note--link a {
  cursor: pointer;
}

.inquiryQuote {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryQuote {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryQuote__description {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .inquiryQuote__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.inquiryQuote__form {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryQuote__form {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryQuote .inquiryFlow__notes {
  margin-bottom: 24px;
  gap: 4px;
}
.inquiryQuote .inquiryFlow__notes .listItem {
  padding-left: 12px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryQuote .quoteContent {
  height: fit-content;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
.inquiryQuote .quoteUserInfo {
  height: fit-content;
  padding: 20px 20px 40px;
  background-color: #e2efff;
  border-radius: 8px;
}

.documentArchive {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .documentArchive {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.documentArchive__button {
  width: 440px;
  margin: 64px auto;
}
@media screen and (max-width: 767px) {
  .documentArchive__button {
    width: 100%;
    margin: 40px auto;
  }
}
.documentArchive__heading {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  line-height: 150%;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .documentArchive__heading {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.documentArchive__inner {
  padding: 40px;
  background-color: #e6f0ff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner {
    padding: 24px 16px;
  }
}
.documentArchive__inner .documentGroup {
  margin-bottom: 24px;
}
.documentArchive__inner .documentGroup__heading {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.documentArchive__inner .documentGroup__heading--main {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__heading--main {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.documentArchive__inner .documentGroup__heading--description {
  font-size: 14px;
  font-size: 1.4rem;
}
.documentArchive__inner .documentGroup__list {
  padding: 20px;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list {
    padding: 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.documentArchive__inner .documentGroup__list .listItem {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-left: 38px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem {
    padding-left: 30px;
    gap: 12px;
  }
}
.documentArchive__inner .documentGroup__list .listItem--catalog {
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem--catalog .listItem__image {
    width: 100px;
    height: 100px;
  }
}
.documentArchive__inner .documentGroup__list .listItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem::before {
    width: 22px;
    height: 22px;
  }
}
.documentArchive__inner .documentGroup__list .listItem::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  opacity: 0;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem::after {
    left: 5px;
  }
}
.documentArchive__inner .documentGroup__list .listItem:has(.listItem__checkbox:checked)::before {
  background-color: #2b64b0;
}
.documentArchive__inner .documentGroup__list .listItem:has(.listItem__checkbox:checked)::after {
  opacity: 1;
}
.documentArchive__inner .documentGroup__list .listItem:has(.listItem__checkbox:focus-visible)::before {
  box-shadow: 0 0 0 3px rgba(43, 100, 176, 0.2);
}
.documentArchive__inner .documentGroup__list .listItem__checkbox {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.documentArchive__inner .documentGroup__list .listItem__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem__image {
    width: calc(100% - 44px);
    height: 100%;
  }
}
.documentArchive__inner .documentGroup__list .listItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.documentArchive__inner .documentGroup__list .listItem__info {
  flex: 1;
  min-width: 0;
}
.documentArchive__inner .documentGroup__list .listItem__heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem__heading {
    gap: 6px;
    justify-content: center;
  }
}
.documentArchive__inner .documentGroup__list .listItem__heading--icon {
  flex-shrink: 0;
  width: 60px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem__heading--icon {
    width: 30px;
    height: 30px;
  }
}
.documentArchive__inner .documentGroup__list .listItem__heading--icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.documentArchive__inner .documentGroup__list .listItem__heading--text {
  line-height: 150%;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem__heading--text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.documentArchive__inner .documentGroup__list .listItem__description {
  display: block;
  margin-top: 10px;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem__description {
    margin-top: 6px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.documentArchive__inner .documentGroup__list .listItem--selected {
  width: 100%;
  padding: 20px;
  padding-left: 64px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem--selected {
    padding: 12px;
  }
  .documentArchive__inner .documentGroup__list .listItem--selected .listItem__image {
    margin-left: 44px;
    flex-shrink: 0;
  }
  .documentArchive__inner .documentGroup__list .listItem--selected .listItem__info {
    width: 100%;
    min-width: 100%;
  }
}
.documentArchive__inner .documentGroup__list .listItem--selected::before {
  left: 20px;
  background-color: #2b64b0;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem--selected::before {
    top: 38%;
  }
}
.documentArchive__inner .documentGroup__list .listItem--selected::after {
  left: 27px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list .listItem--selected::after {
    top: 38%;
    left: 26px;
  }
}
.documentArchive__inner .documentGroup__list .listItem--selected:focus-visible {
  outline: 3px solid rgba(43, 100, 176, 0.2);
}
.documentArchive__inner .documentGroup__list--analysis_casebook .listItem {
  padding: 20px;
  padding-left: 64px;
  background-color: #f1f1f1;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list--analysis_casebook .listItem {
    padding: 12px;
  }
}
.documentArchive__inner .documentGroup__list--analysis_casebook .listItem::before {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list--analysis_casebook .listItem::before {
    top: 38%;
  }
}
.documentArchive__inner .documentGroup__list--analysis_casebook .listItem::after {
  left: 27px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list--analysis_casebook .listItem::after {
    top: 38%;
    left: 26px;
  }
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list--analysis_casebook .listItem__image {
    margin-left: 44px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup__list--analysis_casebook .listItem__info {
    min-width: 100%;
    width: 100%;
  }
}
.documentArchive__inner .documentGroup--selected {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup--selected {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup--selected {
    padding: 16px;
  }
}
.documentArchive__inner .documentGroup--selected .documentGroup__current {
  margin-bottom: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup--selected .documentGroup__current {
    padding: 12px 0;
    flex-direction: column;
    gap: 16px;
  }
}
.documentArchive__inner .documentGroup--selected .documentGroup__current--text {
  font-weight: 700;
  line-height: 150%;
  font-size: 20px;
  font-size: 2rem;
}
.documentArchive__inner .documentGroup--selected .documentGroup__current--button {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup--selected .documentGroup__current--button {
    width: 100%;
  }
}
.documentArchive__inner .documentGroup--selected .documentGroup__list {
  margin-bottom: 24px;
  padding: 24px 0;
  background-color: transparent;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px dashed #9b9797;
  border-bottom: 1px dashed #9b9797;
}
.documentArchive__inner .documentGroup--selected .documentGroup__reset {
  width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .documentArchive__inner .documentGroup--selected .documentGroup__reset {
    width: 100%;
  }
}
.documentArchive__inner .documentGroup--selected .button[disabled] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.documentFlowModal {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  padding: 80px 0 40px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .documentFlowModal {
    padding: 16px;
  }
}
.documentFlowModal__inner {
  position: relative;
  padding: 40px 40px 80px;
  max-width: 1120px;
  margin: 0 auto;
  background-color: #ffffff;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__inner {
    padding: 24px 16px;
  }
}
.documentFlowModal__heading {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  line-height: 150%;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__heading {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.documentFlowModal__close {
  position: absolute;
  cursor: pointer;
  top: 44px;
  right: 48px;
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__close {
    top: 20px;
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
.documentFlowModal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.documentFlowModal__step {
  margin-bottom: 40px;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step {
    margin-bottom: 24px;
    gap: 4px;
  }
}
.documentFlowModal__step .stepItem {
  width: 130px;
  height: 130px;
  gap: 4px;
  border: 3px solid #2b64b0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step .stepItem {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border: 2px solid #2b64b0;
  }
}
.documentFlowModal__step .stepItem__number {
  font-weight: 700;
  color: #2b64b0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step .stepItem__number {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.documentFlowModal__step .stepItem__icon {
  flex-shrink: 0;
  width: 100%;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step .stepItem__icon {
    height: 32px;
  }
}
.documentFlowModal__step .stepItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.documentFlowModal__step .stepItem__text {
  font-weight: 700;
  color: #2b64b0;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step .stepItem__text {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.documentFlowModal__step .stepItem__arrow {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__step .stepItem__arrow {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
  }
}
.documentFlowModal__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__list {
    gap: 24px;
  }
}
.documentFlowModal__list .listItem:not(:last-of-type) {
  padding-bottom: 32px;
  border-bottom: 1px dashed #9b9797;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__list .listItem:not(:last-of-type) {
    padding-bottom: 24px;
  }
}
.documentFlowModal__list .listItem__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__list .listItem__heading {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.documentFlowModal__list .listItem__heading--number {
  width: 56px;
  height: 56px;
}
.documentFlowModal__list .listItem__heading--numberSp {
  display: block;
  width: 100%;
  background: linear-gradient(270deg, #0083d7 0%, #004571 100%);
  padding: 2px 0;
  font-weight: 500;
  color: #ffffff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.documentFlowModal__list .listItem__heading--numberSp strong {
  margin-left: 2px;
  margin-bottom: 2px;
  font-size: 20px;
  font-size: 2rem;
}
.documentFlowModal__list .listItem__heading--text {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .documentFlowModal__list .listItem__heading--text {
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.documentFlowModal__list .listItem__image {
  margin-top: 24px;
}

.inquiryDocument {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryDocument {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryDocument__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryDocument__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryDocument__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryDocument__form {
    padding: 24px 16px;
  }
}
.inquiryDocument .selectedDocument {
  height: fit-content;
  background-color: #e6f0ff;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .inquiryDocument .selectedDocument {
    padding: 16px;
  }
}
.inquiryDocument .selectedDocument__inner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryDocument .selectedDocument__inner {
    padding: 16px;
  }
}
.inquiryDocument .selectedDocument__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryDocument .selectedDocument__list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiryDocument .selectedDocument__list .listItem:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #9b9797;
}
.inquiryDocument .selectedDocument__list .listItem__title {
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryDocument .selectedDocument__list .listItem__title {
    padding-left: 32px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.inquiryDocument .selectedDocument__list .listItem__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #2b64b0;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .inquiryDocument .selectedDocument__list .listItem__title::before {
    width: 22px;
    height: 22px;
  }
}
.inquiryDocument .selectedDocument__list .listItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .inquiryDocument .selectedDocument__list .listItem__title::after {
    left: 5px;
  }
}
.inquiryDocument .selectedDocument__note {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryDocument .selectedDocument__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryDocument .selectedDocument__note--link {
  margin: 0 4px;
  font-weight: 700;
  color: #da5d64;
  text-decoration: underline;
}
.inquiryDocument .selectedDocument__note--link a {
  cursor: pointer;
}

.inquiryDownload {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryDownload {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryDownload__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryDownload__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryDownload__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryDownload__form {
    padding: 24px 16px;
  }
}
.inquiryDownload__heading {
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
  color: #2b64b0;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .inquiryDownload__heading {
    margin-bottom: 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.inquiryDownload .selectedDownload {
  height: fit-content;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload {
    padding: 16px;
  }
}
.inquiryDownload .selectedDownload__wrapper {
  background-color: #e6f0ff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload__wrapper {
    padding: 16px;
  }
}
.inquiryDownload .selectedDownload__inner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload__inner {
    padding: 16px;
  }
}
.inquiryDownload .selectedDownload__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryDownload .selectedDownload__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiryDownload .selectedDownload__list .listItem:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #9b9797;
}
.inquiryDownload .selectedDownload__list .listItem__title {
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload__list .listItem__title {
    padding-left: 32px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.inquiryDownload .selectedDownload__list .listItem__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #2b64b0;
  border: 2px solid #2b64b0;
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload__list .listItem__title::before {
    width: 22px;
    height: 22px;
  }
}
.inquiryDownload .selectedDownload__list .listItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .inquiryDownload .selectedDownload__list .listItem__title::after {
    left: 5px;
  }
}
.inquiryDownload .selectedDownload__note {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryDownload .selectedDownload__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryDownload .selectedDownload__note--link {
  margin: 0 4px;
  font-weight: 700;
  color: #da5d64;
  text-decoration: underline;
}
.inquiryDownload .selectedDownload__note--link a {
  cursor: pointer;
}

.inquiryEventLicense {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryEventLicense {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryEventLicense__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .inquiryEventLicense__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.inquiryEventLicense__form {
  height: fit-content;
  background-color: #e2efff;
  padding: 20px 20px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryEventLicense__form {
    padding: 24px 16px;
  }
}
.inquiryEventLicense .selectedDocument {
  height: fit-content;
  background-color: #e6f0ff;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .inquiryEventLicense .selectedDocument {
    padding: 16px;
  }
}
.inquiryEventLicense .selectedDocument__inner {
  background-color: #ffffff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .inquiryEventLicense .selectedDocument__inner {
    padding: 16px;
  }
}
.inquiryEventLicense .selectedDocument__heading {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryEventLicense .selectedDocument__list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inquiryEventLicense .selectedDocument__list .listItem:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px dashed #9b9797;
}
.inquiryEventLicense .selectedDocument__list .listItem__title {
  position: relative;
  padding-left: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.inquiryEventLicense .selectedDocument__list .listItem__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #2b64b0;
  border: 2px solid #2b64b0;
}
.inquiryEventLicense .selectedDocument__list .listItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../../../muratasoftware_template/assets/svg/common/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.inquiryEventLicense .selectedDocument__note {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.inquiryEventLicense .selectedDocument__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
.inquiryEventLicense .selectedDocument__note--link {
  margin: 0 4px;
  font-weight: 700;
  color: #da5d64;
  text-decoration: underline;
}
.inquiryEventLicense .selectedDocument__note--link a {
  cursor: pointer;
}

.inquiryContact {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryContact {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryContact__description {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .inquiryContact__description {
    margin-bottom: 24px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.inquiryContact__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.inquiryContact .contactContent {
  height: fit-content;
  padding: 20px;
  background-color: #ffffff;
  background-color: #e2efff;
  border-radius: 8px;
}
.inquiryContact .contactContent .form__radio--purpose {
  background-color: #ffffff;
  border-radius: 8px;
}
.inquiryContact .contactContent .inquiryFlow__notes {
  margin-top: 8px;
  margin-bottom: 0;
  gap: 8px;
}
.inquiryContact .contactUserInfo {
  height: fit-content;
  padding: 20px 20px 40px;
  background-color: #e2efff;
  border-radius: 8px;
}

.inquiryNewsletter {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .inquiryNewsletter {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.inquiryNewsletter__form {
  max-width: 540px;
  margin: 0 auto;
}
.inquiryNewsletter .inquiryFlow__notes {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .inquiryNewsletter .inquiryFlow__notes {
    margin-bottom: 16px;
  }
}

.policy {
  max-width: 1120px;
  margin: 0 auto 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .policy {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.policy__description {
  margin-bottom: 40px;
  line-height: 150%;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .policy__description {
    margin-bottom: 24px;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.policy__inner {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .policy__inner {
    margin-bottom: 24px;
  }
}
.policy__heading {
  margin-bottom: 20px;
  padding-left: 10px;
  line-height: 200%;
  font-weight: 700;
  border-bottom: 1px solid #939393;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .policy__heading {
    margin-bottom: 12px;
    padding-left: 4px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.policy__link {
  color: #2b64b0;
  text-decoration: underline;
}
.policy__list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.policy__list .listItem {
  list-style: disc;
  padding-left: 4px;
}
.policy__list .listItem img {
  margin-top: 30px;
}
.policy__sns {
  margin-top: 20px;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0px 8px 25px 0px rgba(43, 100, 176, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .policy__sns {
    margin-top: 12px;
    padding: 24px 16px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.policy__sns--heading {
  margin-bottom: 20px;
  color: #2b64b0;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .policy__sns--heading {
    margin-bottom: 12px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.policy__sns--accounts {
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .policy__sns--accounts {
    flex-direction: column;
    gap: 12px;
  }
}
.policy__sns--account {
  width: 370px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border: 3px solid #333333;
}
@media screen and (max-width: 767px) {
  .policy__sns--account {
    width: 100%;
    padding: 24px 16px;
    gap: 16px;
  }
  .policy__sns--account:first-of-type img {
    width: 24px;
    margin: 0 6px;
  }
}
.policy__sns--account img {
  filter: brightness(0);
}
@media screen and (max-width: 767px) {
  .policy__sns--account img {
    width: 36px;
  }
}
.policy__sns--account span {
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .policy__sns--account span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.policy__sns--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .policy__sns--list {
    gap: 12px;
  }
}
.policy__sns--list .listItem__heading {
  position: relative;
  display: block;
  padding-left: 18px;
  font-weight: 700;
  line-height: 200%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .policy__sns--list .listItem__heading {
    padding-left: 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.policy__sns--list .listItem__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 3px;
  background-color: #2b64b0;
}

.sitemap {
  max-width: 1120px;
  margin: 0 auto 96px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sitemap {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.sitemap__heading {
  position: relative;
  margin-bottom: 14px;
  padding-left: 21px;
  line-height: 200%;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sitemap__heading {
    padding-left: 18px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.sitemap__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #2b64b0;
}
.sitemap__list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 510px;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    gap: 12px;
    padding-left: 18px;
    max-height: 100%;
  }
}
.sitemap__list .listItem {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .sitemap__list .listItem {
    gap: 12px;
    width: 100%;
  }
}
.sitemap__list .listItem__link {
  position: relative;
  padding-left: 21px;
  line-height: 200%;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sitemap__list .listItem__link {
    padding-left: 18px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.sitemap__list .listItem__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 3px;
  background-color: #2b64b0;
}
.sitemap__list .listItem__link--child {
  padding-left: 21px;
  line-height: 200%;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .sitemap__list .listItem__link--child {
    padding-left: 18px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.sitemap__list .listItem__link--information {
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .sitemap__list .listItem__link--information {
    margin-bottom: 0;
  }
}

.notFound {
  max-width: 1120px;
  margin: 0 auto 96px;
}
@media screen and (max-width: 767px) {
  .notFound {
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.notFound__inner {
  margin-bottom: 64px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .notFound__inner {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 24px;
  }
}
.notFound__heading {
  margin-bottom: 24px;
  line-height: 150%;
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .notFound__heading {
    margin-bottom: 16px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.notFound__list {
  margin: 24px 0;
}
.notFound__list .listItem {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  list-style: none;
}
.notFound__list .listItem::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #2b64b0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .notFound__list .listItem::before {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.notFound__image {
  width: 180px;
  height: 320px;
}
@media screen and (max-width: 767px) {
  .notFound__image {
    width: 100px;
    height: 100%;
    margin: 0 auto;
  }
}
.notFound__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.notFound__button {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .notFound__button {
    width: 100%;
  }
}
.notFound__button:last-of-type {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .notFound__button:last-of-type {
    margin-top: 12px;
  }
}

.termsOfUse__intro {
  line-height: 150%;
  margin-bottom: 24px;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__intro {
    margin-bottom: 16px;
    font-size: 12px !important;
  }
}
.termsOfUse__chapter {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .termsOfUse__chapter {
    margin-bottom: 16px;
  }
}
.termsOfUse__chapterTitle {
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
  font-size: 18px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__chapterTitle {
    margin-bottom: 12px;
    font-size: 14px !important;
  }
}
.termsOfUse__article {
  margin-bottom: 16px;
}
.termsOfUse__articleTitle {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__articleTitle {
    margin-bottom: 8px;
    font-size: 13px !important;
  }
}
.termsOfUse__text {
  line-height: 150%;
  margin-bottom: 8px;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__text {
    margin-bottom: 4px;
    font-size: 12px !important;
  }
}
.termsOfUse__numList {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 8px;
}
.termsOfUse__numList > li {
  line-height: 150%;
  padding-left: 4px;
  margin-bottom: 8px;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__numList > li {
    margin-bottom: 6px;
    font-size: 12px !important;
  }
}
.termsOfUse__subList {
  list-style: none;
  padding-left: 16px;
  margin-top: 6px;
  counter-reset: sub-counter;
}
.termsOfUse__subList > li {
  font-size: 14px !important;
  line-height: 150%;
  padding-left: 36px;
  position: relative;
  margin-bottom: 6px;
  counter-increment: sub-counter;
}
@media screen and (max-width: 767px) {
  .termsOfUse__subList > li {
    margin-bottom: 4px;
    padding-left: 26px;
    font-size: 12px !important;
  }
}
.termsOfUse__subList > li::before {
  content: "（" counter(sub-counter) "）";
  position: absolute;
  left: 0;
}
.termsOfUse__subText {
  line-height: 150%;
  margin-top: 2px;
  margin-bottom: 4px;
  font-size: 14px !important;
}
@media screen and (max-width: 767px) {
  .termsOfUse__subText {
    font-size: 12px !important;
  }
}

/*# sourceMappingURL=style.css.map */
