@charset "UTF-8";
/* ===================================================
　パーツごとの共通スタイル【コーポレートサイト】
=================================================== */

/*フォント*/
.mont{
  font-family: 'Montserrat', sans-serif;
}
/* 画像の中央寄せ */
.aligncenter {
  display: block;
  margin: 0 auto;
}
/* 画像 */
.wrap.corp img {
  max-width: 100%;
  height: auto;
}

/* h2-1 */
.wrap.corp h2 {
  font-size: 1.8em;
  margin-bottom: 50px;
  text-align: center;
}
.wrap.corp h2::after {
  content: '';
  width: 20px;
  height: 5px;
  background-color: #FC0D1B;
  background: linear-gradient(90deg,#FC0D1B, #9f0811);
  display: block;
  margin: 0 auto;
}
/* h2-2 */
.wrap.corp h2.h2-2 {
  font-size: 2em;
  margin-bottom: 50px;
  text-align: left;
  color: #fc0d1b;
  background: -webkit-linear-gradient(left, #fc0d1b 0%, #f70d1a 7%, #a50911 39%, #90070f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
}
.wrap.corp h2.h2-2::after {
  content: '';
  display: none;
}
@media(max-width:480px) {
  .wrap.corp h2 {
    font-size: 1.4em;
  }
}
/* h3-1 */
.wrap.corp h3 {
  font-size: 1.4em;
  text-indent: -1em;
  font-weight: bold;
  margin-bottom: 30px;
}
.wrap.corp h3::before {
  content: '';
  width: 5px;
  height: 1em;
  margin-right: 1em;
  display: inline-block;
  color: #fc0d1b;
  background: -webkit-linear-gradient(bottom, #fc0d1b 0%, #f70d1a 7%, #a50911 39%, #90070f 100%);
  background-color: #fc0d1b;
}
@media(max-width:480px) {
  .wrap.corp h3 {
    font-size: 1.2em;
  }
}
/* h3-2 */
.wrap.corp h3.h3-2 {
  font-size: 1.4em;
  text-indent: 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.wrap.corp h3.h3-2::before {
  content: '';
  display: none;
}
/* h4 */
.wrap.corp h4 {
  font-size: 1em;
  border: solid 2px #fc0d1b;
  font-weight: bold;
  padding: 0 10px;
  margin-bottom: 10px;
}
/* テキスト（中） */
.wrap.corp p {
  font-size: 1em;
}
/* PDFリンク */
.wrap.corp a.pdf {
  text-decoration: underline;
}
.wrap.corp a.pdf:hover {
  opacity: 0.7;
  text-decoration: none;
}
.wrap.corp a.pdf::after {
  content: "";
  background-image: url("../img/parts/pdf-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
/*標準リンク*/
/* 番号なしリスト */
.wrap.corp ul > li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 15px;
}
.wrap.corp ul > li::before{
  content: '●';
  vertical-align: text-bottom;
  color: #fc0d1b;
  font-size: 10px;
}
/* 番号付きリスト */
.wrap.corp ol{
  counter-reset: number;
}
.wrap.corp ol > li {
  margin-bottom: 15px;
  margin-left: 40px;
}
.wrap.corp ol > li::before {
  counter-increment: number;
  content: '0'counter(number)'.';
  font-family: 'Montserrat', sans-serif;
  width: 40px;
  display: inline-block;
  font-weight: bold;
  color: #fc0d1b;
  background: -webkit-linear-gradient(left, #fc0d1b 0%, #f70d1a 7%, #a50911 39%, #90070f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2em;
  margin-left: -40px;
}
.wrap.corp ol > li:nth-of-type(9) ~ li::before {
  content: counter(number)'.';
}
.wrap.corp table {
  padding: 3%;
}
.wrap.corp td {
  padding: 2% 3%;
}
.wrap.corp th {
  padding: 2% 3%;
}

/* ===================================================
  ショートコードスタイル
=================================================== */
.wrap .col {
  display: inline-block;
  vertical-align: middle;
}
