@charset "UTF-8";
/**
 * 暫定対応: 記事画像コンポーネント内のpタグを非表示にします。
 * 本来はCMSの出力側で制御されるべきですが、一時的な措置としてCSSで対応しています。
 */
.mwsc__article_img > p {
  display: none;
}

/**
 * ブック共通設定:
 * mwsc__itemで始まるクラスを持つsection要素の最大幅をリセットします。
 * これにより、子要素で幅をコントロールしやすくなります。
 */
main > section[class^=mwsc__item] {
  max-width: none;
}

/**
 * ブックラベル: mwsc__labelを含むクラスを持つli要素のスタイル（プレースホルダー）
 */
/**
 * ブック（原稿）切り替えタブ:
 * 複数のブックを切り替えるためのタブUIのスタイルです。
 * Flexboxを使用してタブを横並びに配置し、横スクロール可能にしています。
 */
ul.mwsc__manuscript_tabs {
  display: flex;
  max-width: var(--width_max_pc_l);
  margin: 0 auto;
  overflow-x: auto;
  padding: 1.6rem 1rem;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  gap: 1rem;
}
ul.mwsc__manuscript_tabs > li:only-child {
  display: none;
}
ul.mwsc__manuscript_tabs > li {
  background: var(--color_ui_light);
  display: grid;
  box-shadow: 0rem 0.2rem 0.6rem rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.9882352941);
  border-radius: 0.2rem;
  cursor: pointer;
  flex: 1;
  flex-wrap: wrap;
  height: 6.2rem;
  min-width: 18rem;
  place-items: center;
  transition: all 0.2s;
  box-sizing: border-box;
}
ul.mwsc__manuscript_tabs > li > label {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
ul.mwsc__manuscript_tabs > li:hover {
  background: #fff;
}
ul.mwsc__manuscript_tabs > li--current {
  background: #fff;
  border-top: solid var(--color_ui_dark) 0.4rem;
  box-shadow: 0rem -0.2rem 0.3rem rgba(0, 0, 0, 0.16);
  display: grid;
  flex: 1;
  margin: 0.5rem 1rem 0 1rem;
  min-width: 18rem;
  padding: 0rem 0.8rem 1rem 0.8rem;
  place-items: center;
  transition: all 0.2s;
  z-index: 1;
}
ul.mwsc__manuscript_tabs > li > label {
  cursor: pointer;
}

/**
 * ブック内ページ切り替えタブ:
 * 一つのブック内でページを切り替えるためのタブUIのスタイルです。
 * input[type=radio]とlabelを利用したタブ切り替えを想定しています。
 */
.mwsc__page_selector_container > input {
  display: none;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li:only-child {
  display: none;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs {
  display: flex;
  max-width: var(--width_max_pc_l);
  margin: 0 auto;
  overflow-x: auto;
  padding: 1.6rem 1rem;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  gap: 1rem;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li {
  background: var(--SN-Color-Background-Neutral-Subtle);
  display: grid;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16), 0px 1px 2px 1px rgba(0, 0, 0, 0.16);
  border-radius: 0.2rem;
  cursor: pointer;
  flex: 1;
  flex-wrap: wrap;
  min-width: 18rem;
  place-items: center;
  transition: all 0.2s;
  box-sizing: border-box;
  line-height: 1em;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li > label {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: var(--SN-Space-16) var(--SN-Space-24);
  box-sizing: border-box;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li:hover {
  background: #fff;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li--current {
  background: #fff;
  border-top: solid var(--color_ui_dark) 0.4rem;
  box-shadow: 0rem -0.2rem 0.3rem rgba(0, 0, 0, 0.16);
  display: grid;
  flex: 1;
  margin: 0.5rem 1rem 0 1rem;
  min-width: 18rem;
  padding: 0rem 0.8rem 1rem 0.8rem;
  place-items: center;
  transition: all 0.2s;
  z-index: 1;
}
.mwsc__page_selector_container > ul.mwsc__page_tabs > li > label {
  cursor: pointer;
  font-size: var(--SN-UI-Single-L-Font-size);
}

/**
 * ページ共通設定:
 * ページ全体のコンテナや背景色などの基本設定です。
 */
.mwsc__page_selector_container {
  max-width: none;
  overflow: hidden;
}
/**
 * ページセクション:
 * mwsc__page--で始まるIDを持つ各ページコンテンツの基本スタイルです。
 */
section[id^=mwsc__page--] {
  display: flow-root;
}
@media screen and (min-width: 600px) {
  section[id^=mwsc__page--] {
    background: var(--SN-PMcolor-Alpha-White-100);
  }
}
@media screen and (max-width: 599px) {
  section[id^=mwsc__page--] {
    background: var(--SN-PMcolor-Alpha-White-100);
  }
}

/**
 * ページコンテナ内のレイヤー設定:
 * 背景色などを調整します。
 */
.mwsc__page_selector_container section.box-gray {
  background: var(--color-ui-light);
}
.mwsc__page_selector_container .layer--1:first-of-type > .mwsc__article {
  border-top: none;
}
@media screen and (min-width: 600px) {
  .mwsc__page_selector_container .layer--1 {
    background: transparent;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__page_selector_container .layer--1 {
    background: transparent;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__page_selector_container .layer--1:nth-child(even) {
    background: transparent;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__page_selector_container .layer--1:nth-child(even) {
    background: transparent;
  }
}

/**
 * 記事コンテナ (.mwsc__articles):
 * 複数の記事(.mwsc__article)をまとめるラッパー要素です。
 * CSS Gridを使用してレイアウトを制御し、基本的なタイポグラフィや見出しスタイルを定義します。
 * 修飾子クラス(例: .layer--1, .child--2, .img--x1-050)によって多様なレイアウトを実現します。
 */
.mwsc__articles {
  font-size: var(--SN-Contents-Body-M-Font-size);
  color: var(--SN-Color-Text-Default);
  display: grid;
  gap: var(--SN-Contents-Spacing-Section-L);
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "article";
  justify-content: stretch;
  justify-items: center;
  align-items: start;
  text-align: center;
  /**
  * レイヤー修飾子 (.layer--1):
  * 記事コンテナに背景や区切り線、余白などを追加し、セクションとしての見た目を定義します。
  * 主にページのトップレベルのコンテナとして使用されます。
  */
  /**
   * 入れ子になった記事コンテナのスタイル:
   * .mwsc__articlesの中にさらに.mwsc__articlesが存在する場合のスタイルを調整します。
   * 主にgap(間隔)を調整するために使用されます。
   */
}
@media screen and (max-width: 599px) {
  .mwsc__articles {
    gap: var(--SN-Contents-Spacing-Section-M);
  }
}
.mwsc__articles > * {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .mwsc__articles > * {
    max-width: var(--mwsc__max-width-content);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles > * {
    max-width: var(--mwsc__max-width-content_sp);
  }
}
.mwsc__articles .mwsc__article_img img {
  width: 100%;
  height: auto;
}
.mwsc__articles h1,
.mwsc__articles h2,
.mwsc__articles h3,
.mwsc__articles h4,
.mwsc__articles h5,
.mwsc__articles h6 {
  text-align: center;
  font-weight: bold;
  color: var(--SN-Color-Text-Default);
  margin: 0 auto;
  font-feature-settings: "palt" on;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 600px) {
  .mwsc__articles h1,
.mwsc__articles h2,
.mwsc__articles h3,
.mwsc__articles h4,
.mwsc__articles h5,
.mwsc__articles h6 {
    font-weight: var(--SN-Font-weight-Med);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles h1,
.mwsc__articles h2,
.mwsc__articles h3,
.mwsc__articles h4,
.mwsc__articles h5,
.mwsc__articles h6 {
    font-weight: var(--SN-Font-weight-Bd);
  }
}
.mwsc__articles a:not([class]) {
  color: var(--SN-Color-Text-Link);
}
.mwsc__articles a[class^=sn_btn--] {
  color: var(--SN-PMcolor-Alpha-White-100);
}
.mwsc__articles a.sn_btn--secondary_light {
  color: var(--color_font_mid);
}
.mwsc__articles figcaption {
  font-size: var(--SN-Contents-Body-M-Font-size);
  letter-spacing: var(--SN-Letter-spacing-S);
  font-feature-settings: "palt" off;
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h1 {
    font-size: var(--SN-Font-size-70);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h1 {
    font-size: var(--SN-Font-size-70);
  }
}
.mwsc__articles header h2 {
  line-height: var(--SN-Line-height-M);
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h2 {
    font-size: var(--SN-Contents-Title-XL-Font-size);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h2 {
    font-size: var(--SN-Font-size-60);
  }
}
.mwsc__articles header h3 {
  line-height: var(--SN-Line-height-M);
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h3 {
    font-size: var(--SN-Contents-Title-M-Font-size);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h3 {
    font-size: var(--SN-Font-size-40);
  }
}
.mwsc__articles header h4 {
  line-height: var(--SN-Line-height-M);
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h4 {
    font-size: var(--SN-Contents-Title-S-Font-size);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h4 {
    font-size: var(--SN-Font-size-30);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h5 {
    font-size: var(--SN-Font-size-10);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h5 {
    font-size: var(--SN-Font-size-10);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles header h6 {
    font-size: var(--SN-Font-size-10);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles header h6 {
    font-size: var(--SN-Font-size-10);
  }
}
.mwsc__articles.layer--1 {
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  gap: var(--SN-Contents-Spacing-Section-M);
}
@media screen and (min-width: 600px) {
  .mwsc__articles.layer--1 {
    max-width: var(--mwsc__max-width-section);
    margin: 0 auto;
    background: transparent;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.layer--1 {
    max-width: var(--mwsc__max-width-section_sp);
    margin: 0 auto;
    background: transparent;
  }
}
.mwsc__articles.layer--1 > .mwsc__article {
  border-top: 1px solid var(--SN-Color-Border-subtle);
}
.mwsc__articles.layer--1 > * {
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.layer--1 > * {
    max-width: var(--mwsc__max-width-content);
  }
  .mwsc__articles.layer--1 > *:first-child {
    padding-top: var(--SN-Contents-Spacing-Section-M);
  }
  .mwsc__articles.layer--1 > *:last-child {
    padding-bottom: var(--SN-Contents-Spacing-Section-L);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.layer--1 > * {
    max-width: var(--mwsc__max-width-content_sp);
  }
  .mwsc__articles.layer--1 > *:first-child {
    padding-top: 2.4rem;
  }
  .mwsc__articles.layer--1 > *:last-child {
    padding-bottom: calc(var(--mwsc__clear-space-content_sp--h) * 1.6);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.layer--1.child--2, .mwsc__articles.layer--1.child--3, .mwsc__articles.layer--1.child--4 {
    padding-bottom: var(--SN-Contents-Spacing-Section-L);
    gap: var(--SN-Contents-Spacing-Section-M);
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.layer--1.child--2, .mwsc__articles.layer--1.child--3, .mwsc__articles.layer--1.child--4 {
    padding-top: 2.4rem;
    padding-bottom: calc(var(--mwsc__clear-space-content_sp--h) * 1.6);
  }
}
.mwsc__articles.layer--1:not(.child--none) > .mwsc__articles {
  box-sizing: border-box;
}
.mwsc__articles.layer--2 {
  justify-content: center;
}
.mwsc__articles.layer--3 {
  justify-content: center;
}
.mwsc__articles .is_empty {
  display: contents;
}
.mwsc__articles .mwsc__articles {
  gap: var(--SN-Contents-Spacing-Section-M);
}
@media screen and (min-width: 600px) {
  .mwsc__articles .mwsc__articles .mwsc__article {
    gap: 2.4rem !important;
  }
}
.mwsc__articles.no_hx > .mwsc__article {
  grid-template-areas: "article_img" "article_text" "article_table";
}
.mwsc__articles.no_img > .mwsc__article {
  grid-template-areas: "article_header" "article_text" "article_table";
}
.mwsc__articles.no_text > .mwsc__article {
  grid-template-areas: "article_header" "article_img" "article_table";
}
.mwsc__articles.no_table > .mwsc__article {
  grid-template-areas: "article_header" "article_img" "article_text";
}
.mwsc__articles.no_hx.no_img > .mwsc__article {
  grid-template-areas: "article_text" "article_table";
}
.mwsc__articles.no_hx.no_text > .mwsc__article {
  grid-template-areas: "article_img" "article_table";
}
.mwsc__articles.no_hx.no_table > .mwsc__article {
  grid-template-areas: "article_img" "article_text";
}
.mwsc__articles.no_img.no_text > .mwsc__article {
  grid-template-areas: "article_header" "article_table";
}
.mwsc__articles.no_img.no_table > .mwsc__article {
  grid-template-areas: "article_header" "article_text";
}
.mwsc__articles.no_text.no_table > .mwsc__article {
  grid-template-areas: "article_header" "article_img";
}
.mwsc__articles.no_hx.no_img.no_text > .mwsc__article {
  grid-template-areas: "article_table";
}
.mwsc__articles.no_hx.no_img.no_table > .mwsc__article {
  grid-template-areas: "article_text";
}
.mwsc__articles.no_hx.no_text.no_table > .mwsc__article {
  grid-template-areas: "article_img";
}
.mwsc__articles.no_img.no_text.no_table > .mwsc__article {
  grid-template-areas: "article_header";
}

/**
 * @mixin mwsc__article
 * .mwsc__article内の特定の子要素(.mwsc__article_imgなど)にスタイルを適用するためのヘルパーMixinです。
 * DRY(Don't Repeat Yourself)原則に従い、コードの重複を避けるために使用します。
 */
/**
 * 画像レイアウト修飾子 (img--*):
 * 記事内の画像の数やサイズ、配置を制御します。
 * img--x{n}-* : 画像の列数や幅を指定します。
 */
@media screen and (min-width: 600px) {
  .mwsc__articles[class*=img--x1-] > .mwsc__article > .mwsc__article_img ul {
    grid-template-columns: 1fr;
  }
  .mwsc__articles[class*=img--x2-] > .mwsc__article > .mwsc__article_img ul {
    grid-template-columns: 1fr 1fr;
  }
  .mwsc__articles[class*=img--x3-] > .mwsc__article > .mwsc__article_img ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mwsc__articles[class*=img--x4-] > .mwsc__article > .mwsc__article_img ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.mwsc__articles.img--none > .mwsc__article > .mwsc__article_img .mwsc__image {
  width: 100%;
}
.mwsc__articles.img--x1 {
  /**
   * 画像サイズ修飾子 (img--x1-*):
   * 1列表示の場合の画像幅を制御します。
   */
  /**
   * 画像とテキストの横並びレイアウト:
   * -050, -040, -030 は画像とテキストを横に並べます。
   * "-r" サフィックスは左右反転レイアウトを意味します。
   */
}
.mwsc__articles.img--x1-100 > .mwsc__article > .mwsc__article_img .mwsc__image {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-080 > .mwsc__article > .mwsc__article_img .mwsc__image {
    width: 80%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-070 > .mwsc__article > .mwsc__article_img .mwsc__image {
    width: 70%;
  }
}
.mwsc__articles.img--x1-100 > .mwsc__article, .mwsc__articles.img--x1-080 > .mwsc__article, .mwsc__articles.img--x1-070 > .mwsc__article {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-050 > .mwsc__article, .mwsc__articles.img--x1-040 > .mwsc__article, .mwsc__articles.img--x1-030 > .mwsc__article, .mwsc__articles.img--x1-025 > .mwsc__article, .mwsc__articles.img--x1-020 > .mwsc__article {
    grid-template-areas: "article_img article_header" "article_img article_text" "article_img article_table";
  }
  .mwsc__articles.img--x1-050-r > .mwsc__article, .mwsc__articles.img--x1-040-r > .mwsc__article, .mwsc__articles.img--x1-030-r > .mwsc__article, .mwsc__articles.img--x1-025-r > .mwsc__article, .mwsc__articles.img--x1-020-r > .mwsc__article {
    grid-template-areas: "article_header article_img" "article_text article_img" "article_table article_img";
  }
  .mwsc__articles.img--x1-050.no_hx > .mwsc__article, .mwsc__articles.img--x1-040.no_hx > .mwsc__article, .mwsc__articles.img--x1-030.no_hx > .mwsc__article, .mwsc__articles.img--x1-025.no_hx > .mwsc__article, .mwsc__articles.img--x1-020.no_hx > .mwsc__article {
    grid-template-areas: "article_img article_text" "article_img article_table";
  }
  .mwsc__articles.img--x1-050.no_text > .mwsc__article, .mwsc__articles.img--x1-040.no_text > .mwsc__article, .mwsc__articles.img--x1-030.no_text > .mwsc__article, .mwsc__articles.img--x1-025.no_text > .mwsc__article, .mwsc__articles.img--x1-020.no_text > .mwsc__article {
    grid-template-areas: "article_img article_header" "article_img article_table";
  }
  .mwsc__articles.img--x1-050.no_table > .mwsc__article, .mwsc__articles.img--x1-040.no_table > .mwsc__article, .mwsc__articles.img--x1-030.no_table > .mwsc__article, .mwsc__articles.img--x1-025.no_table > .mwsc__article, .mwsc__articles.img--x1-020.no_table > .mwsc__article {
    grid-template-areas: "article_img article_header" "article_img article_text";
  }
  .mwsc__articles.img--x1-050-r.no_hx > .mwsc__article, .mwsc__articles.img--x1-040-r.no_hx > .mwsc__article, .mwsc__articles.img--x1-030-r.no_hx > .mwsc__article, .mwsc__articles.img--x1-025-r.no_hx > .mwsc__article, .mwsc__articles.img--x1-020-r.no_hx > .mwsc__article {
    grid-template-areas: "article_text article_img" "article_table article_img";
  }
  .mwsc__articles.img--x1-050-r.no_text > .mwsc__article, .mwsc__articles.img--x1-040-r.no_text > .mwsc__article, .mwsc__articles.img--x1-030-r.no_text > .mwsc__article, .mwsc__articles.img--x1-025-r.no_text > .mwsc__article, .mwsc__articles.img--x1-020-r.no_text > .mwsc__article {
    grid-template-areas: "article_header article_img" "article_table article_img";
  }
  .mwsc__articles.img--x1-050-r.no_table > .mwsc__article, .mwsc__articles.img--x1-040-r.no_table > .mwsc__article, .mwsc__articles.img--x1-030-r.no_table > .mwsc__article, .mwsc__articles.img--x1-025-r.no_table > .mwsc__article, .mwsc__articles.img--x1-020-r.no_table > .mwsc__article {
    grid-template-areas: "article_header article_img" "article_text article_img";
  }
  .mwsc__articles.img--x1-050.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-040.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-030.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-025.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-020.no_hx.no_text > .mwsc__article {
    grid-template-areas: "article_img article_table";
  }
  .mwsc__articles.img--x1-050.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-040.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-030.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-025.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-020.no_hx.no_table > .mwsc__article {
    grid-template-areas: "article_img article_text";
  }
  .mwsc__articles.img--x1-050.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-040.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-030.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-025.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-020.no_text.no_table > .mwsc__article {
    grid-template-areas: "article_img article_header";
  }
  .mwsc__articles.img--x1-050-r.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-040-r.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-030-r.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-025-r.no_hx.no_text > .mwsc__article, .mwsc__articles.img--x1-020-r.no_hx.no_text > .mwsc__article {
    grid-template-areas: "article_table article_img";
  }
  .mwsc__articles.img--x1-050-r.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-040-r.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-030-r.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-025-r.no_hx.no_table > .mwsc__article, .mwsc__articles.img--x1-020-r.no_hx.no_table > .mwsc__article {
    grid-template-areas: "article_text article_img";
  }
  .mwsc__articles.img--x1-050-r.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-040-r.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-030-r.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-025-r.no_text.no_table > .mwsc__article, .mwsc__articles.img--x1-020-r.no_text.no_table > .mwsc__article {
    grid-template-areas: "article_header article_img";
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-050 > .mwsc__article, .mwsc__articles.img--x1-050-r > .mwsc__article, .mwsc__articles.img--x1-040 > .mwsc__article, .mwsc__articles.img--x1-040-r > .mwsc__article, .mwsc__articles.img--x1-030 > .mwsc__article, .mwsc__articles.img--x1-030-r > .mwsc__article {
    gap: 1.6rem var(--SN-Contents-Spacing-Section-M);
  }
  .mwsc__articles.img--x1-050 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-050-r > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-040 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-040-r > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-030 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-030-r > .mwsc__article > .mwsc__article_header {
    align-self: end;
  }
  .mwsc__articles.img--x1-050 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-050-r > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-040 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-040-r > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-030 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-030-r > .mwsc__article > .mwsc__article_text {
    align-self: start;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-050 > .mwsc__article {
    grid-template-columns: 50% 1fr;
  }
  .mwsc__articles.img--x1-050-r > .mwsc__article {
    grid-template-columns: 1fr 50%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x1-050 > .mwsc__article > .mwsc__article_img {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-040 > .mwsc__article {
    grid-template-columns: 40% 1fr;
  }
  .mwsc__articles.img--x1-040-r > .mwsc__article {
    grid-template-columns: 1fr 40%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x1-040 > .mwsc__article > .mwsc__article_img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-030 > .mwsc__article {
    grid-template-columns: 30% 1fr;
  }
  .mwsc__articles.img--x1-030-r > .mwsc__article {
    grid-template-columns: 1fr 30%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x1-030 > .mwsc__article > .mwsc__article_img {
    width: 70%;
    margin: 0 auto;
  }
}
.mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_header {
  align-self: end;
}
.mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_text {
  align-self: start;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-025 > .mwsc__article, .mwsc__articles.img--x1-025-r > .mwsc__article, .mwsc__articles.img--x1-020 > .mwsc__article, .mwsc__articles.img--x1-020-r > .mwsc__article {
    gap: 1.6rem var(--SN-Contents-Spacing-Section-M);
  }
  .mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-025-r > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_header, .mwsc__articles.img--x1-020-r > .mwsc__article > .mwsc__article_header {
    align-self: end;
  }
  .mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-025-r > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_text, .mwsc__articles.img--x1-020-r > .mwsc__article > .mwsc__article_text {
    align-self: start;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x1-025 > .mwsc__article, .mwsc__articles.img--x1-020 > .mwsc__article {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "article_header" "article_img" "article_text";
  }
  .mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_header > h1, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_header > h1 {
    margin-bottom: var(--SN-Space-16);
  }
  .mwsc__articles.img--x1-025 > .mwsc__article > .mwsc__article_img, .mwsc__articles.img--x1-020 > .mwsc__article > .mwsc__article_img {
    align-self: start;
    width: 60%;
  }
  .mwsc__articles.img--x1-025-r > .mwsc__article, .mwsc__articles.img--x1-020-r > .mwsc__article {
    grid-template-columns: 1fr;
    grid-template-areas: "article_header" "article_img" "article_text";
  }
  .mwsc__articles.img--x1-025-r > .mwsc__article > .mwsc__article_img, .mwsc__articles.img--x1-020-r > .mwsc__article > .mwsc__article_img {
    align-self: start;
    width: 60%;
  }
  .mwsc__articles.img--x1-025:not(.tbl--none) > .mwsc__article, .mwsc__articles.img--x1-020:not(.tbl--none) > .mwsc__article {
    grid-template-columns: 1fr;
    grid-template-areas: "article_header" "article_img" "article_text";
  }
  .mwsc__articles.img--x1-025-r:not(.tbl--none) > .mwsc__article, .mwsc__articles.img--x1-020-r:not(.tbl--none) > .mwsc__article {
    grid-template-columns: 1fr;
    grid-template-areas: "article_header" "article_img" "article_text";
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-025 > .mwsc__article {
    grid-template-columns: 25% 1fr;
  }
  .mwsc__articles.img--x1-025-r > .mwsc__article {
    grid-template-columns: 1fr 25%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x1-020 > .mwsc__article {
    grid-template-columns: 20% 1fr;
  }
  .mwsc__articles.img--x1-020-r > .mwsc__article {
    grid-template-columns: 1fr 20%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x2-040 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 40% 40%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x2-040 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 80%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x2-030 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 30% 30%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x2-030 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 70%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x2-020 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 20% 20%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x2-020 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 0.5fr 0.5fr;
    gap: var(--SN-Contents-Spacing-Body-M);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x3-025 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 25% 25% 25%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x3-025 > .mwsc__article > .mwsc__article_img > ul {
    display: flex;
    overflow-x: auto;
    justify-content: left;
    margin-left: calc(-1 * var(--SN-Space-16));
    width: calc(100% + var(--SN-Space-32));
    padding: var(--SN-Space-16);
    padding-top: 0;
    box-sizing: border-box;
    gap: var(--SN-Contents-Spacing-Body-M);
  }
  .mwsc__articles.img--x3-025 > .mwsc__article > .mwsc__article_img > ul > li {
    flex: 0 0 60%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.img--x4-020 > .mwsc__article > .mwsc__article_img > ul {
    grid-template-columns: 20% 20% 20% 20%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.img--x4-020 > .mwsc__article > .mwsc__article_img > ul {
    display: flex;
    overflow-x: auto;
    justify-content: left;
    margin-left: calc(-1 * var(--SN-Space-16));
    width: calc(100% + var(--SN-Space-32));
    padding: var(--SN-Space-16);
    padding-top: 0;
    box-sizing: border-box;
    gap: var(--SN-Contents-Spacing-Body-M);
  }
  .mwsc__articles.img--x4-020 > .mwsc__article > .mwsc__article_img > ul > li {
    flex: 0 0 60%;
  }
}

/**
 * 子要素段組み修飾子 (child--*):
 * .mwsc__articlesの直接の子要素（通常は.mwsc__article）を複数カラムでレイアウトします。
 * child--2, child--3, child--4 でそれぞれ2, 3, 4段組になります。
 */
.mwsc__articles.child {
  /**
   * アコーディオン修飾子 (child--accordion):
   * 子要素をアコーディオンUIとして機能させます。
   * .mwsc__articleがクリック可能なヘッダーとなり、それに続く.mwsc__articlesが開閉するコンテンツ部分となります。
   * .openクラスの付け外しで開閉を制御します。
   */
}
.mwsc__articles.child--1, .mwsc__articles.child--none {
  grid-template-columns: 1fr;
}
.mwsc__articles.child--2, .mwsc__articles.child--3, .mwsc__articles.child--4 {
  gap: var(--SN-Contents-Spacing-Body-M);
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--2, .mwsc__articles.child--3, .mwsc__articles.child--4 {
    gap: var(--SN-Contents-Spacing-Body-M);
    width: 90%;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--2 {
    grid-template-columns: repeat(2, calc((var(--mwsc__max-width-content) - var(--SN-Space-32) * 1) / 2));
    grid-template-areas: "article article" ". .";
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--3 {
    grid-template-columns: repeat(3, calc((var(--mwsc__max-width-content) - var(--SN-Space-32) * 2) / 3));
    grid-template-areas: "article article article" ". . .";
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--4 {
    grid-template-columns: repeat(4, calc((var(--mwsc__max-width-content) - var(--SN-Space-32) * 3) / 4));
    grid-template-areas: "article article article article" ". . . .";
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--4 {
    grid-template-columns: repeat(2, 50%);
    grid-template-areas: "article article" ". . ";
  }
}
.mwsc__articles.child--accordion {
  position: relative;
  padding: var(--SN-Space-16) 0 !important;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion:last-child {
    margin-bottom: 4rem;
  }
}
.mwsc__articles.child--accordion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: var(--SN-Space-16) auto 0;
  width: 100vw;
  max-width: 95rem;
  border-radius: var(--SN-Radius-8);
  height: calc(100% - var(--SN-Space-32));
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.16), 0px 1px 2px 1px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion::before {
    width: 100%;
    max-width: 90vw;
  }
}
.mwsc__articles.child--accordion > * {
  background: #fff;
}
.mwsc__articles.child--accordion > .mwsc__articles:first-of-type {
  padding: var(--SN-Contents-Spacing-Body-L, 2.4rem) 0;
}
.mwsc__articles.child--accordion > .mwsc__articles:last-child {
  border-radius: 0 0 var(--radius_l) var(--radius_l);
}
.mwsc__articles.child--accordion > .mwsc__articles {
  display: none;
  overflow: hidden;
  transition: height 0.5s;
  --mwsc__max-width-content: calc(
    var(--width_max_pc_m) - var(--mwsc__clear-space-content--v) * 2 -
      1.6rem * 4
  );
  --mwsc__max-width-content_sp: calc(
    100vw - var(--mwsc__clear-space-content_sp--v) * 2 - 1.6rem * 2
  );
}
.mwsc__articles.child--accordion > .mwsc__article {
  position: relative;
  border: none;
  gap: 0 1.6rem;
  border-radius: var(--radius_l);
  margin: 0;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
  max-width: unset;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion > .mwsc__article {
    padding: 1.6rem 4.8rem;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion > .mwsc__article {
    padding: 1.6rem 3.2rem 1.6rem 1.6rem;
    max-width: 90vw;
    gap: 1.6rem;
  }
}
.mwsc__articles.child--accordion > .mwsc__article::after {
  content: "";
  background-image: url("/~/media/img/common/icon/icon_caret_open_w.svg");
  background-color: var(--color_ui_dark);
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius_max);
  color: var(--color_font_mid);
  position: absolute;
  right: 1rem;
  box-sizing: border-box;
  transition: all 0.3s;
  background-size: contain;
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion > .mwsc__article::after {
    top: 1em;
  }
}
.mwsc__articles.child--accordion > .mwsc__article:hover {
  background-color: #fafafa;
}
.mwsc__articles.child--accordion > .mwsc__article:hover::after {
  background-color: var(--color_ui_dark_hover);
}
.mwsc__articles.child--accordion > .mwsc__article.open {
  border-radius: var(--SN-Radius-8) var(--SN-Radius-8) 0px 0px;
  border-bottom: 1px solid var(--SN-Color-Border-Neutral-Subtle, #d8dddf);
  background: var(--SN-Color-Background-Neutral-Subtle, #f6f7f8);
}
.mwsc__articles.child--accordion > .mwsc__article.open ~ .mwsc__articles {
  display: grid;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion > .mwsc__article.open ~ .mwsc__articles {
    place-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion > .mwsc__article.open ~ .mwsc__articles {
    max-width: 90vw;
  }
}
.mwsc__articles.child--accordion > .mwsc__article.open::after {
  content: "";
  background-image: url("/~/media/img/common/icon/icon_caret_close_w.svg");
  background-color: var(--SN-Color-Background-Neutral-Solid--Enable);
}
.mwsc__articles.child--accordion > .mwsc__article.open:hover::after {
  background-color: var(--color_ui_mid_hover);
}
.mwsc__articles.child--accordion .mwsc__articles {
  max-width: unset;
}
.mwsc__articles.child--accordion .mwsc__articles .mwsc__article {
  gap: 1.6rem !important;
}
.mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h2 {
  font-size: var(--SN-Contents-Title-M-Font-size);
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h2 {
    font-size: var(--SN-Font-size-40);
  }
}
.mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h3 {
  font-size: var(--SN-Contents-Title-S-Font-size);
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h3 {
    font-size: var(--SN-Font-size-30);
  }
}
.mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h4 {
  font-size: var(--SN-Contents-Subtitle-M-Font-size);
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion .mwsc__article .mwsc__article_header h4 {
    font-size: var(--SN-Font-size-30);
  }
}
.mwsc__articles.child--accordion .mwsc__article .mwsc__article_text_note {
  margin-top: var(--SN-Contents-Spacing-Body-M);
}
.mwsc__articles.child--accordion.layer--1 {
  border-top: 1px solid var(--SN-Color-Border-subtle);
  gap: 0;
  max-width: var(--mwsc__max-width-content);
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.layer--1 {
    padding-top: var(--SN-Contents-Spacing-Section-M) !important;
    padding-bottom: var(--SN-Contents-Spacing-Section-L) !important;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion.layer--1 {
    padding-top: 2.4rem !important;
    padding-bottom: calc(var(--mwsc__clear-space-content_sp--h) * 1.6) !important;
  }
}
.mwsc__articles.child--accordion.layer--1::before {
  top: var(--SN-Contents-Spacing-Section-M);
  margin-top: 0;
  height: calc(100% - var(--SN-Contents-Spacing-Section-M) - var(--SN-Contents-Spacing-Section-L));
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion.layer--1::before {
    top: 2.4rem;
    height: calc(100% - 2.4rem - var(--mwsc__clear-space-content_sp--h) * 1.6);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.child--none {
    grid-template-columns: repeat(1, 95rem);
  }
}
.mwsc__articles.child--accordion.child--none .mwsc__articles {
  width: auto;
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.child--none .mwsc__articles {
    padding: 2.4rem 4.8rem;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.child--2 {
    grid-template-areas: "article article";
    grid-template-columns: repeat(2, 46.7rem);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.child--3 {
    grid-template-areas: "article article article";
    grid-template-columns: repeat(3, 30.6rem);
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.child--accordion.child--4 {
    grid-template-areas: "article article article article";
    grid-template-columns: repeat(4, 22.6rem);
  }
}
.mwsc__articles.child--accordion.child--2 .mwsc__articles, .mwsc__articles.child--accordion.child--3 .mwsc__articles, .mwsc__articles.child--accordion.child--4 .mwsc__articles {
  box-shadow: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 1.6rem;
}
@media screen and (max-width: 599px) {
  .mwsc__articles.child--accordion.child--2, .mwsc__articles.child--accordion.child--3, .mwsc__articles.child--accordion.child--4 {
    grid-template-columns: 1fr;
    grid-template-areas: "article";
  }
}

/**
 * テキスト段組み修飾子 (column--*):
 * .mwsc__article_text_body内のテキストを複数カラムで表示します。
 * CSSの `columns` プロパティを使用しています。
 */
@media screen and (min-width: 600px) {
  .mwsc__articles.column--2 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body {
    -moz-columns: 2;
         columns: 2;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.column--3 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body {
    -moz-columns: 3;
         columns: 3;
  }
}
@media screen and (min-width: 600px) {
  .mwsc__articles.column--4 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body {
    -moz-columns: 4;
         columns: 4;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__articles.column--4 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body {
    -moz-columns: 2;
         columns: 2;
  }
}
.mwsc__articles.column--2 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body > *, .mwsc__articles.column--3 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body > *, .mwsc__articles.column--4 > .mwsc__article > .mwsc__article_text > .mwsc__article_text_body > * {
  width: auto;
}

/**
 * 記事コンポーネント (.mwsc__article):
 * サイトの主要なコンテンツブロックのスタイルです。
 * CSS Gridを使用して、ヘッダー、画像、テキスト、テーブルなどの内部要素を配置します。
 * このコンポーネントがコンテンツの最小単位となります。
 */
.mwsc__article {
  grid-area: article;
  margin: 0 auto;
  display: grid;
  gap: var(--SN-Contents-Spacing-Section-M);
  justify-content: stretch;
  justify-items: center;
  align-items: center;
  width: 100%;
  /**
   * 記事ヘッダー (.mwsc__article_header): 見出しなどが入ります。
   */
  /**
   * 記事画像エリア (.mwsc__article_img): 画像や画像のリストを配置します。
   */
  /**
   * 記事テキストエリア (.mwsc__article_text): 本文や注釈などが入ります。
   */
  /**
   * 記事テーブルエリア (.mwsc__article_table): テーブルを配置します。
   */
}
@media screen and (max-width: 599px) {
  .mwsc__article {
    gap: var(--SN-Contents-Spacing-Body-M);
    word-break: break-word;
  }
}
.mwsc__article.tbl--none {
  grid-template-areas: "article_header" "article_img" "article_text";
}
.mwsc__article:not(.tbl--none) {
  grid-template-areas: "article_header" "article_img" "article_text" "article_table";
}
.mwsc__article_header {
  grid-area: article_header;
}
.mwsc__article_header.unlabeled {
  display: none;
}
.mwsc__article_img {
  grid-area: article_img;
  width: 100%;
}
.mwsc__article_img ul {
  display: grid;
  gap: var(--SN-Contents-Spacing-Body-M);
  margin: 0;
  padding: 0;
  justify-content: center; /*strech*/
  justify-items: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .mwsc__article_img ul {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  }
}
.mwsc__article_img ul li {
  list-style: none;
  width: 100%;
}
.mwsc__article_img ul li P {
  font-size: var(--SN-Font-size-5);
  text-align: center;
  margin: 0 auto;
}
.mwsc__article_text {
  grid-area: article_text;
  text-align: center;
  width: 100%;
}
.mwsc__article_text_body {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: var(--mwsc__max-width-txt);
  margin-left: auto;
  margin-right: auto;
}
.mwsc__article_text_body p {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  font-size: var(--SN-Contents-Body-M-Font-size);
  line-height: var(--SN-Line-height-L);
  font-weight: var(--SN-Font-weight-Reg);
  letter-spacing: var(--SN-Letter-spacing-S);
  font-feature-settings: "palt" off;
}
.mwsc__article_text_body ul,
.mwsc__article_text_body ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: var(--mwsc__max-width-txt);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .mwsc__article_text_body ul,
.mwsc__article_text_body ol {
    margin-left: 0rem;
  }
}
.mwsc__article_text_body li {
  margin: 0 0 0.5em 2em;
  list-style: initial;
}
.mwsc__article_text_body ol li {
  list-style: decimal;
}
.mwsc__article_text p:first-of-type {
  margin-top: 0;
}
.mwsc__article_text_note {
  font-size: var(--SN-Contents-Caption-M-Font-size);
  line-height: var(--SN-Line-height-S);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: var(--mwsc__max-width-txt);
  margin: 0 auto;
  text-align: left;
}
.mwsc__article_text_note p {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  letter-spacing: var(--SN-Letter-spacing-S);
  font-feature-settings: "palt" off;
}
.mwsc__article_text_body + .mwsc__article_text_note {
  margin-top: 2em;
}
.mwsc__article_table {
  grid-area: article_table;
  max-width: 100%;
}
.mwsc__article_table > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mwsc__image > input[type=checkbox] {
  display: none;
}

/**
 * 画像・動画コンポーネント (.mwsc__image):
 * 画像や動画の表示スタイルを定義します。チェックボックスを利用したモーダル表示機能も含まれます。
 */
.mwsc__image {
  /**
   * Youtube埋め込み動画: アスペクト比を16:9に保ちます。
   */
  /**
   * 画像ポップアップの制御:
   * チェックボックス(.mwsc__image_cb)の状態に応じてモーダルウィンドウの表示/非表示を切り替えます。
   */
}
.mwsc__image img {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.mwsc__image .mwsc__image_image {
  /*
  display: grid;
  place-items: center;
  */
  /**
   * 画像モーダル: クリック時に画像を画面全体にポップアップ表示します。
   */
}
.mwsc__image .mwsc__image_image--modal {
  position: fixed;
  display: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
}
.mwsc__image .mwsc__image_movie {
  width: 100%;
  aspect-ratio: 16/9;
}
.mwsc__image .mwsc__image_cb + figure label {
  cursor: pointer;
}
.mwsc__image .mwsc__image_cb:checked + figure .mwsc__image_image--modal {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 2em;
}
.mwsc__image .mwsc__image_cb:checked + figure .mwsc__image_image--modal > img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.mwsc__image .mwsc__image_cb:checked + figure .mwsc__image_image--modal > video {
  width: 100%;
  max-width: 160rem;
  height: auto;
}
.mwsc__image .mwsc__image_cb + figure .mwsc__image_image {
  position: relative;
}
.mwsc__image .mwsc__image_cb + figure .mwsc__image_image::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(/~/media/img/common/icon/ZOOM.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/**
 * テーブルスタイル:
 * .mwsc__article_table 内のテーブルは、横幅がはみ出した場合にスクロールできるように設定されています。
 */
.mwsc__article_table {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1em;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.mwsc__article_table::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
.mwsc__article_table::-webkit-scrollbar-thumb {
  background: var(--color_ui_mid);
  border-radius: 100vh;
  border: 0.1rem solid transparent;
  background-clip: padding-box;
  height: 0.4rem;
}
.mwsc__article_table::-webkit-scrollbar-track {
  background: var(--color_ui_light);
  border-radius: 100vh;
}
.mwsc__article_table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 600px) {
  .mwsc__article_table table {
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .mwsc__article_table table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.mwsc__article_text_body table {
  max-width: var(--width_max_pc_l);
  display: block;
  overflow-x: auto;
  padding: 1em;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 599px) {
  .mwsc__article_text_body table {
    width: calc(100vw - 2em);
  }
}
.mwsc__article_text_body table::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
.mwsc__article_text_body table::-webkit-scrollbar-thumb {
  background: var(--color_ui_mid);
  border-radius: 100vh;
  border: 0.1rem solid transparent;
  background-clip: padding-box;
  height: 0.4rem;
}
.mwsc__article_text_body table::-webkit-scrollbar-track {
  background: var(--color_ui_light);
  border-radius: 100vh;
}

/**
 * テーブル共通スタイル: th, tdのボーダーやパディングなどを定義します。
 */
.mwsc__article_table table th,
.mwsc__article_table table td,
.mwsc__article_text_body table th,
.mwsc__article_text_body table td {
  text-align: left;
  padding: 0.2em 1em;
  border: 0.1rem solid var(--color_border_dark);
  font-weight: normal;
  white-space: inherit;
}
.mwsc__article_table table UL,
.mwsc__article_table table OL,
.mwsc__article_text_body table UL,
.mwsc__article_text_body table OL {
  margin-left: 1.5em;
}
.mwsc__article_table table > LI,
.mwsc__article_text_body table > LI {
  margin-left: 1.5em;
  font-size: 11px;
}
.mwsc__article_table table tbody,
.mwsc__article_text_body table tbody {
  width: 100%;
  display: table-row-group;
}
.mwsc__article_table table thead,
.mwsc__article_text_body table thead {
  display: table-header-group;
}
.mwsc__article_table table tfoot,
.mwsc__article_text_body table tfoot {
  display: table-footer-group;
}
.mwsc__article_table table.dTbl td,
.mwsc__article_text_body table.dTbl td {
  background-color: #fff;
}
.mwsc__article_table table.dTbl th,
.mwsc__article_text_body table.dTbl th {
  background-color: var(--color_ui_light);
}

/**
 * アイコンバッジ:
 * "NEW", "power up", "update" などのテキストバッジのスタイルです。
 */
.mwsc__article .icon--new {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
.mwsc__article .icon--new::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
.mwsc__article .icon--new::before {
  content: "NEW";
}
.mwsc__article .icon--pow {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
.mwsc__article .icon--pow::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
.mwsc__article .icon--pow::before {
  content: "power up";
}
.mwsc__article .icon--upd {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
.mwsc__article .icon--upd::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
.mwsc__article .icon--upd::before {
  content: "update";
}

/**
 * PCスペックアイコンリスト:
 * PCのスペック（CPU, メモリなど）を一覧表示するための特殊なコンポーネントのスタイルです。
 */
.icon_pc_spec__list {
  display: flex;
  justify-content: center;
  list-style: none;
  width: 98rem;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .icon_pc_spec__list {
    flex-wrap: wrap;
    width: 100%;
  }
}
.icon_pc_spec__list li {
  color: #fff;
  font-size: var(--size_txt_s);
  border-radius: var(--radius_s);
  padding: 0.5em;
  box-sizing: border-box;
  width: 14rem;
  margin: 0.5em 0.25em;
  text-align: center;
  list-style: none;
}
@media screen and (max-width: 599px) {
  .icon_pc_spec__list li {
    width: 100%;
    display: flex;
    margin: 0.1em;
  }
}
.icon_pc_spec__list li::before {
  content: "";
  display: block;
  font-weight: bold;
  font-size: var(--size_h_xs);
  border-bottom: 1px solid #fff;
  padding-bottom: 0.25em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 599px) {
  .icon_pc_spec__list li::before {
    border-bottom: 0;
    width: 12em;
    border-right: 1px solid #fff;
    padding-right: 0.5em;
    margin-right: 1em;
  }
}
.icon_pc_spec__list li > span {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .icon_pc_spec__list li > span {
    width: 100%;
  }
}
.icon_pc_spec__list li.spec_on {
  background: #4693d0;
}
.icon_pc_spec__list li.spec_off {
  background: #c9c9c9;
}
.icon_pc_spec__list li.spec_display::before {
  content: "液晶サイズ";
}
.icon_pc_spec__list li.spec_cpu::before {
  content: "CPU";
}
.icon_pc_spec__list li.spec_memory::before {
  content: "メモリ容量";
}
.icon_pc_spec__list li.spec_storage::before {
  content: "ストレージ容量";
}
.icon_pc_spec__list li.spec_os::before {
  content: "OS";
}
.icon_pc_spec__list li.spec_office::before {
  content: "Office";
}
.icon_pc_spec__list li.spec_drive::before {
  content: "ドライブ";
}

main .product__hero_image > picture,
main .product__hero_image > video {
  width: 100%;
}
main .product__hero_image > video {
  max-width: var(--width_max_pc_m);
}
main .product__hero_image > video.mwsc__hero_image {
  background-color: var(--mwsc__catch_image_bg, transparent);
}
@media screen and (max-width: 599px) {
  main .product__hero_image > video.mwsc__hero_image {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (min-width: 600px) {
  main .product__hero_image > video.mwsc__hero_image {
    opacity: 0;
    -webkit-animation: heroFadeIn 0.4s ease-in 1s both;
            animation: heroFadeIn 0.4s ease-in 1s both;
  }
}
@-webkit-keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main .product__hero_image .mwsc__hero_image {
  background: var(--mwsc__catch_image_bg) center/contain no-repeat;
}
main .product__hero_image .mwsc__hero_image.mw__bg-repeat {
  background-repeat: repeat;
}
main .product__hero_image .mwsc__hero_image.mw__bg-repeat-x-top {
  background-repeat: repeat-x;
  background-position: top;
}
main .product__hero_image .mwsc__hero_image.mw__bg-repeat-x-bottom {
  background-repeat: repeat-x;
  background-position: bottom;
}
main .product__hero_image .mwsc__hero_image.mw__bg-cover {
  background-size: cover;
}
main .product__hero_image .mwsc__hero_image.mw__bg-contain {
  background-size: contain;
}
main .mwsc__page_selector_container .mwsc__articles:has(.mw__child_style--slide) {
  padding: 2rem;
}
main .mwsc__page_selector_container .mwsc__articles:has(.mwsc__image_cb:checked) {
  position: relative;
  z-index: 5002 !important;
}
main .mwsc__page_selector_container .mw__child_style--slide {
  overflow-x: auto !important;
  max-width: 100% !important;
  padding-bottom: 0.8rem !important;
  display: flex !important;
  justify-content: flex-start !important;
  -webkit-overflow-scrolling: touch;
}
main .mwsc__page_selector_container .mw__child_style--slide > * {
  width: 28rem !important;
  flex: none !important;
  padding: 1.6rem !important;
  border-radius: var(--SN-Radius-8, 8px);
  box-sizing: border-box !important;
  height: -webkit-fill-available !important;
}
main .mwsc__page_selector_container .mw__child_style--slide::-webkit-scrollbar {
  height: 2.4rem;
}
main .mwsc__page_selector_container .mw__child_style--slide::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 0.8rem;
}
main .mwsc__page_selector_container .mw__child_style--slide::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0.8rem;
  border: 0.2rem solid #e0e0e0;
}
main .mwsc__page_selector_container .mw__child_style--slide::-webkit-scrollbar-thumb:hover {
  background: #555;
}
main .mwsc__page_selector_container .mw__child_style--bayer > .mwsc__article > .mwsc__article_text {
  border-radius: 1.6rem;
  box-shadow: var(--shadow_light);
  border: 4px solid var(--SN-Color-Border-Primary-Subtle) !important;
  gap: 0;
  padding: 3.2rem 4rem !important;
  margin-bottom: 4rem;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-050-r > .mwsc__article > .mwsc__article_text::before, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-040-r > .mwsc__article > .mwsc__article_text::before, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-020-r > .mwsc__article > .mwsc__article_text::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 1.5rem 2rem 1.5rem 0;
    border-color: transparent var(--SN-Color-Border-Primary-Subtle) transparent transparent;
    translate: 100%;
    rotate: 180deg;
  }
  main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-050-r > .mwsc__article > .mwsc__article_text::after, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-040-r > .mwsc__article > .mwsc__article_text::after, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-020-r > .mwsc__article > .mwsc__article_text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: 1rem 1.33rem 1rem 0;
    border-color: transparent #ffffff transparent transparent;
    translate: 100% 25%;
    rotate: 180deg;
  }
  main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-050 > .mwsc__article > .mwsc__article_text::before, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-040 > .mwsc__article > .mwsc__article_text::before, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-020 > .mwsc__article > .mwsc__article_text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 1.5rem 2rem 1.5rem 0;
    border-color: transparent var(--SN-Color-Border-Primary-Subtle) transparent transparent;
    translate: -100% -50%;
  }
  main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-050 > .mwsc__article > .mwsc__article_text::after, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-040 > .mwsc__article > .mwsc__article_text::after, main .mwsc__page_selector_container .mw__child_style--bayer.img--x1-020 > .mwsc__article > .mwsc__article_text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 1rem 1.33rem 1rem 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mw__child_style--bayer > .mwsc__article > .mwsc__article_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 1.5rem 2rem 1.5rem;
    border-color: transparent transparent var(--SN-Color-Border-Primary-Subtle);
    translate: -50% -100%;
  }
  main .mwsc__page_selector_container .mw__child_style--bayer > .mwsc__article > .mwsc__article_text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 1rem 1.33rem 1rem;
    border-color: transparent transparent #ffffff;
    translate: -50% -100%;
  }
}
main .mwsc__page_selector_container .mw__child_style--faq {
  background-color: var(--color_ui_light) !important;
  width: 100% !important;
}
main .mwsc__page_selector_container .mw__child_style--faq .layer--2 > .mwsc__article {
  padding: 2rem;
  box-sizing: border-box;
  max-width: 80rem;
  box-shadow: var(--shadow_light);
  border-radius: var(--SN-Radius-8);
  background-color: #fff;
}
main .mwsc__page_selector_container .mw__child_style--faq .mwsc__article_header h3,
main .mwsc__page_selector_container .mw__child_style--faq .mwsc__article_text_body p:first-child {
  font-size: var(--SN-Contents-Title-S-Font-size) !important;
  font-weight: var(--SN-Font-weight-Med) !important;
}
main .mwsc__page_selector_container .mw__child_style--faq .mwsc__article_header h3 {
  border-bottom: 1px solid #666;
  text-align: left;
}
main .mwsc__page_selector_container .mw__child_style--faq .mwsc__article_header h3:first-letter {
  color: var(--SN-PMcolor-Teal-10);
}
main .mwsc__page_selector_container .mw__child_style--faq .mwsc__article_text_body p:first-child:first-letter {
  color: var(--SN-PMcolor-Azure-10);
}
main .mwsc__page_selector_container .mw__child_style--faq .layer--2 .mwsc__article {
  justify-items: left;
}
main .mwsc__page_selector_container .mw__child_style--faq .layer--2 .mwsc__article ul {
  margin-left: 0;
}
main .mwsc__page_selector_container .mwsc__articles {
  --mwsc__background_image--color: initial;
  --mwsc__background_image: initial;
  --mwsc__background_image--sp: initial;
}
main .mwsc__page_selector_container .mwsc__articles.layer--1, main .mwsc__page_selector_container .mwsc__articles.layer--2, main .mwsc__page_selector_container .mwsc__articles.layer--3 {
  background: var(--mwsc__background_image--color);
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"]), main .mwsc__page_selector_container .mwsc__articles.layer--2[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"]), main .mwsc__page_selector_container .mwsc__articles.layer--3[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"]) {
    background: var(--mwsc__background_image) no-repeat center;
    background-size: cover;
  }
  main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--2[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--3[style*="--mwsc__background_image"]:not([class*=mw__bg-]):not([style*="--mwsc__background_image--color"]):not([style*="--mwsc__background_image--sp"])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) no-repeat center, var(--mwsc__background_image--color);
    background-size: cover, auto;
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-]), main .mwsc__page_selector_container .mwsc__articles.layer--2[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-]), main .mwsc__page_selector_container .mwsc__articles.layer--3[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-]) {
    background: var(--mwsc__background_image--sp) no-repeat center;
    background-size: cover;
  }
  main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--2[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--3[style*="--mwsc__background_image--sp"]:not([class*=mw__bg-])[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) no-repeat center, var(--mwsc__background_image--color);
    background-size: cover, auto;
  }
}
main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--2[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]), main .mwsc__page_selector_container .mwsc__articles.layer--3[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
  padding: 4rem 1.6rem;
  box-sizing: border-box;
}
main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) > .mwsc__article {
  border-top: none;
}
main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) ~ .mwsc__articles.layer--1 > .mwsc__article {
  border-top: none;
}
main .mwsc__page_selector_container .mwsc__articles.layer--1[style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) ~ .mwsc__articles.layer--1:not([style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"])) ~ .mwsc__articles.layer--1 > .mwsc__article {
  border-top: 1px solid var(--SN-Color-Border-subtle);
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat[style*="--mwsc__background_image"] {
    background: var(--mwsc__background_image) repeat center;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat[style*="--mwsc__background_image"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) repeat center, var(--mwsc__background_image--color);
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat[style*="--mwsc__background_image--sp"] {
    background: var(--mwsc__background_image--sp) repeat center;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat[style*="--mwsc__background_image--sp"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) repeat center, var(--mwsc__background_image--color);
  }
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-top[style*="--mwsc__background_image"] {
    background: var(--mwsc__background_image) repeat-x top;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-top[style*="--mwsc__background_image"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) repeat-x top, var(--mwsc__background_image--color);
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-top[style*="--mwsc__background_image--sp"] {
    background: var(--mwsc__background_image--sp) repeat-x top;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-top[style*="--mwsc__background_image--sp"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) repeat-x top, var(--mwsc__background_image--color);
  }
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-bottom[style*="--mwsc__background_image"] {
    background: var(--mwsc__background_image) repeat-x bottom;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-bottom[style*="--mwsc__background_image"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) repeat-x bottom, var(--mwsc__background_image--color);
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-bottom[style*="--mwsc__background_image--sp"] {
    background: var(--mwsc__background_image--sp) repeat-x bottom;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-bottom[style*="--mwsc__background_image--sp"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) repeat-x bottom, var(--mwsc__background_image--color);
  }
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-cover[style*="--mwsc__background_image"] {
    background: var(--mwsc__background_image) no-repeat center;
    background-size: cover;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-cover[style*="--mwsc__background_image"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) no-repeat center, var(--mwsc__background_image--color);
    background-size: cover, auto;
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-cover[style*="--mwsc__background_image--sp"] {
    background: var(--mwsc__background_image--sp) no-repeat center;
    background-size: cover;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-cover[style*="--mwsc__background_image--sp"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) no-repeat center, var(--mwsc__background_image--color);
    background-size: cover, auto;
  }
}
@media screen and (min-width: 600px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-contain[style*="--mwsc__background_image"] {
    background: var(--mwsc__background_image) no-repeat center;
    background-size: contain;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-contain[style*="--mwsc__background_image"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image) no-repeat center, var(--mwsc__background_image--color);
    background-size: contain, auto;
  }
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-contain[style*="--mwsc__background_image--sp"] {
    background: var(--mwsc__background_image--sp) no-repeat center;
    background-size: contain;
  }
  main .mwsc__page_selector_container .mwsc__articles.mw__bg-contain[style*="--mwsc__background_image--sp"][style*="--mwsc__background_image--color"]:not([style*="--mwsc__background_image--color: initial"]) {
    background: var(--mwsc__background_image--sp) no-repeat center, var(--mwsc__background_image--color);
    background-size: contain, auto;
  }
}
main .mwsc__page_selector_container .mwsc__articles {
  color: var(--mwsc__text_color);
}
main .mwsc__page_selector_container .mwsc__articles header h2,
main .mwsc__page_selector_container .mwsc__articles header h3,
main .mwsc__page_selector_container .mwsc__articles header h4 {
  color: var(--mwsc__text_color);
}
main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat {
  background-repeat: repeat;
}
main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-top {
  background-position: top;
  background-repeat: repeat-x;
}
main .mwsc__page_selector_container .mwsc__articles.mw__bg-repeat-x-bottom {
  background-position: bottom;
  background-repeat: repeat-x;
}
main .mwsc__page_selector_container .mwsc__articles.mw__bg-cover {
  background-size: cover;
  background-position: center;
}
main .mwsc__page_selector_container .mwsc__articles.mw__bg-contain {
  background-size: contain;
  background-repeat: no-repeat;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img {
  width: 100%;
  overflow: hidden;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  padding: 2rem;
  margin: 0;
  background: #f0f0f0;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img ul::-webkit-scrollbar {
  height: 2.4rem;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img ul::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 0.8rem;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img ul::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0.8rem;
  border: 0.2rem solid #e0e0e0;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide .mwsc__article_img ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide li.mwsc__image {
  flex: 0 0 auto;
  width: 30rem;
  margin-right: 1.5rem;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide li.mwsc__image:last-child {
  margin-right: 0;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide li.mwsc__image figure {
  margin: 0;
  padding: 0;
  position: relative;
}
main .mwsc__page_selector_container .mwsc__articles.img--slide li.mwsc__image figure img {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}
main .mwsc__page_selector_container .mwsc__articles.child--none .mw__title_icons--original::before, main .mwsc__page_selector_container .mwsc__articles.child--1 .mw__title_icons--original::before, main .mwsc__page_selector_container .mwsc__articles.child--2 .mw__title_icons--original::before {
  width: 6.4rem;
  height: 6.4rem;
}
main .mwsc__page_selector_container .mwsc__articles.child--3 .mw__title_icons--original::before, main .mwsc__page_selector_container .mwsc__articles.child--4 .mw__title_icons--original::before {
  width: 4.8rem;
  height: 4.8rem;
}
main .mwsc__page_selector_container .mwsc__articles .mw__title_icons--original {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
main .mwsc__page_selector_container .mwsc__articles .mw__title_icons--original::before {
  content: "";
  display: block;
  background-image: var(--mwsc__name_icon--image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 599px) {
  main .mwsc__page_selector_container .mwsc__articles .mw__title_icons--original {
    flex-direction: column;
    justify-content: center;
  }
}
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--simple table {
  background: rgba(255, 255, 255, 0.5) !important;
}
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--simple table tr td {
  border-color: var(--mwsc__background_image--color) !important;
  background-image: linear-gradient(var(--mwsc__background_image--color), var(--mwsc__background_image--color)), linear-gradient(var(--mwsc__background_image--color), var(--mwsc__background_image--color)), linear-gradient(var(--mwsc__background_image--color), var(--mwsc__background_image--color)), linear-gradient(var(--mwsc__background_image--color), var(--mwsc__background_image--color)) !important;
  background-repeat: no-repeat !important;
  background-position: top, right, bottom, left !important;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100% !important;
  background-origin: padding-box !important;
}
main .mwsc__page_selector_container .mwsc__articles.mw__table_style--basic table,
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--basic table {
  padding: 0;
  margin: 3rem 0;
}
main .mwsc__page_selector_container .mwsc__articles.mw__table_style--basic table tr th,
main .mwsc__page_selector_container .mwsc__articles.mw__table_style--basic table tr td,
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--basic table tr th,
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--basic table tr td {
  border: none;
  border-top: 0.1rem solid var(--sn-blog-color-border-gray-light, #d5d5d5);
  border-bottom: 0.1rem solid var(--sn-blog-color-border-gray-light, #d5d5d5);
  font-size: var(--SN-Contents-Body-S-Font-size, 14px);
  line-height: 140%;
  padding: var(--SN-Space-16, 16px);
  height: unset;
  min-width: 16rem;
}
main .mwsc__page_selector_container .mwsc__articles.mw__table_style--basic table tr th,
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--basic table tr th {
  background: var(--sn-blog-color-table-thead, #e1ecf2);
}
main .mwsc__page_selector_container .mwsc__articles.mw__table_style--basic table:has(th:first-child:empty) td:first-child,
main .mwsc__page_selector_container .mwsc__articles .mw__table_style--basic table:has(th:first-child:empty) td:first-child {
  background: var(--sn-blog-color-table-th, #f0f6fa);
}
main .mwsc__page_selector_container .mw__align--left {
  text-align: left;
  justify-self: start;
}
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h1,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h2,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h3,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h4,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h5,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_header h6 {
  text-align: left;
}
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body ul,
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_note {
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}
main .mwsc__page_selector_container .mw__align--middle {
  text-align: center;
  justify-self: center;
}
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h1,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h2,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h3,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h4,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h5,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_header h6 {
  text-align: center;
}
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_text_body ul,
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_text_body ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
main .mwsc__page_selector_container .mw__align--middle.mwsc__article_text_note {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
main .mwsc__page_selector_container .mw__align--right {
  text-align: right;
  justify-self: end;
}
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h1,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h2,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h3,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h4,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h5,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_header h6 {
  text-align: right;
}
main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body ul,
main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body ol {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_note {
  width: 100%;
  margin-left: auto;
}
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body, main .mwsc__page_selector_container .mw__align--middle.mwsc__article_text_body, main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body {
  width: 100%;
}
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body p:has(.sn_btn--primary),
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body p:has(.sn_btn--secondary_light),
main .mwsc__page_selector_container .mw__align--left.mwsc__article_text_body p:has(.sn_btn--secondary_dark), main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body p:has(.sn_btn--primary),
main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body p:has(.sn_btn--secondary_light),
main .mwsc__page_selector_container .mw__align--right.mwsc__article_text_body p:has(.sn_btn--secondary_dark) {
  text-align: center;
}
main .mwsc__page_selector_container .mw__title_icons--new {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
main .mwsc__page_selector_container .mw__title_icons--new::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
main .mwsc__page_selector_container .mw__title_icons--new::before {
  content: "NEW";
}
main .mwsc__page_selector_container .mw__title_icons--powerup {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
main .mwsc__page_selector_container .mw__title_icons--powerup::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
main .mwsc__page_selector_container .mw__title_icons--powerup::before {
  content: "power up";
}
main .mwsc__page_selector_container .mw__title_icons--update {
  display: inline-flex;
  line-height: 1;
  font-size: 0;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}
main .mwsc__page_selector_container .mw__title_icons--update::before {
  display: block;
  line-height: 1.4;
  color: white;
  background-color: #b00;
  border-radius: 0.2rem;
  margin: auto 0.5em;
  padding: 0.1em 0.5em;
  font-size: var(--SN-Font-size-10);
  font-weight: 900;
}
main .mwsc__page_selector_container .mw__title_icons--update::before {
  content: "update";
}
main .mwsc__page_selector_container .mwsc__image .mwsc__image_image img,
main .mwsc__page_selector_container .mwsc__image .mwsc__image_image video {
  border-radius: var(--mwsc__border_radius);
}
main .mwsc__page_selector_container .mwsc__image .mwsc__image_image video {
  width: 100%;
}