@charset "UTF-8";
/*
|---------------------------------------------------------------
| Megabass Shop Contents
|---------------------------------------------------------------
*/
/*
 * パンくず （構造の変更不可）
------------------------------------------------*/
.mbsc-breadcrumbs {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  font-size: var(--mbs-breadcrumb-font-size);
  color: var(--mbs-breadcrumb-color-foreground);
  background: var(--mbs-breadcrumb-color-background);
}
@media (max-width: 750px) {
  .mbsc-breadcrumbs {
    white-space: nowrap;
    overflow-x: auto;
  }
}
.mbsc-breadcrumbs__list {
  width: 100%;
  max-width: calc(var(--mbs-container-maxwidth, 100%));
  margin: 0 auto;
  padding: 0;
}
.mbsc-breadcrumbs > span + .mbsc-breadcrumbs > span::before {
  margin: 0 0.25em;
}
.mbsc-breadcrumbs a {
  color: inherit;
}

/*
 * Title (NC pageTitle / CrossHead)
------------------------------------------------*/
.mbsc-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0 0 0.25em;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 4px solid #ccc;
}
@media (min-width: 750.02px) {
  .mbsc-title {
    font-size: clamp(20px, 2.67vw, 24px);
    margin-bottom: 1.25em;
    padding-bottom: 0.75em;
  }
}

.mbsc-subTitle {
  display: block;
  width: 100%;
  margin: 0 0 1em;
  padding: 0 0 0.25em;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 2px solid #ccc;
}
@media (min-width: 750.02px) {
  .mbsc-subTitle {
    font-size: 18px;
    margin-bottom: 1em;
    padding-bottom: 0.75em;
  }
}

/*
 * Article
------------------------------------------------*/
.mbsc-article {
  --mbs-container-maxwidth: 1000px;
  display: block;
  width: 100%;
  padding: clamp(25px, 3.33vw, 50px) 0;
}
.mbsc-article__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(10px, 1.33vw, 20px);
}
.mbsc-article__body {
  display: block;
  width: 100%;
  padding: clamp(10px, 1.33vw, 20px) 0 clamp(30px, 4vw, 60px);
}
.mbsc-article__footer {
  display: block;
  width: 100%;
}

.mbsc-article-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0.25em 0;
  font-size: 16px;
  font-weight: 800;
  line-height: inherit;
  border-bottom: 4px solid #ccc;
}
@media (min-width: 750.02px) {
  .mbsc-article-title {
    padding: 0;
    font-size: clamp(16px, 2.13vw, 26px);
    border: 0;
  }
}

.mbsc-article-date {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
}

.mbsc-article-nav {
  --mbs-border-color: #DDDDDD;
  width: 100%;
  padding: 5px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-style: solid;
  border-width: 1px 0 0;
  border-color: var(--mbs-border-color);
  font-size: 13px;
}
@media (min-width: 750.02px) {
  .mbsc-article-nav {
    --mbs-border-color: #858585;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background-image: linear-gradient(var(--mbs-border-color), var(--mbs-border-color));
    background-repeat: no-repeat;
    background-size: 1px 66.67%;
    background-position: center;
    border-style: solid;
    border-width: 1px 0;
    border-color: var(--mbs-border-color);
    font-size: 1em;
  }
}
.mbsc-article-nav__prev {
  display: block;
}
.mbsc-article-nav__next {
  display: block;
}
@media (min-width: 750.02px) {
  .mbsc-article-nav__prev {
    text-align: left;
  }
  .mbsc-article-nav__next {
    text-align: right;
  }
}

.mbsc-article-nav-link {
  display: block;
  padding: 4px 8px;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 750.02px) {
  .mbsc-article-nav-link {
    padding: 5px 0;
  }
}

.mbsc-article-nav__prev .mbsc-article-nav-link::before {
  content: "«";
}
.mbsc-article-nav__next .mbsc-article-nav-link::after {
  content: "»";
}

