@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: 32px;
}
@media (min-width: 47.9375em) {
  .content-header__title {
    font-size: calc(32px + 16 * (100vw - 768px) / 392);
  }
}
@media (min-width: 72.5em) {
  .content-header__title {
    font-size: 48px;
  }
}
.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 24px;
}
@media (min-width: 47.9375em) {
  #overview .lead-catch {
    font-size: 30px;
    margin-bottom: 28px;
  }
}
#overview .lead-catch .marker {
  background: linear-gradient(transparent 65%, #ffe14d 65%);
  padding: 0 2px;
}
#overview .overview__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media (min-width: 47.9375em) {
  #overview .overview__text {
    text-align: center;
    line-height: 2;
    margin-bottom: 36px;
  }
}
#overview .overview-trouble__itemlist {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble__itemlist {
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
#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 {
    width: calc((100% - 48px) / 3);
    gap: 14px;
  }
}
#overview .overview-trouble-item__image {
  flex-shrink: 0;
  line-height: 0;
}
#overview .overview-trouble-item__image img {
  width: auto;
  height: 88px;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble-item__image img {
    height: 104px;
  }
}
#overview .overview-trouble-item .text {
  line-height: 1.6;
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 47.9375em) {
  #overview .overview-trouble-item .text {
    font-size: 19px;
  }
}
#overview .overview-trouble-item .text span {
  font-weight: bold;
  color: #e93817;
}

/* =========================================
   delivery
========================================= */
#delivery .delivery__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (min-width: 47.9375em) {
  #delivery .delivery__text {
    text-align: center;
    line-height: 2;
    margin-bottom: 48px;
  }
}
#delivery .delivery__itemlist {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 47.9375em) {
  #delivery .delivery__itemlist {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 100%;
  }
}
#delivery .delivery__item {
  margin: 0;
  width: 100%;
}
@media (min-width: 47.9375em) {
  #delivery .delivery__item {
    width: calc((100% - 48px) / 3);
  }
}
#delivery .delivery__image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  line-height: 0;
  height: 210px;
}
#delivery .delivery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#delivery .delivery__image--map img {
  object-fit: contain;
}
#delivery .delivery__item figcaption {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #555;
}

/* =========================================
   flow diagram
========================================= */
#flow .flow__diagram {
  margin: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 24px 16px;
  overflow-x: auto;
}
@media (min-width: 47.9375em) {
  #flow .flow__diagram {
    padding: 40px;
  }
}
#flow .flow__diagram img {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
  margin: 0 auto;
}

/* =========================================
   service scope
========================================= */
#scope {
  padding-top: 8px !important;
}
@media (min-width: 47.9375em) {
  #scope {
    padding-top: 24px !important;
  }
}
#scope .scope__title {
  font-size: 22px;
  margin-bottom: 28px;
}
@media (min-width: 47.9375em) {
  #scope .scope__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
#scope .scope__title::after {
  width: 48px;
  height: 3px;
  margin-top: 10px;
}
#scope .scope__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 47.9375em) {
  #scope .scope__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
#scope .scope__list li {
  background-color: #fffdf2;
  border: 2px solid #1a237e;
  border-radius: 10px;
  color: #1a237e;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  padding: 16px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 47.9375em) {
  #scope .scope__list li {
    font-size: 17px;
    padding: 20px 12px;
  }
}

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