@charset "UTF-8";
.column-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.column-block.column-block-3col > div {
  width: calc(100% / 3 - 16px);
}

.profile-txt {
  width: 75%;
}

.profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.profile .profile-img-circular {
  width: 80px;
  height: 80px;
  display: block;
}

.profile .profile-img-circular {
  width: 80px;
  height: 80px;
  display: block;
}

.profile-img-square {
  width: 156px;
  height: 220px;
}

.profile .profile-icon {
  background-color: #000055;
  color: #fff;
  display: block;
  text-align: center;
  margin: 8px 0 4px;
  width: 64px;
  padding: 2px 0;
  border-radius: 2px;
  font-size: 1.2rem;
}



/* イベント実績をリンク化しない場合 */
.stripe {
    display: block;
    margin: 4px 0;
    padding: 24px 20px;
    color: #333333;
}

.stripe:nth-child(even)  {
    background-color: #fff;
}

.stripe:nth-child(odd) {
    background-color: #f8f8f8;
}


/* イベント実績をリンク化する場合 */
/* .stripe {
    margin: 10px 0;
}

.stripe:first-child {
    margin: 0;
}

.stripe:nth-child(even) a,
.stripe:nth-child(even) > div  {
    background-color: #fff;
}

.stripe:nth-child(odd) a,
.stripe:nth-child(odd) > div {
    background-color: #f8f8f8;
}

.stripe > a,
.stripe > div {
    text-decoration: none;
    padding: 20px;
    color: #333333;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.stripe a:hover {
    background-color: #f8f7f7;
} */



.stripe .stripe-headinge {
    font-size: 1.6rem;
}

.stripe .stripe-headinge + span {
    font-size: 1.2rem;
}

.stripe-txt {
    width: calc(70% - 10px);
}

.stripe-img{
    width: calc(30% - 10px);
}

.stripe-img img{
    width: 100%;
    margin-top: 10px;
}

.stripe-img img:first-child{
    margin-top: 0;
}

.other-card a {
    text-decoration: none;
}

.other-card p {
    margin-top: 8px;
    color: #333333;
}

@media (max-width: 768px) {
  .profile-txt {
    width: 100%;
  }

  .profile .profile-img-circular {
    width: 60px;
    height: 60px;
  }
  

  .profile .profile-icon {
    margin: 4px 0;
  }

  .column-block.column-block-3col > div {
    width: calc(50% - 10px);
    gap: 10px;
  }

  .stripe .column-block {
    flex-direction: column-reverse;
  }

  .stripe-txt {
    width: 100%;
  }

  .stripe-img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stripe-img img {
    width: calc(50% - 10px);
    height: 100%;
    margin: 0;
    display: block;
  }
}