/*----------------------------------------loader-----*/
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  background: url(../img/webp/main_bg.webp) no-repeat;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center center;
  z-index: 10;
  transition: all 3.5s ease;
}

.loading-text {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.loading-text picture {
  margin: 0 auto 10px;
  width: 190px;
}
.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: "Outfit", sans-serif;
}
.loading-text span:nth-child(1) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0s infinite linear alternate;
          animation: blur-text 1.5s 0s infinite linear alternate;
}
.loading-text span:nth-child(2) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.2s infinite linear alternate;
          animation: blur-text 1.5s 0.2s infinite linear alternate;
}
.loading-text span:nth-child(3) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.4s infinite linear alternate;
          animation: blur-text 1.5s 0.4s infinite linear alternate;
}
.loading-text span:nth-child(4) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.6s infinite linear alternate;
          animation: blur-text 1.5s 0.6s infinite linear alternate;
}
.loading-text span:nth-child(5) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.8s infinite linear alternate;
          animation: blur-text 1.5s 0.8s infinite linear alternate;
}
.loading-text span:nth-child(6) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1s infinite linear alternate;
          animation: blur-text 1.5s 1s infinite linear alternate;
}
.loading-text span:nth-child(7) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1.2s infinite linear alternate;
          animation: blur-text 1.5s 1.2s infinite linear alternate;
}
.loading-text span:nth-child(8) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1.4s infinite linear alternate;
          animation: blur-text 1.5s 1.4s infinite linear alternate;
}
.loading-text span:nth-child(9) {
  filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1.6s infinite linear alternate;
          animation: blur-text 1.5s 1.6s infinite linear alternate;
}

@-webkit-keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}

@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}
/*-------------------------------------------mv-----*/
.scroll-down {
  position: absolute;
  left: 0;
  bottom: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-down .mouse {
  height: 88px;
  margin-right: 20px;
  position: relative;
  -webkit-animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
          animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}

.scroll-down .mouse:before,
.scroll-down .mouse:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.scroll-down .mouse:before {
  height: 82px;
}

.scroll-down .mouse:after {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation: trackBallSlide 5s linear infinite;
          animation: trackBallSlide 5s linear infinite;
}

.scroll-down .text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
}

@-webkit-keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(0.9) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}

@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(0.9) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}
#mv {
  background: url(../img/webp/mv_bg.webp) no-repeat;
  background-size: 120%;
  background-position: right 70% bottom 40%;
  height: 120vh;
  position: relative;
}
#mv h1 {
  text-align: center;
  padding: 20px 0 50px;
}
#mv h1 picture img {
  max-width: 19vw;
  width: 90%;
}

.mv-wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1800px;
  position: relative;
}
.mv-wrap .mv-open {
  width: 14vw;
  position: absolute;
  left: -3.5%;
  top: -65px;
}

.mv-inr {
  margin: 0 auto 0 10%;
  width: 90%;
  max-width: 1100px;
  z-index: 1;
  position: relative;
  padding-bottom: 23%;
}

.mv-h2 {
  width: 50vw;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  margin-bottom: 20px;
  /*span{
      background: url(../img/gold_bg.png) no-repeat;
      background-position: right bottom;
      font-family: "Lexend", sans-serif;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: min(9.75vw, 15rem);
      line-height: 1 !important;
      font-weight: 700;
      -webkit-filter: drop-shadow(0px 3px 25px rgba(255, 255, 255, 0.3));
      filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  }*/
}

.mv-h3 {
  width: 31vw;
}

.mv-h4 {
  position: absolute;
  bottom: 20px;
  left: 52%;
  width: 10vw;
  transform: translateX(-50%);
}

#contents {
  background: url(../img/webp/main_bg.webp) no-repeat;
  background-size: cover;
}

/*-------------------------------------------sec-con-----*/
.sec-con {
  background: url(../img/webp/concept_bg.webp) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 170px 0 170px;
  position: relative;
}
.sec-con .text20 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 270px;
}

.con-ttl {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1 !important;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
}
.con-ttl:after {
  content: "";
  background: #d50a12;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 9px;
  height: 9px;
  width: 9px;
  transform: translateY(-50%);
}

.con-h3 {
  text-align: center;
  margin: 0 auto 60px;
}
.con-h3 img {
  width: 90%;
  width: 24vw;
}

.con-h4 {
  text-align: center;
  margin: 0 auto 50px;
}
.con-h4 img {
  max-width: 40vw;
  width: 90%;
}

