@charset "UTF-8";

/* stylelint-disable
  selector-class-pattern,
  plugin/no-unsupported-browser-features
*/

/* ==========================================================================
  Base & Reset
   ========================================================================== */
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

@media screen and (width <= 750px) {
  body {
    min-width: 320px;
  }
}

@media screen and (width >= 751px) {
  body {
    min-width: 1040px;
    letter-spacing: 0.08em;
  }
}

a {
  color: #04c;
  text-decoration: underline;
  outline: none;
  -webkit-tap-highlight-color: rgb(0, 0, 0, 0);
}

:focus-visible {
  outline: 2px solid #588310;
  outline-offset: 2px;
}

a:hover,
a:active {
  color: #04c;
  outline: none;
}

@media screen and (width >= 751px) {
  a:hover {
    text-decoration: none;
  }

  a[href^='tel:'] {
    pointer-events: none;
  }

  a[href^='tel:']:hover {
    text-decoration: underline;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

label {
  cursor: pointer;
}

hr {
  height: 1px;
  margin: 1.5rem 0;
  background: #666;
  border: none;
}

p {
  margin: 0;
}

/* ==========================================================================
  Layout & Containers
   ========================================================================== */
.l-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.l-holder {
  margin-top: 30px;
}

@media screen and (width <= 750px) {
  .l-base {
    width: auto;
    padding: 0 10px;
  }
}

@media screen and (width >= 751px) {
  .l-base {
    position: relative;
    width: 1040px;
    margin: 0 auto;
  }
}

/* ==========================================================================
  Breadcrumbs
   ========================================================================== */
.Breadcrumbs {
  display: none;
}

@media screen and (width >= 751px) {
  .Breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 40px;
    overflow: hidden;
  }

  .Breadcrumbs__item {
    position: relative;
    font-size: 1rem;
    letter-spacing: normal;
    white-space: nowrap;
  }

  .Breadcrumbs__item:not(:first-of-type) {
    padding-left: 23px;
  }

  .Breadcrumbs__item:not(:first-of-type)::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: block;
    width: 1em;
    height: 1em;
    margin-left: 8px;
    content: ' > ';
  }
}

/* ==========================================================================
  Page Head & Titles
   ========================================================================== */
.Page-head {
  padding-bottom: 20px;
  margin-bottom: 40px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #afd83a;
}

.Page-ttl {
  position: relative;
  color: #3b5e10;
  letter-spacing: normal;
}

.Page-ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3px;
  height: 100%;
  content: '';
  background: #3b5e10;
}

.Section-ttl {
  font-size: 2.2rem;
  color: #3b5e10;
  text-align: center;
  letter-spacing: normal;
}

.Section-ttl--border {
  padding-bottom: 20px;
  border-bottom: 1px solid #3b5e10;
}

@media screen and (width <= 750px) {
  .Page-head {
    padding-top: 20px;
  }

  .Page-ttl {
    padding: 3px 0 0 16px;
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .Section-ttl {
    line-height: 1.4;
    text-align: left;
  }
}

@media screen and (width >= 751px) {
  .Page-ttl {
    padding: 5px 0 0 26px;
    font-size: 3.6rem;
    line-height: 1.2;
  }

  .Page-ttl::before {
    width: 6px;
    min-height: 48px;
  }

  .Section-ttl {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
  }

  .Section-ttl--border {
    padding-bottom: 32px;
  }
}

/* ==========================================================================
  Box Frame
   ========================================================================== */
.Box-frame {
  margin: 20px 0;
  overflow: hidden;
  background: #fefffd;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  box-shadow: 10px 10px 8px -9px rgb(158, 158, 158, 0.8);
}

.Box-frame__block {
  margin: 20px 15px;
}

.Tab-cont__block {
  margin: 20px 16px;
}

@media screen and (width >= 751px) {
  .Box-frame__block {
    margin: 48px 99px;
  }

  .Tab-cont__block {
    margin: 48px 40px;
  }
}

/* ==========================================================================
  Catch Text & Notes
   ========================================================================== */
.Catch-txt {
  font-size: 1.8rem;
  color: #588310;
  text-align: center;
}

@media screen and (width >= 751px) {
  .Catch-txt {
    font-size: 2.8rem;
  }
}

.Notes__txt {
  margin: 0;
}

.Notes__txt + .Notes__txt {
  margin-top: 1em;
}

.Notes__txt--highlight {
  color: #f00;
}

.Notes + .Notes {
  margin-top: 20px;
}

@media screen and (width <= 750px) {
  .Notes {
    margin: 0 10px;
    line-height: 1.6;
  }
}

@media screen and (width >= 751px) {
  .Notes {
    margin: 0 50px;
  }
}

/* ==========================================================================
  Figure Notes
   ========================================================================== */
.Figure-notes {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.Figure-notes img,
.Figure-notes picture {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.Figure-notes__hdi {
  width: 200px;
  height: fit-content;
}

@media screen and (width <= 750px) {
  .Figure-notes__figcaption {
    width: 100%;
    margin-top: 20px;
    line-height: 1.8;
  }
}

@media screen and (width >= 751px) {
  .Figure-notes {
    flex-direction: row;
    align-items: center;
  }

  .Figure-notes--rever {
    flex-direction: row-reverse;
  }

  .Figure-notes__figcaption {
    flex: 1;
    margin: 0 50px;
  }

  .Figure-notes img,
  .Figure-notes picture {
    flex-shrink: 0;
    max-width: 300px;
    margin: 0;
  }
}

/* ==========================================================================
  Buttons & Area
   ========================================================================== */
.Btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  text-decoration: none;
  border: none;
  border-radius: 8px;
}

@media screen and (width >= 751px) {
  .Btn {
    transition: all 0.3s ease;
  }

  .Btn--type03 {
    font-size: 2rem;
  }

  .Btn:hover {
    opacity: 0.8;
  }
}

.Btn::before,
.Btn::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  content: '';
}

.Btn::before {
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -38px;
  background: #fff;
  border-radius: 50%;
}

.Btn::after {
  width: 0;
  height: 0;
  margin: -6px 0 0 -29px;
  border-color: rgb(0, 0, 0, 0);
  border-style: solid;
  border-width: 6px 0 6px 9px;
}

.Btn--type03 {
  height: 60px;
  padding: 0 40px 0 30px;
  background: #6ac3f8;
}

.Btn--type03::after {
  border-left-color: #6ac3f8;
}

.Btn--disabled {
  cursor: default;
  background-color: #c1c1c1;
}

.Btn--disabled:hover {
  opacity: 1;
}

.Btn--disabled::before {
  width: 0;
  height: 0;
  background: none;
}

.Btn--disabled::after {
  border-width: 0;
}

.Btn-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.Btn-area__item {
  display: inline-block;
}

.Btn-area__btn {
  margin: 0;
}

.Btn-area__item--hide {
  display: none;
}

@media screen and (width <= 750px) {
  .Btn-area__item {
    width: 100%;
  }
}

@media screen and (width >= 751px) {
  .Btn-area__item {
    width: 440px;
  }
}

/* ==========================================================================
  Accordion
   ========================================================================== */
.Accordion-check {
  display: none;
}

.Accordion-head {
  position: relative;
  width: 100%;
  margin: 15px 0;
}

.Accordion-head__btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
}

.Accordion-head__label {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 11px 40px 11px 10px;
  margin: 0;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: normal;
  cursor: pointer;
  background: #fbffee;
  border: 1px solid #588310;
  border-radius: 4px 4px 0 0;
}

.Accordion-head::before,
.Accordion-head::after,
.Accordion-head__label::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  content: '';
}

.Accordion-head__label::after {
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -31px;
  background: #3f5d26;
}

.Accordion-head::before,
.Accordion-head::after {
  z-index: 2;
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -26px;
  background: #fff;
}

.Accordion-head::before {
  transform: rotate(90deg);
}

.Accordion-body {
  max-height: 0;
  padding: 0 15px;
  margin: -17px 0 15px;
  overflow: hidden;
  letter-spacing: normal;
  background: #fff;
  border: 0 solid #588310;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: all 0.4s ease;
}

.Accordion-head.is-open::before {
  display: none;
}

.Accordion-head.is-open + .Accordion-body {
  max-height: 2000px;
  padding: 20px 15px;
  border-width: 1px;
  opacity: 1;
}

@media screen and (width >= 751px) {
  .Accordion-head__label {
    padding: 11px 60px 11px 30px;
    font-size: 1.8rem;
  }

  .Accordion-head__label::after {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -52px;
  }

  .Accordion-head::before,
  .Accordion-head::after {
    width: 16px;
    height: 4px;
    margin: -2px 0 0 -45px;
  }

  .Accordion-body {
    padding: 0 49px;
  }

  .Accordion-head.is-open + .Accordion-body {
    padding: 29px 49px;
  }
}

