@charset "UTF-8";

:root {
  --font-primary: "Zen Maru Gothic", "Hiragino Maru Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  --color-primary: #E0414F;
}

.f-feature__text-underline {
  font-style: normal;
  text-decoration-line: underline;
}
.f-feature__text-underline--marker-yellow {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #FFEA76;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
.f-feature__note-mark {
  font-size: 13px;
}
.f-feature__info-note {
  display: flex;
  font-size: 13px;
}
.f-feature__info-note-title {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .f-feature__info-note {
    font-size: 16px;
  }
}


/* ---------- 記事トップ ---------- */

/* 記事トップ全体を囲む要素 */
.f-feature__header {
  position: relative;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .f-feature__header {
    padding: 0 100px;
  }
}

/* 記事メインビジュアル、簡易タイトル、日付 */
.f-feature__main-image-inner {
  position: relative;
}
.f-feature__main-image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .f-feature__main-image {
    position: absolute;
    top: max(calc(-260 / 1430 * 100vw), -260px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 1380px;
    width: 100%;
    margin: auto;
  }
}


/* 記事タイトル */
.f-feature__title-group {
  font-family: var(--font-primary);
  line-height: 1.2;
  font-weight: 900;
  position: relative;
  margin-top: 6px;
  padding-left: 23px;
}
.f-feature__title-group::before {
  content: "";
  background-color: #DF414F;
  width: 8px;
  border-radius: 2px;
  height: 100%;
  position: absolute;
  left: 0;
}
@media (min-width: 768px) {
  .f-feature__title-group {
    margin-top: 20px;
    padding-left: 25px;
  }
  .f-feature__title-group::before {
    width: 10px;
    border-radius: 2px;
  }
}
.f-feature__title {
  font-size: 25px;
}
@media (min-width: 768px) {
  .f-feature__title {
    display: flex;
    align-items: center;
    font-size: 40px;
  }
  .f-feature__title span {
    font-size: 0.625em;
  }
}
.f-feature__sub-title {
  color: #E0414F;
  font-size: 40px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
.f-feature__sub-title .small-txt {
  font-size: 0.7em;
}
@media (min-width: 768px) {
  .f-feature__sub-title {
    font-size: 82px;
    display: inline;
  }
}

.f-feature__pre-title {
  color: #E0414F;
  font-size: 21px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .f-feature__pre-title {
    font-size: 30px;
    padding-top: min(calc(200 / 1430 * 100vw), 200px);
  }
}
.f-feature__date {
  font-size: 16px;
  font-weight: 400;
}


/* ---------- 記事コンテンツ ---------- */

/* 記事冒頭説明文 */
.f-feature__text {
  margin-top: 30px;
  font-size: 19px;
  line-height: calc(30 / 19);
}
@media (min-width: 768px) {
  .f-feature__text {
    font-size: 25px;
    margin-top: 35px;
    line-height: calc(45 / 25);
  }
}
.f-feature__text--highlight {
  display: inline;
  padding: 0 0.3em;
  font-style: normal;
  background-color: rgb(223 65 79 / 0.2);
}
@media (min-width: 768px) {
  .f-feature__text--highlight {
    /* display:  inline-block; */
  }
}
.f-feature__text--red {  
  font-style: normal;
  color: var(--color-primary);
}

.f-feature__text-wrapper {
  margin-top: 30px;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
}
@media (min-width: 768px) {
  .f-feature__text-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: 22px;
  }
}
.f-feature__text {
  width: 100%;
}
/* animation_link-item01 */
.animation_link-item01 {
  display: grid;
  align-items: end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.animation_link-item01 {
  width: 100%;
  height: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .animation_link-item01 {
    width: min(calc(212 / 1200 * 100vw), 212px);
    height: min(calc(226 / 1200 * 100vw), 226px);
    margin-top: 0;
  }
}
.animation_link-item01 img {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: show05 var(--duration) infinite steps(1, end);
  --duration: 3s;

  /* 画面外に行ったあと戻ったときのちらつき防止 */
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.animation_link-item01 .s1{ 
  animation-delay: calc(var(--duration) * 0);
}
.animation_link-item01 .s2{ 
  animation-delay: calc(var(--duration) * 0.3333);
}
.animation_link-item01 .s3{ 
  animation-delay: calc(var(--duration) * 0.6666);
}
@keyframes show05 {
  0%   { opacity: 1; }
  33.3333%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (min-width: 768px) {
  a.animation_link-item01:hover {
    opacity: 0.6;
  }
}


/* 各記事コンテンツを囲む要素 */
.f-feature__contents {
  margin: 15px 0 40px;
}
@media (min-width: 768px) {
  .f-feature__contents {
    max-width: 1200px;
    margin: 35px 100px 30px;
  }
}
@media (min-width: 768px) {
  .f-feature__content {
    margin: auto;
    background-color: #fff;
    border-radius: 30px;
    padding-bottom: 100px;
  }
}
.f-feature__contents img {
  display: block;
  width: 100%;
  height: auto;
}


/* 各記事コンテンツボックス */
.f-feature__lead {
  border: solid 3px #E0414F;
  border-radius: 30px;
  position: relative;
}
.f-feature__lead-inner {
  padding: 35px 26px 50px;
}
@media (min-width: 1200px) {
  .f-feature__lead-inner {
    padding: 48px 50px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
  }
}
.f-feature__contents-num {
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  width: fit-content;
  color: #DF414F;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 0 22px 5px 22px;
  border: solid 4px #DF414F;
  border-radius: 50px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .f-feature__contents-num {
    font-size: 30px;
  }
}
.f-feature__contents-num__number {
  font-size: 26px;
}
@media (min-width: 768px) {
  
.f-feature__contents-num__number {
    font-size: 35px;
  }
}
.f-feature__contents-num::after {
  content: '';
  width: 60px;
  height: 50px;
  background: url("../img/feature/feature-img_num-icon_01.png")no-repeat top / 100%;
  position: absolute;
  right: -40px;
  top: -20px;
}

@media (min-width: 768px) {
  .f-feature__contents__body {
    grid-area: 2 / 1 / 3 / 2;
  }
}
.f-feature__contents-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  line-height: calc(30 / 22);
  margin-top: 15px;
}
@media (min-width: 768px) {
  .f-feature__contents-title {
    font-weight: 900;
    text-align: unset;
    font-size: min(40px, calc(40 / 1200 * 100vw));
    /* margin-top: 15px; */
  }
}
.f-feature__contents-image {
  grid-area: 1 / 2 / 3 / 3;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .f-feature__contents-image {
    margin-right: unset;
    margin-left: auto;
    margin-top: unset;
  }
}
.f-feature__contents-image img {
  width: 100%;
  height: auto;
}

.f-feature__contents-text {
  margin-top: 30px;
  font-size: 19px;
  line-height: calc(30 / 19);
  width: 100%;
}
@media (min-width: 1200px) {
  .f-feature__contents-text {
    font-size: min(25px, calc(25 / 1200 * 100vw));
    margin-top: 35px;
    line-height: calc(45 / 25);
    /* width: min(600px, calc(600 / 1200 * 100vw)); */
    /* width: calc(calc((600 / 1200 * 100vw) - 100px) + calc(50 / 1200 * 100vw)); */
    width: min(638px, calc((638 / 1200 * 100vw) - 100px));
    padding-right: 38px;
  }
}



/* f-feature__accordion */

.f-feature__contents01 .f-feature__accordion-sec-body {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .f-feature__contents01 .f-feature__accordion-sec-body {
    margin-top: unset;
  }
}
.f-feature__accordion {
  overflow: hidden;
  transition: height 0.4s ease;
  height: 0;
}
.f-feature__accordion.is-open {
  height: auto;
  border-left: solid 3px #E0414F;
  border-right: solid 3px #E0414F;
  border-bottom: solid 3px #E0414F;
  border-radius: 0 0 30px 30px;
  margin-top: -30px;
  padding-top: 30px;
  padding-bottom: 50px;
}

.f-feature__accordion-sec-title {
  width: fit-content;
  margin-top: 34px;
  padding: 2px 28px 5px 18px;
  font-size: max(18px, calc(18 / 375 * 100vw));
  font-weight: 900;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 0 50px 50px 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .f-feature__accordion-sec-title {
    font-size: 30px;
    padding: 4px 48px 6px 50px;
    margin-top: 48px;
  }
}

.f-feature__accordion-sec-body {
  padding: 0 18px;
}
@media (min-width: 768px) {
  .f-feature__accordion-sec-body {
    padding: 0 50px ;
  }
}
.f-feature__accordion-text {
  padding-top: 30px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .f-feature__accordion-text {
    font-size: min(25px,calc(25 / 1200 * 100vw));
    font-family: "Noto Sans JP", sans-serif;
    padding-bottom: 50px;
  }
}
.f-feature__accordion-text--em {
  display: block;
  font-family: var(--font-primary);
  color: #da4753;
  font-weight: 700;
  font-size: 16px;
  margin-top: 1em;
  font-style: unset;
}
@media (min-width: 768px) {
  .f-feature__accordion-text--em {
    font-size: 27px;
    margin-top: 50px;
  }
}

/* f-feature__toggle-btn */
.f-feature__toggle-btn {
  font-family: var(--font-primary);
  font-weight: 700;
  background-color: #E0414F;
  border: solid 1px #E0414F;
  padding-block: 10px;
  border-radius: 50px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  /* left: 50%;
  transform: translate(-50%, -50%); */
  width: 250px;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 768px) {
  .f-feature__toggle-btn {
    position: relative;
    bottom: 25px;
    left: unset;
    border: unset;
    transform: unset;
    width: 310px;
  }
  .f-feature__toggle-btn:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0414F;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    z-index: -1;
  }
  .f-feature__toggle-btn:hover:before {
    top: 130%;
  }
}
.f-feature__toggle-text {
  color: #fff;
  font-size: 20px;
}
.f-feature__btn-icon {
  width: 22px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
img.f-feature__btn-icon {
  width: 22px;
}
.f-feature__toggle-btn.is-active, .f-feature__toggle-btn--close {
  background-color: #fff;
  border: solid 1px #E0414F;
  color: #E0414F;
}
@media (min-width: 768px) {
  .f-feature__toggle-btn--close {
    transform: unset;
    position: relative;
    left: unset;
  }
}
.f-feature__toggle-btn--close {
  display: none;
  position: absolute;
  bottom: -25px;
}
@media (min-width: 768px) {
  .f-feature__toggle-btn--close {
    position: relative;
    bottom: unset;
    /* margin-top: 50px; */
  }
}
.f-feature__toggle-btn--close.is-open {
  display: flex;
}

.f-feature__toggle-btn.is-active .f-feature__toggle-text, .f-feature__toggle-text--close {
  color: #E0414F;
}

/* f-feature__icon-down */
.f-feature__icon-down {
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  width: 130px;
}
@media (min-width: 768px) {
  .f-feature__icon-down {
    width: 188px;
  }
}
.f-feature__icon-down img {
  width: 100%;
}


.f-feature__chart01 {
  max-width: 900px;
  margin: 20px auto 0;
  padding-bottom: 10px;
  row-gap: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .f-feature__chart01 {
    max-width: calc(314 / 375 * 100vw);
    margin: 40px auto 0;
    padding-bottom: 20px;
  }
}
.f-feature__chart01-step {
  padding: 12px 10px 15px;
  font-size: 16px;
  text-align: center;
  background-color: rgba(120,220,240,0.7);
  position: relative;
}
@media (min-width: 768px) {
  .f-feature__chart01-step {
    padding: 20px 0 24px;
    font-size: 24px;
  }
}
.f-feature__chart01-step a {
  text-decoration: none;
  color: inherit;
  border-bottom: solid 4px var(--color-primary) ;
}
.f-feature__chart01-step::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 30px solid #28AAC8;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;;
  transform: translateX(-50%);
  z-index: -1;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
}
.f-feature__chart01-step:last-child::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .f-feature__accordion-sec-body:has(.f-feature__chart02) {
    padding: 0 15px;
  }
}
.f-feature__chart02 {
  margin: 20px auto 0;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 1fr);
  row-gap: max(115px, calc(115 / 375 * 100vw));
}
@media screen and (min-width: 768px) {
  .f-feature__chart02 {
    max-width: 980px;
    margin: 40px auto 0;
    padding-bottom: 20px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 0;
  }
}
.f-feature__chart02-step:nth-of-type(1) {
  grid-area: 1 / 1 / 3 / 2;
  /* margin-right: auto; */
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 3;
    /* margin-left: auto; */
  }
}
.f-feature__chart02-step:nth-of-type(2) {
  grid-area: 2 / 2 / 4 / 3;
  margin-left: min(-54px, calc(-54 / 575 * 100vw)) ;
  /* margin-left: auto; */
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 5;
    margin-left: unset;
    /* margin-inline: auto; */
  }
}
.f-feature__chart02-step:nth-of-type(3) {
  grid-area: 3 / 1 / 5 / 2;
  /* margin-right: auto; */
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(3) {
    grid-area: 1 / 5 / 2 / 7;
    /* margin-right: auto; */
  }
}
.f-feature__chart02-step:nth-of-type(4) {
  grid-area: 4 / 2 / 6 / 3;
  margin-left: min(-54px, calc(-54 / 575 * 100vw)) ;
  /* margin-left: auto; */
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(4) {
    grid-area: 2 / 2 / 3 / 4;
    margin-left: unset;
    /* margin-inline: auto 20px; */
  }
}
.f-feature__chart02-step:nth-of-type(5) {
  grid-area: 5 / 1 / 7 / 2;
  /* margin-right: auto; */
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(5) {
    grid-area: 2 / 4 / 3 / 6;
    /* margin-inline: max(20px, 0) auto; */
  }
}
.f-feature__chart02-step {
  width: max(174px, calc(174 / 375 * 100vw));
  height: max(174px, calc(174 / 375 * 100vw));
  border-radius: max(90px, calc(90 / 375 * 100vw));
  border: solid 6px rgba(120,220,240,0.7);
  box-shadow: 6px 6px 0 0 rgba(120,220,240,0.7);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step {
    /* width: 35vw; */
    /* height: 35vw; */
    width: min(230px, calc(230 / 1200 * 100vw));
    height: min(230px, calc(230 / 1200 * 100vw));
    /* min-width: 175px;
    min-height: 175px; */
    max-width: 300px;
    max-height: 300px;
    border-radius: 150px;
    font-size: 22px;
  }
}
@media screen and (min-width: 1300px) {
  .f-feature__chart02-step {
    width: min(300px, calc(300 / 1200 * 100vw));
    height: min(300px, calc(300 / 1200 * 100vw));
  }
}
.f-feature__chart02-step::after,
.f-feature__chart02-step:nth-of-type(4)::before {
  position: absolute;
  content: '';
  width: max(110px, calc(110 / 375 * 100vw));
  height: max(110px, calc(110 / 375 * 100vw));
  background: url("../img/feature/feature-img_chart-icon_01.png") no-repeat center / 100%;
  /* background-image: url("/img/feature/feature-img_chart-icon_01.png");
  background-size: cover; */
  position: absolute;
  bottom: min(-54px, calc(-54 / 375 * 100vw));
  right: min(-26px, calc(-26 / 375 * 100vw));
  transform: rotate(28deg);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step::after,
  .f-feature__chart02-step:nth-of-type(4)::before {
    width: min(120px, calc(120 / 980 * 100vw));
    height: min(21px, calc(21 / 980 * 100vw));
    bottom: max(20px, calc(20 / 980 * 100vw));
    /* right: max(-140px, calc(-140 / 980 * 100vw)); */
    transform: rotate(-15deg);
    /* background: url("/img/feature/feature-img_chart-icon_01.png") no-repeat center / 100%; */
  }
}
@media screen and (min-width: 1300px) {
  .f-feature__chart02-step::after,
  .f-feature__chart02-step:nth-of-type(4)::before {
    width: min(190px, calc(190 / 1200 * 100vw));
    height: min(33px, calc(33 / 1200 * 100vw));
    bottom: min(30px, calc(30 / 1200 * 100vw));
    right: max(-120px, calc(-120 / 1200 * 100vw));
  }
}

