@charset "UTF-8";
/*===========================================
index
===========================================*/

#simulationWrap {
  max-width: 990px;
  margin: auto;
  padding: 0 0 100px;
}

/* errorBox */
.errorBox.hidden {
  display: none;
}
.errorBox {
  box-sizing: border-box;
  width: 100%;
  max-width: 950px;
  margin: 30px auto 30px;
  padding: 20px;
  background-color: #fff7f7;
  border: 5px solid #ff0000;
  color: #ff0000;
  line-height: 1.5;
}
.errorBox .errMessage {
  font-size: 16px;
  font-weight: 800;
}

/* mvArea */
.mvArea {
  margin: 0 auto 40px;
  max-width: 950px;
}
.mvArea .lead {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
}

/* simulation */
#simulation {
  padding: 0 20px;
}

/* questionWrap */
.questionWrap {
  position: relative;
}
.questionWrap .question + .question {
  margin-top: 85px;
}
#simulation {
  overflow: hidden;
}
.questionWrap .question {
  opacity: 1;
  visibility: visible;
  position: relative;
  transition: opacity 0.5s ease 0.1s,
  visibility 0.5s ease 0.1s;
}
.questionWrap .question.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.5s ease 0s,
  visibility 0s ease 1s;
}
.questionWrap .question .questionTitle {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.questionWrap .question .questionTitle .questionTitleInner {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid #006ebd;
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 5px;
}
.questionWrap .question .questionTitle .questionTitleInner .qNo {
  color: #006ebd;
  flex: 0 0 auto;
  margin-right: 10px;
}
.questionWrap .question .questionTitle .questionTitleInner .qNo::after {
  content: "\FF1A";
}
.questionWrap .question .questionTitle .questionTitleInner .qNo .smallText {
  font-size: 18px;
}
.questionWrap .question .questionTitle .questionTitleInner .titleText {
  flex: 1 1 auto;
  line-height: 1.5em;
  text-align: left;
}
.questionWrap .question .questionTitle + .questionLead {
  margin-top: 10px;
}
.questionWrap .question .questionLead {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  background: #fffde5;
  padding: 25px 30px;
}
.questionWrap .question .questionLead .textInner {
  flex: 0 1 auto;
  text-align: left;
  display: block;
}
.questionWrap .question .answers {
  margin-top: 30px;
}
.questionWrap .question .questionTitle + .answers {
  margin-top: 60px;
}
.questionWrap .question .answers .ansItem + .ansItem,
.questionWrap .question .answers .ansModal + .ansItem {
  margin-top: 15px;
}
.questionWrap .question .answers .ansItem.hidden {
  display: none;
}
.questionWrap .question .answers .ansItem .labels:has(input:checked) {
  border-color: #006ebd;
  background: #eef9ff;
}
.questionWrap .question .answers .ansItem.style01 .labels,
.questionWrap .question .answers .ansItem.style02 .labels {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  border: 3px solid #ddd;
  transition: background-color 0.2s ease 0s,
  border 0.2s ease 0s;
  border-radius: 6px;
  font-size: 20px;
}
.questionWrap .question .answers .ansItem.style01 .labelInput.typeRadio,
.questionWrap .question .answers .ansItem.style02 .labelInput.typeRadio {
  flex: 0 0 auto;
  margin-right: 16px;
}
.questionWrap .question .answers .ansItem.style01 .labelInput.typeRadio input,
.questionWrap .question .answers .ansItem.style02 .labelInput.typeRadio input {
  width: 20px;
  height: 20px;
}
.questionWrap .question .answers .ansItem.style01 .labelText,
.questionWrap .question .answers .ansItem.style02 .labelText {
  flex: 1 1 auto;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.4;
}
.questionWrap .question .answers .ansItem.style02 .labelText .labelTextSub::before {
  content: "\FF08";
}
.questionWrap .question .answers .ansItem.style02 .labelText .labelTextSub::after {
  content: "\FF09";
}
.questionWrap .question .answers .ansModal {
  text-align: right;
  margin-top: 8px;
}
.questionWrap .question .questionBtnWrap {
  text-align: center;
  margin-top: 60px;
}
.questionWrap .question .questionBtnWrap.typeResult {
  margin-top: 25px;
}
.questionWrap .question .questionBtnWrap .nextBtn {
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  padding: 18px 0;
  line-height: 1em;
  width: 190px;
  transition: opacity 0.2s ease 0s;
  opacity: 1;
  display: inline-block;
  text-decoration: none;
  min-width: 330px;
  background: #006ebd;
  color: #fff;
}
.questionWrap .question.complete .questionBtnWrap .nextBtn:hover {
  opacity: 0.8;
}
.questionWrap .question:not(.complete) .questionBtnWrap .nextBtn {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

/*===========================================
result
===========================================*/

#resultWrap {
  max-width: 990px;
  margin: auto;
  padding: 0 0 100px;
  transition: opacity 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0s,
  visibility 0.5s ease 0s;
}
#resultWrap.show {
  opacity: 1;
  visibility: visible;
}

