@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

@font-face {
  font-family: 'Moonlite';
  src: url(/font/MoonliteSolid.otf);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 4.7rem;
}

@media screen and (max-width: 1079px) {
  h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.8rem;
  }
}

section {
  padding-top: 8rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 5rem 5rem 6rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
}


.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


img {
  width: 100%;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1079px) {
  .inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

body {
  font-family: 
  /* "toppan-bunkyu-midashi-go-std",  */
  /* "senobi-gothic", */
  "noto-sans-cjk-jp",
   sans-serif; 
  /* "hiragino-mincho-pron" */
  font-weight: 900;
  font-style: normal;
  /* letter-spacing: 2px; */
  color: #000;
  /* background: #F5F5F2; */
  background: #FFFFFF;
}

.-name {
  font-size: 3.5rem;
}

.-bold {
  font-weight: 700;
}

.-semibold {
  font-weight: 600;
}

.-medium {
  font-weight: 500;
}

.-light {
  font-weight: 300;
}

.-exlight {
  font-weight: 200;
  font-style: italic;
}

.-white {
  color: #fff;
}

.-white-b {
  background-color: #fff;
}

.-red {
  color: #88143D;
}

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

.-en {
  font-family: "sofia-pro", "sans-serif";
  /* font-family: "Moonlite", sans-serif; */
  font-weight: normal;
}

.-tr {
  /* font-family: "Train One", "cursive"; */
  font-family: "Moonlite", sans-serif;
  color: #88143D;
}

.-right {
  text-align: right;
  margin-top: 4rem;
  margin-right: 5rem;
}

@media screen and (max-width: 1079px) {
  .-right {
    margin-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .-right {
    margin-right: 5rem;
  }
}



.util-title {
  font-size: 7rem;
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .util-title {
    margin-bottom: 1rem;
  }
}

.page-title {
  /* font-size: 4.7rem; */
  font-size: 8rem;
  color: #88143D;
  /* color: #2A5CAA; */
  letter-spacing: 2.5px;
}

@media screen and (max-width: 1079px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 3.6rem; */
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 2.4rem; */
  }
}

/* アニメーション前 */
.u-fade-type-up {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.u-fade-type-up-slow {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 下からフェードイン */
.u-fade-type-up.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.u-fade-type-up-slow.is-active {
  -webkit-transition: 1.6s;
  transition: 1.6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-left {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-right {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-right.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

header {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 20;
}

@media screen and (max-width: 1079px) {
  header {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #ffffffc2;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding: 10px 0;
  }
}

.header__logo {
  max-width: 160px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 160px;
    margin-left: 10px;
    margin-top: 5px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
  color: #88143D;

}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav__li:not(:first-child) {
  margin-left: 5rem;
}

.header__nav__li a {
  position: relative;
}

.header__nav__li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.drawer__icon {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
    top: 25px;
    right: 15px;
  }
}

.drawer__icon.is-active {
  /* -webkit-transform: translateX(-300px);
          transform: translateX(-300px); */
}

.drawer__icon.is-active .drawer__icon-bar1 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}

.drawer__icon.is-active .drawer__icon-bar3 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon-bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
  border-radius: 999px;
}

.drawer__icon-bars:hover {
  cursor: pointer;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #88143D;
  top: 0;
  left: 0;
  border-radius: 999px;
  z-index: 41;
}

.drawer__icon-bar1 {
  top: 0;
}

.drawer__icon-bar2 {
  top: 8px;
}

.drawer__icon-bar3 {
  top: 16px;
}

.drawer__content {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding-top: 161px;
  z-index: 299;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content.is-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer__content-items {
  z-index: 40;
  font-family: 'Moonlite', sans-serif;
}

.drawer__content-item p {
  text-align: center;
}

.drawer__content-item a {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 400;
  padding-bottom: 32px;
  text-align: center;
}

.drawer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #88143D;
  opacity: 0.7;
  z-index: 39;
  display: none;
}

.drawer__background.is-active {
  display: block;
}

footer {
  background: linear-gradient(to bottom left, #A2093E, #300312);
  margin-top: -20px;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  footer {
    /* padding-right: 1.5rem;
    padding-left: 1.5rem; */
  }
}


.footer_img {
  width: 100%;
  margin: 0;
}


@media screen and (max-width: 767px) {
  .footer_img {
    width: 100%;
    height: 200px;
    margin: 0;
  }

  .footer_img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
}

.footer__inner {
  padding-top: 20px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    margin-bottom: 30px;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    flex-direction: column;
    align-items: center;

    padding-top: 60px;
  }
}

.footer__logo {
  max-width: 120px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 60px;
    margin-left: 10px;
    max-width: 100px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav__li:not(:first-child) {
  margin-left: 5rem;
}

@media screen and (max-width: 767px) {
  .footer__nav__li:not(:first-child) {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.footer__nav__li a {
  position: relative;
}

.footer__nav__li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.footer__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.footer__copy {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.3rem;
}

.fv {
  width: 100%;
  height: 100vh;
  /* background: url(/img/fv_bg.svg) no-repeat center/cover; */
}

.fv_txt {
  position: absolute;
  bottom: 30px;
  left: auto;
  right: 10%;
  color: #BEBEBE;
  font-size: 180px;
  text-shadow: 5px 5px 2px #00000084;
  line-height: 180px;
  z-index: 20;
}

@media screen and (max-width: 1067px) {
  .fv_txt {
    font-size: 120px;
    line-height: 130px;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    width: 100%;
    height: 100vh;
    /* background: url(/img/sp_fv_bg.jpg) no-repeat top/cover; */
  }

  .fv_txt {
    position: absolute;
    bottom: 30px;
    left: auto;
    right: auto;
    color: #BEBEBE;
    font-size: 70px;
    line-height: 80px;
  }
}

.mv__inner {
  color: #fff;
}

.mv__catch {
  /* margin-top: 60px; */
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .mv__catch {
    font-size: 1rem;
  }
}

.mv__sub {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .mv__sub {
    font-size: 1.2rem;
  }
}





.about {
  padding-top: 6rem;
  overflow: hidden;
}

.about__inner {
  position: relative;
}

.about__title,
.service__title,
.case__title,
.company__title {
  margin-bottom: 1.3rem;
  letter-spacing: 3px;
}

.about__title__sub,
.service__title__sub,
.case__title__sub,
.company__title__sub,
.page__member__title__sub,
.page__about__title__sub {
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {

  .logo__swiper-slide {
    width: 100px;
    height: 8rem;
    margin-right: 2rem;
  }

  .about__title {
    margin-bottom: 1rem;
  }


  .about__inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .mission__inner{
    margin-top: 0px;
    margin-bottom: 0px;
  }

}

.service__info__title_s {
  margin-top: 4.3rem;
  margin-bottom: 0rem;
  letter-spacing: 2px;
}

h2.service__info__title_s {
  font-size: 20px;
  font-weight: 800;
  /* letter-spacing: 2px; */
  line-height: 1.5em;
}


.service__info__title {
  /* margin-top: 4.3rem; */
  margin-bottom: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

h2.service__info__title {
  font-size: 30px;
  font-weight: 800;
  /* letter-spacing: 2px; */
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  h2.service__info__title_s {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5em;
  }

  h2.service__info__title {
    font-size: 22px;
    font-weight: 800;
    /* letter-spacing: 2px; */
    line-height: 1.5em;
  }
}



.about__info__title {
  margin-top: 4.3rem;
  margin-bottom: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

h2.about__info__title {
  font-size: 30px;
  font-weight: 800;
  /* letter-spacing: 2px; */
}



.about__info__subtitle {
  margin-top: 4.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
}

.about__info__text {
  line-height: 1.6875;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1079px) {
  .about__info__text {}
}

@media screen and (max-width: 767px) {


  .about__info__title {
    margin-top: 8rem;
    font-size: 20px;
    margin-bottom: 3rem;
  }

  .about__info__text {
    max-width: 100%;
    font-size: 20px;
  }

  .lion_five_txt{
    font-size: 16px;
  }
  .message_txt{
    font-size: 14px;
  }
}

.about__info__btn {
  margin-top: 60px;
  line-height: 1.6875;
}

.about__info__btn a {
  position: relative;
}

.about__info__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.about__info__btn a::after {
  content: "";
  position: absolute;
  top: 44%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__info__btn__white a::before {
  background: #fff;
}

.about__info__btn__white a::after {
  background: #fff;
}

.about__info__btn a:hover::before {
  right: -75%;
}

.about__info__btn a:hover::after {
  right: -75%;
}

.about__info__btn a span {
  position: absolute;
  top: -16%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.about__info__btn__white a span {
  border: 1px solid #fff;
}

.about__info__btn a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -35%;
  right: -90%;
  opacity: 0;
}

.about__img__wrap {
  overflow: hidden;
}

.about__img {
  max-width: 28.5%;
}

.about__img img {
  border-radius: 12px;
}

.ai-1 {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 300px;
  height: 200px;
}

.ai-1 img {
  object-fit: cover;
  width: 350px;
  height: 240px;
}

@media screen and (max-width: 1079px) {
  .about__img {
    max-width: 90%;
  }

  .ai-1 {
    top: 0%;
    right: 20%;
  }
}

.ai-2 {
  position: absolute;
  top: 45%;
  right: -3%;
  height: 400px;
}

.ai-2 img {
  object-fit: cover;
  width: 250px;
  height: 300px;
}


@media screen and (max-width: 1079px) {
  .ai-2 {
    top: 20%;
    right: 2%;
  }
}

@media screen and (max-width: 767px) {
  .ai-1 {
    position: static;
    margin: auto;
    margin-top: 60px;
    width: 100vw;
    height: auto;
  }

  .ai-1 img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .ai-2 {
    display: none;
  }
}

.service {
  padding-right: 0;
}

.service__inner {
  padding-top: 100px;
  margin-bottom: 100px;
  position: relative;
}

.service__img__venn {
  position: absolute;
  top: -100px;
  right: 3%;
  max-width: 35.5%;
}

@media screen and (max-width: 767px) {

  .service__inner {
    margin-bottom: 100px;
    width: 90%;
    margin-left: 0;
  }


  .service__img__venn {
    position: static;
    width: 95%;
    max-width: unset;
    margin: auto;
    margin-top: 60px;
  }
}

.service__contents {
  margin-top: 3rem;
}

.service__info__wrap {
  margin-bottom: 8.5rem;
}

@media screen and (max-width: 767px) {
  .service__info__wrap {
    margin-bottom: 3.5rem;
  }
}

.service__message{
  position: absolute;
  top: 12.5%;
  right: 0%;
  font-weight: 600;

  font-size: 16px;
  text-align: end;
}

.top__service__info__text {
  line-height: 2;
}

.service__info__text {
  line-height: 1.625;
}

.service__img__swiper {
  padding-left: 12rem;
  height: 50rem;
}

@media screen and (max-width: 1079px) {
  .service__img__swiper {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .service__img__swiper {
    padding-left: 0;
    height: 35rem;
  }
}





.case__contents {
  margin-top: 4rem;
  border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .case__contents {
    margin-top: 2rem;
  }
}

.case__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 4rem;
  padding-top: 4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.case__card:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .case__card {
    padding-top: 2rem;
    display: block;
    padding-bottom: 2rem;
  }
}

.case__img {
  max-width: 304px;
}

.case__img img {
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .case__img {
    margin: 0 auto 2rem;
  }
}

.case__card__text_wrap {
  margin-left: 3.7rem;
}

@media screen and (max-width: 767px) {
  .case__card__text_wrap {
    margin: 0 auto;
    max-width: 304px;
  }
}

.case__card__title {
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.case__card__logo {
  width: 200px;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 1079px) {
  .case__card__title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .case__card__title {
    font-size: 2.4rem;
  }

  .case__card__logo {
    width: 200px;
    margin: 20px auto;
  }
}

.case__card__text {
  margin-bottom: 5.7rem;
  font-size: 3rem;
}

@media screen and (max-width: 1079px) {
  .case__card__text {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .case__card__text {
    margin-bottom: 2.7rem;
    font-size: 1.8rem;
  }
}

.case__btn {
  margin-top: 4rem;
}

.case__btn a {
  position: relative;
}

.case__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.case__btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.case__btn a:hover::before {
  right: -75%;
}

.case__btn a:hover::after {
  right: -75%;
}

.case__btn a span {
  position: absolute;
  top: 0%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.case__btn a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -25%;
  right: -86%;
  opacity: 0;
}

.company__contents {
  margin-top: 6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .company__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    /* -webkit-box-direction: reverse; */
    -ms-flex-direction: column;
    flex-direction: column;
    /* -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; */
    margin-top: 2.5rem;
  }
}

.company__table__wrap {
  max-width: 50%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .company__table__wrap {
    max-width: 100%;
  }
}

.company__table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .company__table {
    width: 100%;
  }
}

.company__tr {
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  letter-spacing: 2px;
  line-height: 10px;
  vertical-align: middle
}

.company__tr:nth-child(1) {
  border-top: 1px solid #D9D9D9;
}

@media screen and (max-width: 767px) {
  .company__tr {
    padding-left: 10%;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}

.company__th {
  font-size: 1.8rem;
  font-weight: 400;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .company__th {
    font-size: 1.6rem;
  }
}

.company__td {
  padding-left: 6rem;
}

@media screen and (max-width: 767px) {

  .company__td {
    padding-left: 1rem;
  }

  #company__td__content {
    font-size: 12px;
  }

  .company__img__wrap {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 390px) {
  #company__td__content {
    font-size: 10px;
  }
}

.company__img {
  max-width: 500px;
}

.company__img img {
  border-radius: 12px;
}

@media screen and (max-width: 1079px) {
  .company__img {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .company__img {
    margin-left: 0;
  }
}

.company__btn {
  text-align: center;
  margin-top: 11rem;
}

.company__btn a {
  padding: 1.5rem 4rem;
  border: 1px solid #707070;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.company__btn a:hover {
  color: #fff;
  /* background-color: #191B1F; */
  background-color: #2A5CAA;
}

@media screen and (max-width: 767px) {
  .company__btn {
    margin-top: 4rem;
  }
}

.img_slider {
  padding-top: 8rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1079px) {
  .img_slider {
    padding: 5rem 5rem 6rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  .img_slider {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
}

.img__swiper .swiper-wrapper .swiper-slide {
  max-width: 380px;
  margin-left: 24px;
}

.img__swiper .swiper-wrapper .swiper-slide img {
  border-radius: 12px;
}

.page__about {
  position: relative;
  margin-top: 5rem;
}

.page__about__inner {
  padding-top: 10rem;
}

.page__about__img {
  width: 50%;
  height: 300px;
  position: absolute;
  top: 26%;
  right: 0;

}

.page__about__img img {
  border-radius: 16px 0 0 16px;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .page__about__img img {
    border-radius: 12px;
  }
}

@media screen and (max-width: 767px) {
  .page__about__img {
    position: unset;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__inner {
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
  }
}

.page__about__ceo__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .page__about__ceo__contents {
    display: block;
  }
}

.page__about__ceo__img {
  max-width: 50rem;
}

.page__about__ceo__img img {
  border-radius: 12px;
}

@media screen and (max-width: 767px) {
  .page__about__ceo__img {
    margin: 0 auto 2rem;
  }
}

.page__about__ceo__profile {
  max-width: 48.4rem;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__profile {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__profile {
    margin-left: 0;
    margin: 0 auto;
  }
}

.page__about__ceo__sub {
  font-size: 2.4rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__sub {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__sub {
    font-size: 1.8rem;
  }
}

.page__about__ceo__name {
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 4.4rem;
  color: #88143D;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__name {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__name {
    font-size: 2.4rem;
  }
}

.page__about__ceo__catch {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  color: #88143D;
}

@media screen and (max-width: 1079px) {
  .page__about__ceo__catch {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page__about__ceo__catch {
    font-size: 1.8rem;
  }
}

.page__about__ceo__text {
  line-height: 1.75;
}

.page__about__info {
  padding-top: 6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .page__about__info {
    margin-bottom: 2rem;
  }
}

.page__about__info__inner {
  position: relative;
}

.page__about__info__title {
  margin-left: -2.5rem;
  margin-bottom: 1.7rem;

}

@media screen and (max-width: 767px) {
  .page__about__info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.page__about__info__wrap {
  max-width: 50%;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .page__about__info__wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

.page__about__info__title {
  margin-top: 4.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.page__about__info__text {
  line-height: 1.6875;
  max-width: 48.4rem;
  margin-bottom: 6.6rem;
}

@media screen and (max-width: 767px) {
  .page__about__info__text {
    margin-bottom: 2.6rem;
  }
}

.page__about__info__img__wrap {
  overflow: hidden;
}

.page__about__info__img {
  border-radius: 12px;
  object-fit: cover;
}

.page__about__info__img img {
  border-radius: 12px;
}

.pai-1 {
  position: absolute;
  top: 45%;
  right: 20%;
  max-width: 25%;
}

@media screen and (max-width: 767px) {
  .pai-1 {
    display: none;
  }
}

.pai-2 {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 40%;
  z-index: -1;
}


@media screen and (max-width: 767px) {
  .pai-2 {
    position: unset;
    max-width: 100%;
  }

  .pai-2 img {
    height: 300px;
    -o-object-fit: none;
    object-fit: none;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
  }
}

.btn__container {
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .btn__container {
    margin-bottom: 6rem;
  }
}



.privacy-wrap {
  margin-top: 6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .privacy-wrap {
    margin-top: 3rem;
  }
}

.privacy-text {
  margin-bottom: 8px;
}

.privacy-text a {
  color: #005698;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.privacy-text a:hover {
  opacity: 0.5;
}

.check-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.check-box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.check-box:hover {
  cursor: pointer;
}

.check-box:checked+.check-box-part {
  width: 10px;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-left: 0px solid rgba(0, 0, 0, 0);
  background-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -5px;
  left: 5px;
}

.check-box:focus+.check-box-part {
  background: #e0f1ff;
}

.check-box:checked:focus+.check-box-part {
  background: transparent;
}

.check-box-part {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .check-text {
    font-size: 12px;
  }
}

.submit-btn {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 65px;
  width: 50%;
  border-radius: 999px;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  background: #e6e6e6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1079px) {
  .submit-btn {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .submit-btn {
    height: 45px;
    width: 70%;
    font-size: 2rem;
  }
}

.submit-btn.-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #bad3ff;
  background: linear-gradient(40deg, #bad3ff 0%, #5099ff 45%);
}

.required {
  font-size: 1rem;
  color: #ad0101;
}

.contact__message {
  text-align: center;
  margin-top: 6rem;
  display: none;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .contact__message {
    font-size: 2rem;
  }
}

.contact__message.-error {
  color: #ad0101;
}



/* 固定背景 */

#logo_bg {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 200px;
  height: auto;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}

#logo_bg img {
  opacity: 0.15;
}

body {
  /* background-image: url(/img/air_R.png);
   background-size: 150px auto;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-attachment: fixed;
  background-position: 50% 50%;
  background-repeat: no-repeat; */
}

h2 {
  font-size: 8rem;
}

h3 {
  color: #88143D;
}

.sis-title {
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 6rem;
  }
}

.footer__contact {
  background-color: white;
  border-radius: 30px;
  padding: 10px 0px;
  color: #88143D;
  overflow: hidden;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.footer__contact::after {
  background-color: #3d3d3d;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.footer__contact:hover {
  color: white;
}

.footer__contact:hover::after {
  transform: scale(1, 1);
}

.footer__contact a {
  padding: 25px;
}

.side__copy {
  position: fixed;
  right: 32px;
  top: 40%;
  font-size: 10px;
  font-weight: bold;
  -webkit-transform: rotate(-90deg) translateX(50%);
  transform: rotate(-90deg) translateX(50%);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: 11;
  color: #88143D;
  /* text-shadow: 1px 1px 2px #FFF; */
  mix-blend-mode: screen;
}

@media screen and (max-width: 767px) {
  .side__copy {
    right: 20px;
  }
}


.about__mission {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  margin-top: 60px;
}

.about__mission h2 {
  font-family: 'Moonlite', sans-serif;
  font-weight: 300;
  font-size: 60px;
}

.about__info__btm {
  margin-top: 5rem;
  line-height: 1.6875;
}

.mission__img {
  position: absolute;
  top: 45%;
  right: 10%;
  width: 38%;
}

.service__img {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 28%;
}

.mission__img img,
.service__img img {
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .mission__img {
    position: static;
    width: 80%;
  }

  .mission__img img {
    object-fit: cover;
  }

  .about__info__btm {
    width: 90%;
    margin-top: 5rem;
  }

  .service__img {
    position: static;
    width: 80%;
    margin-left: 10%;
  }
}

.ceo__career {
  /* margin-left: auto;
  margin-right: 0; */
  margin-top: 60px;
  font-size: 14px;
  /* background-color: #4c0d22; */
  /* color: #fff; */
  padding: 30px 100px;
  width: fit-content;
  height: auto;
  border: solid 3px #600b27;

  display: flex;
  flex-direction: row;
}

.ceo_career_left {
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .ceo__career {
    font-size: 14px;
    padding: 20px 10px;
    width: 100%;
    margin: 60px auto 0;
    height: auto;
    border: solid 3px #600b27;
    flex-direction: column;
  }
  
  .ceo_career_left {
    margin-right: 0px;
  }

  .ceo__career h3{
    font-size: 24px;
  }
}

.mi-1 {
  position: absolute;
  top: 5%;
  right: 20%;
  width: 22%;
}

.mi-1 img {
  object-fit: cover;
}

.mi-2 {
  position: absolute;
  top: 60%;
  right: 10%;
  width: 40%;
}

.mi-2 img {
  object-fit: cover;
}

.mi-3 {
  position: absolute;
  top: 70%;
  right: -3%;
  height: 400px;
}

.mi-3 img {
  object-fit: cover;
  width: 250px;
  height: 300px;
}


@media screen and (max-width: 1079px) {
  .mi-1 {
    position: absolute;
    top: 0%;
    right: 10%;
    width: 40%;
    min-width: 280px;
  }

  .mi-2 {
    position: absolute;
    top: 58%;
    right: 6%;
    width: 40%;
  }


  .mi-3 {
    position: absolute;
    top: 66%;
    right: -1%;
    height: 400px;
  }

  .mi-3 img {
    object-fit: cover;
    width: 180px;
    height: 280px;
  }
}

@media screen and (max-width: 767px) {
  .mi-1 {
    position: static;
    width: 90%;
    margin-bottom: 60px;
  }

  .mi-2 {
    position: static;
    width: 90%;
    margin-bottom: 60px;
  }

  .mi-3 {
    position: static;
    width: 90%;
    height: auto;
    margin-bottom: 60px;
  }

  .mi-3 img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}


.company_info_table {
  width: 90%;
  /* background: #FFFFFF; */
  padding: 30px auto;
  margin: 0px auto 0 0;
}

table {
  width: 80%;
  margin: 80px auto 80px 0;
  line-height: 3rem;

}

.table_inner {
  margin-bottom: 0;
}

td {
  padding: 30px 0px 30px 50px;
}

th {
  width: 5em;
  border-bottom: 2px solid #88143D;
  text-align: center;
  padding: 30px 20px;
}

tr {
  /* border-bottom: 0.3px solid #343434; */
  border-bottom: 0.3px solid #e0e0e0;
}

.table_margin_bottom {
  height: 80px;
}

tr:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1079px) {
  .company_info_table {
    width: 100%;
  }

  table {
    width: 90%;
    margin: 80px auto;

  }
}

@media screen and (max-width: 767px) {

  .company_info_table {
    width: 98%;
  }

  .table_inner {
    margin-top: 0;
  }

  td {
    padding: 30px 0px 30px 20px;
  }

}

.sc-1,
.sc-3,
.sc-2,
.sc-4,
.sc-6 {
  margin-left: 50px;
  /* margin-top: -60px; */
}

.sc-1 {
  margin-top: 0;
}

.sc-4 {
  margin-top: 6rem;
}

/* .sc-2,
.sc-5 {
  margin-left: 52%;
  margin-top: -60px;
} */

.sc-6 {
  margin-top: -120px;
}

@media screen and (max-width: 1079px) {
/* 
  .sc-1,
  .sc-3,
  .sc-4,
  .sc-6 {
    margin-left: 0px;
    margin-top: -60px;
  }

  .sc-4 {
    margin-top: 10rem;
  }

  .sc-2 {
    margin-left: 45%;
    margin-top: -60px;
  }

  .sc-5 {
    margin-left: 45%;
    margin-top: 60px;
  } */
}

@media screen and (max-width: 767px) {
  .service__contents {
    margin-left: 0;
    margin-top: 60px;
  }
  .sc-1{
    margin-top: 0;
  }
}

.si-1 {
  position: absolute;
  top: 390px;
  right: 20%;
  height: 240px;
}

.si-1 img {
  object-fit: cover;
  width: 500px;
  height: 260px;
}

@media screen and (max-width: 1079px) {
  .si-1 {
    position: absolute;
    top: 360px;
    right: 10%;
    width: 38%;
    height: auto;
  }

  .si-1 img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .service__info__text {
    max-width: 100%;
  }

  .si-1 {
    position: static;
    width: 80%;
    height: auto;
    margin-top: 40px;
  }
}


.service__title {
  font-size: 48px;
}

.service__num {
  font-family: 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: 100;
  margin-right: 10px;
}

.service__title__sub {
  margin-top: 3rem;
  margin-left: 50px;
}

.service__info__text {
  line-height: 1.6875;
  margin-top: 3rem;
  margin-bottom: 1rem;
  margin-left: 50px;
}

@media screen and (max-width: 1079px) {

  .service__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {

  .service__page__inner{
    margin-top: 0;
  }

  .service__title {
    font-size: 30px;
  }

  .service__num {
    font-size: 26px;
    font-weight: 100;
    margin-right: 5px;
  }
  

  .service__info__text {
    max-width: 100%;
  }
}


.contact_body {
  background-color: #F0E6E6;
}


.contact {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 60px;
  ;
}


.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: auto;
}

.contact input {
  background-color: #5c5c5cad;
  width: 700px;
  margin: 0 auto 0;
  height: 50px;

  padding: 5px;
  margin-bottom: 40px;

  font-size: 14px;
}

.contact textarea {
  background-color: #5c5c5cad;
  width: 700px;
  font-size: 14px;
}

::placeholder {
  color: white;
  text-align: center;
}

#submit_btn {
  margin-top: 60px;
  width: 180px;
  text-align: center;
  font-size: 16px;
  background-color: #88143D;
  border: none;
  color: #fff;
}



@media screen and (max-width: 767px) {

  /* CONTACT */

  .contact {
    padding-top: 30px;
  }

  .contact_ttl {
    margin-top: 100px;
    font-size: 60px;
    margin-bottom: 50px;
  }

  .contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    margin-top: 20px;
  }

  .contact input {
    background-color: #5c5c5cad;
    width: 90%;
    margin: 0 auto 0;
    height: 50px;

    padding: 5px;
    margin-bottom: 20px;

    font-size: 14px;
  }

  .contact textarea {
    background-color: #5c5c5cad;
    width: 90%;
    font-size: 14px;
  }

  ::placeholder {
    color: white;
    text-align: center;
  }

  #submit_btn {
    margin-top: 30px;
    width: 130px;
    text-align: center;
    font-size: 16px;
  }

}



.fv_animation {
  position: fixed;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.ani-1 {
  position: relative;
  top: 30vh;
  text-align: center;
  z-index: 1001;
}


.ani-2_txt {
  /* overflow: hidden; */
  /* opacity: 0; */
  /* transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  position: absolute; */
  color: #7b7b7b;
  font-size: 180px;
  text-shadow: 5px 5px 2px #cccccc84;
  line-height: 180px;
  z-index: 1001;
  opacity: 0;
  transition: 1s;
  text-align: center;
  background-color: #fff;
}

.ani-2_txt.-visible{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@media screen and (max-width: 767px) {
  .ani-2_txt {
    margin-top: 30%;
    font-size: 80px;
    line-height: 80px;
  }
}

.title {
  /* overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s; */
  font-size: 60px;
  margin-bottom: 20px;
  color: #a81e4c;
  opacity: 0;
  transition: 1s;
}

/* .title span {
  display: block;
 transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s; 
} */

.title.-visible{
/* .title.-visible span,
.ani-2_txt.-visible {
 transform: translate(0, 0); */ 
animation-name:blurAnime;
animation-duration:1s;
animation-fill-mode:forwards;
}

.sentence {
  /* overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s; */
  font-size: 34px;
  color: #a81e4c;
  text-align: center;
  opacity:0;
}

/* .sentence span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
} */

.sentence.-visible{
/* .sentence.-visible span { transform: translate(0, 0); */
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}


@media screen and (max-width: 767px) {
  .title {
    font-size: 40px;
    line-height: 1.5em;
  }

  .sentence {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.5em;
  }

}

.fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  color: #fff;
}

.fv.-visible:before {
  transform: translate(0, 0);
}

.fv:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/img/fv_bg.svg) no-repeat center/cover;
  /* background: url(/img/fv_bg_no_l.svg) no-repeat center/cover; */
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
  content: '';
}


@media screen and (max-width: 767px) {
  .fv:before {
    width: 100%;
    height: 100vh;
    background: url(/img/sp_fv_bg.jpg) no-repeat top/cover;
  }
}


.fv_ttl {
  position: absolute;
  bottom: 50px;
  right: 5%;
  /* text-shadow: 5px 5px 2px #6f0825c1; */
}

/* .fv_ttl h2{
  font-weight: 800;
  font-size: 28px;
  padding: 5px;
  color: #600b27;
  background-color: #fff;
  width: fit-content;
} */

.fv_ttl h2 {
  font-weight: 800;
  font-size: 28px;
  padding: 5px;
  background-color: #600b27;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .fv_ttl {
    position: absolute;
    bottom: 50px;
    right: auto;
    left: 5%;
    /* text-shadow: 5px 5px 2px #6f0825c1; */
  }
   
.fv_ttl h2 {
  font-weight: 800;
  font-size: 20px;
}
}

.fv_ttl,
.fv_txt {
  /* display: block; */
  opacity: 0;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, opacity linear 0.7s;
}

/* .mv__catch {
  transform: translate(0, 40px);
  transition-delay: 4.25s;
} */

.fv.-visible .fv_ttl {
  opacity: 1;
  transform: translate(0, 0);
  transition: linear 1s;
  transition-delay: 1s;
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
}

.fv.-visible .fv_txt {
  opacity: 1;
  transform: translate(0, 0);
  transition: linear 0.7s;
  transition-delay: 0.45s;
}


/* 横帯アニメーション */

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #88143D;
  /*伸びる背景色の設定*/
}

.bgLRextend-white::before {
  background-color: #fff;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}



#video-area {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}


#service {
  /* background-color: #300312; */
  background: url(/img/fv_bg_no_l.jpg) no-repeat;
  background-size: cover;
}

.service__ttl {
  background-color: #fff;
  padding: 5px;
  width: fit-content;
}


.company {
  /* background-color: #300312; */
  /* background: url(/img/AdobeStock_308173401_Preview.jpeg) no-repeat; */
  background: url(/img/company_bg.jpeg) no-repeat;
  
  background-size: cover;
}





.fadeout {
  animation: fadeOut 1s;
  /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both;
  /*0%の時と100%の時の状態を保つ*/
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    /*初めに存在する*/
  }

  100% {
    opacity: 0;
    /*最後に消える*/
  }
}

.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}
