@charset "utf-8";
/*================================================
 セミナーリスト関連スタイル
=================================================*/

/* セミナーリスト関連スタイル */
.seminar-list-wrapper {
    width: 95%;
    margin: 30px auto;
    background: #fff;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seminar-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 均等に配置 */
    padding: 0 20px;
}

.seminar-item {
    width: 48%; /* PC版では2列に表示 */
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.seminar-img-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* 画像アニメーションの保持（aタグ内なので） */
.seminar-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seminar-img-link:hover .seminar-img {
    transform: scale(1.05);
}

.seminar-details {
    padding: 20px; /* パディングを増やして余白を確保 */
}

.seminar-date {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.seminar-date i, .seminar-place i {
    color: #e91e63;
    margin-right: 5px;
}

.seminar-place {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: right;
    color: #666;
}

.seminar-apply {
    text-align: center;
    margin-top: 20px;
}

/* 申し込みボタンのアニメーション */
.apply-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 0 #c2185b;
    width: 80%;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #c2185b;
}

/* クーポン画像のアニメーション復活（aタグ内） */
.cimg {
    width: 70%;
    margin: 25px auto 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cimg:hover {
    transform: translateY(-5px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .seminar-list-container {
        justify-content: center; /* タブレットでは中央寄せ */
    }
    
    .seminar-item {
        width: 90%; /* タブレットでは1列に */
        max-width: 600px; /* 最大幅を設定 */
    }
}

@media screen and (max-width: 576px) {
    .apply-btn {
        width: 100%;
        padding: 12px;
    }
    
    .seminar-item {
        width: 100%; /* スマホではフル幅 */
    }
}

/* PICK UPセミナー関連スタイル */
.pickup-seminar-wrapper {
  width: 95%;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid #FF497E;
  display: flex;
  flex-direction: column;
}

.pickup-header {
  background: linear-gradient(45deg, #FF497E, #FF8CAE, #FF497E);
  background-size: 200% 200%;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  letter-spacing: 3px;
  animation: gradient-shift 3s ease infinite;
  border-radius: 8px 8px 0 0;
  margin: 0;
}

@keyframes gradient-shift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.pickup-header::before, .pickup-header::after {
  content: "★";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFE066;
  animation: twinkle 1.5s ease-in-out infinite alternate;
}

.pickup-header::before {
  left: 15%;
}

.pickup-header::after {
  right: 15%;
}

@keyframes twinkle {
  from {opacity: 0.5; text-shadow: 0 0 5px rgba(255, 224, 102, 0.5);}
  to {opacity: 1; text-shadow: 0 0 15px rgba(255, 224, 102, 1);}
}

.pickup-content {
  padding: 0;
  margin: 0;
}

.pickup-banner {
  width: 85%;
  margin: 20px auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pickup-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.pickup-banner:hover .pickup-img {
  transform: scale(1.05);
}

.pickup-seminar-content {
  width: 85%;
  margin: 0 auto;
}

.pickup-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF497E;
  margin-bottom: 15px;
  text-align: center;
}

.pickup-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.pickup-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 15px;
  background: #FFF0F2;
  border-radius: 10px;
}

.pickup-date, .pickup-place {
  font-size: 1.1rem;
  color: #333;
}

.pickup-date i, .pickup-place i {
  color: #FF497E;
  margin-right: 5px;
}

.pickup-apply {
  text-align: center;
  margin-top: 25px;
}

.pickup-btn {
  display: inline-block;
  background: #FF497E;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 0 #D13164, 0 5px 15px rgba(255, 73, 126, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 80%;
  max-width: 400px;
}

.pickup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  transform: skewX(-25deg);
  animation: btnShine 3s infinite;
}

.pickup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #D13164, 0 8px 20px rgba(255, 73, 126, 0.4);
}

.pickup-btn:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 #D13164, 0 1px 5px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .pickup-seminar-wrapper {
    padding: 20px;
  }
  
  .pickup-banner, .pickup-seminar-content {
    width: 95%;
  }
  
  .pickup-title {
    font-size: 1.5rem;
  }
  
  .pickup-description {
    font-size: 1rem;
  }
  
  .pickup-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .pickup-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.2rem;
  }
  
  .pickup-badge {
    font-size: 1rem;
    padding: 5px 30px;
  }
}