@charset "UTF-8";
@font-face {
  font-family: "LINESeedJP";
  font-weight: 700;
  src: url("/wp-content/themes/djp_new/font/LINESeedJP_OTF_Bd.woff2") format("woff2");
}
@font-face {
  font-family: "LINESeedJP";
  font-weight: 400;
  src: url("/wp-content/themes/djp_new/font/LINESeedJP_OTF_Rg.woff2") format("woff2");
}
* {
  letter-spacing: 0.1em;
  line-height: 2;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

.btnarrow5 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #555;
  padding: 8px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}
.btnarrow5:hover::before {
  right: -40px;
}
.btnarrow5:hover::after {
  right: -35px;
}
.btnarrow5::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: -26px;
  /*下線の形状*/
  width: 40px;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}
.btnarrow5::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 28%;
  right: -21px;
  /*矢印の形状*/
  width: 1px;
  height: 12px;
  background: #333;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.spbr::before {
  content: "\a";
  white-space: pre;
}

.sptbbr::before {
  content: "\a";
  white-space: pre;
}

@media screen and (min-width: 768px) {
  .spbr::before {
    content: "";
    white-space: unset;
  }
  .tbpcbr::before {
    content: "\a";
    white-space: pre;
  }
}
@media screen and (min-width: 1025px) {
  .sptbbr::before {
    content: "";
    white-space: unset;
  }
  .pcbr::before {
    content: "\a";
    white-space: pre;
  }
}
.header {
  background-color: transparent;
}

nav {
  background: transparent;
}

.mv {
  height: 80vh;
  background-color: #ddd;
  position: relative;
  z-index: -1;
}
.mv #header {
  position: relative;
  /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 80vh;
  /*高さを全画面にあわせる*/
}
.mv #video-area {
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.mv #video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.news {
  background-color: #fff;
  box-shadow: 0px 0px 20px #AAAAAA;
  position: relative;
  bottom: 60px;
  right: 0;
  padding: 30px 36px;
  margin-left: 13%;
  border-radius: 30px 0 0 30px;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.news h2 {
  writing-mode: vertical-rl;
}
.news h2 span {
  display: block;
}
.news__title {
  font-size: 2rem;
}
.news__list dl {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 10px;
  justify-content: flex-end;
}
.news__list dl:not(:last-of-type) {
  margin-bottom: 25px;
}
.news:after {
  position: absolute;
  z-index: -1;
  width: 100%;
  content: "";
  display: block;
  background: url("/wp-content/themes/djp_new/img/top/about_background.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 244px;
  background-position: right -20%;
  right: 0;
  bottom: -222px;
}

.about {
  padding: 40px 6% 114px;
  position: relative;
}
.about__subtitle {
  display: block;
  margin-bottom: 15px;
}
.about__title {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
}
.about__description {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 3.6;
  margin-bottom: 40px;
}
.about__link {
  text-align: right;
}
.about__link a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
}
.about__left img {
  width: 100%;
}

