@charset "UTF-8";
:root {
  --sb: 17px;
}

/*  letter-spacing: tracking(140); */
/*  @include l_h(14, 16.8);*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #00000c;
}
body.open_menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.super_wrap {
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

/*WordPress*/
.screen-reader-text,
.screen-reader-response {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
}

.flex {
  display: flex;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.space_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.fw_bold {
  font-weight: bold;
}

.fs10 {
  font-size: 10px;
}

.red {
  color: #e23541;
}

.txt_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.txt_fade_in.active {
  opacity: 1;
}

.img_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.img_fade_in.active {
  opacity: 1;
}

.inner {
  max-width: calc(1680px + 12.5vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(9.8958333333vw - var(--sb) / 2);
  padding-right: calc(9.8958333333vw - var(--sb) / 2);
}

.full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.head_jp {
  margin-bottom: 64px;
}
.head_jp > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.026em;
}
.head_jp:before {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-bottom: 34px;
  background-image: linear-gradient(to right, #ff0080, #db078c 12%, #7e1bae 44%, #3a2ac6 71%, #1033d6 90%, #0037dc 99%);
}

.view_more {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.view_more > span {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.31;
}
.view_more > div {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 24px;
  position: relative;
}
.view_more > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background-color: #fff;
  transform: scale(0);
  border-radius: 50%;
  z-index: 1;
}
.view_more > div:after {
  content: "";
  display: block;
  width: 18px;
  height: 15px;
  background: center/cover no-repeat url("../image/common/more_arrow.svg");
  z-index: 1;
  transition-property: filter;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.view_more:hover {
  opacity: 1;
}
.view_more:hover > div::before {
  transform: scale(1.01);
}
.view_more:hover > div::after {
  filter: invert(1);
}

.view_more2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 309px;
  height: 67px;
  border-radius: 32.8px;
  border: solid 1px #fff;
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.view_more2 > span {
  letter-spacing: 0.03em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.view_more2 > div {
  width: 18px;
  height: 15px;
  background: center/cover no-repeat url("../image/common/more_arrow.svg");
  z-index: 1;
  transition-property: filter;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: absolute;
  z-index: 2;
  right: 21px;
}
.view_more2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background-color: #fff;
  transform: scale(0);
  border-radius: 32.8px;
  z-index: 1;
}
.view_more2:hover {
  opacity: 1;
  color: #00000c;
}
.view_more2:hover::before {
  transform: scale(1.01);
}
.view_more2:hover > div {
  filter: invert(1);
}

.view_plus {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 308.9px;
  height: 67px;
  border-radius: 32.8px;
  border: solid 1px #fff;
  color: #fff;
  cursor: pointer;
}
.view_plus:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background-color: #fff;
  transform: scale(0);
  border-radius: 32.8px;
  z-index: 1;
}
.view_plus > span {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.view_plus > div {
  width: 14px;
  height: 14px;
  background: center/cover no-repeat url("../image/common/view_plus.svg");
  z-index: 1;
  transition-property: filter;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  position: absolute;
  right: 26px;
}
.view_plus:hover {
  opacity: 1;
  color: #00000c;
}
.view_plus:hover::before {
  transform: scale(1.01);
}
.view_plus:hover > div {
  filter: invert(1);
}

.arrow_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 164.5px;
  height: 34px;
  border-radius: 17px;
  position: relative;
  color: #fff;
  border: 0.5px #fff solid;
}
.arrow_btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background-color: #fff;
  transform: scale(0);
  border-radius: 17px;
  z-index: 1;
}
.arrow_btn span {
  margin-right: 4px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.arrow_btn .arrow {
  z-index: 1;
  position: absolute;
  right: 13.5px;
  width: 5px;
  height: 8px;
  background: center/cover no-repeat url("../image/common/arrow_btn.svg");
}
.arrow_btn:hover {
  opacity: 1;
  color: #00000c;
}
.arrow_btn:hover::before {
  transform: scale(1.01);
}
.arrow_btn:hover .arrow {
  filter: invert(1);
}

.g_line {
  width: 94px;
  height: 6px;
  background-image: linear-gradient(to right, #ff0080, #db078c 12%, #7e1bae 44%, #3a2ac6 71%, #1033d6 90%, #0037dc 99%);
}

.g_line2:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #ff0080, #db078c 12%, #7e1bae 44%, #3a2ac6 71%, #1033d6 90%, #0037dc 99%);
}

.cases_wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6.1979166667vw 4.7395833333vw;
}
.cases_wrap > a {
  width: calc(50% - 2.3958333333vw);
}
.cases_wrap > a:nth-child(2) {
  margin-top: 7.8125vw;
}
.cases_wrap > a:nth-child(n+3):nth-child(odd) {
  margin-top: -7.8125vw;
}
.cases_wrap > a:hover {
  opacity: 1;
}
.cases_wrap > a:hover .thum img {
  transform: scale(1.1);
}
.cases_wrap .thum {
  width: 30.0520833333vw;
  height: 30.0520833333vw;
  width: 100%;
  height: auto;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.cases_wrap .thum img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  margin: auto;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  image-rendering: -webkit-optimize-contrast;
}
.cases_wrap .date {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #b2b2b2;
  letter-spacing: 0.03em;
}
.cases_wrap .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
}
.cases_wrap .cat_wrap {
  margin-top: 36px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
}
.cases_wrap .cat_wrap > span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32.5px;
  padding-left: 31.7px;
  padding-right: 31.7px;
  border-radius: 16px;
  border: solid 0.5px #fff;
}

@media screen and (max-width: 1600px) {
  .cases_wrap {
    gap: 51px 76px;
  }
  .cases_wrap > a {
    width: calc(50% - 38px - var(--sb) / 2);
  }
  .cases_wrap > a:nth-child(2) {
    margin-top: 123px;
  }
  .cases_wrap > a:nth-child(n+3):nth-child(odd) {
    margin-top: -123px;
  }
}
@media screen and (max-width: 1360px) {
  .cases_wrap {
    gap: 75px 65px;
  }
  .cases_wrap > a {
    width: calc(50% - 32px - var(--sb) / 2);
  }
  .cases_wrap > a:nth-child(2) {
    margin-top: 105px;
  }
  .cases_wrap > a:nth-child(n+3):nth-child(odd) {
    margin-top: -105px;
  }
}
.index_list_wrap > * {
  width: 18.2291666667vw;
}
.index_list_wrap a {
  display: block;
}
.index_list_wrap a:hover {
  opacity: 1;
}
.index_list_wrap a:hover .thum img {
  transform: scale(1.1);
}
.index_list_wrap .thum {
  width: 18.2291666667vw;
  height: 12.0833333333vw;
  width: 100%;
  height: auto;
  aspect-ratio: 175/116;
  position: relative;
  overflow: hidden;
}
.index_list_wrap .thum img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  height: 100%;
  margin: auto;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  image-rendering: -webkit-optimize-contrast;
}
.index_list_wrap .date {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: 21px;
  margin-top: 33px;
  color: #b2b2b2;
  letter-spacing: 0.03em;
}
.index_list_wrap .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.94;
}
.index_list_wrap .cat_wrap {
  margin-top: 36px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  white-space: nowrap;
}
.index_list_wrap .cat_wrap > span {
  font-size: 13px;
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32.5px;
  padding-left: 31.7px;
  padding-right: 31.7px;
  border-radius: 16px;
  border: solid 0.5px #fff;
}
.index_list_wrap .dummy {
  height: 0;
  margin-top: -2.6041666667vw;
  background-color: transparent;
}
.index_list_wrap .case_list_underline {
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to right, #ff0080, #db078c 12%, #7e1bae 44%, #3a2ac6 71%, #1033d6 90%, #0037dc 99%);
  margin-top: 25.6px;
  margin-bottom: 18.3px;
}
.index_list_wrap .units_wrap {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.75;
  color: #b2b2b2;
}
.index_list_wrap .units_wrap:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: center/cover no-repeat url("../image/common/icon_unit.svg");
  margin-right: 12px;
}
.index_list_wrap .prefectures_wrap {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.5;
  color: #b2b2b2;
}
.index_list_wrap .prefectures_wrap > span {
  margin-left: 14px;
}
.index_list_wrap .prefectures_wrap:before {
  content: "";
  display: block;
  width: 14px;
  height: 17px;
  background: center/cover no-repeat url("../image/common/icon_venue.svg");
  margin-left: 2px;
}

