/* ==========================================================================
   Common Components
   ========================================================================== */
.c-inline-block {
  display: inline-block;
}

.c-image,
.c-image-image {
  display: block;
  height: auto;
  width: 100%;
}

.c-heading {
  align-items: center;
  color: #ffd790;
  display: flex;
  flex-direction: column;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  justify-content: center;
  line-height: 1.6;
  overflow: visible;
  padding: 48px 0;
  position: relative;
  text-align: center;
  z-index: 1;
}

.section-label--navy {
   color: #13294b;
}

.c-heading::before,
.c-heading::after {
  aspect-ratio: 102/142;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
}

.c-heading::before {
  background-image: url(../images/component/heading-decoration_top.png);
  background-position: 8.695% top;
  -webkit-mask-image: linear-gradient(180deg, #000 40px, transparent 0);
  mask-image: linear-gradient(180deg, #000 40px, transparent 0);
}

.c-heading::after {
  background-image: url(../images/component/heading-decoration_bottom.png);
  background-position: right 8.695% bottom;
  -webkit-mask-image: linear-gradient(0deg, #000 40px, transparent 0);
  mask-image: linear-gradient(0deg, #000 40px, transparent 0);
}

.c-heading__text {
  display: inline-block;
  line-height: 120%;
}

@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 28px;
    line-height: 1.2;
    padding: 29px 0;
  }

  .c-heading::after {
    -webkit-mask-image: linear-gradient(0deg, #000 26px, transparent 0);
    mask-image: linear-gradient(0deg, #000 26px, transparent 0);
  }

  .c-heading::before {
    -webkit-mask-image: linear-gradient(180deg, #000 26px, transparent 0);
    mask-image: linear-gradient(180deg, #000 26px, transparent 0);
  }

  .c-drop-shadow {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
  }
}
