html {
  height: 100%;
}
body {
  color: var(--mtg-midnight);
  margin: 0;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
}
body,
button,
input,
input::placeholder {
  font-family: "Noto Sans JP", sans-serif;
}
h1,
h2,
h3,
p {
  margin: 0;
  line-height: 22px;
}
a,
a:hover,
a:active,
a:link,
a:visited {
  outline: none;
}
button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 56px;
  border-radius: 8px;
  font-size: var(--mtg-button-s);
  font-weight: var(--mtg-button-w);
}
input::placeholder {
  font-size: var(--mtg-caption-s);
  color: var(--mtg-grey-2);
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

/* テキスト系 */
.mtg-text-margin-top {
  margin-top: var(--mtg-text-margin-top);
}
.mtg-text-margin-bottom {
  margin-bottom: var(--mtg-text-margin-bottom);
}
.mtg-text-margin-top-half {
  margin-top: var(--mtg-text-margin-top-half);
}
.mtg-text-margin-bottom-half {
  margin-bottom: var(--mtg-text-margin-bottom-half);
}
.mtg-text-center {
  text-align: center;
}
.mtg-h1 {
  font-size: var(--mtg-h1-s);
  font-weight: var(--mtg-h1-w);
}
.mtg-h2 {
  font-size: var(--mtg-h2-s);
  font-weight: var(--mtg-h2-w);
}
.mtg-h2.h2prefix {
  border-left: 5px solid #004098;
  padding-left: 8px;
}
.mtg-h2-height {
  font-size: var(--mtg-h2-s);
  font-weight: var(--mtg-h2-w);
  line-height: var(--mtg-h2-height);
}
.mtg-h2-height.h2prefix {
  border-left: 5px solid #004098;
  padding-left: 5px;
}
.mtg-h3 {
  font-size: var(--mtg-h3-s);
  font-weight: var(--mtg-h3-w);
}
.mtg-h3.h3prefix {
  border-left: 5px solid #004098;
  padding-left: 8px;
}
.mtg-body {
  font-size: var(--mtg-body-s);
  font-weight: var(--mtg-body-w);
}
.mtg-attention-box-white .mtg-body {
  overflow-wrap: anywhere;
}
.mtg-prefix {
  min-width: 5px;
  min-height: 25px;
  background: #004098;
  border-radius: 5px;
  display: flex;
  margin-right: 8px;
}
.mtg-body-strong {
  font-size: var(--mtg-body-strong-s);
  font-weight: var(--mtg-body-strong-w);
}
.mtg-body-strong-blue {
  font-size: var(--mtg-body-strong-s);
  font-weight: var(--mtg-body-strong-w);
  color: var(--mtg-urbanblue);
}
.mtg-caption,
.mtg-caption-error {
  font-size: var(--mtg-caption-s);
  font-weight: var(--mtg-caption-w);
}

/* エラー表示 */
.mtg-caption-error {
  display: none;
  position: relative;
  padding-left: 20px;
  color: var(--mtg-livered);
}
.mtg-caption-error::before {
  position: absolute;
  content: "";
  left: 0;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  width: 16px;
  height: 16px;
  background-image: url(/spspl/img/attention/ico-caution-caption-74c2bc6be0d475480bd95d0bd40e723b.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-caption-error.visible {
  display: block;
}

.mtg-error-h1 {
  display: none;
  position: relative;
  padding-left: 44px;
  padding-bottom: 5px;
  font-size: var(--mtg-h1-s);
  font-weight: var(--mtg-h1-w);
  color: var(--mtg-livered);
}

.mtg-error-h1::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 37px;
  height: 37px;
  background-image: url(/spspl/img/attention/ico-caution-h1-302d59e588d29196d7bdbbf23717b66b.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.mtg-error-h1.visible {
  display: block;
}

/* エラーカード */
.mtg-error-message {
  background-color: var(--mtg-red-4);
  color: var(--mtg-livered);
}
.mtg-error-message ul {
  margin: 0;
  padding: 16px;
  list-style: none;
}
.mtg-error-message li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-size: var(--mtg-body-list-s);
  font-weight: var(--mtg-body-list-w);
}
.mtg-error-message li:last-of-type {
  margin-bottom: 0;
}
.mtg-error-message li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(/spspl/img/attention/ico-caution-body-8134a2cf025087fa24c9374234d1935e.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-error-message.visible {
  display: block;
}

/* ボタン系 */
.mtg-button-cta {
  background-color: var(--mtg-urbanblue);
  color: var(--mtg-white);
}
.mtg-button-cta:disabled {
  background-color: var(--mtg-grey-2);
  color: var(--mtg-white);
  pointer-events: none;
}
.mtg-button-alternative {
  background-color: var(--mtg-white);
  color: var(--mtg-urbanblue);
  border: 1px solid var(--mtg-urbanblue);
}
.mtg-button-back {
  background-color: transparent;
  color: var(--mtg-grey-1);
}

/* リンク系 */
.mtg-link-with-arrow-external-lg-inline {
  color: var(--mtg-urbanblue);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mtg-link-with-arrow-external-lg-inline:hover {
  color: var(--mtg-urbanblue);
}
.mtg-link-with-arrow-external-lg-inline::after {
  position: relative;
  display: inline-block;
  content: "";
  top: 4px;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url(/spspl/img/externallink/ico-externallink-active-ddd3c75758901ee6473fe02583d5156a.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.mtg-link-with-right-angle,
.mtg-link-with-left-angle {
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: var(--mtg-urbanblue);
}
.mtg-link-with-right-angle::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  display: inline-block;
  border-top: solid 1px var(--mtg-urbanblue);
  border-right: solid 1px var(--mtg-urbanblue);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 1px;
  color: inherit;
}
.mtg-link-with-left-angle::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  display: inline-block;
  border-bottom: solid 1px var(--mtg-urbanblue);
  border-left: solid 1px var(--mtg-urbanblue);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 0.5px;
  color: inherit;
}

.mtg-hint-body {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--mtg-midnight);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding-right: 28px;
}
.mtg-hint-body:hover {
  color: var(--mtg-midnight);
}
.mtg-hint-body::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/hint/ico-hint_small.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.mtg-link-color {
  color: var(--mtg-urbanblue);
}

.mtg-link-no-line {
  text-decoration: none;
}

/* チェックボックス, ラジオボタン, インプット */
.mtg-checkbox,
.mtg-radio,
.mtg-input-text,
.mtg-input-text-disabled,
.mtg-pulldown,
.mtg-pulldown-disabled {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--mtg-grey-3);
  border-radius: 8px;
  font-size: var(--mtg-body-s);
  font-weight: var(--mtg-body-w);
}
.mtg-checkbox:hover,
.mtg-checkbox:active,
.mtg-checkbox:focus-within,
.mtg-radio:hover,
.mtg-radio:active,
.mtg-radio:focus-within,
.mtg-input-text:hover,
.mtg-input-text:active,
.mtg-input-text:focus-within,
.mtg-pulldown:hover,
.mtg-pulldown:focus-within,
.mtg-pulldown:active {
  border: 1px solid var(--mtg-urbanblue);
  outline: none;
}
.mtg-checkbox input,
.mtg-radio input {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}
.mtg-checkbox label,
.mtg-radio label {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border-radius: 8px;
  padding-left: 64px;
  padding-right: 16px;
  padding-top: 17px;
  padding-bottom: 17px;
}

/* チェックボックス */
.mtg-checkbox {
  cursor: pointer;
  background-color: var(--mtg-white);
}
.mtg-checkbox input + label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(/spspl/img/checkbox/check_not_done-1c93e7e056e61331b147d9c165662a30.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-checkbox input:checked + label:before {
  background-image: url(/spspl/img/checkbox/check_done-eafe093977a70f66007fa9803616b4ec.png);
}
/* エラー表示（チェックボックス） */
.mtg-checkbox-error {
  border: 2px solid var(--mtg-livered);
}

/* ラジオボタン */
.mtg-radio {
  background-color: var(--mtg-white);
  cursor: pointer;
}
.mtg-radio label {
  padding: 8px 0;
  padding-left: 64px;
  padding-right: 16px;
}
.mtg-radio input + label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--mtg-grey-3);
  border: 3px solid var(--mtg-white);
  box-sizing: border-box;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.mtg-radio input:checked + label:before {
  background-color: var(--mtg-urbanblue);
}

/* インプット */
.mtg-input-text,
.mtg-input-text-disabled {
  box-sizing: border-box;
  appearance: none;
  outline: none;
  display: block;
  height: 56px;
  width: 100%;
  padding: 0 16px;
}
.mtg-input-text::placeholder {
  color: var(--mtg-grey-2);
}
.mtg-input-text-disabled::placeholder {
  color: var(--mtg-grey-1);
}
.mtg-input-text {
  background-color: var(--mtg-white);
}
.mtg-input-text-disabled {
  background-color: var(--mtg-grey-3);
}
/* 自分で入力するを選ぶと入力フォームが活性化する */
.mtg-input-text {
  display: none;
}
.mtg-input-text.selfInputChecked,
.mtg-input-text.visible {
  display: block;
}
.mtg-input-text-disabled.selfInputChecked,
.mtg-input-text-disabled.hidden {
  display: none;
}
/* エラー表示 */
.mtg-input-text.error {
  border: 2px solid var(--mtg-livered);
}

/* エラー表示 */
.mtg-pulldown.error {
  border: 2px solid var(--mtg-livered);
}

/* エラー表示 */
.mtg-radio.error {
  border: 2px solid var(--mtg-livered);
}

.mtg-checkbox.error {
  border: 2px solid var(--mtg-livered);
}

/* プルダウン */
.mtg-pulldown,
.mtg-pulldown-disabled {
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  list-style-type: none;
  text-align: left;
  height: 56px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mtg-pulldown {
  display: none;
  background-color: var(--mtg-white);
}
.mtg-pulldown-disabled {
  background-color: var(--mtg-grey-3);
  vertical-align: bottom;
}
.mtg-pulldown.selfInputChecked,
.mtg-pulldown.visible {
  display: block;
}
.mtg-pulldown-disabled.selfInputChecked {
  display: none;
}
.mtg-pulldown:before,
.mtg-pulldown-disabled:before {
  position: absolute;
  content: "";
  top: calc(50%);
  right: 4px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40px;
  height: 41px;
  background-image: url(/spspl/img/arrow/ico-arrowDown-5b79f6d6e3fe0c737eb6cbff4789e36f.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-pulldown li {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 11px 16px;
  padding-right: 46px;
}
/* .mtg-pulldown li span {
  color: var(--mtg-grey-2);
} */
.mtg-pulldown li .options {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: transparent;
  position: absolute;
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  top: 55px;
  left: 0;
  border: none;
}
.mtg-pulldown li .options li {
  position: relative;
  box-sizing: border-box;
  padding: 16px;
  height: 56px;
}
.mtg-pulldown li .options li:hover {
  background-color: var(--mtg-blue-4);
  box-shadow: 0 1px var(--mtg-blue-4);
}
.mtg-pulldown li .options li:before {
  position: absolute;
  content: "";
  top: 0;
  left: 16px;
  width: calc(100% - 32px);
  display: inline-block;
  border-top: 1px solid var(--mtg-grey-3);
}
.mtg-pulldown li .options li:first-of-type:before {
  border-top: 0;
}
.mtg-pulldown li .options li.pulldown-checked:after {
  position: absolute;
  content: "";
  top: calc(50%);
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(/spspl/img/check/ico-check-body-942cb52d7c5fd11866efa4a5c66629d2.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-pulldown.open li .options {
  background-color: var(--mtg-white);
  max-height: 300px;
  border-radius: 8px;
  border: 1px solid var(--mtg-urbanblue);
  filter: drop-shadow(0px 8px 16px rgba(24, 26, 36, 0.25));
  z-index: 1;
  overflow-y: scroll;
}

/* アテンション */
.mtg-attention-box,
.mtg-attention-box-white {
  padding: 20px 16px;
  border-radius: 8px;
}
.mtg-attention-box {
  background-color: var(--mtg-blue-4);
}
.mtg-attention-box-white {
  padding: 20px 16px;
  background-color: var(--mtg-white);
  border-radius: 8px;
}
.mtg-attention {
  position: relative;
  padding-left: 24px;
}
.mtg-attention::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(/spspl/img/attention/ico-attention-body-849fe36e9ef89333d6e00a38af49288b.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-attention-h3 {
  position: relative;
  padding-left: 30px;
}
.mtg-attention-h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(/spspl/img/attention/ico-attention-h3-4056208f7d1a9e3456b2a366872cbb01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-attention-h1-error {
  position: relative;
  padding-left: 36px;
  color: var(--mtg-livered);
}
.mtg-attention-h1-error::before {
  position: absolute;
  content: "";
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 28px;
  height: 30px;
  background-image: url(/spspl/img/attention/ico-caution-h1-302d59e588d29196d7bdbbf23717b66b.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.mtg-attention-box-white-bottom-ruled-line {
  border-bottom: 1px solid #e8e8e8;
}
.mtg-no-required-area {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mtg-no-required-icon {
  min-width: 41px;
  width: 41px;
  height: 24px;
  background-color: var(--mtg-blue-2);
  font-size: var(--mtg-caption-s);
  font-weight: var(--mtg-caption-w);
  color: var(--mtg-white);
  text-align: center;
  line-height: 24px;
  margin-left: 4px;
  border-radius: 60px;
}

/* リスト */
.mtg-bullets,
.mtg-small-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mtg-bullets li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  line-height: 22px;
  font-size: var(--mtg-body-list-s);
  font-weight: var(--mtg-body-list-w);
}
.mtg-small-bullets li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 20px;
  font-size: var(--mtg-caption-s);
  font-weight: var(--mtg-body-list-w);
}
.mtg-bullets li:last-of-type,
.mtg-small-bullets li:last-of-type {
  margin-bottom: 0;
  height: auto;
}
.mtg-bullets li::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: var(--mtg-midnight);
  border-radius: 50%;
}
.mtg-small-bullets li::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 6px;
  width: 4px;
  height: 4px;
  background-color: var(--mtg-midnight);
  border-radius: 50%;
}

.mtg-bullets .bullets-text {
  padding-left: 1em;
}
#mtg-bullets-caption li {
  font-weight: var(--mtg-body-strong-w);
  margin-bottom: 8px;
}
.bullets-text-margin {
  margin-bottom: 12px;
}

/* ステップバー */
.mtg-stepbar-wrapper {
  margin-left: 16px;
  margin-right: 16px;
}
.mtg-stepbar {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 24px 8px 60px;
  list-style: none;
}
.mtg-stepbar span {
  position: relative;
}
.mtg-stepbar li {
  position: absolute;
  top: 18px;
  left: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: var(--mtg-caption-s);
  font-weight: var(--mtg-caption-w);
}
.mtg-step,
.mtg-step-complete,
.mtg-step-active {
  white-space: nowrap;
}
.mtg-step,
.mtg-step-complete {
  color: var(--mtg-grey-2);
}
.mtg-step-active {
  color: var(--mtg-urbanblue);
}
.mtg-step::before,
.mtg-step-complete::before,
.mtg-step-active::before,
.mtg-step-active::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 50%;
}
.mtg-step::before {
  top: -29px;
  width: 22px;
  height: 22px;
  background-color: var(--mtg-blue-4);
}
.mtg-step-complete::before {
  top: -25px;
  width: 16px;
  height: 16px;
  background-color: var(--mtg-urbanblue);
}
.mtg-step-active::before {
  top: -33px;
  width: 30px;
  height: 30px;
  background-color: var(--mtg-white);
}
.mtg-step-active::after {
  top: -29px;
  width: 22px;
  height: 22px;
  background-color: var(--mtg-urbanblue);
}
/* ステップが４つの場合 */
.mtg-step-line-4,
.mtg-step-line-4-active {
  width: 90px;
  height: 2px;
}
.mtg-step-line-4 {
  background-color: var(--mtg-blue-4);
}
.mtg-step-line-4-active {
  background-color: var(--mtg-urbanblue);
}

.mtg-area.none {
  display: none;
}

.mtg-area.visible {
  display: block;
}

.content {
  margin: 0 auto;
  padding: 10px;
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 !important;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 32px 24px 32px 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.modal__title {
  padding-bottom: 10px;
}

.modal__subtitle {
  margin: 10px 0px 10px 0px;
}
.modal__img {
  width: 269px;
  height: 164px;
}

/* 画面メインコンテンツ */
.mtg-main-wrapper {
  flex: 1;
  background-color: var(--mtg-grey-4);
}
.mtg-login-header + .mtg-main-contents {
  margin-top: 64px;
}

.mtg-rsp-container {
  width: 100%;
  max-width: 608px;
  -ms-grid-row-align: center;
  align-self: center;
}

.mtg-main-contents {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
}

/* バナー表示 */
.mtg-banner-wrapper {
  width: 100%;
  margin: 20px 0;
}

.mtg-banner-link {
  display: block;
  margin: auto;
  text-decoration: none;
  border-bottom: none;
}
#mtg-banner-wrapper-pc .mtg-banner-link {
  width: 70%;
}
#mtg-banner-wrapper-mobile .mtg-banner-link {
  width: 90%;
}

.mtg-banner-image {
  width: 100%;
  border-style: solid;
  border-color: gray;
}
#mtg-banner-wrapper-pc .mtg-banner-image {
  border-radius: 7px;
}
#mtg-banner-wrapper-mobile .mtg-banner-image {
  border-radius: 6px;
}

#mtg-banner-wrapper-pc {
  display: block;
}
#mtg-banner-wrapper-mobile {
  display: none;
}

@media screen and (max-width: 812px) {
  #mtg-banner-wrapper-pc {
    display: none;
  }
  #mtg-banner-wrapper-mobile {
    display: block;
  }
}

