/* =============================================
ボタン用全面リンク
============================================= */
.el_blocklink{
  position: relative;
}
.el_blocklink a{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
} 
/* =============================================
シンプルなボタン
============================================= */
.el_btn{
  max-width: 300px;
  height: 50px;
  margin-left: auto;
  background-color: #5B4C49;
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
.el_btn::after{
  content: "";
  width: 25px;
  height: 1px;
  background-color: white;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 960px) {
  .el_btn{
    margin-top: 10px;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
}

/* =============================================
ドロップシャドウ
============================================= */
.el_dropshadowBox{
  box-shadow: 0 3px 21px rgba(184, 194, 214, 0.16);
  background-color: white;
} 

/* =============================================
メインタイトル
============================================= */
.el_mainTtl{
  text-align: center;
  margin-bottom: 60px;
}
.el_mainTtl_en{
  margin-bottom: 23px;
  padding-bottom: 5px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #A98045;
  position: relative;
  display: block;
}
.el_mainTtl_en::after{
  content: "";
  width: 100px;
  height: 1;
  border-bottom: 1px solid #A98045;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.el_mainTtl h2{
  font-size: 35px;
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 560px) {
  .el_mainTtl{
    margin-bottom: 40px;
  }
  .el_mainTtl h2{
    font-size: 30px;
  }
  .el_mainTtl_en{
    margin-bottom: 15px;
  }
  
}

/* =============================================
チェックリスト
============================================= */
.el_checkList{
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 10px;
}
.el_checkList ul{
  display: inline-block;
}
.el_checkList li{
  margin-bottom: 13px;
  padding-left: 26px;
  position: relative;
  line-height: 1;
  font-size: 14px;
}
.el_checkList li::before{
  width: 19px;
  height: 19px;
  content: "";
  background: url(../img/check.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}