/* maintag */
.static-main-contents {
  padding-top: 24px;
  width: 550px;
  margin: 0 auto;
}

@media screen and (max-width: 550px) {
  .static-main-contents {
    margin: 0;
    padding: 24px 32px 0;
    max-width: 550px;
    width: auto;
  }
}

/* white-box */
.mtg-white-box {
  background: white;
  padding: 16px;
  border-radius: 8px;
}

/* bullets list */
.mtg-bullets {
  padding: 0;
  list-style: none;
}

.mtg-bullets li {
  padding-left: 20px;
  position: relative;
}

.mtg-bullets li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mtg-midnight);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 4px;
}

.mtg-bullets li+li {
  margin-top: 8px;
}

.mtg-bullets.is-caption {
  font-size: var(--mtg-caption-s);
}

.mtg-bullets.is-caption li {
  padding-left: 16px;
}

.mtg-bullets.is-caption li:before {
  width: 4px;
  height: 4px;
  top: 9px;
  left: 4px;
}

.mtg-bullets.is-caption li+li {
  margin-top: 4px;
}

/* font */
.mtg-font-strong {
  font-size: var(--mtg-body-strong-s);
  font-weight: var(--mtg-body-strong-w);
}

/* colored UI component */
/* button UI with button tag */
.static-button-cta,
.static-button-alternative,
.static-button-back,
.static-button-sub {
  font-size: var(--mtg-button-s);
  font-weight: var(--mtg-button-w);
  width: 100%;
  outline: none;
}

.mtg-button-cta,
.mtg-button-alternative,
.mtg-button-back,
.mtg-button-sub {
  font-size: var(--mtg-button-s);
  font-weight: var(--mtg-button-w);
  width: 100%;
  outline: none;
}

/* button UI with a tag */
a.static-button-cta,
a.static-button-alternative,
a.static-button-back,
a.static-button-sub {
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: var(--mtg-button-s);
  font-weight: var(--mtg-button-w);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  outline: none;
}

.static-button-cta,
a.static-button-cta {
  color: white;
  background: var(--mtg-urbanblue);
}

.static-button-cta:hover,
.static-button-cta:focus,
.static-button-cta:active,
a.static-button-cta:hover,
a.static-button-cta:focus,
a.static-button-cta:active {
  background: var(--mtg-blue-1);
}

.static-button-cta:disabled,
a.static-button-cta.is-disabled {
  background: var(--mtg-grey-2);
  cursor: default;
  pointer-events: none;
}

.static-button-cta.is-external,
.static-button-alternative.is-external {
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-button-cta.is-external:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/ico/ico-externallink-body-cta.png) center center no-repeat;
  background-size: 20px;
  margin-left: 8px;
  margin-top: 2px;
}

.static-button-alternative.is-external:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/ico/ico-externallink-body-active.png) center center no-repeat;
  background-size: 20px;
  margin-left: 8px;
  margin-top: 2px;
}

.static-button-alternative,
a.static-button-alternative {
  color: var(--mtg-urbanblue);
  background: white;
  border: 1px solid var(--mtg-urbanblue);
}

.static-button-alternative:hover,
.static-button-alternative:focus,
.static-button-alternative:active,
a.static-button-alternative:hover,
a.static-button-alternative:focus,
a.static-button-alternative:active {
  color: var(--mtg-blue-1);
  background: var(--mtg-blue-4);
  border: 1px solid var(--mtg-blue-1);
}

.static-button-back,
a.static-button-back {
  color: var(--mtg-grey-1);
  background: transparent;
  border: 1px solid transparent;
}

.static-button-back:hover,
.static-button-back:active,
a.static-button-back:hover,
a.static-button-back:active {
  color: var(--mtg-midnight);
}

.static-button-back:hover {
  cursor: pointer;
}

.static-button-back:focus-visible,
a.static-button-back:focus-visible {
  border: 1px solid var(--mtg-blue-1);
}

.static-button-sub,
a.static-button-sub {
  color: var(--mtg-urbanblue);
  background: transparent;
  border: 1px solid transparent;
}

.static-button-sub:hover,
.static-button-sub:active,
a.static-button-sub:hover,
a.static-button-sub:active {
  color: var(--mtg-blue-1);
}

.static-button-sub:focus-visible,
a.static-button-sub:focus-visible {
  border: 1px solid var(--mtg-blue-1);
}

.wide-button {
  height: 100% !important;
  line-height: normal !important;
  min-height: 56px;
  padding: 0 4px;
}

a.mtg-button-cta,
a.mtg-button-alternative,
a.mtg-button-back,
a.mtg-button-sub {
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: var(--mtg-button-s);
  font-weight: var(--mtg-button-w);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  outline: none;
}

.mtg-button-cta,
a.mtg-button-cta {
  color: white;
  background: var(--mtg-urbanblue);
}