.f-feature__chart02-step:nth-of-type(2)::after,
.f-feature__chart02-step:nth-of-type(4)::before {
  right: max(87px, calc(87 / 375 * 100vw));
  /* transform: rotate(-213deg); */
  transform: scale(-1, 1) rotate(28deg);
}
.f-feature__chart02-step:nth-of-type(4)::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(2)::after {
    transform: rotate(15deg);
    right: max(-140px, calc(-140 / 1200 * 100vw));
  }
  .f-feature__chart02-step:nth-of-type(4)::after {
    content: '';
  }
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(4)::before {
    content: '';
    left: -100px;
    transform: rotate(15deg);
  }
  .f-feature__chart02-step:nth-of-type(3)::after {
    content: none;
  }
}
.f-feature__chart02-step:nth-of-type(5)::after {
  background-image: url("../img/feature/feature-img_chart-icon_02.png");
  width: max(162px, calc(162 / 375 * 100vw));
  height: max(93px, calc(93 / 375 * 100vw));
  transform: none;
  right: min(-150px, calc(-150 / 375 * 100vw));
  bottom: max(-10px, calc(-10 / 375 * 100vw));
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step:nth-of-type(5)::after {
    width: min(244px, calc(244 / 1200 * 100vw));
    height: min(140px, calc(140 / 1200 * 100vw));
    right: min(-170px, calc(-170 / 1200 * 100vw));
    bottom: max(-30px, calc(-30 / 1200 * 100vw));
  }
}
@media screen and (min-width: 1300px) {
  .f-feature__chart02-step:nth-of-type(5)::after {
    bottom: max(-20px, calc(-20 / 1200 * 100vw));
    right: max(-170px, calc(-170 / 1200 * 100vw));
  }
}

