/* ***全体設定*** */
/* ****************** */
html, body {
  background-image: url('../img/bk3.png');
  background-repeat: repeat;
  background-attachment: scroll;
  /* margin: 0;
  height: 100%; */
}
.course-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  margin: 0 20vw;
}
@media (max-width: 768px) {
  .course-section {
    padding: 50px 0;
    margin: 0 10vw;
  }
}
/* ****************** */




/* ***タイトル*** */
.course-section, .heading-style4{
  text-align: left;
}
.heading-style4 {
  padding: 0.4em 0.7em 0.4em 0.7em;
  color: #324964;
  border-left: 35px solid #5498c0;
  background: #fffff0; 
  margin: 60px 35px 20px;
  margin-bottom: 100px;
  padding-right: 10vw;
  padding-left: 10vw;
}
@media (max-width: 900px) {
  .course-section, .heading-style4{
    text-align: center;
  }
  .heading-style4{
  margin: 60px 0 100px;
  }
}
/* ****************** */




/* ***インタビュー*** */
.interview-list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 500px 50px; */
}
@media (max-width: 1500px) {
  .interview-list-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* インタビューのカード */
.interview-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  position: relative;
}
.card-header-flex {
  display: flex;
  align-items: flex-end;
  margin-bottom: -30px;
  padding-left: 20px;
  z-index: 10;
  text-align: left;
}

/* キャラクター */
.character-image-box {
  flex: 0 0 120px;
  padding-left: 13px;
}
.card-image {
  width: auto;
  height: 120px;
  object-fit: contain;
}

/* 学年、コース名、名前 */
.student-name-box {
  flex: 1;
  padding-left: 20px;
  /* padding-bottom: 5px; */
}
.student-name {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #111;
  text-shadow: 1px 1px 2px white;
}
@media (max-width: 768px) {
  .student-name{
    font-size: 0.8rem;
  }
}

/* 付箋本体：文字の入れ物 */
.sticky-note-content {
  position: relative;
  /* width: 100%; */
  /* min-height: 500px; */
  /* padding-top を 85px から 40px 前後に減らすと文字が上に上がります */
  padding: 50px 100px 100px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  z-index: 1;
  text-align: left;
}
@media (max-width: 768px){
  .sticky-note-content{
    padding: 60px 0 100px 30px;
  }
}


/* 文字 */
.card-course-info {
  /* background-color: rgba(72, 196, 218, 0.1); */
  font-size: 0.95rem;
  line-height: 1.2;
  color: #324964;
  word-break: break-all;
}

.card-course-info strong {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.2rem;
  color: #324964;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  padding-left: 8px;
  margin-bottom: 5px;
}



/* 付箋画像の背景 */
/* .sticky-note-content::before {
  content: "";
  position: absolute;
  top: -145px;
  left: -75px;
  right: 0;
  bottom: 0;  
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
} */

/* .interview-card.computer .sticky-note-content::before {
  background-image: url('../img/in_m_com.png');
}

.interview-card.game .sticky-note-content::before {
  background-image: url('../img/in_m_game.png');
}

.interview-card.design .sticky-note-content::before {
  background-image: url('../img/in_m_design.png');
}

.interview-card.sound .sticky-note-content::before {
  background-image: url('../img/in_m_sound.png');
}
 */
/* ****************** */