.mtg-button-cta:hover,
.mtg-button-cta:focus,
.mtg-button-cta:active,
a.mtg-button-cta:hover,
a.mtg-button-cta:focus,
a.mtg-button-cta:active {
  background: var(--mtg-blue-1);
}

.mtg-button-cta:disabled,
a.mtg-button-cta.is-disabled {
  background: var(--mtg-grey-2);
  cursor: default;
  pointer-events: none;
}

.mtg-button-cta.is-external {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtg-button-cta.is-external:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../../common/img/ico/ico-externallink-body-active.png) center center no-repeat;
  background-size: 20px;
  margin-left: 8px;
  margin-top: 2px;
}

/* 右＞付きリンク */
.mtg-link-with-arrow>a {
  font-weight: var(--mtg-body-w);
  font-size: var(--mtg-body-s);
}

.mtg-link-with-arrow-external-reg,
.mtg-link-with-arrow-external-lg,
.mtg-link-with-arrow-error-reg,
.mtg-link-with-arrow-error-lg,
.mtg-link-with-arrow-reg,
.mtg-link-with-arrow-lg {
  display: flex;
  align-items: center;
  width: fit-content;
}

.mtg-link-with-arrow-external-reg.is-inline,
.mtg-link-with-arrow-external-lg.is-inline,
.mtg-link-with-arrow-error-reg.is-inline,
.mtg-link-with-arrow-error-lg.is-inline,
.mtg-link-with-arrow-reg.is-inline,
.mtg-link-with-arrow-lg.is-inline {
  display: inline-flex;
}

.mtg-link-with-arrow-external-reg,
.mtg-link-with-arrow-error-reg,
.mtg-link-with-arrow-reg {
  font-size: var(--mtg-caption-s);
  font-weight: var(--mtg-caption-w);
}

.mtg-link-with-arrow-external-lg,
.mtg-link-with-arrow-error-lg,
.mtg-link-with-arrow-lg {
  font-size: var(--mtg-body-s);
  font-weight: var(--mtg-body-w);
}

.mtg-link-with-arrow-external-reg:hover,
.mtg-link-with-arrow-external-reg:focus,
.mtg-link-with-arrow-external-lg:hover,
.mtg-link-with-arrow-external-lg:focus,
.mtg-link-with-arrow-error-reg:hover,
.mtg-link-with-arrow-error-reg:focus,
.mtg-link-with-arrow-error-lg:hover,
.mtg-link-with-arrow-error-lg:focus,
.mtg-link-with-arrow-reg:hover,
.mtg-link-with-arrow-reg:focus,
.mtg-link-with-arrow-lg:hover,
.mtg-link-with-arrow-lg:focus {
  text-decoration: none;
}

.mtg-link-with-arrow-external-lg,
.mtg-link-with-arrow-reg,
.mtg-link-with-arrow-lg {
  color: var(--mtg-urbanblue);
}

.mtg-link-with-arrow-error-reg,
.mtg-link-with-arrow-error-lg {
  color: var(--mtg-live-red);
}

.mtg-link-with-arrow-external-reg:hover,
.mtg-link-with-arrow-external-reg:focus,
.mtg-link-with-arrow-external-lg:hover,
.mtg-link-with-arrow-external-lg:focus,
.mtg-link-with-arrow-reg:hover,
.mtg-link-with-arrow-reg:focus,
.mtg-link-with-arrow-lg:hover,
.mtg-link-with-arrow-lg:focus {
  color: var(--mtg-blue-1);
}

.mtg-link-with-arrow-error-reg:hover,
.mtg-link-with-arrow-error-reg:focus,
.mtg-link-with-arrow-error-lg:hover,
.mtg-link-with-arrow-error-lg:focus {
  color: var(--mtg-red-1);
}

/* >矢印マーク */
/* >のみ */
.mtg-arrow-right {
  display: inline-block;
  width: 8px;
  height: 13px;
  background: url(../img/ico/ico-arrowForward-thin-nomal-caption-active.png) center center no-repeat;
  background-size: 8px auto;
}

.mtg-arrow-right-gray {
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/ico/ico-arrowForward-thin-nomal-caption-active-gray.png) center center no-repeat;
  background-size: 14px auto;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

/* mtg-link-with-xxxの後ろじ自動付与 */
.mtg-link-with-arrow-external-reg::after,
.mtg-link-with-arrow-external-lg::after,
.mtg-link-with-arrow-error-reg::after,
.mtg-link-with-arrow-error-lg::after,
.mtg-link-with-arrow-reg::after,
.mtg-link-with-arrow-lg::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
}

.mtg-link-with-arrow-error-reg::after,
.mtg-link-with-arrow-reg::after {
  width: 8px;
  height: 13px;
  margin-top: 2px;
  margin-left: 4px;
}

