/* =============================================
ヘッダー
============================================= */
.bl_pcHeader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.ly_header_logoArea{
width: 100%;
height: 93px;
top: 0;
position: relative;
text-align: center;
border-bottom: 1px solid #E4E4E4;
}
.ly_header_logo{
  height: 90px;
  margin: 0 auto;
  width: 210px;
  display: flex;
  align-items: center;
}
.ly_header_btnArea{
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: baseline;
}
.ly_header_btn{
  width: 180px;
  height: 93px;
  position: relative;
}
.ly_header_btn img{
  height: 100%;
}
.ly_header_btn p{
  line-height: 1.4;
  font-weight: 400;
}
.ly_header_btn span{
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  line-height: 2;
  font-weight: 400;
}
.ly_header_naviArea a{
  color: #3E3E3E;
}
.ly_header_naviList{
  padding: 15px 0;
  width: 770px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
}
.bl_spHeader{
display: none;
}
.bl_globalNavi{
  display: flex;
}
@media screen and (max-width: 1200px) {
  .ly_header_logo{
    margin-left: 20px;
  }
}
@media screen and (max-width: 560px) {
}

/* =============================================
ハンバーガー
============================================= */
.bl_spHeader{
  width: 100%;
  height: 76px;
  background-color: white;
  position: fixed;
  z-index: 10;
}
.el_header_logo{
  padding-left: 15px;
  width: 220px;
  height: 76px;
  display: flex;
  align-items: center;
}
/* ハンバーガーメニューボタン */
.hamburger{
  width: 76px;
  height: 76px;
  position: fixed;
  top: 0;
  right: 0;
}

/* メニュー背景 */
nav.globalMenuSp {
padding: 15px 25px;
position: fixed;
top  : 0;
left : 0;
background: white;
text-align: center;
width: 100%;
height: 100%;
display: block;
opacity: 0;
transition: all 0.6s;
z-index : -2;
pointer-events: none;
}

/* クリックでjQueryで追加・削除 */
.globalMenuSp.active {
  display: block;
  opacity: 1;
  z-index : 10;
  pointer-events: inherit;
}
nav.globalMenuSp ul {
margin: 50px auto 50px;
width: 100%;
position: relative;
}
nav.globalMenuSp li {
width: 100%;
padding: 1rem 0;
transition: .4s all;
font-size: 15px;
}
nav.globalMenuSp li:last-child {
padding-bottom: 0;
}
nav.globalMenuSp li:hover{
background :#ddd;
}
.bl_humbueger_activlogo{
  width: 210px;
  margin: 0 auto;
}

/* 閉じるボタン */
.bl_humbueger_close{
  width: 40px;
  top: 15px;
  right: 25px;
}
.globalMenuSp ul{
  margin-bottom: 55px;
}
.globalMenuSp a{
  color: #3E3E3E;
}
.globalMenuSp .bl_spmenu_sns{
  margin-top: 0px;
}
.globalMenuSp li{
  text-align: left;
  border-bottom: 1px solid #E4E4E4;
}
.bl_spmenu_btn{
  margin-bottom: 20px;
}
/* メニュー展開中スクロール禁止 */
body.fixed {
width: 100%;
height: 100%;
position: fixed;
}
.bl_spmenu_nav{
  max-width: 500px;
}
.bl_spmenu_btn{
  margin-right: auto;
  margin-left: auto;
  max-width: 350px;
  height: 42px;
}
.bl_spmenu_sns{
  display: flex;
  justify-content: center;
  gap: 25px;
}
.globalMenuSp  .bl_spmenu_sns li{
  width: 20px;
  border: none;
}
@media screen and (max-width: 960px) {
  .bl_pcHeader{
  display: none;
  }
  .bl_spHeader{
  display: block;
  }
}
@media screen and (max-width: 560px) 
{
}

/* =============================================
フッター
============================================= */
.ly_footer{
  background-color: #F0F5F5;
}
.bl_footer{
  margin: 0 auto;
  padding: 50px 100px 30px 50px;
}
.bl_footer_cont{
  display: flex;
  justify-content: space-between;
}
.bl_footer_logoArea{
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  justify-content: center;
  gap: 35px;
}
.bl_footerLogo_1{
  width: 120px;
}
.bl_footerLogo_2{
  width: 113px;
}
.bl_footerLogo_3{
  width: 110px;
}
.bl_footer_navi{
  width: 65%;
  max-width: 800px;
}
.bl_footer_navi ul,
.bl_footer_btnArea{
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.bl_footer_navi_menu{
  margin-bottom: 70px;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.bl_footer_navi_menu a{
  color: #3E3E3E;
  font-size: 15px;
}
.bl_footer_btnArea{
  margin-bottom: 80px;
  justify-content: right;
  gap: 20px;
}

.bl_footer_btn{
  width: 180px;
  height: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: 1px solid #5B4C49;
  position: relative;
}
.bl_footer_btn::after,
.bl_footer_btn__contact::after{
  content: "";
  width: 25px;
  height: 1px;
  background-color: #5B4C49;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.bl_footer_btn__contact::after{
  background-color: white;
}
.bl_footer_btn__contact{
  background-color: #5B4C49;
  color: white;
}
.bl_copyright{
  padding: 15px;
  background-color: #3E3E3E;
  color: white;
  font-size: 12px;
}
.bl_footer_subArea{
  display: flex;
  justify-content: right;
  gap: 0 40px;
}
.bl_footer_subArea ul{
  margin-left: 0;
  gap: 0 35px;
  justify-content: right;
}
.bl_footer_subArea a{
color: #969696;
font-size: 11px;
}
@media screen and (max-width: 960px) {
  .bl_footer{
    padding: 80px 20px 50px;
  }
  .bl_footer_cont{
    display: block;
  }
  .bl_footer_btnArea,
  .bl_footer_subArea ul{
    justify-content: center;
  }
  .bl_footer_logoArea{
    margin: 0 auto;
    width: 330px;
  }
  .bl_footer_navi{
    margin-top: 50px;
    width: 100%;
  }
  .bl_footer_navi_menu{
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  .bl_footer_navi_menu li{
    width: 40%;
  }
  .bl_footer_btn{
    width: 100%;
    max-width: 300px;
  }
  .bl_footer_subArea{
    display: block;
  }
  .bl_footer_subArea_txt{
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  .bl_footer_navi_menu{
    width: 100%;
    gap: 30px 0;
    justify-content: space-evenly;
  }
  .bl_footer_subArea_long{
    width: 50%;
  }
}

/* =============================================
インナーコンテンツ
============================================= */
.ly_inner{
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  max-width: 1300px;
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 560px) {
  .ly_inner{
    width: 90%;
  }
}
/* =============================================
幅大きいコンテンツ
============================================= */
.ly_w100{
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}
/* =============================================
ボーダーつき余白
============================================= */
.ly_border_cont{
    border-top: 1px solid #E4E4E4;
    padding-top: 100px;
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 560px) {
  .ly_border_cont{
    padding-top: 60px;
  }
}

