@charset "UTF-8";
/* --------------------------------------------------
/* 共通ページ設定
------------------------------ */
/* メインカラー */
/* フォントカラー */
/* レスポンシブブレイクポイント */
/* コンテンツを分けるマージン */
/* 要素を左右中央に配置 */
/* 要素を上下左右中央に配置 */
/* a要素上下左右中央 */
.kf-page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #313131;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
.kf-page *,
.kf-page *::before,
.kf-page *::after {
  box-sizing: border-box;
}
.kf-page img {
  max-width: 100%;
  height: auto;
  display: block;
}
.kf-page a {
  color: inherit;
  text-decoration: none;
}

.kf-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (max-width: 789px) {
  .kf-container {
    padding: 0 16px;
  }
}

.kf-section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}

.kf-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ea5514;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kf-section-title {
  font-size: clamp(22px, 3.6vw, 34px);
  font-weight: 700;
  color: #313131;
  line-height: 1.55;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  white-space: nowrap;
}
.kf-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: #ea5514;
  border-radius: 2px;
}

.kf-section-sub {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0;
}

.kf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #313131;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
}
.kf-btn--primary {
  background: #ea5514;
  color: #ffffff;
  border-color: #ea5514;
}
.kf-btn--primary:link, .kf-btn--primary:visited, .kf-btn--primary:active {
  color: #ffffff;
}
.kf-btn--primary:hover {
  background: #c74710;
  border-color: #c74710;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(234, 85, 20, 0.35);
  text-decoration: none;
}
.kf-btn--outline {
  background: transparent;
  color: #ea5514;
  border-color: #ea5514;
}
.kf-btn--outline:link, .kf-btn--outline:visited, .kf-btn--outline:active {
  color: #ea5514;
}
.kf-btn--outline:hover {
  background: #ea5514;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.kf-btn--white {
  background: #ffffff;
  color: #ea5514;
  border-color: #ffffff;
}
.kf-btn--white:link, .kf-btn--white:visited, .kf-btn--white:active {
  color: #ea5514;
}
.kf-btn--white:hover {
  background: #fff3ee;
  color: #ea5514;
  transform: translateY(-2px);
  text-decoration: none;
}
.kf-btn--white-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}
.kf-btn--white-outline:link, .kf-btn--white-outline:visited, .kf-btn--white-outline:active {
  color: #ffffff;
}
.kf-btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.kf-btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}
.kf-btn--lg {
  padding: 18px 52px;
  font-size: 18px;
}
.kf-btn--full {
  width: 100%;
}

.kf-btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.kf-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.kf-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.kf-fade--d1 {
  transition-delay: 0.1s;
}
.kf-fade--d2 {
  transition-delay: 0.2s;
}
.kf-fade--d3 {
  transition-delay: 0.3s;
}
.kf-fade--d4 {
  transition-delay: 0.4s;
}

.kf-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a110a;
}
@media screen and (max-width: 789px) {
  .kf-hero {
    min-height: 85vh;
  }
}
.kf-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/photo/021.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.kf-hero.is-loaded .kf-hero__bg {
  transform: scale(1);
}
.kf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 10, 4, 0.68) 0%, rgba(30, 14, 4, 0.5) 55%, rgba(60, 28, 8, 0.45) 100%);
}
.kf-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 130px 24px 90px;
  max-width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 789px) {
  .kf-hero__content {
    padding: 100px 20px 80px;
  }
}
.kf-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  margin-bottom: 24px;
}
.kf-hero__title {
  font-size: clamp(22px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.65;
  margin: 0 0 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.kf-hero__lead {
  font-size: clamp(14px, 1.9vw, 17px);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.95;
  margin: 0 0 40px;
}
.kf-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 789px) {
  .kf-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .kf-hero__cta .kf-btn {
    width: 100%;
    max-width: 320px;
  }
}
.kf-hero__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.kf-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kf-hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.4);
  animation: kf-scroll 1.6s ease-in-out infinite;
}
.kf-hero__corporate {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
}
.kf-hero__corporate a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: color 0.3s;
}
.kf-hero__corporate a:hover {
  color: #ffffff;
}
@media screen and (max-width: 789px) {
  .kf-hero__corporate {
    display: none;
  }
}

