@charset "utf-8";
/* CSS Document */
/*ページタイトル*/
.header-subtitle {
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #1e5a96;
}
.color_2a7ab5 {
  color: #2a7ab5;
}

.intro-section {

    padding: 25px 20px 25px 20px;
    background-color: #f9fbfd;
	font-size: 15px;
  border-left: 4px solid #2a7ab5;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/*研修スケジュール*/
.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1e5a96;
  border-bottom: 2px solid #1e5a96;
  padding-bottom: 10px;
}
.schedule-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
table {
  border-collapse: collapse;
  margin-bottom: 30px;
  align-items: center;
}

th, td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: left;
font-weight: bold;
}
th {
  background-color: #f0f4f9;
  color: #1e5a96;
  font-weight: bold;
  text-align: center;
}


.link-btn a {
  display: inline-block;
  background-color: #2a7ab5;
  color: #FFFFFF;
  padding: 0.5px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  margin-left: 8px;
  transition: background 0.3s;
}
.link-btn a:hover {
  background-color: #1e5a96;
}
.pamphlet {
  background-color: #f0f4f9;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  width: 60%;
}
.pdf-link {
  display: inline-flex;
  align-items: center;
  background-color: #d32f2f;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 15px;
  transition: transform 0.5s ease;
}
.pdf-link:link, .pdf-link:visited {
  color: #FFFFFF;
}
.pdf-link:hover {
  text-decoration: none;
  background-color: #E24545;
  transform: scale(1.05);
}
.pdf-badge {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 0.5em;
}
/*本研修シリーズで学べること*/
.learning-intro {
  background-color: #f0f4f9;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  font-weight: bold;
}
.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.learning-card {
  width: 300px;
  padding: 20px;
  background-color: #f9fbfd;
  border-left: 4px solid #2a7ab5;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.learning-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.learning-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e5a96;
  margin-bottom: 10px;
}
.learning-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.image-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.image-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.image-placeholder {
  width: 100%;
  height: 160px;
  background-color: linear-gradient(135deg, #e8f0f7 0%, #f0f4f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5a96;
  font-size: 14px;
  font-weight: 600;
}
/*参加者の声*/
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}
.voice-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f4f9;
}
.voice-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url("../images/icon_pict.gif");
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.voice-name {
  font-weight: 600;
  color: #1e5a96;
  font-size: 16px;
  margin-bottom: 3px;
}
.voice-company {
  font-size: 13px;
  color: #666;
}
.voice-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
/*スクロールボタン用*/
#first-section-title {}
#second-section-title{}
/*↑のidはスクロール箇所の指定用（HTML上）に作成。*/


.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 70px;
  width: 70px;
  height: 70px;
  background-color: #2a7ab5;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.scroll-top-btn.show {
    display: flex; 
}

.scroll-top-btn:hover {
  background: #1e5a96;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.scroll-top-btn::before {
  content: "▲";
  font-size: 16px;
  margin-bottom: 2px;
}