@charset "UTF-8";
/* ========================================
共通（ベースルール）
======================================== */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 14px;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ========================================
共通（モジュールルール）
======================================== */
.link {
  position: relative;
  display: inline-block;
}
.link::after {
  content: "";
  background: #333;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  transition: 0.2s;
}
.link:hover::after {
  width: 100%;
}

.section {
  background: #f9f9f9;
  padding: 90px 16px;
}
.section__inner {
  max-width: 960px;
  margin: 0 auto;
}
.section__head {
  margin-bottom: 2rem;
}
.section__title {
  position: relative;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}
.section__title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  border-radius: 5px;
  background: #333;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.section__sub-title {
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 1px;
  text-align: center;
}

.card {
  display: block;
}
.card__title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}
.card__img {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.card__img--w100 {
  width: 100%;
}
.card__text {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .card__text {
    text-align: left;
  }
}
/* ========================================
ヘッダー
======================================== */
.header__inner {
  max-width: 960px;
  height: 500px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}
.header__sub-title {
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2em;
}
.header__text {
  line-height: 2.5;
  font-size: 1rem;
}

/* ========================================
サービス
======================================== */
.service {
  display: grid;
  gap: 80px;
}

@media screen and (min-width: 900px) {
  .service {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
/* ========================================
実績
======================================== */
.works {
  display: grid;
  gap: 80px;
}

@media screen and (min-width: 900px) {
  .works {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
/* ========================================
フッター
======================================== */
.footer {
  padding: 30px 16px;
  text-align: center;
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */