@charset "UTF-8";
/* CSS Document */
/* PC画面用のスタイルシートになります */
/* ここからが「共通部分」のスタイルシートになります。
-------------------------------------------------------------- */
/* futura代替フォント */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&display=swap');

* {
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-width: 1000px;
}

a {
  color: #1E1E1E;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: middle;
}

.hide {
  display: none !important;
}

/* --------------------------------------------------
	改行
-------------------------------------------------- */
.spBreak {
  display: none;
}

/* --------------------------------------------------
	LAYOUT
-------------------------------------------------- */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
  text-align: left;
  color: #1E1E1E;
  background-color: #ffffff;
  overflow-y: scroll;
}

body.top {
  background: #FAFAFA;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

article {
  display: none;
}

/* ここまでが「共通部分」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「.header」のスタイルシートになります。
-------------------------------------------------------------- */
.header {
  margin: 0 0 40px;
  text-align: center;
}

.top .header {
  display: none;
}

.futureTimeline .header {
  margin: 0 0 28px;
  border-bottom: 1px solid #E5E5E5;
}

.header h1 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  width: 1008px;
  height: 60px;
}

.header .titleBox{
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .titleBox img{
  width: 145px;
}

.header .lifeplanLogo img{
  width: 268px;
}

.futureTimeline .header h1 {
  cursor: pointer;
}

nav {
  font-size: 14px;
  border-top: 1px solid #E5E5E5;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 30px 0 26px;
  width: 706px;
  background: 50% 100% no-repeat;
  background-size: 706px auto;
}

/* === 年齢選択時画面 === */
.ageCnt nav ul {
  background-image: url("../image/common/bg_step_01.png");
}

.ageCnt nav li:nth-child(1){
  color: #00145B;
  font-weight: bold;
}

.ageCnt nav li:nth-child(n + 2){
  color: #888888;
}

/* === 性別選択時画面 === */
.genderCnt nav ul {
  background-image: url("../image/common/bg_step_02.png");
}
.genderCnt nav li:nth-child(-n+1){
  color: #00145B;
}
.genderCnt nav li:nth-child(2){
  color: #00145B;
  font-weight: bold;
}

.genderCnt nav li:nth-child(n + 3){
  color: #888888;
}

/* === 職業選択時画面 === */
.jobCnt nav ul {
  background-image: url("../image/common/bg_step_03.png");
}

.jobCnt nav li:nth-child(-n+2){
  color: #00145B;
}

.jobCnt nav li:nth-child(3){
  color: #00145B;
  font-weight: bold;
}

.jobCnt nav li:nth-child(n + 4){
  color: #888888;
}

/* === 家族構成選択時画面 === */
.familyCnt nav ul {
  background-image: url("../image/common/bg_step_04.png");
}
.familyCnt nav li:nth-child(-n+3){
  color: #00145B;
}
.familyCnt nav li:nth-child(4){
  color: #00145B;
  font-weight: bold;
}

.familyCnt nav li:nth-child(n + 5){
  color: #888888;
}

/* === 金融資産入力時画面 === */
.assetCnt nav ul {
  background-image: url("../image/common/bg_step_05.png");
}
.assetCnt nav li:nth-child(-n+4){
  color: #00145B;
}

.assetCnt nav li:nth-child(5){
  color: #00145B;
  font-weight: bold;
}

nav li {
  color: #888888;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

nav li:nth-child(1) {
  margin-left: -75px;
}

nav li:nth-child(5) {
  margin-right: -75px;
}

/* ここまでが「.header」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「btn」のスタイルシートになります。
-------------------------------------------------------------- */
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button::-ms-clear {
  display: none;
}

button::-ms-reveal {
  display: none;
}

button::-ms-expand {
  display: none;
}

button::-webkit-credentials-auto-fill-button {
  margin: 0;
  width: 0;
  background-color: transparent;
}

button:not(:disabled) {
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
}

.btnStart {
  width: 260px;
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
  background-color: #F5444D;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 auto;
  transition: background-color .3s ease-out;
}

.btnStart:hover{
  background-color: #FC7C83;
  transition: background-color .3s ease-out;
}

.btnList {
  position: relative;
  margin: 40px auto 0;
}

.btnPrimary {
  width: 260px;
  height: 50px;
  padding-top: 2px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.2;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  background: #00145B;
  -webkit-transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.btnPrimary:not(:disabled):hover {
  background-color: #6279CC;
  -webkit-box-shadow: inset 0 0 0 1px #6279CC;
          box-shadow: inset 0 0 0 1px #6279CC;
}

.btnNext .btnViewResults{
  background: #F5444D;
}

.btnViewResults:not(:disabled):hover{
  background-color: #FC7C83;
  -webkit-box-shadow: inset 0 0 0 1px #FC7C83;
          box-shadow: inset 0 0 0 1px #FC7C83;
}

.btnBack {
  text-align: left;
}

.btnBack:not(:only-child) {
  position: absolute;
  top: 15px;
  left: 0;
}

.btnBack button {
  padding-left: 26px;
  font-size: 16px;
  color: #676767;
  background: url("../image/common/icon_back.png") 0 50% no-repeat;
  background-size: 20px auto;
}

.btnBack button:hover {
  text-decoration: underline;
}

.btnNext:not(:first-child) {
  margin: 40px 0 0;
}

.btnWhite {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #00145B;
  background: #ffffff;
  border: 1px solid #00145B;
  border-radius: 6px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.btnWhite:hover {
  color: #fff;
  background: #00145B;
}

.btnClose {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 32px;
  width: 24px;
}



.btnEdit {
  width: 260px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  font-size: 15px;
  background: #00145B;
  border-radius: 6px;
  -webkit-transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.btnEdit:not(:disabled):hover {
  background-color: #6279CC;
  -webkit-box-shadow: inset 0 0 0 1px #6279CC;
          box-shadow: inset 0 0 0 1px #6279CC;
}

.btnEditWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.08);
}

.deleteBtn {
  margin: 0 0 0 16px;
}

.deleteBtn button {
  padding: 28px 0 0;
  width: 20px;
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  background: url(../image/common/btn_delete.png) 50% 50% no-repeat;
  background-size: contain;
}

.addBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0 0;
}

.addBtn:before {
  content: attr(data-label);
  padding: 0 0 0 10px;
  width: 151px;
  letter-spacing: 0.05em;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.addBtn button {
  padding: 0 0 2px;
  width: 240px;
  height: 32px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #00145B;
  line-height: 30px;
  letter-spacing: 0.05em;
}

.addBtn button::before{
  content: "";
  display: block;
  padding-bottom: 3px;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  background: url(../image/common/btn_add.png) no-repeat;
  background-size: 16px auto;
}

/* ここまでが「btn」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「form」のスタイルシートになります。
-------------------------------------------------------------- */
.formBox > div,
.formBox dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.formBox dt {
  width: 104px;
  font-size: 16px;
  text-align: left;
}

.formBox p:not(.checkBox) {
  margin: 0;
}

.flexibleBox {
  border-top: 1px solid #F2F2F2;
}

.flexibleBox:not([data-set="0"]) .addBtn {
  margin: 5px 0 0;
}

.flexibleBox:not([data-set="0"]) .addBtn:before {
  opacity: 0;
}

.flexibleBox:first-child {
  border-top: none;
}

.checkBox {
  position: relative;
  margin-left: 20px;
}

.checkBox label {
  position: relative;
  padding: 0 0 0 25px;
  vertical-align: middle;
  background: url("../image/common/icon_check_off.png") 0 50% no-repeat, url("../image/common/icon_check_on.png") 0 50% no-repeat;
  background-size: 18px auto, 0 0;
  cursor: pointer;
  z-index: 2;
}

.checkBox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.checkBox input:checked + label {
  background-size: 0 0, 18px auto;
}

.inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.inputBox input[type="number"],
.inputBox input[type="text"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  background: none transparent;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  width: 70px;
  height: 40px;
  padding: 0 8px;
  font-size: 16px;
  color: #111;
  font-family: Arial, sans-serif;
  text-align: right;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

.inputBox input[type="number"]::-ms-clear,
.inputBox input[type="text"]::-ms-clear {
  display: none;
}

.inputBox input[type="number"]::-ms-reveal,
.inputBox input[type="text"]::-ms-reveal {
  display: none;
}

.inputBox input[type="number"]::-ms-expand,
.inputBox input[type="text"]::-ms-expand {
  display: none;
}

.inputBox input[type="number"]::-webkit-credentials-auto-fill-button,
.inputBox input[type="text"]::-webkit-credentials-auto-fill-button {
  margin: 0;
  width: 0;
  background-color: transparent;
}

.inputBox input[type="number"] {
  -moz-appearance: textfield;
}

.inputBox input[type="number"]::-webkit-outer-spin-button, .inputBox input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inputBox span {
  margin: 0 0 0 6px;
}

.rateBox {
  margin: 0 0 0 9px;
}

.rateBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rateBox li:not(:nth-child(1)) {
  margin: 0 0 0 4px;
}

.rateBox button {
  padding: 24px 0 0;
  width: 24px;
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  background: 50% 50% no-repeat #F2F2F2;
  background-size: contain;
}

.rateBox button.minus {
  background-image: url(../image/common/btn_minus.png);
}

.rateBox button.plus {
  background-image: url(../image/common/btn_plus.png);
}

.selectBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  width: 204px;
  height: 38px;
  background: url("../image/common/select_arrow.png") right 9px center no-repeat;
  background-size: 10px auto;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
}

.selectBox select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  opacity: 0;
}

/* ここまでが「form」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「#top」のスタイルシートになります。
-------------------------------------------------------------- */
#top {
  padding: 203px 0 0;
  width: 100%;
}

#top h2 .titleBox {
  display: flex;
  justify-content: center;
	align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

#top h2 em {
  max-width: 360px;
}

