@charset "UTF-8";

/* mv
----------------------------------------*/
.mv{
  position: relative;
  background: url(../img/bg-mv.jpg) no-repeat center bottom;
  background-size: cover;
}
.mv::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url(../img/triangle01.svg) no-repeat center;
  background-size: cover;
  content: "";
}
.mv::after{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62px;
  height: 62px;
  background: url(../img/triangle03.svg) no-repeat center;
  background-size: cover;
  content: "";
  z-index: 30;
}
.mv-inner{
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
  background: url(../img/mv-image.png) no-repeat right center;
  background-size: cover;
  z-index: 10;
}
.mv-inner::before{
  position: absolute;
  top: 0;
  right: -75px;
  width: 75px;
  height: 75px;
  background: url(../img/triangle02.svg) no-repeat center;
  background-size: cover;
  content: "";
  z-index: 20;
}
.mv-text{
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  animation: fadeIn 3.0s;
}
.mv-text_title{
  max-width: 560px;
}
.mv-text_title span{
  display: block;
}
.mv-text_title .review{
  width: 21.5%;
  margin-top: 20px;
}
.mv-text_detail{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 600px;
  margin-top: 35px;
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
}
.mv-text_detail dt{
  width: 100px;
  margin-top: 5px;
  padding: 7px;
  background-color: #003e70;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.mv-text_detail dd{
  width: calc(100% - 60px);
  margin-top: 5px;
  padding-left: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.mv-text_detail dd small{
  font-size: 80%;
}
.mv-text_detail dd span{
  display: inline-block;
}

@media screen and (max-width: 1100px){
  .mv::before{
    width: 60px;
    height: 60px;
  }
  .mv-inner{
    height: min(50vw, 500px);
    background: url(../img/mv-image.png) no-repeat center;
    background-size: cover;
  }
  .mv-text{
    width: min(60vw, 600px);
    height: auto;
    margin: 0;
    padding-left: 3%;
  }
  .mv-text_title .review{
    margin-top: 15px;
  }
  .mv-text_title .sub{
    margin-top: 15px;
  }
  .mv-text_detail{
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px){
  .mv::before{
    z-index: 20;
  }
  .mv::after{
    width: 40px;
    height: 40px;
  }
  .mv-inner{
    display: block;
    height: auto;
    background: none;
  }
  .mv-text{
    position: relative;
    width: 100%;
    padding: 40% 3% 30px;
  }
  .mv-text::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 40%;
    background: url(../img/mv-image-sp.png) no-repeat center;
    background-size: cover;
    content: "";
  }
  .mv-text_title{
    margin-top: 30px;
  }
  .mv-text_detail{
    margin-top: 15px;
  }
  .mv-text_detail dt{
    padding: 5px;
    font-size: 1.3rem;
  }
  .mv-text_detail dd{
    font-size: 1.4rem;
  }
}


/* lead
----------------------------------------*/
.lead{
	padding: 40px 5%;
  background: url(../img/bg-lead.jpg) no-repeat center top;
  background-size: cover;
}
.lead-inner{
	max-width: 800px;
	margin: 0 auto;
}
.lead-inner p{
	font-size: 1.6rem;
	line-height: 1.6;
}
.lead-inner .lead-catch{
  margin-bottom: 20px;
  font-feature-settings: "palt";
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.lead-inner .lead-catch span{
  display: inline-block;
}

@media screen and (max-width: 767px){
	.lead{
		padding: 30px 5%;
	}
  .lead-inner .lead-catch{
    font-size: 2.2rem;
}
}


/* index
----------------------------------------*/
.index{
  background-color: #fff;
}
.index + .index{
  margin-top: 50px;
}
.index-link{
  display: block;
  padding: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}
.index-link:hover{
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
}
.index-category{
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-family: Arial,Helvetica;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.index-category::before{
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 90px;
  height: 3px;
  content: "";
}
.index-category span{
  display: block;
  margin-top: 5px;
  font-size: 80%;
}
.index-category.closing{
  color: #e60027;
}
.index-category.panel{
  color: #144b8a;
}
.index-category.other{
  color: #009bdd;
}
.index-category.closing::before{
  background-color: #e60027;
}
.index-category.panel::before{
  background-color: #144b8a;
}
.index-category.other::before{
  background-color: #009bdd;
}
.index-title{
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.index-speaker{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-speaker-item{
  display: flex;
  justify-content: space-between;
  width: 48.3695652173913%;
}
.index-speaker-item:nth-of-type(n+3){
  margin-top: 20px;
}
.index-speaker-item_image{
  width: 33.70786516853933%;
}
.index-speaker-item_name{
  width: calc(100% - 33.70786516853933% - 15px);
  font-size: 1.4rem;
  line-height: 1.3;
}
.index-speaker-item_name span{
  font-size: 140%;
  font-weight: 700;
  line-height: 1.3;
}
/* 2つ並び */
.index-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-inner-item{
  width: 48%;
}
.index-inner-item .index-speaker-item{
  width: 100%;
}
.index-link > .index-category.closing{
  margin-bottom: 3px;
  padding-bottom: 0;
}
.index-link > .index-category.closing::before{
  content: none;
}

@media screen and (max-width: 767px){
  .index + .index{
    margin-top: 40px;
  }
  .index-link{
    padding: 20px;
  }
  .index-category{
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 1.9rem;
  }
  .index-category::before{
    width: 20%;
  }
  .index-title{
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  .index-speaker-item{
    width: 100%;
  }
  .index-speaker-item + .index-speaker-item{
    margin-top: 20px;
  }
  .index-speaker-item_image{
    width: 25%;
  }
  .index-speaker-item_name{
    width: calc(100% - 25% - 10px);
  }
  .index-inner-item{
    width: 100%;
  }
  .index-inner-item + .index-inner-item{
    margin-top: 40px;
  }
}