/*下層ページ共通
=======================================================*/
main{
  background: #E6E6E6;
}
.header-left{
  background: #E6E6E6;
}
.header-left::after{
  background: #E6E6E6;
}

@media screen and (max-width: 768px){
}

/*MV
=======================================================*/
.mv{
  background: #E6E6E6;
}
.mv .company-mv{
  margin-left: calc((100% - 1200px) / 2);
}

@media screen and (max-width: 1200px){
  .mv .company-mv{
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px){
}

/*導入
=======================================================*/
.intro-ttl{
  font-family: "Yu Gothic B";
  font-size: 35px;
  border-bottom: 1px solid #A6A6A6;
  width: fit-content;
}
.intro-ttl span{
  color:#F7921E;
  font-size: 40px;
}
.intro-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}
.intro-wrap-name{
  font-family: "Yu Gothic B";
  font-size: 30px;
}
.intro-img{
  width: 50%;
}
.intro-txt{
  font-family: "NotoSansJP R";
}

@media screen and (max-width: 1015px){
  .intro-ttl{
    font-size: 3vw;
    margin: 0 auto;
  }
  .intro-ttl span{
    font-size: 3.5vw;
  }
  .intro-wrap-name{
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px){
}

/*きっかけ
=======================================================*/
.chance-ttl{
  font-family: "Yu Gothic B";
  font-size: 30px;
}
.chance-ttl span{
  color:#F7921E;
  font-size: 40px;
}
.chance-ttl-sub{
  font-size: 25px;
  font-family: "Yu Gothic B";
  background:linear-gradient(transparent 60%, rgba(247,146,30,0.6) 60%);
  width: fit-content;
  margin: 30px 0 40px 0;
}

@media screen and (max-width: 1015px){
  .chance-ttl{
    font-size: 4vw;
    text-align: center;
  }
  .chance-ttl span{
    font-size: 5vw;
  }
  .chance-ttl-sub{
    font-size: 2.7vw;
  }
}

/*運営者概要
=======================================================*/
.company-wrap{
  display: flex;
  align-items: center;
  margin-right: calc((100% - 1200px) / 2);
  gap: 10px;
}
.company-wrap-img{
  width: 80%;
  position: relative;
}
.company-wrap-img img{
  object-fit: contain;
}
.company-wrap-img span{
  color:#fff;
  font-family: "NotoSansJP M";
  position: absolute;
  font-size: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.company-wrap-txt{
  margin-right: calc((100% - 1200px) / 2);
  width: 50%;
}
.company-wrap-txt dl{
  border-bottom: 1px solid #A6A6A6;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: "NotoSansJP M";
}
.company-wrap-txt dl dt{
  padding-bottom: 5px;
}
.company-wrap-txt dl dd{
  padding-bottom: 5px;
  width: 50%;
}

@media screen and (max-width: 1015px){
  .company{
    margin: 30px 0;
  }
  .company-wrap{
    width: 90%;
    margin: 0 auto;
  }
  .company-wrap-img{
    width: 40%;
  }
  .company-wrap-txt{
    width: 60%;
  }
  .company-wrap-txt dl dd{
    width: 60%;
  }
  .company-wrap-img span{
    font-size: 3vw;
  }
}

/*沿革
=======================================================*/
.history h2{
  text-align: center;
  font-size: 40px;
  font-family: "Yu Gothic B";
}
.history-wrap{
  margin-top: 50px;
}
.history-wrap-ttl{
  font-family: "NotoSansJP M";
}
.history-wrap-ttl::after{
  content: "";
  width: 56%;
  height: 1px;
  background: #A6A6A6;
  display: block;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 768px){
  .history h2{
    font-size: 4vw;
  }
}