#top h2 picture {
  margin-left: 31px;
  max-width: 667px;
}

#top h2 span {
  display: block;
  margin: 15px 0 0;
  padding: 15px;
  color: #1E1E1E;
  font-size: 20px;
  text-align: center;
  background: #ffffff;
}

#top p {
  margin: 60px 0 0;
}

/* ここまでが「#top」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「.question」のスタイルシートになります。
-------------------------------------------------------------- */
.question {
  margin: 0 auto;
  width: 968px;
  text-align: center;
}

.question h2 {
  margin: 0 0 31px;
  font-size: 32px;
  color: #00145B;
}

.question .qBox {
  padding: 40px 0;
  background: #F8F8F8;
}

.question .qBox .formBox ~ .formBox {
  margin-top: 28px;
}

.question .qBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -30px auto 0;
  width: 568px;
}

.question .qBox li {
  margin: 30px 0 0;
  width: 268px;
}

.question .qBox > p {
  margin: 19px 0 0;
  font-size: 12px;
}

.question .qBox > p.dispAverage {
  margin: 8px 0 0;
  font-size: 14px;
  color: #888888;
}

.question .qBox > p.dispAverage span {
  font-family: Arial, sans-serif;
  font-size: 20px;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

.question .inputBox input[type="text"] {
  width: 100px;
  height: 40px;
  background: #ffffff;
}

/* ここまでが「#question」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「#futureTimeline」のスタイルシートになります。
-------------------------------------------------------------- */
.chronology {
  margin: 0 auto;
  text-align: center;
}

.chronology .btnList {
  padding: 0 20px;
  max-width: 1008px;
}

.chronology .formBox {
  margin: 45px auto 0;
  width: 328px;
}

.chronology .formBox dt {
  width: 162px;
  letter-spacing: 0.05em;
}

.chronology .formBox .btnQuestion {
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 9px;
  width: 19px;
  font-size: 0;
}

.chronology .formBox dd {
  font-size: 14px;
}

.stepList {
  position: relative;
  margin: 77px 0 0;
  padding: 60px 20px;
  text-align: center;
  background: #F8F8F8;
}

.stepList h3 {
  position: absolute;
  top: -0.75em;
  left: 0;
  width: 100%;
  font-size: 24px;
  color: #00145B;
}

.stepList ul {
  display: flex;
  justify-content: center;
	align-items: center;
  margin-top: -6px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.stepList li {
  padding: 6px 6px;
  width: 25%;
  position: relative;
}

.stepList li:nth-child(1) .btnWhite:before {
  background-image: url(../image/common/icon_future_01.png);
}

.stepList li:nth-child(1) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_01_white.png);
}