.mtg-link-with-arrow-error-lg::after,
.mtg-link-with-arrow-lg::after {
  width: 9px;
  height: 16px;
  margin-left: 8px;
}

.mtg-link-with-arrow-reg::after {
  background: url(../img/ico/ico-arrowForward-thin-nomal-caption-active.png) center center no-repeat;
  background-size: 8px auto;
}

.mtg-link-with-arrow-reg:hover::after,
.mtg-link-with-arrow-reg:focus::after {
  background: url(../img/ico/ico-arrowForward-thin-nomal-caption-hover.png) center center no-repeat;
  background-size: 8px auto;
}

/* クイズ回答ポイントページの一部調整 */
.flex-box-variable .mtg-link-with-arrow-reg:hover::after,
.mtg-link-with-arrow-reg:focus::after {
  background: url(../img/ico/ico-arrowForward-thin-nomal-caption-hover.png) center 0px no-repeat;
  background-size: 8px auto;
}

.mtg-link-with-arrow-lg::after {
  background: url(../img/ico/ico-arrowForward-thin-nomal-body-active.png) center center no-repeat;
  background-size: 9px auto;
}

.mtg-link-with-arrow-lg:hover::after,
.mtg-link-with-arrow-lg:focus::after {
  background: url(../img/ico/ico-arrowForward-thin-nomal-body-hover.png) center center no-repeat;
  background-size: 9px auto;
}

.mtg-link-with-arrow-error-reg::after {
  background: url(../img/ico/ico-arrowForward-thin-error-caption-active.png) center center no-repeat;
  background-size: 8px auto;
}

.mtg-link-with-arrow-error-reg:hover::after,
.mtg-link-with-arrow-error-reg:focus::after {
  background: url(../img/ico/ico-arrowForward-thin-error-caption-hover.png) center center no-repeat;
  background-size: 8px auto;
}

.mtg-link-with-arrow-error-lg::after {
  background: url(../img/ico/ico-arrowForward-thin-error-body-active.png) center center no-repeat;
  background-size: 9px auto;
}

.mtg-link-with-arrow-error-lg:hover::after,
.mtg-link-with-arrow-error-lg:focus::after {
  background: url(../img/ico/ico-arrowForward-thin-error-body-hover.png) center center no-repeat;
  background-size: 9px auto;
}

.mtg-link-with-arrow-external-lg::after {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url(../img/ico/ico-externallink-body-active.png) center center no-repeat;
  background-size: contain;
}
.mtg-link-with-arrow-external-lg.ml-0::after {
  margin-left: 0px;
}

.mtg-link-with-arrow-external-lg:hover::after,
.mtg-link-with-arrow-external-lg:focus::after {
  background: url(../img/ico/ico-externallink-body-hover.png) center center no-repeat;
  background-size: contain;
}

.mtg-link-with-arrow-external-reg::after {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  background: url(../img/ico/ico-externallink-caption-active.png) center center no-repeat;
  background-size: contain;
}

.mtg-link-with-arrow-external-reg:hover::after,
.mtg-link-with-arrow-external-reg:focus::after {
  background: url(../img/ico/ico-externallink-caption-hover.png) center center no-repeat;
  background-size: contain;
}




/* 矢印の追加対応 */
.mtg-link-with-arrow-reg.siwper-arrow::after{
  width: 20px;
  height: 16px;
  background: url(../img/ico/arrow-right.png) center 0px no-repeat;
  background-size: auto 14px;
}
.mtg-link-with-arrow-reg.siwper-arrow:hover::after,
.mtg-link-with-arrow-reg.siwper-arrow:focus::after {
  background: url(../img/ico/arrow-right.png) center 0px no-repeat;
  background-size: auto 14px;
}

.siwper-arrow {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  color: var(--mtg-midnight);
  font-size: var(--mtg-body-s);
  font-weight: var(--mtg-body-w);
}

.siwper-arrow .mtg-link-with-arrow{
  color: var(--mtg-midnight);
  font-size: 14px;
}


/* button link (button, aどちらでもOK)*/
.mtg-button-link,
.mtg-button-link:focus,
.mtg-button-link:visited,
.mtg-button-link:active,
.mtg-button-link:hover {
  width: 100%;
  font-weight: var(--mtg-body-w);
  font-size: var(--mtg-body-s);
  color: var(--mtg-midnight);
  align-items: center;
  background: white;
  border-radius: 8px;
  position: relative;
  height: 56px;
  display: flex;
  text-decoration: none;
}

.mtg-button-link {
  padding: 8px 48px 8px 16px;
  position: relative;
}

.mtg-button-link>img {
  margin-right: 8px;
  height: 40px;
}

.mtg-button-link:after {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  background: url(../img/ico/ico-arrowForward.png) center center no-repeat;
  background-size: 40px;
  display: block;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
}

.mtg-button-link.is-external.is-furokoi::after {
  background: url(../img/ico/epxico-externallink-active-noscale.png) center center no-repeat;
}