.news_list_wrap ul {
  list-style: none;
}
.news_list_wrap li {
  border-top: 0.5px solid #fff;
  padding-top: 36px;
  padding-bottom: 36px;
  padding-left: 12px;
  padding-right: 12px;
  border-top: 1px solid #6a6a6a;
}
.news_list_wrap li:last-child {
  border-bottom: 0.5px solid #fff;
  border-bottom: 1px solid #6a6a6a;
}
.news_list_wrap a {
  display: flex;
  align-items: center;
}
.news_list_wrap a:hover {
  opacity: 1;
}
.news_list_wrap a:hover .title {
  background-position: left bottom;
  background-size: 100% 1px;
}
.news_list_wrap .date {
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.news_list_wrap .date span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.news_list_wrap .cat_wrap {
  white-space: nowrap;
}
.news_list_wrap .cat_wrap > span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31.5px;
  padding-left: 23.5px;
  padding-right: 21.5px;
  border-radius: 16px;
  border: solid 0.5px #fff;
  margin-left: 56px;
  margin-right: 53px;
  min-width: 7.7604166667vw;
}
.news_list_wrap .title {
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../image/common/anchor_border.png);
  background-size: 0 1px;
  background-position: right bottom;
  transition: background-size 350ms cubic-bezier(0.19, 1, 0.22, 1);
}
.news_list_wrap .no_cat_wrap {
  margin-right: 97px;
}
.news_list_wrap .flex {
  align-items: center;
}
.news_list_wrap .filter_list_wrap li {
  margin-bottom: -1px;
  border-bottom: 0.5px solid #fff;
}

.article_list_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.140625vw 2.84375vw;
  margin-bottom: -3.140625vw;
}
.article_list_wrap > * {
  width: calc(33% - 1.8958333333vw);
  width: calc(33% - 1.9270833333vw);
  width: calc(33% - 1.71875vw);
}
.article_list_wrap .thum {
  width: 100%;
  aspect-ratio: 59/39;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.article_list_wrap .meta_wrap {
  padding: 29.7px 27px 31.7px 33.4px;
  background-image: linear-gradient(to bottom, #1a1a25, #0d0d19 49%, #070713 73%, #00000c);
}
.article_list_wrap .date {
  margin-bottom: 24.9px;
}
.article_list_wrap .date span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73;
  letter-spacing: 0.03em;
  color: #b2b2b2;
}
.article_list_wrap .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.94;
  letter-spacing: 0.02em;
  color: #fff;
}
.article_list_wrap .dummy {
  margin-top: -3.140625vw;
}

.partners_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5625vw 1.5104166667vw;
}
.partners_wrap > * {
  width: calc(20% - 1.25vw);
  width: calc(13% - 1.25vw);
  aspect-ratio: 13/5;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners_wrap > * img {
  width: 75%;
  height: auto;
}
.partners_wrap .dummy {
  width: 16.25vw;
  height: 0;
  background-color: transparent;
  margin-top: -1.5625vw;
}

.scene_wrap {
  position: relative;
  align-items: center;
}
.scene_wrap > * {
  position: relative;
}
.scene_wrap .bg {
  position: absolute;
  width: 45.6822916667vw;
  width: 75%;
  height: 15.7291666667vw;
  margin-left: auto;
  background-image: linear-gradient(to left, #0a0a14, #1a1a24 1%);
}
.scene_wrap .bg2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 11.71875vw;
  height: 15.7291666667vw;
  background: center/cover no-repeat url("../image/page/scene_bg.svg");
}
.scene_wrap .img_wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 21.9270833333vw;
  height: 15.7291666667vw;
  flex: none;
}
.scene_wrap .num_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 1.7708333333vw;
}
.scene_wrap .num {
  display: block;
  font-size: 42px;
  font-size: 2.1875vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  white-space: nowrap;
}
.scene_wrap .scene {
  display: block;
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}
.scene_wrap .content_wrap {
  margin-left: 5.625vw;
  margin-right: 4.6354166667vw;
  min-width: 24.375vw;
  max-width: 24.375vw;
}
.scene_wrap .head {
  font-size: 1.3541666667vw;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 1.7708333333vw;
}
.scene_wrap .txt {
  font-size: 0.8333333333vw;
  line-height: 2;
}
.scene_wrap ul {
  list-style: none;
}
.scene_wrap li {
  font-size: 0.8333333333vw;
  line-height: 2;
  display: flex;
  margin-bottom: 0.8333333333vw;
}
.scene_wrap li:last-child {
  margin-bottom: 0;
}
.scene_wrap li:before {
  content: "●";
  display: block;
  font-size: 0.5208333333vw;
  transform: scale(0.8);
  margin-right: 0.7291666667vw;
  margin-top: 0.15625vw;
}

.scene2 {
  margin-top: 2.1875vw;
  margin-bottom: 2.34375vw;
}

.fade_in {
  opacity: 0;
}
.fade_in.active {
  animation: fadeIn 1.5s forwards ease-in-out;
}
.fade_in.delay1 {
  animation-delay: 0.3s;
}
.fade_in.delay2 {
  animation-delay: 0.6s;
}
.fade_in.delay3 {
  animation-delay: 0.9s;
}
.fade_in.delay4 {
  animation-delay: 1.2s;
}

.fade_up_in {
  transform: translateY(30px);
  visibility: hidden;
}
.fade_up_in.active {
  animation: fadeUpIn 1.5s forwards;
}

.txt_slide_in p {
  display: inline-block;
  overflow: hidden;
}
.txt_slide_in span {
  opacity: 1;
  transition: all 1.25s cubic-bezier(0.48, 0.325, 0.03, 1);
  display: inline-block;
  transform: translateX(-1.5em);
}
.txt_slide_in.active span {
  transform: translateX(0);
}
.txt_slide_in .delay1 span {
  transition-delay: 0.3s;
}
.txt_slide_in .delay2 span {
  transition-delay: 0.6s;
}

.filter_select_wrap a {
  cursor: pointer;
}