.stepList li:nth-child(2) .btnWhite:before {
  background-image: url(../image/common/icon_future_02.png);
}

.stepList li:nth-child(2) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_02_white.png);
}

.stepList li:nth-child(3) .btnWhite:before {
  background-image: url(../image/common/icon_future_03.png);
}

.stepList li:nth-child(3) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_03_white.png);
}

.stepList li:nth-child(4) .btnWhite:before {
  background-image: url(../image/common/icon_future_04.png);
}

.stepList li:nth-child(4) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_04_white.png);
}

.stepList li:nth-child(5) .btnWhite:before {
  background-image: url(../image/common/icon_future_06.png);
}

.stepList li:nth-child(5) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_06_white.png);
}

.stepList li:nth-child(6) .btnWhite:before {
  background-image: url(../image/common/icon_future_05.png);
}

.stepList li:nth-child(6) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_05_white.png);
}

.stepList li:nth-child(7) .btnWhite:before {
  background-image: url(../image/common/icon_future_06.png);
}

.stepList li:nth-child(7) .btnWhite:hover:before{
  background-image: url(../image/common/icon_future_06_white.png);
}

.stepList .btnWhite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  color: #00145B;
  font-size: 16px;
}

.stepList .btnWhite:before {
  content: "";
  position: absolute;
  left: 26px;
  display: inline-block;
  margin: 0 6px 0 0;
  width: 28px;
  height: 28px;
  background: 50% 50% no-repeat;
  background-size: contain;
}