.mtg-button-link:disabled,
.mtg-button-link.is-disabled {
  color: var(--mtg-grey-1);
  cursor: default;
  pointer-events: none;
}

.mtg-button-link:disabled:after,
.mtg-button-link.is-disabled:after {
  background: url(../img/ico/ico-arrowForward-disabled.png) center center no-repeat;
  background-size: 40px;
}

.mtg-button-link.is-external:after {
  width: 20px;
  height: 20px;
  background: url(../img/ico/ico-externallink-body-active.png) center center no-repeat;
  background-size: 20px;
  right: 14px;
}

.mtg-button-link.is-external:disabled:after,
.mtg-button-link.is-external.is-disabled:after {
  background: url(../img/ico/ico-externallink-body-disabled.png) center center no-repeat;
  background-size: 20px;
}

/* with badge */
.mtg-caution-h1 {
  padding-left: 36px;
  font-size: var(--mtg-h1-s);
  color: var(--mtg-live-red);
  position: relative;
}

.mtg-caution-h1:before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background: url(../img/ico/ico-caution-h1.png) center center no-repeat;
  background-size: 28px;
  position: absolute;
  top: 4px;
  left: 0;
}

.mtg-skyblue-check-h1 {
  padding-left: 36px;
  font-size: var(--mtg-h1-s);
  position: relative;
}

.mtg-skyblue-check-h1:before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background: url(../img/ico/ico-skyblue-check-h1.png) center center no-repeat;
  background-size: 26px;
  position: absolute;
  top: 6px;
  left: 0;
}

.mtg-alert-h3,
.mtg-caution-h3,
.mtg-attention-h3,
.mtg-check-h3 {
  padding-left: 32px;
  font-size: var(--mtg-h3-s);
  position: relative;
}

.mtg-alert-h3:before,
.mtg-caution-h3:before,
.mtg-attention-h3:before,
.mtg-check-h3:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.mtg-alert-h3:before {
  background: url(../img/ico/ico-alert-h3.png) center center no-repeat;
  background-size: 24px;
}

.mtg-caution-h3:before {
  background: url(../img/ico/ico-caution-h3.png) center center no-repeat;
  background-size: 24px;
}

.mtg-attention-h3:before {
  background: url(../img/ico/ico-attention-h3.png) center center no-repeat;
  background-size: 24px;
}

.mtg-check-h3:before {
  background: url(../img/ico/ico-check-h3.png) center center no-repeat;
  background-size: 24px;
}

.mtg-alert-body,
.mtg-caution-body,
.mtg-attention-body,
.mtg-check-body {
  padding-left: 26px;
  font-size: var(--mtg-body-s);
  position: relative;
}

.mtg-alert-body:before,
.mtg-caution-body:before,
.mtg-attention-body:before,
.mtg-check-body:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.mtg-alert-body:before {
  background: url(../img/ico/ico-alert-body.png) center center no-repeat;
  background-size: 20px;
}

.mtg-caution-body:before {
  background: url(../img/ico/ico-caution-body.png) center center no-repeat;
  background-size: 20px;
}

.mtg-attention-body:before {
  background: url(../img/ico/ico-attention-body.png) center center no-repeat;
  background-size: 20px;
}

.mtg-check-body:before {
  background: url(../img/ico/ico-check-body.png) center center no-repeat;
  background-size: 20px;
}

.mtg-alert-caption,
.mtg-caution-caption,
.mtg-attention-caption,
.mtg-check-caption {
  padding-left: 20px;
  font-size: var(--mtg-caption-s);
  position: relative;
}

.mtg-alert-caption:before,
.mtg-caution-caption:before,
.mtg-attention-caption:before,
.mtg-check-caption:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
}

.mtg-alert-caption:before {
  background: url(../img/ico/ico-alert-caption.png) center center no-repeat;
  background-size: 16px;
}

.mtg-caution-caption:before {
  background: url(../img/ico/ico-caution-caption.png) center center no-repeat;
  background-size: 16px;
}

.mtg-attention-caption:before {
  background: url(../img/ico/ico-attention-caption.png) center center no-repeat;
  background-size: 16px;
}

.mtg-check-caption:before {
  background: url(../img/ico/ico-check-caption.png) center center no-repeat;
  background-size: 16px;
}

.mtg-hint-h3,
.mtg-hint-h3-wrap,
.mtg-hint-body,
.mtg-hint-body-wrap,
.mtg-hint-caption,
.mtg-hint-caption-wrap {
  align-items: center;
  width: fit-content;
  color: var(--mtg-midnight);
  text-decoration: none;
}

.mtg-hint-h3:hover,
.mtg-hint-h3:focus,
.mtg-hint-body:hover,
.mtg-hint-body:focus,
.mtg-hint-caption:hover,
.mtg-hint-caption:focus {
  color: var(--mtg-midnight);
  text-decoration: none;
}

