#banner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(3);
  opacity: 0;
  
  animation: revealCircle 1s ease-out forwards;
}

@keyframes revealCircle {
  0% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

#banner .scroll_box {
  width: auto;
  height: auto;
}

#banner .scroll_box p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  animation: scroll 3s ease-in-out infinite;
  transition: all 0.3s;
}

@keyframes scroll {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-5px);
  }
  70% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}

#banner .scroll_box .line {
  width: 1px;
  height: 50px;
  background: #fff;
  margin: 0 auto;
}

#title {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #000;
}

#title h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
}

@media (max-width: 500px) {
  #title h2 {
    font-size: 20px;
  }

  #title {
    padding: 50px 0;
  }
}

@media (max-width: 400px) {
  #title h2 {
    font-size: 18px;
  }
}

/* company 시작 */

#company_1 {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#company_1 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#company_1 .wrap .text_zone {
  width: auto;
  height: auto;
}

#company_1 .wrap .text_zone h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 30px;
}

#company_1 .wrap .text_zone p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#company_1 .wrap .text_zone p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#company_1 .wrap img {
  width: auto;
  height: auto;
}

#company_2 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
}

#company_2 p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#company_2 p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#company_2 p:first-of-type {
  margin-bottom: 50px;
}

#company_3 {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#company_3 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#company_3 .wrap .map {
  width: 100%;
  max-width: 47%;
  height: auto;
  border: 1px solid #000;
}

#company_3 .wrap .information {
  width: 100%;
  max-width: 47%;
  height: auto;
}

#company_3 .wrap .information h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

#company_3 .wrap .information .box {
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-bottom: 1px solid #888;
}

#company_3 .wrap .information .box:last-of-type {
  border-bottom: none;
}

#company_3 .wrap .information .box table {
  width: auto;
  height: auto;
  display: block;
  border-collapse: collapse;
}

#company_3 .wrap .information .box table tr {
  display: block;
}

#company_3 .wrap .information .box table tr:first-of-type {
  margin-bottom: 10px;
}

#company_3 .wrap .information .box table .type {
  width: 90px;
  height: auto;
  font-family: 'PB_B';
	font-weight: bold;
  color: #888;
}

#company_3 .wrap .information .box table td {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#company_3 .wrap .information .box h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #888;
  margin-bottom: 10px;
}

#company_3 .wrap .information .box p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

@media (max-width: 1400px) {
  #company_1 .wrap {
    max-width: 90%;
  }

  #company_3 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #company_1 .wrap img {
    width: 600px;
  }

  #company_1 .wrap .text_zone h2 {
    font-size: 24px;
  }

  #company_1 .wrap .text_zone p {
    font-size: 18px;
  }

  #company_1 .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #company_1 .wrap .text_zone {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  #company_2 p {
    font-size: 18px;
  }

  #company_3 .wrap .information h2 {
    font-size: 24px;
  }

  #company_3 .wrap .information .box table td {
    font-size: 18px;
  }

  #company_3 .wrap .information .box h3 {
    font-size: 20px;
  }

  #company_3 .wrap .information .box p {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  #company_1 .wrap .text_zone h2 {
    font-size: 20px;
  }

  #company_1 .wrap .text_zone p {
    font-size: 16px;
  }

  #company_1 .wrap img {
    width: 100%;
  }

  #company_3 .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #company_3 .wrap .map {
    max-width: 100%;
    /* height: 300px; */
    margin-bottom: 30px;
  }

  #company_3 .wrap .information {
    max-width: 100%;
  }

  #company_3 .wrap .information h2 {
    font-size: 20px;
  }

  #company_3 .wrap .information .box table td {
    font-size: 16px;
  }

  #company_3 .wrap .information .box h3 {
    font-size: 18px;
  }

  #company_3 .wrap .information .box p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  #company_2 p:first-of-type {
    margin-bottom: 30px;
  }

  #company_2 p {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #company_1 .wrap .text_zone h2 {
    font-size: 18px;
  }

  #company_1 .wrap .text_zone p {
    font-size: 14px;
  }

  /* #company_3 .wrap .map {
    height: 250px;
  } */

  #company_3 .wrap .information h2 {
    font-size: 16px;
  }

  #company_3 .wrap .information .box table td {
    font-size: 14px;
  }

  #company_3 .wrap .information .box h3 {
    font-size: 16px;
  }
}

/* company 종료 */

/* business 시작 */

#business_1 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#business_1 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#business_1 .wrap img {
  width: auto;
  height: auto;
}

#business_1 .wrap .text_zone {
  width: 600px;
  height: auto;
}

#business_1 .wrap .text_zone h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 50px;
}

#business_1 .wrap .text_zone p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#business_1 .wrap .text_zone p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#business_2 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
}

#business_2 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#business_2 .wrap img {
  width: auto;
  height: auto;
}

#business_2 .wrap .text_zone {
  width: 600px;
  height: auto;
}