/* ==========================================================================
  Contact Area
   ========================================================================== */
.Contact-area {
  display: flex;
  flex-flow: wrap;
  flex-direction: row-reverse;
  justify-content: center;
  margin: 20px 10px 0;
  letter-spacing: normal;
}

.Contact-area__img {
  display: none;
}

.Contact-info {
  line-height: 1.3;
  letter-spacing: normal;
}

.Contact-info__ttl {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #588310;
}

.Contact-info__inner {
  display: flex;
  flex-flow: wrap;
  flex-direction: column-reverse;
  align-items: baseline;
}

.Contact-info__tel {
  display: flex;
  align-items: flex-end;
  margin: 0 10px 0 0;
  font-size: 9vw;
  font-weight: bold;
  line-height: 1;
  color: #000;
}

.Contact-info__ico {
  margin-right: 5px;
}

.Contact-info__txt {
  display: block;
  padding: 2px 8px 3px;
  margin: 0 0 5px;
  font-size: 4.4vw;
  vertical-align: text-bottom;
  text-align: center;
  border: 1px solid #666;
  border-radius: 4px;
}

.Contact-msg {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.4rem;
}

.Contact-msg__item {
  margin-bottom: 5px;
}

.Contact-msg__item + .Contact-msg__item {
  padding-top: 5px;
  border-top: 1px solid #666;
}

@media screen and (width <= 750px) {
  .Contact-info__inner {
    line-height: 1.2;
  }

  .Contact-info__ico {
    width: 45px;
    height: auto;
  }

  .Contact-msg {
    letter-spacing: 1.6;
  }
}

@media screen and (width >= 751px) {
  .Contact-area {
    margin: 20px 0 0;
  }

  .Contact-area__notes {
    width: 580px;
  }

  .Contact-area__img {
    display: block;
    margin: 4px 20px 0 0;
  }

  .Contact-area__num {
    color: #000;
    text-decoration: none;
    pointer-events: none;
  }

  .Contact-info__ttl {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }

  .Contact-info__inner {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 20px;
  }

  .Contact-info__tel {
    align-items: flex-end;
    margin-right: 16px;
  }

  .Contact-info__tel:not(.Contact-info__tel--min) {
    font-size: 3.6rem;
  }

  .Contact-info__ico {
    margin-right: 10px;
  }

  .Contact-info__txt {
    flex: none;
    padding: 5px 9px 4px;
    margin: 0;
    font-size: 1.8rem;
  }

  .Contact-msg {
    margin-top: 15px;
  }
}

/* ==========================================================================
  Horizontal Separator
   ========================================================================== */
.horizontal-sol {
  margin: 20px 0;
}

@media screen and (width >= 751px) {
  .horizontal-sol {
    margin: 30px 0;
  }
}

/* ==========================================================================
  Insurance Review Card
   ========================================================================== */
.Box-frame--insurance-review {
  box-sizing: border-box;
  margin-top: 40px;
  overflow: visible;
  background: #fefffd;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgb(0, 0, 0, 0.1);
}

