@charset "utf-8";

/* insurance-benefits.css
 * おまかせプラン ver.7 - v1.0.0
 * 2022-09-01
 * **************************************************
 * Insurance Benefits
 * **************************************************
 */

 /* Insurance Benefits
------------------------------------------------------------------- */
.insurance-benefits .content__inner {
    margin: 70px auto 0 auto;
    max-width: 1080px;
}
/* Table*/
/* 法定給付、付加給付 */
.common-table.legal-fringe tbody th {
  width: 130px;
}
.common-table.legal-fringe tbody td:first-child {
  width: 150px;
}

@media screen and (max-width: 767px) {
  /* Insurance Benefits
  ------------------------------------------------------------------- */
  /* Table*/
  /* 法定給付、付加給付 */
  .common-table.legal-fringe tbody th {
    width: 95px;
    text-align: left;
  }
  .common-table.legal-fringe tbody td:first-child {
    width: 80px;
  }
}

/* Calculation Example */
.calculation-example {
    margin: 30px 0;
    padding: 30px;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.calculation-example__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 2.0em;
    font-weight: bold;
    color: #5ca5c3;
}
.calculation-example__title::before {
    content: "";
    display: block;
    width: 6px;
    height: 24px;
    background-color: #ffa661;
    border-radius: 3px;
}
.calculation-example__flex {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.calculation-example__box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background-color: #fff;
    border: 2px solid #5ca5c3;
    border-radius: 12px;
    text-align: center;
}
.calculation-example__box-body {
    font-size: 1.6em;
    line-height: 1.8;
}
.calculation-example__item {
    display: inline-block;
    padding: 4px 12px;
    background-color: #5ca5c3;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}
.calculation-example__symbol {
    display: block;
    margin: 10px 0;
    font-size: 1.4em;
    color: #999;
}
.calculation-example__res {
    display: block;
    margin-top: 10px;
    font-size: 1.3em;
    color: #ffa661;
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.calculation-example__footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    color: #333;
}

@media screen and (max-width: 900px) {
    .calculation-example__flex {
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .calculation-example {
        padding: 20px;
    }
    .calculation-example__box-body {
        font-size: 1.4em;
    }
}

/* 標準報酬・標準賞与額テーブル */
.common-table.rate-table tbody th {
  width: 180px!important;
}

@media screen and (max-width: 767px) {
  .common-table.rate-table tbody th {
    width: 100px;
    font-size: 1.3em;
  }
  .common-table.rate-table tbody td {
    font-size: 1.3em;
  }
}