.casestudy_filter_wrap {
  width: 100%;
  height: 5.2083333333vw;
  padding-left: 3.5885416667vw;
  padding-right: 1.9270833333vw;
  border-radius: 2.6041666667vw;
  background-image: linear-gradient(to left, #0a0a14, #1a1a24 1%);
  display: flex;
  align-items: center;
  margin-bottom: 5.125vw;
}
.casestudy_filter_wrap > div {
  font-size: 0.78125vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 1.4583333333vw;
}
.casestudy_filter_wrap > div:nth-child(2) {
  margin-left: 4.4791666667vw;
  margin-left: 2.5vw;
}
.casestudy_filter_wrap .title {
  font-size: 0.8333333333vw;
  font-weight: 600;
  margin-left: 0;
}
.casestudy_filter_wrap .cancel_btn_wrap {
  margin-left: auto;
}
.casestudy_filter_wrap #cancel_btn {
  cursor: pointer;
  width: 2.7083333333vw;
  height: 2.7083333333vw;
  background: center/cover no-repeat url("../image/common/cancel_btn.svg");
}
.casestudy_filter_wrap input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  border: 1px solid #fff;
  cursor: pointer;
  margin-right: 0.5729166667vw;
  margin-bottom: -0.1041666667vw;
}
.casestudy_filter_wrap input[type=radio]:checked:before {
  position: absolute;
  top: 0.15625vw;
  left: 0.3125vw;
  transform: rotate(50deg);
  width: 0.2083333333vw;
  height: 0.4166666667vw;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.casestudy_filter_wrap label {
  cursor: pointer;
}

/***********************************/
/**********アニメーション************/
/**********************************/
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes to_transparent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes to_appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  33% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeUpIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
  }
  33% {
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199.9999px) {
  .super_wrap {
    min-width: 1200px;
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .only_sp {
    display: none;
  }
  .tax-casestudy-cat .index_list_wrap .title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 62px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768.999px) {
  body {
    font-size: 16px;
  }
  .inner {
    padding-left: calc(9.8958333333vw - var(--sb) / 2);
    padding-right: calc(9.8958333333vw - var(--sb) / 2);
  }
  .only_pc {
    display: none;
  }
  .sp_none {
    display: none;
  }
  .sp_column {
    flex-direction: column;
  }
  .sp_column.align_items_center {
    justify-content: center;
  }
  .head_jp {
    margin-bottom: 30px;
  }
  .head_jp > span {
    font-size: 16px;
  }
  .head_jp:before {
    height: 4px;
    margin-bottom: 18px;
  }
  .partners_wrap {
    gap: 5.5555555556vw;
  }
  .partners_wrap > * {
    width: calc(50% - 3.0555555556vw);
    height: auto;
    aspect-ratio: 13/5;
  }
  .view_more > span {
    font-size: 14px;
  }
  .view_more > div {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  .view_more > div:after {
    width: 15px;
    height: 12px;
  }
  .view_more2 {
    max-width: 250px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .view_more2 > span {
    font-size: 14px;
  }
  .view_plus {
    min-width: auto;
    max-width: 310px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
  }
  .news_list_wrap .flex {
    flex-direction: column;
    margin-left: 40px;
    align-items: flex-start;
  }
  .news_list_wrap .cat_wrap {
    margin-bottom: 12px;
  }
  .news_list_wrap .cat_wrap > span {
    margin-left: 0;
    margin-right: auto;
    height: 25px;
    border-radius: 12.5px;
  }
  .cases_wrap {
    justify-content: center;
    gap: 40px;
  }
  .cases_wrap > a {
    width: 100%;
    max-width: 360px;
  }
  .cases_wrap > a:nth-child(2) {
    margin-top: 0;
  }
  .cases_wrap > a:nth-child(n+3):nth-child(odd) {
    margin-top: 0px;
  }
  .index_list_wrap > div {
    width: 100%;
    max-width: 380px;
  }
  .index_list_wrap a {
    width: 100%;
    max-width: 380px;
  }
  .index_list_wrap .thum {
    width: 100%;
    height: auto;
    aspect-ratio: 175/116;
  }
  .scene_wrap {
    flex-direction: column;
  }
  .scene_wrap .img_wrap {
    height: auto;
    width: 100%;
    aspect-ratio: 443/302;
    z-index: 1;
  }
  .scene_wrap .bg {
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .scene_wrap .bg2 {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    display: none;
  }
  .scene_wrap .scene {
    font-size: 14px;
  }
  .scene_wrap .num_wrap {
    padding: 35px 0 13px;
  }
  .scene_wrap .num {
    font-size: 36px;
  }
  .scene_wrap .head {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .scene_wrap .txt {
    font-size: 14px;
  }
  .scene_wrap li {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .scene_wrap li:before {
    font-size: 10px;
    margin-right: 10px;
    margin-top: -2px;
  }
  .scene_wrap .content_wrap {
    margin-left: auto;
    margin-right: auto;
    min-width: auto;
    max-width: none;
    padding: 10px 20px 20px;
    order: 0;
  }
  .scene2 {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .casestudy_filter_wrap {
    width: 100%;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px 15px;
    position: relative;
  }
  .casestudy_filter_wrap > div {
    font-size: 14px;
    margin-left: 0;
  }
  .casestudy_filter_wrap > div:nth-child(2) {
    margin-left: 0;
  }
  .casestudy_filter_wrap .title {
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .casestudy_filter_wrap .cancel_btn_wrap {
    margin-left: auto;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .casestudy_filter_wrap #cancel_btn {
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .casestudy_filter_wrap input[type=radio] {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    margin-right: 11px;
    margin-bottom: -2px;
  }
  .casestudy_filter_wrap input[type=radio]:checked:before {
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .article_list_wrap {
    gap: 20px;
  }
  .article_list_wrap > * {
    width: 100%;
    max-width: 380px;
  }
}
.four04_page section {
  margin-top: 120px;
  padding-bottom: 600px;
}
.four04_page p {
  font-size: 18px;
  line-height: 2.2222222222;
}

/* シェアボタン */
.addtoany_share_save_container.addtoany_content {
  margin-top: 32px;
}

/******************************/
/**********ヘッダー************/
/*****************************/
#header {
  position: relative;
  z-index: 2;
}
#header .inner {
  max-width: none;
  padding-left: 47px;
  padding-right: 32px;
}
#header .header_wrap {
  display: flex;
  align-items: center;
  height: 127px;
}
#header .header_wrap .logo_wrap {
  display: inline-block;
  position: relative;
}
#header .header_wrap .logo_wrap img {
  transition: opacity 0.5s;
}
#header .header_wrap .logo_wrap img:nth-child(1) {
  opacity: 1;
}
#header .header_wrap .logo_wrap img:nth-child(2) {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  display: none;
}
#header .header_wrap .logo_wrap:hover {
  opacity: 1;
}
#header .header_wrap .logo_wrap:hover img:nth-child(1) {
  opacity: 0;
  opacity: 0.8;
  opacity: 0.6;
}
#header .header_wrap .logo_wrap:hover img:nth-child(2) {
  opacity: 1;
}
#header .header_logo_wrap {
  margin-right: auto;
}
#header .header_menu_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 39px;
}
#header .header_menu_list li:hover a {
  opacity: 1;
}
#header .header_menu_list li:hover a:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
#header .header_menu_list li.menu-item-has-children {
  position: relative;
}
#header .header_menu_list li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  padding-top: 28.5px;
}
#header .header_menu_list li.menu-item-has-children ul {
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  opacity: 0;
  visibility: hidden;
  width: 235px;
  transition: all 0.3s ease-in-out;
}
#header .header_menu_list li.menu-item-has-children ul li a {
  justify-content: space-between;
  align-items: center;
  height: 62px;
  background-image: linear-gradient(to left, #0a0a14, #1a1a24);
  transition: all 0.3s ease-in-out;
  padding: 16px 16.4px 16px 22.9px;
  position: relative;
}
#header .header_menu_list li.menu-item-has-children ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform-origin: center;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  background: #fff;
  transform: scale(0);
  z-index: -1;
  height: auto;
  width: auto;
  content: none;
}
#header .header_menu_list li.menu-item-has-children ul li a:after {
  transition: all 0.3s ease-in-out;
  transform: rotate(270deg);
}
#header .header_menu_list li.menu-item-has-children ul li a:hover {
  opacity: 0.8;
}
#header .header_menu_list li.menu-item-has-children ul li a:hover:before {
  transform-origin: center;
  transform: scale(1);
}
#header .header_menu_list li.menu-item-has-children a:after {
  content: "";
  display: block;
  width: 11px;
  height: 7px;
  background: center/cover no-repeat url("../image/header/menu_arrow.svg");
  margin-left: 9px;
}
#header .header_menu_list li a {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
#header .header_menu_list li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: -7px;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
#header .header_menu_list > li:first-child > a {
  pointer-events: none;
}
#header .header_lang_wrap {
  display: flex;
  align-items: center;
  margin-left: 23px;
}
#header .header_lang_wrap > img {
  margin-right: 20px;
}
#header .header_lang_wrap a {
  opacity: 0.5;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#header .header_lang_wrap a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: 0px;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
#header .header_lang_wrap a.active, #header .header_lang_wrap a:hover {
  opacity: 1;
}
#header .header_lang_wrap a.active:before, #header .header_lang_wrap a:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
#header .header_lang_wrap a:last-child {
  margin-left: 15px;
}
#header .header_contact_wrap {
  margin-left: 39px;
}
#header .header_contact_wrap a {
  width: 146px;
  height: 40px;
  border-radius: 20px;
  border: solid 1px #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
#header .header_contact_wrap a:hover {
  color: #00000c;
}

