@charset "UTF-8";

/* mv
----------------------------------------*/
.mv{
  background-color: #000;
  padding: 2.8125em 5%;
}
.mv > .inner{
  max-width: 1000px;
  margin: 0 auto;
}
.mv_maintitle{
  max-width: 500px;
  margin: 0 auto;
}
.mv_detail{
  max-width: 800px;
  margin: 1.875em auto 0;
}
.mv_detail-list{
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
.mv_detail-list dt, .mv_detail-list dd{
  font-feature-settings: "palt";
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.mv_detail-list dt{
  font-weight: 700;
}
.mv_detail-list dd{
  font-weight: 500;
}
.mv_detail-list dt:nth-of-type(odd){
  background: rgba(51,112,173,1);
}
.mv_detail-list dd:nth-of-type(odd){
  background: linear-gradient(to right, rgba(51,112,173,1),rgba(215,50,136,1));
}
.mv_detail-list dt:nth-of-type(even){
  background: rgba(51,112,173,.85);
}
.mv_detail-list dd:nth-of-type(even){
  background: linear-gradient(to right, rgba(51,112,173,.85),rgba(215,50,136,.85));
}
.mv_detail-list dt{
  width: 6em;
  padding: 0.7em 0.5em 0.7em 1em;
}
.mv_detail-list dd{
  width: calc(100% - 6em);
  padding: 0.7em 0.5em;
}
.mv_detail-list dd span{
  display: inline-block;
}

@media screen and (max-width: 767px){
  .mv_detail-list dt, .mv_detail-list dd{
    font-size: 1.4rem;
  }
}


/* lead
----------------------------------------*/
.lead{
  margin-top: 1.875em;
}
.lead p{
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .lead p{
    font-size: 1.5rem;
  }
}


/* contents
----------------------------------------*/
.contents{
  padding: 0 5%;
}
.contents .lead{
  max-width: 1000px;
  margin: 2.8125em auto 0;
}

/* seminar
----------------------------------------*/
.seminar{
  max-width: 1000px;
  margin: 2.8125em auto 6.25em;
  padding: 3.75em 2.8125em;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 5px 1px #dbccfb;
}
.seminar > .inner{
  margin-top: 3.75em;
}
.seminar > .inner:first-of-type{
  margin-top: 0;
}
.seminar_heading{
  margin-bottom: 3.75em;
  text-align: center;
}
.seminar_heading span{
  position: relative;
  font-size: 3.0rem;
  font-weight: 700;
}
.seminar_heading span::before{
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #000;
  content: "";
}
.seminar_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.seminar_list li{
  position: relative;
  width: 31.86813186813187%;
  margin-right: 2.1978021978022%;
  padding-bottom: 1.25em;
}
.seminar_list li::before{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,#0068b7,#e5004f);
  content: "";
}
.seminar_list li:nth-of-type(3n){
  margin-right: 0;
}
.seminar_list li:nth-of-type(n+4){
  margin-top: 1.875em;
}
.seminar_list li a{
  display: block;
  text-decoration: none;
  transition: 0.5s;
}
.seminar_list li a:hover{
  opacity: 0.8;
}
.seminar_list-thumb{
  width: 100%;
  overflow: hidden;
}
.seminar_list li a .seminar_list-thumb img{
  transition: 0.5s;
}
.seminar_list li a:hover .seminar_list-thumb img{
  transform: scale(1.05,1.05);
}
.seminar_list-company{
  margin-top: 0.8em;
  color: #e5004f;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.seminar_list-title{
  margin-top: 0.2em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .seminar{
    margin: 2em auto 3em;
    padding: 3em 1.5em;
  }
  .seminar_heading{
    margin-bottom: 3.4em;
  }
  .seminar_heading span{
    font-size: 2.6rem;
  }
  .seminar_heading span::before{
    width: 50px;
  }
  .seminar_list li{
    width: 100%;
  }
  .seminar_list li + li{
    margin-top: 2em;
  }
  .seminar_list-company{
    font-size: 1.7rem;
  }
  .seminar_list-title{
    font-size: 1.5rem;
  }
}


/* contact
----------------------------------------*/
.contact{
  padding: 3.75em 5%;
  background: #000;
}
.contact > .inner{
  max-width: 900px;
  margin: 0 auto;
}
.contact_heading{
  margin-bottom: 1em;
  color: #fff;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
}
.contact p{
  color: #fff;
  font-size: 2.0rem;
  line-height: 2;
  text-align: center;
}
.contact p a{
  color: #FFF;
}

@media screen and (max-width: 767px){
  .contact{
    padding: 2.5em 5%;
  }
  .contact_heading{
    margin-bottom: 0.8em;
    font-size: 2.6rem;
  }
  .contact p{
    font-size: 1.6rem;
  }
}