@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
*/
body.__is_web {
  font-family: "Open Sans", "YuGothic_Family", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@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_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;
}

/*
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;
  }
}
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;
}
@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 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
  */
  background-color: var(--color-footer-background);
  color: var(--color-footer-object-default);
}
@media (max-width: 640px) {
  body.__is_web .footer {
    padding: 40px 0;
    font-size: 10px;
    line-height: 2.2;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web .footer {
    padding: 35px 0;
    font-size: 12px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer {
    padding: 24px 0;
    font-size: 12px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer .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 .view .layout .legal-links {
    margin-bottom: 18px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.__is_web .footer .view .layout .legal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 1081px) {
  body.__is_web .footer .view .layout .legal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
body.__is_web .footer .view .layout .legal-links li {
  list-style: none;
}
body.__is_web .footer .view .layout .legal-links li a {
  color: var(--color-footer-object-default);
}
@media (hover: hover) {
  body.__is_web .footer .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 .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: 36px;
    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 > .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 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  margin: 52px auto 12px 0;
}
.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;
  border-radius: 10px;
}
.the-content .wp-block-video {
  overflow: hidden;
  border-radius: 10px;
}
.the-content .wp-block-theme-alert-box + .wp-block-heading {
  margin-top: 40px;
}

@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;
    padding-top: 80px;
  }
}
body.theme-page .main.main--product-guide .view {
  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;
    row-gap: 60px;
  }
}
@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: 280px 0 320px 0 1fr;
    grid-template-columns: 280px 320px 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide .view .layout .section--overview {
    padding: 82px 10px 80px 0;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide .view .layout .section--overview {
    padding: 72px 20px 80px 0;
  }
}
body.theme-page .main.main--product-guide .view .layout .section--overview .section-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
body.theme-page .main.main--product-guide .view .layout .section--overview .product-name {
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
}
body.theme-page .main.main--product-guide .view .layout .section--overview .product-model {
  font-size: 14px;
  margin-bottom: 30px;
}
body.theme-page .main.main--product-guide .view .layout .section--overview .product-visual {
  border-radius: 4px;
  overflow: hidden;
}
body.theme-page .main.main--product-guide .view .layout .section--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--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;
    gap: 60px;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide .view .layout .section--toc {
    padding: 82px 0 80px 20px;
    gap: 80px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide .view .layout .section--toc {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    padding: 72px 10px 80px 10px;
    gap: 60px;
  }
}
body.theme-page .main.main--product-guide .view .layout .section--toc .toc-label {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 641px) and (max-width: 1080px) {
  body.theme-page .main.main--product-guide .view .layout .section--toc .toc-label {
    margin: 0 auto 20px 20px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide .view .layout .section--toc .toc-label {
    margin: 0 auto 20px 20px;
  }
}
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;
  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 .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(5vw - 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: 20px;
  }
}
@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;
  gap: 20px;
}
@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;
  }
}
@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;
    padding-right: 10px;
  }
}
@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;
    padding-right: 10px;
  }
}
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;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@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: 82px 0 80px 20px;
  }
}
@media (min-width: 1081px) {
  body.theme-page .main.main--product-guide .view .layout .section--contents {
    padding: 72px 0 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;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
}
body.theme-page .main.main--product-guide .view .layout .section--contents > .breadcrumb .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.theme-page .main.main--product-guide .view .layout .section--contents > .breadcrumb .name::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: var(--color-black);
}
body.theme-page .main.main--product-guide .view .layout .navs {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  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 {
    left: 5vw;
    right: 5vw;
  }
}
@media (min-width: 641px) and (max-width: 1080px) {
  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 .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 {
    display: none;
  }
}
@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 {
    padding: 82px 20px 80px 0;
  }
}
@media (max-width: 640px) {
  body.theme-page.__is_app .main.main--product-guide {
    padding-top: 30px;
  }
}
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 .product-model {
  margin-bottom: 0;
}
body.theme-page.__is_app .main.main--product-guide .view .layout .section--overview .product-visual {
  display: none;
}
@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;
  }
}
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;
}

/*
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);
  }
}