@charset "UTF-8";
.fadein {
  opacity: 0;
  transition: all ease 0.5s;
  transition-delay: 0.3s;
}

.fadein.active {
  opacity: 1;
  transition: all ease 1s;
}

@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
}

.bottom_to_top.active {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bottom_to_tops > * {
  opacity: 0;
}

picture.bottom_to_top {
  display: block;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.1s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.3s;
}
.bottom_to_tops.active > *:nth-child(5) {
  animation-delay: 0.4s;
}
.bottom_to_tops.active > *:nth-child(6) {
  animation-delay: 0.5s;
}
.bottom_to_tops.active > *:nth-child(7) {
  animation-delay: 0.6s;
}
.bottom_to_tops.active > *:nth-child(8) {
  animation-delay: 0.7s;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_rightd {
  opacity: 0;
}
.left_to_rightd:before {
  opacity: 0;
  transform: scale(0);
  transform-origin: left top;
  transition: all ease 0.3s;
  transition-delay: 1.3s;
}

.left_to_rightd.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.left_to_rightd.active:before {
  opacity: 1;
  transform: scale(1);
}

@keyframes right_to_leftd {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes top_to_bottom {
  0% {
    transform: translate3d(0, -3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.top_to_bottom {
  opacity: 0;
}

.top_to_bottom.active {
  animation: top_to_bottom 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: #000;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
}

.show_text {
  position: relative;
  transition: -webkit-clip-path 1s cubic-bezier(0.32, 0.63, 0.39, 0.96) 0.1s;
  transition: clip-path 1s cubic-bezier(0.32, 0.63, 0.39, 0.96) 0.1s;
  transition: clip-path 1s cubic-bezier(0.32, 0.63, 0.39, 0.96) 0.1s, -webkit-clip-path 1s cubic-bezier(0.32, 0.63, 0.39, 0.96) 0.1s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  overflow: hidden;
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.growfadein {
  opacity: 0;
  transform: scale(1.1);
}

.growfadein.active {
  opacity: 0;
  animation: growfade 1s ease 0.2s forwards;
  transform: scale(1.1);
  filter: drop-shadow(5px 5px 1vw #fff);
}

@keyframes growfade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    filter: brightness(1330%) drop-shadow(5px 5px 1vw #fff);
  }
  70% {
    opacity: 1;
    filter: brightness(100%) drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }
  100% {
    opacity: 1;
    filter: brightness(100%) drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }
}
html, body {
  background-color: #000;
  color: #2e2624;
  font-feature-settings: "palt" 1;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  padding: 0;
  letter-spacing: 0.01em;
  margin: 0;
  scroll-behavior: smooth;
}

@media screen and (max-width: 959px) {
  html body {
    font-size: 1.65vw;
  }
}
@media screen and (max-width: 679px) {
  html body {
    font-size: 1.8vw;
    font-size: 3.5vw;
  }
}
.rwd_show {
  display: none;
}

@media screen and (max-width: 800px) {
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
}
.rwd_show_1000 {
  display: none;
}

@media screen and (max-width: 1000px) {
  .rwd_show_1000 {
    display: inline;
  }
}
.wrap {
  width: 900px;
  padding: 0 50px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .wrap {
    max-width: none;
    width: auto;
  }
  .swrap {
    max-width: none;
    padding: 0 5vw;
  }
}
a {
  color: #fff;
  text-decoration: none;
}

img {
  backface-visibility: visible;
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, figure, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.test {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0.5;
  top: 0;
}

.page_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.page_header .wrap {
  width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
}
.page_header .logo {
  width: 11rem;
}
.page_header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.page_header nav ul li a {
  display: block;
  color: #fff;
  padding: 1.4em 0;
  padding-top: 2.5em;
  padding-bottom: 0.5em;
  width: 9em;
  text-align: center;
  border-left: 2px solid #fff;
  font-size: 0.85rem;
}
.page_header nav ul li:last-child a {
  border-right: 2px solid #fff;
}

@media screen and (max-width: 1300px) {
  .page_header .wrap {
    width: auto;
  }
}
@media screen and (max-width: 960px) {
  .page_header .wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 959px) {
  .page_header .logo {
    margin-top: 1.5rem;
  }
  .page_header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.3s;
    transform: translate3d(0, -3rem, 0);
  }
  .page_header nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  .page_header nav ul {
    flex-direction: column;
  }
  .page_header nav ul li a {
    border-left: 0;
  }
  .page_header nav ul li:last-child a {
    border-right: 0;
  }
  .page_header nav ul li a {
    padding: 1.2em 0;
    font-size: 130%;
  }
}
.sp_button {
  display: none;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  width: 2.5rem;
  height: 2.5rem;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 200;
}
.sp_button > span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  transition: all ease 0.3s;
}
.sp_button > span:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  top: -0.7em;
  left: 0;
  transition: all ease 0.3s;
}
.sp_button > span:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  bottom: calc(-0.7em - 1px);
  left: 0;
  transition: all ease 0.3s;
}
.sp_button.open > span {
  background-color: transparent;
}
.sp_button.open > span:before {
  top: 0;
  transform: rotate(45deg);
}
.sp_button.open > span:after {
  top: 0;
  transform: rotate(-45deg);
}

@media screen and (max-width: 959px) {
  .sp_button {
    display: block;
  }
}
.page_contents {
  overflow: hidden;
}

.mv {
  color: #fff;
  position: relative;
}
.mv .mv_in {
  position: absolute;
  top: 11vw;
  width: 100%;
}
.mv .wrap {
  position: relative;
  width: 65rem;
  z-index: 3;
}
.mv p {
  font-size: 150%;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
  margin-left: 0.5em;
}
.mv h1 {
  width: 38%;
  margin-left: 0;
}
.mv > figure {
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.mv > figure img {
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .mv h1 {
    width: 35%;
  }
}
@media screen and (max-width: 1100px) {
  .mv h1 {
    width: 31%;
  }
}
@media screen and (max-width: 960px) {
  .mv h1 {
    width: 36vw;
  }
  .mv p {
    font-size: 140%;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 679px) {
  .mv figure {
    width: 100%;
    margin-left: 0%;
    padding-top: 0;
  }
  .mv .wrap {
    width: auto;
  }
  .mv .mv_in {
    top: 24vw;
    width: auto;
  }
  .mv p {
    font-size: 182%;
  }
  .mv .wrap {
    padding: 0 8vw;
  }
  .mv h1 {
    width: 76vw;
  }
}
.news {
  padding-top: 2rem;
  position: relative;
  z-index: 3;
  padding-bottom: 2rem;
  margin-top: -6rem;
}
.news h2 {
  color: #fff;
  text-align: center;
  font-size: 300%;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0.2em;
}
.news .wrap {
  width: 44rem;
}
.news ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.news ul li {
  background-color: #fff;
  margin-bottom: 0.7rem;
}
.news ul li a {
  color: #00164a;
  display: block;
  display: flex;
  gap: 1em;
  padding: 0.5em 0.7em;
}
@media screen and (max-width: 800px) {
  .news .wrap {
    width: auto;
  }
}
@media screen and (max-width: 679px) {
  .news {
    margin-top: -1rem;
  }
}
@media screen and (max-width: 600px) {
  .news ul li a {
    flex-direction: column;
    gap: 0.5em;
  }
}
.more_wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.more {
  background-color: #11b8d6;
  color: #fff;
  padding: 0.6em 0;
  width: 13em;
  display: block;
  text-align: center;
  position: relative;
  font-size: 110%;
  -webkit-clip-path: polygon(5.6% 0%, 94.4% 0%, 100% 50%, 94.4% 100%, 5.6% 100%, 0% 50%);
          clip-path: polygon(5.6% 0%, 94.4% 0%, 100% 50%, 94.4% 100%, 5.6% 100%, 0% 50%);
  transition: all ease 0.3s;
  transform: scale(1);
  /*
  svg:nth-child(1){
  	position: absolute;
  	left:99.8%;;
  	right:0;
  	height:100%;
  	width:1rem;
  	top:0;
  	transform:rotate(180deg);
  	polygon{
  		width: 100%;
  	}
  }
  svg:nth-child(2){
  	position: absolute;
  	right:99.8%;
  	height:100%;
  	width:1rem;
  	top:0;
  	polygon{
  		width: 100%;
  	}
  }*/
}
.more:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 679px) {
  .more {
    font-size: 130%;
    width: 15em;
  }
  .more_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.features {
  padding: 3rem 0;
  padding-bottom: 7rem;
}
.features h2 {
  color: #fff;
  font-size: 260%;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.features .features_in {
  margin-bottom: 3rem;
}
.features .f_box_w {
  position: relative;
  margin-bottom: 1rem;
}
.features .f_box_w:nth-child(2n) .f_box {
  text-align: right;
  -webkit-clip-path: polygon(0% 50%, 10.7% 0%, 100% 0%, 100% 100%, 10.7% 100%);
          clip-path: polygon(0% 50%, 10.7% 0%, 100% 0%, 100% 100%, 10.7% 100%);
}
.features .f_box_w:nth-child(2n) .f_box > figure {
  left: 2%;
  width: 53%;
  right: auto;
}
.features .f_box_w:nth-child(2n+1):before {
  content: "";
  width: calc((100vw - 900px) / 2);
  width: 17em;
  height: 100%;
  background-color: #fff;
  background: linear-gradient(to right, transparent 0, #fff 76%, #fff);
  position: absolute;
  top: 0;
  right: 99%;
}
.features .f_box_w:nth-child(2n):before {
  content: "";
  width: calc((100vw - 900px) / 2);
  width: 17em;
  height: 100%;
  background-color: #fff;
  background: linear-gradient(to left, transparent 0, #fff 76%, #fff);
  position: absolute;
  top: 0;
  left: 99%;
}
.features .f_box {
  background-color: #fff;
  padding: 2.2rem 3rem;
  color: #00164a;
  -webkit-clip-path: polygon(100% 50%, 89.3% 0%, 0% 0%, 0% 100%, 89.3% 100%);
          clip-path: polygon(100% 50%, 89.3% 0%, 0% 0%, 0% 100%, 89.3% 100%);
}
.features .f_box > figure {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 64%;
}
.features .f_box > figure img {
  width: 100%;
}
.features .f_box .point {
  font-weight: bold;
  font-size: 190%;
}
.features .f_box .desc {
  font-size: 107%;
  font-weight: normal;
}
.features .f_box h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 180%;
  line-height: 1.3;
}

.features .f_box_w .f_box.f_box3 > figure {
  width: 54%;
}

.features .f_box_w .f_box.f_box4 > figure {
  width: 51%;
  left: 11%;
}

@media screen and (max-width: 960px) {
  .features .f_box_w:nth-child(2n+1):before {
    width: 50vw;
  }
  .features .f_box_w:nth-child(2n):before {
    width: 50vw;
  }
  .features .f_box_w .f_box.f_box3 > figure {
    width: 52%;
  }
  .features .wrap {
    padding: 0 30px;
  }
}
@media screen and (max-width: 800px) {
  .features .f_box > figure {
    width: 61%;
  }
}
@media screen and (max-width: 680px) {
  .features .f_box_w {
    margin-left: -30px;
    margin-right: -30px;
  }
  .features .f_box {
    padding-left: 30px;
  }
  .features .f_box_w:nth-child(2n) .f_box {
    padding-right: 30px;
  }
}
@media screen and (max-width: 679px) {
  .features .f_box > figure {
    position: relative;
    left: auto;
    bottom: auto;
    margin-right: -3rem;
    width: calc(100% + 2rem);
    margin-bottom: -2.2rem;
  }
  .features .f_box .desc br {
    display: none;
  }
  .features .f_box_w:nth-child(2n) .f_box > figure {
    position: relative;
    left: auto;
    bottom: auto;
    margin-right: -3rem;
    width: calc(100% + 3rem);
    margin-bottom: -2.2rem;
  }
  .features .f_box {
    margin-right: -15px;
  }
  .features .f_box_w:nth-child(2n) .f_box {
    margin-right: 0;
    margin-left: -15px;
  }
  .features .f_box_w:nth-child(2n) .f_box > figure {
    width: 100%;
  }
  .features .f_box_w .f_box.f_box3 > figure {
    width: 100%;
  }
}
.area_desc {
  background-color: #005469;
  padding: 6rem 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #fff;
}
.area_desc:before {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-image: url(../img/mask.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.area_desc:after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-image: url(../img/mask2.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 100%;
}
.area_desc .wrap {
  width: 49rem;
}
.area_desc .area_f {
  display: flex;
  margin-bottom: 4rem;
  margin-top: -5rem;
  align-items: flex-end;
  margin-right: -24%;
  gap: 1rem;
  margin-left: -6%;
}
.area_desc .area_f figure:first-child {
  flex: 0 1 37%;
}
.area_desc .area_f figure:last-child {
  flex: 1;
}
.area_desc .area_f figure img {
  width: 100%;
}
.area_desc h3 {
  font-size: 160%;
  margin-bottom: 1rem;
}
.area_desc .area_descdb {
  font-size: 85%;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .area_desc .area_f {
    margin-right: -16%;
  }
  .area_desc .area_f {
    margin-top: -3rem;
  }
}
@media screen and (max-width: 1110px) {
  .area_desc .area_f {
    margin-right: -8%;
  }
  .area_desc .area_f {
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .area_desc .wrap {
    width: auto;
  }
  .area_desc .area_f {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 679px) {
  .area_desc:before {
    height: 2rem;
  }
  .area_desc:after {
    height: 3rem;
  }
  .area_descdt br {
    display: none;
  }
  .area_desc .area_f {
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
  }
  .area_desc .area_f figure:last-child {
    margin-left: -8rem;
    margin-right: -8rem;
    width: calc(100% + 16rem);
    margin-top: 2rem;
  }
  .area_desc .area_f figure:first-child {
    width: 100%;
  }
  .area_desc .area_descdb {
    font-size: 100%;
  }
  .area_desc .wrap {
    padding-bottom: 2rem;
  }
}
.scene {
  padding: 6rem 0;
  padding-top: 11rem;
  padding-bottom: 1rem;
  color: #fff;
  background-color: #00164a;
  position: relative;
}
.scene:after {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-image: url(../img/mask3.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 100%;
}
.scene h2 {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 260%;
}
.scene h2 small {
  font-size: 50%;
}
.scene .wrap {
  width: 45rem;
  position: relative;
}
.scene .sbg1 {
  position: absolute;
  right: 100%;
  top: 30%;
  display: block;
  width: 10rem;
  height: 10rem;
}
.scene .sbg2 {
  position: absolute;
  left: 100%;
  bottom: 20%;
  display: block;
  width: 9rem;
  height: 9rem;
}
.scene ul {
  margin-bottom: 3rem;
}
.scene ul li {
  margin-bottom: 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right bottom, #fff21e, #ffffff, #f0942e, #e4352b, #f0942e, #ffffff, #fff21e);
  box-sizing: border-box;
  padding: 0.3rem;
  position: relative;
  overflow: hidden;
}
.scene ul li > span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.scene ul li > span:before {
  content: "";
  width: 37%;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #221814;
  transition: all ease 0.4s;
  transform-origin: top right;
  width: 100%;
}
.scene ul li > span:after {
  content: "";
  width: 37%;
  height: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #221814;
  transition: all ease 0.4s;
  transform-origin: bottom left;
  width: 100%;
}
.scene ul li > span.active:before {
  width: 37%;
}
.scene ul li > span.active:after {
  width: 37%;
}
.scene ul li > div {
  padding: 2rem;
  border-radius: 2.8rem;
  background-color: #00164a;
  display: flex;
  gap: 1em;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
.scene ul li > div figure {
  flex: 0 1 56%;
}
.scene ul li > div figure img {
  width: 100%;
}
.scene ul li > div figure figcaption {
  font-size: 60%;
  text-align: right;
  margin-top: 0.2em;
}
.scene ul li > div figure:before {
  content: "";
  display: block;
  width: 28%;
  height: 30%;
  background-image: url(../img/extreme.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 3.5em;
  top: 3.5em;
}
.scene ul li > div > p {
  flex: 1;
  padding-left: 1em;
  font-size: 140%;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.scene ul li > div > p:before {
  content: "“";
}
.scene ul li > div > p:after {
  content: "“";
}

.scene ul li:last-child > div > p {
  margin-bottom: 2.7rem;
}

@media screen and (max-width: 1150px) {
  .scene .sbg1 {
    display: none;
  }
  .scene .sbg2 {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .scene .wrap {
    width: auto;
  }
}
@media screen and (max-width: 679px) {
  .scene ul li > div {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 1.5rem;
  }
  .scene ul li > div > p {
    padding-left: 0;
    text-align: center;
  }
  .scene ul li > div > p br {
    display: none;
  }
  .scene ul li:last-child > div > p {
    font-size: 133%;
    text-align: center;
    width: 100%;
  }
  .scene ul li > div figure {
    width: 100%;
  }
  .scene {
    padding-top: 7rem;
  }
  .scene .wrap {
    padding: 0 30px;
  }
  .scene:after {
    height: 3rem;
  }
  .scene ul li:last-child > div figure:before {
    top: 10em;
  }
}
.flow {
  padding: 12rem 0px;
  padding-bottom: 6rem;
  text-align: center;
  color: #fff;
}
.flow .wrap {
  width: 50rem;
}
.flow .wrap > p {
  margin-bottom: 2rem;
  font-weight: 600;
}
.flow h2 {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 260%;
}
.flow .sqr {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.flow .sqr li {
  background-color: #fff;
  border-radius: 2rem;
  color: #11b8d6;
  padding: 1rem;
  flex: 0 1 calc((100% - 9em) / 4);
  box-sizing: border-box;
  position: relative;
}
.flow .sqr li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 1.3rem solid #11b8d6;
  border-top-width: 0.7rem;
  border-bottom-width: 0.7rem;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right: 0;
  right: -22%;
  position: absolute;
  top: 45%;
}
.flow .sqr li:nth-child(4n+4):after {
  display: inline;
  display: none;
}
.flow .sqr li h3 {
  font-size: 130%;
  margin-top: 2.7rem;
  margin-bottom: 0.3rem;
}
.flow .sqr li .ss {
  background-image: url(../img/f1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -1em;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 7rem;
  font-size: 110%;
  padding: 0.5em 0;
  padding-top: 0.1em;
}
.flow .sqr li:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.flow .sqr li .dd {
  line-height: 1.5;
  font-size: 90%;
}
.flow .sqr li .ww {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.flow .area_ng {
  width: 33em;
  margin: 0 auto;
}
.flow .area_ng > p {
  text-align: center;
  font-size: 130%;
  margin-bottom: 1.5rem;
}
.flow .area_ng .ng_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.flow .area_ng .ng_list li {
  flex: 0 1 calc((100% - 4rem) / 3);
  background-color: #fff;
  text-align: center;
  position: relative;
  border-radius: 2rem;
}
.flow .area_ng .ng_list li p {
  position: absolute;
  font-weight: 600;
  bottom: 1rem;
  left: 0;
  right: 0;
  color: #2e2624;
  font-size: 95%;
}
.flow .area_ng .ng_list img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .flow .wrap {
    width: auto;
  }
  .flow .sqr li .ss {
    width: 6rem;
  }
}
@media screen and (max-width: 800px) {
  .flow .sqr li .ss {
    width: 5rem;
  }
  .flow .sqr li h3 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .flow .wrap {
    padding: 0 30px;
  }
  .flow .area_ng {
    width: 38em;
  }
  .flow .sqr li {
    border-radius: 1.5rem;
  }
}
@media screen and (max-width: 679px) {
  .flow .area_ng {
    width: auto;
  }
  .flow .sqr li {
    flex: 0 1 calc((100% - 3em) / 2);
  }
  .flow .sqr li .ss {
    width: 63%;
  }
  .flow .sqr li h3 {
    margin-top: 2.2em;
  }
  .flow .sqr li:after {
    right: -1.7rem;
  }
  .flow .sqr li:nth-child(4n+4):after {
    display: block;
  }
  .flow .sqr li:nth-child(2n+2):after {
    display: none;
  }
  .flow .area_ng .ng_list li {
    flex: 0 1 calc((100% - 2rem) / 2);
  }
  .flow .area_ng .ng_list li p {
    bottom: 2em;
  }
  .flow {
    padding-top: 8rem;
  }
}
.question {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.question .wrap {
  width: 37em;
}
.question h2 {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 260%;
  color: #fff;
}
.question ul li {
  background-color: #fff;
  margin-bottom: 0.5em;
  color: #2e2624;
  font-weight: 600;
  position: relative;
}
.question ul li:before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #2e2624;
  position: absolute;
  right: 1em;
  top: calc(0.5em - 1px + 0.6em);
  transition: all ease 0.3s;
}
.question ul li:after {
  content: "";
  width: 2px;
  height: 1em;
  background-color: #2e2624;
  position: absolute;
  right: calc(1.5em - 1px);
  top: 0.6em;
  transition: all ease 0.3s;
}
.question ul li .q {
  padding: 0.4em 0;
  padding-left: 3em;
  position: relative;
  cursor: pointer;
}
.question ul li .q:before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 100%;
  left: 0.5em;
  top: 0;
  background-image: url(../img/q.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.question ul li.open:before {
  transform: rotate(180deg);
}
.question ul li.open:after {
  opacity: 0;
}
.question ul li .a {
  padding: 2em 0;
  display: none;
  padding-left: 3em;
  padding-right: 3em;
  position: relative;
  background-color: #f8f6e7;
}
.question ul li .a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 1rem solid #11b8d6;
  border-right: 1rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.question ul li .a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 1rem solid #11b8d6;
  border-left: 1rem solid transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 679px) {
  .question .wrap {
    width: auto;
    padding: 0;
  }
  .question ul li .q {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.overview {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.overview .wrap {
  width: 37em;
}
.overview h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 180%;
  color: #fff;
}
.overview table {
  text-align: left;
  width: 100%;
  font-size: 90%;
  font-weight: 600;
  margin-bottom: 2rem;
  border-collapse: collapse;
}
.overview table td {
  background-color: #fefefe;
}
.overview table th, .overview table td {
  font-weight: normal;
  padding: 0.3em 0.7em;
  background-color: #fefefe;
}
.overview table th {
  border-right: 3px solid #dcdcdd;
  width: 12em;
}
.overview table tr:nth-child(2n) td, .overview table tr:nth-child(2n) th {
  background-color: #f8f6e7;
}

@media screen and (max-width: 679px) {
  .overview .wrap {
    width: auto;
    padding: 0;
  }
  .overview {
    padding-bottom: 11rem;
  }
}
.page_footer {
  background-color: #020820;
  padding-top: 8rem;
  position: relative;
}
.page_footer > figure img {
  width: 100%;
}
.page_footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 6rem;
  background-image: url(../img/mask4.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
}
.page_footer .wrap {
  padding-bottom: 6rem;
}
.page_footer .footer_logo {
  width: 13rem;
  margin: 0 auto;
  margin-top: 5rem;
}
.page_footer nav {
  margin-top: 2rem;
}
.page_footer nav ul {
  display: flex;
  justify-content: center;
}
.page_footer nav ul li:first-child {
  border-right: 1px solid #fff;
}
.page_footer nav ul li a {
  display: block;
  padding: 0 3rem;
}

@media screen and (max-width: 679px) {
  .page_footer:before {
    height: 3rem;
  }
  .page_footer .wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .page_footer nav ul li a {
    padding: 0 2em;
  }
}
.bbb1 {
  background-image: url(../img/bg_drone.png);
  background-repeat: repeat;
}

.bbb2 {
  background-image: url(../img/bg_hoshizora.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
}

@media screen and (max-width: 679px) {
  .bbb2 {
    background-size: 250% 100%;
  }
}
.contact-area_m {
  width: 540px;
  margin: 0 auto;
  text-align: center;
  background-color: #00164a;
  color: #fff;
  padding: 2em;
}
.contact-area_m p {
  margin-bottom: 1em;
}
.contact-area_m a {
  display: flex;
  gap: 0.5em;
  background-color: #fff;
  width: 250px;
  margin: 0 auto;
  color: #11b8d6;
  justify-content: center;
  align-items: center;
  font-size: 130%;
  font-weight: bold;
  padding: 0.5em;
  transition: all ease 0.3s;
  -webkit-clip-path: polygon(5.6% 0%, 94.4% 0%, 100% 50%, 94.4% 100%, 5.6% 100%, 0% 50%);
          clip-path: polygon(5.6% 0%, 94.4% 0%, 100% 50%, 94.4% 100%, 5.6% 100%, 0% 50%);
}
.contact-area_m a svg {
  width: 25px;
  fill: #11b8d6;
  transition: all ease 0.3s;
}
.contact-area_m a span {
  margin-top: -5px;
}
.contact-area_m a:hover {
  background-color: #11b8d6;
  color: #fff;
}
.contact-area_m a:hover svg {
  fill: #fff;
}

@media screen and (max-width: 679px) {
  .contact-area_m {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
  .contact-area_m a {
    font-size: 130%;
  }
  .contact-area_m a svg {
    width: 1em;
  }
}/*# sourceMappingURL=style.css.map */