.f-feature__chart02-step p {
  font-size: max(12px, calc(12 / 365 * 100vw));
  line-height: calc(18 / 12);
}
@media screen and (min-width: 768px) {
  .f-feature__chart02-step p {
    font-size: min(18px, calc(18 / 1200 * 100vw));
  line-height: calc(34 / 22);
  }
}
@media screen and (min-width: 1300px) {
  .f-feature__chart02-step p {
    font-size: min(22px, calc(22 / 1200 * 100vw));
  line-height: calc(34 / 22);
  }
}

.f-feature__contents-table {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 6px;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .f-feature__contents-table {
    margin-top: 65px;    
    /* min-width: 960px; */
  }
}
.f-feature__contents-table__col>col:nth-child(1) {
  width: 27.5%;
}
@media screen and (min-width: 768px) {
  .f-feature__contents-table__col>col:nth-child(1) {
    width: 22.2%;
  }
}
.f-feature__contents-table__col>col:nth-child(2),
.f-feature__contents-table__col>col:nth-child(3)  {
  width: 36%;
}
@media screen and (min-width: 768px) {
  .f-feature__contents-table__col>col:nth-child(2) {
    width: 38%;
  }
  .f-feature__contents-table__col>col:nth-child(3)  {
    width: 40%;
  }
}