/* resultWrap mvArea */
#resultWrap .mvArea {
  text-align: center;
}
#resultWrap .mvArea .resultLeadWrap {
  margin-top: 30px;
  text-align: center;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#resultWrap .mvArea .resultLeadWrap .resultLead {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  flex: 0 0 auto;
  border-bottom: 5px solid #006ebd;
}
#resultWrap .mvArea .resultLeadWrap .resultLead::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 15px solid rgba(0,0,0,0);
  border-top-color: #006ebd;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -32px;
}
#resultWrap .mvArea .resultLeadWrap .planLength {
  font-size: 40px;
  color:#006ebd;
  font-weight: bold;
}

/* result */
#result {
  padding: 0 20px;
}
#result .resultTitle {
  margin-bottom: 30px;
  text-align: center;
}
#result .resultTitle .resultTitleInner {
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  border-bottom: 5px solid #006ebd;
}
#result .linkBtn,
#result .nextBtn,
#result .resetBtn {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 30px;
  border-radius: 3px;
  text-decoration: none;
  line-height: 1em;
  transition: opacity 0.2s ease 0s;
  opacity: 1;
  min-width: 330px;
  border: 2px solid #006ebd;
}

#result .resetBtn {
  color: #006ebd;
  background: #fff;
}
#result .linkBtn,
#result .nextBtn {
  color: #fff;
  background: #006ebd;
}
#result .linkBtn:hover,
#result .reSimulation .nextBtn:hover,
#result .resetBtn:hover {
  opacity: 0.8;
}
#result .reSimulation:not(.complete) .nextBtn {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
.selectQuestions {
  margin-bottom: 40px;
  background: #eef9ff;
  padding: 10px 30px 30px;
}
.selectQuestions .selectQuestion {
  border-bottom: 3px solid #ddd;
  padding: 18px 0 13px 36px;
  background: url('/net/kantansim/img/icon_check.png') no-repeat left center;
  background-size: 16px auto;
  font-size: 16px;
  font-weight: bold;
}

/* annotationText */
.annotationText {
  margin-bottom: 50px;
}