.mtg-hint-h3:after,
.mtg-hint-body:after,
.mtg-hint-caption:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
}

.mtg-hint-h3,
.mtg-hint-h3-wrap {
  line-height: 140%;
  font-size: var(--mtg-h3-s);
  font-weight: var(--mtg-h3-w);
}

.mtg-hint-h3:after {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background: url(../img/ico/ico-hint-h3.png) center center no-repeat;
  background-size: 24px;
}

.mtg-hint-body,
.mtg-hint-body-wrap {
  font-size: var(--mtg-body-s);
}

.mtg-hint-body:after {
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background: url(../img/ico/ico-hint-body.png) center center no-repeat;
  background-size: 20px;
}

.mtg-hint-caption,
.mtg-hint-caption-wrap {
  font-size: var(--mtg-caption-s);
}

.mtg-hint-caption:after {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url(../img/ico/ico-hint-caption.png) center center no-repeat;
  background-size: 16px;
}

/* attention-box */
.mtg-attention-box {
  padding: 20px 16px;
  border-radius: 8px;
  background-color: var(--mtg-blue-4);
}

.mtg-attention-header {
  padding-left: 32px;
  margin-bottom: 8px;
  position: relative;
}

.mtg-attention-header::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../img/ico/ico-attention-h3.png) center center no-repeat;
  background-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

/* accordion */
.mtg-accordion {
  border-radius: 8px;
  overflow: hidden;
}

.mtg-accordion>input[type="checkbox"] {
  display: none;
}

.mtg-accordion>input[type="checkbox"]+label {
  min-height: 56px;
  width: 100%;
  margin: 0px;
  padding: 15px 48px 15px 16px;
  line-height: 26px;
  background: white;
  font-size: var(--mtg-body-s);
  font-weight: var(--mtg-body-w);
  position: relative;
  cursor: pointer;
}

.mtg-accordion>input[type="checkbox"]+label::after {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  display: block;
  background: url(../img/ico/ico-AccordionOpen.png) center center no-repeat;
  background-size: 40px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
}

.mtg-accordion input[type="checkbox"]:checked+label:after {
  background: url(../img/ico/ico-AccordionClose.png) center center no-repeat;
  background-size: 40px;
}

.mtg-accordion .mtg-accordion-folding {
  height: 0;
  padding: 0 16px;
  overflow: hidden;
  background: var(--mtg-blue-4);
  transition: all 0.25s;
}

.mtg-accordion>input[type="checkbox"]:checked~.mtg-accordion-folding {
  height: auto;
  max-height: 70vh;
  padding: 16px;
  overflow: auto;
}

/** header **/
.static-h-menu-hidden {
  display: none;
}

.static-header-contents {
  position: sticky;
  z-index: 3;
  top: 0;
  margin-bottom: 0;
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, .04)) drop-shadow(0 4px 3px rgba(0, 0, 0, .1));
  filter: var(--tw-drop-shadow);
}

.static-header-menu {
  --tw-bg-opacity: 1;
  background-color: rgb(0 64 152/var(--tw-bg-opacity));
  padding: .5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 3.125rem;
}

@media screen and (min-width: 960px) {
  .static-header-menu {
    padding: 6px 24px;
  }
}

.static-header-logo-sp svg {
  height: 1.5rem;
  width: auto;
  vertical-align: middle;
}

.static-pc-menu {
  display: none;
  height: 66px;
  padding-right: 1.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  justify-content: space-between;
  z-index: 3;
}

.static-pc-menu nav {
  display: flex;
  align-items: center;
  height: 66px;
  float: right;
}

.static-pc-menu nav ul {
  gap: 2rem;
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 2.5rem;
  --tw-text-opacity: 1;
  color: rgb(27 27 31/var(--tw-text-opacity));
}

.static-pc-menu nav span {
  border: 1px solid var(--mtg-grey-3);
  height: 2rem;
  position: absolute;
  top: 50%;
  cursor: pointer;
  left: 0;
  transform: translate(0, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.static-pc-menu nav a {
  color: inherit;
  text-decoration: inherit;
  font-size: var(--mtg-body-s);
}

.static-pc-menu-open,
.static-h-menu-open {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
  line-height: 1;
  padding: .5rem;
  border-radius: 9999px;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
  text-transform: none;
  margin: 0px;
}

.static-sp-menu,
.static-pc-menu-open {
  --tw-text-opacity: 1;
  color: rgb(0 64 152/var(--tw-text-opacity));
}

.static-sp-menu {
  margin-bottom: 4rem;
}

.static-h-menu-close svg {
  height: 1.5rem;
  width: 1.5rem;
}

.static-h-menu-open svg {
  height: 1rem;
  width: 1rem;
}

.static-pc-menu-open svg {
  width: 16px;
  height: 16px;
}

.static-menu-name {
  margin-left: .25rem;
}

.static-menu-hubarger {
  display: flex;
  position: relative;
  cursor: pointer;
  align-items: center;
  padding-left: .75rem;
}

.static-h-menu-open:hover {
  background-color: hsla(0, 0%, 100%, .12);
}

.static-side-menu-area {
  position: fixed;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  left: 100%;
}

#mtg-h-menu-check:checked~.static-side-menu-area {
  background: #fff;
  padding: 16px;
  outline: none;
  width: 100%;
  overflow-y: scroll;
  inset: 0 0 auto auto;
  border: 1px solid #ccc;
  height: 100%;
  scrollbar-width: thin;
}

#mtg-h-menu-check:checked~.static-side-menu-area::-webkit-scrollbar {
  width: 8px;
}

