/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* 上の情報エリア */
.footer-info{
  width:100%;
  padding:40px 0;
  background:#fffef8;
  text-align:center;
}

/* ❗ここが重要（これを追加） */
.site-footer .site-info{
  background:#333;
  color:#fff;
  text-align:center;
  padding:15px 0;
}

.footer-first-ttl{
  font-size : 20px;
  font-weight : 600;
}
.footer-company-name{
  font-size : 18px;
  margin : 15px 0px 5px 0px;
}

/******************************
 * スマホ下部固定
 * *****************************/
/* ===== フッターCTA ===== */
#footer-cta{
  position: fixed;
  bottom: -200px; /* 最初は隠す */
  left: 0;
  width: 100%;
  background: #faf2c2;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 12px 10px;
  text-align: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

/* 表示状態 */
#footer-cta.show{
  bottom: 0;
}

/* テキスト */
.footer-cta-text{
  font-size: 18px;
  margin-bottom: 8px;
	font-weight : 600;
}

/* ボタン */
.footer-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 0px;
}

.footer-cta-buttons a{
  flex: 1;
}

.footer-cta-buttons img{
  width: 100%;
  height: auto;
  display: block;
}

/* PC少し余白 */
@media(min-width:768px){
  #footer-cta{
    display: none;
  }
}