@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
  display: flex;
  flex-wrap: wrap;
}
.flexA {
  justify-content: space-around;
}
.flexB {
  justify-content: space-between;
}
.flexC {
  justify-content: center;
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.en {
  font-family: 'Noto Serif JP', serif;
}
.headLine01 {
  margin-bottom: 38px;
  font-size: 4.5rem;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.025em;
  line-height: 1;
  text-align: center;
}
.headLine01 span {
  margin-top: 19px;
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0;
}
/*  comBtn  */
.comBtn a {
  margin: 0 auto;
  padding: 10px 20px;
  width: 250px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #7E7AC6;
  border-radius: 30px;
  box-sizing: border-box;
}
.comBtn a::before {
  margin: 0 7px -2px;
  width: 21px;
  height: 16px;
  display: inline-block;
  content: "";
  background: url("../../img/index/letter_img.png") no-repeat left center/21px;
}
.comBtn a img {
  margin-right: 7px;
  width: 20px;
}
.comBtn a:hover {
  opacity: 0.7;
}
@media all and (max-width: 896px) {
  .headLine01 {
    margin-bottom: 36px;
    font-size: 3.5rem;
  }
  .headLine01 span {
    margin-top: 16px;
    font-size: 1.5rem;
  }
  .comBtn a {
    padding: 18px 20px;
    width: 250px;
    height: 60px;
  }
}
@media all and (max-width: 374px) {
  .comBtn a {
    width: 220px;
  }
}