/*
 * NEWS
------------------------------------------------*/
.mbsc-newsPage {
  --mbs-container-maxwidth: 1200px;
  --mbs-nav-width: 150px;
  display: block;
  width: 100%;
  padding: clamp(25px, 3.33vw, 50px) 0;
}
.mbsc-newsPage__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(20px, 2.67vw, 40px);
}
.mbsc-newsPage__body {
  display: block;
  width: 100%;
}
.mbsc-newsPage__layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mbsc-newsPage__layout__nav {
  display: block;
  width: 100%;
  order: 1;
}
@media (max-width: 750px) {
  .mbsc-newsPage__layout__nav {
    display: none; /* 過去の仕様 */
  }
}
.mbsc-newsPage__layout__main {
  display: block;
  width: 100%;
}
@media (min-width: 750.02px) {
  .mbsc-newsPage__layout {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .mbsc-newsPage__layout__nav {
    order: 1;
    width: auto;
    flex: 0 0 var(--mbs-nav-width);
    max-width: var(--mbs-nav-width);
  }
  .mbsc-newsPage__layout__main {
    flex-grow: 1;
    flex-basis: 0;
  }
}

/*--------------- Nav ---------------*/
.mbsc-news-nav {
  --mbs-border-color: #ccc;
  --mbs-grid-gap: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--mbs-grid-gap);
  padding: 15px 0;
  border-style: solid;
  border-width: 1px 0;
  border-color: var(--mbs-border-color);
}

.mbsc-news-nav-group {
  display: block;
  width: 100%;
}
.mbsc-news-nav-group + .mbsc-news-nav-group {
  border-top: 1px solid var(--mbs-border-color);
}
.mbsc-news-nav-group__head {
  display: block;
  width: 100%;
  margin: 0 0 var(--mbs-grid-gap);
  padding: 0;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1.1em;
  font-weight: 600;
}
.mbsc-news-nav-group__body {
  display: block;
  width: 100%;
  margin: 0;
}
.mbsc-news-nav-group__body + .mbsc-news-nav-group__body {
  margin-top: var(--mbs-grid-gap);
}

/*--------------- Category ---------------*/
.mbsc-news-category {
  display: block;
  width: 100%;
  padding: round(0.35em, 1px) 0.5em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  color: var(--mbs-category-color, var(--mbs-color-foreground));
  background: var(--mbs-category-bgcolor, transparent);
  border: 1px solid var(--mbs-category-border-color, currentColor);
}

.mbsc-news-categoryNav {
  display: block;
  width: 100%;
}
.mbsc-news-categoryNav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 100px), 1fr));
  gap: var(--mbs-grid-gap);
}
.mbsc-news-categoryNav--all .mbsc-news-category {
  font-weight: 500;
}
.mbsc-news-categoryNav .mbsc-news-category {
  position: relative;
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.mbsc-news-categoryNav .mbsc-news-category.is-active::before {
  content: "";
  pointer-events: none;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375em 0 0.375em 0.5em;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  top: 0;
  left: 0.25em;
  bottom: 0;
  z-index: 1;
  margin: auto;
}

/*--------------- Archive ---------------*/
.mbsc-newsArchive-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  font-family: var(--mbs-font-family-en, inherit);
}
@media (min-width: 750.02px) {
  .mbsc-newsArchive-title {
    font-size: clamp(30px, 4vw, 36px);
  }
}

.mbsc-newsArchive-nav {
  display: block;
  width: 100%;
}
@media (min-width: 750.02px) {
  .mbsc-newsArchive-nav {
    display: none;
  }
}
.mbsc-newsArchive-nav .mbsc-news-nav {
  border: 0;
}
.mbsc-newsArchive-nav .mbsc-news-nav-group--category .mbsc-news-nav-group__head {
  display: none;
}
.mbsc-newsArchive-nav .mbsc-news-categoryNav__list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
}

