@charset "UTF-8";
/* introduction.html 固有スタイル */

/*---------------------------------
ページヒーロー 背景画像
---------------------------------*/

.page_hero--introduction {
  background-image: url(../../images/introduction/hero.jpg);
}

/*---------------------------------
ワイド画像ブロック
---------------------------------*/

.intro_wide_img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.intro_wide_img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .intro_wide_img img {
    height: 240px;
  }
}

/*---------------------------------
キャッチコピーブロック
---------------------------------*/

.intro_catchcopy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.intro_catchcopy h3 {
  font-size: 1.6rem;
  color: var(--base_color);
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}

.intro_catchcopy p {
  color: #555;
  line-height: 1.9;
}