/* resultPlanWrap */
.resultPlanWrap {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.resultPlan {
  padding-bottom: 40px;
  width: 100%;
}
.resultPlan + .resultPlan {
  margin: 30px 0;
}
.resultPlan.order1 {
  order: 1;
}
.resultPlan.order2 {
  order: 2;
}
.resultPlan.order3 {
  order: 3;
}
.resultPlan.type_n {
  border: 16px solid #459bac;
}
.resultPlan.type_n .planHeading {
  background: #ebfcff;
}
.resultPlan.type_n .resultPlanTitle {
  border-bottom: 5px solid #459bac;
}
.resultPlan.type_n .planFeatures .featuresInner {
  background: #ebfcff;
}
.resultPlan.type_n .detailBtnWrap .detailBtn {
  background: #459bac;
}
.resultPlan.type_s {
  border: 16px solid #e88d16;
}
.resultPlan.type_s .planHeading {
  background: #fff9f0;
}
.resultPlan.type_s .resultPlanTitle {
  border-bottom: 5px solid #e88d16;
}
.resultPlan.type_s .planFeatures .featuresInner {
  background: #fff9f0;
}
.resultPlan.type_s .detailBtnWrap .detailBtn {
  background: #e88d16;
}
.resultPlan.type_j {
  border: 16px solid #299b4a;
}
.resultPlan.type_j .planHeading {
  background: #f3fff7;
}
.resultPlan.type_j .resultPlanTitle {
  border-bottom: 5px solid #299b4a;
}
.resultPlan.type_j .planFeatures .featuresInner {
  background: #f3fff7;
}
.resultPlan.type_j .detailBtnWrap .detailBtn {
  background: #299b4a;
}
.resultPlan .planHeading {
  padding: 20px 100px 30px;
}
.resultPlan .resultPlanTitle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
.resultPlan .resultPlanTitle .planImg {
  width: 400px;
}
.resultPlan .resultPlanTitle .planTitle {
  font-size: 25px;
  font-weight: bold;
  margin-top: 12px;
}
.resultPlan .resultPlanAllCost {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.resultPlan .resultPlanAllCost .cost {
  margin: 0 40px;
}
.resultPlan .resultPlanAllCost .cost .costText {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
.resultPlan .resultPlanAllCost .cost .costYen {
  font-size: 60px;
  font-weight: bold;
  color: #e5004f;
  text-align: center;
  line-height: 1em;
}
.resultPlan .resultPlanAllCost .cost .costYen .textSmall {
  font-size: 40px;
}

/* cashbackWrap */
.cashbackWrap {
  text-align: center;
  margin-top: 30px;
}
.cashbackWrap .cashbackText {
  display: inline;
  color: #e5004f;
  font-size: 35px;
  font-weight: bold;
  background: linear-gradient(0deg,#fff368 0%, #fff368 46%, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0) 100%);
}
.cashbackWrap .cashbackLinkWrap {
  margin-top: 10px;
}

/* resultBreakdownWrap */
.resultBreakdownWrap {
  margin-bottom: 50px;
  padding: 40px 100px 0;
}
.resultBreakdown + .resultBreakdown {
  margin-top: 20px;
}
.resultBreakdown {
  border: 3px solid #ddd;
  border-radius: 5px;
}
.resultBreakdown .breakdownTitle {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 30px;
  cursor: pointer;
  line-height: 1em;
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
}
.resultBreakdown .breakdownTitle::before,
.resultBreakdown .breakdownTitle::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: calc(50% - 1px);
  right: 30px;
  transition: transform 0.5s ease 0s;
}
.resultBreakdown .breakdownTitle::before {
  transform: rotate(360deg);
}
.resultBreakdown .breakdownTitle::after {
  transform: rotate(450deg);
}
.resultBreakdown.open .breakdownTitle::before,
.resultBreakdown.open .breakdownTitle::after {
  transform: rotate(0deg);
}
.resultBreakdown .breakdownTable {
  margin: 0 30px;
  width: calc(100% - 60px);
}
.resultBreakdown .breakdownTable .breakdownTh,
.resultBreakdown .breakdownTable .breakdownTd {
  padding: 0 30px 13px;
  font-weight: bold;
  font-size: 16px;
}
.resultBreakdown .breakdownTable .breakdownTh {
  text-align: left;
}
.resultBreakdown .breakdownTable .breakdownTd {
  text-align: right;
  width: 145px;
}
.resultBreakdown .breakdownTable .breakdownRow + .breakdownRow {
  border-top: 1px solid #ddd;
}
.resultBreakdown .breakdownTable .breakdownRow + .breakdownRow .breakdownTh,
.resultBreakdown .breakdownTable .breakdownRow + .breakdownRow .breakdownTd  {
  padding-top: 13px;
}
.resultBreakdown .breakdownTable .breakdownRow.type_result {
  border-top: 4px solid #ddd;
}
.resultBreakdown .breakdownTable .type_result .breakdownTh,
.resultBreakdown .breakdownTable .type_result .breakdownTd {
  text-align: right;
  font-size: 20px;
}
.resultBreakdown .breakdownTable .breakdownRow.type_discount .breakdownTd {
  color: #e5004f;
}

/* planFeatures */
.planFeatures {
  padding: 0 100px;
}
.planFeatures .featuresTitle {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.planFeatures .featuresInner {
  padding: 30px;
}
.planFeatures .featuresListMain .list {
  font-size: 16px;
  font-weight: bold;
}
.planFeatures .featuresListMain .list + .list {
  margin-top: 10px;
}
.planFeatures .featuresListMain .list sup {
  font-weight: normal;
  margin-left: 5px;
}
.planFeatures .featuresListMain + .featuresListSub {
  margin-top: 20px;
}
.planFeatures .featuresListSub .list {
  font-size: 14px;
}
.planFeatures .featuresListSub .list + .list {
  margin-top: 8px;
}
.planFeatures .planFeatures_note {
  padding-top: 15px;
  font-size: 14px;
}

/* detailBtnWrap */
.detailBtnWrap {
  margin-top: 40px;
  text-align: center;
}
.detailBtnWrap .detailBtn {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 20px 30px;
  border-radius: 3px;
  text-decoration: none;
  line-height: 1em;
  transition: opacity 0.2s ease 0s;
  opacity: 1;
}
.detailBtnWrap .detailBtn:hover {
  opacity: 0.8;
}

/* resultSupport */
.resultSupport {
  margin-bottom: 60px;
}
.resultSupport .supportInner {
  background: #eef9ff;
  padding: 30px;
  margin-bottom: 15px;
}
.resultSupport .supportListMain {
  margin-bottom: 20px;
}
.resultSupport .supportListMain .list + .list {
  margin-top: 20px;
}
.resultSupport .supportListMain .list {
  padding-bottom: 20px;
  border-bottom: 5px solid #ddd;
  font-size: 20px;
  font-weight: bold;
}
.resultSupport .supportListMain .list sup {
  font-weight: normal;
}
.resultSupport .supportListModal .list + .list {
  margin-top: 10px;
}
.resultSupport .supportListSub {
  font-size: 14px;
}
.resultSupport .supportListSub .list + .list {
  margin-top: 7px;
}
.resultSupport .supportBtnArea {
  margin-top: 60px;
}
.resultSupport .supportBtnArea .supportBtnWrap {
  text-align: center;
}

/* reSimulation */
.reSimulation .answers {
  margin-top: 30px;
}
.reSimulation .answers .ansItem + .ansItem,
.reSimulation .answers .ansModal + .ansItem {
  margin-top: 15px;
}
.reSimulation .answers .ansItem.hidden {
  display: none;
}
.reSimulation .answers .ansItem .labels:has(input:checked) {
  border-color: #006ebd;
  background: #eef9ff;
}
.reSimulation .answers .ansItem.style02 .labels {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  border: 3px solid #ddd;
  transition: background-color 0.2s ease 0s,
  border 0.2s ease 0s;
  border-radius: 6px;
  font-size: 20px;
}
.reSimulation .answers .ansItem.style02 .labelInput.typeRadio {
  flex: 0 0 auto;
  margin-right: 16px;
}
.reSimulation .answers .ansItem.style02 .labelInput.typeRadio input {
  width: 20px;
  height: 20px;
}
.reSimulation .answers .ansItem.style02 .labelText {
  flex: 1 1 auto;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.reSimulation .answers .ansItem.style02 .labelText .labelTextSub::before {
  content: "\FF08";
}
.reSimulation .answers .ansItem.style02 .labelText .labelTextSub::after {
  content: "\FF09";
}
.reSimulation .answers .ansModal {
  text-align: right;
  margin-top: 8px;
}
.reSimulation .questionBtnWrap {
  margin-top: 60px;
  text-align: center;
}
.reSimulation .questionBtnWrap .nextBtn {
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  background: #006ebd;
  cursor: pointer;
  color: #fff;
  border: none;
  padding: 18px 0;
  line-height: 1em;
  width: 190px;
  transition: opacity 0.2s ease 0s;
  opacity: 1;
  display: inline-block;
}
.reSimulation.complete .questionBtnWrap .nextBtn:hover {
  opacity: 0.8;
}
.reSimulation:not(.complete) .questionBtnWrap .nextBtn {
  opacity: 0.2;
  cursor: default;
}

.reSimulation .reSimulationBtnArea {
  margin-top: 30px;
}
.reSimulation .reSimulationBtnArea .reSimulationBtnWrap {
  text-align: center;
}
.reSimulation .reSimulationBtnArea .reSimulationBtnWrap + .reSimulationBtnWrap {
  margin-top: 50px;
}

/*===========================================
common
===========================================*/
/* indent */
.indent-1 {
  text-indent: -1em;
  padding-left: 1em;
}
.indent-1_5 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.indent-2 {
  text-indent: -2em;
  padding-left: 2em;
}
.indent-2_5 {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

/* color */
.colorBlue {
  color: #006ebd;
}
.colorRed {
  color: #f00;
}

/* text align */
.textCenter {
  text-align: center;
}
.textLeft {
  text-align: left;
}
.textRight {
  text-align: right;
}

/* vertical align */
.verticalMiddle {
  vertical-align: middle;
}
.verticalTop {
  vertical-align: top;
}
.verticalBottom {
  text-align: bottom;
}

/* margin */
.marginTop-5 {
  margin-top: 5px;
}
.marginTop-10 {
  margin-top: 10px;
}
.marginTop-15 {
  margin-top: 15px;
}
.marginTop-20 {
  margin-top: 20px;
}
.marginTop-25 {
  margin-top: 25px;
}
.marginTop-30 {
  margin-top: 30px;
}
.marginTop-35 {
  margin-top: 35px;
}
.marginTop-40 {
  margin-top: 40px;
}
.marginTop-45 {
  margin-top: 45px;
}
.marginTop-50 {
  margin-top: 50px;
}
.marginTop-55 {
  margin-top: 55px;
}
.marginTop-60 {
  margin-top: 60px;
}
.marginRight-5 {
  margin-right: 5px;
}
.marginRight-10 {
  margin-right: 10px;
}
.marginRight-15 {
  margin-right: 15px;
}
.marginRight-20 {
  margin-right: 20px;
}
.marginRight-25 {
  margin-right: 25px;
}
.marginRight-30 {
  margin-right: 30px;
}
.marginRight-35 {
  margin-right: 35px;
}
.marginRight-40 {
  margin-right: 40px;
}
.marginRight-45 {
  margin-right: 45px;
}
.marginRight-50 {
  margin-right: 50px;
}
.marginRight-55 {
  margin-right: 55px;
}
.marginRight-60 {
  margin-right: 60px;
}
.marginBottom-5 {
  margin-bottom: 5px;
}
.marginBottom-10 {
  margin-bottom: 10px;
}
.marginBottom-15 {
  margin-bottom: 15px;
}
.marginBottom-20 {
  margin-bottom: 20px;
}
.marginBottom-25 {
  margin-bottom: 25px;
}
.marginBottom-30 {
  margin-bottom: 30px;
}
.marginBottom-35 {
  margin-bottom: 35px;
}
.marginBottom-40 {
  margin-bottom: 40px;
}
.marginBottom-45 {
  margin-bottom: 45px;
}
.marginBottom-50 {
  margin-bottom: 50px;
}
.marginBottom-55 {
  margin-bottom: 55px;
}
.marginBottom-60 {
  margin-bottom: 60px;
}
.marginLeft-5 {
  margin-left: 5px;
}
.marginLeft-10 {
  margin-left: 10px;
}
.marginLeft-15 {
  margin-left: 15px;
}
.marginLeft-20 {
  margin-left: 20px;
}
.marginLeft-25 {
  margin-left: 25px;
}
.marginLeft-30 {
  margin-left: 30px;
}
.marginLeft-35 {
  margin-left: 35px;
}
.marginLeft-40 {
  margin-left: 40px;
}
.marginLeft-45 {
  margin-left: 45px;
}
.marginLeft-50 {
  margin-left: 50px;
}
.marginLeft-55 {
  margin-left: 55px;
}
.marginLeft-60 {
  margin-left: 60px;
}

/* padding */
.paddingTop-5 {
  padding-top: 5px;
}
.paddingTop-10 {
  padding-top: 10px;
}
.paddingTop-15 {
  padding-top: 15px;
}
.paddingTop-20 {
  padding-top: 20px;
}
.paddingTop-25 {
  padding-top: 25px;
}
.paddingTop-30 {
  padding-top: 30px;
}
.paddingTop-35 {
  padding-top: 35px;
}
.paddingTop-40 {
  padding-top: 40px;
}
.paddingTop-45 {
  padding-top: 45px;
}
.paddingTop-50 {
  padding-top: 50px;
}
.paddingTop-55 {
  padding-top: 55px;
}
.paddingTop-60 {
  padding-top: 60px;
}
.paddingRight-5 {
  padding-right: 5px;
}
.paddingRight-10 {
  padding-right: 10px;
}
.paddingRight-15 {
  padding-right: 15px;
}
.paddingRight-20 {
  padding-right: 20px;
}
.paddingRight-25 {
  padding-right: 25px;
}
.paddingRight-30 {
  padding-right: 30px;
}
.paddingRight-35 {
  padding-right: 35px;
}
.paddingRight-40 {
  padding-right: 40px;
}
.paddingRight-45 {
  padding-right: 45px;
}
.paddingRight-50 {
  padding-right: 50px;
}
.paddingRight-55 {
  padding-right: 55px;
}
.paddingRight-60 {
  padding-right: 60px;
}
.paddingBottom-5 {
  padding-bottom: 5px;
}
.paddingBottom-10 {
  padding-bottom: 10px;
}
.paddingBottom-15 {
  padding-bottom: 15px;
}
.paddingBottom-20 {
  padding-bottom: 20px;
}
.paddingBottom-25 {
  padding-bottom: 25px;
}
.paddingBottom-30 {
  padding-bottom: 30px;
}
.paddingBottom-35 {
  padding-bottom: 35px;
}
.paddingBottom-40 {
  padding-bottom: 40px;
}
.paddingBottom-45 {
  padding-bottom: 45px;
}
.paddingBottom-50 {
  padding-bottom: 50px;
}
.paddingBottom-55 {
  padding-bottom: 55px;
}
.paddingBottom-60 {
  padding-bottom: 60px;
}
.paddingLeft-5 {
  padding-left: 5px;
}
.paddingLeft-10 {
  padding-left: 10px;
}
.paddingLeft-15 {
  padding-left: 15px;
}
.paddingLeft-20 {
  padding-left: 20px;
}
.paddingLeft-25 {
  padding-left: 25px;
}
.paddingLeft-30 {
  padding-left: 30px;
}
.paddingLeft-35 {
  padding-left: 35px;
}
.paddingLeft-40 {
  padding-left: 40px;
}
.paddingLeft-45 {
  padding-left: 45px;
}
.paddingLeft-50 {
  padding-left: 50px;
}
.paddingLeft-55 {
  padding-left: 55px;
}
.paddingLeft-60 {
  padding-left: 60px;
}

/* link */
.linkStyle01 {
  color: #006ebd;
  text-decoration: underline;
  padding-right: 17px;
  background: url('/net/kantansim/img/icon_link.png') no-repeat right center;
  background-size: 15px auto;
}
.linkStyle01:visited {
  color: #006ebd;
} 
.linkStyle01:hover {
  color: #006ebd;
  text-decoration: none;
}
button.linkStyle01 {
  text-align: left;
  vertical-align: top;
}

/*===========================================
modal
===========================================*/
#modalContents {
  display: none;
}
/* colorbox */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #666666;
}
.kantansim.modal_open {
  overflow-y: hidden;
}

/* modalWrap */
.inlineModal {
  height: 100%;
}
.modalWrap {
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  height: 100%;
}
.modalWrap .modalInner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.modalHead {
  position: relative;
  background: #2f6db6;
  flex: 0 0 auto;
  width: 100%;
}
.modalHead .modalTitle {
  position: relative;
  z-index: 0;
  color: #fff;
  font-weight: bold;
  padding: 12px 50px 12px 16px; 
}
.modalHead .headCloseBtn {
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 18px;
  height: 18px;
  z-index: 10;
  background: #fff;
  border-radius: 10px;
  display: block;
  border: none;
}
.modalHead .headCloseBtn::before,
.modalHead .headCloseBtn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: #2f6db6;
  display: block;
}
.modalHead .headCloseBtn::before {
  transform: rotate(45deg);
}
.modalHead .headCloseBtn::after {
  transform: rotate(-45deg);
}
.modalBody {
  padding: 20px 30px 30px;
  flex: 0 1 auto;
  overflow-y: auto;
  width: 100%;
}
.modalBottom {
  padding: 20px 50px;
  flex: 0 0 auto;
}
.modalBottom .bottomCloseBtnWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn {
  position: relative;
  color: #FFF;
  font-size: 13px;
  background: #2f6db6;
  border-radius: 8px;
  padding: 10px 61px 13px;
  line-height: 1em;
  border: none;
}
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn .closeIcon {
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
  width: 18px;
  height: 18px;
  z-index: 10;
  background: #fff;
  border-radius: 10px;
  display: block;
}
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn .closeIcon::before,
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn .closeIcon::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: #2f6db6;
  display: block;
}
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn .closeIcon::before {
  transform: rotate(45deg);
}
.modalBottom .bottomCloseBtnWrap .bottomCloseBtn .closeIcon::after {
  transform: rotate(-45deg);
}
.modalBody .bodyInner + .bodyInner {
  margin-top: 50px;
}
.modalBody .bodyTitle {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

/* text */
.modalBody .text {
  font-size: 15px;
  line-height: 1.6em;
}
.modalBody .text + .text {
  margin-top: 5px;
}
.modalBody .text.cap {
  font-size: 12px;
}

/* modalList */
.modalBody .modalList li + li{
  margin-top: 10px;
}

/* modalTable */
.modalBody .modalTable {
  width: 100%;
}
.modalBody .modalTable :is(th, td) {
  border: 1px solid #333;
  font-size: 14px;
  padding: 5px;
}
.modalBody .modalTable :is(th, td) .textSmall {
  font-size: 12px;
}
.modalBody .modalTable thead th {
  text-align: center;
  font-weight: bold;
}
.modalBody .modalTable tbody th {
  text-align: left;
}
.modalBody .modalTable tbody td {
  text-align: right;
}


/* modalDefinitionList */
.modalBody .modalDefinitionList + .modalDefinitionList {
  margin-top: 40px;
}
.modalBody .modalDefinitionList .definitionInner + .definitionInner {
  margin-top: 30px;
}
.modalBody .modalDefinitionList .definitionTitle {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 5px;
}
.modalBody .text {
  font-size: 15px;
  line-height: 1.6em;
}
.modalBody .text + .text {
  margin-top: 5px;
}

/* modalDefinitionList style02 */
.modalBody .modalDefinitionList.style02 .definitionInner {
  margin-top: 30px;
}
.modalBody .modalDefinitionList.style02 .definitionTitle {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 5px;
}
.modalBody .modalDefinitionList.style02 .definitionTitle::before {
  content: "\25A0";
}

/* modal_1g modal_2g modal_10g modal_320m */
.modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .bodyInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .modalFigure {
  width: 420px;
}
.modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .modalFigure:nth-child(2) {
  margin: 0 20px;
}
.modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .figCap {
  margin-top: 12px;
  color: #2f6db6;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* modal_other04 */



/*===========================================
@media
===========================================*/
@media screen and (max-width: 950px) {
  /*===========================================
  input
  ===========================================*/
  /* questionWrap */
  .questionWrap .question .questionLead {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  /*===========================================
  input
  ===========================================*/
  /* mvArea */
  .mvArea {
    margin-bottom: 30px;
  }
  .mvArea .lead {
    font-size: 16px;
    margin-top: 25px;
  }
  /* questionWrap */
  .questionWrap .question .questionTitle {
    width: 100%;
  }
  .questionWrap .question .questionTitle .questionTitleInner {
    font-size: 18px;
    border-bottom: none;
    display: block;
    text-align: left;
  }
  .questionWrap .question .questionTitle .questionTitleInner .qNo {
    margin: 0 0 8px 0;
    display: block;
    text-align: center;
  }
  .questionWrap .question .questionTitle .questionTitleInner .qNo::after {
    content: "";
  }
  .questionWrap .question .questionTitle .questionTitleInner .titleText {
    background: linear-gradient(transparent 90%, #006ebd 90%);
  }
  .questionWrap .question .questionTitle + .questionLead {
    margin-top: 10px;
  }
  .questionWrap .question .questionLead .textInner {
    font-size: 16px;
  }
  .questionWrap .question .questionTitle + .answers {
    margin-top: 30px;
  }
  .questionWrap .question .answers .ansItem.style01 .labelText,
  .questionWrap .question .answers .ansItem.style02 .labelText {
    font-size: 16px;
  }
  .questionWrap .question .answers .ansItem.style02 .labelText {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .questionWrap .question .answers .ansItem.style02 .labelTextMain {
    padding-bottom: 10px;
  }
  .questionWrap .question .answers .ansItem.style02 .labelTextSub {
    border-top: 1px solid #ccc;
    font-weight: normal;
    padding-top: 10px;
  }
  .questionWrap .question .answers .ansItem.style02 .labelText .labelTextSub::before,
  .questionWrap .question .answers .ansItem.style02 .labelText .labelTextSub::after {
    display: none;
  }
  .questionWrap .question .questionBtnWrap {
    margin-top: 30px;
  }

  /*===========================================
  result
  ===========================================*/
  #result .resultTitle .resultTitleInner {
    font-size: 18px;
  }
  #result .linkBtn {
    font-size: 18px;
    padding: 20px;
  }
  #resultWrap .mvArea .resultLeadWrap {
    margin-top: 30px;
  }
  #resultWrap .mvArea .resultLeadWrap .resultLead {
    font-size: 18px;
  }
  #resultWrap .mvArea .resultLeadWrap .planLength {
    font-size: 26px;
  }
  .selectQuestions .selectQuestion {
    padding: 10px 15px 8px 45px;
    background: url('/net/kantansim/img/icon_check.png') no-repeat 16px center;
    background-size: 16px auto;
    font-size: 12px;
  }
  .selectQuestions {
    margin-bottom: 30px;
    padding: 15px 15px 30px;
  }

  /* resultPlanWrap */
  .resultPlanWrap .resultPlan {
    border-width: 8px;
  }
  .resultPlan + .resultPlan {
    margin-top: 40px;
  }
  .resultPlan .resultPlanTitle .planImg {
    width: 100%;
  }
  .resultPlan .planHeading {
    padding: 20px 15px;
  }
  .resultPlan .resultPlanTitle .planTitle {
    font-size: 16px;
    margin-top: 5px;
  }
  .resultPlan .resultPlanAllCost {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .resultPlan .resultPlanAllCost .cost {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .resultPlan .resultPlanAllCost .cost + .cost {
    margin-top: 20px;
  }
  .resultPlan .resultPlanAllCost .cost .costText {
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 20px;
  }
  .resultPlan .resultPlanAllCost .cost .costYen {
    font-size: 30px;
  }
  .resultPlan .resultPlanAllCost .cost .costYen .textSmall {
    font-size: 20px;
  }

  /* resultBreakdownWrap */
  .resultBreakdownWrap {
    margin-bottom: 30px;
    padding: 30px 20px 0;
  }
  .resultBreakdown .breakdownTitle {
    font-size: 16px;
    padding: 20px;
  }
  .resultBreakdown .breakdownTitle::before,
  .resultBreakdown .breakdownTitle::after {
    right: 20px;
  }
  .resultBreakdown .breakdownTable {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  .resultBreakdown .breakdownTable .breakdownTh,
  .resultBreakdown .breakdownTable .breakdownTd {
    padding: 0 0 15px;
    font-weight: bold;
    font-size: 12px;
  }
  .resultBreakdown .breakdownTable .breakdownTd {
    width: auto;
  }
  .resultBreakdown .breakdownTable .type_result .breakdownTh,
  .resultBreakdown .breakdownTable .type_result .breakdownTd {
    font-size: 16px;
  }

  /* cashbackWrap */
  .cashbackWrap {
    margin-top: 20px;
  }
  .cashbackWrap .cashbackText {
    font-size: 20px;
  }

  /* planFeatures */
  .planFeatures {
    padding: 0 20px;
  }
  .planFeatures .featuresTitle {
    font-size: 16px;
  }
  .planFeatures .featuresInner {
    padding: 15px;
  }
  .planFeatures .featuresListMain .list {
    font-size: 14px;
  }
  .planFeatures .featuresListSub .list {
    font-size: 12px;
  }
  .planFeatures .planFeatures_note {
    padding-top: 15px;
    font-size: 12px;
  }

  /* resultSupport */
  .resultSupport .supportInner {
    padding: 20px;
  }
  .resultSupport .supportListMain .list {
    padding-bottom: 10px;
    font-size: 16px;
  }
  .resultSupport .supportListSub {
    font-size: 12px;
  }
  .resultSupport .supportBtnArea {
    margin-top: 30px;
  }

  /* reSimulation */
  .reSimulation .answers .ansItem.style01 .labelText,
  .reSimulation .answers .ansItem.style02 .labelText {
    font-size: 16px;
  }
  .reSimulation .answers .ansItem.style02 .labelText {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .reSimulation .answers .ansItem.style02 .labelTextMain {
    padding-bottom: 10px;
  }
  .reSimulation .answers .ansItem.style02 .labelTextSub {
    border-top: 1px solid #ccc;
    font-weight: normal;
    padding-top: 10px;
  }
  .reSimulation .answers .ansItem.style02 .labelText .labelTextSub::before,
  .reSimulation .answers .ansItem.style02 .labelText .labelTextSub::after {
    display: none;
  }

  /* modalWrap */
  .modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .bodyInner {
    justify-content: flex-start;
    flex-direction: column;
  }
  .modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .modalFigure {
    width: auto;
  }
  .modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .modalFigure:nth-last-child(2) {
    margin-right: 0;
    margin-left: 0;
  }
  .modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .modalFigure + .modalFigure {
    margin-top: 40px;
  }
  .modalWrap:is(.modal_1g, .modal_2g, .modal_10g, .modal_320m) .modalBody .figCap {
    font-size: 16px;
  }
}
