@charset "UTF-8";



/* **********************************
 *  共通パーツ
 * ********************************* */

.pg_header{
  margin-bottom: 20px;
}

@media only screen and (max-width:767px){  
  .pg_header {
    margin-bottom: 10px;
  }
}


/* **********************************
 *  見出し
 * ********************************* */
.tt1 {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.4;
  font-weight: 700;
}

.tt2{
  font-size: 20px;
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
  background-image: url('/img/tt2_bg.png');
  background-repeat: repeat-y;
  background-size: auto;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 54px;
}
.tt2 em{
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
}


@media only screen and (max-width:767px){
  .tt1 {
    font-size: 16px;
  }
}


/* **********************************
 *  余白用のクラス
 * ********************************* */
.mb10{
  margin-bottom: 10px !important;
}
.mb20{
  margin-bottom: 20px !important;
}
.mb30{
  margin-bottom: 30px !important;
}
.mb40{
  margin-bottom: 40px !important;
}
.mb50{
  margin-bottom: 50px !important;
}
.mb60{
  margin-bottom: 60px !important;
}

@media only screen and (max-width:1023px){
  
}
@media only screen and (max-width:767px){
  
  .tt2{
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .mb10{
    margin-bottom: 10px !important;
  }
  .mb20{
    margin-bottom: 15px !important;
  }
  .mb30{
    margin-bottom: 20px !important;
  }
  .mb40{
    margin-bottom: 20px !important;
  }
  .mb50{
    margin-bottom: 25px !important;
  }
  .mb60{
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width:374px){
  
}



/* **********************************
 *  リンクボタン
 * ********************************* */
.link_1{
  max-width: 420px;
  font-size: 15px;
  padding: 13px;
  margin: 50px auto 0;
  display: block;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  border-radius: 29px;
  background: #ffffff;
  border: 1px solid;
}
.link_1:before{
  content: "";
  width: 100%;
  height: 100%;
  background: url(/img/link_1_bg.jpg);
  border-radius: 29px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
}
.link_1:after{
  font-size: 15px;
  content: "\f138";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.link_1 a{
  display: block;
}