.f-feature__contents-table>thead>tr>th {
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  background-color: rgba(223, 65, 79, 0.6);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .f-feature__contents-table>thead>tr>th {
    font-size: 25px;
  }
}

.f-feature__contents-table>tbody>tr>td {
  padding: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 12px;
}
@media (min-width: 768px) {
  .f-feature__contents-table>tbody>tr>td {
    font-size: 20px;
    padding: 24px 20px 29px;
  }
}
.f-feature__contents-table>tbody>tr>td:first-child {
  font-weight: 700;
}

.f-feature__contents-table>tbody>tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.f-feature__contents-table>tbody tr:nth-child(odd)>td:first-child {
  background: rgba(223, 65, 79, 0.05);
}
.f-feature__contents-table>tbody tr:nth-child(even)>td:first-child {
  background: rgba(223, 65, 79, 0.15);
}



.f-feature__contents02 .f-feature__card01 {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: calc(15 / 375 * 100vw);
    margin-top: 20px;
}
@media (min-width: 1024px) {
  .f-feature__contents02 .f-feature__card01 {
      grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
      column-gap: 40px;
      row-gap: calc(15 / 1200 * 100vw);
      margin-top: 45px;
  }
}
.f-feature__card01-item {
  position: relative;
  margin-top: calc(28 / 375 * 100vw);
}
@media (min-width: 768px) {
  .f-feature__card01-item {
    display: flex;
    margin-top: min(44px, calc(44 / 1200 * 100vw));
  }
}
.f-feature__card01-item h6 {
  width: 80%;
  height: auto;
  background: url("../img/feature/feature-img_bg_01.png") no-repeat top / contain ;
  text-align: center;
  color: #fff;
  font-size: max(20px, calc(20 / 375 * 100vw));
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  text-shadow: #143C78 3px 0 6px;
  position: absolute;
  top: calc(-22 / 375 * 100vw);
  left: 0;
  right: 0;
  margin: auto;
  aspect-ratio: 95 / 22;
}
@media (min-width: 768px) {
  .f-feature__card01-item h6 {
    width: 380px;
    height: 88px;
    font-size: 32px;
    top: -35px;
    background: url("../img/feature/feature-img_bg_01.png") no-repeat center / contain ;
  }
}
.f-feature__card01-item p {
  padding: max(38px, calc(38 / 375 * 100vw)) max(15px, calc(15 / 375 * 100vw)) max(20px, calc(15 / 375 * 100vw));
  border-radius: 18px;
  border: #64B4E6 3px solid;
  font-size: max(12px, calc(12 / 375 * 100vw));
  line-height: 1.8;
}
@media (min-width: 768px) {
  .f-feature__card01-item p {
    padding: 65px 35px 50px;
    border-radius: 25px;
    font-size: min(22px, calc(22 / 1200 * 100vw));
    width: 100%;
  }
}