@keyframes kf-scroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  49% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}
.kf-intro {
  padding: 64px 0;
  background: #ffffff;
}
.kf-intro__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.kf-intro__title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #ea5514;
  line-height: 1.75;
  margin: 0 0 20px;
}
.kf-intro__text {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0 0 32px;
}
.kf-intro__corp-link {
  font-size: 14px;
  color: #ea5514;
  border-bottom: 1px solid #ea5514;
  padding-bottom: 1px;
}

.kf-choice {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto 28px;
}
@media screen and (max-width: 600px) {
  .kf-choice__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.kf-choice__note {
  text-align: center;
  font-size: 13px;
  color: #313131;
}

.kf-choice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}
.kf-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}
.kf-choice-card--featured {
  border-color: #ea5514;
}
.kf-choice-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ea5514;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.kf-choice-card__icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}
.kf-choice-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}
.kf-choice-card__sub {
  font-size: 12px;
  color: #ea5514;
  font-weight: 700;
  margin: 0 0 12px;
}
.kf-choice-card__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0 0 24px;
}

.kf-activities {
  padding: 80px 0;
  background: #ffffff;
}
.kf-activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 789px) {
  .kf-activities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .kf-activities__grid {
    grid-template-columns: 1fr;
  }
}
.kf-activities__cta {
  text-align: center;
  margin-top: 48px;
}

.kf-act-card {
  background: #fdf9f6;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  transition: 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.kf-act-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #e5ddd5;
}
.kf-act-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ddd7cf;
  flex-shrink: 0;
}
.kf-act-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.kf-act-card:hover .kf-act-card__img img {
  transform: scale(1.04);
}
.kf-act-card__body {
  padding: 20px 22px 28px;
  flex: 1;
}
.kf-act-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.kf-act-card__num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #ea5514;
  flex-shrink: 0;
  letter-spacing: 0;
}
.kf-act-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}
.kf-act-card__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0;
}

.kf-impact {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 789px) {
  .kf-impact__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.kf-impact-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kf-impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}
.kf-impact-card__head {
  background: #ea5514;
  color: #ffffff;
  text-align: center;
  padding: 22px 16px;
}
.kf-impact-card__amount {
  font-size: clamp(20px, 3.8vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
.kf-impact-card__amount-label {
  font-size: 12px;
  opacity: 0.82;
  margin-top: 4px;
  display: block;
}
.kf-impact-card__body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kf-impact-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.5;
}
.kf-impact-card__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  flex: 1;
  margin: 0 0 20px;
}

.kf-fund {
  padding: 80px 0;
  background: #ffffff;
}
.kf-fund__intro {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
}
.kf-fund__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 789px) {
  .kf-fund__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}
.kf-fund__note {
  max-width: 680px;
  margin: 28px auto 0;
  font-size: 13px;
  color: #313131;
  text-align: center;
  line-height: 1.85;
}

.kf-fund-card {
  border: 1px solid #e5ddd5;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}
.kf-fund-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ea5514;
}
.kf-fund-card:hover {
  border-color: #ea5514;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.kf-fund-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff3ee;
  color: #ea5514;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.kf-fund-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.5;
}
.kf-fund-card__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0;
}

.kf-about {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 789px) {
  .kf-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.kf-about__section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
.kf-about__lead {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0 0 24px;
}
.kf-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media screen and (max-width: 789px) {
  .kf-about__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.kf-about__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.kf-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 789px) {
  .kf-about__image {
    order: -1;
  }
}
.kf-about__image-placeholder {
  width: 100%;
  height: 100%;
  background: #e0d6cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  text-align: center;
  padding: 16px;
  min-height: 300px;
}

.kf-about-stat {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}
.kf-about-stat__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ea5514;
  line-height: 1.1;
  display: block;
}
.kf-about-stat__label {
  font-size: 12px;
  color: #313131;
  margin-top: 5px;
  display: block;
  line-height: 1.5;
}

