@charset "UTF-8";
/* form */
.formBody {
  position: relative;
}
.formBody.disabled:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 100%;
  margin: 0 auto;
  background: rgba(51, 51, 51, 0.686);
  width: calc(690 / 750 * 100vw);
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .formBody.disabled:after {
    width: 1078px;
    border-radius: 10px;
  }
}

.formBlock {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .formBlock {
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1078px;
    width: 100%;
    gap: 20px 0;
  }
}
.formItem {
  background: #FFF;
  border-radius: 10px;
}
.formItem dl {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 14px;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .formItem dl { padding: 12px 10px; }
}
@media screen and (min-width: 768px) {
  .formItem { width: 49%; }
  .formItem dl {
    justify-content: center;
    padding: 20px 0px;
  }
}
.formTitle {
  color: #0ca26c;
  font-weight: bold;
  width: 38%;
  font-size: 1.6rem;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .formTitle { font-size: calc((100vw - 39rem) * 6 /378 + 1.6rem); }
}
@media screen and (min-width: 768px) {
  .formTitle { font-size: 2.1rem; }
  .formItem:nth-child(odd) .formTitle { width: 30%; }
  .formItem:nth-child(even) .formTitle { width: 38%; }
}

.formContents {
  position: relative;
  flex: 1;
}
.formParts input,
.formParts select,
.formParts .select .selectLabel {
  box-sizing: border-box;
  vertical-align: middle;
  font-weight: bold;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F0F9F1;
  color: #333333;
  -webkit-appearance: none;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.formParts input { width: 75%; }
.formParts select,
.formParts .select .selectLabel { width: 90%; }
@media screen and (min-width: 500px) {
  .formParts input, .formParts select, .formParts .select .selectLabel {
    height: 60px;
    line-height: 60px;
  } 
}
@media screen and (min-width: 768px) {
  .formContents { flex: 0; }
  .formParts input { width: 140px; }
  .formParts select,
  .formParts .select .selectLabel { width: 220px; }
}

.formParts input,
.formParts select,
.formParts .select .selectLabel {
  font-size: 1.6rem;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .formParts input,
  .formParts select,
  .formParts .select .selectLabel { font-size: calc((100vw - 39rem) * 6 /378 + 1.6rem); }
}
@media screen and (min-width: 768px) {
  .formParts input,
  .formParts select,
  .formParts .select .selectLabel { font-size: 2.2rem;}
}

.formParts select::-ms-expand {
  display: none;
}
.formParts select option {
  background-color: #fff;
  color: #333333;
  white-space: pre;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .formParts select option {
    font-size: 2.2rem;
  }
}
.formParts select option:first-child {
  color: #ccc;
}
.formParts .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.formParts .input > input[type="tel"]::-ms-clear,
.formParts .input > input[type="number"]::-ms-clear {
  display: none !important;
}
.formParts .input > input[type="tel"]::-webkit-outer-spin-button,
.formParts .input > input[type="number"]::-webkit-outer-spin-button,
.formParts .input > input[type="tel"]::-webkit-inner-spin-button,
.formParts .input > input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.formParts .unit {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 170%;
  letter-spacing: 0.88px;
  white-space: nowrap;
  margin-left: 10px;
  color: #0ca26c;
}
@media screen and (min-width: 390px) and (max-width: 767px) { .formParts .unit { font-size: calc((100vw - 39rem) * 5 /378 + 1.5rem); } }
@media screen and (min-width: 768px) { .formParts .unit { font-size: 2rem; } }

.formParts .select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.formParts .select select, .formParts .select .selectLabel {
  padding-right: 55px;
  background-position: right 20px center;
  background-size: 24px auto;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formParts .select select::before, .formParts .select .selectLabel::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: #0CA26C transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}
.formParts .select select {
  z-index: 2;
  opacity: 0;
}
.formParts .select .selectLabel {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
  padding-left: 10px;
  color: #333;
  white-space: nowrap;
}
.formParts[data-required="done"] .select .selectLabel {
  background-image: none;
  color: #333;
}
.formParts .error {
  display: none;
  line-height: 1.6;
  color: #F00;
  margin-top: 10px;
}
.formParts .error span {
  font-size: 1.3rem;
}
.formParts[data-required="error"] .error {
  display: block;
}
.formParts[data-required="error"] .error.glyphAttention01 > span:before {
  width: 20px;
  height: 20px;
}
.formParts[data-required="error"] input,
.formParts[data-required="error"] select,
.formParts[data-required="error"] .select .selectLabel {
  border-color: #fbcfcf;
  background-color: #fff0f1;
}
.formParts .tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 3;
  visibility: hidden;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
  height: 0;
  border: 3px solid #0ca26c;
  border-radius: 10px;
  background: #f0f9f1;
  color: #0ca26c;
  font-weight: 700;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.7s;
}
.formParts .tooltip:before {
  position: absolute;
  bottom: -24px;
  left: 60px;
  z-index: 3;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #f0f9f1;
  content: "";
}
.formParts .tooltip:after {
  position: absolute;
  bottom: -30px;
  left: 60px;
  z-index: 2;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #0ca26c;
  content: "";
}
.formParts .tooltip.active {
  visibility: visible;
  height: auto;
  opacity: 1;
}

.formBtn {
  text-align: center;
  margin: 20px auto 20px;
}
.formBtn a {
  display: inline-block;
  position: relative;
  width: 90%;
  padding: 16px 20px 16px;
  background-color: #0ca26c;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border: 1px solid #0ca26c;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(12, 162, 108, 0.16);
  transition: all 0.3s ease;
  font-size: 1.9rem;
}
.formBtn a::before, .formBtn a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}
.formBtn a::before {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  background: #fff;
}
.formBtn a::after {
  right: 17px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #0ca26c;
  border-bottom: 2px solid #0ca26c;
  transition: right 0.3s ease;
}
.formBtn a:hover {
  background-color: #ffffff;
  color: #0ca26c;
}
.formBtn a:hover::before {
  background-color: #0ca26c;
}
.formBtn a:hover::after {
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .formBtn a { font-size: calc((100vw - 39rem) * 11 /378 + 1.9rem); }
}
@media all and (min-width: 768px) {
  .formBtn { margin: 50px auto 20px;}
  .formBtn a {
    max-width: 540px;
    width: 100%;
    font-size: 3rem;
    padding: 14px 30px 20px 30px;
  }
}
.formNote {
  font-size: 1.2rem;
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media all and (min-width: 768px) {
  .formNote { text-align: center; }
}

/* modal */
body.modal-open {
  overflow: hidden;
}
.adlpc-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  
  padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.adlpc-modal.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
}