.f-feature__chart03 {
  margin-top: 20px;
  /* padding: 0 max(10px,calc(10 / 375 * 100vw)); */
}
@media (min-width: 1024px) {
  .f-feature__chart03 {
    margin-top: unset;
    padding: 0 min(50px,calc(50 / 1200 * 100vw));
  }
}
@media (min-width: 1200px) {
  .f-feature__chart03 {
    margin-top: unset;
    padding: 0 min(80px,calc(80 / 1200 * 100vw));
  }
}
.f-feature__chart03-step {
  position: relative;
  padding: 18px 0 20px;
  border-bottom: solid 16px #64B4E6;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step {
    padding: 25px 0 32px;
  }
}
.f-feature__chart03-step:not(:first-child) {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step:not(:first-child) {
    margin-top: 72px;
  }
}
.f-feature__chart03-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #B4DCFA;
  /* clip-path: polygon(60px 0, calc(100% - 60px) 0, 100% 100%, 0 100%); */
  clip-path: polygon(calc(50 / 375 * 100%) 0, calc(100% - (50 / 375 * 100%)) 0, 100% 100%, 0 100% );
  z-index: -1;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step::before {
    /* clip-path: polygon(80px 0, calc(100% - 80px) 0, 100% 100%, 0 100%); */
    clip-path: polygon(calc(80 / 1200 * 100%) 0, calc(100% - (80 / 1200 * 100%)) 0, 100% 100%, 0 100% );
  }
}
.f-feature__chart03-step h6 {
  text-align: center;
  color: #fff;
  font-size: max(18px, calc(18 / 1200 * 100vw));
  text-shadow: #143C78 3px 0 6px;
  width: calc(100% - (50 / 375 * 100% * 2));
  margin: auto;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step h6 {
    font-size: min(30px, calc(30 / 1200 * 100vw));
    width: calc(100% - (80 / 1200 * 100% * 2));
  }
}
.f-feature__chart03-step p {
  text-align: center;
  font-size: min(16px, calc(16 / 375 * 100vw));
  width: calc(100% - (35 / 375 * 100% * 2));
  margin: 10px auto 0;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step p {
    margin-top: 20px;
    font-size: min(22px, calc(22 / 1200 * 100vw));
    width: calc(100% - (80 / 1200 * 100% * 2));
  }
}
.f-feature__chart03-step p .text__ex-br {
  display: inline-block;
  margin-left: calc(-20 / 375 * 100%);
  margin-right: calc(-20 / 375 * 100%);
}
@media (min-width: 1024px) {
  .f-feature__chart03-step p .text__ex-br {
    display: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
.f-feature__chart03-step:not(:last-child)::after {
  content: '';
  position: absolute;
  background: url("../img/feature/feature-img_chart-arrow_03.png") no-repeat center / 100% ;
  width: 90px;
  height: 68px;
  bottom: -84px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .f-feature__chart03-step:not(:last-child)::after {
    width: 123px;
    height: 94px;
    bottom: -110px;
  }
}

.f-feature__point {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .f-feature__point {
    margin-top: unset;
  }
}
.f-feature__point-item h5 {
  font-size: max(20px,calc(20 / 375 * 100vw));
  font-weight: 700;
  color: #5546DC;
  font-family: "Zen Maru Gothic", sans-serif;
  width: 100%;
  /* border-bottom: solid 5px #5546DC; */
  position: relative;
  padding-left: max(66px, calc(66 / 375 * 100vw));
}
@media (min-width: 1024px) {
  .f-feature__point-item h5 {
    font-size: min(40px,calc(40 / 1200 * 100vw));
    padding-left: 130px;
  }
}
.f-feature__point-item h5::before {
  content: '';
  display: block;
  width: max(58px, calc(58 / 375 * 100vw));
  height: max(58px, calc(58 / 375 * 100vw));
  position: absolute;
  /* top: -20px; */
  bottom: max(-20px, calc(-20 / 375 * 100vw));
  left: 0;
}
@media (min-width: 1024px) {
  .f-feature__point-item h5::before {
    width: 110px;
    height: 110px;
    bottom: -30px;
  }
}

.f-feature__point-item:nth-child(1) h5:before {
  background: url("../img/feature/feature-img_point_01.png") no-repeat center / 100% ;
}
.f-feature__point-item:nth-child(2) h5:before {
  background: url("../img/feature/feature-img_point_02.png") no-repeat center / 100% ;
}
.f-feature__point-item:nth-child(3) h5:before {
  background: url("../img/feature/feature-img_point_03.png") no-repeat center / 100% ;
}
.f-feature__point-item:nth-child(4) h5:before {
  background: url("../img/feature/feature-img_point_04.png") no-repeat center / 100% ;
}
.f-feature__point-item:nth-child(5) h5:before {
  background: url("../img/feature/feature-img_point_05.png") no-repeat center / 100% ;
}
.f-feature__point-item:nth-child(6) h5:before {
  background: url("../img/feature/feature-img_point_06.png") no-repeat center / 100% ;
}

.f-feature__point-item h5::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 29px;
  width: calc(100% - 29px);
  height: 5px;
  border-radius: 3px;
  background: #5546DC;
  z-index: -1;
}
@media (min-width: 1024px) {
  .f-feature__point-item h5::after {
    left: 50px;
    width: calc(100% - 50px);
  }
}


@media (max-width: 767px) {
  .f-feature__point-item:nth-child(5) h5::before,
  .f-feature__point-item:nth-child(6) h5::before {
    top: 0;
    bottom: unset;
  }
  .f-feature__point-item:nth-child(5) h5::after,
  .f-feature__point-item:nth-child(6) h5::after {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 412px) {
  /* .f-feature__point-item:nth-child(1) h5::before, */
  .f-feature__point-item:nth-child(4) h5::before {
    top: 0;
    bottom: unset;
  }
  /* .f-feature__point-item:nth-child(1) h5::after, */
  .f-feature__point-item:nth-child(4) h5::after {
    width: 100%;
    left: 0;
  }
  /* .f-feature__point-item:nth-child(4) h5::before {
    top: 0;
    bottom: unset;
  }
  .f-feature__point-item:nth-child(4) h5::after {
    width: 100%;
    left: 0;
  } */
}

.f-feature__point-wrapper {
  padding-inline: unset;
}
@media (min-width: 1024px) {
  .f-feature__point-wrapper {
    padding-inline: 130px 0;
  }
}
@media (min-width: 768px) {
  .f-feature__point-wrapper .f-feature__accordion-text {
    line-height: calc(45 / 25);
  }
}
.f-feature__point-item .f-feature__accordion-text--bold {
  font-size: max(18px, calc(18 / 375 * 100vw));
  font-weight: 700;
}
@media (min-width: 1024px) {
  .f-feature__point-item .f-feature__accordion-text--bold {
    font-size: min(30px, calc(30 / 1200 * 100vw));
  }
}
.f-feature__point-list__wrapper {
  margin-top: 1.8em;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  row-gap: 1.8em;
}
@media (min-width: 1024px) {
  .f-feature__point-list__wrapper {
    margin-top: unset;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    row-gap: 1.8em;
  }
}
.f-feature__point-list__wrapper .f-feature__accordion-text {
  padding-block: 0;
}

.f-feature__point-list {
  grid-area: 1 / 1 / 2 / 2;
  /* position: relative; */
  /* list-style: disc; */
  padding-left: 1.2em;
  font-size: max(18px, calc(18 / 375 * 100vw));
  font-weight: 700;
  padding-left: 1.8em;
}
@media (min-width: 1024px) {
  .f-feature__point-list {
    grid-area: 1 / 1 / 2 / 2;
    font-size:  min(30px, calc(30 / 1200 * 100vw));
    padding-left: 1.2em;
  }
}
.f-feature__point-list li {
  position: relative;
  line-height: calc(24 / 18);
}
@media (min-width: 1024px) {
  .f-feature__point-list li {
    line-height: calc(45 / 30);
  }
}
.f-feature__point-list li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 0.2em;
  width: max(18px, calc(18 / 1200 * 100vw));
  height: max(18px, calc(18 / 1200 * 100vw));
  background: #000;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .f-feature__point-list li::before {
    content: "";
    position: absolute;
    left: -1.5em;
    top: 0.4em;
    width: min(28px, calc(28 / 1200 * 100vw));
    height: min(28px, calc(28 / 1200 * 100vw));
  }
}