.kf-status {
  padding: 80px 0;
  background: #ffffff;
}
.kf-status__message {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
}
.kf-status__message strong {
  color: #313131;
  font-weight: 700;
}
.kf-status__table-wrap {
  overflow-x: auto;
  max-width: 620px;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.kf-status__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.kf-status__table th {
  background: #2a2a2a;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.kf-status__table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #e5ddd5;
}
.kf-status__table tbody tr:last-child td {
  border-bottom: none;
}
.kf-status__table tbody tr:nth-child(even) td {
  background: #fdf9f6;
}
.kf-status__total {
  font-weight: 700;
  color: #ea5514;
}
.kf-status__source {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

.kf-stats {
  padding: 80px 0;
  background: #fdf9f6;
  color: #313131;
}
.kf-stats .kf-section-title {
  color: #313131;
}
.kf-stats .kf-section-title::after {
  background: #ea5514;
}
.kf-stats .kf-section-sub {
  color: rgba(49, 49, 49, 0.65);
}
.kf-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto 52px;
}
@media screen and (max-width: 600px) {
  .kf-stats__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}
.kf-stats__timeline {
  max-width: 580px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 36px;
}
.kf-stats__timeline-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(49, 49, 49, 0.5);
  margin-bottom: 20px;
}
.kf-stats__timeline-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.kf-stats__timeline-list li {
  font-size: 14px;
  color: rgba(49, 49, 49, 0.65);
  text-align: center;
}
.kf-stats__timeline-list li strong {
  display: block;
  font-size: 13px;
  color: #313131;
  font-weight: 700;
  margin-bottom: 2px;
}

.kf-stats-card {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
  transition: 0.3s ease;
}
.kf-stats-card:hover {
  border-color: #ea5514;
  background: rgba(234, 85, 20, 0.05);
}
.kf-stats-card__num {
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 700;
  color: #ea5514;
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}
.kf-stats-card__unit {
  font-size: 20px;
}
.kf-stats-card__suffix {
  font-size: 20px;
  font-weight: 700;
  vertical-align: middle;
}
.kf-stats-card__label {
  font-size: 13px;
  color: rgba(49, 49, 49, 0.65);
  line-height: 1.5;
}

.kf-reports {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-reports__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .kf-reports__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.kf-reports__more {
  text-align: center;
}

.kf-report-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kf-report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}
.kf-report-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ddd7cf;
  position: relative;
}
.kf-report-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kf-report-card:hover .kf-report-card__img img {
  transform: scale(1.04);
}
.kf-report-card__img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  text-align: center;
  padding: 16px;
}
.kf-report-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kf-report-card__date {
  font-size: 12px;
  color: #313131;
  margin-bottom: 6px;
}
.kf-report-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: #fff3ee;
  color: #ea5514;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.kf-report-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 8px;
}
.kf-report-card__excerpt {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  flex: 1;
  margin: 0 0 16px;
}
.kf-report-card__link {
  font-size: 13px;
  font-weight: 700;
  color: #ea5514;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.kf-report-card__link::after {
  content: "→";
}

.kf-future {
  padding: 80px 0;
  background: #ffffff;
}
.kf-future__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 789px) {
  .kf-future__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.kf-future-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  transition: 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.kf-future-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}
.kf-future-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #bbb5ac;
  transition: transform 0.5s ease;
}
.kf-future-card:hover .kf-future-card__bg {
  transform: scale(1.04);
}
.kf-future-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 65%, transparent 100%);
}
.kf-future-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #ffffff;
}
.kf-future-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.kf-future-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.kf-future-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
}
@media screen and (max-width: 789px) {
  .kf-future-card {
    min-height: 240px;
  }
}

.kf-methods {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-methods__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  .kf-methods__grid {
    grid-template-columns: 1fr;
  }
}
.kf-methods__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .kf-methods__opts {
    grid-template-columns: 1fr;
  }
}

.kf-methods-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 600px) {
  .kf-methods-box {
    padding: 24px 20px;
  }
}
.kf-methods-box__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5ddd5;
}
.kf-methods-box__tag {
  background: #fff3ee;
  color: #ea5514;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  flex-shrink: 0;
}
.kf-methods-box__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.kf-methods-box__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0 0 20px;
}