.adlpc-modal .modalContent-result {
  max-width: 900px;
  width: 100%;
}
.modalPanel{
  width: 100%;
  max-height: min(80dvh, 720px);
  display: flex;
  flex-direction: column;
}

.formResult_close {
  background: #A2A3A2;
  border-radius: 0 0 3px 3px;
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 10px);
}
.js-modal-close1 {
  width: 100%;
  cursor: pointer;
  color: #FFF;
  font-weight: bold;
  padding: 10px 0 0; 
  background: transparent;
  font-size: 1.8rem;
  border: 0;
  touch-action: manipulation;
}
.js-modal-close1 .iconBtn {
  width: 1.2em;
  margin-right: 10px;
  margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
  .adlpc-modal .modalContent-result {
    width: 100%;
    padding: 2%;
  }
  .js-modal-close1 { font-size: 2.2rem; }
  .js-modal-close1 .iconBtn { width: 1.2em; margin-bottom: 4px; }
  .formResult_close:hover{ background:#8B8B8B; }
}

/* formResult */
.formResult {
  background: #FFF;
  border-radius: 3px 3px 0 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.formResult .title {
  color: #0ca26c;
  text-align: center;
  margin: 10px auto;
  font-size: 1.8rem;
}
@media screen and (min-width: 390px) and (max-width: 767px){
  .formResult .title { font-size: calc((100vw - 39rem) * 12 / 378 + 1.8rem); }
}
@media screen and (min-width: 768px) {
  .formResult .title { font-size: 3rem; }
}

.formResult_content {
  display: none;
}
.formResult_content.type-c {
  display: block;
}

.formResult_text01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  padding: 15px 20px;
  margin-bottom: 30px;
  background: #0ca26c;
  font-weight: bold;
  color: #FFF;
}
.formResult_text01 .resultId {
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #FFF;
  font-size: 50px;
}
.formResult_text01 .limitAmountText {
  font-size: 2rem;
}

@media screen and (min-width: 390px) and (max-width: 767px){
  .formResult_text01 .resultId { font-size: calc((100vw - 39rem) * 20 / 378 + 5rem); }
  .formResult_text01 .limitAmountText { font-size: calc((100vw - 39rem) * 9 / 378 + 2.1rem);}
}
@media screen and (min-width: 768px) {
  .formResult_text01 .resultId { font-size: 7rem; }
  .formResult_text01 .limitAmountText { font-size: 3rem; }
}

.formResult_text02 {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}
.formResult_text03 {
  text-align:center;
  margin: 40px auto 20px;
  font-size: 1.5rem;
}
.adviceArea-jsText {
  margin: 5px auto 0;
  font-size: 1.5rem;
}
@media screen and (min-width: 390px) and (max-width: 767px){
  .formResult_text02 { font-size: calc((100vw - 39rem) * 4 / 378 + 1.4rem); }
  .formResult_text03 { font-size: calc((100vw - 39rem) * 9 / 378 + 1.7rem); }
  .adviceArea-jsText { font-size: calc((100vw - 39rem) * 4 / 378 + 1.5rem); }
}
@media screen and (min-width: 768px) {
  .formResult_text02 { font-size: 1.8rem; }
  .formResult_text03 { font-size: 2.6rem; }
  .adviceArea-jsText { font-size: 1.9rem; }
}

.formResult_box.bw01 {
  max-width: 750px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.formResult_box.bw02 {
  max-width: 900px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.formResult_box.bw03 {
  max-width: 900px;
  width: 100%;
  padding: 0 15px;
  margin: 40px auto 0;
}
.formResult_box_bottom {
  max-width: 750px;
  width: 100%;
  padding: 0 15px;
  margin: 20px auto 0;
}

.formResult_box img {
  width: 100%;
  height: auto;
}
.formResult_box .advice {
  display: flex;
  justify-content: center;
  align-items: center;
}
.type-a .formResult_box .advice { align-items: stretch; }
.formResult_box .advice.adv01 { padding: 30px 0 20px; }
.formResult_box .advice.adv02,
.formResult_box .advice.adv03 { padding: 0 0 20px; }

.formResult_box .advice .adviceTitle {
  width: 23%;
  padding-right: 6px;
}
.formResult_box .advice .adviceArea {
  font-size: 1.4rem;
}
.formResult_box .advice .adviceArea .fs01 { font-size: 1.7rem; }
.formResult_box .advice .adviceArea .fs02 { font-size: 1.2rem; }
.formResult_box .advice.adv01 .adviceArea,
.formResult_box .advice.adv02 .adviceArea,
.formResult_box .advice.adv03 .adviceArea{
  width: 77% ;
}

@media screen and (min-width: 390px) and (max-width: 767px) {
  .formResult_box.bw02, .formResult_box.bw03 { padding: 0 15px; }
  .formResult_box .advice .adviceTitle { width: 23%; padding-right: 6px; }
  .formResult_box .advice.adv02 .adviceArea { width: 70%; }
  .formResult_box .advice.adv03 .adviceArea { width: 62%; }
  .formResult_box .advice .adviceArea { font-size: calc((100vw - 39rem) * 5 / 378 + 1.5rem); }
  .formResult_box .advice .adviceArea .fs01 { font-size: calc((100vw - 39rem) * 11 / 378 + 1.7rem); }
  .formResult_box .advice .adviceArea .fs02 { font-size: calc((100vw - 39rem) * 8 / 378 + 1.2rem); }
}
@media screen and (min-width: 768px) {
  .type-a .formResult_box .advice { align-items: center; }
  .formResult_box.bw02, .formResult_box.bw03 { padding: 0 30px; }
  .formResult_box .advice .adviceTitle{
    max-width: 154px;
    width: 100%;
    padding-right: 20px;
  }
  .formResult_box .advice.adv02 .adviceArea { width: 70%; }
  .formResult_box .advice.adv03 .adviceArea { width: 62%; }
  .formResult_box .advice .adviceArea { font-size: 2rem; }
  .formResult_box .advice .adviceArea .fs01 { font-size: 3rem; }
  .formResult_box .advice .adviceArea .fs02 { font-size: 2rem; }
}

.formResult_box .notice {
  background: #f0f9f1;
  border-radius: 10px;
  padding: 20px 20px;
  margin-bottom: 50px;
}
.formResult_box .notice p{
  margin-bottom: .5em;
  font-size: 1.5rem;
}
.formResult_box .notice p.subText {
  margin-bottom: .5em;
  font-size: 1.5rem;
}
.formResult_box .notice .text {
  font-size: 1.2rem;
}
@media screen and (min-width: 390px) and (max-width: 767px){
  .formResult_box .notice p{
    font-size: calc((100vw - 39rem) * 5 / 378 + 1.5rem);
  }
  .formResult_box .notice p.subText {
    font-size: calc((100vw - 39rem) * 3 / 378 + 1.5rem);
  }
  .formResult_box .notice .text{
    font-size: calc((100vw - 39rem) * 1 / 378 + 1.2rem);
  }
}
@media screen and (min-width: 768px) {
  .formResult_box .notice { padding: 20px 30px; }
  .formResult_box .notice p{ font-size: 2rem; }
  .formResult_box .notice p.subText { font-size: 1.8rem; }
  .formResult_box .notice .text { font-size: 1.3rem; }
}

.formResult_box .trivia {
  display: flex;
  flex-wrap: nowrap;
  padding: 0 0 30px; 
}

.formResult_box .trivia .brackets {
  width: 6%;
  background: url("/kojin/cardloan/landing/img/img_brackets.svg") no-repeat 50% 50%;
  background-size: contain;
}
.formResult_box .trivia .bracketsRight {transform: rotate(180deg); }

.formResult_box .triviaArea {
  width: 88%;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.formResult_box .triviaArea .triviaTitle {
  width: 13%;
  text-align: center;
}
.formResult_box .triviaArea .triviaTitle img{
  max-width: 50px;
  width: 100%;
}
.formResult_box .triviaArea .kinriExample { 
  width: 87%;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .formResult_box .trivia { padding: 0 0 40px; }
  .formResult_box .triviaArea .triviaTitle { width: 16%; }
  .formResult_box .triviaArea .kinriExample { width: 84%; }
  .formResult_box .triviaArea .triviaTitle img { max-width: 94px; }
}

.kinriExample .kinriExampleTitle { 
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #0ca26c;
  padding-bottom: 4px;
}
.kinriExample .kinriExampleTitle .imgBox {
  padding: .5rem .5rem 1rem 0;
}
.kinriExample .kinriExampleTitle .imgBox img {
  max-width: 40px;
  width: 100%;
  
}
.kinriExample .kinriExampleTitle .subTitle {
  width: 90%;
  font-size: 1.4rem;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .kinriExample .kinriExampleTitle .subTitle { font-size: calc((100vw - 39rem) * 2 / 378 + 1.6rem);}
}
@media screen and (min-width: 768px) {
  .kinriExample .kinriExampleTitle .imgBox { padding: 0 .5rem 1rem 0; }
  .kinriExample .kinriExampleTitle .imgBox img { max-width: 42px; }
  .kinriExample .kinriExampleTitle .subTitle { font-size: 1.6rem; }
}
.kinriExample .subTitle span.dotText {
  display: inline-block;
  position: relative;
  top: 0;
  flex: 1;
  line-height: 1.3;
  padding-top: 8px;
  vertical-align: baseline;
}
.kinriExample .subTitle span.dotText::before {
  content: "";
  position: absolute;
  right: 100%;
  width: 6px;
  height: 6px;
  -webkit-border-radius: 25%;
  border-radius: 50%;
  background: #0ca26c;
  top: 0;
  left: 40%;
}
.kinriExample .subText{
  width: fit-content;
  background: #0ca26c;
  border-radius: 10rem;
  color: #FFF;
  text-align: center;
  margin: 20px auto 20px;
  padding: .1em 2em;
  font-size: 1.1rem;
}
@media screen and (min-width: 390px) and (max-width: 767px){
  .kinriExample .subText{ font-size: calc((100vw - 39rem) * 4 / 378 + 1.2rem); }
}
@media screen and (min-width: 768px) {
  .kinriExample .subText{ font-size: 1.6rem; }
}
.kinriExample .itemKinri li {
  margin-top: 1rem;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.kinriExample .itemKinri li .iKrow01,
.kinriExample .itemKinri li .iKrow02,
.kinriExample .itemKinri li .iKrow03 { display: flex; align-items: center; line-height: 1; }
.kinriExample .itemKinri li .iKrow02 img{
  vertical-align: middle;
  text-align: center;
  width: 45%;
  margin: 0 auto;
}
.kinriExample .itemKinri li .wm1L{ margin-left: .6em;}
.kinriExample .itemKinri li .wm1R{ margin-right: .7em;}
.kinriExample .itemKinri li .iKt { font-size: .9rem; background: #ceece2; padding: .3rem .2rem; margin-right: .2rem; border-radius: 3px; }
.kinriExample .itemKinri li .iKm { font-size: 1.5rem; }
.kinriExample .itemKinri li .iKr { font-size: 1.5rem; }

@media screen and (min-width: 390px) and (max-width: 767px) {
  .kinriExample .kinriExampleTitle .imgBox { max-width: 44px; }
  .kinriExample .kinriExampleTitle .subTitle { font-size: calc((100vw - 39rem) * 5 / 378 + 1.6rem); }
  .kinriExample .itemKinri li { justify-content: space-around; }
  .kinriExample .itemKinri li .iKrow02 img { width: 55%; }
  .kinriExample .itemKinri li .iKt { font-size: calc((100vw - 39rem) * 4 / 378 + 1.1rem); padding: .5rem .2rem; margin-right: .4rem; }
  .kinriExample .itemKinri li .iKm { font-size: calc((100vw - 39rem) * 10 /378 + 1.5rem); }
  .kinriExample .itemKinri li .iKr { font-size: calc((100vw - 39rem) * 10 /378 + 1.5rem); }
}
@media screen and (min-width: 500px) {
  .kinriExample .itemKinri li .iKt { padding: .4rem 1.5rem; margin-right: .5rem; }
}
@media screen and (min-width: 768px) {
  .kinriExample .kinriExampleTitle .subTitle { font-size: 2.1rem; }
  .kinriExample .itemKinri li { justify-content: space-around; }
  .kinriExample .itemKinri li .iKrow02 img {width: 85%; }
  .kinriExample .itemKinri li .wm1L{ margin-left: .6em; }
  .kinriExample .itemKinri li .wm1R{ margin-right: .6em; }
  .kinriExample .itemKinri li .iKt { font-size: 1.5rem; padding: .3rem 2rem; margin-right: 1rem; }
  .kinriExample .itemKinri li .iKm { font-size: 2.5rem; }
  .kinriExample .itemKinri li .iKr { font-size: 2.5rem; }
}

.formResult_box .box-txt01 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 15px;
}
.formResult_box .box-txt02 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  width: fit-content;
  margin: 0 auto;
}
.formResult_box .box-txt03 {
  border-top: 4px solid #bdf0df;
  border-bottom: 4px solid #bdf0df;
  font-size: 1.8rem;
  line-height: 170%;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  background:#ccc;
}
.formResult_box .box-txt04 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.04em;
  margin: -54px 0 20px 46px;
  display: flex;
  align-items: flex-end;
}
.formResult_content.type-c .formResult_box .box-txt04 {
  margin: 10px 0 20px 192px;
}
.formResult_box .box-txt04 .icon {
  width: 108px;
  vertical-align: baseline;
}
.formResult_box .box-txt04 .txt {
  position: relative;
  bottom: 20px;
  left: 22px;
}

.formResult_box .box-txt06 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.04em;
  color: #009f6b;
  text-align: center;
  margin: 20px auto -20px;
}
.formResult_box .box-img {
  width: 803px;
  margin: 0 auto;
}


.formResult_table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.2rem
}
.formResult_table th, .formResult_table td {
  border: 1px solid #0ca26c;
  width: 33.3%;
  text-align: center;
}
.formResult_table thead th {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding: 10px 0;
  background: #eaf2ef;
  color: #0ca26c;
}
.formResult_table tbody td {
  line-height: 1.2;
  padding: 8px 0;
  letter-spacing: 0.04em;
}
.formResult_table tbody td:last-child {
  color: #f7920e;
}
.formResult_kinriDate {
  font-size: 1.2rem;
  text-align: right;
  margin: 10px auto 15px;
}
.formResult_kinriNote {
  color: #0ca26c;
  padding: 20px 0 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 390px) and (max-width: 767px){
  .formResult_table {font-size: calc((100vw - 39rem) * 4 / 378 + 1.2rem);}
  .formResult_kinriNote { font-size: calc((100vw - 39rem) * 2 / 378 + 1.4rem); }
}
@media screen and (min-width: 768px) {
  .formResult_table,
  .formResult_kinriNote { font-size: 1.6rem;}
}