.f-feature__point-list__wrapper img {
  grid-area: 3 / 1 / 4 / 2;
  /* position: absolute;
  top: 0;
  right: 0; */
  width: 160px;
  height: auto;
  margin: auto;
}
@media (min-width: 1024px) {
  .f-feature__point-list__wrapper img {
    grid-area: 1 / 2 / 2 / 3;
    margin-left: auto;
  }
  .f-feature__point-item:nth-child(1) .f-feature__point-list__wrapper img {
    width: min(245px,calc(245 / 1200 * 100vw));
  }
  .f-feature__point-item:nth-child(2) .f-feature__point-list__wrapper img {
    width: min(250px,calc(250 / 1200 * 100vw));
    margin-left: unset;
    margin: auto;
  }
  .f-feature__point-item:nth-child(3) .f-feature__point-list__wrapper img {
    width: min(244px,calc(244 / 1200 * 100vw));
  }
  .f-feature__point-item:nth-child(4) .f-feature__point-list__wrapper img {
    width: min(236px,calc(236 / 1200 * 100vw));
    margin-left: unset;
    margin: auto;
  }
  .f-feature__point-item:nth-child(5) .f-feature__point-list__wrapper img {
    width: min(234px,calc(234 / 1200 * 100vw));
  }
  .f-feature__point-item:nth-child(6) .f-feature__point-list__wrapper img {
    width: min(202px,calc(202 / 1200 * 100vw));
  }
}
.f-feature__point-text {
  grid-area: 2 / 1 / 3 / 2;
  font-size: 16px;
  font-weight: 500;
  /* margin-top: 1.8em; */
}
@media (min-width: 1024px) {
  .f-feature__point-text {
    grid-area: 2 / 1 / 3 / 3;
    font-size: 25px;
  }
}
.f-feature__point-item:not(:first-child) {
  margin-top: 35px;
}