.mbsc-newsArchive-pagination {
  --mbs-pager-size: 1.67em;
  --mbs-pager-gap: 0.83em;
  --mbs-pager-arrow-size: 15px;
  width: 100%;
  margin: 25px 0;
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 750.02px) {
  .mbsc-newsArchive-pagination {
    margin: 100px 0;
    font-size: 20px;
  }
}
.mbsc-newsArchive-pagination .wp-pagenavi {
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--mbs-pager-gap);
}
.mbsc-newsArchive-pagination .wp-pagenavi .pages {
  display: none;
}
.mbsc-newsArchive-pagination .wp-pagenavi a,
.mbsc-newsArchive-pagination .wp-pagenavi span {
  border: 0;
  padding: 8px;
  margin: 0;
  line-height: 0.8;
  display: block;
  flex: 0 0 auto;
  min-width: var(--mbs-pager-size);
  text-align: center;
}
.mbsc-newsArchive-pagination .wp-pagenavi .current {
  color: #ffffff;
  background: #000000;
}
.mbsc-newsArchive-pagination .wp-pagenavi .nextpostslink {
  font-size: 0;
}
.mbsc-newsArchive-pagination .wp-pagenavi .fs-c-pagination__item--prev::after,
.mbsc-newsArchive-pagination .wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  width: var(--mbs-pager-arrow-size);
  height: var(--mbs-pager-arrow-size);
  border-style: solid;
  border-color: currentColor;
}
.mbsc-newsArchive-pagination .wp-pagenavi .fs-c-pagination__item--prev::after {
  border-width: 2px 0 0 2px;
  transform: rotate(-45deg);
}
.mbsc-newsArchive-pagination .wp-pagenavi .nextpostslink::after {
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

/*--------------- Posts ---------------*/
.mbsc-news-posts {
  display: block;
}

.mbsc-news-post {
  container-type: inline-size;
  display: block;
  width: 100%;
  font-size: 14px;
  padding: 30px 0;
  border-bottom: 1px solid #d1d1d1;
}
.mbsc-news-post a {
  text-decoration: none;
}
.mbsc-news-post__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(15px, 2vw, 30px);
}
.mbsc-news-post__layout__image {
  width: 100%;
}
.mbsc-news-post__layout__body {
  width: 100%;
}
@media (min-width: 750.02px) {
  .mbsc-news-post__layout {
    display: flex;
    gap: 25px;
  }
  .mbsc-news-post__layout__image {
    width: auto;
    flex: 0 0 175px;
    max-width: 175px;
  }
  .mbsc-news-post__layout__body {
    width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
}

.mbsc-news-post__heading {
  width: 100%;
  margin: 0 0 0.5em;
  display: grid;
  grid-template-areas: "date _ category" "title title title";
  grid-template-columns: auto 1fr auto;
  align-items: flex-start;
  gap: 5px 15px;
}
@media (min-width: 750.02px) {
  .mbsc-news-post__heading {
    grid-template-areas: "category title date";
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
}
.mbsc-news-post__summary {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
}
@media (max-width: 750px) {
  .mbsc-news-post__summary {
    display: none;
  }
}

.mbsc-news-post-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 175/107;
  border: 1px solid #ddd;
}
.mbsc-news-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.mbsc-news-post-contents {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mbsc-news-post-title {
  grid-area: title;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@container (min-width: 500.02px) {
  .mbsc-news-post-title {
    padding: 0.35em 0;
  }
}

.mbsc-news-post-category {
  grid-area: category;
  display: block;
  min-width: 6em;
}

.mbsc-news-post-date {
  grid-area: date;
  align-self: center;
  display: block;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1em;
  font-weight: 500;
  white-space: nowrap;
}
@container (min-width: 500.02px) {
  .mbsc-news-post-date {
    padding: 0.35em 0;
  }
}

.mbsc-news-post-summary {
  width: 100%;
  margin: 0 0 0.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.mbsc-news-post-more {
  display: block;
  width: 100%;
  text-align: right;
  margin: auto 0 0;
  font-family: var(--mbs-font-family-en, inherit);
  font-weight: 500;
}
.mbsc-news-post-more::before {
  content: ">";
  margin-right: 0.25em;
}

/*--------------- Article ---------------*/
.mbsc-newsArticle .mbsc-article {
  padding: 0;
}

/*
 * DIG UP
------------------------------------------------*/
.mbsc-digupArchive {
  --mbs-container-maxwidth: 1000px;
  display: block;
  width: 100%;
  padding: clamp(25px, 3.33vw, 50px) 0;
}
.mbsc-digupArchive__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(20px, 2.67vw, 40px);
}

.mbsc-digupArchive-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 29px;
  font-weight: bold;
  text-align: center;
}
.mbsc-digupArchive-title__main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1em;
  font-weight: 900;
}
.mbsc-digupArchive-title__sub {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--mbs-font-family-ja, var(--mbs-font-family-base, inherit));
  font-size: 0.45em;
  font-weight: 400;
}
.mbsc-digupArchive-title__main + .mbsc-digupArchive-title__sub {
  margin-top: 0.5em;
}
@media (min-width: 750.02px) {
  .mbsc-digupArchive-title {
    font-size: clamp(30px, 4vw, 36px);
  }
  .mbsc-digupArchive-title__main {
    font-size: 1em;
  }
  .mbsc-digupArchive-title__sub {
    font-size: 0.39em;
  }
}