#mtg-h-menu-check:checked~.static-side-menu-area::-webkit-scrollbar-thumb {
  background: #85878F;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  #mtg-h-menu-check:checked~.static-side-menu-area {
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 960px) {
  #mtg-h-menu-check:checked~.static-side-menu-area {
    width: 360px;
  }
}

/* 新規トグル制御 202412 */
.menu-open .static-side-menu-area {
  background: #fff;
  padding: 16px;
  outline: none;
  width: 100%;
  overflow-y: scroll;
  inset: 0 0 auto auto;
  border: 1px solid #ccc;
  height: 100%;
  scrollbar-width: thin;
}

.menu-open .static-side-menu-area::-webkit-scrollbar {
  width: 8px;
}

.menu-open .static-side-menu-area::-webkit-scrollbar-thumb {
  background: #85878F;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .menu-open .static-side-menu-area {
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 960px) {
  .menu-open .static-side-menu-area {
    width: 360px;
  }
}

.menu-open #overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}
/* 新規トグル制御 202412 // */

#overlay {
  position: fixed;
  left: 100%;
}

#mtg-h-menu-check:checked~#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}

.static-h-menu-close {
  line-height: 1;
  border-radius: 9999px;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
  text-transform: none;
  margin: 0px;
}

.static-pc-menu-open:hover,
.static-h-menu-close:hover {
  background-color: rgba(4, 67, 154, .12);
}

.static-h-menu-title-logo {
  line-height: 1;
  height: 32px;
}


.static-h-menu-title-logo svg {
  height: 32px;
}

.static-h-menu-logo {
  border-bottom: 1px solid rgb(232 232 232 / 1);
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.static-h-menu-title-link {
  text-align: left;
  display: inline-block;
}

.static-h-menu-title-link svg {
  width: 156px;
  height: 100%;
  object-fit: cover;
}

.static-h-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(232 232 232 / 1);
  line-height: 1.5;
}

.static-h-menu-link:hover,
.static-h-menu-link:focus {
  text-decoration: none;
}

.static-h-menu-link .icon-externallink {
  min-width: 14px;
}

.static-h-menu-first-group {
  margin-bottom: 2.25rem;
}

.static-h-menu-link-detail {
  display: flex;
  align-items: center;
}

.icon-static-h-menu {
  height: 1.5rem;
  width: auto;
  min-width: 22px;
}

.static-h-menu-link-text {
  margin-left: 1rem;
  font-size: 16px;
  line-height: 1.5;
}

.static-h-menu-list li.static-h-menu-login {
  background: url(../img/ico/ico-menu_login.png) left center no-repeat;
  background-size: 40px;
}

.static-h-menu-list li.static-h-menu-logout {
  background: url(../img/ico/ico-menu_logout.png) left center no-repeat;
  background-size: 40px;
}

.static-h-menu-list li a,
.static-h-menu-list li a:link,
.static-h-menu-list li a:visited,
.static-h-menu-list li a:hover,
.static-h-menu-list li a:focus,
.static-h-menu-list li a:active {
  padding-left: 48px;
  text-decoration: none;
  font-style: normal;
  font-size: var(--mtg-body-strong-s);
  font-weight: var(--mtg-body-strong-w);
  color: var(--mtg-midnight);
  display: block;
  position: relative;
  line-height: inherit;
}

.static-h-menu-list li.is-external a:after {
  content: "";
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/ico/ico-externallink-body-disabled.png) center center no-repeat;
  background-size: 20px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.annotation2 {
  color: var(--mtg-midnight);
  margin-top: 8px;
  font-size: 12px;
}

.annotation2 a {
  text-decoration: underline;
}

.static-h-menu-close-fixed {
  position: -webkit-fixed;
  position: fixed;
  right: 1rem;
  z-index: 10;
  padding: .5rem;
}

.static-h-menu-pc li a:hover {
  --tw-text-opacity: 1;
  color: rgb(77 121 183 / var(--tw-text-opacity));
}