.f-feature__contents03__end {
  display: unset;
  margin-top: 85px;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .f-feature__contents03__end {
    display: flex;
  }
}
.f-feature__contents03__end .f-feature__accordion-text {
  width: auto;
  padding-top: 0;
}
.f-feature__contents img.f-feature__contents03__end-image {
  width: 80%;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .f-feature__contents img.f-feature__contents03__end-image {
    width: 328px;
    margin: u;
  }
}


.f-feature__icon-follow {
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  width: 18px;
}
@media (min-width: 768px) {
  .f-feature__icon-follow {
    width: 30px;
  }
}
.f-feature__icon-follow img {
  width: 100%;
}

.f-feature__summary-wrapper {
  padding: 0 15px 20px;
}
@media (min-width: 768px) {
  .f-feature__summary-wrapper {
    padding: 48px 50px 0;
  }
}




.f-feature__contents04 .f-feature__contents-num {
  color: #fff;
  background-color: var(--color-primary);
  /* border: solid 4px #fff; */
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px var(--color-primary);
  padding-top: 3px;
}
.f-feature__contents04 .f-feature__contents-num::after {
  content: none;
}

.f-feature__summary-section01 {
  padding: 40px 15px 40px;
  background-color: #F5F5F5;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 40%);
  position: relative;
}
@media (min-width: 768px) {
  .f-feature__summary-section01 {
    padding: 55px 30px 35px;
  }
}
.f-feature__summary-section01::before,
.f-feature__summary-section01::after {
  position: absolute;
  content: '';
  width: calc(100% - 30px);
  height: 4px;
  background-image: radial-gradient(circle, #df414f 2px, transparent 2px), radial-gradient(circle, #df414f 2px, transparent 2px), radial-gradient(circle, #df414f 2px, transparent 2px), radial-gradient(circle, #df414f 2px, transparent 2px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 14px 4px;
}
@media (min-width: 768px) {
  .f-feature__summary-section01::before,
  .f-feature__summary-section01::after {
    width: calc(100% - 60px);
  }
}
.f-feature__summary-section01::before {
  top: 30px;
}
@media (min-width: 768px) {
  .f-feature__summary-section01::before {
    top: 20px;
  }
}
.f-feature__summary-section01::after{
  bottom: 20px;
}
@media (min-width: 768px) {
  .f-feature__summary-section01::after{
    bottom: 35px;
  }
}


.f-feature__summary-section01 h5 {
  font-size: 20px;
  color: #e0414f;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .f-feature__summary-section01 h5 {
    font-size: 35px;
  }
}
.f-feature__summary-section01 h5::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url("../img/feature/feature-img_bg_02.png") no-repeat center / 100%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .f-feature__summary-section01 h5::before {
    max-width: 600px;
    bottom: -40px;
  }
}
.f-feature__summary-section01__list {
  margin: 25px 15px 10px;
}
@media (min-width: 768px) {
  .f-feature__summary-section01__list {
    margin: 52px 20px 32px;
  }
}
.f-feature__summary-section01__list li h6 {
  font-size: 18px;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .f-feature__summary-section01__list li h6 {
    font-size: 25px;
  }
}
.f-feature__summary-section01__list li:not(:first-child) {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .f-feature__summary-section01__list li:not(:first-child) {
    margin-top: 1.8em;
  }
}
.f-feature__summary-section01__list li p {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .f-feature__summary-section01__list li p {
    font-size: 20px;
  }
}
.f-feature__summary-section02 {
  width: 100%;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .f-feature__summary-section02 {
    max-width: 800px;
    margin: 46px auto 0;
  }
}
.f-feature__summary-section02_content {
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .f-feature__summary-section02_content {
    padding-inline: 50px;
  }
}
.f-feature__summary-section02__list li {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(45 / 25);
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 768px) {
  .f-feature__summary-section02__list li {
    font-size: 25px;
  }
}
.f-feature__summary-section02_content p {
  margin-top: 0.5em;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 768px) {
  .f-feature__summary-section02_content p {
    font-size: 25px;
  }
}
.f-feature__summary-section02 img {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .f-feature__summary-section02 img {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  .f-feature__contents04 .f-feature__accordion-text {
    margin-top: 50px;
  }
}
.f-feature__summary-link img {
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .f-feature__summary-link:hover img {
    scale: 1.03;
  }
}


/*　\この記事が気になったら/　部分 */
.f-feature__knack-comment {
  text-align: center;
  margin-bottom: 48px;
}
.f-feature__knack-comment span {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 0 50px;
  margin: auto;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .f-feature__knack-comment span {
    max-width: 930px;
    font-size: 39px;
    line-height: calc(56 / 39);
    padding: 0 100px;
  }
}
.f-feature__knack-comment span::before, .f-feature__knack-comment span::after {
  position: absolute;
  top: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #000;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .f-feature__knack-comment span::before, .f-feature__knack-comment span::after {
    height: 100%;
  }
}
.f-feature__knack-comment span::before {
  transform: rotate(-17deg);
  left: 30px;
}
@media (min-width: 768px) {
  .f-feature__knack-comment span::before {
    left: 60px;
  }
}
.f-feature__knack-comment span::after {
  transform: rotate(17deg);
  right: 30px;
}
@media (min-width: 768px) {
  .f-feature__knack-comment span::after {
    right: 60px;
  }
}
