@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@200;300;400;500;600;700&display=swap");
@font-face {
  font-family: "CWDangamAsac-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/CWDangamAsac-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

.inner {
  width: 90%;
  margin: auto;
  position: relative;
}

/* Mobile */
/* Tablet */
/* PC */
@media screen and (min-width: 1280px) {
  .inner {
    width: 1200px;
  }
}
header {
  width: 100%;
  top: 0;
  background-color: #000;
  border-top: 2px solid black;
  border-bottom: 1px solid #c8c8c8;
  z-index: 3;
}
header .inner {
  position: relative;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .menu-bar .menu-bar-menu {
  position: absolute;
  top: 120px;
  left: -10%;
  transform: translateX(4%);
  width: 100vw;
  height: calc(100vh - 120px);
  background-color: #3ea548;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
header .inner .menu-bar .menu-bar-menu li {
  position: relative;
  margin-left: 130px;
  display: inline-block;
  font-family: "Gothic A1";
  font-weight: 800;
}
header .inner .menu-bar .menu-bar-menu li ::after {
  position: absolute;
  left: -80px;
  transform: scale(0.8);
  transition: 0.3s ease-in;
  transform-origin: 70px;
  content: url("../image/header_logo.svg");
}
header .inner .menu-bar .menu-bar-menu li:hover ::before {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  width: 90%;
  background-color: #fff;
}
header .inner .menu-bar .menu-bar-menu li:hover ::after {
  transform: rotate(15deg) scale(0.8);
}
header .inner .menu-bar .menu-bar-menu li a {
  font-size: 10vw;
}
header .inner .menu-bar .menu-hidden {
  display: none;
}
header .inner .menu-bar .menu-icon {
  display: block;
  font-size: 30px;
  color: #fff;
}

/* Mobile */
/* Tablet */
/* PC */
@media screen and (min-width: 1280px) {
  header .inner .menu-bar .menu-bar-menu {
    position: static;
    height: 120px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
    flex-direction: row;
  }
  header .inner .menu-bar .menu-bar-menu li {
    margin-left: 0px;
  }
  header .inner .menu-bar .menu-bar-menu li ::after {
    content: "";
    position: static;
  }
  header .inner .menu-bar .menu-bar-menu li:hover ::before {
    width: 100%;
  }
  header .inner .menu-bar .menu-bar-menu li a {
    font-size: 16px;
  }
  header .inner .menu-bar .menu-icon {
    display: none;
  }
}
footer {
  height: 150px;
  background-color: #3ea548;
  display: flex;
  align-items: center;
  font-size: 14px;
  overflow: hidden;
}
footer .inner {
  display: flex;
  justify-content: flex-start;
}
footer .inner .foo_logo {
  width: 22vw;
  max-width: 180px;
}
footer .inner .foo_logo img {
  width: 100%;
}
footer .inner .footer-text-box {
  margin-left: 10vw;
  color: #fff;
  line-height: 1.5;
}
footer .inner .footer-text-box p:first-child {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.arrow {
  position: absolute;
  bottom: 7%;
  animation: scroll_bottom 1s ease-in infinite;
}
@keyframes scroll_bottom {
  from {
    bottom: 7%;
    opacity: 1;
  }
  to {
    opacity: 0;
    bottom: 5%;
  }
}
.arrow .arrow-bottom {
  cursor: pointer;
  position: relative;
  width: 32px;
  height: 32px;
  transform: rotate(225deg);
}
.arrow .arrow-bottom::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-right: 0;
  border-bottom: 0;
}

.hide {
  display: none;
  transition: all 0.5s;
}

.move1 {
  transform: translate(0, 0) scale(1.15);
}

.section {
  position: relative;
  overflow: hidden;
}
.section--slogan {
  align-items: center;
  background-color: #000;
  display: flex;
  flex-basis: content;
  flex-direction: column;
  padding: 2rem;
  height: calc(100vh - 120px);
}
.section--slogan .inner {
  height: inherit;
}
.section--slogan .inner .sloganBox {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
}
.section--slogan .inner .sloganBox .sloganTitle {
  justify-content: center;
  font-family: "CWDangamAsac-Bold";
  font-size: 6rem;
  letter-spacing: 0em;
  line-height: 1.2;
  transform: rotate(-7deg);
  transform-origin: center, center;
}
.section--slogan .inner .sloganBox .sloganTitle span {
  box-sizing: border-box;
  display: inline-block;
  margin: -0.1em auto;
  width: auto;
}
.section--slogan .inner .sloganBox .sloganTitle span::before {
  animation-name: title;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  box-sizing: border-box;
  content: attr(data-text);
  display: inline;
  color: #fff;
  display: block;
  position: absolute;
  z-index: 1;
}
@keyframes title {
  0% {
    opacity: 0;
    transform: translateY(-0.2em);
    -webkit-clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    opacity: 0;
    transform: translateY(0.1em);
    -webkit-clip-path: polygon(0 70%, 100% 0, 100% 30%, 0 100%);
    clip-path: polygon(0 70%, 100% 0, 100% 30%, 0 100%);
  }
}
.section--slogan .inner .sloganBox .sloganTitle span:last-child::before {
  animation-delay: 0.25s;
}
.section--slogan .inner .arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll_bottom 1s ease-in infinite;
}
@keyframes scroll_bottom {
  from {
    bottom: 7%;
    opacity: 1;
  }
  to {
    opacity: 0;
    bottom: 5%;
  }
}
.section--slogan .inner .arrow .arrow-bottom::before {
  border: 4px solid #fff;
  border-right: 0;
  border-bottom: 0;
}
.section--logo {
  color: #fff;
  background-image: url("../image/stroy_bg.jpg");
  background-attachment: fixed;
  height: 100vh;
}
.section--logo .inner {
  height: inherit;
}
.section--logo .inner .contentBox {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.section--logo .inner .contentBox .logoBox {
  display: flex;
  align-items: end;
}
.section--logo .inner .contentBox .logoBox img {
  width: 60vw;
}
.section--logo .inner .contentBox .logoBox span {
  white-space: nowrap;
  font-size: 3vw;
  font-weight: 600;
  margin-left: 15px;
  margin-bottom: 30px;
}
.section--logo .inner .contentBox .logoContentBox {
  margin-top: 40px;
  margin-left: 5vw;
  text-align: center;
}
.section--logo .inner .contentBox .logoContentBox p:first-child {
  line-height: 1;
  color: #3ea548;
  font-family: "Montserrat";
  font-size: 6vw;
  white-space: nowrap;
}
.section--logo .inner .contentBox .logoContentBox p:first-child span {
  font-size: 1vw;
  font-family: "Gothic A1";
  color: #fff;
}
.section--logo .inner .contentBox .logoContentBox p:last-child {
  margin-top: 15px;
  font-family: "Gothic A1";
  line-height: 1.5;
  font-size: 3vw;
}
.section--logo .inner .arrow {
  position: absolute;
  left: 50%;
}
.section--logo .inner .arrow .arrow-bottom::before {
  border: 4px solid #fff;
  border-right: 0;
  border-bottom: 0;
}
.section--merit .inner {
  height: 100vh;
  display: flex;
  align-items: center;
}
.section--merit .inner .merit-img-box {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
}
.section--merit .inner .merit-img-box p {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
}
.section--merit .inner .merit-img-box div[class^=merit--] {
  width: 24%;
  border-radius: 10px;
  transition: 0.5s;
}
.section--merit .inner .merit-img-box div[class^=merit--]:hover {
  transform: scale(1.05);
}
.section--merit .inner .merit-img-box div[class^=merit--] .img-box {
  width: 280px;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.section--merit .inner .merit-img-box div[class^=merit--] .img-box img {
  width: 100%;
}
.section--merit .inner .merit-img-box div[class^=merit--] .img-box:hover {
  border: 2px solid #3ea548;
}
.section--merit .inner .merit-img-box div[class^=merit--] .img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(180deg, rgba(52, 152, 56, 0), rgba(52, 152, 56, 0), rgba(52, 152, 56, 0.7));
}
.section--merit .inner .merit-img-box div[class^=merit--] .img-box p {
  z-index: 1;
  position: absolute;
  bottom: 7%;
  left: 7%;
  color: #fff;
}
.section--merit .inner .donut {
  width: 25%;
  height: 33%;
  margin: 0 20px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  transition: background 0.3s ease-in-out;
  background: conic-gradient(#0bac3b 0% 72%, #f2f2f2 72% 100%);
}
.section--merit .inner .donut:before {
  color: #fff;
  width: 70%;
  padding: calc(35% - 0.64vw) 0;
  background: #264057;
  border-radius: 50%;
  position: absolute;
  left: 15%;
  top: 15%;
  display: block;
  content: attr(data-percent) "%";
  transform: skew(-0.03deg);
  margin: auto;
  font-size: 1.1vw;
  font-size: 2vw;
  padding: calc(35% - 1.3vw) 0;
}
.section--merit .inner .donut::after {
  content: "1인 가구가 증가하면서 반려식물을 키우는 사람들이 증가할 것이다.";
  font-family: "Montserrat";
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  color: rgb(15, 99, 9);
  left: 3%;
  bottom: -30%;
}
.section--merit .inner .donut1 {
  width: 25%;
  height: 33%;
  margin: 0 10px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  transition: background 0.3s ease-in-out;
  background: conic-gradient(#0bac3b 0% 72%, #f2f2f2 72% 100%);
}
.section--merit .inner .donut1:before {
  color: #fff;
  width: 70%;
  padding: calc(35% - 0.64vw) 0;
  background: #264057;
  border-radius: 50%;
  position: absolute;
  left: 15%;
  top: 15%;
  display: block;
  content: attr(data-percent) "%";
  transform: skew(-0.03deg);
  margin: auto;
  font-size: 1.1vw;
  font-size: 2vw;
  padding: calc(35% - 1.3vw) 0;
}
.section--merit .inner .donut1::after {
  content: "식물에게도 반려동물만큼의 애정이 생길 수 있다.";
  font-family: "Montserrat";
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  color: rgb(15, 99, 9);
  left: 3%;
  bottom: -30%;
}
.section--merit .inner .progress-box {
  position: relative;
  width: 50%;
  height: 400px;
  background-color: white;
  border-radius: 10px;
}
.section--merit .inner .progress-box .progress-box1 {
  margin-bottom: 20px;
}
.section--merit .inner .progress-box .progress-box1 span {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat";
}
.section--merit .inner .progress-box .progress-box1 .progress-bar1 {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box .progress-box1 .progress-bar1 .progress1 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: red;
  color: #111;
}
.section--merit .inner .progress-box .progress-box1 .progress-bar1 .progress1::after {
  content: "70.3%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 0;
}
.section--merit .inner .progress-box .gradening .progress-box2 span {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat";
}
.section--merit .inner .progress-box .gradening .progress-box2 .progress-bar2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box .gradening .progress-box2 .progress-bar2 .progress2 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: green;
  color: #111;
}
.section--merit .inner .progress-box .gradening .progress-box2 .progress-bar2 .progress2::after {
  content: "58.3%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 0;
}
.section--merit .inner .progress-box .gradening .progress-box3 span {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat";
}
.section--merit .inner .progress-box .gradening .progress-box3 .progress-bar3 {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box .gradening .progress-box3 .progress-bar3 .progress3 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: #5ecaeb;
  color: #111;
}
.section--merit .inner .progress-box .gradening .progress-box3 .progress-bar3 .progress3::after {
  content: "38.4%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 0;
}
.section--merit .inner .progress-box-int {
  position: relative;
  width: 50%;
  height: 400px;
  background-color: white;
  border-radius: 10px;
}
.section--merit .inner .progress-box-int > span {
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat";
}
.section--merit .inner .progress-box-int .progress-box-int1 .progress-bar-int1 {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box-int .progress-box-int1 .progress-bar-int1::before {
  content: "20대";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  left: -12%;
}
.section--merit .inner .progress-box-int .progress-box-int1 .progress-bar-int1 .progress-int1 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: green;
  color: #111;
}
.section--merit .inner .progress-box-int .progress-box-int1 .progress-bar-int1 .progress-int1::after {
  content: "70%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 10%;
}
.section--merit .inner .progress-box-int .progress-box-int2 .progress-bar-int2 {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box-int .progress-box-int2 .progress-bar-int2::before {
  content: "30대";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  left: -12%;
}
.section--merit .inner .progress-box-int .progress-box-int2 .progress-bar-int2 .progress-int2 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: green;
  color: #111;
}
.section--merit .inner .progress-box-int .progress-box-int2 .progress-bar-int2 .progress-int2::after {
  content: "60%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 10%;
}
.section--merit .inner .progress-box-int .progress-box-int3 .progress-bar-int3 {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box-int .progress-box-int3 .progress-bar-int3::before {
  content: "40대";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  left: -12%;
}
.section--merit .inner .progress-box-int .progress-box-int3 .progress-bar-int3 .progress-int3 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: green;
  color: #111;
}
.section--merit .inner .progress-box-int .progress-box-int3 .progress-bar-int3 .progress-int3::after {
  content: "75%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 10%;
}
.section--merit .inner .progress-box-int .progress-box-int4 .progress-bar-int4 {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%);
  width: 80%;
  height: 30px;
  background-color: white;
  font-weight: 600;
  font-size: 0.8rem;
}
.section--merit .inner .progress-box-int .progress-box-int4 .progress-bar-int4::before {
  content: "50대";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  left: -12%;
}
.section--merit .inner .progress-box-int .progress-box-int4 .progress-bar-int4 .progress-int4 {
  width: 100%;
  height: 30px;
  padding: 0;
  text-align: center;
  background-color: green;
  color: #111;
}
.section--merit .inner .progress-box-int .progress-box-int4 .progress-bar-int4 .progress-int4::after {
  content: "77%";
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 900;
  color: #000;
  position: absolute;
  right: 10%;
}
.section--merit .inner .lowco2middle {
  position: absolute;
  left: 40%;
}
.section--merit .inner .lowco2middle > img {
  width: 100%;
  height: 100%;
}
.section--merit .inner .arrow {
  position: absolute;
  left: 50%;
}
.section--merit .inner .arrow .arrow-bottom::before {
  border: 4px solid #000;
  border-right: 0;
  border-bottom: 0;
}
.section--mine .inner {
  height: 100vh;
}
.section--mine .inner .arrow {
  position: absolute;
  left: 50%;
}
.section--mine .inner .arrow .arrow-bottom::before {
  border: 4px solid #000;
  border-right: 0;
  border-bottom: 0;
}
.section--interview .inner {
  height: 100vh;
}
.section--interview .inner .arrow {
  position: absolute;
  left: 50%;
}
.section--interview .inner .arrow .arrow-bottom::before {
  border: 4px solid #000;
  border-right: 0;
  border-bottom: 0;
}
.section--campaign {
  position: relative;
  height: 100vh;
}
.section--campaign div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.section--campaign div div {
  width: 100%;
  height: 100%;
  font-size: 10px;
}
.section--campaign div div video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--campaign div .text {
  font-family: "Gothic A1";
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 6vw;
  top: 60%;
  transform: translateY(-30%);
}
.section--campaign div .text .content {
  font-family: "Gothic A1";
  top: 150px;
  font-size: 20px;
  font-weight: 100;
  color: white;
}
.section--campaign div .text .container {
  top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8vh;
  font-size: clamp(2rem, 2.8vw, 5rem);
  font-family: Raleway;
  font-weight: 400;
}
.section--campaign div .text .typewriter {
  font-size: 30px;
  color: white;
  width: 28ch;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #212121;
  animation: cursor 1s step-start infinite, text 5s steps(18) alternate infinite;
}
@keyframes cursor {
  0%, 100% {
    border-color: white;
  }
}
@keyframes text {
  0% {
    width: 0;
  }
  100% {
    width: 46ch;
  }
}
.section--campaign div .text .title1 {
  font-size: 60px;
  font-weight: 800;
}
@keyframes intro {
  0% {
    top: 150px;
  }
  98% {
    top: -5px;
  }
  100% {
    top: 0%;
  }
}
.section--campaign div .text .title2 {
  animation-name: intro;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 4.2s;
  animation-fill-mode: backwards;
}
.section--campaign div .text .title3 {
  animation-name: intro;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 4.4s;
  animation-fill-mode: backwards;
}
.section--campaign div .text .title4 {
  animation-name: intro;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 4.6s;
  animation-fill-mode: backwards;
}
.section--campaign div .text p {
  font-family: "Gothic A1";
  color: white;
  z-index: 99;
  font-size: 30px;
}

/* Mobile */
/* Tablet */
@media screen and (min-width: 768px) {
  .section--slogan .inner .sloganBox .sloganTitle {
    top: 15vh;
    left: 13vw;
  }
  .section--slogan .inner .sloganBox .sloganTitle span {
    white-space: nowrap;
  }
}
/* PC */
@media screen and (min-width: 1280px) {
  .section--slogan .inner {
    left: 0;
  }
  .section--slogan .inner .sloganBox .sloganTitle {
    top: 15vh;
    left: 25vw;
    font-size: 6rem;
  }
  .section--slogan .inner .sloganBox .sloganContent {
    color: #fff;
    margin-top: 40px;
    font-size: 18px;
  }
  .section--logo .inner .contentBox {
    left: 0;
    transform: translate(0, -40%);
  }
  .section--logo .inner .contentBox .logoBox {
    display: flex;
    align-items: end;
  }
  .section--logo .inner .contentBox .logoBox img {
    width: 35vw;
  }
  .section--logo .inner .contentBox .logoContentBox {
    margin-top: 40px;
    margin-left: 5vw;
    text-align: left;
  }
  .section--logo .inner .contentBox .logoContentBox p:first-child {
    line-height: 1;
    color: #3ea548;
    font-family: "Montserrat";
    font-size: 3vw;
    white-space: nowrap;
  }
  .section--logo .inner .contentBox .logoContentBox p:first-child span {
    font-size: 1vw;
    font-family: "Gothic A1";
    color: #fff;
  }
  .section--logo .inner .contentBox .logoContentBox p:last-child {
    margin-top: 15px;
    font-family: "Gothic A1";
    line-height: 1.5;
    font-size: 1.2vw;
  }
}/*# sourceMappingURL=story.css.map */