.stepList .btnWhite:hover{
  color: #fff;
  background-color: #6279CC;
  border-color: #6279CC;
}

.stepList .btnWhite span {
  padding-top: 3px;
  text-align: center;
}

.tabBox {
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1008px;
}

.tabBox h2 {
  font-size: 32px;
  color: #00145B;
  margin-bottom: 20px;
}

.tabBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.tabBox li {
  margin: 0 5px;
  width: 235px;
}

.tabBox a {
  display: block;
  border-radius: 6px;
  padding: 4px 0 2px;
  background: rgba(103, 103, 103, 0.1);
  color: rgba(103, 103, 103, 0.6);
  position: relative;
}

.tabBox a:hover{
  color: #fff;
  background-color: #6279CC;
}

.tabBox a.active {
  color: #fff;
  background: #6279CC;
}

.tabBox a.active::after{
  content: "";
  display: block;
  position: absolute;
  transform: translateX(-50%);
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #6279CC transparent transparent transparent;
}

.chartArea {
  margin: 50px 0 0;
  background: #ffffff;
}

.chartArea .chartBox {
  max-width: 968px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.chartArea .chartBox:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 16px;
  height: 135px;
  background: url("../image/common/chart_balance_label.png") no-repeat;
  background-size: 16px auto;
}

.chartArea .chartBox > div:not(.active) {
  display: none;
}

.chartArea #chartEvent .highcharts-data-label span {
  display: block;
  line-height: 1.5;
  text-align: center;
}

.chartArea .legendBox {
  margin: 9px 0 0;
  background: #F8F8F8;
}

.chartArea .legendBox > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px 20px;
  width: 1008px;
}

.chartArea .legendBox dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 40px 0 0;
}

.chartArea .legendBox dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chartArea .legendBox dl div:not(:nth-child(1)) {
  margin: 3px 0 0;
}

.chartArea .legendBox dt {
  margin-right: 5px;
  width: 3em;
  font-weight: bold;
  color: #1E1E1E;
  white-space: nowrap;
}

.chartArea .legendBox dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.chartArea .legendBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -20px;
  text-align: left;
}

