html {
  font-size: 20px;
}
body,
button {
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 500;
}
* {
  box-sizing: border-box;
}
a {
  color: #569CFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
input[type=radio],
input[type=checkbox] {
  display: none;
}
input[type=radio] + label,
input[type=checkbox] + label {
  cursor: pointer;
}
.hr {
  height: 1px;
  background-color: #979797;
}
.money-spacer {
  width: 0.25rem;
}
.money-button {
  display: inline-block;
  border-radius: 100rem;
  background-color: #B7D4FF;
  color: #000;
  padding: 0.75rem 3rem;
  font-weight: 300;
  font-size: 1rem;
  border-style: none;
  text-decoration: none;
  text-align: center;
  min-width: 10rem;
}
.money-button:hover {
  cursor: pointer;
  background-color: #F3C0B8;
}
@media screen and (max-width: 480px) {
  .money-button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .money-sp-hidden {
    display: none !important;
  }
}
html,
body {
  margin: 0;
  height: 100%;
}
.page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.page .page-header {
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 1;
  position: sticky;
  top: 0;
  background-color: #fafafa;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.page .page-header .page-logo {
  display: flex;
}
.page .page-header .page-logo img {
  width: 195px;
  height: auto;
}
.page .page-footer {
  text-align: center;
  padding: 1rem 1rem;
  font-size: 0.7rem;
  color: #505050;
}
input,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.money-title-header {
  font-size: 1.2rem;
  background-color: #415288;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.money-info-header {
  background-color: #7489CC;
  color: white;
}
.money-textfield {
  padding: 0.75rem 0.75rem;
  border: #B7D4FF 2px solid;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1rem;
}
.money-textfield::placeholder {
  color: #B5B5B5;
}
.money-simulator input[type=text] {
  padding: 0 0.5rem;
  border-width: 0;
  border-radius: 0.25rem;
  height: 2.2rem;
  background-color: #fff;
  font-size: 1rem;
}
.money-simulator .money-age-field {
  display: flex;
  align-items: center;
}
.money-simulator .money-age-field input {
  width: 2.4rem;
  text-align: right;
  margin-right: 0.25rem;
}
.money-simulator .money-gender-selector {
  display: flex;
  flex-wrap: wrap;
}
.money-simulator .money-gender-selector > * {
  margin: 1px;
  width: calc(50% - 2px);
}
.money-simulator .money-gender-selector input + label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 2.2rem;
  width: calc(2.2rem * 1.2);
  background-color: #fff;
  color: #a8a8a8;
  line-height: 1;
  cursor: pointer;
}
.money-simulator .money-gender-selector input + label:hover {
  background-color: #e6e6e6;
  color: #a8a8a8;
}
.money-simulator .money-gender-selector input:checked + label {
  background-color: #5ca0ff;
  color: #fff;
}
.money-simulator .money-gender-selector > span:first-of-type label {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.money-simulator .money-gender-selector > span:last-of-type label {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.money-simulator .money-info-header {
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  position: sticky;
  top: 64px;
}
.money-simulator .money-info-header .money-info-icon {
  height: 2.4rem;
  width: auto;
  margin-right: 1rem;
}
.money-simulator .money-info-header .money-monthly-accumulation {
  font-size: 2rem;
  margin: 0 0.5rem;
}
.money-simulator .money-info-header .money-info-accumulation {
  width: calc(60% - 10%);
  margin: 0.5rem 5%;
  display: flex;
  align-items: center;
}
.money-simulator .money-info-header .money-info-accumulation > * {
  display: flex;
  align-items: center;
}
.money-simulator .money-info-header .money-info-breakdown {
  width: calc(40% - 15%);
  margin: 0.5rem 10% 0.5rem 5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 200;
}
.money-simulator .money-info-header .money-info-breakdown .money-info-breakdown-content {
  display: flex;
  flex-direction: column;
}
.money-simulator .money-info-header .money-info-breakdown .money-info-breakdown-content > * {
  display: flex;
  justify-content: space-between;
}
.money-simulator .money-info-header .money-info-breakdown .money-info-breakdown-content > * > :nth-child(2) {
  margin-left: 2rem;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-info-header .money-monthly-accumulation {
    font-size: 1rem;
  }
  .money-simulator .money-info-header .money-info-accumulation {
    width: 100%;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .money-simulator .money-info-header .money-info-breakdown {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
  .money-simulator .money-info-header .money-info-breakdown .money-info-breakdown-content {
    width: 100%;
  }
  .money-simulator .money-info-header .money-info-breakdown .money-info-breakdown-content > * {
    justify-content: space-between;
  }
}
.money-simulator .money-years-after {
  width: 2.4rem;
  text-align: right;
}
.money-simulator .money-sections {
  width: 864px;
  margin-left: auto;
  margin-right: auto;
}
.money-simulator .money-sections .money-section {
  border-radius: 0.2rem;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-sections {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.money-simulator .money-section-title {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.money-simulator .money-section-title {
  margin-bottom: 0.75rem;
}
.money-simulator * + .money-section-title {
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-section-title {
    margin-bottom: 0.5rem;
  }
  .money-simulator * + .money-section-title {
    margin-top: 0.5rem;
  }
}
.money-simulator .money-target {
  display: flex;
}
.money-simulator .money-target > :nth-child(1) {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
  width: 50%;
}
.money-simulator .money-target > :nth-child(1) .money-age-field {
  margin-left: 1rem;
  margin-right: 0.75rem;
}
.money-simulator .money-target > :nth-child(2) {
  display: flex;
  align-items: center;
  width: 21px;
}
.money-simulator .money-target > :nth-child(3) {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  width: 50%;
  color: #000;
}
.money-simulator .money-target > :nth-child(3) > :nth-child(1) > :nth-child(1) {
  font-weight: 500;
}
.money-simulator .money-target > :nth-child(3) > :nth-child(1) > :nth-child(2) {
  font-size: 0.7rem;
  font-weight: 200;
}
.money-simulator .money-target > :nth-child(3) > :nth-child(2) {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.money-simulator .money-target > :nth-child(3) > :nth-child(2) > :nth-child(2) {
  margin-left: 0.25rem;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-target {
    flex-direction: column;
  }
  .money-simulator .money-target > :nth-child(1) {
    width: 100%;
  }
  .money-simulator .money-target > :nth-child(2) {
    display: none;
  }
  .money-simulator .money-target > :nth-child(3) {
    width: 100%;
    padding: 0.5rem 0.75rem;
  }
}
.money-simulator .money-target-icon {
  height: calc(2.2rem * 0.65);
  width: auto;
  margin-left: 0.25rem;
  margin-right: 0.5rem;
}
.money-simulator .money-target-section[data-target="1"] .money-target > :nth-child(1),
.money-simulator .money-target-section[data-target="1"] .money-target > :nth-child(2) {
  background-color: #dcd28f;
}
.money-simulator .money-target-section[data-target="1"] .money-target > :nth-child(3) {
  background-color: #bfb15b;
}
.money-simulator .money-target-section[data-target="2"] .money-target > :nth-child(1),
.money-simulator .money-target-section[data-target="2"] .money-target > :nth-child(2) {
  background-color: #e6b690;
}
.money-simulator .money-target-section[data-target="2"] .money-target > :nth-child(3) {
  background-color: #de8843;
}
.money-simulator .money-calculation {
  background-color: #f1f1f1;
  padding: 1rem;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-calculation {
    padding: 0.5rem;
  }
}
.money-simulator .money-care-tabs {
  display: flex;
}
.money-simulator .money-care-tab {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  width: calc(50% - 0.5rem);
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background-color: #d7d7d7;
  color: #989898;
}
.money-simulator .money-care-tab.money-care-tab-selected {
  background-color: #fff;
  color: #4a4a4a;
}
.money-simulator .money-care-tab > img {
  margin-right: 0.25rem;
}
.money-simulator .money-care-tab > img:nth-of-type(1) {
  display: none;
}
.money-simulator .money-care-tab.money-care-tab-selected > img:nth-of-type(2) {
  display: none;
}
.money-simulator .money-care-tab.money-care-tab-selected > img:nth-of-type(1) {
  display: inherit;
}
.money-simulator .money-care-tab-content {
  background-color: #fff;
  border-bottom-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  display: none;
  padding: 1rem;
}
.money-simulator .money-care-tab-content.money-care-tab-content-selected {
  display: block;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-care-tab-content {
    padding: 0.75rem 0.5rem;
  }
}
.money-simulator .money-care-selector > span {
  display: flex;
  align-items: center;
}
.money-simulator .money-care-selector > span:not(:first-of-type) {
  margin-top: 0.5rem;
}
.money-simulator .money-care-selector > span input + label {
  font-size: 0.9rem;
  padding-left: calc(30px + 0.5rem);
  background-image: url(images/checkbox-off.png);
  background-size: 30px;
  background-repeat: no-repeat;
  font-weight: 300;
}
.money-simulator .money-care-selector > span input + label > span {
  display: flex;
  align-items: center;
}
.money-simulator .money-care-selector > span input + label > span > :nth-child(1) {
  margin-right: 0.25rem;
}
.money-simulator .money-care-selector > span input + label > span > :nth-child(2) {
  line-height: 30px;
}
.money-simulator .money-care-selector > span input + label > span > :nth-child(3) {
  line-height: 30px;
}
.money-simulator .money-care-selector > span input + label > span > :nth-child(4) {
  line-height: 30px;
}
.money-simulator .money-care-selector > span input:checked + label {
  background-image: url(images/checkbox-on.png);
}
@media screen and (max-width: 480px) {
  .money-simulator .money-care-selector > span > input + label {
    font-weight: 200;
  }
  .money-simulator .money-care-selector > span > input + label > span {
    display: inherit;
  }
  .money-simulator .money-care-selector > span > input + label > span > :nth-child(1) {
    display: none;
  }
  .money-simulator .money-care-selector > span > input + label > span > :nth-child(2) {
    display: block;
  }
  .money-simulator .money-care-selector > span > input + label > span > :nth-child(3) {
    display: none;
  }
  .money-simulator .money-care-selector > span > input + label > span > :nth-child(4) {
    display: block;
    font-size: 0.7rem;
    line-height: inherit;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .money-simulator .money-care-selector > span input + label {
    background-image: url(images/checkbox-off@2x.png);
  }
  .money-simulator .money-care-selector > span input:checked + label {
    background-image: url(images/checkbox-on@2x.png);
  }
}
.money-simulator .money-duration-block {
  background-color: #fff;
  border-bottom-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  padding: 1rem;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-duration-block {
    padding: 0.75rem 0.5rem;
  }
}
.money-simulator .money-duration-selector > span {
  display: flex;
  align-items: center;
}
.money-simulator .money-duration-selector > span:not(:first-of-type) {
  margin-top: 0.5rem;
}
.money-simulator .money-duration-selector > span input + label {
  font-size: 0.9rem;
  padding-left: calc(30px + 0.5rem);
  background-image: url(images/checkbox-off.png);
  background-size: 30px;
  background-repeat: no-repeat;
  font-weight: 300;
  line-height: 30px;
}
.money-simulator .money-duration-selector > span input:checked + label {
  background-image: url(images/checkbox-on.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .money-simulator .money-duration-selector > span input + label {
    font-weight: 200;
    background-image: url(images/checkbox-off@2x.png);
  }
  .money-simulator .money-duration-selector > span input:checked + label {
    background-image: url(images/checkbox-on@2x.png);
  }
}
.money-simulator .money-burden-section {
  background-color: #efefef;
  padding: 1rem;
}
.money-simulator .money-burden-section .money-burden {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 300;
}
.money-simulator .money-burden-section .money-burden input {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.money-simulator .money-burden-section .money-burden .money-burden-plus {
  margin-left: 0;
  margin-right: 0;
}
.money-simulator .money-burden-section .money-burden .money-chochiku {
  width: 3.2rem;
  text-align: right;
}
.money-simulator .money-burden-section .money-burden .money-nenkin-getsugaku {
  width: 2.4rem;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .money-simulator .money-burden-section {
    padding: 0.5rem;
  }
  .money-simulator .money-burden-section .money-burden {
    font-weight: 200;
  }
}
.money-simulator .money-more-target-section {
  background-color: #b7d4ff;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.money-simulator .money-more-target-section:hover {
  background-color: #e6e6e6;
}
.money-simulator .money-more-target-section img {
  height: 22px;
  width: auto;
}
.money-simulator .money-more-target-section span {
  margin-left: 0.25rem;
  font-weight: 200;
}
.money-simulator .money-delete-target-section {
  background-color: #b7d4ff;
  padding: 0.5rem 0.75rem;
  align-items: center;
  cursor: pointer;
  display: none;
}
.money-simulator .money-delete-target-section:hover {
  background-color: #e6e6e6;
}
.money-simulator .money-delete-target-section img {
  height: 22px;
  width: auto;
}
.money-simulator .money-delete-target-section span {
  margin-left: 0.25rem;
  font-weight: 200;
}
.money-simulator .money-exemption-clause-section {
  font-size: 0.66666667rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: #4A4A4A;
  margin-bottom: 2rem;
}
