@charset "UTF-8";
/*----------------------------------
  レスポンシブ制御関係
------------------------------------*/
body {
  min-width: 1120px;
}

@media (max-width: 1120px) {
  body {
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    min-width: 0px;
  }
}

/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  topMV
------------------------------------*/
.topMV {
  width: 100%;
  height: auto;
  padding-top: 100px;
  min-width: 1100px;
}

.topMV_container {
  position: relative;
  height: 45vw;
  max-height: 700px;
  overflow-y: hidden;
}

.slick-dots li button {
  display: none;
}

.topMV_maincopy {
  position: absolute;
  width: 20vw;
  max-width: 200px;
  top: 25%;
  right: 10%;
}

@media (max-width: 1120px) {
  .topMV_container {
    height: 504px;
  }
  .topMV_maincopy {
    width: 200px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .topMV {
    min-width: 0px;
    padding-top: 70px;
  }
  .topMV_container {
    position: relative;
    height: 280px;
  }
  .topMV_maincopy {
    width: 130px;
    top: 36%;
  }
  .Mv div img {
    width: auto;
  }
}

/*----------------------------------
  トップページ/slick
------------------------------------*/
.slick-slide {
  height: 100%;
  max-height: calc(668 / 1400 * 100vw);
}

.slick-slide img {
  width: 100%;
}

@media (max-width: 1120px) {
  .slick-slide {
    height: 100%;
    max-height: none;
  }
}

@media (max-width: 767px) {
  .slick-slide {
    position: relative;
    height: 380px;
    max-height: 100%;
  }
}

@media (max-width: 767px) {
  .slick-slide img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: 600px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 767px) {
  .slick-slide:first-child img {
    position: absolute;
    top: 0;
    left: 55%;
    transform: translate(-55%, 0);
  }
}

@media (max-width: 767px) {
  .slick-slide:nth-child(2) img {
    position: absolute;
    top: 0;
    left: 65%;
    transform: translate(-65%, 0);
  }
}

@media (max-width: 767px) {
  .slick-slide:nth-child(3) img {
    position: absolute;
    top: 0;
    left: 25%;
    transform: translate(-25%, 0);
  }
}

@-webkit-keyframes fadeZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes fadeZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slide-animation {
  -webkit-animation: fadeZoom 30s 0s forwards;
          animation: fadeZoom 30s 0s forwards;
}

/*----------------------------------
  news
------------------------------------*/
.news {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.news_container {
  position: absolute;
  top: -80px;
  right: 0;
  left: 0;
  width: 65vw;
  min-width: 800px;
  margin: 0 auto;
  padding: 40px 80px;
  background-color: #fff;
}

h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
}

.news_list {
  margin-top: 20px;
  list-style-type: none;
}

.news_listitem {
  text-decoration: none;
  padding-bottom: 20px;
  padding-left: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DDDDDD;
}

.news_listitem a {
  display: flex;
  align-items: center;
}

.news_listitem_datecatcontainer {
  display: flex;
  align-items: center;
}

.news_listitem_cat {
  width: 80px;
  text-align: center;
  padding: 4px 0;
  margin: 0 40px;
  color: #fff;
  background: #1c1c1c;
}

.news_pagelink {
  position: relative;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px 0 0 auto;
  padding: 4px 20px 4px 4px;
}

.news_pagelink p {
  font-size: 14px;
}

.news_pagelink ::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .news {
    position: relative;
    width: 100%;
  }
  .news_container {
    position: static;
    width: 100%;
    min-width: 0px;
    padding: 40px 20px;
  }
  .news_list {
    margin-top: 20px;
    list-style-type: none;
  }
  .news_listitem {
    margin-bottom: 20px;
  }
  .news_listitem a {
    display: block;
  }
  .news_listitem span {
    display: block;
    width: 90%;
    margin-top: 8px;
  }
  .news_listitem_cat {
    width: 70px;
    text-align: center;
    padding: 1px 0;
    margin: 0 16px;
  }
}

/*----------------------------------
  concept
------------------------------------*/
.concept {
  margin-top: 350px;
  padding: 80px 0 60px;
  width: 100%;
  background-image: url(../../../img/bg_concept.png);
  background-size: cover;
}

.concept_container {
  width: 1120px;
  margin: 0 auto;
}

.concept_container h2 {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 1.8px;
  line-height: 1.6;
  color: #1c1c1c;
}

.concept_text {
  text-align: center;
  margin: 60px 0;
}

.concept_text p {
  color: #1c1c1c;
  line-height: 2.5;
}

.concept_pagelink {
  position: relative;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 0;
  padding: 4px 20px 4px 4px;
}

.concept_pagelink p {
  font-size: 14px;
}

.concept_pagelink ::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .concept {
    margin-top: 20px;
    padding: 80px 0 80px;
    width: 100%;
    background-image: url(../../../img/bg_concept.png);
    background-size: cover;
  }
  .concept_container {
    width: 100%;
  }
  .concept_container h2 {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.8px;
    color: #1c1c1c;
  }
  .concept_text {
    text-align: center;
    margin: 24px auto;
    width: 90%;
  }
  .concept_text p {
    color: #1c1c1c;
    line-height: 2.5;
  }
}

/*----------------------------------
  linkcard
------------------------------------*/
.linkcard {
  margin-top: 120px;
}

.link_uppercontainer {
  display: flex;
  justify-content: space-between;
  width: 1120px;
  margin: 0 auto;
}

.link_company, .link_technology, .link_access {
  width: 358px;
}

.link_challenge {
  width: 1120px;
  height: 396px;
  padding: 45px 56px;
  margin: 24px auto;
  background-image: url(../../../img/link_top04.png);
  background-size: contain;
}

.link_challenge_img {
  width: 387px;
}

.link_challenge_text {
  width: 387px;
  margin-top: 32px;
}

.link_challenge_text p {
  color: #fff;
}

.link_challenge_pagelink {
  display: block;
  position: relative;
  border-bottom: 1px solid #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px 4px 4px;
  margin-top: 40px;
}

.link_challenge_pagelink p {
  font-size: 14px;
  color: #fff;
}

.link_challenge_pagelink ::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.link_lowercontainer {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1120px;
}

.link_banner1, .link_banner2 {
  width: 540px;
}

@media (max-width: 768px) {
  .linkcard {
    margin-top: 60px;
  }
  .link_uppercontainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .link_company, .link_technology, .link_access {
    width: 80%;
    margin: 10px auto 0;
  }
  .link_challenge {
    width: 100%;
    height: auto;
    padding: 90px 30px;
    margin: 60px auto;
    background-color: #363636;
    background-image: url(../../../img/link_top04_sp.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
  }
  .link_challenge_img {
    width: 90%;
  }
  .link_challenge_text {
    width: 90%;
    margin-top: 32px;
  }
  .link_challenge_pagelink {
    display: block;
    position: relative;
    border-bottom: 1px solid #FFF;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 40px;
  }
  .link_challenge_pagelink p {
    font-size: 14px;
    color: #fff;
  }
  .link_challenge_pagelink ::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    right: 6px;
    margin-top: -3px;
    transform: rotate(45deg);
  }
  .link_lowercontainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
  }
  .link_banner1, .link_banner2 {
    width: 80%;
    margin: 0 auto;
    margin-top: 16px;
  }
}
/*# sourceMappingURL=style.css.map */