#business_2 .wrap .text_zone h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 50px;
}

#business_2 .wrap .text_zone p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#business_2 .wrap .text_zone p span {
  font-family: 'PB_B';
	font-weight: bold;
}

@media (max-width: 1400px) {
  #business_1 .wrap {
    max-width: 90%;
  }

  #business_1 .wrap img {
    width: 48%;
  }

  #business_1 .wrap .text_zone {
    width: 48%;
  }

  #business_2 .wrap {
    max-width: 90%;
  }

  #business_2 .wrap img {
    width: 48%;
  }

  #business_2 .wrap .text_zone {
    width: 48%;
  }
}

@media (max-width: 1200px) {
  #business_1 .wrap .text_zone h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #business_1 .wrap .text_zone p {
    font-size: 18px;
  }

  #business_2 .wrap .text_zone h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #business_2 .wrap .text_zone p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  #business_1 .wrap,
  #business_2 .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }

  #business_1 .wrap .text_zone,
  #business_2 .wrap .text_zone  {
    width: 100%;
    text-align: center;
    order: 1;
    margin-top: 30px;
  }

  #business_1 .wrap img,
  #business_2 .wrap img {
    width: 500px;
  }
}

@media (max-width: 500px) {
  #business_1 .wrap img, #business_2 .wrap img {
    width: 100%;
  }

  #business_1 .wrap .text_zone h2,
  #business_2 .wrap .text_zone h2 {
    font-size: 20px;
  }

  #business_1 .wrap .text_zone p,
  #business_2 .wrap .text_zone p {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #business_1 .wrap .text_zone h2, #business_2 .wrap .text_zone h2 {
    font-size: 18px;
  }

  #business_1 .wrap .text_zone p, #business_2 .wrap .text_zone p {
    font-size: 14px;
  }
}

/* business 종료 */

/* product 시작 */

#product_1 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
}

#product_1 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#product_1 .wrap img {
  width: auto;
  height: auto;
}

#product_1 .wrap .text_zone {
  width: 600px;
  height: auto;
}

#product_1 .wrap .text_zone h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 50px;
}

#product_1 .wrap .text_zone p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#product_1 .wrap .text_zone p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#product_2 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product_2 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#product_2 .wrap img {
  width: auto;
  height: auto;
}

#product_2 .wrap .text_zone {
  width: 600px;
  height: auto;
}

#product_2 .wrap .text_zone h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 50px;
}

#product_2 .wrap .text_zone p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#product_2 .wrap .text_zone p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#product_3 {
  width: 100%;
  height: auto;
  padding: 247px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sub/product_item_03.png) no-repeat center / cover;
  text-align: center;
}

#product_3 .box {
  width: auto;
  height: auto;
}

#product_3 .box h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  margin-bottom: 50px;
}

#product_3 .box p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#product_3 .box p span {
  font-family: 'PB_B';
	font-weight: bold;
}

@media (max-width: 1400px) {
  #product_1 .wrap {
    max-width: 90%;
  }

  #product_1 .wrap img {
    width: 48%;
  }

  #product_1 .wrap .text_zone {
    width: 48%;
  }

  #product_2 .wrap {
    max-width: 90%;
  }

  #product_2 .wrap img {
    width: 48%;
  }

  #product_2 .wrap .text_zone {
    width: 48%;
  }
}

@media (max-width: 1200px) {
  #product_1 .wrap .text_zone h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #product_1 .wrap .text_zone p {
    font-size: 18px;
  }

  #product_2 .wrap .text_zone h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #product_2 .wrap .text_zone p {
    font-size: 18px;
  }

  #product_3 {
    padding: 150px 0;
  }

  #product_3 .box h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #product_3 .box p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  #product_1 .wrap,
  #product_2 .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }

  #product_1 .wrap .text_zone,
  #product_2 .wrap .text_zone  {
    width: 100%;
    text-align: center;
    order: 1;
    margin-top: 30px;
  }

  #product_1 .wrap img,
  #product_2 .wrap img {
    width: 500px;
  }
}

@media (max-width: 500px) {
  #product_1 .wrap img, #product_2 .wrap img {
    width: 100%;
  }

  #product_1 .wrap .text_zone h2,
  #product_2 .wrap .text_zone h2 {
    font-size: 20px;
  }

  #product_1 .wrap .text_zone p,
  #product_2 .wrap .text_zone p {
    font-size: 16px;
  }

  #product_3 .box h2 {
    font-size: 20px;
  }

  #product_3 .box p {
    font-size: 16px;
  }

  #product_3 .box p br {
    display: none;
  }

  #product_3 .box {
    width: 100%;
    max-width: 90%;
  }
}

@media (max-width: 400px) {
  #product_1 .wrap .text_zone h2, #product_2 .wrap .text_zone h2 {
    font-size: 18px;
  }

  #product_1 .wrap .text_zone p, #product_2 .wrap .text_zone p {
    font-size: 14px;
  }

  #product_3 {
    padding: 100px 0;
  }

  #product_3 .box p {
    font-size: 14px;
  }
}