/** アコーディオン */
.mtg-attention-accordion {
  border-radius: 8px;
  overflow: hidden;
}

.mtg-attention-accordion > input[type="checkbox"] {
  display: none;
}

.mtg-attention-accordion > input[type="checkbox"] + label {
  width: 100%;
  margin: 0px;
  padding: 15px 48px 15px 16px;
  line-height: 26px;
  display: inline-block;
  background-color: var(--mtg-blue-4);
  font-size: var(--mtg-caption-s);
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.mtg-attention-accordion > input[type="checkbox"] + label::after {
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
  display: block;
  background: url(../img/plus/ico-AccordionOpen.png) center center no-repeat;
  background-size: 40px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
}

.mtg-attention-accordion input[type="checkbox"]:checked + label:after {
  background: url(../img/plus/ico-AccordionClose.png) center center no-repeat;
  background-size: 40px;
}

.mtg-attention-accordion .mtg-attention-box {
  height: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background-color: var(--mtg-blue-4);
  transition: all 0.25s;
  padding: 0px 16px;
  box-sizing: border-box;
}

.mtg-attention-accordion > input[type="checkbox"]:checked ~ .mtg-attention-box {
  height: auto;
  overflow: auto;
  padding: 20px 16px;
}

.mtg-footer-caption {
  font-size: var(--mtg-footer-caption-s);
  font-weight: var(--mtg-footer-caption-w);
}
