@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: top;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

em {
  font-style: normal;
}

:root {
  color-scheme: light !important;
}

.is-la {
  display: none !important;
}
@media screen and (min-width: 865px) {
  .is-la {
    display: block !important;
  }
}

.is-md {
  display: none !important;
}
@media screen and (min-width: 601px) and (max-width: 864px) {
  .is-md {
    display: block !important;
  }
}

.is-sm {
  display: none !important;
}
@media screen and (max-width: 864px) {
  .is-sm {
    display: block !important;
  }
}

.is-pc {
  display: none !important;
}
@media screen and (min-width: 600px) {
  .is-pc {
    display: block !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 864px) {
  .is-sp {
    display: block !important;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@font-face {
  font-family: "Material Symbols";
  font-style: normal;
  src: url(../font/MaterialSymbolsSharp-VariableFont_FILL,GRAD,opsz,wght.ttf) format("truetype");
}
.material-symbols {
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em; /* = 24px */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-family: "Material Symbols";
}

.sdfw_header {
  height: 60px;
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sdfw_header:before {
  content: "";
  z-index: 101;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(72, 71, 65, 0.3);
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
}
.sdfw_header .header_contents {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
.sdfw_header .logo {
  width: 280px;
  padding: 20px;
}
.sdfw_header .logo img {
  max-width: 200px;
}
.sdfw_header .header_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 280px);
}
.sdfw_header .header_navigation .toggle_button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 110;
  text-align: center;
}
.sdfw_header .header_navigation .toggle_button:before {
  content: "menu";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 40px;
}
.sdfw_header .header_navigation .toggle_button em {
  display: none;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .toggle_button {
    display: none;
  }
}
.sdfw_header .header_navigation .contact_button {
  position: absolute;
  top: 0;
  right: 60px;
  width: 60px;
  height: 60px;
  z-index: 50;
  background-color: #262520;
}
.sdfw_header .header_navigation .contact_button a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.sdfw_header .header_navigation .contact_button a:before {
  content: "mail";
  font-family: "Material Symbols";
  font-weight: 200;
  color: #fff;
  font-size: 40px;
}
.sdfw_header .header_navigation .contact_button em {
  display: none;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .contact_button {
    display: none;
  }
}
.sdfw_header .header_navigation .header_navigation_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  background-color: #484741;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  top: 0;
  right: -100%;
  flex-direction: column;
  z-index: 105;
  padding: 4em 1.5em 2em;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .header_navigation_list {
    position: relative;
    background-color: transparent;
    height: auto;
    top: inherit;
    right: inherit;
    padding: 0;
    flex-direction: row;
    max-width: inherit;
  }
}
.sdfw_header .header_navigation ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul {
    width: auto;
    flex-direction: row;
  }
}
.sdfw_header .header_navigation ul li {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul li {
    width: auto;
  }
}
.sdfw_header .header_navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
  color: #ffffff;
  font-weight: normal;
  height: auto;
  padding: 0.25em 0;
  min-width: auto;
}
.sdfw_header .header_navigation ul li a:hover {
  border-bottom: 3px solid #b7b19c;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul li a {
    height: 60px;
    padding: 1em 0.5em;
    border-bottom: 3px solid transparent;
    color: #484741;
    font-weight: bold;
  }
  .sdfw_header .header_navigation ul li a:hover {
    border-bottom: 3px solid #1c6ecd;
  }
}
.sdfw_header .header_navigation ul li + li {
  margin: 1em 0 0;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul li + li {
    margin: 0 0 0 1em;
  }
}
.sdfw_header .header_navigation .side {
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side {
    width: auto;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.sdfw_header .header_navigation .side ul li + li {
  margin-left: 0;
}
.sdfw_header .header_navigation .side a {
  width: 100%;
  padding: 1em 1em 0.9em;
  position: relative;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side a em:after {
    display: none;
  }
}
.sdfw_header .header_navigation .side a em {
  margin-top: -0.25em;
  font-size: 0.8em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0.5em 1em 0.75em;
    width: 100px;
    height: 100px;
  }
  .sdfw_header .header_navigation .side a:before {
    display: block;
    font-size: 60px;
  }
  .sdfw_header .header_navigation .side a:after {
    content: none;
  }
}
.sdfw_header .header_navigation .side .download a {
  margin-top: 0;
  color: #f8f6ef;
  background-color: #262520;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side .download a {
    color: #262520;
    background-color: #f8f6ef;
  }
  .sdfw_header .header_navigation .side .download a:before {
    content: "docs";
    font-family: "Material Symbols";
    font-weight: 200;
  }
}
.sdfw_header .header_navigation .side .contact a {
  color: #262520;
  background-color: #f8f6ef;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side .contact a {
    color: #ffffff;
    background-color: #262520;
  }
  .sdfw_header .header_navigation .side .contact a:before {
    content: "mail";
    font-family: "Material Symbols";
    font-weight: 200;
  }
}

body.is-open .sdfw_header:before {
  opacity: 1;
}
body.is-open .sdfw_header .header_navigation .toggle_button:before {
  content: "close";
  font-family: "Material Symbols";
  font-weight: 200;
  color: #fff;
}
body.is-open .sdfw_header .header_navigation .header_navigation_list {
  right: 0%;
}

.sdfw_header .header_navigation ul .download {
  position: relative;
}
.sdfw_header .header_navigation ul .download > em {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 1em 1em 0.9em;
  position: relative;
  cursor: pointer;
  margin-top: 0;
  color: #f8f6ef;
  background-color: #262520;
}
.sdfw_header .header_navigation ul .download > em span {
  font-size: 0.8em;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul .download > em {
    color: #262520;
    background-color: #f8f6ef;
    border-bottom: 3px solid #f8f6ef;
  }
  .sdfw_header .header_navigation ul .download > em:before {
    content: sticky_note_2;
    font-family: "Material Symbols";
    font-weight: 200;
  }
  .sdfw_header .header_navigation ul .download > em:hover {
    border-bottom: 3px solid #1c6ecd;
  }
}
.sdfw_header .header_navigation ul .download > em:after {
  background-image: url("../image/blank_w.svg");
}
.sdfw_header .header_navigation ul .download-list {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  flex-direction: column;
  bottom: 47px;
  width: 100%;
}
.sdfw_header .header_navigation ul .download-list li + li {
  margin-top: 1px;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul .download-list {
    top: 115px;
    right: 0;
    left: auto;
    width: 200px;
  }
  .sdfw_header .header_navigation ul .download-list li + li {
    margin-top: 0px;
    border-top: 1px solid #b7b19c;
  }
}
.sdfw_header .header_navigation ul .download-list.is-open {
  max-height: 200px;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation ul .download-list.is-open {
    height: 200px;
  }
}
.sdfw_header .header_navigation ul .download-list a {
  padding: 0.75em 1em 0.5em;
  border: none !important;
}
.sdfw_header .header_navigation ul .download-list a:hover {
  background-color: #ede6d0;
}
.sdfw_header .header_navigation ul .download-list a:before, .sdfw_header .header_navigation ul .download-list a:after {
  display: none;
}

.sdfw_back_top a {
  position: fixed;
  bottom: 1em;
  right: 1em;
  background-color: #b7b19c;
  height: 3.5em;
  width: 3.5em;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.sdfw_back_top a em {
  display: none;
}
.sdfw_back_top a img {
  width: 2em;
}
.sdfw_back_top a:hover {
  background-color: #45443f;
}

.sdfw_footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #484741;
}
.sdfw_footer .footer_contents {
  color: #ffffff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sdfw_footer .footer_contents .footer_copyright {
  font-weight: normal;
  padding: 0.8em 0 0.5em;
  font-size: 0.8em;
  letter-spacing: 1px;
}

