@charset "UTF-8";

.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

h2,h3{
  font-size: 1.25rem;
}

h2{
  margin: 4rem 0 1rem 0;
}

h3{
  margin: 0 0 0.5rem 0;
}

p{
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.seminardetail table{
  font-size: 1rem;
  line-height: 1.7;
}

.l-section img{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.speakers{
  margin-left: 1rem;
}

.profile {
  display: flex;
  justify-content: space-between;
}

.profile_txt{
  width: calc(100% - 160px);
}

.profile_img{
  width: 140px;
  margin-left: 20px;
}

.seminar_link:hover{
  opacity: .8;
}

.seminar-btnbox a{
  color: #fff;
  box-shadow: 4px 4px #ccc; 
}

.seminar-btn{
  margin: 3rem 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding:1rem 2rem; 
  background: #c0153f;
  border-radius:5px;
  font-weight: bold;
  font-size: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.minute{
  margin:0 1rem 0 0;
  padding: 0.25rem 0.5rem;
  vertical-align: middle;
  background: #fff;
  border-radius:1rem;
  font-size: 0.9rem;
  font-weight: normal;
  color: #c0153f;
}

.arrow{
  margin:0 0 0 1rem;
  padding: 0 0.5rem;
  vertical-align: middle;
  background: #fff;
  border-radius:1rem;
  font-size: 1.3rem;
  color: #c0153f;
}

.seminar-btnbox a:hover{
  box-shadow: 0 0 #ccc; 
}

a:hover{
  text-decoration: none;
}

.font-size12 {
  font-size: 0.75rem;
}

.link_arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.link_arrow:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #c0153f;
  border-right: solid 2px #c0153f;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/* ========== ボタンを光らせる ここから ========== */
.seminar-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,.3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.seminar-btn:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/* ========== ボタンを光らせる ここまで ========== */


@media (max-width: 1200px) {
 }

@media (max-width: 768px) {
  .profile {
    display: block;
  }
  .profile_txt{
    width: 100%;
  }
  .profile_img{
    margin: 20px  auto 0;
  }
}

@media (max-width: 620px) {
}
