@charset "UTF-8";
/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  height: 800px;
  margin-top: 80px;
  margin-bottom: 0px;
  position: relative;
}
/* キャッチ画像載せ */
.mainvisual .catchphrase {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 50px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px #000000;
  position: absolute;
  top: 210px;
  left: 6%;
}

/* 動画フィルター */
.mainvisual .video-img {
  postion: relative;
  width: 100%;
  height: 100vh;
}
.mainvisual .video-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: radial-gradient(black 20%, transparent 20%),
  					radial-gradient(black 20%, transparent 20%);
  background-size: 3px 3px;
  background-position: 0 0, 3px 3px !important;
}
video {
  position: absolute;
  width: 100%;
  height: 800px;
  object-fit: cover;
}

/* 静止画crossfade */
.mainvisual .fade-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.mainvisual .fade-img li {
  width: 70%;
  position: absolute;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
}
.mainvisual .fade-img li:nth-child(1) {
  animation-delay: 0s;
}
.mainvisual .fade-img li:nth-child(2) {
  animation-delay: 5s;
}
.mainvisual .fade-img li:nth-child(3) {
  animation-delay: 10s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Inview */
.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   Main下のキャッチ
------------------------------ */
.maincatch {
  background-color: #FF786A;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding: 70px 0 160px;
  margin-bottom: 40px;
}
.maincatch .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.maincatch .text  {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.8;
  margin-bottom: 20px;
  margin-left: 5%;
  max-width: 65%;
}

/*-------------------------------------------
実績
-------------------------------------------*/
.plan-table {
  overflow-x: auto;
  padding: 0 20px;
  margin-bottom: 50px;
}
.plan-table .table {
  width: 500px;
  border-collapse: collapse;
  margin: 0 auto;
  table-layout: fixed;
}
.plan-table .table th,
.plan-table .table td {
  border: solid 1px #9BC2C7;
  padding: 20px;
}
.plan-table .table thead th {
  background-color: #C6F0FF;
  font-size: 18px;
  font-weight: 500;
}
.plan-table .table thead th:first-child {
  width: 60px;
  background-color: #C6F0FF;
  border: solid 1px #9BC2C7;
}
.plan-table .table thead th:nth-child(n+2) {
  width: 0px;
}
.plan-table .table tbody th {
  background-color: #E5F8FF;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.plan-table .table tbody td {
  background-color: #F9FDFF;
  text-align: center;
}
.plan-table .table  tbody td .title {
  display: block;
  font-size: 25px;
}
.plan-table .table  tbody td .count {
  font-size: 25px;
  font-weight: 500;
  color: #0280DB; 
}
.plan-table .table  tbody td .small {
  font-size: 12px;
}
.plan-table .table  tbody td .note {
  font-size: 12px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
	
  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  .mainvisual {
    height: 400px;
    margin-top: 7px;
    margin-bottom: 0px;
	overflow: hidden;
  }
  .mainvisual .catchphrase {
    font-size: 28px;
    top: 30%;
    left: 6%;
  }
  .mainvisual .text .description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  video {
	width: auto;
	height: 420px;
  }
  .mainvisual .fade-img img {
    height: 400px;
  }
  .mainvisual .fade-img li {
    width: 100%;
  }
	
  /*-------------------------------------------
  Main下のキャッチ
  -------------------------------------------*/
  .maincatch {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 50px 0 90px;
  }
  .maincatch .inner {
    flex-direction: column;
  }
  .maincatch .text  {
  font-size: 14px;
  max-width: 90%;
  }
	
  /*-------------------------------------------
  実績
  -------------------------------------------*/
  .plan-table {
    margin-bottom: 40px;
  }
  .plan-table .table {
    width: 700px;
  }
  .plan-table .table th,
  .plan-table .table td {
    font-size: 14px;
    padding: 10px;
  }
  .plan-table .table thead th:first-child {
    width: 50px;
  }
  .plan-table .table thead th:nth-child(n+2) {
    width: 100px;
  }
  .plan-table .table tbody td {
    font-size: 12px;
  }
  .plan-table .table tbody td .price {
    font-size: 20px;
  }

}