@media screen and (width >= 751px) {
  .Box-frame--insurance-review {
    width: 1040px;
    height: auto;
    margin: 40px auto 4.5px;
  }

  .Box-frame--insurance-review .Insurance-review-card {
    box-sizing: border-box;
    height: auto;
    min-height: 106px;
    overflow: hidden;
    background-color: #fbffee;
    border: 1px solid #588310;
    border-radius: 3.5px;
  }

  .Box-frame--insurance-review .Insurance-review-card__header {
    box-sizing: border-box;
    width: 100%;
    height: 106px;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    appearance: none;
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .Box-frame--insurance-review .Insurance-review-card__inner {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px 0 30px;
  }

  .Box-frame--insurance-review .Insurance-review-card__sub {
    display: block;
    margin: 0 0 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #8fb130;
  }

  .Box-frame--insurance-review .Insurance-review-card__ttl {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
  }

  .Box-frame--insurance-review .Insurance-review-card__right {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .Box-frame--insurance-review .Insurance-review-card__img {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 81px;
  }

  .Box-frame--insurance-review .Insurance-review-card__img img {
    display: block;
    width: 64px;
    height: 81px;
    object-fit: contain;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #588310;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::before,
  .Box-frame--insurance-review .Insurance-review-card__btn-plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    background-color: #fff;
    transform: translate(-50%, -50%);
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::before {
    width: 12px;
    height: 2px;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::after {
    display: block;
    width: 2px;
    height: 12px;
  }

  /* stylelint-disable-next-line selector-max-class */
  .Box-frame--insurance-review
    .Insurance-review-card.is-open
    .Insurance-review-card__btn-plus::after {
    display: none;
  }

  .Box-frame--insurance-review .Insurance-review-card__body {
    box-sizing: border-box;
    display: none;
    height: auto;
    padding: 0 30px 20px;
    background-color: #fff;
    border-top: 1px solid #588310;
  }

  /* Note: display: block is managed by jQuery slideToggle */

  .Box-frame--insurance-review .Insurance-review-card__lead {
    margin: 16px 0 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
  }

  .Box-frame--insurance-review .Insurance-review-card__chart {
    text-align: center;
  }

  .Box-frame--insurance-review .Insurance-review-card__chart img {
    display: block;
    width: 420px;
    height: 307px;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media screen and (width <= 750px) {
  .Box-frame--insurance-review {
    height: auto;
    margin: 40px 10px 4.5px;
  }

  .Box-frame--insurance-review .Insurance-review-card {
    box-sizing: border-box;
    height: auto;
    min-height: 106px;
    overflow: hidden;
    background-color: #fbffee;
    border: 1px solid #588310;
    border-radius: 3.5px;
  }

  .Box-frame--insurance-review .Insurance-review-card__header {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 106px;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    appearance: none;
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .Box-frame--insurance-review .Insurance-review-card__inner {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 12px 10px 12px 14px;
  }

  .Box-frame--insurance-review .Insurance-review-card__sub {
    display: block;
    margin: 0 0 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    color: #8fb130;
  }

  .Box-frame--insurance-review .Insurance-review-card__ttl {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    color: #333;
  }

  .Box-frame--insurance-review .Insurance-review-card__right {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .Box-frame--insurance-review .Insurance-review-card__img {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 81px;
  }

  .Box-frame--insurance-review .Insurance-review-card__img img {
    display: block;
    width: 64px;
    height: 81px;
    object-fit: contain;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #588310;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::before,
  .Box-frame--insurance-review .Insurance-review-card__btn-plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    background-color: #fff;
    transform: translate(-50%, -50%);
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::before {
    width: 10px;
    height: 2px;
  }

  .Box-frame--insurance-review .Insurance-review-card__btn-plus::after {
    display: block;
    width: 2px;
    height: 10px;
  }

  /* stylelint-disable-next-line selector-max-class */
  .Box-frame--insurance-review
    .Insurance-review-card.is-open
    .Insurance-review-card__btn-plus::after {
    display: none;
  }

  .Box-frame--insurance-review .Insurance-review-card__body {
    box-sizing: border-box;
    display: none;
    height: auto;
    padding: 0 10px 16px;
    background-color: #fff;
    border-top: 1px solid #588310;
  }

  /* Note: display: block is managed by jQuery slideToggle */

  .Box-frame--insurance-review .Insurance-review-card__lead {
    margin: 12px 0 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
  }

  .Box-frame--insurance-review .Insurance-review-card__chart {
    text-align: center;
  }

  .Box-frame--insurance-review .Insurance-review-card__chart img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
}

/* ==========================================================================
  Guidance Tab and Content Imported
   ========================================================================== */
.Tab-themas {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.Tab-themas__item {
  flex: 1;
  height: 40px;
  text-align: center;
  border: 1px solid #bfbfbf;
  border-radius: 8px 8px 0 0;
}

.Tab-themas__item--is-active {
  position: relative;
  height: 50px;
  padding-bottom: 1px;
}

.Tab-themas__item--is-active::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: '';
  background: #fefffd;
}

.Tab-themas__item--is-active .Tab-themas__btn {
  background: #fefffd;
}

/* stylelint-disable-next-line no-descending-specificity */
.Tab-themas__btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5px 2px 2px;
  font-weight: bold;
  line-height: 1.2;
  color: #588310;
  text-decoration: none;
  appearance: none;
  background: #fefffd;
  border: none;
  border-radius: 8px 8px 0 0;
}

.Tab-themas__btn:focus {
  outline: 0;
}

.Tab-cont {
  overflow: hidden;
  background: #fefffd;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  box-shadow: 10px 10px 8px -9px rgb(158, 158, 158, 0.8);
}

.Sub-head {
  margin: 30px 0;
}

.Sub-ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3b5e10;
  letter-spacing: 0.04em;
}

.Sub-ttl--border {
  padding-left: 16px;
  border-left: 3px solid #3b5e10;
}

.Btn--type05 {
  height: 50px;
  padding: 0 40px 0 10px;
  color: #588310;
  background: #fbffee;
  border: 1px solid #588310;
}

.Btn--type05::before {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -32px;
  background: #588310;
}

.Btn--type05::after {
  margin: -5px 0 0 -23px;
  border-width: 5px 0 5px 7px;
  border-left-color: #fff;
}

.Link-arw {
  display: inline-block;
  padding-left: 11px;
  color: #04c;
  text-indent: -11px;
}

.Link-arw::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 7px;
  content: '';
  border-color: transparent transparent transparent #04c;
  border-style: solid;
  border-width: 4px 0 4px 6px;
}

.Ico-file::after {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin-left: 10px;
  vertical-align: sub;
  content: '';
  background: url(/shared/img/icon_file.png) no-repeat 0 0;
}

.Figure-notes__txt {
  margin: 0;
}

.Figure-notes__txt + .Figure-notes__txt {
  margin-top: 1em;
}

.u-txtc {
  text-align: center;
}

.u-txtr {
  text-align: right;
}

.u-alpha:hover {
  opacity: 0.8;
}

.u-fiximg {
  max-width: 100%;
  height: auto;
}

@media screen and (width <= 750px) {
  .Tab-themas {
    margin: 0 10px -1px 4px;
  }

  .Tab-themas__item {
    height: 50px;
    margin-left: 6px;
  }

  .Tab-themas__item--is-active {
    height: 60px;
  }

  .Tab-themas__btn {
    font-size: 1.3rem;
  }

  .Link-arw {
    font-size: 1.5rem;
  }

  .l-grid2__item + .l-grid2__item {
    margin-top: 20px;
  }

  .l-grid2 + .l-grid2 {
    margin-top: 40px;
  }

  .l-grid3__item {
    margin-top: 10px;
  }

  .l-grid3 + .l-grid3 {
    margin-top: 20px;
  }

  .l-gap {
    margin: 20px 0;
  }
}

@media screen and (width >= 751px) {
  .Tab-themas {
    padding: 0 40px;
    margin-bottom: -1px;
  }

  .Tab-themas__item {
    height: 60px;
    margin: 0 10px;
  }

  .Tab-themas__item--is-active {
    height: 70px;
  }

  .Tab-themas__item--is-active::after {
    bottom: -1px;
    height: 2px;
  }

  .Tab-themas__btn {
    font-size: 2.3rem;
  }

  .Tab-themas__btn::after {
    margin-top: 5px;
    border-width: 9px 8px 0;
  }

  .Tab-themas__btn:hover {
    color: #588310;
    background: #fff;
  }

  .Sub-head {
    margin-top: 40px;
  }

  .Sub-ttl {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .Sub-ttl--border {
    padding-left: 20px;
  }

  .Btn--type05 {
    font-size: 1.7rem;
  }

  .Contact-area__num {
    color: #000;
    text-decoration: none;
    pointer-events: none;
  }

  .Contact-info__tel--min {
    margin-right: 10px;
    font-size: 2.8rem;
  }

  .Contact-info__txt--min {
    font-size: 1.6rem;
  }

  .l-grid2 {
    display: flex;
    flex-flow: wrap;
    margin: -10px -15px;
  }

  .l-grid2 + .l-grid2 {
    margin-top: 30px;
  }

  .l-grid2__item {
    width: calc((100% - 60px) / 2);
    margin: 10px 15px;
  }

  .l-grid3 {
    display: flex;
    flex-flow: wrap;
    margin: -10px -7.5px;
  }

  .l-grid3__item {
    width: calc(33.33% - 15px);
    margin: 10px 7.5px;
  }

  .l-gap {
    margin: 30px 0;
  }
}

/* ==========================================================================
  Insurance Review New Plan Component
   ========================================================================== */
.u-sp-only {
  display: none;
}

@media screen and (width <= 750px) {
  .u-sp-only {
    display: inline;
  }
}

.Insurance-review-new-plan {
  position: relative;
  box-sizing: border-box;
  width: 1040px;
  height: 206.8px;
  margin: 40px auto 0;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}

.Insurance-review-new-plan__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 441px;
  height: 35px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  background-color: #588310;
  border-radius: 17.5px;
  transform: translateX(-50%);
}

.Insurance-review-new-plan__body {
  position: absolute;
  top: 16px;
  left: 0;
  box-sizing: border-box;
  width: 1040px;
  height: 189px;
  padding-top: 32px;
  background-color: #f4f7ea;
  border: 2px solid #588310;
  border-radius: 7px;
}

.Insurance-review-new-plan__ttl {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  text-align: center;
}

.Insurance-review-new-plan__items {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
}

.Insurance-review-new-plan__item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 408px;
  height: 84px;
  padding: 0 16px 0 24px;
  background-color: #fff;
  border-radius: 8px;
}

.Insurance-review-new-plan__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 52px;
}

.Insurance-review-new-plan__item:nth-child(2) .Insurance-review-new-plan__logo {
  width: 203px;
  height: 52px;
}

.Insurance-review-new-plan__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Insurance-review-new-plan__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 16px;
}

.Insurance-review-new-plan__label {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #333;
}

.Insurance-review-new-plan__value {
  margin-top: 2px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #333;
}

@media screen and (width <= 750px) {
  .Insurance-review-new-plan {
    width: 100%;
    max-width: 355px;
    height: 213.8px;
    margin: 20px auto 0;
    overflow: hidden;
  }

  .Insurance-review-new-plan__badge {
    box-sizing: border-box;
    display: block;
    width: 314px;
    height: 42px;
    padding-top: 4px;
    font-size: 14px;
    line-height: 1.15;
    text-align: center;
    border-radius: 21px;
  }

  .Insurance-review-new-plan__body {
    top: 19px;
    width: 100%;
    max-width: 355px;
    height: 192px;
    padding-top: 29px;
  }

  .Insurance-review-new-plan__ttl {
    font-size: 16px;
    line-height: 1.2;
  }

  .Insurance-review-new-plan__items {
    gap: 12px;
    justify-content: space-between;
    width: 100%;
    max-width: 315px;
    margin: 10px auto 0;
  }

  .Insurance-review-new-plan__item {
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 12px) / 2);
    max-width: 152px;
    height: 89px;
    padding: 8px 6px 0;
  }

  .Insurance-review-new-plan__item:nth-child(2) {
    width: calc((100% - 12px) / 2);
    max-width: 151px;
  }

  .Insurance-review-new-plan__logo {
    width: 100%;
    max-width: 140px;
    height: 34.6px;
  }

  .Insurance-review-new-plan__logo img {
    max-width: 100%;
    height: auto;
  }

  .Insurance-review-new-plan__item:nth-child(2)
    .Insurance-review-new-plan__logo {
    width: 100%;
    max-width: 140px;
    height: 35.8px;
  }

  .Insurance-review-new-plan__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
    margin-left: 0;
    text-align: center;
  }

  .Insurance-review-new-plan__label {
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
  }

  .Insurance-review-new-plan__value {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
  }
}

/* ==========================================================================
  Insurance Review Mypage Banner
   ========================================================================== */
.Insurance-review-mypage-banner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1040px;
  padding: 0;
  margin: 40px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
}

.Insurance-review-mypage-banner__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.Insurance-review-mypage-banner__illust {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 103px;
  height: 100px;
}

.Insurance-review-mypage-banner__illust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Insurance-review-mypage-banner__title-box {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 462px;
  min-height: 100px;
  padding: 0 20px;
  margin-left: 18.79px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6.25px;
}

.Insurance-review-mypage-banner__title-box::before {
  position: absolute;
  top: 50%;
  left: -18.79px;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent #e0e0e0 transparent transparent;
  border-style: solid;
  border-width: 11.45px 18.79px 11.45px 0;
  transform: translateY(-50%);
}

.Insurance-review-mypage-banner__title-box::after {
  position: absolute;
  top: 50%;
  left: -17.2px;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 10.45px 17.2px 10.45px 0;
  transform: translateY(-50%);
}

.Insurance-review-mypage-banner__title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  text-align: left;
}

.Insurance-review-mypage-banner__text {
  width: 1040px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.Insurance-review-mypage-banner__btn-wrap {
  width: 360px;
  height: 61px;
}

.Insurance-review-mypage-banner__btn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 61px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background-color: #588310;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgb(0, 0, 0, 0.2);
  transition: opacity 0.2s;
}

.Insurance-review-mypage-banner__btn:hover {
  opacity: 0.9;
}

.Insurance-review-mypage-banner__btn-icon {
  position: absolute;
  right: 20px;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}