/*-------------------------------------------sec-burger-----*/
.sec-burger {
  padding-bottom: 100px;
}

.bur-flex li {
  margin-bottom: 120px;
}
.bur-flex li:nth-of-type(1) {
  position: relative;
}
.bur-flex li:nth-of-type(1):after {
  content: "";
  position: absolute;
  background: url(../img/wave_01.svg) no-repeat;
  width: 42.5%;
  height: 100%;
  right: -10%;
  bottom: -17%;
  background-position: bottom;
}
.bur-flex li:nth-of-type(2) {
  position: relative;
}
.bur-flex li:nth-of-type(2):after {
  content: "";
  position: absolute;
  background: url(../img/wave_02.svg) no-repeat;
  width: 30%;
  height: 100%;
  left: -20%;
  bottom: -5%;
  background-position: bottom;
}
.bur-flex li:nth-of-type(3) {
  position: relative;
}
.bur-flex li:nth-of-type(3):after {
  content: "";
  position: absolute;
  background: url(../img/wave_03.svg) no-repeat;
  width: 42.5%;
  height: 100%;
  right: -10%;
  bottom: -17%;
  background-position: bottom;
}
.bur-flex li .li-wrap {
  display: flex;
  justify-content: space-between;
}

.bur-flex-img {
  position: relative;
  width: 55%;
}
.bur-flex-img:after {
  content: "";
  position: absolute;
  left: 52%;
  top: 48%;
  width: 550px;
  height: 550px;
  transform: translate(-50%, -50%);
  background-position: center center;
  -webkit-animation: rotate-animation 15s infinite linear;
          animation: rotate-animation 15s infinite linear;
}
@-webkit-keyframes rotate-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.4;
  }
}
@keyframes rotate-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.4;
  }
}
.bur-flex-img .character {
  position: absolute;
  bottom: 50px;
  height: 60%;
  width: 15vw;
  z-index: 1;
}
.bur-flex-img .burger {
  padding: 4%;
  position: relative;
  z-index: 1;
}

.bur-flex-cont {
  width: 40%;
}
.bur-flex-cont h4 {
  margin-top: 10%;
  max-width: 90%;
}
.bur-flex-cont .text32 {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.7 !important;
}

.bur-flex li:nth-of-type(1) .bur-flex-cont .text32 {
  margin-top: -90px;
}

.bur-flex li:nth-of-type(2) .bur-flex-img {
  order: 2;
}
.bur-flex li:nth-of-type(2) .bur-flex-img .character {
  right: 0;
}

.bur-flex li:nth-of-type(2) .bur-flex-cont {
  order: 1;
}

.bur-flex li:nth-of-type(3) .bur-flex-cont h4 {
  margin-bottom: 50px;
}

.bur-flex li:nth-of-type(3) .bur-flex-img .burger {
  padding: 4% 0 4% 8%;
}

.bur-flex li:nth-of-type(1) .bur-flex-img:after {
  background: url(../img/b_circle_01.svg) no-repeat;
}

.bur-flex li:nth-of-type(2) .bur-flex-img:after {
  background: url(../img/b_circle_02.svg) no-repeat;
}

.bur-flex li:nth-of-type(3) .bur-flex-img:after {
  background: url(../img/b_circle_03.svg) no-repeat;
}

.wide-img {
  height: 600px;
  overflow: hidden;
}
.wide-img img {
  display: block;
  margin: 0 auto;
}

/*-------------------------------------------sec-ins-----*/
.sec-ins {
  padding: 160px 0 0;
}
.sec-ins .sec-ins_ttl {
  text-align: center;
  margin: 0 auto 85px;
}
.sec-ins .sec-ins_ttl img {
  max-width: 37vw;
  width: 90%;
}
.sec-ins h6 {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}
.sec-ins picture {
  margin: 0 auto 75px;
  max-width: 23vw;
  width: 100%;
}
.sec-ins .slider {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.sec-ins .slider .slick-slide {
  margin: 0 15px;
}
.sec-ins .slider img {
  width: 100%;
  height: 274px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) and (min-width: 981px) {
  .sec-ins .slider img {
    height: 172px;
  }
}
@media screen and (max-width: 980px) and (min-width: 751px) {
  .sec-ins .slider img {
    height: 302px;
  }
}
@media screen and (max-width: 750px) and (min-width: 501px) {
  .sec-ins .slider img {
    height: 398px;
  }
}
@media screen and (max-width: 500px) {
  .sec-ins .slider img {
    height: 244px;
  }
}
/*-------------------------------------------footer-----*/
#footer {
  padding: 120px 0 60px;
  position: relative;
}
#footer:before {
  content: "";
  position: absolute;
  background: url(../img/ft_wave_02.svg) no-repeat;
  width: 55%;
  height: 100%;
  right: 0;
  top: -120px;
}
#footer:after {
  content: "";
  position: absolute;
  background: url(../img/ft_wave_01.svg) no-repeat;
  background-position: bottom;
  width: 50%;
  height: 100%;
  left: 0;
  bottom: 0;
}

