@charset "utf-8";

body {
  background: #faebe7;
}


/****************************************************************************/
.wrapper {
  margin: 0 auto;
  width: 1000px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

/* header
***************************************************************************/
header {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #fff;
}

header .header_box {
  width: 1000px;
  padding: 22px 30px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  header {
    margin: 0 auto;
    width: 100%;
    background: #fff;
  }

  header .header_box {
    width: 100%;
    padding: 22px 3%;
  }
}


/* simulation */
.simulation {
  background: #fff;
  padding: 0 50px;
}

.simulation__inner {
  background-color: #fef4d6;
  overflow: hidden;
  padding: 40px 50px 50px;
}

.simulation__title img {
  width: 100%;
}

.simulation .condition {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.simulation .condition .condition__inner {
  padding: 66px 40px 0;
  display: flex;
}

.simulation .age {
  padding-right: 40px;
}

.simulation .condition .condition__q {
  display: flex;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}

.simulation .condition .condition__q:last-child {
  margin: 0;
}

.simulation .condition .condition__q dt {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.simulation .condition .condition__q dt .number {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2c4c93;
  color: #fff;
  border-radius: 3px;
  width: 30px;
  height: 32px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: 0 6px 0 0;
}

.simulation .condition .condition__q dt .number+span {
  font-weight: bold;
  font-size: 23px;
  color: #0f3962;
  position: relative;
  top: -1px;
  padding-right: 15px;
}

.simulation .condition .condition__q dt .text--sm {
  font-size: 11px;
  letter-spacing: -0.04em;
}

.simulation .condition .condition__q dd {
  padding: 10px 0 0;
}

.simulation .condition .condition__q dd.condition__select {
  position: relative;
  text-align: center;
  width: 250px;
  top: -13px;
}

.simulation .condition .condition__q dd.condition__select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: #565656;
  height: 12px;
  width: 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.simulation .condition .condition__q dd.condition__select select {
  width: 100%;
  height: 40px;
  text-align: center;
  font-size: 20px;
  border: 3px solid #e9e9e9;
  background-image: none;
  border-radius: 5px;
  appearance: none;
  padding: 0 1em 0 0.5em;
  color: #565656;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.simulation .condition .condition__q dd.condition__radios {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0 16px;
  margin: 0 0 0 25px;
  position: relative;
  top: -24px;
}

.simulation .condition .condition__q dd .condition__radio input[type="radio"] {
  visibility: hidden;
}

.simulation .condition .condition__q dd .condition__radio input[type="radio"]:checked+label::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background: #565656;
  border-radius: 100%;
}

.simulation .condition .condition__q dd .condition__radio label {
  font-size: 20px;
  color: #000;
  position: relative;
  padding: 0 0 0 25px;
  letter-spacing: 0.08em;
}

.simulation .condition .condition__q dd .condition__radio label[for="sim_male_pc"] {
  margin-right: 0.5em;
}

.simulation .condition .condition__q dd .condition__radio label::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  border: 3px solid #565656;
  background-color: #fff;
  border-radius: 100%;
}

.simulation .male {
  padding: 0 20px 0 0 !important;
}


.simulation .calcurate {
  margin: -25px auto 0;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 273px;
}

.simulation .calcurate img {
  width: 100%;
}

.simulation .results {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: auto;
}

.simulation .lead {
  margin: 50px 0 0;
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.simulation .lead span {
  font-size: 28px;
  font-weight: bold;
}
.simulation .arrow {
  margin: 20px auto 0;
  /* box 自体は中央に */
  position: relative;
  width: 100px;
  height: 0;
}

.simulation .arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 20px solid #000;
}

.simulation .space {
  width: 100px;
}

.simulation .insurancefee_totalpremiums,
.simulation .cancellation_refundrate {
  display: flex;
  justify-content: center;
}

.simulation .insurancefee {
  margin: 20px 0 0;
  width: 320px;
}

.simulation .insurancefee .text {
  width: 100%;
  padding-right: 0.5em;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  vertical-align: bottom;
}

.simulation .insurancefee .result {
  font-size: 56px !important;
  font-weight: bold;
  color: #000;
  background-color: #fef4d6;
  border-bottom: 4px solid #000;
  line-height: 1.2em;
  letter-spacing: 0.02em !important;
  min-width: 270px;
  min-height: 90px;
  display: inline-block;
  text-align: right;
  padding: 0.02em 0.5em 0.1em;
  vertical-align: bottom;
  margin-top: 15px;
}

.simulation .insurancefee .unit {
  font-weight: bold;
  color: #000;
  font-size: 22px;
  letter-spacing: -0.05em;
  margin-left: 0.25em;
}

.simulation .totalpremiums {
  margin: 20px 0 0;
  width: 320px;
}

.simulation .totalpremiums .text {
  width: 100%;
  padding-right: 0.5em;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  vertical-align: bottom;
}

.simulation .totalpremiums .result {
  font-size: 60px !important;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: 4px solid #d82444;
  line-height: 1.2em;
  letter-spacing: 0.05em !important;
  min-width: 270px;
  min-height: 90px;
  display: inline-block;
  text-align: center;
  padding: 0.03em 0.5em 0.07em !important;
  vertical-align: bottom;
  margin-top: 15px;
}

.simulation .totalpremiums .unit {
  font-weight: bold;
  color: #000;
  font-size: 22px;
  letter-spacing: -0.05em;
  margin-left: 0.25em;
}


.simulation .cancellation {
  margin: 20px 0 0;
  width: 100%;
}

.simulation .cancellation .lead {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: bold;
  color: #0f3962;
  vertical-align: bottom;
}

.simulation .cancellation .result {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.simulation .cancellation .text {
  display: table-cell;
  width: 45%;
  padding-right: 0.5em;
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  color: #000;
  vertical-align: bottom;
}

.simulation .cancellation .price {
  font-size: 60px !important;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: 4px solid #d82444;
  line-height: 1.2em;
  letter-spacing: 0.05em !important;
  min-width: 270px;
  min-height: 90px;
  display: inline-block;
  text-align: center;
  padding: 0.03em 0.5em 0.07em !important;
  vertical-align: bottom;
  margin-top: 15px;
}

.simulation .cancellation .unit {
  font-weight: bold;
  color: #000;
  font-size: 22px;
  letter-spacing: -0.05em;
  margin-left: 0.25em;
}

.simulation .refundrate {
  align-self: flex-start;
  margin: 15px 0 0 !important;
  display: table;
  width: 100%;
}

.simulation .refundrate .text {
  display: table-cell;
  width: 80px;
  padding-right: 0.2em;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: #000;
  vertical-align: bottom;
  position: relative;
  top: -5px
}

.simulation .refundrate .result {
  font-size: 44px;
  font-weight: bold;
  color: #d82444;
  line-height: 1.2em;
  letter-spacing: -0.05em;
  min-width: 110px;
  min-height: 50px;
  display: inline-block;
  text-align: right;
  padding: 0;
  vertical-align: bottom;
}

.simulation .refundrate .unit {
  font-weight: bold;
  color: #000;
  font-size: 25px;
  letter-spacing: -0.05em;
  margin-left: 0.25em;
}

.unit-man {
  font-size: 50px;
  margin-left: 2px;
  display: inline-block;
  position: relative;
  top:-3px;
  font-weight: bold;
}

/* local-navigation
***************************************************************************/
.local-navigation {
  padding: 40px 0 0;
  background: #fff;
  text-align: center;
}

/* intro
***************************************************************************/
.intro {
  background: #fff;
}

.intro-contents {
  text-align: center;
}


/* point
***************************************************************************/
.point {
  background-color: #fff;
  padding: 50px 0 0;
}


/* point01 */
.point01 .point-contents-inner {
  padding-bottom: 20px;
}

.point-item-accordion {
  padding: 20px 0;
  text-align: left;
  margin: 0 auto;
   width: 700px;
}
.point-item-accordion__content {
  position: relative;
  height: auto;
  overflow: hidden;
  transition: max-height 0.5s;
}
.point-item-accordion__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.point-item-accordion__content.open::after {
  display: none;
}
.point-item-accordion__btn {
  display: block;
  margin: 40px auto 0;
  border: 0;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
.point-item-accordion__btn-plus {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  background-image: url("../../img/pc/point01_icon_open.png");
  background-size: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.point-item-accordion__btn-plus.open {
  background-image: url("../../img/pc/point01_icon_close.png");
}




.point03 .btn_check {
  margin: 0 auto;
  text-align: center;
}

.point03 {
  padding-bottom: 80px;
}


/* faq
***************************************************************************/
.faq {
  background-color: #fffbf1;
  padding: 70px 0 50px;
}

.faq-title {
  color: #0f3962;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.faq-accordion {
  margin: 60px auto;
  width: 800px;
}

.acBox {
  margin: 40px auto 0;
  padding: 0 0 15px;
  border-bottom: 2px dashed #0f3962;
}

.acBox .question {
    position: relative;
    padding-right: 50px; /* 擬似要素分のスペース確保 */
}

.acBox .question::after {
    content: "";
    position: absolute;
    top: 42%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;   /* 横線の長さ */
    height: 2px;   /* 線の太さ */
    background-color: #0f3962; /* 線の色 */
}

.acBox .question::before {
    content: "";
    position: absolute;
    top: 42%;
    right: 9px;  /* 横線の中央に合わせる */
    transform: translateY(-50%);
    width: 2px;   /* 縦線の太さ */
    height: 20px; /* 縦線の長さ */
    background-color: #0f3962;
}

/* active 時は縦線を消して「−」にする */
.acBox .question.active::before {
    display: none;
}


.acBox .question-contents {
  display: flex;
  align-items: start;
}


.acBox .question-text {
  flex: 1 0 0px;
  color: #0f3962;
  font-size: 24px;
}

.acBox dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acBox .answer-contents {
  display: flex;
  align-items: start;

  margin-top: 10px;
  padding-top: 20px;
}

.acBox .answer a {
  font-size: 24px;
  color: #0060bd;
  text-decoration: underline;
  }

.acBox .answer-text {
  flex: 1 0 0px;
  color: #0f3962;
  font-size: 24px;
  padding-bottom: 40px;
}

.question-icon,
.answer-icon {
    width: 50px;
    height: 50px;
    background: #0f3962;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    margin-right: 30px;
    padding-bottom: 5px;
    position: relative;
    top:-5px
}


/* footer-contents
***************************************************************************/
.footer-contents {
  background: #f6f6f6;
  padding: 60px 0;
}

.footer-contents .contact_caution {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border: 6px #eeeeee solid;
    background: #fff;
    width: 800px;
    margin: 0 auto;
    padding: 20px 30px;
}

.footer-contents .contact {
  width: 44%;
  margin: 0;
}
.footer-contents .caution {
  width: 47%;
  padding-left: 7%;
  color: #333;
  margin: 0;
}
.footer-contents .caution p {
  font-size: 13px!important;
  line-height: 1.6em!important;
}

.footer-contents .contact .freedial-alink {
  display: inline-block;
}

.footer-contents .contact .contact-hours {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.footer-contents .contact .contact-hours2 {
  position: relative;
  left: -8px;
  font-size: 15x;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #d82444;
}

.footer-contents .contact .contact-hours3 {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* footer
***************************************************************************/
footer {
  margin: 0 auto 100px;
  background: #f6f6f6;
  border-top: 2px #b4bec8 solid;
}

footer .foot {
  padding: 20px 0 80px;
  position: relative;
  text-align: center;
}

footer .foot ul {
  overflow: hidden;
}

footer .foot li {
  padding: 0 0.5em;
  display: inline-block;
}

footer .foot li:first-child {
  border-right: 1px solid #a9a9a9;
}

footer .foot li a {
  text-decoration: underline;
}

footer .foot li a:active,
footer .foot li a:hover,
footer .foot li a:link,
footer .foot li a:visited {
  color: #005eba;
}

footer .foot li a:hover {
  opacity: 0.6;
}

footer .code {
  font-weight: bold;
  margin-top: 10px;
}

/* other
***************************************************************************/
.mark-text {
  background: linear-gradient(transparent 60%, #ffcf3d 0%);
  padding: 0 0.1em;
}

.lp-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1280px;
}

.lp-container-narrow {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1040px;
}

.note {
  display: flex;
}

.note span {
  font-size: 16px;
  line-height: 1.6;
}

.note-mark {
  flex: 0 0 auto;
  margin-right: 0.5em;
}

.note a {
  color: #000;
  font-size: inherit;
  text-decoration: underline;
}

.alert {
  color: #d82444;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.notes-wrapper {
  position: relative;
  /* ボタンの絶対位置基準 */
}

.notes-container {
  position: relative;
  max-height: 100px;
  /* 初期表示高さ */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.notes-container.expanded {
  max-height: none;
}

.fade-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.8) 20%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 1) 100%);
  transition: opacity 0.3s;
  z-index: 10;
}

.notes-container.expanded .fade-mask {
  opacity: 0;
}

.toggle-notes {
  position: absolute;
  /* notes-wrapper 内で絶対位置 */
  bottom: 10px;
  /* notes-container 下に配置 */
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 20;
  /* fade-maskより前面 */
}

.toggle-notes img {
  width: 50px;
  display: block;
}

.toggle-notes.close {
  bottom: -10px;
  /* close時のボタン位置調整 */
}

/* float_banner
***************************************************************************/
.float_banner {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  left: 0;
}