@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap");
:root {
  --color-dark-blue: #013f8f;
  --color-blue: #3fa8f4;
  --color-yellow: #fbed21;
  --color-orange: #f05a24;
  --color-black: #333333;
  --color-white-1: #f1f1f1;
  --color-white-2: #ffffff;
  --color-linear-blue: linear-gradient(to right, #013f8f, #00375c);
  --color-linear-blue-lighter: linear-gradient(#065da7, #013f8f);
  --bg-cta-btn-red-30: linear-gradient(30%, #f6921e, #ec1c24);
  --bg-cta-btn-red: linear-gradient(#f6921e, #ec1c24);
  --bg-cta-btn-white-opacity: linear-gradient(rgba(231, 241, 248, 0), #e7f1f8);
  --bg-cta-btn-green: linear-gradient(to right, #8bc53f, #009145);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

/* Worries start */
.worries {
  max-width: 1470px;
  padding: 120px 245px;
  background-image: url("../public/img/bg/bg-question.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 784px;
}
.worries-title {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-white-1);
}
.worries-content {
  padding: 0 38px;
}
.worries-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
.worries-content-grid-item {
  background-color: var(--color-white-2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 25px;
  padding: 10px 0;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
}
.worries-content-grid-item span {
  position: relative;
  z-index: 5;
}
.worries-content-grid-item::after {
  content: "";
  position: absolute;
  background-image: url("../public/img/worries/ol_seo_LP_fix_1_03.png");
  width: 50px;
  height: 50px;
  mix-blend-mode: screen;
  bottom: -4px;
  left: -25px;
  z-index: 2;
}
.worries-content__custom {
  width: 66%;
}

.worries-img {
  max-width: 1470px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.worries-text {
  max-width: 1470px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

.text-38 {
  font-size: 38px !important;
}

.sp-path {
  display: none !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.pc-path {
  display: block;
}
/*Worries End*/
/* Feature Start */
.feature {
  max-width: 1470px;
  padding: 120px 135px;
}
.feature-title {
  font-size: 60px;
  margin-bottom: 50px;
  color: var(--color-dark-blue);
  font-weight: bold;
}
.feature-title span {
  font-size: 24px;
  color: var(--color-blue);
  font-family: "Wix Madefor Text", sans-serif;
  font-weight: bold;
}
.feature-content__item {
  background-image: url("../public/img/worries/feature-bg-01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: auto;
  display: grid;
  grid-template-columns: 46% calc(55% - 50px);
  padding: 70px 130px;
  gap: 50px;
}
.feature-content__item-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-dark-blue);
}
.feature-content__item-title__heading {
  font-size: 60px;
  color: var(--color-blue);
  font-family: "Wix Madefor Text", sans-serif;
}
.feature-content__item-title__heading-number {
  font-size: 35px;
}
.feature-content__item-title__number {
  font-size: 35px;
}
.feature-content__item-content {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 20px;
}
.feature-content__item-content__accent {
  color: var(--color-dark-blue);
  font-weight: bold;
}
.feature-content__custom-bg {
  background-image: url("../public/img/worries/feature-bg-01.png");
  /* grid-template-columns: calc(55% - 50px) 46%; */
  grid-template-columns: 46% calc(55% - 50px);
  margin-top: 25px;
}
.feature-content__custom {
  order: 0;
}
.feature-bottom {
  font-size: 26px;
  text-align: center;
  margin-top: 35px;
  font-weight: bold;
  line-height: 1.8;
}
.feature-bottom__number {
  font-size: 28px;
}
.feature-bottom__accent {
  color: var(--color-dark-blue);
  position: relative;
}
.feature-bottom__accent::before {
  content: "";
  position: absolute;
  top: 65%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-yellow);
  z-index: -1;
}
/* Feature End */
/* Achievements start */
.achievements {
  max-width: 1470px;
  padding: 120px 135px;
  margin-bottom: 50px;
  background: var(--color-linear-blue);
  color: var(--color-white-2);
}
.achievements-title {
  font-size: 60px;
  margin-bottom: 50px;
  font-weight: bold;
}
.achievements-title span {
  font-size: 24px;
  color: var(--color-blue);
  font-family: "Wix Madefor Text", sans-serif;
  font-weight: bold;
}
.achievements-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 25px;
}
.achievements-content__item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-white-2);
  border-bottom: 1px solid var(--color-white-2);
  padding: 18px 0;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.achievements-content__item-title {
  font-size: 16px;
}
.achievements-content__item-title span {
  font-size: 18px;
}
.achievements-content__item-content {
  display: flex;
  align-items: end;
  margin-top: 10px;
}
.achievements-content__item-content__content1 {
  font-size: 24px;
}
.achievements-content__item-content__content2 {
  font-size: 63px;
  font-family: "Wix Madefor Text", sans-serif;
  color: var(--color-yellow);
  line-height: 63px;
}
.achievements-content__item-content__content3 {
  font-size: 27px;
}
/* Achievements end */
/* ADS start */
.worries-ads {
  max-width: 1470px;
  /* height: 320px; */
  background-image: url("../public/img/worries/seo_LP_fix-50.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 45px 250px;
}
.worries-ads__text {
  font-size: 40px;
  text-align: center;
  color: var(--color-white-2);
  margin-left: 17%;
  font-weight: 600;
  display: flex;
}
.worries-ads__text-limited {
  color: initial;
  padding: 10px 0px;
}
.worries-ads__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.worries-ads__btn-btn {
  width: 390px;
  height: 85px;
  outline: none;
  border: none;
  border-radius: 50px;
  font-size: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 600;
  position: relative;
}
.ads-sp__btn-wrapper {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 15px;
  top: 13px;
  overflow: hidden;
  border-radius: 100%;
}
.worries-ads__btn .btn1 img {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: white;
  left: -9px;
  top: -9px;
}
.worries-ads__btn .btn1 {
  color: var(--color-white-2);
  background: linear-gradient(to right, #8bc53f, #009145);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding-left: 70px;
  transition: transform 0.3s;
}
.btn1:hover {
  transform: translateY(3px);
}

.worries-ads__btn .btn2 img {
  object-fit: cover;
  margin-right: 10px;
  position: absolute;
  left: 3px;
  top: 3px;
}
.worries-ads__btn .btn2 {
  background: var(--color-white-2);
  color: #f05a24;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.btn2:hover {
  transform: translateY(3px);
}

.achievement-time {
  text-align: end;
  margin-top: 10px;
  font-size: 14px;
}
/* ADS end */

/*# sourceMappingURL=index.css.map */

/* thuy */
.font-number {
  font-family: "Wix Madefor Text";
  font-size: 48px;
  font-weight: 700;
}

.text-30 {
  font-size: 30px !important;
}

/* Animate css  custom */
.animate_slide {
  position: relative;
  animation: motion 2s;
  animation-fill-mode: both;
}

@keyframes motion {
  from {
    top: 100px;
  }
  to {
    top: 0px;
  }
}

@media screen and (min-width: 375px) and (max-width: 430px) {
  .worries {
    background-image: url("../public/img/worries/worries-bg.png");
    background-size: 100% 100%;
    padding: 70px 0 120px;
    height: auto;
  }
  .worries-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 2;
    width: 94.66666666666667%;
    margin: 0 auto 25px;
    letter-spacing: 0.2px;
  }
  .worries-title-custom {
    letter-spacing: 3px;
  }
  .worries-content {
    padding: 0 20px 0 26px;
  }
  .worries-content-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .pc-break-point {
    display: none !important;
  }
  .worries-content-grid-item {
    font-size: 20px;
    margin-bottom: 15px;
    width: 310px;
    margin-left: 15px;
    line-height: 1.2;
    border-radius: 50px;
    border-bottom-left-radius: 20px;
  }
  .worries-content-grid-item span {
    position: relative;
    z-index: 50;
  }
  .worries-content-grid-item::after {
    width: 45px;
    left: -20px;
    bottom: -4px;
    z-index: 5;
  }
  .worries-content-grid-custom1 {
    width: 220px;
    text-align: center;
  }
  .worries-content-grid-custom2 {
    width: 240px;
    text-align: center;
    justify-self: end;
  }
  .worries-content-grid-custom3 {
    width: 210px;
    padding: 6px 0;
  }
  .worries-content-grid-custom4 {
    width: 272px;
    padding: 6px 0;
  }
  .worries-content-grid-custom5 {
    width: 310px;
    padding: 6px 0;
  }
  .worries-content-grid-custom5::after {
    width: 40px;
    left: -20px;
    bottom: -4px;
  }
  .grid-item__container {
    display: flex;
    justify-content: flex-end;
  }
  .sp-path {
    display: block !important;
  }
  .pc-path {
    display: none !important;
  }
  .worries-img {
    padding: 0 15px;
    margin-bottom: 20px;
  }
  .worries-img img {
    object-fit: cover;
    width: 100%;
  }
  .worries-text {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 375px) and (max-width: 390px) {
  .feature-content__item-content {
    font-size: 15px !important;
    gap: 10px;
    font-weight: bold;
  }
}

@media screen and (min-width: 391px) and (max-width: 430px) {
  .feature-content__item-content {
    font-size: 17px !important;
    gap: 10px;
    font-weight: bold;
  }
}

@media screen and (min-width: 375px) and (max-width: 430px) {
  .feature {
    padding: 70px 0;
    max-width: 94.66666666666667%;
    margin: 0 auto;
  }
  .feature-title {
    font-size: 34px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }
  .feature-title span {
    font-size: 16px;
  }
  .feature-content__item {
    height: auto;
    padding: 50px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    background-image: url("../public/img/worries/feature-bg-1.png");
    padding: 25px 0 50px;
    padding-left: 10px;
    max-width: 94.66666666666667%;
    margin: 0 auto 30px;
  }
  .feature-content__item-title {
    font-size: 24px;
  }
  .feature-content__item-title__heading {
    font-size: 60px;
  }
  .feature-content__item-title__heading-number {
    font-size: 24px;
  }
  .feature-content__item-title__number {
    font-size: 24px;
  }
  .feature-content__custom-bg {
    background-image: url("../public/img/worries/feature-bg-2.png");
    grid-template-columns: 1fr;
    padding-left: 10px;
  }
  .feature-content__custom {
    order: 0;
  }
  .feature-bottom {
    font-size: 20px;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 2px;
  }
  .feature-bottom__number {
    font-size: 20px;
  }
  .feature-bottom__accent {
    color: var(--color-dark-blue);
  }
}

@media screen and (min-width: 375px) and (max-width: 430px) {
  .achievements {
    padding: 70px 10px;
    margin-bottom: 30px;
  }
  .achievements-title {
    font-size: 34px;
    margin-bottom: 50px;
    display: block;
  }
  .achievements-title span {
    font-size: 16px;
    margin-left: 15px;
  }
  .achievements-content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
  }
  .achievements-content__item {
    padding: 18px 0;
  }
  .achievements-content__item-title {
    font-size: 12px;
    font-weight: 500;
  }
  .achievements-content__item-title span {
    font-size: 16px;
  }
  .achievements-content__item-content {
    margin-top: 10px;
  }
  .achievements-content__item-content__content1 {
    font-size: 22px;
  }
  .achievements-content__item-content__content2 {
    font-size: 52px;
    line-height: 52px;
  }
  .achievements-content__item-content__content3 {
    font-size: 24px;
  }
}

@media screen and (min-width: 375px) and (max-width: 430px) {
  .ads-sp {
    background-image: url("../public/img/worries/ads-sp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .ads-sp__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 410px;
    gap: 10px;
  }
  .ads-sp__btn-btn {
    width: 94.66666666666667%;
    margin: 0 auto;
    outline: none;
    border: none;
    border-radius: 50px;
    font-size: 28px;
  }
  .ads-sp__text-custom {
    text-align: left;
    margin-left: 30px;
  }
  .ads-sp .btn1 {
    color: var(--color-white-2);
    background: linear-gradient(to right, #8bc53f, #009145);
    font-weight: bold;
    position: relative;
    height: 80px;
    padding-left: 55px;
  }
  .ads-sp__btn-wrapper {
    width: 60px;
    height: 60px;
    background-color: #00375c;
    position: absolute;
    left: 10px;
    top: 10px;
    overflow: hidden;
    border-radius: 100%;
  }
  .ads-sp .btn1 img {
    position: absolute;
    /* left: -8px; */
    /* top: -10px; */
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: white;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
  }
  .ads-sp .btn2 {
    background: var(--color-white-2);
    color: #f05a24;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    height: 80px;
  }
  .ads-sp .btn2 img {
    position: absolute;
    left: -5px;
    top: 0px;
    width: 90px;
    height: 90px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
  }
  .feature-content__item-content__accent {
    font-weight: 900;
  }
}

@media screen and (min-width: 1500px) and (max-width: 1919px) {
  .main {
    width: calc(100% - 24%);
  }
}

/* fix start */
.fix-a-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  line-height: 1;
  padding: 0 20px;
}
.fix-title-header {
  font-size: 17px;
  background-color: #fff;
  width: 100%;
  padding: 2px 0;
  color: #009145;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
}
.fix-number-header {
  font-size: 46px;
  width: 100%;
  text-align: center;
}
.thk-a-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  line-height: 1;
  padding: 0 20px;
}
.thk-title-header {
  font-size: 15px;
  background-color: #fff;
  width: 100%;
  padding: 2px 0;
  color: #009145;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
}
.thk-number-header {
  font-size: 40px;
  width: 100%;
  text-align: center;
}
.fix-a-sp {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
  line-height: 1;
  padding: 0;
}
.fix-title-sp {
  font-size: 17px;
  background-color: #fff;
  width: 80%;
  padding: 2px 0;
  color: #009145;
  border-radius: 50px;
  margin: 0 auto;
}
.fix-number-sp {
  font-size: 40px;
  width: 100%;
}
.fixed-a-fixed {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
  line-height: 1;
  padding: 0;
}
.fixed-title-sp {
  font-size: 12px !important;
  background-color: #fff;
  width: 100%;
  padding: 2px 0;
  color: #009145 !important;
  border-radius: 50px;
  margin: 0 auto;
}
.fixed-number-sp {
  font-size: 22px !important;
  width: 100%;
}
/* fix end */

/* query 1200px to 1500px */
@media screen and (min-width: 1200px) and (max-width: 1500px) {
  #banner .fv-title {
    font-size: 55px !important;
  }
  #banner {
    height: auto !important;
    padding-bottom: 80px !important;
  }
  #countermeasure .content {
    font-size: 16px !important;
  }
  .commit-plan-left {
    padding: 23px !important;
    font-size: 26px !important;
  }
  .worries {
    height: auto !important;
  }
  .worries-title {
    font-size: 36px !important;
  }
  .worries-content-grid-item {
    font-size: 18px;
  }
  .worries-ads__text {
    margin-left: 13% !important;
  }
  .worries-ads {
    padding: 50px 0 45px 140px !important;
  }
  .feature-content__item-content {
    font-size: 14px !important;
  }
  .feature-content__item-title {
    font-size: 21px !important;
  }
  .feature-content__item-title__number {
    font-size: 26px !important;
  }
  .feature-content__item-title__heading {
    font-size: 50px !important;
  }
  .achievements-title {
    font-size: 50px !important;
  }
  #company {
    padding: 100px 0 0 !important;
  }
  #company .container {
    padding: 0 170px 100px !important;
  }
  .frm-col label {
    width: 18% !important;
  }
}