.image {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.image.hover {
  overflow: hidden;
}
.image.hover img:hover {
  transform: scale(1.05);
}
.image .caption {
  display: block;
  font-size: 0.9em;
  margin-top: 0.25em;
}

.video {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.video .video_inner iframe {
  max-width: 100%;
}
.video .caption {
  display: block;
  font-size: 0.9em;
  margin-top: 0.25em;
}

.map {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.map iframe {
  max-width: 100%;
}

.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

.italic {
  font-style: italic;
  display: inline-block;
}

sup, sub {
  margin: 0 0.25em;
  font-weight: normal;
}

u.code {
  display: inline-block;
  font-size: 0.8em;
  padding: 0.25em 0.5em;
  background-color: #F5F5F5;
  text-decoration: none;
  color: #484741;
  border-radius: 0.25em;
  margin: 0 0.25em;
  line-height: 1.2;
  vertical-align: middle;
}

.title-h1 {
  font-size: 1.75em;
}
.title-h2 {
  font-size: 1.5em;
}
.title-h3 {
  font-size: 1.25em;
}
.title-h1, .title-h2, .title-h3 {
  margin: 1em 0 0.5em;
}
.title-h1 h1,
.title-h1 h2,
.title-h1 h3,
.title-h1 h4,
.title-h1 h5, .title-h2 h1,
.title-h2 h2,
.title-h2 h3,
.title-h2 h4,
.title-h2 h5, .title-h3 h1,
.title-h3 h2,
.title-h3 h3,
.title-h3 h4,
.title-h3 h5 {
  font-weight: normal;
}

.textbox.__blockquote dl {
  background-color: #F5F5F5;
  padding: 1em 1em 0.5em;
}
.textbox.__blockquote dl dd {
  padding-left: 1em;
  position: relative;
  font-size: 0.9em;
}
.textbox.__blockquote dl dd:before {
  content: "format_quote";
  font-family: "Material Symbols";
  font-weight: 200;
  position: absolute;
  left: -0.25em;
  top: -0.5em;
  color: #CCCCCC;
  font-size: 1.25em;
  font-variation-settings: "FILL" 1;
}
.textbox.__blockquote dl dt {
  font-size: 0.8em;
  text-align: right;
}
.textbox.__message dl {
  padding: 0.5em 1em 0.5em;
}
.textbox.__message dl dt {
  font-size: 1.25em;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.textbox.__message dl dd {
  font-size: 0.9em;
}
.textbox.__message dl dd .simple-list ul {
  margin: 0.5em 0;
}
.textbox.__message dl {
  background-color: rgba(28, 110, 205, 0.1);
}
.textbox.__message dl dt {
  color: #103e73;
}
.textbox.__message dl dt:before {
  content: "notifications";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 1.25em;
  margin-right: 0.25em;
  font-variation-settings: "FILL" 1;
  opacity: 0.75;
  font-weight: normal;
}
.textbox.__message dl dd .simple-list ul li:before {
  background-color: #103e73;
  opacity: 0.25;
}
.textbox.__attention dl {
  padding: 0.5em 1em 0.5em;
}
.textbox.__attention dl dt {
  font-size: 1.25em;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.textbox.__attention dl dd {
  font-size: 0.9em;
}
.textbox.__attention dl dd .simple-list ul {
  margin: 0.5em 0;
}
.textbox.__attention dl {
  background-color: #feeef4;
}
.textbox.__attention dl dt {
  color: #69002f;
}
.textbox.__attention dl dt:before {
  content: "error";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 1.25em;
  margin-right: 0.25em;
  font-variation-settings: "FILL" 1;
  opacity: 0.75;
  font-weight: normal;
}
.textbox.__attention dl dd .simple-list ul li:before {
  background-color: #9c0046;
  opacity: 0.25;
}

.tag {
  background-color: #F5F5F5;
  color: #484741;
  margin: 0.5em 0;
  position: relative;
  padding: 1em 3.5em 1em 1em;
}
.tag:has(pre) {
  padding: 0;
}
.tag pre {
  padding: 1em;
  overflow-y: auto;
  width: 100%;
}
.tag .tag_copy {
  position: absolute;
  height: 2.5em;
  width: 2.5em;
  background-color: #ffffff;
  right: 0.5em;
  top: 0.5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.tag .tag_copy:before {
  font-size: 1.25em;
  content: "content_copy";
  font-family: "Material Symbols";
  font-weight: 200;
}
.tag .tag_copy em {
  position: absolute;
  top: -2.5em;
  background-color: #484741;
  color: #ffffff;
  padding: 0em 0.5em 0.2em;
  border-radius: 0.25em;
  pointer-events: none;
  opacity: 0;
}
.tag .tag_copy em:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.25em;
  left: calc(50% - 4px);
  background: #484741;
  height: 6.9282032303px;
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tag .tag_copy:hover {
  background-color: #484741;
}
.tag .tag_copy:hover:before {
  color: #ffffff;
}
.tag .tag_copy.clicked em {
  opacity: 1;
}

.label {
  display: inline-block;
  padding: 0.25em 0.5em 0.15em;
  background-color: #f3f1ea;
  margin: 0 0.5em 0.5em 0;
}
.label_text {
  color: #484741;
}
.label:has(a) {
  border: 1px solid #484741;
  background-color: #ffffff;
  padding: 0;
}
.label:has(a):hover {
  border: 1px solid #f3f1ea;
  background-color: #f3f1ea;
}
.label:has(a) a {
  display: block;
  padding: 0.25em 0.5em 0.15em;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
table th,
table td {
  padding: 0.5em 0.75em 0.25em;
  border: 1px solid #b7b19c;
}
@media screen and (max-width: 864px) {
  table th,
  table td {
    padding: 0.25em 0.5em;
  }
}
table th {
  font-weight: bold;
  background-color: rgba(237, 230, 208, 0.75);
  color: #484741;
  white-space: nowrap;
}
table th.child {
  background-color: rgba(237, 230, 208, 0.5);
}

.table_scroll {
  width: 100%;
  overflow-x: auto;
  margin: 0.5em 0;
}

.dl_table dl {
  width: 100%;
  border-collapse: collapse;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #b7b19c;
}
@media screen and (max-width: 864px) {
  .dl_table dl {
    flex-wrap: wrap;
  }
}
.dl_table dl dt,
.dl_table dl dd {
  width: 100%;
  padding: 0.2em 0.75em 0.3em;
  border-left: 1px solid #b7b19c;
  background-color: #ffffff;
}
@media screen and (max-width: 864px) {
  .dl_table dl dt,
  .dl_table dl dd {
    padding: 0.25em 0.5em;
    border-left: none;
    border-top: 1px solid #b7b19c;
  }
}
.dl_table dl dt:first-child,
.dl_table dl dd:first-child {
  border-left: none;
}
@media screen and (max-width: 864px) {
  .dl_table dl dt:first-child,
  .dl_table dl dd:first-child {
    border-top: none;
  }
}
.dl_table dl dt {
  font-weight: bold;
  background-color: rgba(237, 230, 208, 0.75);
  color: #484741;
  white-space: nowrap;
}
.dl_table dl dt.child {
  background-color: rgba(237, 230, 208, 0.5);
}
.dl_table dl + dl {
  border-top: none;
}
.dl_table dl.parent_list {
  flex-wrap: wrap;
}
.dl_table dl.parent_list dt.title {
  border-bottom: 1px solid #b7b19c;
}
@media screen and (max-width: 864px) {
  .dl_table dl.parent_list dt.title {
    border-bottom: none;
  }
}
.dl_table dl.parent_list dd.inner {
  padding: 0.5em;
  border: none;
}

.asterisk-list > ul,
.asterisk-list ol {
  margin: 1em 0;
}
.asterisk-list > ul li,
.asterisk-list ol li {
  position: relative;
  margin-bottom: 0.25em;
  font-size: 0.9em;
}
.asterisk-list > ul li:before,
.asterisk-list ol li:before {
  position: absolute;
  left: 0;
}
.asterisk-list > ul li ul,
.asterisk-list > ul li ol,
.asterisk-list ol li ul,
.asterisk-list ol li ol {
  margin: 0.25em 0;
}
.asterisk-list > ul li ul li,
.asterisk-list > ul li ol li,
.asterisk-list ol li ul li,
.asterisk-list ol li ol li {
  font-size: 1em;
  margin-bottom: 0em;
}
.asterisk-list ul li {
  padding-left: 1.25em;
}
.asterisk-list ul li:before {
  content: "※";
}
.asterisk-list ol {
  counter-reset: mycounter;
}
.asterisk-list ol li {
  padding-left: 2.25em;
  counter-increment: mycounter;
}
.asterisk-list ol li:before {
  content: "※" counter(mycounter);
}
.asterisk-list ol li > ol {
  counter-reset: mycounter_child;
}
.asterisk-list ol li > ol > li {
  counter-increment: mycounter_child;
}
.asterisk-list ol li > ol > li:before {
  content: "※" counter(mycounter_child);
}
.asterisk-list ol li > ol > li > ol {
  counter-reset: mycounter_grandchild;
}
.asterisk-list ol li > ol > li > ol > li {
  counter-increment: mycounter_grandchild;
}
.asterisk-list ol li > ol > li > ol > li:before {
  content: "※" counter(mycounter_grandchild);
}

.simple-list > ul,
.simple-list ol {
  margin: 1em 0;
}
.simple-list > ul li,
.simple-list ol li {
  position: relative;
  margin-bottom: 0.25em;
  font-size: 1em;
}
.simple-list > ul li:before,
.simple-list ol li:before {
  position: absolute;
  left: 0.25em;
}
.simple-list > ul li ul,
.simple-list > ul li ol,
.simple-list ol li ul,
.simple-list ol li ol {
  margin: 0.25em 0;
}
.simple-list > ul li ul li,
.simple-list > ul li ol li,
.simple-list ol li ul li,
.simple-list ol li ol li {
  margin-bottom: 0em;
}
.simple-list ul li {
  padding-left: 1.25em;
}
.simple-list ul li:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  top: 0.5em;
  background-color: #b7b19c;
}
.simple-list ol {
  counter-reset: mycounter;
}
.simple-list ol li {
  padding-left: 1.75em;
  counter-increment: mycounter;
}
.simple-list ol li:before {
  content: "" counter(mycounter) ".";
}
.simple-list ol li > ol {
  counter-reset: mycounter_child;
}
.simple-list ol li > ol > li {
  counter-increment: mycounter_child;
}
.simple-list ol li > ol > li:before {
  content: counter(mycounter_child) ".";
}
.simple-list ol li > ol > li > ol {
  counter-reset: mycounter_grandchild;
}
.simple-list ol li > ol > li > ol > li {
  counter-increment: mycounter_grandchild;
}
.simple-list ol li > ol > li > ol > li:before {
  content: counter(mycounter_grandchild) ".";
}

.dl_list dl dt {
  font-weight: bold;
}

.button_list {
  margin: 0.5em 0;
}
.button_list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.button_list ul a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 864px) {
  .button_list ul a {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 864px) {
  .button_list ul li {
    display: block;
    width: 100%;
  }
}
.button_list ul li + li {
  margin-left: 0.5em;
}
@media screen and (max-width: 864px) {
  .button_list ul li + li {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
.button_list .button {
  padding: 0.5em 2em;
  max-width: 100%;
}
.button_list .button.__primary {
  box-sizing: border-box;
  background-color: #484741;
  color: #ffffff;
  border: 3px solid transparent;
  font-weight: bold;
}
.button_list .button.__primary:hover {
  background-color: #ffffff;
  color: #484741;
  border: 3px solid #484741;
}
.button_list .button.__primary em:before,
.button_list .button.__primary em:after {
  font-weight: normal;
}
.button_list .button.__secondary {
  background-color: #ffffff;
  color: #484741;
  border: 1px solid #484741;
  transition: 0s;
}
.button_list .button.__secondary:hover {
  background-color: #F5F5F5;
}
.button_list .button.__tertiary {
  box-sizing: border-box;
  background-color: #ffffff;
  color: #484741;
  border: none;
  transition: 0s;
}
.button_list .button.__tertiary em {
  display: block;
  border-bottom: 1px solid #484741;
  transition: 0;
}
.button_list .button.__tertiary em:before, .button_list .button.__tertiary em:after {
  display: inline-block;
}
.button_list .button.__tertiary:hover {
  background-color: #F5F5F5;
}
.button_list .button.__tertiary:hover em {
  border-bottom: 1px solid transparent;
  transition: 0;
}
.button_list .button.__large {
  font-size: 1.25em;
  padding: 0.75em 2.5em;
}
.button_list .button.__middle {
  padding: 0.5em 2em;
}
.button_list .button.__small {
  font-size: 0.9em;
  padding: 0.25em 1em;
}
.button_list .button.__blank {
  margin-right: 0;
}
.button_list .button.__blank:after {
  display: none;
}
.button_list .button.__blank em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__blank em:after {
  position: relative;
  margin-left: 0.25em;
}
.button_list .button.__blank.button__primary em:after {
  color: #ffffff;
}
.button_list .button.__blank.button__primary:hover em:after {
  color: #484741;
}
.button_list .button.__blank em:after {
  content: "north_east";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .button.__right_arrow em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__right_arrow em:after {
  position: relative;
  margin-left: 0.25em;
}
.button_list .button.__right_arrow.button__primary em:after {
  color: #ffffff;
}
.button_list .button.__right_arrow.button__primary:hover em:after {
  color: #484741;
}
.button_list .button.__right_arrow em:after {
  content: "arrow_forward_ios";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .button.__left_arrow em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__left_arrow em:before {
  position: relative;
  margin-right: 0.25em;
}
.button_list .button.__left_arrow.button__primary em:before {
  color: #ffffff;
}
.button_list .button.__left_arrow.button__primary:hover em:before {
  color: #484741;
}
.button_list .button.__left_arrow em:before {
  content: "arrow_back";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .button.__download em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__download em:after {
  position: relative;
  margin-left: 0.25em;
}
.button_list .button.__download.button__primary em:after {
  color: #ffffff;
}
.button_list .button.__download.button__primary:hover em:after {
  color: #484741;
}
.button_list .button.__download em:after {
  content: "download";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .button.__pdf em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__pdf em:after {
  position: relative;
  margin-left: 0.25em;
}
.button_list .button.__pdf.button__primary em:after {
  color: #ffffff;
}
.button_list .button.__pdf.button__primary:hover em:after {
  color: #484741;
}
.button_list .button.__pdf em:after {
  content: "picture_as_pdf";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .button.__file em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_list .button.__file em:after {
  position: relative;
  margin-left: 0.25em;
}
.button_list .button.__file.button__primary em:after {
  color: #ffffff;
}
.button_list .button.__file.button__primary:hover em:after {
  color: #484741;
}
.button_list .button.__file em:after {
  content: "description";
  font-family: "Material Symbols";
  font-weight: 200;
}

.button_list .icon_button {
  position: relative;
  height: 2.5em;
  width: 2.5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #484741;
  color: #ffffff;
}
.button_list .icon_button:before {
  font-size: 1.25em;
}
.button_list .icon_button em {
  position: absolute;
  top: -2.5em;
  background-color: #484741;
  color: #ffffff;
  padding: 0em 0.5em 0.2em;
  border-radius: 0.25em;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}
.button_list .icon_button em:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.25em;
  left: calc(50% - 4px);
  background: #484741;
  height: 6.9282032303px;
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.button_list .icon_button:hover {
  background-color: #121211;
}
.button_list .icon_button:hover em {
  opacity: 1;
}
.button_list .icon_button.clicked em {
  opacity: 1;
}
.button_list .icon_button.__outline {
  background-color: #ffffff;
  color: #484741;
  border: 1px solid #484741;
}
.button_list .icon_button.__outline:hover {
  background-color: #F5F5F5;
}
.button_list .icon_button.__square {
  border-radius: 0.25em;
}
.button_list .icon_button.__up_arrow:before {
  content: "arrow_upward";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .icon_button.__copy:before {
  content: "content_copy";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_list .icon_button.__add:before {
  content: "add";
  font-family: "Material Symbols";
  font-weight: 200;
}

a:not(.button).__blank {
  display: inline-block;
  margin-right: 1em;
  position: relative;
}
a:not(.button).__blank:after {
  font-family: "Material Symbols";
  font-size: 0.9em;
  position: absolute;
  color: #676660;
}
a:not(.button).__blank:after {
  content: "open_in_new";
}
a:not(.button).__pdf {
  display: inline-block;
  margin-right: 1em;
  position: relative;
}
a:not(.button).__pdf:after {
  font-family: "Material Symbols";
  font-size: 0.9em;
  position: absolute;
  color: #676660;
}
a:not(.button).__pdf:after {
  content: "picture_as_pdf";
}
a:not(.button).__file {
  display: inline-block;
  margin-right: 1em;
  position: relative;
}
a:not(.button).__file:after {
  font-family: "Material Symbols";
  font-size: 0.9em;
  position: absolute;
  color: #676660;
}
a:not(.button).__file:after {
  content: "description";
}

.link_list a.__blank {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.link_list a.__blank:after {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  right: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__blank:after {
  content: "open_in_new";
}
.link_list a.__right_arrow {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.link_list a.__right_arrow:after {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  right: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__right_arrow:after {
  content: "arrow_forward_ios";
}
.link_list a.__left_arrow {
  display: inline-block;
  margin-left: 1.5em;
  position: relative;
}
.link_list a.__left_arrow:before {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  left: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__left_arrow:before {
  content: "arrow_back";
}
.link_list a.__download {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.link_list a.__download:after {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  right: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__download:after {
  content: "download";
}
.link_list a.__pdf {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.link_list a.__pdf:after {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  right: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__pdf:after {
  content: "picture_as_pdf";
}
.link_list a.__file {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.link_list a.__file:after {
  font-family: "Material Symbols";
  font-size: 1.25em;
  position: absolute;
  color: #676660;
  right: -1.15em;
  top: 50%;
  transform: translateY(-50%);
}
.link_list a.__file:after {
  content: "description";
}

.pagenation {
  width: 100%;
  margin-top: 2em;
}
.pagenation ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #CCCCCC;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
}
.pagenation ul li {
  width: 50%;
}
@media screen and (max-width: 864px) {
  .pagenation ul li {
    width: 100%;
  }
  .pagenation ul li + li {
    border-top: 1px solid #F5F5F5;
  }
}
.pagenation ul li a {
  text-decoration: none;
  position: relative;
  padding: 1em 3em 1em;
  display: block;
  height: 100%;
}
@media screen and (max-width: 864px) {
  .pagenation ul li a {
    padding: 0.5em 3em 0.5em;
  }
}
.pagenation ul li a:hover {
  background-color: #F5F5F5;
}
.pagenation ul li span {
  position: relative;
}
.pagenation ul li span:before {
  position: absolute;
}
.pagenation ul li em {
  font-size: 1.5em;
  display: block;
  line-height: 1.2;
}
.pagenation ul li.prev span:before {
  content: "arrow_back";
  font-family: "Material Symbols";
  font-weight: 200;
  left: -1.5em;
}
.pagenation ul li.next {
  text-align: right;
}
.pagenation ul li.next span:before {
  content: "arrow_forward";
  font-family: "Material Symbols";
  font-weight: 200;
  right: -1.5em;
}
.pagenation ul:has(.next:only-child) {
  justify-content: flex-end;
}

.pager ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pager ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #484741;
  text-decoration: none;
  height: 2.5em;
  width: 2.5em;
}
.pager ul li a:hover {
  background-color: #F5F5F5;
}
.pager ul li + li {
  margin-left: 0.5em;
}
@media screen and (max-width: 864px) {
  .pager ul li + li {
    margin-left: 0.25em;
  }
}
.pager ul li.current a {
  background-color: #484741;
  color: #ffffff;
  pointer-events: none;
}
.pager ul li.prev em, .pager ul li.next em {
  display: none;
}
.pager ul li.prev a:before, .pager ul li.next a:before {
  font-size: 1.5em;
  font-weight: 200;
}
.pager ul li.prev li a:before {
  margin-right: 0.1em;
}
.pager ul li.prev li:first-child a:before {
  content: "keyboard_double_arrow_left";
  font-family: "Material Symbols";
  font-weight: 200;
}
.pager ul li.prev li:last-child a:before {
  content: "keyboard_arrow_left";
  font-family: "Material Symbols";
  font-weight: 200;
}
.pager ul li.next li a:before {
  margin-left: 0.1em;
}
.pager ul li.next li:first-child a:before {
  content: "keyboard_arrow_right";
  font-family: "Material Symbols";
  font-weight: 200;
}
.pager ul li.next li:last-child a:before {
  content: "keyboard_double_arrow_right";
  font-family: "Material Symbols";
  font-weight: 200;
}
@media screen and (max-width: 864px) {
  .pager ul li.number li:first-child, .pager ul li.number li:last-child {
    display: none;
  }
  .pager ul li.number li:nth-child(2) {
    margin-left: 0;
  }
}

.form_input {
  max-width: 100%;
  position: relative;
}
.form_input input {
  border: none;
  width: 100%;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  border: 1px solid #484741;
}
.form_input.__password span.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0em;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  height: 2em;
  cursor: pointer;
}
.form_input.__password span.icon:before {
  content: "visibility";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 1.25em;
}
.form_input.__password span.icon em {
  display: none;
}
.form_input.__password span.icon.is-open:before {
  content: "visibility_off";
  font-family: "Material Symbols";
  font-weight: 200;
}
.form_input.__date input[type=date]:after {
  content: "calendar_month";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 1.25em;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}
.form_input.__date input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.form_input.__date input[type=date]::-webkit-inner-spin-button, .form_input.__date input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}
.form_input.disabled {
  cursor: not-allowed;
}
.form_input.disabled input {
  background-color: #CCCCCC;
  pointer-events: none;
  color: #676660;
}

textarea {
  border: none;
  width: 100%;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  border: 1px solid #484741;
  min-height: 5em;
  overflow: auto;
}

.form-list ul {
  margin: 1em 0;
}
.form-list ul li {
  position: relative;
  margin-bottom: 0.25em;
  font-size: 1em;
}
.form-list ul li:before {
  position: absolute;
  left: 0;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}
input[type=radio] + label,
input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 1.5em;
}
input[type=radio] + label:before,
input[type=checkbox] + label:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25em;
  color: #CCCCCC;
}
input[type=radio]:checked + label:before,
input[type=checkbox]:checked + label:before {
  color: #262520;
}

input[type=radio] + label:before {
  content: "radio_button_unchecked";
  font-family: "Material Symbols";
  font-weight: 200;
}
input[type=radio]:checked + label:before {
  content: "radio_button_checked";
  font-family: "Material Symbols";
  font-weight: 200;
}

input[type=checkbox] + label:before {
  content: "check_box_outline_blank";
  font-family: "Material Symbols";
  font-weight: 200;
}
input[type=checkbox]:checked + label:before {
  content: "check_box";
  font-family: "Material Symbols";
  font-weight: 200;
  font-variation-settings: "FILL" 1;
}

.form_select {
  max-width: 100%;
  position: relative;
}
.form_select select {
  border: none;
  width: 100%;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  border: 1px solid #484741;
  -webkit-appearance: none;
  appearance: none;
}
.form_select:after {
  content: "keyboard_arrow_down";
  font-family: "Material Symbols";
  font-weight: 200;
  font-size: 1.25em;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-45%);
  pointer-events: none;
}

.form_list {
  width: 100%;
}
.form_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
}
.form_list_item dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 7em;
  height: 2.25em;
  font-weight: bold;
}
@media screen and (max-width: 864px) {
  .form_list_item dt {
    width: 100%;
    height: auto;
    margin-bottom: 0.25em;
  }
}
.form_list_item dd {
  min-width: calc(100% - 7em);
}
@media screen and (max-width: 864px) {
  .form_list_item dd {
    width: 100%;
  }
}
.form_list_item dd .caption {
  font-size: 0.9em;
  margin-top: 0.25em;
  line-height: 1.2;
}
.form_list_item + dl {
  margin-top: 1em;
}
.form_list .button_list {
  position: relative;
  margin-top: 1em;
}
@media screen and (max-width: 864px) {
  .form_list .button_list li {
    width: 100%;
  }
  .form_list .button_list li:has(.__tertiary) {
    height: 2em;
  }
  .form_list .button_list li:has(.__primary) {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.form_list .button_list .button.__tertiary {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 864px) {
  .form_list .button_list .button.__tertiary {
    width: auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 865px) {
  .form_list .button_list .button.__tertiary {
    top: 50%;
    transform: translateY(-50%);
  }
}
.tab .tab_list ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
}
.tab .tab_list ul li {
  cursor: pointer;
  padding: 0.5em 1em;
  border-bottom: 2px solid #CCCCCC;
  white-space: nowrap;
}
.tab .tab_list ul li + li {
  margin-left: 0.25em;
}
.tab .tab_list ul li.is-open {
  border-bottom: 2px solid #676660;
  font-weight: bold;
}
.tab .tab_body {
  display: none;
  padding: 1em;
}
.tab .tab_body.is-open {
  display: block;
}

.slider li {
  width: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumbs ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-items: center;
}
.breadcrumbs li a {
  color: #676660;
}
.breadcrumbs li + li:before {
  content: "arrow_forward_ios";
  font-family: "Material Symbols";
  font-weight: 200;
  margin: 0 0.5em;
  color: #CCCCCC;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-2, .flex-3, .flex-4 {
  display: flex;
  flex-direction: column;
  reading-flow: flex-visual;
  flex-wrap: wrap;
}
.flex-2 > *, .flex-3 > *, .flex-4 > * {
  width: 100%;
}
@media screen and (min-width: 865px) {
  .flex-2, .flex-3, .flex-4 {
    flex-direction: row;
  }
}
@media screen and (min-width: 865px) {
  .flex-2 > * {
    width: 50%;
  }
}
@media screen and (min-width: 865px) {
  .flex-3 > * {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 865px) {
  .flex-4 > * {
    width: 25%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  color: #262520;
  font-family: Yu Gothic Medium, Meiryo, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
@media screen and (min-width: 865px) {
  body {
    min-width: auto;
  }
}

a {
  color: #262520;
}
a:hover {
  text-decoration: none;
}

.button_group {
  margin: 0.5em 0;
}
.button_group .button_item {
  width: 100%;
  text-align: center;
}
.button_group .button_item a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.button_group .button_item .button {
  padding: 0.5em 2em;
  max-width: 100%;
}
.button_group .button_item .button.__secondary {
  background-color: #ffffff;
  color: #484741;
  border: 1px solid #484741;
  transition: 0s;
}
.button_group .button_item .button.__secondary:hover {
  background-color: #F5F5F5;
}
.button_group .button_item .button.__blank em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_group .button_item .button.__blank em:after {
  position: relative;
  margin-left: 0.25em;
  content: "north_east";
  font-family: "Material Symbols";
  font-weight: 200;
}
.button_group .button_item .button.__right_arrow em {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_group .button_item .button.__right_arrow em:after {
  position: relative;
  margin-left: 0.25em;
  content: "arrow_forward_ios";
  font-family: "Material Symbols";
  font-weight: 200;
}

section {
  padding: 80px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F5F5;
}
@media screen and (max-width: 864px) {
  section {
    padding: 60px 20px;
  }
}
section:nth-child(2n+1) {
  background-color: #ffffff;
}
section .highlighter {
  font-weight: bold;
  background: linear-gradient(transparent 50%, #ffd400 0%);
}

.sdfw_header .header_navigation .contact_button {
  background-color: #484741;
}
.sdfw_header .header_navigation .side .download a {
  color: #F5F5F5;
  background-color: #262520;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side .download a {
    color: #262520;
    background-color: #ffd400;
  }
  .sdfw_header .header_navigation .side .download a:before {
    content: "sticky_note_2";
    font-family: "Material Symbols";
    font-weight: 400;
  }
}
.sdfw_header .header_navigation .side .contact a {
  color: #262520;
  background-color: #F5F5F5;
}
@media screen and (min-width: 960px) {
  .sdfw_header .header_navigation .side .contact a {
    color: #ffffff;
    background-color: #262520;
  }
  .sdfw_header .header_navigation .side .contact a:before {
    font-weight: 400;
  }
}
.sdfw_header body.is-open .sdfw_header .header_navigation .toggle_button:before {
  font-weight: 400;
}
.sdfw_header body.is-open .sdfw_header .header_navigation .header_navigation_list {
  right: 0%;
}

.sdfw_body:not(.__top) .toggle_language {
  display: none;
}

.toggle_language {
  position: absolute;
  top: 1em;
  right: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 8px;
}
@media screen and (max-width: 959px) {
  .toggle_language {
    right: 130px;
  }
}
@media screen and (max-width: 601px) {
  .toggle_language {
    top: 68px;
    right: 10px;
    z-index: 99;
  }
}
.toggle_language .toggle_language_title {
  margin-right: 0.75em;
  font-weight: bold;
  font-size: 0.8em;
  color: #262520;
}
@media screen and (max-width: 601px) {
  .toggle_language .toggle_language_title {
    color: #ffffff;
  }
}
.toggle_language .toggle_language_label {
  display: flex;
  align-items: center;
  position: relative;
  width: 60px;
  height: 30px;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
  border: solid 2px #262520;
  border-radius: 30px;
  transition: background-color 0.4s;
}
@media screen and (max-width: 601px) {
  .toggle_language .toggle_language_label {
    border: none;
  }
}
.toggle_language .toggle_language_label:has(:checked) {
  background-color: #ffffff;
}
.toggle_language .toggle_language_label:has(:checked)::before {
  left: 33px;
  background-color: rgb(22, 86, 160);
}
.toggle_language .toggle_language_label::before {
  position: absolute;
  left: 5px;
  width: 22px;
  height: 22px;
  background-color: rgb(72, 71, 65);
  content: "";
  border-radius: 50%;
  transition: left 0.4s;
}
.toggle_language .toggle_language_label input {
  display: none;
}
.toggle_language .toggle_language_label:has(:checked)::after {
  left: 44px;
  content: "en";
}
.toggle_language .toggle_language_label::after {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 0.8em;
  content: "jp";
  transition: left 0.4s;
}

.sdfw_main {
  overflow-wrap: break-word;
  word-break: normal;
}

.acdc:lang(en) .asterisk-list ul li:before {
  font-size: 1.2em;
  left: 4px;
  content: "*";
}
.acdc:lang(en) .asterisk-list ol {
  counter-reset: mynumber;
}
.acdc:lang(en) .asterisk-list ol li {
  counter-increment: mynumber;
}
.acdc:lang(en) .asterisk-list ol li:before {
  content: "(" counter(mynumber) ")";
}

.sdfw_footer_navigation {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 37.09px;
  background-color: #484741;
  overflow: hidden;
}
@media screen and (max-width: 864px) {
  .sdfw_footer_navigation {
    border-bottom: 1px solid #676660;
  }
}
.sdfw_footer_navigation .flex_item {
  overflow: hidden;
  height: 300px;
  font-size: 2em;
}
@media screen and (max-width: 864px) {
  .sdfw_footer_navigation .flex_item {
    height: 75px;
    font-size: 1.5em;
  }
}
.sdfw_footer_navigation .flex_item a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  transition: 0.3s;
  background-size: auto 100%;
}
@media screen and (max-width: 864px) {
  .sdfw_footer_navigation .flex_item a {
    justify-content: flex-start;
  }
}
.sdfw_footer_navigation .flex_item a::after {
  content: "";
  position: absolute;
  background-color: rgba(38, 37, 32, 0.5);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(60%);
  transform: scale(1);
}
.sdfw_footer_navigation .flex_item a:hover:after {
  transform: scale(1.05);
}
.sdfw_footer_navigation .flex_item a em {
  display: inline-block;
  margin: 0.15em 0 -0.15em;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0 0 1em #000000;
  letter-spacing: 1px;
}
@media screen and (max-width: 864px) {
  .sdfw_footer_navigation .flex_item a em {
    margin: 0.15em 0 -0.15em 1.25em;
  }
}
.sdfw_footer_navigation .flex_item.product a:after {
  background-image: url(../pages/acdc/products.jpg);
}
@media screen and (max-width: 864px) {
  .sdfw_footer_navigation .flex_item.product a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    height: 100%;
    width: 100%;
  }
}
.sdfw_footer_navigation .flex_item.application a:after {
  background-image: url(../pages/acdc/application.jpg);
}
.sdfw_footer_navigation .flex_item.contact a:after {
  background-image: url(../pages/acdc/contacts.jpg);
}

@keyframes slider-dots-fillBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
.c-scrolldown {
  width: 1px;
  height: 60px;
  position: absolute;
  top: 253px;
  left: 30px;
  right: auto;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 50;
}
.c-scrolldown em {
  position: absolute;
  display: inline-block;
  left: -1.85em;
  font-size: 13px;
  word-break: normal;
  color: #fff;
  transform: rotate(-90deg);
}
@media screen and (max-width: 864px) {
  .c-scrolldown em {
    display: none;
  }
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, #fff 50%, rgba(0, 0, 0, 0) 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  animation: scrolldown 3s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  margin-top: 2.75em;
}
@media screen and (max-width: 864px) {
  .c-scrolldown .c-line {
    display: none;
  }
}

.acdc.sdfw_body {
  position: relative;
  min-height: 100vh;
  padding-bottom: 337px;
  word-break: break-all;
  background-color: rgb(245, 245, 245);
}
@media screen and (max-width: 864px) {
  .acdc.sdfw_body {
    padding-bottom: 188px;
  }
}
.acdc section.title {
  width: 100%;
  padding: 0;
  background-color: #F5F5F5;
}
.acdc section.title h1 {
  font-size: 3em;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 864px) {
  .acdc section.title h1 {
    font-size: 2em;
  }
}
.acdc section.title .hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
}
.acdc section.title .hero > .hero_title {
  height: 350px;
}
@media screen and (max-width: 864px) {
  .acdc section.title .hero > .hero_title {
    top: calc(50% + 20px);
    height: 200px;
  }
}
.acdc section.title .hero > .hero_title h1 {
  position: absolute;
  top: calc(50% + 32px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.acdc section.title .hero::before,
.acdc section.title .hero > .hero_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 110%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../pages/acdc/hero_back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 50% 36%;
  border-bottom-right-radius: 50% 36%;
  margin: 0 auto;
}
.acdc.__top section h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 50px;
}
.acdc.__top section h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
.acdc.__top section h4 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}
.acdc.__top section .icon_font {
  font-family: "Material Symbols";
  font-weight: 700;
  font-size: 60px;
}
.acdc.__top section .icon_font.icon_earthquake:before {
  content: "earthquake";
}
.acdc.__top section .icon_font.icon_bolt:before {
  content: "bolt";
}
.acdc.__top section .icon_font.icon_power:before {
  content: "power";
}
.acdc.__top section .icon_font.icon_heart_plus:before {
  content: "heart_plus";
}
.acdc.__top section .icon_font.icon_toys_fan:before {
  content: "toys_fan";
}
.acdc.__top section .icon_font.icon_water_drop:before {
  content: "water_drop";
}
.acdc.__top section.title .hero {
  height: 650px;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero {
    height: 100vh;
    max-height: 667px;
  }
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero::before {
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
  }
}
.acdc.__top section.title .hero .flex-2 {
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .flex-2 {
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: nowrap;
  }
}
.acdc.__top section.title .hero .flex-2 > div:nth-of-type(2n+1) {
  width: 45%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .flex-2 > div:nth-of-type(2n+1) {
    width: 100%;
  }
}
.acdc.__top section.title .hero .flex-2 > div:nth-of-type(2n) {
  width: 55%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .flex-2 > div:nth-of-type(2n) {
    width: 100%;
  }
}
.acdc.__top section.title .hero .hero_front {
  max-width: 904px;
  padding: 130px 20px 80px 60px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front {
    height: 100%;
    padding: 70px 20px 45px;
    max-width: 500px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title {
    padding: 0 0 30px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title h1 .hero_title_main {
  font-size: 32px;
  line-height: 1.5;
  font-weight: normal;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title h1 .hero_title_main {
    font-size: 24px;
    line-height: 1.3;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title h1 .hero_title_sub {
  font-size: 36px;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title h1 .hero_title_sub {
    font-size: 24px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title h1 img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 28px 0 16px;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title h1 img {
    margin: 24px 0 10px;
    max-width: 200px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots {
  position: relative;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots {
    margin: 24px 0 2px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots {
  display: flex;
  justify-content: flex-start;
  gap: 0.25em;
  width: 100%;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots {
    justify-content: center;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li {
  position: relative;
  width: calc(100% - 40px);
  max-width: 70px;
  height: 4px;
  background: #C7DDF2;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li {
    max-width: 70px;
  }
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #FFD400;
  transition: none;
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li:hover, .acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li:focus {
  background-color: #ffffff;
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li.slick-active::before {
  animation: slider-dots-fillBar 5s linear forwards;
}
.acdc.__top section.title .hero .hero_front .hero_title .slider_container_dots .slider-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.acdc.__top section.title .hero .hero_front .slider_container {
  position: relative;
  max-width: 400px;
  z-index: 2;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .slider_container {
    max-width: 250px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.acdc.__top section.title .hero .hero_front .slider_container div {
  transition: none;
  width: 98%;
}
.acdc.__top section.title .hero .hero_front .slider_container .slider_item {
  text-align: center;
  margin: 0 auto;
}
.acdc.__top section.title .hero .hero_front .slider_container .slider_item:last-child {
  position: relative;
}
.acdc.__top section.title .hero .hero_front .slider_container img {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .slider_container img {
    width: auto;
  }
}
.acdc.__top section.title .hero .hero_front .slider_container .image_caption {
  font-size: 1em;
  font-weight: bold;
  text-align: left;
  margin-top: -10px;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.title .hero .hero_front .slider_container .image_caption {
    font-size: 14px;
  }
}
.acdc.__top section.outline {
  text-align: left;
  flex-direction: column;
  position: relative;
  width: 100%;
  font-size: 1em;
  font-weight: normal;
}
.acdc.__top section.outline .outline_title {
  width: 100%;
  max-width: 568px;
  margin-bottom: 60px;
}
.acdc.__top section.outline .outline_title .flex-2 {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_image {
  width: 40%;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.outline .outline_title .flex-2 > .outline_title_image {
    width: 100%;
  }
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text {
  width: 58%;
  margin: 1em 0;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.outline .outline_title .flex-2 > .outline_title_text {
    width: 100%;
  }
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group {
  margin: 2.5em 0 0.5em;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button_item {
  justify-content: end;
  width: auto;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button {
  padding: 0.5em 45px 0.5em 40px;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button.__secondary {
  border-radius: 2em;
  font-weight: bold;
  border: none;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button.__secondary:hover {
  background-color: #ffffff;
  color: #1c6ecd;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button.__right_arrow em:after {
  position: absolute;
  right: 10px;
}
.acdc.__top section.outline .outline_title .flex-2 > .outline_title_text .button_group .button.__right_arrow:hover em:after {
  color: #484741;
}
.acdc.__top section.outline .outline_list {
  width: 100%;
  max-width: 1000px;
}
.acdc.__top section.outline .outline_list .flex-3 {
  align-items: stretch;
  justify-content: space-between;
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item {
  box-sizing: border-box;
  border-radius: 0.5em;
  padding: 1em 1.5em;
  margin: 0 0 1.25em;
  background-color: #ffffff;
  align-items: center;
  width: calc(33.3333333333% - 0.8em);
}
@media screen and (max-width: 864px) {
  .acdc.__top section.outline .outline_list .flex-3 .flex_item {
    width: 100%;
  }
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item .outline_list_parts {
  display: flex;
  align-items: center;
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item dl {
  margin: 0 0 0 1em;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item dl dt sub, .acdc.__top section.outline .outline_list .flex-3 .flex_item dl dd sub {
  position: relative;
  font-size: 10px;
  vertical-align: bottom;
  top: -0.1em;
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item dl dt {
  font-size: 1.25em;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.outline .outline_list .flex-3 .flex_item dl dt {
    margin-bottom: 0.5em;
  }
}
.acdc.__top section.outline .outline_list .flex-3 .flex_item dl dd {
  font-size: 1em;
  line-height: 1.375;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.outline .outline_list .flex-3 .flex_item dl dd sub {
    top: -0.2em;
  }
}
.acdc.__top section.outline .outline_list .asterisk-list {
  max-width: 800px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.5;
}
.acdc.__top section.case {
  text-align: left;
  flex-direction: column;
  position: relative;
  width: 100%;
  font-size: 1em;
  font-weight: normal;
}
.acdc.__top section.case .case_container {
  width: 100%;
  max-width: 1000px;
}
.acdc.__top section.case .case_container .flex-2 {
  background-color: #f5f5f5;
  border-radius: 0.5em;
}
.acdc.__top section.case .case_container .flex-2 > div:nth-of-type(2n+1) {
  width: 40%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.case .case_container .flex-2 > div:nth-of-type(2n+1) {
    width: 100%;
  }
}
.acdc.__top section.case .case_container .flex-2 > div:nth-of-type(2n) {
  width: 60%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.case .case_container .flex-2 > div:nth-of-type(2n) {
    width: 100%;
  }
}
.acdc.__top section.case .case_container .flex-2 .case_container_image {
  border-radius: 0.5em 0 0 0.5em;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.case .case_container .flex-2 .case_container_image {
    border-radius: 0.5em 0.5em 0 0;
  }
}
.acdc.__top section.case .case_container .flex-2 .case_container_image img {
  width: auto;
  height: 100%;
  border-radius: 0.5em 0 0 0.5em;
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.case .case_container .flex-2 .case_container_image img {
    border-radius: 0.5em 0.5em 0 0;
  }
}
.acdc.__top section.case .case_container .flex-2 .case_container_text {
  padding: 1.5em 2em;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.case .case_container .flex-2 .case_container_text {
    padding: 1.25em;
  }
}
.acdc.__top section.case .case_container .flex-2 .case_container_text .case_container_text_section.noheading {
  font-size: 14px;
  line-height: 1.35;
}
.acdc.__top section.case .case_container .flex-2 .case_container_text .case_container_text_section {
  font-size: 1em;
  line-height: 1.3;
  margin-bottom: 1em;
}
.acdc.__top section.movie {
  position: relative;
  padding: 0;
  width: 100%;
  font-size: 1em;
  text-align: left;
  flex-direction: column;
  font-weight: normal;
}
.acdc.__top section.movie .movie_container {
  width: 100%;
}
.acdc.__top section.movie .movie_container h2 {
  margin-bottom: 0;
  padding: 60px 0 50px;
  color: #ffffff;
  background-color: #262520;
}
.acdc.__top section.movie .movie_container .movie_container_main {
  width: 100%;
  background-color: #262520;
}
.acdc.__top section.movie .movie_container .movie_container_main video {
  width: 100%;
  height: auto;
  max-width: 1280px;
  max-height: 600px;
  margin: 0 auto;
}
.acdc.__top section.solve {
  background-color: #F5F5F5;
}
.acdc.__top section.solve .solve_container {
  width: 100%;
  max-width: 800px;
}
.acdc.__top section.solve .solve_container .solve_container_item:nth-of-type(2n) .flex-2 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item:nth-of-type(2n) .flex-2 {
    flex-direction: row;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item:nth-of-type(2n+1) .flex-2 {
  flex-direction: row;
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 {
  background-color: #ffffff;
  margin-bottom: 1.5em;
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 > div:nth-of-type(2n+1) {
  width: 68%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item .flex-2 > div:nth-of-type(2n+1) {
    width: 100%;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 > div:nth-of-type(2n) {
  width: 32%;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item .flex-2 > div:nth-of-type(2n) {
    width: 100%;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .text {
  padding: 1.5em;
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .text dl dt {
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item .flex-2 .text dl dt {
    font-size: 1.25em;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .text dl dd {
  font-size: 1em;
  line-height: 1.5;
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image {
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image img {
  object-fit: cover;
  height: 100%;
  width: auto;
  object-position: center center;
  opacity: 1;
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image img {
    height: auto;
    width: 100%;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image img::after {
  content: "";
}
.acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image::after {
  display: block;
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: "Material Symbols";
  font-size: 1.5em;
  line-height: 1;
  color: #ffffff;
  content: "";
}
@media screen and (max-width: 864px) {
  .acdc.__top section.solve .solve_container .solve_container_item .flex-2 .image::after {
    bottom: 20px;
  }
}
.acdc.__top section.solve .solve_container .solve_container_item a {
  text-decoration: none;
  cursor: pointer;
}
.acdc.__top section.solve .solve_container .solve_container_item a:hover .image {
  background-color: rgb(0, 0, 0);
}
.acdc.__top section.solve .solve_container .solve_container_item a:hover .image img {
  transform: scale(1.05);
  opacity: 0.8;
}
.acdc.__top section.solve .solve_container .solve_container_item a:hover .image::after {
  content: "open_in_new";
}
.acdc.__product section {
  display: block;
}
.acdc.__product section.product {
  width: 100%;
}
.acdc.__product section.product .product_list {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 987px) and (min-width: 680px) {
  .acdc.__product section.product .product_list {
    max-width: 640px;
  }
}
.acdc.__product section.product .product_list .form-list {
  display: inline-block;
}
.acdc.__product section.product .product_list .form-list ul {
  margin: 0 0 2em;
}
.acdc.__product section.product .product_list .form-list ul li.form-list_item {
  position: relative;
  padding: 0.5em 1em;
  margin-bottom: 0;
  background-color: #d9d9d9;
  border-radius: 0.5em;
  font-size: 1em;
  font-weight: bold;
}
.acdc.__product section.product .product_list .form-list ul input[type=checkbox] + label {
  padding-left: 2em;
}
.acdc.__product section.product .product_list .form-list ul input[type=checkbox] + label:before {
  content: "";
  width: 1em;
  height: 1em;
  background-color: #ffffff;
  border-radius: 0.2em;
  line-height: 1;
}
.acdc.__product section.product .product_list .form-list ul input[type=checkbox]:checked + label:before {
  content: "check";
  color: #ffffff;
  background-color: #484741;
}
.acdc.__product section.product .product_item .flex-4 {
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 700px) {
  .acdc.__product section.product .product_item .flex-4 {
    justify-content: space-between;
    gap: 16px;
  }
}
.acdc.__product section.product .product_item .flex-4 li {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
  visibility: hidden;
  width: 200px;
  margin: 0 0 20px;
  box-sizing: border-box;
}
.acdc.__product section.product .product_item .flex-4 li.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
@media (max-width: 700px) {
  .acdc.__product section.product .product_item .flex-4 li {
    width: calc(50% - 8px);
  }
}
.acdc.__product section.product .product_item .flex-4 li .item {
  width: 100%;
}
.acdc.__product section.product .product_item .flex-4 li .item a {
  display: inline-block;
  text-decoration: none;
}
.acdc.__product section.product .product_item .flex-4 li .item a .item_box {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.5em;
  padding: 30px 25px 15px;
  font-weight: bold;
  text-align: center;
}
.acdc.__product section.product .product_item .flex-4 li .item a .item_box > .item_tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 10px;
  color: #262520;
  background-color: #d9d9d9;
  border-radius: 0 0.5em 0 0;
}
.acdc.__product section.product .product_item .flex-4 li .item a .item_box > .item_tag.centrifugal {
  color: #ffffff;
  background-color: #262520;
}
.acdc.__product section.product .product_item .flex-4 li .item a:hover {
  text-decoration: underline;
}
.acdc.__product section.product .product_item .flex-4 li .item a:hover .item_box {
  background-color: rgba(28, 110, 205, 0.2);
}
.acdc.__product section.product .product_item .flex-4 li .item .item_name {
  line-height: 1.2;
  font-weight: bold;
  margin-top: 5px;
  padding: 0.25em 0;
}
.acdc.__product section.product .button_group .button_item {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: right;
  font-weight: bold;
}
.acdc.__product section.product .button_group .button_item .button.__secondary {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  border: 3px solid #000000;
  border-radius: 50px 50px;
  text-decoration: none;
  padding: 6px 59px;
}
.acdc.__product section.product .button_group .button_item .button.__secondary:hover {
  background-color: #ffffff;
  color: #262520;
  border: 3px solid #262520;
}
.acdc.__product section.product .button_group .button_item .button.__blank {
  margin-right: 0;
}
.acdc.__product section.product .button_group .button_item .button.__blank em {
  margin-right: 9px;
}
.acdc.__product section.product .button_group .button_item .button.__blank em:after {
  position: absolute;
  top: 50%;
  right: 1em;
  font-size: 18px;
  font-weight: 700;
  color: #cccccc;
  transform: translateY(-50%);
}
.acdc.__product section.product .button_group .button_item .button.__blank:hover em:after {
  color: #262520;
}
.acdc.__applications section {
  display: block;
}
.acdc.__applications section.applications {
  flex-direction: column;
  width: 100%;
}
.acdc.__applications section.applications .applications_list {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.acdc.__applications section.applications .applications_list details {
  position: relative;
  margin-bottom: 1em;
  border-radius: 0.5em;
  overflow: hidden;
  transition: none;
  background-color: #ffffff;
}
.acdc.__applications section.applications .applications_list details summary {
  position: relative;
  list-style: none;
  font-size: 1.25em;
  font-weight: bold;
  padding: 0.75em 1.25em 0.75em;
  cursor: pointer;
  background-color: transparent;
  border-radius: 0.5em;
  transition: none;
  z-index: 3;
}
.acdc.__applications section.applications .applications_list details summary::-webkit-details-marker {
  display: none;
}
.acdc.__applications section.applications .applications_list details summary::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 4px solid #000000;
  border-left: 4px solid #000000;
  transform: translateX(-100%) translateY(-50%) rotate(-135deg);
  content: "";
  z-index: 4;
}
.acdc.__applications section.applications .applications_list details .details_inner {
  position: relative;
  background-color: transparent;
  z-index: 2;
}
.acdc.__applications section.applications .applications_list details .details_inner dl {
  width: 80%;
  margin: 0;
  padding: 0 1.5em 0.75em;
  list-style: none;
  z-index: 2;
}
@media screen and (max-width: 864px) {
  .acdc.__applications section.applications .applications_list details .details_inner dl {
    width: 100%;
  }
}
.acdc.__applications section.applications .applications_list details .details_inner dl dt {
  font-size: 1em;
  margin-bottom: 2em;
  color: #484741;
}
.acdc.__applications section.applications .applications_list details .details_inner dl dd {
  margin-bottom: 0;
  color: #262520;
}
.acdc.__applications section.applications .applications_list details .details_inner dl dd .margin_btm_4 {
  margin-bottom: 0.5em;
}
.acdc.__applications section.applications .applications_list details[open] summary::after {
  top: calc(50% + 8px);
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: translateX(-100%) translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 864px) {
  .acdc.__applications section.applications .applications_list details[open] summary::after {
    border-top: 4px solid #262520;
    border-left: 4px solid #262520;
  }
}
.acdc.__applications section.applications .applications_list details[open] + .asterisk-list {
  display: block;
}
.acdc.__applications section.applications .applications_list .asterisk-remarks {
  font-size: 0.9em;
}
.acdc.__applications section.applications .applications_list .asterisk-list {
  display: none;
}
.acdc.__applications section.applications .applications_list .background-image {
  position: absolute;
  width: 40%;
  top: calc(50% - 30px);
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 0 0.5em 0 0.5em;
}
@media screen and (max-width: 864px) {
  .acdc.__applications section.applications .applications_list .background-image {
    position: relative;
    width: 100%;
    top: unset;
    right: unset;
    transform: unset;
    border-radius: 0 0 0.5em 0.5em;
  }
}
.acdc.__applications section.applications .applications_list .background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  border-radius: 0 0.5em 0 0.5em;
}
@media screen and (max-width: 864px) {
  .acdc.__applications section.applications .applications_list .background-image::after {
    padding-top: 66.6667%;
    background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 20%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 0.5em 0.5em;
  }
}
.acdc.__applications section.applications .applications_list .background-image img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  aspect-ratio: 30/26;
  object-position: center center;
  border-radius: 0 0.5em 0 0.5em;
}
@media screen and (max-width: 864px) {
  .acdc.__applications section.applications .applications_list .background-image img {
    aspect-ratio: 3/2;
    object-position: center center;
    border-radius: 0 0 0.5em 0.5em;
  }
}

@media (prefers-color-scheme: dark) {
  section.main .main-list__text {
    background-image: none;
  }
  section.main .main-list__text .text_video {
    margin: 2em 0 !important;
    border-radius: 1em;
    overflow: hidden;
  }
}

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