@charset "UTF-8";

/*---------------------------
/* コンテンツ初期設定
---------------------------*/
.main {
  overflow: auto;
	background-attachment: fixed;
}

/* パンくずリスト */
.breadcrumb {
  margin: 0 auto;
  padding: 8px 0;
}

.breadcrumb ol {
  display: flex;
  justify-content: flex-start;
}

.breadcrumb ol li {
  display: none;
  font-size: var(--f12-size);
}

.breadcrumb ol li::after {
  display: inline-block;
  content: "\003E";
  padding: 0 16px;
}

.breadcrumb ol li:last-of-type:after {
  display: none;
}

/* ページタイトル */
.headline__group {
  margin-top: 40px;
}

.headline__title {
  font-family: var(--font-mincho);
  font-weight: var(--font-medium);
  font-size: var(--f72-size);
  text-align: center;
  text-transform: uppercase;
  color: var(--color-blue);
}

.headline__subtitle {
  padding-bottom: 20px;
  font-size: var(--f18-size);
  font-weight: bold;
  text-align: center;
}

/* .intro-catch {
  margin: 40px 0 20px 0;
  font-size: var(--f28-size);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: var(--color-red);
}

.intro-caption {
  font-size: var(--f18-size);
  font-weight: bold;
  text-align: center;
} */

/* 375px〜（スマホ＆タブレット用）
---------------------------*/
@media (min-width: 375px) {
}

/* 768px〜（スマホ＆タブレット用）
---------------------------*/
@media (min-width: 768px) {
  .headline__title {
    font-size: var(--f72-size);
  }
}

/* 960px〜（タブレット＆PC用）
---------------------------*/
@media (min-width: 960px) {
  /* パンくずリスト */
  .breadcrumb {
    display: block;
    max-width: 960px;
    padding: 40px 0 0 0;
  }

  .breadcrumb ol li {
    display: block;
  }

  .headline__group {
    margin-top: 65px;
  }

  .headline__title {
    font-size: var(--f72-size);
  }
}