@media screen and (max-width: 1600px) {
  #header .inner {
    padding-left: 17px;
    padding-right: 19px;
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768.999px) {
  #header .inner {
    padding-left: 19px;
    padding-right: 15px;
  }
  #header .header_wrap {
    display: none;
  }
  #header .header_wrap_sp {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 17px;
    padding-bottom: 17px;
  }
  #header .header_wrap_sp .logo_wrap {
    display: inline-block;
    position: relative;
  }
  #header .header_wrap_sp .logo_wrap img {
    transition: opacity 0.5s;
  }
  #header .header_wrap_sp .logo_wrap img:nth-child(1) {
    opacity: 1;
  }
  #header .header_wrap_sp .logo_wrap img:nth-child(2) {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
  #header .header_wrap_sp .logo_wrap:hover {
    opacity: 1;
  }
  #header .header_wrap_sp .logo_wrap:hover img:nth-child(1) {
    opacity: 0;
  }
  #header .header_wrap_sp .logo_wrap:hover img:nth-child(2) {
    opacity: 1;
  }
  #header .hamburger_wrap {
    position: relative;
  }
  #header .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
  }
  #header .menu_btn span:before,
  #header .menu_btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 14px;
    background-color: #fff;
    position: absolute;
    transition: all 0.4s ease;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
  }
  #header .menu_btn span {
    position: relative;
  }
  #header .menu_btn span:before {
    bottom: 2px;
  }
  #header .menu_btn span:after {
    top: 2px;
  }
  #header .header_menu_wrap_sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 49.7222222222vw 8.3333333333vw 8.3333333333vw;
    padding: 97px 8.3333333333vw 8.3333333333vw;
    background-color: #00000c;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    z-index: 100;
    display: flex;
    flex-direction: column;
  }
  #header .header_menu_list_sp {
    list-style: none;
    margin-top: 28.3333333333vw;
    margin-top: 20px;
  }
  #header .header_menu_list_sp .sub-menu {
    list-style: none;
    display: none;
    margin-top: 5.2777777778vw;
  }
  #header .header_menu_list_sp .sub-menu a {
    font-size: 4.4444444444vw;
    color: #B2B2B2;
    display: flex;
    align-items: center;
    height: 6.3888888889vw;
  }
  #header .header_menu_list_sp li {
    margin-bottom: 6.3888888889vw;
  }
  #header .header_menu_list_sp li:last-child {
    margin-bottom: 0;
  }
  #header .header_menu_list_sp li.menu-item-has-children > a {
    position: relative;
    display: inline-flex;
  }
  #header .header_menu_list_sp li.menu-item-has-children > a:before, #header .header_menu_list_sp li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    transform-origin: center;
    right: -7.6111111111vw;
    width: 3.8888888889vw;
    height: 0.2777777778vw;
    transition: all 0.4s ease;
  }
  #header .header_menu_list_sp li.menu-item-has-children > a:after {
    transform: rotate(90deg);
  }
  #header .header_menu_list_sp li.menu-item-has-children > a.active:after {
    transform: rotate(0deg);
  }
  #header .header_menu_list_sp li.menu-item-has-children > a:hover, #header .header_menu_list_sp li.menu-item-has-children > a:active {
    color: #fff;
    opacity: 1;
  }
  #header .header_menu_list_sp a {
    font-size: 6.6666666667vw;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 9.1666666667vw;
    text-transform: uppercase;
  }
  #header .header_contact_wrap {
    margin: 0;
    margin-top: 13.8888888889vw;
    margin-top: auto;
    margin-top: 60px;
  }
  #header .header_contact_wrap a {
    width: 169px;
    height: 50px;
    border-radius: 31px;
  }
  #header .header_lang_wrap {
    margin: 0;
    margin-top: auto;
    margin-top: 40px;
  }
  .open_menu #header .menu_btn span {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.1s ease;
  }
  .open_menu #header .menu_btn span:before {
    bottom: -1px;
    transform: translateX(-50%) rotate(45deg);
  }
  .open_menu #header .menu_btn span:after {
    top: -1px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .open_menu #header .header_wrap_sp .header_logo_wrap {
    z-index: 100000;
  }
  .open_menu #header .header_wrap_sp .header_logo_wrap .logo_wrap img:nth-child(1) {
    opacity: 0;
  }
  .open_menu #header .header_wrap_sp .header_logo_wrap .logo_wrap img:nth-child(2) {
    opacity: 1;
  }
  .open_menu #header .hamburger_wrap {
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 100000;
  }
  .open_menu #header .header_menu_wrap_sp {
    opacity: 1;
    visibility: visible;
    position: fixed;
    transition: opacity 0.5s ease;
  }
}
.front_inner {
  padding-left: 6.25vw;
  padding-right: 6.25vw;
  padding-left: calc(6.25vw - var(--sb) / 2);
  padding-right: calc(6.25vw - var(--sb) / 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.front_mv_section {
  position: relative;
}
.front_mv_section .front_mv_video_wrap {
  position: absolute;
  right: 0;
  top: -127px;
  width: 100vw;
  height: 57.0833333333vw;
  position: fixed;
  top: 0;
}
.front_mv_section .front_mv_video_wrap video {
  width: 100vw;
  height: auto;
  opacity: 0.3;
}
.front_mv_section .front_inner {
  padding-left: 9.6354166667vw;
  padding-top: 4.5833333333vw;
  position: relative;
  z-index: 1;
  padding-top: 4.0625vw;
  padding-top: 3.8541666667vw;
}
.front_mv_section .mv_slider_wrap {
  position: absolute;
  top: 9.8958333333vw;
  display: flex;
  left: 50%;
  transform: translateX(calc(-50% + 19.6354166667vw));
}
.front_mv_section .mv_slider_wrap .swiper-pagination {
  position: relative;
  width: 30px;
  bottom: auto;
  top: 7.2916666667vw;
}
.front_mv_section .mv_slider_wrap .swiper-pagination > span {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  margin-bottom: 14px;
  color: transparent;
  opacity: 1;
  background: none;
  position: relative;
}
.front_mv_section .mv_slider_wrap .swiper-pagination > span:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.front_mv_section .mv_slider_wrap .swiper-pagination > span:after {
  content: "";
  display: block;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}
.front_mv_section .mv_slider_wrap .swiper-pagination > span.swiper-pagination-bullet-active:after {
  opacity: 1;
}
.front_mv_section .mv_slider_wrap .swiper {
  width: 55.2083333333vw;
  height: 29.5833333333vw;
}
.front_mv_section .mv_slider_wrap .swiper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.front_mv_section .p_wrap {
  position: relative;
  z-index: 1;
}
.front_mv_section .p1 {
  font-size: 10.3125vw;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: -0.03em;
  text-align: left;
  color: #fff;
  line-height: 0.88;
}
.front_mv_section .p2 {
  font-size: 2.1875vw;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.08em;
  margin-top: 1.5625vw;
  margin-left: 0.2864583333vw;
  margin-top: 3.5416666667vw;
}
.front_mv_section .p3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.02em;
  margin-top: 15px;
  margin-left: 8px;
}
.front_mv_section .roll_wrap {
  position: absolute;
  top: 2.2916666667vw;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 29.21875vw));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.front_mv_section .roll_wrap > div,