.ft-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 140px;
  position: relative;
  padding: 0 5%;
  z-index: 2;
}
.ft-flex .ft-left {
  width: 50%;
}
.ft-flex .ft-left .ft-logo-txt {
  border-left: 10px solid #fff;
  margin-bottom: 60px;
  padding: 25px 40px;
  margin-left: -60px;
}
.ft-flex .ft-left .ft-logo-txt .ft-lex {
  font-size: 100px;
  font-weight: 700;
  line-height: 1 !important;
}
.ft-flex .ft-left .ft-dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ft-flex .ft-left .ft-dl dt {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  width: 85px;
}
.ft-flex .ft-left .ft-dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  width: calc(100% - 85px);
}
.ft-flex .ft-right {
  text-align: right;
  width: 50%;
}
.ft-flex .ft-right .ft-logo {
  max-width: 300px;
  margin-bottom: 20px;
  display: inline-block;
}
.ft-flex .ft-right .ft-logo img {
  filter: drop-shadow(0px 0px 25px rgba(255, 255, 255, 0.3));
}
.ft-flex .ft-right a {
  color: #fff;
  font-size: 25px;
  font-size: 2.5rem;
  display: block;
}

.c-txt.marker {
  color: #fff;
  border: 1px solid #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  max-width: 420px;
  height: 90px;
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-txt.marker::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

.c-txt.marker:hover {
  color: #fff;
}

.c-txt.marker:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.copyright {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 1530px) {
  .mv-h3 {
    width: max(3vw, 48rem);
  }
  .mv-h4 {
    width: 165px;
  }
}
@media screen and (min-width: 1490px) {
  .mv-h2 {
    width: 830px;
  }
}
@media screen and (min-width: 1650px) {
  #mv {
    min-height: 1280px;
  }
  .mv-h4 {
    width: min(10vw, 180px);
  }
}
@media screen and (max-width: 1300px) {
  #mv {
    height: 100vh;
  }
  .text32 {
    font-size: 2.2rem !important;
  }
  .con-ttl {
    font-size: 2rem;
  }
  .bur-flex-img:after {
    width: 450px;
    height: 450px;
  }
  .wide-img {
    height: 450px;
  }
  .sec-ins {
    padding: 120px 0 0;
  }
  .sec-ins .sec-ins_ttl {
    margin: 0px auto 55px;
  }
  .sec-ins picture {
    margin: 0 auto 45px;
  }
  .sec-ins h6 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .ft-flex .ft-left .ft-logo-txt .ft-lex {
    font-size: 70px;
  }
  .ft-flex .ft-left .ft-logo-txt {
    border-left: 7px solid #fff;
    margin-bottom: 30px;
  }
  .ft-flex .ft-right .ft-logo {
    max-width: 250px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1080px) {
  #mv {
    height: 85vh;
  }
  .sec-con {
    padding: 120px 0;
  }
  .sec-con .text20 {
    margin-bottom: 200px;
  }
  .text32 {
    font-size: 1.8rem !important;
  }
  .bur-flex li:nth-of-type(1) .bur-flex-cont .text32 {
    margin-top: -70px;
  }
  .c-txt.marker {
    font-size: 1.6rem;
    height: 70px;
  }
}
@media screen and (max-width: 910px) {
  #mv {
    height: 72vh;
  }
  .con-h4 {
    margin: 0 auto 30px;
  }
  .sec-con .text20 {
    margin-bottom: 100px;
    font-size: 1.8rem;
  }
  .bur-flex-img:after {
    width: 350px;
    height: 350px;
  }
  .sec-ins {
    padding: 60px 0 0;
  }
  .ft-flex {
    margin-bottom: 90px;
  }
  .ft-flex .ft-left .ft-logo-txt .ft-lex {
    font-size: 50px;
  }
  #footer {
    padding: 80px 0 20px;
  }
  .ft-flex .ft-left .ft-dl dt,