.static-h-menu-pc .current {
  --tw-text-opacity: 1;
  color: #004098;
  font-weight: 500;
}

/** footer **/
footer {
  bottom: 0;
  width: 100%;
}

.static-footer {
  margin-top: 64px;
}

.static-footer-list {
  line-height: 2rem;
  font-size: var(--mtg-caption-strong-s);
  letter-spacing: 0;
  font-weight: 400;
  list-style: none;
}

.static-footer-blue {
  --tw-text-opacity: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(0 64 152/var(--tw-bg-opacity));
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.static-footer-blue .static-footer-list {
  margin: 0 auto;
  max-width: 75rem;
  padding: 1.5rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  line-height: 2rem;
}

.static-footer-blue .app-modal-link {
  display: inline-block;
}

.static-footer-white {
  --tw-text-opacity: 1;
  color: rgb(185 186 189 / var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.static-footer-white .static-footer-content {
  padding: 1.5rem;
  max-width: 75rem;
  margin: 0 auto;
}

.static-footer-white .static-footer-list {
  display: flex;
  row-gap: .5rem;
  flex-wrap: wrap;
  padding: 0;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.static-footer-white .static-footer-list li:not(:last-of-type):after {
  --tw-content: "|";
  content: var(--tw-content);
  margin-left: .58rem;
  margin-right: .75rem;
}

.static-footer-logo {
  line-height: 1;
  grid-row-end: 3;
  grid-row-start: 1;
}

.static-footer-logo svg {
  height: 1.75rem;
  vertical-align: middle;
}

.static-footer-copy {
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: .75rem;
  font-size: .75rem;
}

.static-footer-copyright {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 1;
  --tw-text-opacity: 1;
  color: rgb(120 126 130/var(--tw-text-opacity));
  margin-top: 12px;
}

.static-footer ul a {
  color: inherit;
}

.static-footer ul a:hover {
  text-decoration: unset;
}

.static-footer ul a:focus-visible {
  outline: auto;
  outline: -webkit-focus-ring-color auto 1px;
}

@media screen and (min-width: 960px) {
  .static-footer-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: max-content 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .static-footer-white .static-footer-content {
    display: grid;
    gap: 12px;
    grid-template-columns: max-content 1fr;
  }

  .static-footer-white .static-footer-list {
    justify-content: flex-end;
    margin-bottom: 0;
  }

  .static-footer-copy {
    margin-top: 0;
    text-align: right;
  }
}

/** white footer **/
.static-white-footer {
  padding-left: 0;
  list-style: none;
  background: white;
  padding: 32px 0 24px;
  position: absolute;
}

.static-white-footer div {
  padding: 0 24px;
}

.static-white-footer ul {
  list-style: none;
  line-height: 1.57;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 40px;
  padding: 0;
}

.static-white-footer ul li a {
  color: var(--mtg-grey-1);
}

.static-white-footer .static-footer-copyright {
  font-size: 10px;
  font-weight: 400;
  color: rgb(120 126 130/var(--tw-text-opacity));
}

.static-footer-padding {
  padding-top: 16px;
}

.static-white-footer ul li+li {
  margin: 0;
}

@media screen and (min-width: 960px) {
  .static-white-footer {
    display: flex;
  }

  .static-white-footer div {
    width: 100%;
  }

  .static-white-footer ul {
    display: flex;
  }

  .static-footer-padding {
    padding-top: 0;
  }

  .static-h-menu-open {
    display: none;
  }

  .static-pc-menu {
    display: block;
  }

  .static-white-footer ul li+li {
    margin-left: 40px;
    margin-right: 0;
  }
}

/* 2 column list */
ul.mtg-2col-list {
  background: white;
  width: 100%;
  padding: 4px 16px;
  list-style: none;
  border-radius: 8px;
}

ul.mtg-2col-list>li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

ul.mtg-2col-list>li+li {
  border-top: 1px solid var(--mtg-grey-4);
}

.mtg-mtg-2col-title {
  display: flex;
  align-items: center;
}

.mtg-2col-data {
  display: flex;
  align-items: center;
  font-size: var(--mtg-body-strong-s);
  font-weight: var(--mtg-body-strong-w);
  color: var(--mtg-midnight);
}

/* 数字バッチ */
div.process-title {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

img.mtg-img-numberlist {
  height: 24px;
  padding-right: 8px;
}

div.process-title p {
  font-weight: var(--mtg-h3-w);
  font-size: var(--mtg-h3-s);
}

/* modal */
.mtg-modal-link,
.app-modal-link {
  cursor: pointer;
}

.mtg-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  z-index: 1043;
}

.mtg-modal-wrap.is-active {
  opacity: 1;
  visibility: visible;
}

.mtg-modal-container,
.app-modal-container {
  max-width: 550px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50px);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.app-modal-container h2 {
  margin: 0;
  color: black;
  font-size: var(--mtg-h2-s);
  font-weight: var(--mtg-h2-w);
}

.app-modal-container p {
  font-size: 16px;
  margin-top: 24px;
  color: black;
}

.app-modal-container .static-button-cta {
  margin-top: 8px;
  margin-bottom: 0;
}

.mtg-modal-content {
  background: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 32px 24px 0;
  max-height: 70vh;
  width: 84%;
  position: relative;
  margin: auto;
  overflow-y: auto;
}

.app-modal-content {
  background: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 46px 28px 0;
  max-height: 70vh;
  width: 400px;
  position: relative;
  margin: auto;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .app-modal-content {
    width: 320px;
    max-width: calc(100% - 32px);
  }
}

.mtg-modal-content:after,
.app-modal-content:after {
  content: "";
  width: 100%;
  height: 32px;
  display: block;
}

.mtg-icon-close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: url(../img/ico/ico-close.png) center center no-repeat;
  background-size: 40px;
  display: block;
  opacity: 1;
  z-index: 200;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

/* layout */
.mtg-rsp-container {
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  max-width: 608px;
  align-self: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 550px) {
  .mtg-rsp-container {
    width: auto;
  }
}

h1 {
  margin-bottom: 16px;
}

.static-button-cta {
  margin-top: 32px;
}

.static-contna {
  border-bottom: solid 1px #bbb;
  border-left: solid 1px #bbb;
  border-right: solid 1px #bbb;
  margin: 0 auto;
  box-sizing: border-box;
}

.static-container {
  background-color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1024px;
}

/* pager */
.mtg-paging-lst {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 48px;
  list-style: none;
  padding: 0;
}

.mtg-paging-ico {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.mtg-paging-ico.ex-active {
  display: block;
}

.mtg-paging-lst-text {
  font-size: 13px;
  line-height: 1.57;
  color: #181A24;
  width: 24px;
  font-weight: 590;
  margin-right: 12px;
  cursor: pointer;
}

.mtg-paging-lst-text.ex-lastitem {
  margin-right: 0;
}

.mtg-paging-lst-text.ex-active {
  color: #004098;
}

.mtg-paging-lst-text:hover {
  color: #4D79B7;
  text-decoration: underline;
}

.mtg-paging-lst-text:focus {
  color: #668CC1;
}

/* tag button */
.mtg-tagbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.mtg-tagbtn-wrap {
  display: flex;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid #004098;
  background: #fff;
  border-radius: 40px;
  min-height: 32px;
}

.mtg-tagbtn-wrap:focus {
  color: #668CC1;
  border: 1px solid #668CC1;
}

.mtg-tagbtn-wrap:hover {
  color: #4D79B7;
  border: 1px solid #4D79B7;
}

/* tag button right-arrow */
.mtg-tagbtn-wrap.is-arrow::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  background: url(../img/ico/ico-arrowForward-thin-nomal-body-active.png) center center no-repeat;
  background-size: contain;
}

/* tag button blue-tag */
.mtg-tagbtn-wrap.is-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background: url(../img/ico/ico-tag.png) center center no-repeat;
  background-size: contain;
}

/* more button */
.mtg-morebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
}

.mtg-morebtn:hover,
.mtg-morebtn:active {
  color: #4D79B7;
}

.mtg-morebtn:focus-visible {
  color: #668CC1;
  border: 1px solid #668CC1;
}

.mtg-morebtn-text {
  position: relative;
  text-decoration: none;
}

.mtg-morebtn-ico {
  display: none;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.mtg-morebtn-ico.ex-active {
  display: inline-block;
}

/* back button */
.mtg-backbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 327px;
  width: 100%;
  min-height: 56px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #85878F;
  margin: 0 auto;
  padding: 0 24px;
}

.mtg-backbtn:focus-visible {
  border-radius: 8px;
  border: 1px solid #668CC1;
}

.mtg-backbtn:hover {
  color: #181A24;
}

/* bracket list */
.mtg-bracketlist {
  list-style-type: none;
  counter-reset: list-counter;
  padding: 0;
}

.mtg-bracketlist li {
  counter-increment: list-counter;
  margin-bottom: 0;
  position: relative;
  padding-left: 2.6em;
}

.mtg-bracketlist li:before {
  content: "（"counter(list-counter) "）";
  position: absolute;
  left: 3px;
  color: #333;
  width: 2.6em;
  display: inline-block;
}

/* table */
.mtg-table {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.mtg-header-row th {
  font-size: 12px;
  background: var(--mtg-grey-4);
  border: 1px solid var(--mtg-grey-3);
  font-weight: 400;
  line-height: 1.3;
  padding: 2.5px 0;
  font-feature-settings: "palt";
}

.mtg-data-row td {
  font-size: 18px;
  border: 1px solid var(--mtg-grey-3);
  line-height: 1.57;
  padding: 9.5px;
  text-align: center;
}