@charset "UTF-8";

.fukuri-content {
  padding: 78px 0 110px;
  color: #384355;
  background: #fff;
}

.fukuri-content .re-container {
  max-width: 1240px;
}

.fukuri-content .c-rettl01 {
  margin-bottom: 48px;
}

.fukuri-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 86px;
}

.fukuri-feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
  padding: 28px 30px 0;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(57, 67, 83, .08);
}

.fukuri-feature-card__body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fukuri-feature-card--coral { border-top: 5px solid #ff898d; }
.fukuri-feature-card--orange { border-top: 5px solid #ffc174; }

.fukuri-feature-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.fukuri-feature-card--coral .fukuri-feature-card__number { color: #ff898d; }
.fukuri-feature-card--orange .fukuri-feature-card__number { color: #e7a248; }

.fukuri-feature-card h3 {
  margin: 2px 0 14px;
  color: #384355;
  font-size: 23px;
  line-height: 1.4;
}

.fukuri-feature-card p {
  margin: 0;
  color: #596271;
  font-size: 15px;
  line-height: 1.9;
}

.fukuri-feature-card__image {
  width: calc(100% + 60px);
  margin: 0 -30px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: #f4f1ed;
}

.fukuri-feature-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.fukuri-section + .fukuri-section { margin-top: 76px; }

.fukuri-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  color: #2b426e;
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
}

.fukuri-section-title::before,
.fukuri-section-title::after {
  display: block;
  flex: 1;
  height: 1px;
  background: #8eb3be;
  content: "";
}

.fukuri-section-title--coral { color: #ff898d; }
.fukuri-section-title--coral::before,
.fukuri-section-title--coral::after { background: #ffadb1; }

.fukuri-system-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fukuri-system-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #dcebed;
  border-radius: 10px;
  background: #f7fbfb;
  color: #384355;
  font-size: 16px;
  line-height: 1.5;
}

.fukuri-system-item strong { font-weight: 700; }
.fukuri-system-item__copy { display: flex; flex-direction: column; gap: 2px; }
.fukuri-system-item__copy > span { color: #68717d; font-size: 13px; }

.fukuri-item-pictogram {
  display: block;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #2f6370;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fukuri-holiday-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fukuri-holiday-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #f8dadd;
  border-radius: 10px;
  background: #fff8f9;
  color: #384355;
  font-size: 14px;
  line-height: 1.5;
}

.fukuri-holiday-item .fukuri-item-pictogram {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  color: #ff7279;
}

@media only screen and (max-width: 900px) {
  .fukuri-feature-grid { grid-template-columns: 1fr; }
  .fukuri-holiday-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media only screen and (max-width: 767px) {
  .fukuri-content { padding: 52px 0 72px; }
  .fukuri-content .c-rettl01 { margin-bottom: 30px; }
  .fukuri-feature-grid { gap: 14px; margin-bottom: 56px; }
  .fukuri-feature-card { gap: 20px; padding: 20px 16px 0; }
  .fukuri-feature-card__body { gap: 14px; }
  .fukuri-feature-card__number { flex-basis: 46px; width: 46px; height: 46px; font-size: 14px; }
  .fukuri-feature-card h3 { margin: 0 0 8px; font-size: 18px; }
  .fukuri-feature-card p { font-size: 13px; line-height: 1.75; }
  .fukuri-feature-card__image { width: calc(100% + 32px); margin: 0 -16px; border-radius: 0 0 12px 12px; }
  .fukuri-section + .fukuri-section { margin-top: 52px; }
  .fukuri-section-title { gap: 10px; margin-bottom: 18px; font-size: 23px; }
  .fukuri-system-list { grid-template-columns: 1fr; }
  .fukuri-system-item { min-height: 0; padding: 12px 14px; font-size: 13px; }
  .fukuri-system-item__copy > span { font-size: 11px; }
  .fukuri-holiday-list { gap: 8px; }
  .fukuri-holiday-item { gap: 8px; min-height: 64px; padding: 10px; font-size: 12px; }
  .fukuri-holiday-item .fukuri-item-pictogram { flex-basis: 30px; width: 30px; height: 30px; }
  .fukuri-pc-only { display: none; }
}

@media only screen and (max-width: 420px) {
  .fukuri-holiday-list { grid-template-columns: 1fr; }
}