.Insurance-review-mypage-banner__btn-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent transparent transparent #588310;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  transform: translate(-35%, -50%);
}

@media screen and (width <= 750px) {
  .Insurance-review-mypage-banner {
    width: 100%;
    max-width: 355px;
    margin: 20px auto 0;
  }

  .Insurance-review-mypage-banner__head {
    margin-bottom: 18px;
  }

  .Insurance-review-mypage-banner__illust {
    width: 63px;
    height: 62px;
  }

  .Insurance-review-mypage-banner__title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 281px;
    min-height: 61.4px;
    padding: 0 6px;
    margin-left: 11.5px;
    text-align: center;
    border-radius: 4px;
  }

  .Insurance-review-mypage-banner__title-box::before {
    left: -11.5px;
    border-width: 7px 11.5px 7px 0;
  }

  .Insurance-review-mypage-banner__title-box::after {
    left: -10px;
    border-width: 6px 10px 6px 0;
  }

  .Insurance-review-mypage-banner__title {
    font-size: 15.35px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
    text-align: left;
  }

  .Insurance-review-mypage-banner__text {
    width: 100%;
    max-width: 340px;
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    letter-spacing: 0;
  }

  .Insurance-review-mypage-banner__btn-wrap {
    width: 100%;
    max-width: 340px;
    height: 61px;
  }

  .Insurance-review-mypage-banner__btn {
    width: 100%;
    max-width: 340px;
    height: 61px;
    font-size: 18px;
  }

  .Insurance-review-mypage-banner__btn-icon {
    right: 14px;
  }
}

/* ==========================================================================
  Review Timing Section
   ========================================================================== */
.Review-timing {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

.Review-timing__title {
  padding-bottom: 20px;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  text-align: center;
  border-bottom: 1px solid #3b5e10;
}

.Review-timing__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

.Review-timing__item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 12px 0 20px;
  border-bottom: 1px dashed #bfbfbf;
}

.Review-timing__item-text {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.25;
  color: #333;
}

.Review-timing__item-img {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 80px;
}

.Review-timing__item-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.Review-timing__example {
  position: relative;
  margin-top: 25px;
  text-align: center;
}

/* Gray triangle background for example title matching SVG specs EBEBEB */
.Review-timing__example::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-color: #ebebeb transparent transparent;
  border-style: solid;
  border-width: 40.5px 113px 0;
  transform: translateX(-50%);
}

.Review-timing__example-ttl {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: bold;
  color: #3b5e10;
}

.Review-timing__example-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.Review-timing__example-card {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 320px;
  height: 82px;
  padding: 0 40px 0 16px;
  text-align: left;
  background: #fff;
  border: 1px solid #333;
  border-radius: 6px;
}

.Review-timing__example-card::before {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  content: '';
  background-color: #588310;
  border-radius: 50%;
  transform: translateY(-50%);
}

.Review-timing__example-card::after {
  position: absolute;
  top: 50%;
  right: 28px;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 6px 4.5px 0;
  transform: translate(50%, -50%);
}

.Review-timing__example-card-txt {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}

a.Review-timing__example-card {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a.Review-timing__example-card:hover {
  text-decoration: none;
  opacity: 0.7;
}

.u-pc-only {
  display: inline;
}

@media screen and (width <= 750px) {
  .u-pc-only {
    display: none;
  }

  .Review-timing {
    box-sizing: border-box;
  }

  .Review-timing__title {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .Review-timing__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .Review-timing__item {
    width: 100%;
    height: 80px;
    padding: 0 12px 0 20px;
    border-bottom: 1px dashed #bfbfbf;
  }

  .Review-timing__item-text {
    font-size: 18px;
    line-height: 1.25;
  }

  .Review-timing__example {
    margin-top: 14px;
  }

  .Review-timing__example::before {
    top: 0;
  }

  .Review-timing__example-ttl {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }

  .Review-timing__example-cards {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    margin: 10px auto 0;
  }

  .Review-timing__example-card {
    width: calc(50% - 5px);
    height: 108px;
    padding: 10px 30px 10px 14px;
    text-align: left;
  }

  .Review-timing__example-card::before {
    right: 8px;
  }

  .Review-timing__example-card::after {
    right: 20px;
  }

  .Review-timing__example-card-txt {
    font-size: 16px;
    line-height: 1.2;
  }

  .Review-timing__example-card-txt--gap {
    margin-top: 6px;
  }
}

/* ==========================================================================
  Insurance Recommend Box
   ========================================================================== */
.Insurance-recommend-box {
  box-sizing: border-box;
}

.Insurance-recommend-head {
  margin-bottom: 0;
  text-align: center;
}

.Insurance-recommend-head__ttl {
  padding-bottom: 20px;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  text-align: center;
  border-bottom: 1px solid #3b5e10;
}

.Insurance-recommend-subttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
  text-align: center;
}

.Insurance-recommend-subttl span {
  position: relative;
  display: inline-block;
  padding: 0 28px;
}

.Insurance-recommend-subttl span::before,
.Insurance-recommend-subttl span::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 32px;
  content: '';
  background-color: #333;
}

.Insurance-recommend-subttl span::before {
  left: 0;
  transform: translateY(-50%) rotate(-23.6deg);
}

.Insurance-recommend-subttl span::after {
  right: 0;
  transform: translateY(-50%) rotate(23.6deg);
}

.Insurance-recommend-card__ttl {
  font-size: 20px;
  font-weight: bold;
  color: #588310;
  text-align: center;
}

.Insurance-recommend-card__sub {
  margin-top: 8px;
  font-size: 15px;
  text-align: center;
}

.Insurance-recommend-card__amount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
  list-style: none;
}

.Insurance-recommend-card__amount-item {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #588310;
  background: #f7f9f2;
  border: 1px solid #c2d69b;
  border-radius: 4px;
}

.Insurance-recommend-card__section + .Insurance-recommend-card__section {
  margin-top: 24px;
}

.Insurance-recommend-card__sec-ttl {
  padding-left: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
  border-left: 4px solid #588310;
}