/* product 종료 */

/* contact 시작 */

#contact_1 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

#contact_1 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact_1 .wrap .information {
  width: 100%;
  max-width: 47%;
  height: auto;
}

#contact_1 .wrap .information h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 74px;
  color: #222;
  margin-bottom: 30px;
}

#contact_1 .wrap .information .box {
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-bottom: 1px solid #888;
}

#contact_1 .wrap .information .box:last-of-type {
  border-bottom: none;
}

#contact_1 .wrap .information .box table {
  width: auto;
  height: auto;
  display: block;
  border-collapse: collapse;
}

#contact_1 .wrap .information .box table tr {
  display: block;
}

#contact_1 .wrap .information .box table tr:first-of-type {
  margin-bottom: 10px;
}

#contact_1 .wrap .information .box table .type {
  width: 90px;
  height: auto;
  font-family: 'PB_B';
	font-weight: bold;
  color: #888;
}

#contact_1 .wrap .information .box table td {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#contact_1 .wrap .information .box h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #888;
  margin-bottom: 10px;
}

#contact_1 .wrap .information .box p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#contact_1 .wrap form {
  width: 100%;
  max-width: 47%;
  height: auto;
}

#contact_1 .wrap form h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

#contact_1 .wrap form .box {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border: 1px solid #bdbdbd;
  margin-bottom: 10px;
}

#contact_1 .wrap form .box label {
  width: 180px;
  height: 100%;
  border-right: 1px solid #bdbdbd;
  flex-shrink: 0;
  padding-left: 50px;
  display: flex;
  align-items: center;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 18px;
  color: #222;
}

#contact_1 .wrap form .box input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0 10px;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 18px;
  color: #000;
}

#contact_1 .wrap form .checkbox {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid #bdbdbd;
  margin-bottom: 10px;
  padding-left: 50px;
}

#contact_1 .wrap form .checkbox input {
  width: 20px;
  height: 20px;
  background: #f5f5f5;
  border: 1px solid #bdbdbd;
  margin-right: 10px;
}

#contact_1 .wrap form .checkbox label {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #222;
}

#contact_1 .wrap form input[type=submit] {
  width: 100%;
  height: 60px;
  background: #000;
  color: #fff;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
}

@media (max-width: 1400px) {
  #contact_1 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #contact_1 .wrap .information h2 {
    font-size: 54px;
  }

  #contact_1 .wrap .information .box table td {
    font-size: 18px;
  }

  #contact_1 .wrap .information .box h3 {
    font-size: 24px;
  }

  #contact_1 .wrap .information .box p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  #contact_1 .wrap {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  #contact_1 .wrap .information {
    max-width: 100%;
    margin-bottom: 50px;
  }

  #contact_1 .wrap form {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  #contact_1 .wrap .information h2 {
    font-size: 36px;
  }

  #contact_1 .wrap .information .box table td {
    font-size: 16px;
  }

  #contact_1 .wrap .information .box h3 {
    font-size: 20px;
  }

  #contact_1 .wrap .information .box p {
    font-size: 16px;
  }

  #contact_1 .wrap form h2 {
    font-size: 18px;
  }

  #contact_1 .wrap form .box label {
    width: 110px;
    padding-left: 20px;
    font-size: 14px;
  }

  #contact_1 .wrap form .box input {
    font-size: 14px;
  }

  #contact_1 .wrap form .box {
    height: 45px;
    padding: 5px 0;
  }

  #contact_1 .wrap form .checkbox {
    height: 45px;
    padding-left: 20px;
  }

  #contact_1 .wrap form .checkbox input {
    width: 15px;
    height: 15px;
  }

  #contact_1 .wrap form .checkbox label {
    font-size: 12px;
  }

  #contact_1 .wrap form input[type=submit] {
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  #contact_1 .wrap .information h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  #contact_1 .wrap .information .box table td {
    font-size: 14px;
  }

  #contact_1 .wrap .information .box h3 {
    font-size: 18px;
  }

  #contact_1 .wrap .information .box p {
    font-size: 14px;
  }

  #contact_1 .wrap form h2 {
    font-size: 16px;
  }

  #contact_1 .wrap form .box {
    height: 40px;
  }

  #contact_1 .wrap form .box label {
    width: 90px;
    padding-left: 15px;
    font-size: 12px;
  }

  #contact_1 .wrap form .box input {
    font-size: 12px;
  }

  #contact_1 .wrap form .checkbox {
    height: 40px;
    padding-left: 15px;
  }

  #contact_1 .wrap form .checkbox input {
    width: 13px;
    height: 13px;
  }

  #contact_1 .wrap form .checkbox label {
    font-size: 10px;
  }

  #contact_1 .wrap form input[type=submit] {
    height: 40px;
    font-size: 14px;
  }
}

/* contact 종료 */
