@charset "utf-8";
/* layout ****************************************************************/
/* box */
.secBox {
  margin: 2rem auto;
  padding: 2rem 0;
  box-sizing: border-box;
}
.outerBox {
  width: 100%;
  min-width: 1024px;
  margin: 0 auto;
}
.inBox {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
.cntBoxS {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .secBox {
    margin: 2rem auto;
    padding: 2rem 0;
    box-sizing: border-box;
  }
  .outerBox {
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
  }
  .inBox {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
}
/* button ****************************************************************/
/* styleA */
.btn-styleA {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  height: 55px;
  line-height: 55px;
  padding: 0 1.5rem;
  box-sizing: border-box;
  position: relative;
}
.btn-styleA a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-styleA .btn-styleAIcon {
  width: 17px;
}
.btn-styleA .btn-styleAArw {
  width: 12px;
}
.btn-styleATxtEm {
  font-size: 1.3rem;
  font-weight: bold;
}
.btn-styleATel {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1rem;
}
/* styleB */
.btn-styleB {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  height: 55px;
  line-height: 55px;
  padding: 0 1.5rem;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  border-radius: 55px;
  width: 360px;
  max-width: 80%;
  margin: 0 auto;
}
.btn-styleB a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-styleB span {
  color: #2e2e2e;
}
.btn-styleB .btn-styleBArw {
  width: 12px;
}
.btn-styleBTxtEm {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  /* styleA */
  .btn-styleA {
    column-gap: 0.5rem;
    height: 45px;
    line-height: 45px;
    padding: 0 1.5rem;
  }
  .btn-styleA .btn-styleAIcon {
    width: 16px;
  }
  .btn-styleA .btn-styleAArw {
    width: 12px;
  }
  .btn-styleATxtEm {
    font-size: 1rem;
  }
  .btn-styleATel {
    font-size: 1.3rem;
  }
  /* styleB */
  .btn-styleB {
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    width: auto;
    max-width: auto;
  }
  .btn-styleB .btn-styleBArw {
    width: 10px;
  }
  .btn-styleBTxtEm {
    font-size: 1rem;
  }
}
@media screen and (max-width: 440px) {
  /* styleA */
  .btn-styleATxtEm {
    font-size: 0.9rem;
  }
  .btn-styleATel {
    font-size: 1.3rem;
  }
  .btn-styleA .btn-styleAArw {
    width: 10px;
  }
}
/* color ****************************************************************/
/* bg */
.bgColorGray {
  background: #eeeeee;
}
.bgColorGray.secBox {
  margin-top: 0;
  padding: 4rem 0;
}
.bgColorBlack {
  background: #010202;
  color: #fff;
}
.bgColorBlack .lbl-line::after,
.bgColorBlack .lbl-line::before {
  background: #fff;
}
.bgColorBlack.secBox {
  margin-top: 0;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  /* bg */
  .bgColorGray {
    background: #eeeeee;
  }
  .bgColorGray.secBox {
    margin-top: 0;
    padding: 2rem 0;
  }
  .bgColorBlack {
    background: #010202;
    color: #fff;
  }
  .bgColorBlack .lbl-line::after,
  .bgColorBlack .lbl-line::before {
    background: #fff;
  }
  .bgColorBlack.secBox {
    margin-top: 0;
    padding: 2rem 0;
  }
}