.front_mv_section .roll_wrap a > img {
  transform: scaleY(0.66) rotate(-12deg);
}
.front_mv_section .roll_wrap > div img {
  animation: 90s linear infinite roll;
  width: 13.59375vw;
  height: 13.5416666667vw;
}
.front_mv_section .roll_wrap a {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.front_mv_section .roll_wrap a img {
  width: 1.40625vw;
  height: 1.40625vw;
}

.LPbanner {
  position: relative;
  z-index: 1;
  padding-top: 11.5625vw;
  width: 100%;
  justify-content: center;
  display: flex;
}
.LPbanner .LPbannerImg {
  background: #000;
}
.LPbanner img {
  width: 57.2916666667vw;
  border: 1px solid #363636;
  background: #000;
}

.LPbannerFooter {
  padding-bottom: 3.90625vw;
}

.front_about_section {
  margin-top: 11.5625vw;
}
.front_about_section .flex {
  gap: 0 9.4791666667vw;
}
.front_about_section .left_content {
  padding-top: 175px;
  padding-top: 6.3541666667vw;
}
.front_about_section .right_content {
  padding-top: 113px;
  padding-top: 6.25vw;
  position: relative;
}
.front_about_section h2 {
  font-size: 7.03125vw;
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.02em;
  position: absolute;
  left: -3.5416666667vw;
  top: 37px;
  top: 1.9270833333vw;
  z-index: 1;
  font-weight: 600;
}
.front_about_section h2 span {
  display: block;
}
.front_about_section h3 {
  font-size: 2.7083333333vw;
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 0.02em;
  margin-bottom: 72px;
  margin-bottom: 2.5vw;
  white-space: nowrap;
  font-weight: 700;
}
.front_about_section .p1 {
  font-size: 18px;
  font-weight: normal;
  line-height: 2.33;
  max-width: 510px;
  margin-bottom: 76px;
  margin-bottom: 64px;
}
.front_about_section .img01 {
  width: 44.6875vw;
  height: 46.9270833333vw;
}
.front_about_section .img_wrap1 {
  margin-left: -3.3854166667vw;
  margin-top: 10vw;
  margin-top: 6.3385416667vw;
}
.front_about_section .img_wrap2 {
  margin-top: 9.375vw;
  margin-left: 14.6875vw;
  margin-top: 8.1666666667vw;
}
.front_about_section .img02 {
  width: 26.25vw;
  height: 18.28125vw;
}
.front_about_section .img03 {
  width: 22.8125vw;
  height: 15.5729166667vw;
}

.front_achievements_section {
  position: relative;
  margin-top: 1.875vw;
  margin-top: 36px;
  margin-top: 6.0416666667vw;
}
.front_achievements_section .achievements_bg {
  position: relative;
  height: 49.7395833333vw;
  height: 38.9583333333vw;
}
.front_achievements_section .achievements_bg .achievements_bg_map {
  display: block;
  position: absolute;
  width: 36.4583333333vw;
  height: 41.6145833333vw;
  background: center/cover no-repeat url("../image/front/achievements_bg.png");
  top: -1.8229166667vw;
  left: 21.25vw;
  width: 100%;
  height: auto;
  max-width: 36.4583333333vw;
  min-width: 408px;
  aspect-ratio: 700/779;
}
.front_achievements_section .front_inner {
  padding-left: 9.6354166667vw;
  position: relative;
}
.front_achievements_section .front_inner2nd {
  position: relative;
  top: 10px;
}
.front_achievements_section h2 {
  font-size: 7.03125vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.02em;
  position: relative;
  left: -3.3854166667vw;
  margin-bottom: 51px;
  margin-bottom: 14px;
  margin-bottom: 19px;
  margin-bottom: 0.15625vw;
}
.front_achievements_section h3 {
  font-size: 2.2916666667vw;
  font-weight: 600;
  font-weight: 700;
  line-height: 1.5454545455;
  letter-spacing: 0.02em;
  margin-bottom: 72px;
  margin-bottom: 2.5vw;
  white-space: nowrap;
  position: relative;
  left: -0.2083333333vw;
  margin-top: 77px;
  margin-top: 35px;
  margin-bottom: 2.2916666667vw;
}
.front_achievements_section .p1 {
  font-size: 18px;
  font-size: 0.9375vw;
  font-weight: normal;
  line-height: 2.33;
  max-width: 425px;
  margin-bottom: 76px;
  margin-bottom: 64px;
}
.front_achievements_section .drone_show_record_wrap {
  position: absolute;
  top: 9.4791666667vw;
  left: 50%;
  transform: translateX(calc(-50% + 28.8020833333vw));
}
.front_achievements_section .drone_show_record_wrap .d1 {
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-weight: bold;
  line-height: 1.73;
  letter-spacing: 0.04em;
  margin-bottom: 46px;
  margin-bottom: 27px;
  margin-bottom: 1.40625vw;
}
.front_achievements_section .drone_show_record_wrap .flex {
  align-items: flex-end;
  border-bottom: solid 0.4px #fff;
  padding-bottom: 13px;
  padding-bottom: 0.6770833333vw;
  min-width: 501px;
  min-width: 26.09375vw;
}
.front_achievements_section .drone_show_record_wrap .flex + .flex {
  margin-top: 28px;
  margin-top: 18px;
  margin-bottom: 68px;
  margin-top: 0.9375vw;
  margin-bottom: 3.5416666667vw;
}
.front_achievements_section .drone_show_record_wrap .s1 {
  font-size: 24px;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.front_achievements_section .drone_show_record_wrap .s2 {
  font-size: 99px;
  font-size: 5.8333333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: -15px;
  min-width: 160px;
  text-align: right;
  margin-left: 20px;
  margin-right: 9px;
  margin-bottom: -0.78125vw;
  min-width: 8.3333333333vw;
  margin-left: 1.0416666667vw;
  margin-right: 0.46875vw;
}
.front_achievements_section .drone_show_record_wrap .s3 {
  font-size: 24px;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.front_achievements_section .drone_show_record_wrap .s4 {
  font-size: 12px;
  font-size: 0.625vw;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #999;
  margin-left: auto;
}
.front_achievements_section .drone_show_record_wrap .view_more2_wrap + .view_more2_wrap {
  margin-top: 24px;
  margin-top: 1.25vw;
}

.front_cases_section {
  margin-top: 97px;
  margin-top: 123px;
}
.front_cases_section .left_content {
  min-width: 305px;
  margin-right: auto;
}
.front_cases_section h2 {
  font-size: 4.1666666667vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
  white-space: nowrap;
}
.front_cases_section .head_jp:before {
  content: none;
}
.front_cases_section .p1 {
  font-size: 16px;
  line-height: 1.94;
  max-width: 302px;
  min-width: 302px;
  margin-bottom: 66px;
  margin-bottom: 61px;
}
.front_cases_section .space {
  min-width: 6.7708333333vw;
}
.front_cases_section .cases_wrap {
  width: 100%;
  padding-top: 5.5208333333vw;
}

.front_recruit_section {
  margin-top: 227px;
}
.front_recruit_section h2 {
  font-size: 4.1666666667vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
  white-space: nowrap;
}
.front_recruit_section .head_jp:before {
  content: none;
}
.front_recruit_section .leftContents {
  max-width: 52.5%;
  width: 100%;
  margin-right: 4.4270833333vw;
  flex-shrink: 0;
}
.front_recruit_section .leftContents img {
  width: 100%;
}
.front_recruit_section .front_recruit_section_lead {
  font-size: 36px;
  font-size: 1.875vw;
  font-weight: bold;
  line-height: 1.5454545455;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 2.5vw;
}
.front_recruit_section .front_recruit_section_txt {
  font-size: 20px;
  font-weight: normal;
  line-height: 2.33;
  color: #fff;
  margin-bottom: 2.8645833333vw;
}
.front_recruit_section .view_more2_wrap {
  text-align: right;
}

.front_news_section {
  margin-top: 20.5729166667vw;
  position: relative;
}
.front_news_section .front_news_bg {
  position: absolute;
  width: 93.75vw;
  height: 48.5416666667vw;
  background: center/cover no-repeat url("../image/front/news_bg.png");
  left: 0;
  top: -5.8333333333vw;
}
.front_news_section h2 {
  font-size: 4.1666666667vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
  white-space: nowrap;
}
.front_news_section .head_jp:before {
  content: none;
}
.front_news_section .view_more_wrap {
  position: absolute;
  top: 2.4479166667vw;
  right: 14.4791666667vw;
}
.front_news_section .slide_news_wrap a {
  width: 21.9791666667vw;
}
.front_news_section .slide_news_wrap .thum {
  width: 21.9791666667vw;
  height: 14.5833333333vw;
  width: 100%;
  height: auto;
  aspect-ratio: 211/140;
}
.front_news_section .front_news_swiper {
  position: relative;
}
.front_news_section .swiper {
  padding-right: 5.2083333333vw;
  overflow: visible;
}
.front_news_section .swiper-wrapper {
  height: auto;
}
.front_news_section .swiper-slide {
  width: 21.9791666667vw;
  margin-right: 3.6979166667vw;
}
.front_news_section .swiper-button-next,
.front_news_section .swiper-button-prev {
  color: transparent;
  width: 1.9895833333vw;
  height: 3.9791666667vw;
  border: none;
  top: calc(14.5833333333vw / 2);
}
.front_news_section .swiper-button-next:before,
.front_news_section .swiper-button-prev:before {
  content: "";
  display: block;
  width: 1.9895833333vw;
  height: 3.9791666667vw;
}
.front_news_section .swiper-button-next::after,
.front_news_section .swiper-button-prev::after {
  content: none;
}
.front_news_section .swiper-button-prev {
  left: -1.5625vw;
  right: auto;
}
.front_news_section .swiper-button-prev::before {
  background: center/cover no-repeat url("../image/common/slider_L.svg");
}
.front_news_section .swiper-button-next {
  right: 11.8229166667vw;
  right: 12.7083333333vw;
  right: calc(12.7083333333vw - var(--sb) / 2);
  left: auto;
}
.front_news_section .swiper-button-next::before {
  background: center/cover no-repeat url("../image/common/slider_R.svg");
}

.front_media_section {
  margin-top: 16.4583333333vw;
}
.front_media_section .left_content {
  margin-right: 170px;
}
.front_media_section h2 {
  font-size: 4.1666666667vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
  white-space: nowrap;
}
.front_media_section .head_jp:before {
  content: none;
}
.front_media_section .p1 {
  font-size: 16px;
  line-height: 1.94;
  max-width: 302px;
  min-width: 302px;
  margin-bottom: 66px;
  margin-bottom: 61px;
}
.front_media_section .news_list_wrap {
  width: 100%;
}
.front_media_section .view_more_wrap {
  margin-top: 74px;
}
.front_media_section .view_more_wrap a {
  justify-content: flex-end;
}

.front_partners_section {
  position: relative;
  padding-top: 8.59375vw;
  padding-bottom: 8.59375vw;
  text-align: center;
  margin-top: 8.0729166667vw;
}
.front_partners_section .front_partners_bg,
.front_partners_section .front_partners_cover {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  -webkit-clip-path: url(#clipshape);
          clip-path: url(#clipshape);
}
.front_partners_section .front_partners_bg {
  background: center/cover no-repeat url("../image/front/partners_bg.png");
}
.front_partners_section .front_partners_cover {
  background-color: rgba(0, 0, 0, 0.57);
}
.front_partners_section .g_line {
  margin-left: auto;
  margin-right: auto;
}
.front_partners_section h2 {
  font-size: 4.1666666667vw;
  font-size: 2.5vw;
  font-weight: 500;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
}
.front_partners_section .head_jp:before {
  content: none;
}
.front_partners_section .partners_wrap {
  margin-top: 5.3125vw;
  margin-top: 3.3333333333vw;
}
.front_partners_section .sponser_wrap {
  margin-top: 5.3125vw;
}

@media screen and (max-width: 1600px) {
  .front_achievements_section {
    margin-top: 75px;
    margin-top: 48px;
  }
  .front_achievements_section .achievements_bg .achievements_bg_map {
    top: -14px;
  }
  .front_achievements_section h2 {
    margin-bottom: 5px;
  }
  .front_cases_section .space {
    min-width: 58px;
  }
}
@media screen and (max-width: 1360px) {
  .front_about_section .p1 {
    font-size: 16px;
    line-height: 2.375;
  }
  .front_achievements_section {
    margin-top: 88px;
    margin-top: 64px;
  }
  .front_achievements_section .achievements_bg {
    height: calc(49.7395833333vw + 60px);
  }
  .front_achievements_section .achievements_bg .achievements_bg_map {
    top: -11px;
  }
  .front_achievements_section .p1 {
    max-width: 366px;
    font-size: 16px;
  }
  .front_cases_section {
    margin-top: 82px;
  }
  .front_cases_section .left_content {
    min-width: 256px;
  }
  .front_cases_section .space {
    min-width: 49px;
  }
  .front_cases_section .p1 {
    max-width: 256px;
    min-width: 256px;
  }
  .front_recruit_section .front_recruit_section_txt {
    font-size: 16px;
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .front_about_section .front_inner {
    padding-left: 9.6354166667vw;
  }
  .front_about_section .head_jp {
    margin-bottom: 2.65625vw;
  }
  .front_achievements_section .head_jp {
    margin-bottom: 2.6041666667vw;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768.999px) {
  .front_inner {
    padding-left: 8.3333333333vw;
    padding-right: 8.3333333333vw;
  }
  .front_mv_section .front_inner {
    padding-top: 28.3333333333vw;
    padding-top: 32.7777777778vw;
    padding-left: 8.3333333333vw;
    padding-bottom: 46.6388888889vw;
    padding-top: 13.8888888889vw;
  }
  .front_mv_section .front_mv_video_wrap {
    width: 100vw;
    height: 205.8333333333vw;
    top: -77px;
    position: fixed;
    top: 0;
  }
  .front_mv_section .front_mv_video_wrap img {
    position: absolute;
    width: 365.8333333333vw;
    height: 205.8333333333vw;
    width: 100vw;
    height: 205.8333333333vw;
    top: 0;
    right: 0;
  }
  .front_mv_section .mv_slider_wrap {
    left: 17.9444444444vw;
    right: 4.1666666667vw;
    right: auto;
    top: 67.3611111111vw;
    flex-direction: column;
    transform: none;
    top: 48.4722222222vw;
  }
  .front_mv_section .mv_slider_wrap .swiper {
    width: 77.8972222222vw;
    height: 41.7555555556vw;
  }
  .front_mv_section .mv_slider_wrap .swiper-pagination {
    width: 100%;
    bottom: auto;
    top: 59.1944444444vw;
    left: -9.7222222222vw;
    display: flex;
  }
  .front_mv_section .mv_slider_wrap .swiper-pagination > span {
    width: 22px;
    height: 22px;
    margin: 0;
    margin-right: 10px;
  }
  .front_mv_section .mv_slider_wrap .swiper-pagination > span:before {
    width: 6px;
    height: 6px;
  }
  .front_mv_section .mv_slider_wrap .swiper-pagination > span::after {
    width: 22px;
    height: 22px;
  }
  .front_mv_section .roll_wrap {
    display: none;
  }
  .front_mv_section .p1 {
    font-size: 16.1111111111vw;
    margin-bottom: 39.25vw;
    margin-bottom: 45vw;
  }
  .front_mv_section .p2 {
    font-size: 5vw;
  }
  .front_mv_section .p3 {
    font-size: 3.0555555556vw;
  }
  .LPbanner {
    padding-bottom: 19.4444444444vw;
  }
  .LPbanner img {
    width: 76.3888888889vw;
  }
  .front_about_section .flex {
    flex-direction: column;
  }
  .front_about_section .left_content {
    order: 5;
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
  .front_about_section .right_content {
    padding-top: 17.2222222222vw;
  }
  .front_about_section h2 {
    font-size: 11.1111111111vw;
    left: 0;
  }
  .front_about_section h3 {
    font-size: 4.1666666667vw;
    margin-bottom: 8.8888888889vw;
  }
  .front_about_section .img01 {
    width: 83.3333333333vw;
    height: 87.5vw;
  }
  .front_about_section .img_wrap1 {
    margin-left: auto;
    margin-top: 0;
    order: -1;
    margin-bottom: 16.6666666667vw;
  }
  .front_about_section .img_wrap2 {
    margin-top: 5.5555555556vw;
    margin-left: 0;
  }
  .front_about_section .img02 {
    width: 50vw;
    height: 34.7222222222vw;
  }
  .front_about_section .img03 {
    width: 50vw;
    height: 34.1666666667vw;
  }
  .front_about_section .p1 {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .front_achievements_section h2 {
    font-size: 11.1111111111vw;
    left: 0;
  }
  .front_achievements_section h3 {
    font-size: 4.1666666667vw;
    margin-bottom: 8.8888888889vw;
  }
  .front_achievements_section .p1 {
    font-size: 14px;
    margin-bottom: 8.8888888889vw;
  }
  .front_achievements_section .drone_show_record_wrap {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    order: 10;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
  .front_achievements_section .drone_show_record_wrap .flex {
    min-width: auto;
  }
  .front_achievements_section .drone_show_record_wrap .flex + .flex {
    margin-top: 20px;
  }
  .front_achievements_section .drone_show_record_wrap .d1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .front_achievements_section .drone_show_record_wrap .s1 {
    font-size: 20px;
  }
  .front_achievements_section .drone_show_record_wrap .s2 {
    font-size: 50px;
    min-width: auto;
    margin-left: 6px;
    margin-bottom: -7px;
  }
  .front_achievements_section .drone_show_record_wrap .s3 {
    font-size: 20px;
  }
  .front_achievements_section .drone_show_record_wrap .s4 {
    font-size: 10px;
    transform: scale(0.9);
  }
  .front_achievements_section .achievements_bg {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .front_achievements_section .achievements_bg .achievements_bg_map {
    position: relative;
    order: 9;
    width: 100%;
    height: auto;
    top: 0;
    margin-bottom: 40px;
    left: 0;
    aspect-ratio: 700/779;
    max-width: none;
    min-width: auto;
  }
  .front_achievements_section .view_more2_wrap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .front_cases_section h2 {
    font-size: 11.1111111111vw;
  }
  .front_cases_section .flex {
    flex-direction: column;
  }
  .front_cases_section .p1 {
    max-width: none;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .front_cases_section .cases_wrap {
    padding-top: 0;
    margin-top: 40px;
  }
  .front_recruit_section {
    margin-top: 100px;
  }
  .front_recruit_section h2 {
    font-size: 11.1111111111vw;
  }
  .front_recruit_section .flex {
    flex-direction: column;
  }
  .front_recruit_section .leftContents {
    max-width: 100%;
    margin-right: 0vw;
    margin-bottom: 5.5555555556vw;
  }
  .front_recruit_section .front_recruit_section_lead {
    font-size: 25px;
    line-height: 1.72;
    margin-bottom: 5.2777777778vw;
  }
  .front_recruit_section .front_recruit_section_txt {
    font-size: 14px;
    line-height: 2.04;
    margin-bottom: 8.3333333333vw;
  }
  .front_recruit_section .view_more2_wrap {
    text-align: center;
  }
  .front_news_section {
    margin-top: 160px;
  }
  .front_news_section .front_news_bg {
    height: 112%;
    width: 200%;
    background-position: top right;
    left: auto;
    right: -60%;
    top: -50px;
  }
  .front_news_section h2 {
    font-size: 11.1111111111vw;
  }
  .front_news_section .swiper {
    padding-right: 0;
  }
  .front_news_section .slide_news_wrap a {
    width: 72.2222222222vw;
  }
  .front_news_section .swiper-slide {
    margin-right: 0;
  }
  .front_news_section .swiper-slide.dummy {
    display: none;
  }
  .front_news_section .swiper-button-next,
  .front_news_section .swiper-button-prev {
    display: none;
  }
  .front_news_section .view_more_wrap {
    position: relative;
    top: 0;
    right: 0;
    text-align: right;
    margin-top: 40px;
  }
  .front_media_section .front_inner > .flex {
    flex-direction: column;
  }
  .front_media_section h2 {
    font-size: 11.1111111111vw;
  }
  .front_media_section .p1 {
    font-size: 14px;
  }
  .front_media_section .left_content {
    margin-right: auto;
  }
  .front_media_section .view_more_wrap {
    margin-top: 40px;
  }
  .front_partners_section {
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 60px;
  }
  .front_partners_section h2 {
    font-size: 28px;
  }
  .front_partners_section .front_partners_bg,
  .front_partners_section .front_partners_cover {
    height: 100%;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .front_partners_section .partners_wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 499px) {
  .front_recruit_section .front_recruit_section_lead {
    font-size: 6.9444444444vw;
  }
  .front_recruit_section .front_recruit_section_txt {
    font-size: 3.8888888889vw;
  }
}
.common_page {
  position: relative;
}
.common_page main section {
  position: relative;
}
.common_page .toc_target {
  position: relative;
}
.common_page .toc_target > div {
  position: absolute;
  top: -100px;
}
.common_page .toc_wrapper {
  min-width: 19.0625vw;
  min-width: 13.3333333333vw;
}
.common_page .toc_wrapper ul {
  list-style: none;
}
.common_page .toc_wrapper span {
  width: 29px;
  height: 29px;
  min-width: 29px;
  position: relative;
  margin-right: 9px;
}
.common_page .toc_wrapper span:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.common_page .toc_wrapper span::after {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: center/cover no-repeat url("../image/common/toc_ring.svg");
  opacity: 0;
  transition: opacity 0.5s ease;
}
.common_page .toc_wrapper a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-size: 0.78125vw;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.13;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.common_page .toc_wrapper a:hover, .common_page .toc_wrapper a.active {
  opacity: 1;
}
.common_page .toc_wrapper a:hover span:after, .common_page .toc_wrapper a.active span:after {
  opacity: 1;
}
.common_page h2 {
  font-size: 3.125vw;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.02em;
  position: relative;
  margin-top: 0.3125vw;
  margin-bottom: -0.5208333333vw;
}
.common_page .head_jp:before {
  content: none;
}
.common_page .head_jp span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.94;
  letter-spacing: 0.1em;
}
.common_page h3 {
  font-size: 2.0833333333vw;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.under_page_mv {
  position: relative;
}
.under_page_mv .inner {
  padding-top: 6.6145833333vw;
}
.under_page_mv .jp_title {
  font-size: 1.0416666667vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  margin-bottom: 0.625vw;
  margin-left: 0.4010416667vw;
}
.under_page_mv .eng_title {
  font-size: 6.5625vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.under_page_breadcrumbs {
  margin-top: 1.6145833333vw;
  padding-bottom: 0.6770833333vw;
  position: relative;
  color: #b2b2b2;
}
.under_page_breadcrumbs .breadcrumbs {
  text-align: right;
  font-size: 12px;
  font-weight: normal;
  line-height: 6.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.under_page_breadcrumbs .breadcrumbs span[property=name] {
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.under_page_breadcrumbs a {
  color: #b2b2b2;
}

.under_page_mv_bg {
  position: relative;
}
.under_page_mv_bg > div {
  position: fixed;
  width: 100vw;
  height: 41.25vw;
  top: 0;
  left: 0;
  background: center/cover no-repeat url("../image/page/mv_bg.png");
}

.single_page {
  padding-bottom: 200px;
}
.single_page main {
  padding-bottom: 20px;
}

h1.single_content_title {
  font-size: 42px;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.48;
  letter-spacing: 0.06em;
  margin-top: 30px;
}

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

.single_date_wrap {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.73;
  letter-spacing: 0.03em;
  color: #b2b2b2;
  margin-right: 18.3px;
}

.single_cat_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.single_cat_wrap > * {
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 15.8px;
  height: 32.4px;
  border: solid 0.5px #fff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single_content {
  margin-top: 41.7px;
}
.single_content > * {
  margin-top: 40px;
}
.single_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
}
.single_content img {
  max-width: 100%;
  height: auto;
}
.single_content .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}
.single_content a {
  text-decoration: underline;
}
.single_content h2 {
  font-size: 28px;
  margin-top: 40px;
}
.single_content h3 {
  font-size: 22px;
}
.single_content .epb-underline-yellow {
  background: linear-gradient(transparent 60%, #ff8c00 0) !important;
}
.single_content ul,
.single_content ol {
  margin-left: 1em;
}
.single_content .epb-box__body {
  background-color: #000 !important;
}

.index_page main {
  padding-bottom: 234px;
}
.index_page .index_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5.8854166667vw 3.0208333333vw;
}
.index_page .view_plus_wrap {
  margin-top: 160px;
  margin-top: 74px;
  text-align: center;
}

/****************************/
/**********340pxスマホ************/
/***************************/
@media screen and (max-width: 340px) {
  .front_achievements_section .drone_show_record_wrap .s2 {
    font-size: 43px;
    min-width: auto;
    margin-left: 6px;
    margin-bottom: -7px;
  }
  .front_achievements_section .drone_show_record_wrap .s1 {
    font-size: 18px;
  }
  .front_achievements_section .drone_show_record_wrap .s3 {
    font-size: 18px;
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
@media screen and (max-width: 1360px) {
  .common_page .toc_wrapper {
    min-width: 182px;
  }
}
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .page_toc_content_wrap {
    display: flex;
  }
  .page_inner {
    padding-left: 0;
    padding-right: 0;
  }
  .common_page {
    position: relative;
  }
  .common_page main {
    border-left: rgba(255, 255, 255, 0.7) 0.25px solid;
    border-left: rgba(255, 255, 255, 0.3) 1px solid;
    padding-left: 5.7291666667vw;
    width: 100%;
    border-left: none;
    padding-left: 4.7291666667vw;
  }
  .common_page .toc_wrapper a {
    font-size: 0.82vw;
  }
  .under_page_breadcrumbs .inner {
    padding-right: 6.25vw;
  }
  .index_page_index_list .index_list_wrap > * {
    width: calc(33% - 2.0138541667vw);
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768.999px) {
  .common_page .toc_target > div {
    top: -80px;
  }
  .common_page .toc_wrapper {
    min-width: auto;
    margin-bottom: 40px;
  }
  .common_page .toc_wrapper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  .common_page .toc_wrapper li {
    width: calc(50% - 20px);
  }
  .common_page .toc_wrapper a {
    font-size: 10px;
    line-height: 1.4;
  }
  .common_page .toc_wrapper span {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .common_page .toc_wrapper span:before {
    width: 4px;
    height: 4px;
  }
  .common_page .toc_wrapper span:after {
    width: 20px;
    height: 20px;
  }
  .common_page section.page_mv_image .img_wrap {
    width: 100%;
  }
  .common_page section.page_mv_image .img_wrap:before {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
  }
  .common_page main section {
    margin-top: 80px;
  }
  .common_page h2 {
    font-size: 8.3333333333vw;
  }
  .common_page h3 {
    font-size: 6.6666666667vw;
  }
  .under_page_breadcrumbs {
    margin-top: 8.6111111111vw;
    padding-bottom: 11.1111111111vw;
  }
  .under_page_breadcrumbs .breadcrumbs {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: -0.05em;
  }
  .under_page_mv .inner {
    padding-top: 13.8888888889vw;
  }
  .under_page_mv .jp_title {
    font-size: 3.8888888889vw;
    line-height: 1;
  }
  .under_page_mv .eng_title {
    font-size: 11.1111111111vw;
    line-height: 1;
  }
  .index_page .page_toc_content_wrap {
    display: flex;
    flex-direction: column;
  }
  .index_page .toc_wrapper {
    margin-top: 40px;
  }
  .index_page main {
    padding-bottom: 60px;
    order: -1;
  }
  .index_page .index_list_wrap {
    gap: 60px 20px;
    justify-content: center;
  }
  .index_page .index_list_wrap .dummy {
    display: none;
  }
  .index_page .view_plus_wrap {
    margin-top: 80px;
  }
  h1.single_content_title {
    font-size: 24px;
  }
  .single_date_wrap {
    font-size: 12px;
  }
  .single_cat_wrap > * {
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 13px;
    height: 26px;
    font-size: 12px;
  }
  .single_page {
    padding-bottom: 60px;
  }
  .single_page .page_toc_content_wrap {
    display: flex;
    flex-direction: column;
  }
  .single_page main {
    order: -1;
  }
  .single_page .toc_wrapper {
    margin-top: 40px;
  }
  .single_content {
    margin-top: 40px;
  }
  .single_content p {
    font-size: 14px;
  }
  .single_content p + p {
    margin-top: 18px;
  }
}
/******************************/
/**********フッター************/
/*****************************/
.footer_contact_section {
  position: relative;
}
.footer_contact_section .footer_contact_bg {
  position: absolute;
  top: 0;
  left: 6.25vw;
  width: 1800px;
  width: 93.75vw;
  height: 283px;
  background: bottom left/cover no-repeat url("../image/footer/contact_bg.svg");
}
.footer_contact_section .flex {
  align-items: center;
  height: 100%;
}
.footer_contact_section h2 {
  font-size: 3.2291666667vw;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: -1.0416666667vw;
}
.footer_contact_section .head_jp {
  margin-bottom: 0;
}
.footer_contact_section .head_jp:before {
  content: none;
}
.footer_contact_section .view_more_wrap {
  margin-left: auto;
}
.footer_contact_section .p1 {
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.3333333333;
  margin-left: auto;
  margin-right: auto;
}

.footer_menu_list {
  display: flex;
  gap: 0 37px;
  justify-content: flex-end;
  list-style: none;
  line-height: 1;
}
.footer_menu_list .sub-menu {
  display: none;
}
.footer_menu_list a {
  letter-spacing: 0.05em;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.footer_menu2 {
  margin-top: 30px;
}
.footer_menu2 a {
  color: #7f7f85;
  font-size: 16px;
  text-transform: uppercase;
}

#footer {
  min-height: 430px;
  padding-top: 117px;
  position: relative;
  background: #000;
}
#footer .footer_content {
  position: relative;
}
#footer .footer_w_menu_wrap {
  margin-left: auto;
  margin-top: 35px;
}
#footer .follow_us {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 19px;
  margin-top: 67px;
}
#footer .footer_sns_wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
#footer .footer_copyright {
  margin-top: 33px;
  font-size: 13px;
  line-height: 1;
  color: #7f7f85;
  padding-bottom: 8px;
}

#to_top {
  position: absolute;
  right: 0;
  bottom: 0;
}

#go_top {
  position: relative;
  width: 118px;
  height: 118px;
  cursor: pointer;
}
#go_top .img_wrap img {
  animation: 30s linear infinite roll;
}
#go_top > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .footer_contact_section {
    height: 283px;
  }
  .footer_contact_section .footer_inner {
    padding-left: 14.1666666667vw;
    height: 100%;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768.999px) {
  .footer_contact_section {
    height: auto;
    padding-top: 60px;
  }
  .footer_contact_section .footer_contact_bg {
    height: 100%;
    width: 100vw;
    left: -100vw;
    height: 100%;
    width: 1800px;
    left: -100%;
  }
  .footer_contact_section h2 {
    font-size: 11.1111111111vw;
  }
  .footer_contact_section .p1 {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .footer_contact_section .flex {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 50px;
  }
  #footer {
    margin-top: 60px;
    min-height: auto;
  }
  #footer .footer_content {
    padding-bottom: 140px;
    padding-bottom: 40px;
  }
  #footer .footer_content .flex {
    flex-direction: column;
  }
  #footer .footer_meta {
    text-align: center;
  }
  #footer .footer_menu_list {
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: center;
  }
  #footer .footer_menu_list li {
    text-align: center;
  }
  #footer .footer_menu_list > li {
    width: calc(33% - 10px);
  }
  #footer .footer_menu_list a {
    font-size: 14px;
    white-space: nowrap;
  }
  #footer .follow_us {
    margin-top: 10px;
  }
  #footer .footer_menu2 li {
    text-align: center;
  }
  #footer_menu_list > li:first-child {
    width: 100%;
  }
  #to_top {
    position: relative;
    margin-top: 40px;
  }
  #go_top {
    width: 80px;
    height: 80px;
    margin-left: auto;
  }
  #go_top .img_wrap img {
    width: 80px;
    height: 80px;
  }
}/*# sourceMappingURL=style.css.map */