@charset "UTF-8";
/*
Basics
*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
Brakepoint
*/
/*
SASS Mixin
*/
/*
Reset
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
Fonts
*/
@font-face {
  font-family: "gotham";
  src: url("/_theme/font/gotham/GothamSSm-Medium_Web.woff2") format("woff2"), url("/_theme/font/gotham/GothamSSm-Medium_Web.woff") format("woff");
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YuGothic_Family";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
}
@font-face {
  font-family: "YuGothic_Family";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}
body.__is_web {
  font-family: "Open Sans", "YuGothic_Family", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body.__is_app {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: normal;
}

/*
Body
*/
body {
  line-height: 1.8;
  background-color: var(--color-background);
  color: var(--color-text);
}
@media (max-width: 640px) {
  body {
    font-size: var(--font-size-sp-base);
  }
}
@media (min-width: 641px) {
  body {
    font-size: var(--font-size-pc-base);
  }
}

/*
Misc
*/
em {
  font-style: normal;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*
main
*/
.main {
  width: 100%;
}

/*
Section
*/
.section {
  width: 100%;
}

/*
view
*/
.view {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*
404 Page
*/
.theme-404 .page-not-found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: var(--color-text-secondary);
}
.theme-404 .footer {
  margin: auto 0 0 0;
}

/*
Globals
*/
/*
header
*/
body.__is_app .header {
  display: none;
}
@media (max-width: 640px) {
  body.__is_web {
    padding-top: var(--size-header-sp);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web {
    padding-top: var(--size-header-tb);
  }
}
@media (min-width: 1081px) {
  body.__is_web {
    padding-top: var(--size-header-pc);
  }
}
body.__is_web .header {
  z-index: var(--z-index-header);
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: height 0.2s linear, -webkit-transform 0.3s;
  transition: height 0.2s linear, -webkit-transform 0.3s;
  transition: transform 0.3s, height 0.2s linear;
  transition: transform 0.3s, height 0.2s linear, -webkit-transform 0.3s;
}
@media (max-width: 640px) {
  body.__is_web .header {
    background-color: var(--color-header-sp);
    position: fixed;
    height: var(--size-header-sp);
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web .header {
    background-color: var(--color-header-pc);
    position: absolute;
    height: var(--size-header-tb);
  }
}
@media (min-width: 1081px) {
  body.__is_web .header {
    background-color: var(--color-header-pc);
    position: absolute;
    height: var(--size-header-pc);
  }
}
body.__is_web .header .view {
  height: 100%;
}
body.__is_web .header .view .layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  body.__is_web .header .view .layout {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 641px) {
  body.__is_web .header .view .layout {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 640px) {
  body.__is_web .header .view .layout .image--balmuda {
    width: 113px;
    height: 16px;
  }
}
@media (min-width: 641px) {
  body.__is_web .header .view .layout .image--balmuda {
    width: 128px;
    height: 17.8px;
  }
}
@media (max-width: 640px) {
  body.__is_web .header .view .layout form.productguide-lang-switcher {
    position: absolute;
    right: 0;
  }
}
body.__is_web .header .view .layout form.productguide-lang-switcher {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23fff'><path d='M480-100q-78.15 0-147.5-29.96t-120.96-81.58q-51.62-51.61-81.58-120.96T100-480q0-78.77 29.96-147.81t81.58-120.65q51.61-51.62 120.96-81.58T480-860q78.77 0 147.81 29.96t120.65 81.58q51.62 51.61 81.58 120.65T860-480q0 78.15-29.96 147.5t-81.58 120.96q-51.61 51.62-120.65 81.58T480-100Zm0-60.85q30.62-40.61 51.54-81.92 20.92-41.31 34.08-90.31H394.38q13.93 50.54 34.47 91.85 20.53 41.31 51.15 80.38Zm-77.46-11q-23-33-41.31-75.03-18.31-42.04-28.46-86.2H197.08q31.69 62.31 85 104.7 53.31 42.38 120.46 56.53Zm154.92 0q67.15-14.15 120.46-56.53 53.31-42.39 85-104.7H627.23q-12.08 44.54-30.39 86.58-18.3 42.04-39.38 74.65ZM171.92-393.08h148.7q-3.77-22.3-5.47-43.73-1.69-21.42-1.69-43.19 0-21.77 1.69-43.19 1.7-21.43 5.47-43.73h-148.7q-5.77 20.38-8.84 42.38-3.08 22-3.08 44.54t3.08 44.54q3.07 22 8.84 42.38Zm208.69 0h198.78q3.76-22.3 5.46-43.34 1.69-21.04 1.69-43.58t-1.69-43.58q-1.7-21.04-5.46-43.34H380.61q-3.76 22.3-5.46 43.34-1.69 21.04-1.69 43.58t1.69 43.58q1.7 21.04 5.46 43.34Zm258.77 0h148.7q5.77-20.38 8.84-42.38 3.08-22 3.08-44.54t-3.08-44.54q-3.07-22-8.84-42.38h-148.7q3.77 22.3 5.47 43.73 1.69 21.42 1.69 43.19 0 21.77-1.69 43.19-1.7 21.43-5.47 43.73Zm-12.15-233.84h135.69Q730.85-690 678.5-731.62q-52.35-41.61-121.04-56.92 23 34.92 40.92 76.39 17.93 41.46 28.85 85.23Zm-232.85 0h171.24q-13.93-50.16-35.04-92.43-21.12-42.27-50.58-79.8-29.46 37.53-50.58 79.8-21.11 42.27-35.04 92.43Zm-197.3 0h135.69q10.92-43.77 28.85-85.23 17.92-41.47 40.92-76.39-69.08 15.31-121.23 57.12-52.16 41.8-84.23 104.5Z'/></svg>");
  background-repeat: no-repeat;
  background-position: left 0 center;
  background-size: 17px auto;
}
body.__is_web .header .view .layout form.productguide-lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  background-color: transparent;
  font: inherit;
  color: inherit;
  line-height: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  color: var(--color-white);
  height: 36px;
  line-height: 36px;
  padding: 0 0 0px 25px;
}
@media (max-width: 640px) {
  body.__is_web .header .view .layout form.productguide-lang-switcher select {
    font-size: 13px;
  }
}
@media (min-width: 641px) {
  body.__is_web .header .view .layout form.productguide-lang-switcher select {
    font-size: 14px;
  }
}

/*
footer
*/
body.__is_app .footer {
  display: none;
}
body.__is_web {
  min-height: 100vh;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.__is_web .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
body.__is_web .footer {
  /*
  Brakepoint
  */
}
body.__is_web .footer .footer-about {
  padding: 36px 0;
  border-top: 1px solid #ccc;
  font-size: 14px;
  line-height: 1.7;
}
body.__is_web .footer .footer-about .view .layout .name {
  font-weight: bold;
}
body.__is_web .footer .footer-legals {
  background-color: var(--color-footer-background);
  color: var(--color-footer-object-default);
}
@media (max-width: 640px) {
  body.__is_web .footer .footer-legals {
    padding: 40px 0;
    font-size: 10px;
    line-height: 2.2;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web .footer .footer-legals {
    padding: 35px 0;
    font-size: 12px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer .footer-legals {
    padding: 24px 0;
    font-size: 12px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer .footer-legals .view .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 640px) {
  body.__is_web .footer .footer-legals .view .layout .legal-links {
    margin-bottom: 18px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web .footer .footer-legals .view .layout .legal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer .footer-legals .view .layout .legal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
body.__is_web .footer .footer-legals .view .layout .legal-links li {
  list-style: none;
}
body.__is_web .footer .footer-legals .view .layout .legal-links li a {
  color: var(--color-footer-object-default);
}
@media (hover: hover) {
  body.__is_web .footer .footer-legals .view .layout .legal-links li a {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
    -webkit-transition: 0.2s -webkit-text-decoration;
    transition: 0.2s -webkit-text-decoration;
    transition: 0.2s text-decoration;
    transition: 0.2s text-decoration, 0.2s -webkit-text-decoration;
  }
  body.__is_web .footer .footer-legals .view .layout .legal-links li a:hover {
    color: var(--color-footer-object-active);
    text-decoration: underline;
  }
}
html,
body {
  height: 100%;
}

/*
Pages
*/
@media (max-width: 640px) {
  body.theme-archive .section .view .the-content, body.theme-post .section .view .the-content {
    padding: 40px 0;
  }
}
@media (min-width: 641px) {
  body.theme-archive .section .view .the-content, body.theme-post .section .view .the-content {
    padding: 50px 0;
  }
}
body.theme-archive .section .view .the-content .title-block .archive-title, body.theme-post .section .view .the-content .title-block .archive-title {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  body.theme-archive .section .view .the-content .title-block .archive-title, body.theme-post .section .view .the-content .title-block .archive-title {
    font-size: var(--font-size-sp-header-1);
  }
}
@media (min-width: 641px) {
  body.theme-archive .section .view .the-content .title-block .archive-title, body.theme-post .section .view .the-content .title-block .archive-title {
    font-size: var(--font-size-pc-header-1);
  }
}
body.theme-archive .section .view .the-content .title-block .post-type, body.theme-post .section .view .the-content .title-block .post-type {
  margin-bottom: 10px;
  font-weight: bold;
}
body.theme-archive .section .view .the-content .title-block .post-title, body.theme-post .section .view .the-content .title-block .post-title {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  body.theme-archive .section .view .the-content .title-block .post-title, body.theme-post .section .view .the-content .title-block .post-title {
    font-size: var(--font-size-sp-header-2);
  }
}
@media (min-width: 641px) {
  body.theme-archive .section .view .the-content .title-block .post-title, body.theme-post .section .view .the-content .title-block .post-title {
    font-size: var(--font-size-pc-header-2);
  }
}
body.theme-archive .section .view .the-content .post-list .post, body.theme-post .section .view .the-content .post-list .post {
  list-style: none;
  line-height: 1.5;
}
body.theme-archive .section .view .the-content .post-list .post a, body.theme-post .section .view .the-content .post-list .post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  text-decoration: none;
  font-weight: normal;
}
@media (min-width: 641px) {
  body.theme-archive .section .view .the-content .post-list .post a, body.theme-post .section .view .the-content .post-list .post a {
    border-bottom: 1px solid var(--color-border);
  }
}
body.theme-archive .section .view .the-content .post-list .post a::after, body.theme-post .section .view .the-content .post-list .post a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23222222"/></svg>');
  background-size: contain;
  width: 7px;
  min-width: 7px;
  height: 12px;
}
body.theme-archive .section .view .the-content .post-list .post a .post-info, body.theme-post .section .view .the-content .post-list .post a .post-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
}
body.theme-archive .section .view .the-content .post-list .post a .post-info .post-date, body.theme-post .section .view .the-content .post-list .post a .post-info .post-date {
  display: block;
  font-weight: bold;
  color: var(--color-text-secondary);
  margin-bottom: 0.3em;
}
body.theme-archive .section .view .the-content .post-list .post a .post-info .post-title, body.theme-post .section .view .the-content .post-list .post a .post-info .post-title {
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
body.theme-archive .section .view .the-content .paginate, body.theme-post .section .view .the-content .paginate {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
body.theme-archive .section .view .the-content .paginate .page__prev a,
body.theme-archive .section .view .the-content .paginate .page__next a, body.theme-post .section .view .the-content .paginate .page__prev a,
body.theme-post .section .view .the-content .paginate .page__next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-button-secondary);
}
body.theme-archive .section .view .the-content .paginate .page__prev a::after,
body.theme-archive .section .view .the-content .paginate .page__next a::after, body.theme-post .section .view .the-content .paginate .page__prev a::after,
body.theme-post .section .view .the-content .paginate .page__next a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23222222"/></svg>');
  background-size: contain;
  width: 7px;
  min-width: 7px;
  height: 12px;
}
@media (hover: hover) {
  body.theme-archive .section .view .the-content .paginate .page__prev a,
  body.theme-archive .section .view .the-content .paginate .page__next a, body.theme-post .section .view .the-content .paginate .page__prev a,
  body.theme-post .section .view .the-content .paginate .page__next a {
    -webkit-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  body.theme-archive .section .view .the-content .paginate .page__prev a:hover,
  body.theme-archive .section .view .the-content .paginate .page__next a:hover, body.theme-post .section .view .the-content .paginate .page__prev a:hover,
  body.theme-post .section .view .the-content .paginate .page__next a:hover {
    background-color: var(--color-button-primary);
  }
  body.theme-archive .section .view .the-content .paginate .page__prev a:hover::after,
  body.theme-archive .section .view .the-content .paginate .page__next a:hover::after, body.theme-post .section .view .the-content .paginate .page__prev a:hover::after,
  body.theme-post .section .view .the-content .paginate .page__next a:hover::after {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23ffffff"/></svg>');
    background-size: contain;
  }
}
body.theme-archive .section .view .the-content .paginate .page__prev a::after, body.theme-post .section .view .the-content .paginate .page__prev a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.the-content {
  max-width: 700px;
  overflow-wrap: anywhere;
  word-break: normal;
}
.the-content .page-title {
  font-weight: bold;
}
@media (max-width: 640px) {
  .the-content .page-title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
@media (min-width: 641px) {
  .the-content .page-title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}
.the-content .post-date {
  color: var(--color-text-secondary);
}
@media (max-width: 640px) {
  .the-content .post-date {
    margin-bottom: 20px;
  }
}
@media (min-width: 641px) {
  .the-content .post-date {
    margin-bottom: 30px;
  }
}
.the-content a {
  font-weight: bold;
  text-decoration: underline;
}
.the-content > p {
  margin-bottom: 20px;
}
.the-content > p > img {
  margin-top: -0.3em;
}
.the-content > .wp-block-list li {
  margin: 0 auto 0 1.2em;
}
.the-content > .wp-block-list li:not(:last-child) {
  margin-bottom: 0.2em;
}
.the-content h2.wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  margin: 52px auto 12px 0;
}
.the-content h2.wp-block-heading::before {
  content: "";
  width: 4px;
  background-color: var(--color-black);
}
.the-content h3.wp-block-heading {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px auto 10px 0;
}
.the-content .wp-block-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
.the-content .wp-block-image img {
  width: 100%;
  height: auto;
}
.the-content .wp-block-video {
  overflow: hidden;
  border-radius: 10px;
}
.the-content .wp-block-theme-alert-box + .wp-block-heading {
  margin-top: 40px;
}
.the-content .wp-block-table table {
  table-layout: fixed;
  border-collapse: collapse;
}
.the-content .wp-block-table table tr th:first-of-type,
.the-content .wp-block-table table tr td:first-of-type {
  width: 120px;
  padding-right: 10px;
}
.the-content .wp-block-table table tbody tr td {
  border: none;
  border-top: 1px solid #ccc;
  padding: 10px 0 16px;
}
.the-content .wp-block-table table thead tr th,
.the-content .wp-block-table table thead tr td,
.the-content .wp-block-table table tfoot tr th,
.the-content .wp-block-table table tfoot tr td {
  border: none;
  padding: 10px 0 16px;
  text-align: left;
  font-weight: bold;
}
.the-content .wp-block-table table thead {
  border-bottom: 1px solid var(--color-black);
}
.the-content .wp-block-table table tfoot {
  border-top: 1px solid var(--color-black);
}

.the-content {
  visibility: hidden;
}
.the-content.--visible {
  visibility: visible;
}
.the-content .content-toc {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0;
}
.the-content .content-toc:has(a) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.the-content .content-toc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5625;
  text-decoration: none;
  color: #4e4e4e;
  min-height: 55px;
}
.the-content .content-toc.--default {
  gap: 10px;
}
.the-content .content-toc.--default a {
  padding: 15px 20px;
  background-color: #f0f0f0;
  border: 1px solid #e2e2e2;
  border-radius: 9999px;
}
.the-content .content-toc.--default a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25"><path d="M12.5,0C5.6,0,0,5.6,0,12.5s5.6,12.5,12.5,12.5,12.5-5.6,12.5-12.5S19.4,0,12.5,0ZM17.94,10.9l-5.63,6.75-5.63-6.75c-.24-.29-.2-.72.09-.96.29-.24.72-.2.96.09l4.58,5.5,4.58-5.5c.24-.29.67-.33.96-.09.29.24.33.67.09.96Z" fill="%23949494"/></svg>');
  background-size: contain;
  width: 25px;
  min-width: 25px;
  height: 25px;
}
.the-content .content-toc.--simple a {
  padding: 15px 10px 15px 5px;
  border-bottom: 1px solid #e2e2e2;
}
.the-content .content-toc.--simple a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="23" height="23" rx="11.5" fill="%23F0F0F0"/><path d="M16.85 9.99343C17.0788 9.7366 17.0417 9.35439 16.7672 9.14033C16.4927 8.92631 16.0842 8.96098 15.8555 9.21778L11.5 14.1082L7.14454 9.21778C6.91577 8.96098 6.50726 8.92631 6.23276 9.14033C5.9583 9.35439 5.92124 9.7366 6.14999 9.99343L11.5 16L16.85 9.99343Z" fill="%23646464"/></svg>');
  background-size: contain;
  width: 23px;
  min-width: 23px;
  height: 23px;
}

@media (max-width: 640px) {
  body.theme-page .main .section--post,
  body.theme-post .main .section--post {
    padding: 40px 0 60px 0;
  }
}
@media (min-width: 641px) {
  body.theme-page .main .section--post,
  body.theme-post .main .section--post {
    padding: 50px 0 80px 0;
  }
}
body.theme-page .main .section--post .view .the-content .title-block .post-type,
body.theme-post .main .section--post .view .the-content .title-block .post-type {
  text-decoration: underline;
}
body.theme-page .main.main--product-guide {
  /*
  Brakepoint
  */
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide {
    position: relative;
  }
}
body.theme-page .main.main--product-guide > .view {
  width: 100%;
  height: 100%;
}
body.theme-page .main.main--product-guide > .view .layout {
  height: 100%;
  display: -ms-grid;
  display: grid;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout {
    position: relative;
    -ms-grid-columns: 42% 0 58%;
    grid-template-columns: 42% 58%;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout {
    position: relative;
    -ms-grid-columns: 292px 0 318px 0 1fr;
    grid-template-columns: 292px 318px 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview {
  background-color: #f0f0f0;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview {
    padding-top: 58px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview {
    padding: 60px 25px 0;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview {
    padding: 72px 10px 80px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview {
    max-width: 246px;
    margin: 0 auto;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .section-label {
  font-family: "gotham", sans-serif;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .section-label {
    font-size: 20px;
    letter-spacing: 0.7px;
    width: 85vw;
    max-width: 342px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .section-label {
    font-size: 14px;
    letter-spacing: 0.3px;
    width: 100%;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .section-label {
    font-size: 16px;
    letter-spacing: 0.3px;
    width: 100%;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .section-label::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 342px;
  height: 1px;
  background-color: #c0c2c5;
  margin: 10px auto 0;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-name {
  font-family: "gotham", sans-serif;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-name {
    width: 85vw;
    max-width: 342px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-name {
    width: 100%;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-name {
    width: 100%;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.07em;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-labels .code {
  padding: 3px 8px;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-labels .label {
  padding: 3px 8px;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-labels:has(.label) .code {
  border-right: 0.5px solid var(--color-black);
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-labels:not(:has(.label)) .code {
  border: 1px solid var(--color-black);
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-visual {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-visual {
    width: 85vw;
    max-width: 290px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-visual .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 85vw;
  margin: 0 auto 40px;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1.5px solid transparent;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 342px;
  border-radius: 999px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button {
    height: 60px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button {
    height: 48px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button {
    height: 48px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button img {
  aspect-ratio: 46/58;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button img {
    width: 46px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button img {
    width: 32px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button img {
    width: 32px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button span {
    font-size: min(4.6vw, 16px);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button span {
    font-size: min(2vw, 14px);
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button span {
    font-size: min(2vw, 14px);
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button.show_in_app {
  display: none;
}
body.theme-page .main.main--product-guide > .view .layout .section--overview .overview .product-guide-buttons .product-guide-button.show_in_browser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc {
    padding-bottom: 60px;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc:not(:has(*)) {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc {
    padding: 0 0 80px 0;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc {
    border-right: 1px solid var(--color-border);
    padding: 0 0 80px 0;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents {
  width: 100%;
  margin: 0 auto;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items {
    margin-top: 16px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  letter-spacing: 0.7px;
  line-height: 1.4;
  color: var(--color-text);
  border-radius: 10px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a {
    padding: 10px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a {
    padding: 10px 20px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a {
    padding: 10px 20px;
  }
}
@media (min-width: 641px) and (hover: hover) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a {
    -webkit-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a:hover {
    background-color: #f4f4f4;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23222222"/></svg>');
  background-size: contain;
  width: 7px;
  min-width: 7px;
  height: 12px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item a::after {
    margin-left: 14px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents .items .page_item.current_page_item a {
  background-color: var(--color-toc-background);
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered {
  background-color: #f9f9f9;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered {
    padding: 50px calc(8vw - 10px);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered {
    padding: 40px 20px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered {
    padding: 60px 20px 40px 20px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol {
  list-style: none;
  counter-reset: list_count;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a {
  width: 100%;
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.4;
  color: var(--color-text);
  border-radius: 10px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a {
    font-size: 18px;
    letter-spacing: 0.7px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
@media (hover: hover) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a {
    -webkit-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a:hover {
    background-color: #f4f4f4;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a.current_page_item {
  background-color: var(--color-toc-background);
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a em {
  padding-right: 0.8em;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a::before {
  counter-increment: list_count;
  content: counter(list_count);
  width: 2.0625em;
  min-width: 2.0625em;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23222222"/></svg>');
  background-size: contain;
  width: 7px;
  min-width: 7px;
  height: 12px;
  margin-left: auto;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--numbered ol li a::after {
    padding-left: 14px;
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain {
    padding: 40px calc(8vw - 10px);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain {
    padding: 30px 20px 0;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain {
    padding: 25px 20px 0;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul {
  list-style: none;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.4;
  color: var(--color-text);
  border-radius: 10px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a {
    padding: 12px 10px;
    font-size: 16px;
    letter-spacing: 0.7px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a {
    padding: 12px 10px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a {
    padding: 12px 10px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a[target=_blank]::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.86138 1.91267C2.89976 1.90886 2.96223 1.90834 3.00199 1.90778C3.78742 1.89659 4.57431 1.90654 5.36018 1.90412L6.24482 1.90303C6.87799 1.90476 7.3946 1.90472 7.5039 2.67215C7.56852 3.0559 7.28832 3.52328 6.88285 3.57451C6.49684 3.62328 6.08706 3.60539 5.69324 3.60528L3.76757 3.60776C3.74046 3.91987 3.75177 4.39086 3.75179 4.71295L3.75268 6.58365L3.74748 12.8732C4.65229 12.8589 5.55724 12.8547 6.46215 12.8608L10.7137 12.8608C11.4646 12.8609 12.285 12.8779 13.0289 12.8557C12.9914 12.0306 13.0374 11.1768 13.0185 10.3477C13.0095 9.95103 12.9976 9.49843 13.0681 9.112C13.0986 8.94418 13.3775 8.72226 13.5321 8.64897C14.0878 8.49617 14.6275 8.72081 14.6845 9.34851C14.7135 9.66834 14.7057 9.97645 14.7059 10.297L14.7068 11.7118L14.7069 13.0104C14.7068 13.4187 14.7677 13.9617 14.5085 14.2879C14.22 14.651 13.695 14.5874 13.2836 14.586L12.2148 14.5833L8.7782 14.5824L4.75634 14.5822L3.52685 14.5837C3.15865 14.5854 2.63487 14.6512 2.34492 14.3999C1.96379 14.0696 2.02695 13.4975 2.02717 13.0442L2.02656 11.9349L2.02854 8.22528L2.02674 4.58904L2.02146 3.46208C2.01877 2.92237 1.9321 2.2584 2.52985 1.98115C2.64374 1.92833 2.73932 1.92287 2.86138 1.91267Z" fill="%23949494"/><path d="M10.0719 0.991433C10.3783 0.977396 10.7408 0.983949 11.05 0.983955L12.7105 0.984969L13.9922 0.98481C14.2478 0.984932 14.4926 0.984993 14.7482 0.995182C15.1928 1.01291 15.56 1.31276 15.6106 1.76474C15.6412 2.03733 15.6291 2.32586 15.6288 2.60425L15.6274 3.9722L15.6282 5.72574C15.6283 6.05396 15.6376 6.39703 15.6164 6.72136C15.583 7.2316 15.1718 7.58422 14.6586 7.52508C14.1259 7.47461 13.9271 7.06319 13.9176 6.57883C13.9044 5.90146 13.9055 5.21372 13.906 4.53502C13.9061 4.3345 13.8973 4.10114 13.9205 3.90274C13.2712 4.57136 12.5983 5.21888 11.9475 5.88538C11.7031 6.13563 11.4482 6.40285 11.188 6.63485C10.763 7.07213 10.3379 7.4915 9.90353 7.91855C9.62539 8.192 9.25409 8.62666 8.938 8.85113C8.6665 8.46455 8.08125 8.08922 7.8243 7.67535C7.77134 7.59005 8.26238 7.15511 8.33663 7.08038L9.35155 6.06805C9.6122 5.81058 9.85562 5.53231 10.1237 5.27491C10.8012 4.62439 11.4715 3.95272 12.1239 3.27717C12.2526 3.14391 12.5889 2.88011 12.6436 2.7411C12.6366 2.7125 12.6311 2.69275 12.585 2.69428C12.4083 2.70016 12.2416 2.71067 12.0641 2.71103L10.5386 2.7128C10.2889 2.71453 9.93602 2.73764 9.70155 2.6822C9.3638 2.60235 9.11122 2.25797 9.09886 1.917C9.08427 1.51505 9.2325 1.24013 9.60314 1.0709C9.77197 0.993813 9.89487 0.999368 10.0719 0.991433Z" fill="%23949494"/></svg>');
  background-size: contain;
  width: 18px;
  min-width: 18px;
  height: 16px;
  margin-left: 12px;
}
@media (hover: hover) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a {
    -webkit-transition: 0.2s background-color;
    transition: 0.2s background-color;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a:hover {
    background-color: #f4f4f4;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .table-of-contents.--plain ul li a.current_page_item {
  background-color: #f9f9f9;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured {
    padding-top: 40px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured {
    padding-top: 60px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured {
    padding-top: 60px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .featured-label {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .featured-label {
    margin-left: 8vw;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .featured-label {
    margin: 0 auto 20px 30px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .featured-label {
    margin: 0 auto 20px 20px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items {
    width: 100vw;
    margin: 20px calc(50% - 50vw) 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items::-webkit-scrollbar {
    display: none;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items::before, body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items::after {
    content: "";
    min-width: calc(8vw - 10px);
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 30px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 20px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item {
  list-style: none;
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding-right: 20px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding-right: 20px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .image {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .image {
    width: 55vw;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .image {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .image {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title {
    font-size: 16px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title {
    font-size: 14px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title {
    font-size: 14px;
  }
}
@media (hover: hover) {
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title {
    -webkit-transition: 0.2s -webkit-text-decoration;
    transition: 0.2s -webkit-text-decoration;
    transition: 0.2s text-decoration;
    transition: 0.2s text-decoration, 0.2s -webkit-text-decoration;
  }
  body.theme-page .main.main--product-guide > .view .layout .section--toc .featured .items .item a .post-title:hover {
    text-decoration: underline;
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .section--contents {
    padding: 0 0 60px 0;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide > .view .layout .section--contents {
    padding: 80px min(4vw, 40px);
    border-left: 1px solid var(--color-border);
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .section--contents {
    padding: 72px 40px 80px 40px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .section--contents > .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
}
body.theme-page .main.main--product-guide > .view .layout .navs {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 90vw;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide > .view .layout .navs {
    top: 16px;
    left: 5vw;
    right: 5vw;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide > .view .layout .navs {
    left: 20px;
  }
}
body.theme-page .main.main--product-guide > .view .layout .navs > a {
  color: var(--color-text-primary);
  font-size: 12px;
  line-height: 1;
}
@media (hover: hover) {
  body.theme-page .main.main--product-guide > .view .layout .navs > a:hover span {
    text-decoration: underline;
  }
}
body.theme-page .main.main--product-guide > .view .layout .navs .goto-product-guide-top {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.theme-page .main.main--product-guide > .view .layout .navs .goto-product-guide-top .icon {
  width: 6px;
  height: 9px;
  margin-right: 7px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
body.theme-page .main.main--product-guide > .view .layout .navs .goto-support-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body.theme-page .main.main--product-guide > .view .layout .navs .goto-support-site .icon {
  width: 10px;
  height: 8.9px;
  margin-left: 4px;
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide.--top .view .layout .section--contents {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide.--top .view .layout .section--contents {
    display: none;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide.--top .view .layout .section--contents {
    background-color: var(--color-background-alt);
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide.--post {
    padding-top: 80px;
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide.--post .view {
    width: 90%;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide.--post .view .layout {
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide.--post .view .layout .section--overview {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide.--post .view .layout .section--overview {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media (max-width: 640px) {
  body.theme-page .main.main--product-guide.--post .view .layout .section--toc {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide.--post .view .layout .section--toc {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide.--post .view .layout .section--contents {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
body.theme-page.__is_app .main.main--product-guide {
  /*
  Brakepoint
  */
}
body.theme-page.__is_app .main.main--product-guide .view .layout {
  min-height: 100dvh;
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide .view .layout .section--contents {
    padding-bottom: 100px;
  }
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--contents > .breadcrumb .name {
  display: none;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .navs {
  display: none;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview {
  padding-bottom: 30px;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .section-label {
  display: none;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-model {
  margin-bottom: 0;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-visual {
  display: none;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-guide-buttons {
  margin: 30px auto 0;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-guide-buttons .product-guide-button.show_in_browser {
  display: none;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-guide-buttons .product-guide-button.show_in_app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide .view .layout .section--toc {
    padding-bottom: 100px;
  }
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide .view .layout .section--toc .table-of-contents .items .page_item a {
    padding: 10px 0 10px 10px;
  }
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide .view .layout .section--toc .table-of-contents.--numbered {
    padding: 40px calc(8vw - 10px);
  }
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide.--post {
    padding-top: 20px;
  }
}
body.theme-page .main.main--product-modal .layout {
  width: 100vw;
  margin: 0 auto;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 {
  position: relative;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper .swiper-wrapper .swiper-slide .wp-block-image {
  aspect-ratio: 1/1;
  margin-bottom: 76px;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper .swiper-wrapper .swiper-slide .wp-block-image img {
  width: 100vw;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper .swiper-wrapper .swiper-slide > p {
  width: 90%;
  margin: 0 auto;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper-pagination {
  position: absolute;
  top: calc(100vw + 32px);
  height: 12px;
  gap: 15px;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  background-color: var(--color-black);
  opacity: 0.2;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 0.7;
}
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper-button-prev,
body.theme-page .main.main--product-modal .layout .the-modal-content .wp-block-cb-carousel-v2 .swiper-button-next {
  display: none;
}

/*
Extra
*/
body.theme-page .the-content:has(.dsc01--button-functions) p.wp-block-paragraph > img {
  height: 1.4em;
}
body.theme-page .dsc01--button-functions {
  max-width: 440px;
  margin: 60px auto 0 0;
}
body.theme-page .dsc01--button-functions h2.wp-block-heading::before {
  display: none;
  visibility: hidden;
}
body.theme-page .dsc01--button-functions .illustration-guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.theme-page .dsc01--button-functions .illustration-guide .illustration .image {
  aspect-ratio: 362/330;
  -o-object-fit: contain;
     object-fit: contain;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-upper .button,
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button {
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ececec;
  border-radius: 9999px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-black);
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-upper .button .image,
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 26px;
  height: 26px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-upper .button {
  min-height: 50px;
  padding: 0 34px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-upper .button:nth-child(2) {
  min-width: 124px;
  padding: 0;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button {
  min-height: 65px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: auto;
  padding: 0 10px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button:nth-child(2) {
  min-width: 105px;
}
body.theme-page .dsc01--button-functions .illustration-guide .buttons-bottom .button:nth-child(3) {
  min-width: 84px;
}
body.theme-page .dsc01--button-functions .operating-by-mode,
body.theme-page .dsc01--button-functions .button-combinations {
  background-color: var(--color-white);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  margin: 16px 0 0 0;
  padding: 20px 15px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-left: 10px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector label,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-weight: bold;
  color: #949494;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  min-width: 0;
  max-width: 100%;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__trigger,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__trigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
  width: 100%;
  min-height: 40px;
  padding: 1px 16px 0 15px;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__trigger .custom-selector__selected-text,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__trigger .custom-selector__selected-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__trigger::after,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__trigger::after {
  content: "";
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.70703 5.08496L1.34961 9.35742L0.650391 8.64258L4.29199 5.07129L0.642578 1.35059L1.35742 0.649414L5.70703 5.08496Z" fill="%23949494"/></svg>');
  background-size: contain;
  width: 7px;
  min-width: 7px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__dropdown,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 4px 12px;
  list-style: none;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item {
  margin: 0;
  padding: 0;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item .custom-selector__option,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item .custom-selector__option {
  display: block;
  width: 100%;
  margin: 4px 0;
  padding: 8px 8px 8px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .operating-by-mode .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item .custom-selector__option.is-selected,
body.theme-page .dsc01--button-functions .button-combinations .custom-selector .custom-selector__box .custom-selector__dropdown .custom-selector__item .custom-selector__option.is-selected {
  background: #f0f0f0;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding-left: 12px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table {
  table-layout: fixed;
  border: none;
  border-collapse: collapse;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td,
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table th,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th {
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table tr td:last-child,
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table tr th:last-child,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table tr td:last-child,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table tr th:last-child {
  border-right: none;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table tr:last-child td,
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table tr:last-child th,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table tr:last-child td,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table tr:last-child th {
  border-bottom: none;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table th,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th {
  vertical-align: middle;
  width: 70px;
  min-width: 70px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table th .image,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 26px;
  height: 26px;
  margin: 0 auto;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td {
  padding: 16px 0 16px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td .action label,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td .action label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 3px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td .action label .image,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td .action label .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20px;
  height: 20px;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td .action label em,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td .action label em {
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}
body.theme-page .dsc01--button-functions .operating-by-mode .mode-tables .mode-table td .action .explanation,
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table td .action .explanation {
  padding-left: 25px;
  font-size: 14px;
  line-height: 20px;
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th {
  width: 130px;
  min-width: 130px;
}
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
body.theme-page .dsc01--button-functions .button-combinations .mode-tables .mode-table th .buttons .image {
  margin: 0;
}
body.theme-page .dsc01--button-functions .button-functions-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-modal);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
body.theme-page .dsc01--button-functions .button-functions-modal.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
body.theme-page .dsc01--button-functions .button-functions-modal.is-open .backdrop,
body.theme-page .dsc01--button-functions .button-functions-modal.is-open .dialog {
  opacity: 1;
}
body.theme-page .dsc01--button-functions .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
body.theme-page .dsc01--button-functions .dialog {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner {
  position: relative;
  pointer-events: auto;
  width: min(100%, 500px);
  max-height: 70vh;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 43px;
  height: 43px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__close::before, body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__close::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 1px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content {
  max-height: 70vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content::-webkit-scrollbar {
  display: none;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content {
  padding: 20px 15px 25px;
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 0 53px 0 10px;
  font-size: 18px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .titles .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 26px;
  height: 26px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .description {
  padding: 0 0 0 10px;
  font-size: 15px;
  line-height: 1.8;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .description p {
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .description a {
  display: block;
  font-weight: normal;
  color: #73a6e9;
  text-decoration: underline;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 24px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th,
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td {
  border: 0;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th:first-child,
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td:first-child {
  border-right: 1px solid #dedede;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th {
  border-bottom: 1px solid #dedede;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th {
  padding: 10px 0;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th:first-child {
  width: 98px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table th.th-led {
  width: 120px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td {
  vertical-align: middle;
  padding: 12px 0;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td:first-child {
  padding: 12px 0;
  text-align: center;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td:nth-child(2) {
  padding: 12px 8px;
  text-align: left;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  padding: 0 10px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .action .image {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20px;
  height: 20px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .action label {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .led label {
  font-size: 12px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .led label em {
  display: block;
  font-weight: bold;
  line-height: 1.5;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .led label span {
  display: block;
  font-weight: normal;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .caption p,
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .caption ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #4e4e4e;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .caption ul {
  padding-left: 1em;
  list-style-type: none;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .table td .caption ul li::before {
  content: "・";
  margin-left: -1em;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide {
  margin-top: 24px;
  padding: 0 0 0 5px;
  font-size: 14px;
  line-height: 20px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .status .image {
  height: 26px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .status .image--icon {
  width: 26px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .status .image--battery {
  width: 12px;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .status label {
  font-weight: bold;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .meaning {
  padding: 8px 0;
}
body.theme-page .dsc01--button-functions .dialog .modal__inner .modal__content .indicator-guide ul li .meaning::before {
  content: "：";
}
body.theme-page .dsc01--button-functions {
  /* 背景スクロールロック時 */
}
body.theme-page .dsc01--button-functions body.is-modal-open {
  overflow: hidden;
}
body.theme-page .dsc01--button-functions {
  /* iOS対策用：JSで body に fixed を当てるので高さ崩れを抑える */
}
body.theme-page .dsc01--button-functions html.is-modal-open,
body.theme-page .dsc01--button-functions body.is-modal-open {
  width: 100%;
}
body.theme-page.__is_app .dsc01--button-functions .operating-by-mode {
  border: none;
}
/*
DEVELOP MODE
functions/detect-webview.php　も修正必要
*/
.develop-mode-console {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-wrap: anywhere;
  border: 1px solid var(--color-black);
  padding: 20px;
  margin: 20px 0;
}
@media (max-width: 640px) {
  .develop-mode-console {
    font-size: var(--font-size-sp-small);
  }
}
@media (min-width: 641px) {
  .develop-mode-console {
    font-size: var(--font-size-pc-small);
  }
}