.kf-methods-opt {
  background: #fdf9f6;
  border-radius: 10px;
  padding: 20px;
}
.kf-methods-opt__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}
.kf-methods-opt__icon {
  color: #ea5514;
  margin-right: 6px;
}
.kf-methods-opt__desc {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin: 0 0 16px;
}

.kf-final-cta {
  padding: 80px 0;
  background: linear-gradient(130deg, #ea5514 0%, #f0722a 100%);
  text-align: center;
  color: #ffffff;
}
.kf-final-cta__title {
  font-size: clamp(20px, 3.6vw, 32px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.65;
  margin: 0 0 16px;
}
.kf-final-cta__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.95;
  max-width: 580px;
  margin: 0 auto 36px;
}
.kf-final-cta__btns {
  margin-bottom: 24px;
}
.kf-final-cta__sub {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
}
.kf-final-cta__sub a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kf-final-cta__sub a:hover {
  color: #ffffff;
}
@media screen and (max-width: 500px) {
  .kf-final-cta__btns .kf-btn-row {
    flex-direction: column;
    align-items: center;
  }
  .kf-final-cta__btns .kf-btn {
    width: 100%;
    max-width: 300px;
  }
}

.kf-faq {
  padding: 80px 0;
  background: #ffffff;
}
.kf-faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.kf-faq__cta-box {
  max-width: 760px;
  margin: 48px auto 0;
  background: #fff3ee;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}
.kf-faq__cta-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.kf-faq__cta-text {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  margin: 0 0 24px;
  line-height: 1.8;
}

.kf-faq-item {
  border-bottom: 1px solid #e5ddd5;
}
.kf-faq-item:first-child {
  border-top: 1px solid #e5ddd5;
}
.kf-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #313131;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.kf-faq-item__q:hover {
  color: #ea5514;
}
.kf-faq-item__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #ea5514;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.kf-faq-item__q-text {
  flex: 1;
  padding-right: 8px;
}
.kf-faq-item__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 3px;
}
.kf-faq-item__toggle::before, .kf-faq-item__toggle::after {
  content: "";
  position: absolute;
  background: #ea5514;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.kf-faq-item__toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.kf-faq-item__toggle::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.kf-faq-item.is-open .kf-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.kf-faq-item__ans {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.kf-faq-item__ans-inner {
  padding: 0 0 20px 42px;
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
}

.kf-bank {
  padding: 80px 0;
  background: #fdf9f6;
}
.kf-bank__inner {
  max-width: 700px;
  margin: 0 auto;
}
.kf-bank__intro {
  text-align: center;
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  line-height: 1.8;
  margin-bottom: 36px;
}
.kf-bank__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 580px) {
  .kf-bank__grid {
    grid-template-columns: 1fr;
  }
}
.kf-bank__note {
  margin-top: 24px;
  font-size: 13px;
  color: #313131;
  line-height: 1.85;
  text-align: center;
}

.kf-bank-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e5ddd5;
}
.kf-bank-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #313131;
  margin-bottom: 6px;
}
.kf-bank-card__bank-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5ddd5;
}
.kf-bank-card__org {
  font-size: 12px;
  font-weight: 700;
  color: #313131;
  margin: 0 0 10px;
}
.kf-bank-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kf-bank-card__list li {
  font-size: 14px;
  color: #313131;
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.kf-bank-card__list li strong {
  color: #313131;
  font-weight: 500;
  min-width: 76px;
  flex-shrink: 0;
  font-size: 13px;
}

.kf-trust {
  padding: 28px 0;
  background: #ffffff;
  border-top: 1px solid #e5ddd5;
}
.kf-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #313131;
}
.kf-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.kf-trust__item::before {
  content: "✓";
  color: #ea5514;
  font-weight: 700;
}

.kf-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.13);
  display: none;
  gap: 10px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 789px) {
  .kf-sticky-cta {
    display: flex;
  }
  .kf-sticky-cta .kf-btn {
    flex: 1;
    font-size: 14px;
    padding: 12px 8px;
  }
}

.kf-section-cta {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid #e5ddd5;
  text-align: center;
}
.kf-section-cta__text {
  font-size: clamp(18px, 2vw, 20px);
  color: #313131;
  margin-bottom: 20px;
}