/* .chartArea .legendBox ul li:nth-child(1) {
  width: calc(7em + 24px);
}

.chartArea .legendBox ul li:nth-child(2), .chartArea .legendBox ul li:nth-child(3), .chartArea .legendBox ul li:nth-child(5), .chartArea .legendBox ul li:nth-child(6), .chartArea .legendBox ul li:nth-child(7) {
  width: calc(5em + 24px);
}

.chartArea .legendBox ul li:nth-child(4) {
  width: calc(6em + 24px);
} */

.chartArea .legendBox ul.incomes li:nth-child(1):before {
  background: #2F6FB6;
}

.chartArea .legendBox ul.incomes li:nth-child(2):before {
  background: #5A99DE;
}

.chartArea .legendBox ul.incomes li:nth-child(3):before {
  background: #AECCF8;
}

.chartArea .legendBox ul.incomes li:nth-child(4):before {
  background: #86BADE;
}

.chartArea .legendBox ul.incomes li:nth-child(5):before {
  background: #3CA094;
}

.chartArea .legendBox ul.incomes li:nth-child(6):before {
  background: #6FCEC0;
}

.chartArea .legendBox ul.incomes li:nth-child(7):before {
  background: #97E35F;
}

.chartArea .legendBox ul.spending li:nth-child(1):before {
  background: #E06486;
}

.chartArea .legendBox ul.spending li:nth-child(2):before {
  background: #F09697;
}

.chartArea .legendBox ul.spending li:nth-child(3):before {
  background: #F6C3BD;
}

.chartArea .legendBox ul.spending li:nth-child(4):before {
  background: #E6AE67;
}

.chartArea .legendBox ul.spending li:nth-child(5):before {
  background: #F6D8B2;
}

.chartArea .legendBox ul.spending li:nth-child(6):before {
  background: #E5E5E5;
}

.chartArea .legendBox ul.spending li:nth-child(7):before {
  background: #D9D9D9;
}

.chartArea .legendBox li {
  position: relative;
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0 0 0 24px;
}

.chartArea .legendBox li:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
}

.chartArea .legendBox p {
  position: relative;
  padding: 0 0 0 32px;
  width: calc(8em + 32px);
  font-weight: bold;
  white-space: nowrap;
}

.chartArea .legendBox p:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #6279CC;
}

/* グラフ縦横軸数値 */
#futureTimeline .highcharts-axis-labels text{
  position: relative;
  z-index: 999;

}

/* ここまでが「#futureTimeline」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「フッター」のスタイルシートになります。
-------------------------------------------------------------- */
.footer {
  margin: 107px 0 0;
  width: 100%;
  min-width: 1000px;
  background: #ffffff;
  border-top: 1px solid #E5E5E5;
}

.footerTxt {
  margin: 0 auto;
  padding: 28px 20px 32px;
  max-width: 1008px;
  font-size: 12px;
}

.footerCopy {
  display: block;
  padding: 31px 20px;
  line-height: 1.33;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #E5E5E5;
}

/* ここまでが「フッター」のスタイルシートになります。
-------------------------------------------------------------- */
/* ここからが「.modal」のスタイルシートになります。
-------------------------------------------------------------- */
.modal {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 852px;
  border: 1px solid #E5E5E5;
  padding: 30px 0 80px;
  border-radius: 10px;
  z-index: 1;
}

.modalWrap {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

.modalWrap.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.modalWrap#toolTip .modal {
  padding: 30px 0;
  max-width: 500px;
  position: relative;
}

.modalWrap#toolTip .modalContent {
  padding: 0 30px;
}

.modalWrap#toolTip h2 {
  margin: 0 0 15px;
  padding: 0;
  letter-spacing: normal;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  border-bottom: none;
}

.modalInner {
  max-height: calc(100vh - 165px);
  overflow-y: auto;
}

.modalContent {
  position: relative;
  z-index: 0;
  padding: 0 31px 30px;
}

.modal h2 {
  letter-spacing: 0.05em;
  font-size: 24px;
}