.mbsc-digupArchive-pagination {
  width: 100%;
  margin: 25px 0;
}
@media (max-width: 750px) {
  .mbsc-digupArchive-pagination .wp-pagenavi {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
  }
  .mbsc-digupArchive-pagination .wp-pagenavi .first {
    /*  */
  }
  .mbsc-digupArchive-pagination .wp-pagenavi .previouspostslink {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mbsc-digupArchive-pagination .wp-pagenavi .pages {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
  }
  .mbsc-digupArchive-pagination .wp-pagenavi .nextpostslink {
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mbsc-digupArchive-pagination .wp-pagenavi .last {
    /*  */
  }
  .mbsc-digupArchive-pagination .wp-pagenavi span.current,
  .mbsc-digupArchive-pagination .wp-pagenavi span.extend,
  .mbsc-digupArchive-pagination .wp-pagenavi a.page {
    display: none;
  }
}

/*--------------- Posts ---------------*/
.mbsc-digup-posts {
  display: block;
}

.mbsc-digup-post {
  container-type: inline-size;
  display: block;
  width: 100%;
  font-size: 14px;
  padding: 30px 0;
  border-bottom: 1px solid #d1d1d1;
}
.mbsc-digup-post a {
  text-decoration: none;
}
.mbsc-digup-post__layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 750.02px) {
  .mbsc-digup-post__layout {
    flex-direction: row;
    gap: 25px;
  }
  .mbsc-digup-post__layout__date {
    width: auto;
    flex: 0 0 120px;
    max-width: 120px;
  }
  .mbsc-digup-post__layout__body {
    width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
}

.mbsc-digup-post__heading {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
}
.mbsc-digup-post__summary {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
}

.mbsc-digup-post-contents {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mbsc-digup-post-title {
  display: block;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
@container (min-width: 500.02px) {
  .mbsc-digup-post-title {
    padding: 0.35em 0;
  }
}

.mbsc-digup-post-date {
  grid-area: date;
  display: block;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1em;
  font-weight: 500;
  white-space: nowrap;
}
@container (min-width: 500.02px) {
  .mbsc-digup-post-date {
    padding: 0.35em 0;
  }
}

.mbsc-digup-post-summary {
  width: 100%;
  margin: 0 0 0.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.mbsc-digup-post-more {
  display: block;
  width: 100%;
  text-align: right;
  margin: auto 0 0;
  font-family: var(--mbs-font-family-en, inherit);
  font-weight: 500;
}
.mbsc-digup-post-more::before {
  content: ">";
  margin-right: 0.25em;
}

/*
 * FAQ
------------------------------------------------*/
.mbsc-faqs {
  --mbs-font-family-en: 'Oswald', var(--mbs-font-family-base);
}

.mbsc-faq {
  display: block;
  width: 100%;
}
.mbsc-faq__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(40px, 5.33vw, 80px);
}
.mbsc-faq__body {
  display: block;
  width: 100%;
}

/*--------------- Nav ---------------*/
.mbsc-faq-navs {
  display: block;
  width: 100%;
}
@media (max-width: 750px) {
  .mbsc-faq-navs {
    --mbs-border-color: #aaa;
    border-top: 1px solid var(--mbs-border-color);
  }
}
@media (min-width: 750.02px) {
  .mbsc-faq-navs {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

.mbsc-faq-nav {
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  display: block;
  width: 100%;
}
.mbsc-faq-nav__head {
  display: block;
  width: 100%;
  margin-bottom: 0.75em;
  padding: 0.5em 0.75em;
  font-size: 13px;
  color: #fff;
  background-color: #444444;
}
.mbsc-faq-nav__body {
  display: block;
  width: 100%;
  padding: 0 0.75em 1em;
}
@media (max-width: 750px) {
  .mbsc-faq-nav {
    --mbs-padding-x: 0.75em;
  }
  .mbsc-faq-nav__head {
    --mbs-mark-color: #ffffff;
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    padding: 0.75em calc(var(--mbs-padding-x) + 2em) 0.75em var(--mbs-padding-x);
    position: relative;
    border-bottom: 1px solid var(--mbs-border-color);
  }
  .mbsc-faq-nav__head::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: linear-gradient(var(--mbs-mark-color)), linear-gradient(var(--mbs-mark-color));
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 3px, 3px 100%;
    position: absolute;
    top: 0;
    right: var(--mbs-padding-x);
    bottom: 0;
    z-index: 2;
    margin: auto;
  }
  .mbsc-faq-nav__head:not(.is-active) {
    --mbs-mark-color: #acacac;
    color: #1e1e1e;
    background: #EEEEEE;
  }
  .mbsc-faq-nav__body {
    width: 100%;
    padding: 0 var(--mbs-padding-x);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    transition: grid-template-rows 0.2s ease-out;
    overflow: hidden;
  }
  .mbsc-faq-nav__head + .mbsc-faq-nav__body {
    grid-template-rows: 0fr;
  }
  .mbsc-faq-nav__head.is-active::after {
    background-size: 100% 3px, 3px 0%;
  }
  .mbsc-faq-nav__head.is-active + .mbsc-faq-nav__body {
    grid-template-rows: 1fr;
  }
}
.mbsc-faq-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
}
.mbsc-faq-nav__list__item {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
}
@media (max-width: 750px) {
  .mbsc-faq-nav__list__item {
    margin: 0;
    border-bottom: 1px solid #aaaaaa;
  }
}

.mbsc-faq-nav-link {
  clear: inherit;
  text-decoration: none;
}
.mbsc-faq-nav-link::before {
  content: "Q.";
  font-family: var(--mbs-font-family-en, inherit);
}
@media (max-width: 750px) {
  .mbsc-faq-nav-link {
    display: block;
    padding: 0.75em 2em 0.75em 0;
    position: relative;
  }
  .mbsc-faq-nav-link::after {
    content: "";
    display: block;
    width: 0.75em;
    height: 0.75em;
    border-style: solid;
    border-width: 3px 3px 0 0;
    border-color: #ccc;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0.75em;
    bottom: 0;
    z-index: 2;
    margin: auto;
  }
}

.mbsc-faq-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/*--------------- 詳細 ---------------*/
.mbsc-faq-group {
  display: block;
  width: 100%;
}
.mbsc-faq-group__head {
  display: block;
  width: 100%;
  margin: 0 0 1em;
  padding: 0 0 0.75em;
  border-bottom: 2px solid #cccccc;
  font-size: 18px;
  font-weight: bold;
}
.mbsc-faq-group__body {
  display: block;
  width: 100%;
}

.mbsc-faq-group-faqs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*--------------- 投稿 ---------------*/
.mbsc-faq-post {
  --mbs-padding-x: 10px;
  --mbs-qa-width: 2em;
  display: block;
  width: 100%;
}

.mbsc-faq-post-question {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin: 0 0 0.5em;
  padding: 0.5em var(--mbs-padding-x);
  font-size: 1.1em;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
}
.mbsc-faq-post-question::before {
  content: "Q.";
  font-family: var(--mbs-font-family-en, inherit);
  display: block;
  width: auto;
  flex: 0 0 var(--mbs-qa-width);
  max-width: var(--mbs-qa-width);
}

.mbsc-faq-post-answer {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin: 0;
  padding: 0.5em var(--mbs-padding-x);
}
.mbsc-faq-post-answer::before {
  content: "A.";
  font-family: var(--mbs-font-family-en, inherit);
  display: block;
  width: auto;
  flex: 0 0 var(--mbs-qa-width);
  max-width: var(--mbs-qa-width);
}
.mbsc-faq-post-answer a {
  color: var(--mbs-color-link, inherit);
  text-decoration: underline;
}
