@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

/* =========================================
   content-header
========================================= */
.content-header {
  flex-direction: column;
  width: 100%;
  background: url("../images/header_bg-sp.png") no-repeat center center/cover;
  min-height: 220px;
  padding: 28px 16px;
}
@media (min-width: 47.9375em) {
  .content-header {
    min-height: 260px;
    background: url("../images/header_bg.png") no-repeat center center/cover;
  }
}
.content-header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.content-header__catch {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  font-size: 15px;
}
@media (min-width: 47.9375em) {
  .content-header__catch {
    font-size: calc(15px + 5 * (100vw - 768px) / 392);
  }
}
@media (min-width: 72.5em) {
  .content-header__catch {
    font-size: 20px;
  }
}
.content-header__titlerow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.content-header__title {
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  font-size: 30px;
}
@media (min-width: 47.9375em) {
  .content-header__title {
    font-size: calc(30px + 14 * (100vw - 768px) / 392);
  }
}
@media (min-width: 72.5em) {
  .content-header__title {
    font-size: 44px;
  }
}
.content-header__badge {
  display: inline-flex;
  align-items: center;
  background: #f39800;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 999px;
}
@media (min-width: 47.9375em) {
  .content-header__badge {
    font-size: 17px;
    padding: 9px 22px;
  }
}

/* =========================================
   overview (課題)
========================================= */
#overview .lead-catch {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: 22px;
  margin: 0 0 32px;
}
@media (min-width: 47.9375em) {
  #overview .lead-catch {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
#overview .lead-catch .marker {
  background: linear-gradient(transparent 65%, #ffe14d 65%);
  padding: 0 2px;
}
#overview .overview-trouble__itemlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: flex-start;
  gap: 20px 12px;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble__itemlist {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
#overview .overview-trouble-item {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble-item {
    gap: 14px;
  }
}
#overview .overview-trouble-item__image {
  flex-shrink: 0;
  line-height: 0;
}
#overview .overview-trouble-item__image img {
  width: auto;
  height: 84px;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble-item__image img {
    height: 104px;
  }
}
#overview .overview-trouble-item .text {
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
  color: #1a237e;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble-item .text {
    font-size: 17px;
  }
}

/* =========================================
   feature lead (赤字太字のリード)
========================================= */
.feature-lead {
  text-align: center;
}
.feature-lead__title {
  color: #e93817;
  font-weight: bold;
  line-height: 1.5;
  font-size: 22px;
  margin: 0 0 12px;
}
@media (min-width: 47.9375em) {
  .feature-lead__title {
    font-size: 30px;
    margin-bottom: 14px;
  }
}
.feature-lead__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 47.9375em) {
  .feature-lead__text {
    font-size: 19px;
  }
}
.feature-lead__note-mark {
  font-size: 0.6em;
  vertical-align: super;
}
.feature-lead__note {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-left: 6px;
  vertical-align: middle;
}
@media (min-width: 47.9375em) {
  .feature-lead__note {
    font-size: 14px;
  }
}

/* =========================================
   customize (カスタマイズ内容 6カテゴリ)
========================================= */
.customize {
  margin-top: 48px;
}
@media (min-width: 47.9375em) {
  .customize {
    margin-top: 64px;
  }
}
.customize__title {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  margin: 0 0 24px;
}
@media (min-width: 47.9375em) {
  .customize__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.cat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 47.9375em) {
  .cat-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.cat-card {
  display: flex;
  flex-direction: column;
}
.cat-card__box {
  border: 2px solid #e60012;
  border-radius: 12px;
  background: #fff;
  padding: 14px 12px 18px;
  text-align: center;
}
.cat-card__label {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #222;
}
@media (min-width: 47.9375em) {
  .cat-card__label {
    font-size: 20px;
  }
}
.cat-card__icon {
  display: block;
  line-height: 0;
}
.cat-card__icon img {
  width: auto;
  height: 104px;
  max-width: 100%;
}
.cat-card__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 4px;
}
.cat-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
@media (min-width: 47.9375em) {
  .cat-card__list li {
    font-size: 16px;
  }
}
.cat-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================================
   support (24時間サポート) - 画像エリア
========================================= */
#support .feature-lead {
  margin-bottom: 32px;
}
.support-image {
  max-width: 900px;
  margin: 0 auto;
}
.support-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   contact CTA (このページのみ外側の赤枠を非表示)
========================================= */
#main .board-cv {
  border: none;
}
