/*
Theme Name: training
Theme URI: https://gymgym.net/
Description: Gymgymサイト用training WordPressテーマ
Text Domain: gymgym
*/
@charset "UTF-8";
.program{
  position: relative;
  padding: 80px 24px 70px;
  color: #fff;
  background: url("../img/program/program_bg.webp") center/cover no-repeat;
  overflow: hidden;
}
.program_inner{
  position: relative;
  z-index:1;
  width: min(90%, 1200px);
  margin: 0 auto;
}
.program_cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.program_card a{
  display:flex;
  flex-direction:column;
  height:100%;
  background: rgba(255,255,255,.95);
  color:#1f2c5c;
  text-decoration:none;
  overflow:hidden;
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  transition: transform .4s ease, box-shadow .4s ease;
}
.program_card a:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.program_img img{
  width:100%;
  display:block;
}
.program_body{
  flex: 1;
  padding: 20px 18px 24px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
}
.program_ttl{
  font-size:18px;
  font-weight:700;
  color:#f2b705;
  margin-bottom:8px;
}
.program_desc{
  font-size:14px;
  color:#444;
  line-height:1.6;
}

@media (max-width: 768px){
  .program{
    background: url("../img/program/program_bg_sp.webp") center/cover no-repeat;
    padding: 10% 0;
  }
  .program_body {
    display: block;
  }
  .program_cards{
    grid-template-columns: repeat(1, 1fr);
    gap:18px;
    padding-bottom: 5%;
  }
  .program_ttl{
    font-size: 25px;
  }
  .program_desc{
    font-size:18px;
  }
}