.ft-flex .ft-left .ft-dl dd {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
    background: url(../img/webp/mv_bg_sp.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
  }
  .mv-h2 span {
    font-size: 1vw;
  }
  .mv-wrap .mv-open {
    width: 150px;
    position: absolute;
    left: auto;
    top: -50px;
    right: 0;
  }
  .mv-h4 {
    position: absolute;
    bottom: -40px;
    left: 84%;
    width: 140px;
    transform: translateX(-50%);
  }
  .scroll-down {
    display: none;
  }
  .sec-burger {
    padding-bottom: 20px;
  }
  .wide-img {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .mv-h2 {
    width: 245px;
    margin-bottom: 10px;
  }
  .mv-h4 {
    bottom: -100px;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
  }
  .mv-wrap .mv-open {
    width: 110px;
    right: 5%;
  }
  .sec-con .text20 {
    margin-bottom: 100px;
    font-size: 1.4rem;
  }
  .con-ttl {
    font-size: 1.2rem;
    padding-left: 10px;
  }
  .con-ttl:after {
    height: 5px;
    width: 5px;
  }
  .con-h3 {
    margin: 0 auto 40px;
  }
  .con-h3 img {
    width: 190px;
  }
  .con-h4 img {
    max-width: 300px;
  }
  .bur-flex li .li-wrap {
    display: block;
  }
  .ft-flex {
    display: block;
  }
  .ft-flex .ft-left {
    width: 100%;
    margin-bottom: 80px;
  }
  .ft-flex .ft-right {
    text-align: center;
    width: 100%;
  }
  .c-txt.marker {
    font-size: 1.6rem;
    height: 70px;
    max-width: 100% !important;
  }
  .bur-flex-img {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  .bur-flex-img .character {
    position: absolute;
    bottom: 0;
    height: 60%;
    width: 90px;
    z-index: 1;
  }
  .bur-flex-cont {
    width: 100%;
  }
  .bur-flex-cont h4 {
    margin: 0 auto 10px;
    max-width: 60%;
  }
  .text32 {
    font-size: 1.6rem !important;
  }
  .bur-flex-cont .text32 {
    text-align: center;
  }
  .bur-flex li:nth-of-type(1):after {
    width: 72.5%;
  }
  .bur-flex li:nth-of-type(2):after {
    width: 50%;
    left: -20%;
    bottom: -10%;
  }
  .bur-flex li:nth-of-type(3):after {
    width: 82.5%;
  }
  .sec-ins {
    padding: 0;
  }
  .sec-ins .sec-ins_ttl {
    margin: 0px auto 25px;
  }
  .sec-ins .sec-ins_ttl img {
    max-width: 290px;
    width: 90%;
  }
  .sec-ins picture {
    margin: 0 auto 25px;
    max-width: 200px;
  }
  .ft-flex {
    margin-bottom: 30px;
  }
  .ft-flex .ft-left .ft-logo-txt {
    border-left: 3px solid #fff;
    padding: 10px 30px;
    margin-left: 0;
  }
  .ft-flex .ft-left .ft-logo-txt .ft-lex {
    font-size: 35px;
  }
  .ft-flex .ft-right .ft-logo {
    max-width: 180px;
  }
}
@media screen and (max-width: 400px) {
  #mv h1 {
    text-align: center;
    padding: 20px 0 20px;
  }
  #mv h1 picture img {
    max-width: 120px;
    width: 90%;
  }
  .mv-inr {
    margin: 0;
    width: 100%;
  }
  .mv-wrap .mv-open {
    width: 83px;
    right: 5%;
    top: -6%;
  }
  .sec-con {
    padding: 60px 0 100px;
  }
  .sec-con .secInr {
    position: relative;
    z-index: 2;
  }
  .sec-con:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .sec-con .text20 {
    font-size: 1.4rem;
    margin-bottom: 60px;
    text-align: left;
  }
  .bur-flex-img:after {
    width: 300px;
    height: 300px;
  }
  .bur-flex li:nth-of-type(2) .bur-flex-cont .character {
    margin-left: 26px;
    width: 107%;
  }
  .bur-flex li:nth-of-type(3) .bur-flex-img .burger {
    padding: 2% 0 2% 8%;
  }
  .bur-flex li:nth-of-type(3) .bur-flex-cont h4 {
    margin-bottom: 20px;
  }
  .bur-flex li:nth-of-type(3) {
    margin-bottom: 60px;
  }
  .wide-img {
    height: 200px;
  }
  .sec-ins h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=uniq.css.map */