.modal h3 {
  margin: 32px 0 5px;
  padding: 1px 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  border-left: 3px solid #556291;
}

.modal .formBox > div {
  padding: 16px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.modal .formBox > div:not(:nth-child(1)) {
  border-top: 1px solid #F2F2F2;
}

.modal .formBox > div:not(:nth-child(1)).flexibleBoxItem {
  padding-top: 8px;
  border-top: none;
}

.modal .formBox > div.flexibleBoxItem{
  padding-top: 12px;
}

.modal .formBox > div.hide + div {
  border-top: none;
}

.modal .formBox > div[data-type="payment"] dd.flexWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal .formBox > div[data-type="payment"] .inputBox:first-child,
.modal .formBox > div[data-type="payment"] .inputBox:nth-child(5){
  width: 140px;
}

.modal .formBox > div[data-type="payment"] .inputBox{
  width: 200px;
}

.modal .formBox > div[data-type="payment"] .txt2{
  margin-right: 21.5px;
}

.modal .formBox > div[data-type="payment"] .txt3{
  margin-right: 10px;
}

.modal .formBox .inputBoxError{
  border-color: #FF1D00;
}

.modal .formBox > div dd.flexWrap{
  flex-wrap: wrap;
  width: 578px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F2F2F2;
}

.modal .flexibleBox[data-set="1"] :nth-child(1) .flexWrap{
  border: none;
}

.modal .flexibleBox[data-set="2"] :nth-child(2) .flexWrap{
  border: none;
}

.modal .flexibleBox[data-set="3"] :last-child .flexWrap{
  border: none;
}

.modal .formBox dt {
  padding: 0 0 0 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  line-height: 38px;
  width: 151px;
  letter-spacing: 0.05em;
  color: #000;
}

.modal .formBox dd.flexWrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -8px;
}

.modal .formBox dd.flexWrap > div {
  margin-top: 8px;
}

.modal .formBox dd .rateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .formBox ~ .flexibleBox:not(:last-child) {
  padding-bottom: 15px;
}

.modal .formBox ~ .flexibleBox:not([data-set="0"]) {
  border-top: 1px solid #F2F2F2;
}

.modal .formBox .formBoxErrorTxt {
  color: #FF1D00;
  margin-top: 12px;
  width: 100%;
}

.modal .edutItem .inputBox{
  width: 210px;
}

.modal .flexibleBox[data-set="1"] .flexibleBoxItem,
.modal .flexibleBox[data-set="1"] .flexWrap{
  padding-bottom: 2px;
}

.modal .flexibleBox[data-set="2"] :nth-child(2) .flexWrap,
.modal .flexibleBox[data-set="2"] .flexibleBoxItem:nth-child(2){
  padding-bottom: 2px;
}

.modal .inputBox{
  width: 140px;
  justify-content: left;
}

.modal .spFlexWrap .inputBox:nth-child(4){
  width: 200px;
  justify-content: left;
}

.modal .flexWrap .inputBox:nth-child(5){
  width: 140px;
  justify-content: left;
}

.modal .rateBox .txt2{
  margin-left: 20px;
}

.modal .inputBox > span,
.modal .rateBox > span {
  width: 63px;
  color: #111;
  font-size: 14px;
}

.modal .inputBox > span.txt1,
.modal .rateBox > span.txt1 {
  width: 24px;
}

.modal .inputBox > span.txt2,
.modal .rateBox > span.txt2 {
  width: 38px;
}

.modal .inputBox > span.txt3,
.modal .rateBox > span.txt3 {
  width: 52px;
}

.modal .inputBox > span.txt4,
.modal .rateBox > span.txt4 {
  width: 61px;
}

.modal .inputBox > span.txtYear,
.modal .rateBox > span.txtYear {
  width: 58px;
}

.modal .rateBox {
  margin: 0;
  margin-right: 20px;
}

.modal .btnWhite {
  width: 200px;
  height: 40px;
  line-height: 40px;
}

.modalOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* ここまでが「.modal」のスタイルシートになります。
-------------------------------------------------------------- */