.Insurance-recommend-card__courses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Insurance-recommend-card__course {
  padding: 16px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.Insurance-recommend-card__course-ttl {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.Insurance-recommend-card__course-desc {
  margin-top: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #666;
}

.Insurance-recommend-card__course-list {
  padding-left: 20px;
  margin-top: 10px;
  font-size: 14px;
}

.Insurance-recommend-card__prices {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.Insurance-recommend-card__price-target {
  font-size: 14px;
  font-weight: bold;
}

.Insurance-recommend-card__price-label {
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

.Insurance-recommend-card__price-val {
  margin-top: 4px;
  font-size: 22px;
  font-weight: bold;
  color: #d32f2f;
}

.Insurance-recommend-card__price-val span {
  font-size: 13px;
  color: #333;
}

.Insurance-recommend-card__price-note {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.Insurance-recommend-card__price-subnote {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
}

@media screen and (width <= 750px) {
  .Insurance-recommend-head {
    text-align: center;
  }

  .Insurance-recommend-head__ttl {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .Insurance-recommend-subttl {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .Insurance-recommend-subttl span {
    padding: 0 20px;
  }

  .Insurance-recommend-subttl span::before,
  .Insurance-recommend-subttl span::after {
    height: 48px;
  }

  .Insurance-recommend-subttl span::before {
    transform: translateY(-50%) rotate(-16.2deg);
  }

  .Insurance-recommend-subttl span::after {
    transform: translateY(-50%) rotate(16.2deg);
  }
}

@media screen and (width >= 751px) {
  .Insurance-recommend-card__courses {
    flex-direction: row;
  }

  .Insurance-recommend-card__course {
    flex: 1;
  }
}

/* Insurance recommend card detail styling for Tab 1 */
.Insurance-recommend-tab .Tab-themas__btn img {
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.Insurance-recommend-tab .Insurance-recommend-card__ttl {
  padding-bottom: 20px;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  text-align: center;
  border-bottom: 1px solid #3b5e10;
}

.Insurance-recommend-tab .Insurance-recommend-card__sub {
  padding-left: 12px;
  margin-top: 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #3b5e10;
  text-align: left;
  border-left: 3px solid #3b5e10;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-list {
  display: grid;
  grid-template-columns: repeat(3, 123px);
  gap: 12px;
  justify-content: center;
  max-width: 393px;
  padding: 0;
  margin: 24px auto 40px;
  list-style: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-item {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 53px;
  padding: 0 0 12px;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-range {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 24px 0 12px;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__amount-range
  .Insurance-recommend-card__amount-item {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 123px;
  height: 53px;
  padding: 0 0 12px;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-tilde {
  font-size: 16px;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-note {
  margin-bottom: 40px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-item .val {
  font-family: 'Open Sans', sans-serif;
  font-size: 23.5px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__amount-item .unit {
  margin-left: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  transform: translateY(-1px);
}

.Insurance-recommend-tab
  .Insurance-recommend-card__section
  + .Insurance-recommend-card__section {
  margin-top: 48px;
}

.Insurance-recommend-tab .Insurance-recommend-card__sec-ttl {
  padding-left: 14px;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  text-align: left;
  border-left: 5px solid #3b5e10;
}

.Insurance-recommend-tab .Insurance-recommend-card__courses {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.Insurance-recommend-tab .Insurance-recommend-card__course {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-head {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 85px;
  padding: 10px 16px;
  border-radius: 10px;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--recommend
  .Insurance-recommend-card__course-head {
  background-color: #ffe6de;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--recommend
  .Insurance-recommend-card__course-head::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  content: '';
  border-color: #ffe6de transparent transparent;
  border-style: solid;
  border-width: 18.8px 10.2px 0;
  transform: translateX(-50%);
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--economy
  .Insurance-recommend-card__course-head {
  background-color: #d9f3f8;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--economy
  .Insurance-recommend-card__course-head::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  content: '';
  border-color: #d9f3f8 transparent transparent;
  border-style: solid;
  border-width: 18.8px 10.2px 0;
  transform: translateX(-50%);
}

.Insurance-recommend-tab .Insurance-recommend-card__course-title-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-ico img {
  display: block;
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-ttl {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--recommend
  .Insurance-recommend-card__course-ttl {
  color: #ff632e;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course--economy
  .Insurance-recommend-card__course-ttl {
  color: #3bc0d8;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-desc {
  margin-top: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-list {
  padding: 0;
  margin-top: 28px;
  list-style: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-list li {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  border-radius: 4px;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__course-list
  li:nth-child(4) {
  height: 68px;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-class */
.Insurance-recommend-tab
  .Insurance-recommend-card__course--recommend
  .Insurance-recommend-card__course-list
  li.is-active {
  color: #fff;
  background-color: #ff632e;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-class */
.Insurance-recommend-tab
  .Insurance-recommend-card__course--economy
  .Insurance-recommend-card__course-list
  li.is-active {
  color: #fff;
  background-color: #3bc0d8;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-class */
.Insurance-recommend-tab
  .Insurance-recommend-card__course--economy
  .Insurance-recommend-card__course-list
  li.is-disabled {
  color: #afafaf;
  background-color: #eee;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.Insurance-recommend-tab .Insurance-recommend-card__sec-ttl {
  padding-left: 11px;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  border-left: 3px solid #3b5e10;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-sub {
  margin: 32px 0 24px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-sub--left {
  font-size: 16px;
  font-weight: normal;
  text-align: left;
}

.Insurance-recommend-tab .Insurance-recommend-card__prices {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 282px;
  max-width: 282px;
  height: 166px;
  overflow: hidden;
  border-radius: 12px;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-item:nth-child(1) {
  border: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-item:nth-child(2) {
  border: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-target {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  padding: 0 12px;
  font-size: 23.2px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__price-item:nth-child(1)
  .Insurance-recommend-card__price-target {
  background: #26cce5;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__price-item:nth-child(2)
  .Insurance-recommend-card__price-target {
  background: #fc93a1;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 126px;
  padding: 14px 12px;
  text-align: center;
  background: #fafafa;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__price-item:nth-child(1)
  .Insurance-recommend-card__price-body {
  border-top: none;
  border-right: 2px solid #26cce5;
  border-bottom: 2px solid #26cce5;
  border-left: 2px solid #26cce5;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__price-item:nth-child(2)
  .Insurance-recommend-card__price-body {
  border-top: none;
  border-right: 2px solid #fc93a1;
  border-bottom: 2px solid #fc93a1;
  border-left: 2px solid #fc93a1;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-label {
  margin-bottom: 2px;
  font-size: 14.94px;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-val {
  margin-top: 2px;
  font-family: 'Open Sans', sans-serif;
  font-size: 58.09px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-val span {
  margin-left: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16.6px;
  font-weight: bold;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-note {
  margin-top: 45px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-subnote {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-subnote span {
  display: inline-block;
  padding-left: 1.1em;
  text-align: left;
  text-indent: -1.1em;
}

.Insurance-recommend-tab .Insurance-recommend-card__table-wrapper {
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
}

.Insurance-recommend-card__price-table--education {
  max-width: 520px;
}

.Insurance-recommend-card__price-table--education th,
.Insurance-recommend-card__price-table--education td {
  height: 48px;
  padding: 6px 8px;
  font-size: 15px;
}

.Insurance-recommend-card__price-table--education .is-label {
  width: 40%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
}

.Insurance-recommend-card__price-table--education th:nth-child(2),
.Insurance-recommend-card__price-table--education td:nth-child(2),
.Insurance-recommend-card__price-table--education th:nth-child(3),
.Insurance-recommend-card__price-table--education td:nth-child(3) {
  width: 30%;
}

.Insurance-recommend-card__price-table--education .is-total th,
.Insurance-recommend-card__price-table--education .is-total td {
  font-weight: bold;
  background-color: #f9f8f6;
}

.Insurance-recommend-tab .Insurance-recommend-card__table {
  box-sizing: border-box;
  width: 100%;
  max-width: 399px;
  margin: 0 auto;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.Insurance-recommend-tab .Insurance-recommend-card__table th,
.Insurance-recommend-tab .Insurance-recommend-card__table td {
  box-sizing: border-box;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  border-top: none;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-left: none;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table tr th:last-child,
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table tr td:last-child {
  border-right: none;
}

/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__table
  tbody
  tr:last-child
  th,
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__table
  tbody
  tr:last-child
  td {
  border-bottom: none;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table thead th {
  height: 56px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-corner {
  width: 130px;
  color: #333;
  background-color: #f5f3f0;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-light {
  width: 88px;
  color: #3481cf;
  background-color: #deeeff;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-anshin {
  width: 88px;
  color: #34bf55;
  background-color: #eaffef;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-plus {
  width: 89px;
  color: #ed8106;
  background-color: #fff2e4;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table tbody tr {
  height: 56px;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__table
  tbody
  th[scope='row'] {
  width: 130px;
  padding: 0 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  color: #333;
  background-color: #f5f3f0;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__table tbody td {
  background-color: #fff;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__table
  .Insurance-recommend-card__icon-circle {
  box-sizing: border-box;
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  border: 2px solid #333;
  border-radius: 50%;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__table
  .Insurance-recommend-card__icon-dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  vertical-align: middle;
  background-color: #333;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__table
  .Insurance-recommend-card__txt-select {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__table-note {
  max-width: 399px;
  padding-left: 1.1em;
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: left;
  text-indent: -1.1em;
}

.Insurance-recommend-tab .Insurance-recommend-card__fig-wrap {
  margin-top: 24px;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__fig img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.Insurance-recommend-tab .Insurance-recommend-card__cancer-desc {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.61;
  color: #333;
  text-align: left;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-guide-list {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-guide-item {
  box-sizing: border-box;
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  background: #fff;
  border: 1px solid #3b5e10;
  border-radius: 8px;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-guide-sub {
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  white-space: nowrap;
}

.Insurance-recommend-tab .Insurance-recommend-card__course-guide-ttl {
  margin-top: 6px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__term-note {
  max-width: 400px;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  color: #333;
  text-align: left;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-table {
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
  background-color: #fff;
  border: 1.3px solid #e0e0e0;
}

/* stylelint-disable-next-line no-descending-specificity */
.Insurance-recommend-tab .Insurance-recommend-card__price-table th,
/* stylelint-disable-next-line no-descending-specificity */
.Insurance-recommend-tab .Insurance-recommend-card__price-table td {
  box-sizing: border-box;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
  color: #333;
  text-align: center;
  border-right: 1.1px solid #e0e0e0;
  border-bottom: 1.1px solid #e0e0e0;
}

.Insurance-recommend-tab .Insurance-recommend-card__price-table th.is-bg {
  font-weight: bold;
  background-color: #f5f3f0;
}

/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  thead
  tr:first-child
  th:first-child,
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  thead
  tr:first-child
  th:nth-child(2) {
  width: 85px;
  height: 58px;
}

/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  thead
  tr:first-child
  th:last-child {
  height: 30px;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-combinators, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  thead
  tr:nth-child(2)
  th {
  width: 114px;
  height: 28px;
}

/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab .Insurance-recommend-card__price-table tbody tr {
  height: 57px;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  tr
  th:last-child,
/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  tr
  td:last-child {
  border-right: none;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-combinators, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  tbody
  tr:last-child
  th,
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type */
.Insurance-recommend-tab
  .Insurance-recommend-card__price-table
  tbody
  tr:last-child
  td {
  border-bottom: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__sub-ttl {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__cost-boxes {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.Insurance-recommend-tab .Insurance-recommend-card__cost-box {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 287px;
  height: 91px;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #3b5e10;
  border-radius: 7.5px;
}

.Insurance-recommend-tab .Insurance-recommend-card__cost-sub {
  font-size: 18px;
  line-height: 1.2;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.Insurance-recommend-tab .Insurance-recommend-card__cost-val {
  margin-top: 6px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__cost-val .note-mark {
  font-size: 14px;
  font-weight: bold;
  vertical-align: super;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-note {
  margin-top: 24px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-box {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 402px;
  max-width: 100%;
  height: 53px;
  padding: 0 0 12px;
  background-color: #fff;
  border: 1.3px solid #bfbfbf;
  border-radius: 4.5px;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-box .val {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-box .txt {
  margin-right: 6px;
  margin-left: 2px;
  font-size: 15px;
  line-height: 1;
  color: #333;
}

.Insurance-recommend-tab .Insurance-recommend-card__age-box .txt:last-child {
  margin-right: 0;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.Insurance-recommend-tab .Insurance-recommend-card__sec-ttl {
  padding-left: 24px;
  margin-bottom: 38px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #3b5e10;
  border-left: 3px solid #3b5e10;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 0;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-item {
  box-sizing: border-box;
  padding: 12px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #3b5e10;
  border-radius: 8px;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-target {
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-amount {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-body {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-body img {
  flex-shrink: 0;
  width: 87px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: none;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-summary {
  padding: 24px;
  margin-top: 32px;
  background: #fbffee;
  border: none;
  border-radius: 0;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-sum-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.Insurance-recommend-tab .Insurance-recommend-card__guide-sum-txt {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.81;
  color: #333;
  text-align: left;
}

.Insurance-recommend-tab .Insurance-recommend-card__notes {
  margin-top: 32px;
}

.Insurance-recommend-tab .Insurance-recommend-card__note-item {
  padding-left: 1.1em;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  text-indent: -1.1em;
}

.Insurance-recommend-tab .Insurance-recommend-card__note-item--no-indent {
  padding-left: 0;
  text-indent: 0;
}

.Insurance-recommend-tab
  .Insurance-recommend-card__notes
  .Insurance-recommend-card__note-item:last-child {
  margin-top: 16px;
}

@media screen and (width <= 750px) {
  .Insurance-recommend-tab .Insurance-recommend-card__ttl {
    padding-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__sub {
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.4;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 16px auto 32px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-item {
    box-sizing: border-box;
    align-items: flex-end;
    height: 41px;
    padding: 0 0 12px;
    border-radius: 4px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-range {
    gap: 12px;
    margin: 16px 0 12px;
  }

  .Insurance-recommend-tab
    .Insurance-recommend-card__amount-range
    .Insurance-recommend-card__amount-item {
    box-sizing: border-box;
    align-items: flex-end;
    width: 94px;
    height: 41px;
    padding: 0 0 12px;
    border-radius: 4px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-note {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-item .val {
    font-size: 18px;
    line-height: 1;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__amount-item .unit {
    font-size: 13px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .Insurance-recommend-tab .Insurance-recommend-card__sec-ttl {
    padding-left: 11px;
    margin-bottom: 16px;
    font-size: 18px;
    border-left: 3px solid #3b5e10;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__courses {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    min-width: 0;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-head {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding: 8px 4px 6px;
    text-align: center;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-ico {
    display: flex;
    flex-shrink: 0;
    align-items: flex-end;
    justify-content: center;
    height: 40px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-ico img {
    width: auto;
    max-width: 58.5px;
    height: auto;
    max-height: 38.6px;
    object-fit: contain;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-ttl {
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15.6px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-desc {
    margin-top: 6px;
    font-size: 13.65px;
    line-height: 1.2;
    white-space: normal;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-list {
    margin-top: 24px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-list li {
    height: 36px;
    padding: 2px 4px;
    margin-bottom: 8px;
    font-size: 12.5px;
  }

  .Insurance-recommend-tab
    .Insurance-recommend-card__course-list
    li:nth-child(4) {
    height: 60px;
    font-size: 11.5px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-sub {
    margin: 12px 0 8px;
    font-size: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-sub--left {
    font-size: 14px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__prices {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 8px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-item {
    flex: 1;
    min-width: 0;
    height: 120px;
    max-height: 120px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-target {
    height: 28px;
    min-height: 28px;
    padding: 0 4px;
    font-size: 16px;
    line-height: 1;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 92px;
    padding: 8px 4px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-label {
    font-size: 13px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-val {
    margin-top: 2px;
    font-size: 32px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-val span {
    margin-left: 2px;
    font-size: 13px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-note {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.4;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-subnote {
    padding-left: 1.1em;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    text-indent: -1.1em;
  }

  .Tab-cont__item:nth-child(1) .Insurance-recommend-card__price-subnote,
  .Tab-cont__item:nth-child(2) .Insurance-recommend-card__price-subnote {
    padding-left: 0;
    text-align: center;
    text-indent: 0;
  }

  /* stylelint-disable-next-line no-duplicate-selectors */
  .Insurance-recommend-tab .Insurance-recommend-card__sec-ttl {
    padding-left: 14px;
    margin-bottom: 24px;
    font-size: 18px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__guide-summary {
    padding: 24px 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__guide-sum-ttl {
    font-size: 18px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__guide-list {
    box-sizing: border-box;
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__guide-item {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 10px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__guide-body {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__table-wrapper {
    box-sizing: border-box;
    width: 100%;
    margin-top: 16px;
    overflow-x: visible;
  }

  .Insurance-recommend-card__price-table--education th,
  .Insurance-recommend-card__price-table--education td {
    height: 44px;
    padding: 4px 6px;
    font-size: 13.5px;
  }

  .Insurance-recommend-card__price-table--education .is-label {
    font-size: 12.5px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__table {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table thead th {
    height: 45px;
    padding: 2px 1px;
    font-size: 11px;
    line-height: 1.2;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-corner {
    width: 34%;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-light,
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-anshin,
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table thead th.is-plus {
    width: 22%;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__table tbody tr {
    height: 45px;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab
    .Insurance-recommend-card__table
    tbody
    th[scope='row'] {
    width: 34%;
    padding: 2px 1px;
    font-size: 11px;
    line-height: 1.2;
  }

  .Insurance-recommend-tab
    .Insurance-recommend-card__table
    .Insurance-recommend-card__icon-circle {
    width: 18px;
    height: 18px;
    border-width: 1.7px;
  }

  .Insurance-recommend-tab
    .Insurance-recommend-card__table
    .Insurance-recommend-card__icon-dash {
    width: 19px;
    height: 1.7px;
  }

  .Insurance-recommend-tab
    .Insurance-recommend-card__table
    .Insurance-recommend-card__txt-select {
    font-size: 12px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__table-note {
    max-width: 100%;
    padding-left: 1.1em;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
    text-indent: -1.1em;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__fig-wrap {
    margin-top: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cancer-desc {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-guide-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-guide-item {
    padding: 12px 10px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-guide-sub {
    font-size: 14px;
    white-space: normal;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__course-guide-ttl {
    margin-top: 4px;
    font-size: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__term-note {
    max-width: 100%;
    margin-top: 8px;
    font-size: 14px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__price-table {
    width: 100%;
    max-width: 100%;
    border-width: 1px;
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .Insurance-recommend-tab .Insurance-recommend-card__price-table th,
  .Insurance-recommend-tab .Insurance-recommend-card__price-table td {
    font-size: 12px;
    border-width: 0.86px;
  }

  /* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
  .Insurance-recommend-tab
    .Insurance-recommend-card__price-table
    thead
    tr:first-child
    th:first-child,
/* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
  .Insurance-recommend-tab
    .Insurance-recommend-card__price-table
    thead
    tr:first-child
    th:nth-child(2) {
    width: 66px;
    height: 45px;
  }

  /* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-specificity, selector-max-type */
  .Insurance-recommend-tab
    .Insurance-recommend-card__price-table
    thead
    tr:first-child
    th:last-child {
    height: 23px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__sub-ttl {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  /* stylelint-disable-next-line prettier/prettier */
  /* stylelint-disable-next-line prettier/prettier */
  /* stylelint-disable-next-line no-descending-specificity, prettier/prettier */
  /* stylelint-disable-next-line selector-max-combinators, selector-max-compound-selectors, selector-max-type, prettier/prettier */
  /* stylelint-disable-next-line no-descending-specificity, selector-max-combinators, selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab
    .Insurance-recommend-card__price-table
    thead
    tr:nth-child(2)
    th {
    height: 22px;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Insurance-recommend-tab .Insurance-recommend-card__price-table tbody tr {
    height: 44px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cost-boxes {
    flex-direction: column;
    gap: 11px;
    align-items: center;
    margin-top: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cost-box {
    width: 100%;
    max-width: 100%;
    height: 79px;
    padding: 10px 8px;
    border-radius: 7.5px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cost-sub {
    font-size: 16px;
    white-space: nowrap;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cost-val {
    margin-top: 4px;
    font-size: 18px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__cost-val .note-mark {
    font-size: 12px;
    vertical-align: super;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__age-note {
    margin-top: 16px;
    font-size: 14px;
    text-align: left;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__age-boxes {
    gap: 9px;
    margin-top: 12px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__age-box {
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 295px;
    height: 41px;
    padding: 0 0 8px;
    border-radius: 3.5px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__age-box .val {
    font-size: 16px;
  }

  .Insurance-recommend-tab .Insurance-recommend-card__age-box .txt {
    margin-right: 4px;
    margin-left: 2px;
    font-size: 12px;
  }
}

/* ==========================================================================
  Term Recommend Card
   ========================================================================== */
.Box-frame--term-recommend {
  box-sizing: border-box;
  overflow: visible;
  background: #fefffd;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgb(0, 0, 0, 0.1);
}

.Term-recommend-card__ttl {
  margin: 0 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  color: #3b5e10;
  text-align: left;
}

.Term-recommend-card__lead {
  margin: 0 0 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  text-align: center;
}

.Term-recommend-card__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.Term-recommend-card__item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  text-decoration: none;
  background-color: transparent;
  border-right: 1px dotted #ccc;
  transition: opacity 0.2s ease;
}

.Term-recommend-card__item:last-child {
  border-right: none;
}

.Term-recommend-card__item:hover {
  opacity: 0.7;
}

/* stylelint-disable-next-line no-descending-specificity */
.Term-recommend-card__item-icon img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.Term-recommend-card__note {
  padding-left: 1em;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  text-indent: -1em;
}

@media screen and (width >= 751px) {
  .Box-frame--term-recommend {
    width: 1040px;
  }

  .Term-recommend-card__ttl {
    padding-bottom: 24px;
    margin-bottom: 24px;
    font-size: 30px;
    border-bottom: 1px solid #3b5e10;
  }

  .Term-recommend-card__lead {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .Term-recommend-card__items {
    gap: 0;
    margin-bottom: 30px;
  }

  .Term-recommend-card__item {
    width: auto;
    height: auto;
    padding: 0 40px;
  }
}

@media screen and (width <= 750px) {
  .Term-recommend-card__ttl {
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: 22px;
    border-bottom: 1px solid #3b5e10;
  }

  .Term-recommend-card__lead {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .Term-recommend-card__items {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border-top: 1px dotted #ccc;
  }

  .Term-recommend-card__item {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px dotted #ccc;
  }
}

/* ==========================================================================
  Reduction Box
   ========================================================================== */
.Box-frame--reduction {
  box-sizing: border-box;
  height: auto;
  margin-bottom: 40px;
}

.Reduction-lead {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 674px;
  height: auto;
  margin: 0 auto 24px;
  overflow: hidden;
}

.Reduction-lead__illust {
  flex-shrink: 0;
  width: 82px;
  height: 132px;
}

.Reduction-lead__img {
  display: block;
  width: 82px;
  height: 132px;
}

.Reduction-lead__bubble {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  height: auto;
  padding: 18px 24.14px;
  margin-left: 22.86px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6.25px;
}

.Reduction-lead__bubble::before {
  position: absolute;
  top: 39.73px;
  left: -16.85px;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent #e0e0e0 transparent transparent;
  border-style: solid;
  border-width: 10.27px 16.85px 10.27px 0;
}

.Reduction-lead__bubble::after {
  position: absolute;
  top: 39.73px;
  left: -15.4px;
  width: 0;
  height: 0;
  content: '';
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 10.27px 16.85px 10.27px 0;
}

.Reduction-lead__txt {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

/* ==========================================================================
  Reduction Example
   ========================================================================== */
.Reduction-example {
  margin-bottom: 24px;
}

.Reduction-example__ttl {
  padding-left: 8px;
  margin: 0 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  color: #3b5e10;
  text-align: left;
  border-left: 3px solid #3b5e10;
}

.Reduction-example__body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.Reduction-example__profile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.Reduction-example__profile-icon {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  background-color: #f4f7ea;
  border: 1.5px solid #8fb130;
  border-radius: 50%;
}

/* stylelint-disable-next-line no-descending-specificity */
.Reduction-example__profile-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Reduction-example__profile-info {
  flex: 1;
}

.Reduction-example__profile-name {
  margin: 0 0 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.Reduction-example__profile-list {
  padding-left: 0;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  list-style: none;
}

/* stylelint-disable-next-line no-descending-specificity */
.Reduction-example__profile-list li {
  position: relative;
  padding-left: 1.2em;
}

.Reduction-example__profile-list li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.Reduction-example__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.Reduction-example__summary-lead {
  margin: 0 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  color: #333;
  text-align: center;
}

.Reduction-example__summary-box {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  text-align: center;
  background-color: #f7f6f4;
  border-radius: 4px;
}

.Reduction-example__summary-price {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.Reduction-example__price-val {
  margin: 0 2px;
  font-size: 22px;
  font-weight: bold;
  color: #f84131;
}

.Reduction-example__summary-foot {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.Reduction-cards {
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 840px;
  max-width: 100%;
  margin: 0 auto 24px;
}

.Reduction-card {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 408px;
  width: 408px;
  padding: 8px 18px 13px;
  background-color: #fff;
  border: 1.2px solid #e0e0e0;
}

.Reduction-card__header {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}

.Reduction-card__badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.Reduction-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Reduction-card__badge-img {
  display: block;
  width: 252px;
  height: 62px;
  object-fit: contain;
}

.Reduction-card__note {
  margin-left: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.4px;
  line-height: 1;
  color: #333;
}

.Reduction-card__sub {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16.8px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.Reduction-card__note {
  font-size: 14.4px;
  vertical-align: super;
}

.Reduction-card__body {
  width: 100%;
}

.Reduction-table {
  box-sizing: border-box;
  width: 370.8px;
  margin: 0 auto 14px;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1.2px solid #e0e0e0;
}

/* stylelint-disable-next-line no-descending-specificity */
.Reduction-table th,
/* stylelint-disable-next-line no-descending-specificity */
.Reduction-table td {
  box-sizing: border-box;
  padding: 4px 6px;
  font-family: 'Noto Sans JP', sans-serif;
  vertical-align: middle;
  color: #333;
  letter-spacing: -0.04em;
  border: 1px solid #e0e0e0;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-type */
.Reduction-table thead tr {
  height: 53.6px;
  background-color: #f5f3f0;
}

.Reduction-table__th-corner {
  width: 120px;
  background-color: #f5f3f0;
}

.Reduction-table__th {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  background-color: #f5f3f0;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-type */
.Reduction-table tbody tr {
  height: 53.6px;
}

.Reduction-table__row-hdr {
  width: 120px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  background-color: #f5f3f0;
}

.Reduction-table__sub-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
}

.Reduction-table__td {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Reduction-table thead tr th:nth-child(2),
.Reduction-table__td--current {
  width: 126px;
}

/* stylelint-disable-next-line no-descending-specificity */
/* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
/* stylelint-disable-next-line no-descending-specificity, selector-max-compound-selectors, selector-max-type */
.Reduction-table thead tr th:nth-child(3),
.Reduction-table__td--reduced {
  width: 124.8px;
}

.Reduction-table__arrow {
  position: absolute;
  top: 50%;
  right: -9.6px;
  z-index: 1;
  width: 19.2px;
  height: 23.1px;
  background-color: #8fb130;
  clip-path: polygon(
    0% 21.1%,
    47.8% 21.1%,
    47.8% 0%,
    100% 50%,
    47.8% 100%,
    47.8% 78.9%,
    0% 78.9%
  );
  transform: translateY(-50%);
}

.Reduction-card__result {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16.8px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  text-align: center;
  text-decoration: underline;
}

.Reduction-notes {
  margin-top: 20px;
}

.Reduction-notes__list {
  padding: 0;
  margin: 0 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  list-style: none;
}

/* stylelint-disable-next-line no-descending-specificity */
.Reduction-notes__list li {
  padding-left: 1.2em;
  margin-bottom: 6px;
  text-indent: -1.2em;
}

.Reduction-notes__list li.is-no-indent {
  padding-left: 0;
  text-indent: 0;
}

/* stylelint-disable-next-line no-descending-specificity */
.Reduction-notes__list li:nth-child(2),
/* stylelint-disable-next-line no-descending-specificity */
.Reduction-notes__list li:nth-child(4) {
  margin-bottom: 14px;
}

.Reduction-link {
  padding: 16px;
  text-align: center;
  border-radius: 6px;
}

.Reduction-link__txt {
  margin: 0 0 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.Reduction-link__url {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #1374c1;
  word-break: break-all;
  text-decoration: underline;
}

@media screen and (width <= 750px) {
  .Reduction-lead {
    width: 100%;
    max-width: 327px;
    height: auto;
    margin: 0 auto 16px;
    overflow: hidden;
  }

  .Reduction-lead__illust {
    width: 77px;
    height: 132px;
  }

  .Reduction-lead__img {
    display: block;
    width: 77px;
    height: 132px;
  }

  .Reduction-lead__bubble {
    box-sizing: border-box;
    flex: 1;
    height: auto;
    padding: 13px 10px;
    margin-left: 6.32px;
    border-radius: 4px;
  }

  .Reduction-lead__bubble::before {
    top: 49.02px;
    left: -10.32px;
    border-width: 6.98px 10.32px 6.98px 0;
  }

  .Reduction-lead__bubble::after {
    top: 49.02px;
    left: -8.9px;
    border-width: 6.98px 10.32px 6.98px 0;
  }

  .Reduction-lead__txt {
    font-size: 16px;
    line-height: 1.63;
  }

  .Reduction-example {
    box-sizing: border-box;
    width: 100%;
    max-width: 327px;
    margin-right: auto;
    margin-bottom: 16px;
    margin-left: auto;
  }

  .Reduction-example__ttl {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 25px;
  }

  .Reduction-example__body {
    gap: 10px;
  }

  .Reduction-example__profile {
    gap: 12px;
  }

  .Reduction-example__profile-icon {
    width: 80px;
    height: 80px;
  }

  .Reduction-example__profile-name {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .Reduction-example__profile-list {
    font-size: 14px;
    line-height: 1.5;
  }

  .Reduction-example__summary-lead {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .Reduction-example__summary-box {
    padding: 12px 8px;
    margin-bottom: 12px;
  }

  .Reduction-example__summary-price {
    font-size: 16px;
  }

  .Reduction-example__price-val {
    font-size: 22px;
  }

  .Reduction-example__summary-foot {
    font-size: 14px;
  }

  /* stylelint-disable-next-line no-duplicate-selectors */
  .Reduction-example__price-val {
    font-size: 22px;
    font-weight: bold;
  }

  .Reduction-cards {
    box-sizing: border-box;
    flex-direction: column;
    gap: 13px;
    align-items: center;
    width: 100%;
    max-width: 327px;
    margin: 0 auto 24px;
  }

  .Reduction-card {
    box-sizing: border-box;
    flex: none;
    width: 100%;
    max-width: 327px;
    padding: 4px 9px 9px;
  }

  .Reduction-card__badge-img {
    width: 211px;
    height: 52px;
  }

  .Reduction-card__note {
    font-size: 12px;
  }

  .Reduction-card__sub {
    font-size: 14px;
    line-height: 1.4;
  }

  .Reduction-table {
    width: 100%;
    max-width: 309px;
    margin-bottom: 8px;
    table-layout: fixed;
  }

  /* stylelint-disable-next-line selector-max-type */
  .Reduction-table thead tr {
    height: 42px;
  }

  /* stylelint-disable-next-line selector-max-type */
  .Reduction-table tbody tr {
    height: 42px;
  }

  .Reduction-table__th-corner,
  .Reduction-table__row-hdr {
    width: 32%;
    font-size: 12px;
  }

  .Reduction-table__th {
    padding: 2px;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .Reduction-table__td {
    padding: 2px;
    font-size: 12px;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Reduction-table thead tr th:nth-child(2),
  .Reduction-table__td--current {
    width: 34%;
  }

  /* stylelint-disable-next-line selector-max-compound-selectors, selector-max-type */
  .Reduction-table thead tr th:nth-child(3),
  .Reduction-table__td--reduced {
    width: 34%;
  }

  .Reduction-table__arrow {
    right: -8px;
    width: 16px;
    height: 19px;
  }

  .Reduction-card__result {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.2;
  }

  .Reduction-notes__list {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .Reduction-link {
    padding: 12px;
  }

  .Reduction-link__txt,
  .Reduction-link__url {
    font-size: 14px;
  }
}

@media screen and (width < 375px) {
  .Reduction-table__th {
    white-space: normal;
  }
}

/* ==========================================================================
  Product Lineup Box Frame
   ========================================================================== */
.Box-frame--lineup {
  box-sizing: border-box;
  overflow: visible;
  background: #fefffd;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgb(0, 0, 0, 0.1);
}

.Lineup-card__ttl {
  padding-bottom: 16px;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  color: #3b5e10;
  text-align: left;
  border-bottom: 1px solid #3b5e10;
}

.Box-frame--lineup .Box-frame__block {
  margin: 20px 15px;
}

.Lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.Lineup-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 40px 16px 16px;
  overflow: hidden;
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 1px dashed #e0e0e0;
  border-radius: 0;
  transition: background-color 0.2s ease;
}

.Lineup-item:last-child {
  border-bottom: none;
}

.Lineup-item::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  content: '';
  background: url(/shared/img/arrow_forward.svg) no-repeat center / contain;
  transform: translateY(-50%);
}

.Lineup-item:hover {
  background-color: #fafafa;
}

.Lineup-item__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

/* stylelint-disable-next-line no-descending-specificity */
.Lineup-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Lineup-item__text {
  display: flex;
  flex-direction: column;
}

.Lineup-item__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
}

.Lineup-item__sub {
  margin-top: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
}

.Lineup-item--life .Lineup-item__sub {
  color: #8fb130;
}

.Lineup-item--medical .Lineup-item__sub {
  color: #f26522;
}

.Lineup-item--cancer .Lineup-item__sub {
  color: #ed1c24;
}

.Lineup-item--women .Lineup-item__sub {
  color: #ec008c;
}

.Lineup-item--disable .Lineup-item__sub {
  color: #0054a6;
}

.Lineup-item--dementia .Lineup-item__sub {
  color: #662d91;
}

@media screen and (width >= 751px) {
  .Box-frame--lineup {
    border-radius: 12px;
  }

  .Box-frame--lineup .Box-frame__block {
    margin: 32px 40px;
  }

  .Lineup-card__ttl {
    padding-bottom: 20px;
    font-size: 26px;
    text-align: center;
  }

  .Lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .Lineup-item {
    padding: 20px 16px;
    background: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 6px;
    box-shadow: none;
  }

  .Lineup-item:last-child {
    border-bottom: 1px solid #bfbfbf;
  }

  .Lineup-item::after {
    display: none;
  }

  .Lineup-item:hover {
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.08);
  }

  .Lineup-item__name {
    font-size: 17px;
  }

  .Lineup-item__sub {
    font-size: 13px;
  }
}

.Support-conts {
  display: flex;
  flex-flow: wrap;
  margin: 0;
}

.Support-conts__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-repeat: no-repeat;
}

.Support-conts__unit:first-of-type {
  background-image: url(/shared/img/img_support01.png);
}

.Support-conts__unit:nth-of-type(2) {
  background-image: url(/shared/img/img_support02.png);
}

.Support-conts__unit:nth-of-type(3) {
  background-image: url(/shared/img/img_support03.png);
}

.Support-conts__unit:last-of-type {
  background-image: url(/shared/img/img_support04.png);
}

.Support-conts__ttl {
  order: 2;
  padding-top: 100px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.Support-conts__txt {
  display: inline-block;
  order: 3;
  margin: 16px 0 0;
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (width <= 750px) {
  .Support-conts {
    margin: 0 15px 20px;
  }

  .Support-conts__unit {
    width: calc(50% - 1px);
    padding: 20px 0;
    background-position: 50% 20px;
    background-size: auto 70px;
  }

  .Support-conts__unit:nth-of-type(n + 3) {
    border-top: 1px dotted #c5c5c5;
  }

  .Support-conts__unit:nth-of-type(odd) {
    padding-right: 6px;
  }

  .Support-conts__unit:nth-of-type(even) {
    padding-left: 6px;
    border-left: 1px dotted #c5c5c5;
  }

  .Support-conts__unit:nth-of-type(3) {
    background-position: 50% 34px;
    background-size: auto 55px;
  }

  .Support-conts__txt {
    padding: 0 5px;
  }
}

@media screen and (width >= 751px) {
  .Support-conts {
    margin: 0 50px 48px;
  }

  .Support-conts__unit {
    width: 25%;
    background-position: 50% 0;
  }

  .Support-conts__unit:not(:first-of-type) {
    border-left: 1px solid #666;
  }

  .Support-conts__ttl {
    font-size: 1.8rem;
  }

  .Support-conts__txt {
    font-size: 1.5rem;
  }
}
