@charset "utf-8";
/* title *************************************************/
/* h1 ****/
.h1-styleA {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
/* h2 ****/
.h2-styleA {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
/* h3 ****/
.h3-styleA {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  box-sizing: border-box;
  border-top: solid 1px #e93d37;
  border-bottom: solid 1px #e93d37;
}
.h3-styleB {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #e93d37;
}
/* h4 ****/
.h4-styleA {
  font-size: 2.5rem;
  border-bottom: solid 1px #bebebe;
  padding-bottom: 0.25rem;
  box-sizing: border-box;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  /* h1 ****/
  .h1-styleA {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  /* h2 ****/
  .h2-styleA {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  /* h3 ****/
  .h3-styleA {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .h3-styleB {
    font-size: 1.4rem;
  }
  /* h4 ****/
  .h4-styleA {
    font-size: 2rem;
  }
}
@media screen and (max-width: 440px) {
  /* h1 ****/
  .h1-styleA {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  /* h2 ****/
  .h2-styleA {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  /* h3 ****/
  .h3-styleA {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .h3-styleB {
    font-size: 1.2rem;
  }
  /* h4 ****/
  .h4-styleA {
    font-size: 1.8rem;
  }
}

/* text *************************************************/

/* style *************************************************/
/* gradation */
.gr-yellow {
  padding: 0 0.25rem;
  background: linear-gradient(transparent 60%, #8b7f25 60%);
}
/* line */
.lbl-line {
  position: relative;
  padding: 0 1.5rem;
}
.lbl-line::after,
.lbl-line::before {
  content: "";
  bottom: 0;
  position: absolute;
  width: 1px;
  height: 105%;
  background: #2e2e2e;
}
.lbl-line::after {
  left: 0;
  transform: rotate(-20deg);
}
.lbl-line::before {
  right: 0;
  transform: rotate(20deg);
}
/* color */
.txt-colorRed {
  color: #e93d37;
}
/* em color */
.txt-colorRedEm {
  color: #e93d37;
  font-size: 1.5em;
}
/* font weight */
.txt-fontWeightNormal {
  font-weight: normal;
}
.txt-fontWeightBold {
  font-weight: bold;
}
/* font  */
.font-mon {
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  /* line */
  .lbl-line {
    padding: 0 1rem;
  }
  .lbl-line::after,
  .lbl-line::before {
    height: 100%;
  }
}
@media screen and (max-width: 440px) {
  /* em color */
  .txt-colorRedEm {
    font-size: 1.4em;
  }
}