.service {
  /*tabの形状*/
  /*エリアの表示非表示と形状*/
  /*areaにis-activeというクラスがついた時の形状*/
}
.service h2 {
  padding: 0 3.5% 50px;
}
.service h2 span {
  display: block;
}
.service__subtitle {
  margin-bottom: 10px;
  font-size: 1rem;
}
.service__title {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
}
.service__wrap {
  display: flex;
  padding-left: 3.5%;
  margin-bottom: 66px;
}
.service .tab {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 50%;
}
.service .tab li {
  list-style-type: none;
  border-bottom: 1px solid #DDDDDD;
}
.service .tab li:first-of-type {
  border-top: 1px solid #ddd;
}
.service .tab li a {
  display: block;
  margin: 0 2px;
  padding: 20px 0px 20px 10px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.service .tab li a:hover {
  background: #FFEAEB;
}
.service .tab li.active a {
  background: #FFEAEB;
}
.service__tab--subtitle {
  font-size: 1rem;
  white-space: nowrap;
}
.service__photo {
  width: 50%;
}
.service .area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  width: 100%;
  height: 100%;
}
.service .area img {
  border-radius: 60px 0 0 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .color {
  border-radius: 60px 0 0 0;
  mix-blend-mode: multiply;
  background: rgba(103, 79, 79, 0.5019607843);
  width: 100%;
  height: 100%;
  position: absolute;
}
.service__description {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 7.5%;
  color: white;
  z-index: 1;
}
.service #surveying {
  position: relative;
}
.service #surveying picture {
  -o-object-position: 60%;
     object-position: 60%;
}
.service .surveying__description {
  bottom: 60px;
}
.service .surveying__link,
.service .helicopterShot__link,
.service .programming__link,
.service .event__link,
.service .registertraining__link,
.service .sales__link,
.service .community__link {
  position: absolute;
  z-index: 1;
}
.service .surveying__link a,
.service .helicopterShot__link a,
.service .programming__link a,
.service .event__link a,
.service .registertraining__link a,
.service .sales__link a,
.service .community__link a {
  border: 2px solid #fff;
  color: #fff;
}
.service .surveying__link a::before,
.service .helicopterShot__link a::before,
.service .programming__link a::before,
.service .event__link a::before,
.service .registertraining__link a::before,
.service .sales__link a::before,
.service .community__link a::before {
  background: #fff;
}
.service .surveying__link a::after,
.service .helicopterShot__link a::after,
.service .programming__link a::after,
.service .event__link a::after,
.service .registertraining__link a::after,
.service .sales__link a::after,
.service .community__link a::after {
  display: none;
}
.service .surveying__link {
  bottom: 20px;
  right: 5%;
}
.service #helicopterShot {
  position: relative;
}
.service #helicopterShot img {
  -o-object-position: 30%;
     object-position: 30%;
}
.service .helicopterShot__link {
  bottom: 40px;
  right: 5%;
}
.service .helicopterShot__description {
  top: 30px;
}
.service #programming {
  position: relative;
}
.service #programming img {
  -o-object-position: 30%;
     object-position: 30%;
}
.service .programming__description {
  bottom: 80px;
  text-align: right;
}
.service .programming__link {
  bottom: 40px;
  right: 5%;
}
.service #event {
  position: relative;
}
.service #event img {
  -o-object-position: 35%;
     object-position: 35%;
}
.service .event__description {
  top: 30px;
}
.service .event__link {
  bottom: 40px;
  right: 5%;
}
.service #registertraining {
  position: relative;
}
.service #registertraining img {
  -o-object-position: 35%;
     object-position: 35%;
}
.service .registertraining__description {
  top: 30px;
}
.service .registertraining__link {
  bottom: 40px;
  right: 5%;
}
.service #sales {
  position: relative;
}
.service #sales img {
  -o-object-position: 55%;
     object-position: 55%;
}
.service .sales__description {
  top: 10px;
}
.service .sales__link {
  bottom: 40px;
  right: 5%;
}
.service #community {
  position: relative;
}
.service #community img {
  -o-object-position: 87%;
     object-position: 87%;
}
.service .community__description {
  bottom: 20px;
}
.service .community__link {
  top: 20px;
  right: 5%;
}
.service .area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.event {
  background: url("/wp-content/themes/djp_new/img/top/info/info_background.png");
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
.event .slick-slide {
  width: 221px;
}

.info,
.report {
  margin: 0 3.5%;
  position: relative;
}
.info h2,
.report h2 {
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
}
.info h2 span,
.report h2 span {
  display: block;
  white-space: nowrap;
}
.info__title,
.report__title {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
}
.info .next-arrow,
.report .next-arrow {
  transform: rotate(180deg);
  padding-right: 25px;
  cursor: pointer;
}
.info .prev-arrow,
.report .prev-arrow {
  cursor: pointer;
}
.info__wrap,
.report__wrap {
  text-align: right;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.info__list,
.report__list {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  max-width: 410px;
  text-decoration: none;
  color: #000;
}
.info__list:not(:last-of-type),
.report__list:not(:last-of-type) {
  margin-right: 25px;
}
.info__list--photo img,
.report__list--photo img {
  width: 100%;
  height: 152px;
  -o-object-fit: cover;
     object-fit: cover;
}
.info__list--right,
.report__list--right {
  text-align: left;
  background-color: #fff;
  padding: 20px 15px;
}
.info .slick-list,
.report .slick-list {
  width: 80%;
  margin-left: auto;
}

.info {
  margin-bottom: 60px;
  padding-top: 81px;
}

.report {
  padding-bottom: 81px;
}

.column {
  padding: 0 3.5%;
  margin-bottom: 70px;
}
.column h2 {
  margin-bottom: 40px;
}
.column h2 span {
  display: block;
}
.column__subtitle {
  margin-bottom: 10px;
  font-size: 1rem;
}
.column__title {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
}
.column__description {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-bottom: 30px;
}
.column__list {
  text-decoration: none;
  color: #000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.column__list--photo img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.column__list--right {
  padding: 25px;
  position: relative;
}
.column__list--right::before {
  background: #fff;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out;
  width: 100%;
}
.column__list--title {
  line-height: 2.5;
  letter-spacing: 0.1em;
  position: relative;
}
.column__list--description {
  display: none;
  position: relative;
}

.sns {
  padding: 0 3.5%;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  margin-bottom: 60px;
}
.sns .twitter {
  margin-bottom: 60px;
}
.sns .twitter h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-align: center;
}
.sns .twitter__logo {
  position: relative;
}
.sns .twitter__logo::before {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: url("/wp-content/themes/djp_new/img/top/sns/twitter.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sns .twitter__detail a {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 auto;
  background-color: #8BD5EB;
  color: #fff;
  padding: 18px;
  border-radius: 50px;
  text-align: center;
  margin: 0 40px;
}
.sns .threads {
  margin-bottom: 60px;
}
.sns .threads h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-align: center;
}
.sns .threads__detail a {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 auto;
  background-color: #333;
  color: #fff;
  padding: 18px;
  border-radius: 50px;
  text-align: center;
  margin: 0 40px;
}
.sns .instagram h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-align: center;
}
.sns .instagram__logo {
  position: relative;
}
.sns .instagram__logo::before {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: url("/wp-content/themes/djp_new/img/top/sns/instagram.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.line {
  padding: 0 3.5%;
  margin-bottom: 70px;
}
.line__wrap {
  background-color: #06C755;
  color: #fff;
  border-radius: 10px;
  padding: 28px 23px 30px;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}
.line__wrap:hover {
  opacity: 0.8;
}
.line__wrap:after {
  width: 40%;
  display: block;
  content: "";
  position: absolute;
  background: url("/wp-content/themes/djp_new/img/top/sns/image.png") no-repeat 100% 100%;
  height: 120%;
  bottom: 0;
  left: 10px;
  background-size: 100%;
}
.line__wrap h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
}
.line__title {
  font-family: "LINESeedJP";
  font-weight: 700;
  font-size: 2.2rem;
}
.line__title--sub {
  font-family: "LINESeedJP";
  font-weight: 700;
  font-size: 1.4rem;
}
.line__description {
  padding-left: 45%;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .news__list dl {
    flex-direction: row-reverse;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .about {
    display: flex;
    flex-direction: row-reverse;
    -moz-column-gap: 77px;
         column-gap: 77px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .about__right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about__right:before {
    background-position: right 0%;
  }
  .about__left {
    width: 40%;
  }
  .about img {
    max-width: 589px;
  }
  .column {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 120px;
  }
  .column__description {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .column__list--title {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .column__list--right {
    padding: 25px 30px 36px 30px;
  }
  .column__list--description {
    display: block;
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .service {
    max-width: 1200px;
    margin: 0 auto;
  }
  .service__description {
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
  }
  .service__wrap {
    -moz-column-gap: 68px;
         column-gap: 68px;
    justify-content: center;
    margin-bottom: 120px;
  }
  .service__photo {
    width: 75%;
  }
  .service .tab {
    width: 30%;
  }
  .service #community img {
    -o-object-position: 90%;
       object-position: 90%;
  }
  .service .programming__description {
    bottom: 50px;
  }
  .service .helicopterShot__description {
    top: 20px;
  }
  .service .registertraining__description {
    top: 0px;
  }
  .event .slick-slide {
    width: 414px;
  }
  .event .slick-slide img {
    height: 286px;
  }
  .sns {
    flex-direction: row;
    margin: 0 auto;
    max-width: 1200px;
    margin-bottom: 60px;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  .sns_left {
    width: 50%;
  }
  .sns .twitter,
  .sns .threads {
    margin-bottom: 90px;
  }
  .sns .twitter__detail a,
  .sns .threads__detail a {
    font-size: 1.8rem;
  }
  .sns .instagram {
    width: 50%;
  }
  .line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.5%;
    margin-bottom: 70px;
  }
  .line__wrap {
    display: flex;
    justify-content: right;
    padding-right: 7%;
    align-items: center;
    padding-left: 25%;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .line__wrap:after {
    max-width: 231px;
    height: 150%;
    left: 10px;
  }
  .line__description {
    padding-left: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .news {
    position: relative;
    margin-left: 40%;
  }
  .news:after {
    background: url("/wp-content/themes/djp_new/img/top/about_background_pc.png");
    width: 100%;
    height: 570px;
    bottom: -500px;
    background-repeat: no-repeat;
    background-position: right;
  }
  .news__list dl {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .about__title {
    font-size: 4rem;
    word-break: keep-all;
  }
  .service h2 {
    padding-left: 0;
  }
  .service__wrap {
    padding-left: 0;
  }
  .info,
  .report {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .line__wrap h2 {
    white-space: nowrap;
  }
  .line__wrap:after {
    left: 45px;
  }
  .line__title {
    font-size: 3.8rem;
  }
  .line__title--sub {
    font-size: 2.6rem;
  }
  .line__description {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=top.css.map */