#sec_01 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/main/sec_01_background.png) no-repeat left / cover;
}

#sec_01 .t_box {
  width: auto;
  height: auto;
  position: absolute;
  left: 19%;
  bottom: 32%;
}

#sec_01 .t_box h2 {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
}

#sec_01 .t_box h1 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 40px;
  color: #F1601B;
  margin-bottom: 10px;
}

#sec_01 .t_box h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #333;
}

#sec_01 .t_box h3 span {
  color: #F1601B;
}

#line {
  width: 100%;
  height: auto;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 25px 0;
}

#line .item {
  width: 100%;
  height: 50px;
  background: url(../img/main/line.png) repeat-x left / cover;
  animation: line 60s infinite linear;
}

@keyframes line {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 1000% 0%;
  }
}

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

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

#sec_02 .wrap .box {
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
}

#sec_02 .wrap .box .circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

#sec_02 .wrap .box .circle:hover {
  border: 2px solid #F1601B;
}

#sec_02 .wrap .box .circle img {
  width: auto;
  height: auto;
}

#sec_02 .wrap .box p {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #333;
}

#sec_03 {
  width: 100%;
  height: 100vh;
  background: url(../img/main/sec_03_background.png) no-repeat center / cover;
  margin-bottom: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#sec_03 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  padding: 100px 0;
  text-align: center;
  background: #fff;
  border: 1px solid #d9d9d9;
}

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

#sec_03 .wrap h2 span {
  color: #F1601B;
}

#sec_03 .wrap p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #333;
}

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

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

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

.sec_07 .wrap .next_btn {
  width: auto;
  height: auto;
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.sec_07 .wrap .left_box {
  width: auto;
  height: auto;
}

.sec_07 .wrap .left_box h2 {
  font-family: 'PB_B';
  font-size: 30px;
  color: #F1601B;
  margin-bottom: 20px;
}

.sec_07 .wrap .left_box h3 {
  font-family: 'PB_B';
  font-size: 20px;
  color: #333;
  margin-bottom: 100px;
}

.sec_07 .wrap .left_box .progress_bar {
  width: auto;
  height: auto;
}
.sec_07 .wrap .left_box .progress_bar .num {
  font-family: 'PB_B';
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
.sec_07 .wrap .left_box .progress_bar .line {
  width: 300px;
  height: 3px;
  background: #888;
  overflow: hidden;
}
.sec_07 .wrap .left_box .progress_bar .progress {
  height: 100%;
  background: #F1601B;
  width: 0;
  transition: width 0.3s ease;
}

.sec_07 .wrap .right_box {
  width: 100%;
  max-width: 820px;
  height: auto;
}

.sec_07 .wrap .right_box .box_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.sec_07 .wrap .right_box .box_container .box {
  width: calc((100% - 100px) / 3);
  height: 100px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec_07 .wrap .right_box .box_container .box img {
  width: auto;
  height: auto;
}

#sec_04 {
  width: 100%;
  height: auto;
  padding: 150px 0;
  background: #ffffff;
  text-align: center;
}

#sec_04 h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
}

#sec_04 p {
  font-size: 14px;
  color: #333;
}

#sec_05 {
  width: 100%;
  height: auto;
  padding: 150px 0;
  background-color: #FBFBFB;
}

#sec_05 h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

#sec_05 h2 span {
  color: #F1601B;
}

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

#sec_05 .wrap .box {
  width: 320px;
  height: auto;
  border-radius: 20px;
  border: 1px solid #F1601B;
  text-align: center;
  padding: 50px 0;
  cursor: pointer;
  transition: all 0.3s;
}

#sec_05 .wrap .box h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 40px;
  margin-bottom: 30px;
  color: #333;
}

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

#sec_05 .wrap .box:hover {
  background: #F1601B;
}

#sec_05 .wrap .box:hover h3 {
  color: #fff;
}

#sec_05 .wrap .box:hover p {
  color: #fff;
}

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

#sec_06 .wrap {
  width: 100%;
  max-width: 900px;
  height: auto;
}

#sec_06 .wrap h2 {
  text-align: center;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
}

#sec_06 .wrap h2 span {
  color: #F1601B;
}

#sec_06 .wrap form {
  width: 100%;
  height: auto;
}

#sec_06 .wrap form .box {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #B3B3B3;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_06 .wrap form .box:last-of-type {
  border-bottom: 0;
}

#sec_06 .wrap form .box label {
  width: 170px;
  height: auto;
  display: block;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 15px;
  color: #333;
  flex-shrink: 0;
}

#sec_06 .wrap form .box input[type=text],
#sec_06 .wrap form .box input[type=tel],
#sec_06 .wrap form .box input[type=email],
#sec_06 .wrap form .box textarea {
  width: 100%;
  height: 50px;
  background: none;
  border: none;
	font-family: 'PB_M';
	font-weight: normal;
  font-size: 15px;
}

#sec_06 .wrap form .box div {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
}

#sec_06 .wrap form .box div:first-of-type {
  margin-right: 25px;
}

#sec_06 .wrap form .box div input[type=radio] {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

#sec_06 .wrap form .box div span {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #333;
}

#sec_06 .wrap form .box textarea {
  height: 85px;
  resize: none;
  padding: 10px 0;
}

#sec_06 .wrap form .check_box {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #B3B3B3;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 50px;
}

#sec_06 .wrap form .check_box input {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

#sec_06 .wrap form .check_box label {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #333;
}

#sec_06 .wrap form input[type=submit] {
  width: 200px;
  height: 50px;
  background: #F1601B;
  border: none;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .sec_07 .wrap {
    max-width: 90%;
  }

  .sec_07 .wrap .next_btn {
    right: unset;
    top: unset;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    width: 40px;
  }
}

@media (max-width: 1400px) {
  #sec_01 .t_box {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 20%;
    padding: 30px 50px;
    background: rgba(000, 000, 000, 0.5);
  }

  #sec_01 .t_box h2 {
    color: #fff;
  }

  #sec_01 .t_box h1 {
    color: #fff;
  }

  #sec_01 .t_box h1 span {
    color: #fff;
  }  

  #sec_01 .t_box h3 {
    color: #fff;
  }

  #sec_02 .wrap {
    flex-wrap: wrap;
    max-width: 820px;
  }

  #sec_02 .wrap .box:nth-of-type(n+4) {
    margin-top: 30px;
  }

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

  #sec_05 h2 {
    font-size: 24px;
  }

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

  #sec_05 .wrap .box {
    width: 24%;
  }

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

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

  .sec_07 .wrap {
    flex-wrap: wrap;
  }

  .sec_07 .wrap .left_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .sec_07 .wrap .right_box {
    max-width: 100%;
  }  
}

@media (max-width: 1200px) {
  #sec_01 .t_box h2 {
    font-size: 24px;
  }

  #sec_01 .t_box h1 {
    font-size: 62px;
  }

  #sec_01 .t_box h3 {
    font-size: 24px;
  }

  #sec_01 {
    background: url(../img/main/sec_01_background.png) no-repeat center / cover;
  }

  #line .item {
    height: 35px;
  }

  #sec_05 h2 {
    font-size: 20px;
  }

  #sec_05 .wrap {
    flex-wrap: wrap;
  }

  #sec_05 .wrap .box {
    width: 49%;
  }

  #sec_05 .wrap .box:nth-of-type(n+3) {
    margin-top: 2%;
  }
}

@media (max-width: 900px) {
  #sec_02 .wrap .box .circle img {
    width: 90px;
  }

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

  #sec_02 .wrap .box .circle {
    width: 150px;
    height: 150px;
  }

  #sec_02 .wrap {
    max-width: 490px;
  }

  #sec_02 {
    padding: 50px 0;
  }

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

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

  #sec_03 .wrap {
    padding: 50px 0;
  }

  #sec_06 .wrap form {
    width: 90%;
    margin: 0 auto;
  }

  .sec_07 .wrap .left_box h2 {
    font-size: 24px;
  }

  .sec_07 .wrap .left_box h3 {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .sec_07 .wrap .right_box .box_container .box img {
    height: 16px;
  }

  .sec_07 .wrap .right_box .box_container {
    gap: 20px;
    justify-content: center;
  }

  .sec_07 .wrap .right_box .box_container .box {
    width: calc((100% - 40px) / 3);
    height: 50px;
    border-radius: 5px;
  }
}

@media (max-width: 700px) {
  #sec_01 .t_box h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #sec_01 .t_box h1 {
    font-size: 36px;
  }

  #sec_01 .t_box h3 {
    font-size: 18px;
  }

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

  #sec_03 .wrap p {
    font-size: 15px;
  }

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

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

  #sec_04 h2 {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #sec_01 .t_box h2 {
    font-size: 16px;
  }

  #sec_01 .t_box h1 {
    font-size: 28px;
  }

  #sec_01 .t_box {
    padding: 30px;
  }

  #line .item {
    height: 30px;
    animation: line 80s infinite linear;
  }

  #line {
    padding: 15px 0;
  }

  #sec_02 .wrap {
    max-width: 320px;
  }

  #sec_02 .wrap .box:nth-of-type(n+3) {
    margin-top: 30px;
  }

  #sec_03 .wrap p br {
    display: none;
  }

  #sec_03 .wrap {
    padding: 30px;
  }

  #sec_03 {
    height: 400px;
  }

  #sec_05 .wrap .box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  #sec_05 .wrap .box p {
    font-size: 10px;
  }

  #sec_05 .wrap .box {
    padding: 30px 0;
  }

  #sec_03 {
    margin-bottom: 50px;
  }

  #sec_05 {
    padding: 50px 0;
  }

  #sec_06 {
    padding: 50px 0;
  }

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

  #sec_06 .wrap form .box {
    padding: 0 10px;
  }

  #sec_06 .wrap form .box label {
    width: 60px;
    font-size: 12px;
  }

  #sec_06 .wrap form .box input[type=text], #sec_06 .wrap form .box input[type=tel], #sec_06 .wrap form .box input[type=email], #sec_06 .wrap form .box textarea {
    height: 35px;
    font-size: 12px;
  }

  #sec_06 .wrap form .box div {
    height: 35px;
  }

  #sec_06 .wrap form .box div input[type=radio] {
    width: 12px;
    height: 12px;
  }

  #sec_06 .wrap form .box div span {
    font-size: 12px;
  }

  #sec_06 .wrap form .check_box {
    height: 35px;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  #sec_06 .wrap form .check_box input {
    width: 12px;
    height: 12px;
  }

  #sec_06 .wrap form .check_box label {
    font-size: 12px;
  }

  #sec_06 .wrap form input[type=submit] {
    width: 140px;
    height: 35px;
    font-size: 16px;
  }

  #sec_04 {
    padding: 50px 0;
  }

  .sec_07 {
    padding: 50px 0 100px;
  }

  .sec_07 .wrap .next_btn {
    width: 35px;
    bottom: -70px;
  }

  .sec_07 .wrap .left_box h2 {
    font-size: 20px;
  }

  .sec_07 .wrap .left_box h3 {
    font-size: 14px;
  }

  .sec_07 .wrap .left_box .progress_bar .num {
    font-size: 16px;
  }

  .sec_07 .wrap .left_box .progress_bar .line {
    width: 150px;
  }

  .sec_07 .wrap .right_box .box_container .box {
    width: calc((100% - 20px) / 2);
    height: 40px;
  }  
}

@media (max-width: 400px) {
  #sec_01 .t_box h1 {
    font-size: 20px;
  }

  #sec_01 .t_box h3 {
    font-size: 14px;
  }

  #sec_02 .wrap .box .circle img {
    width: 60px;
  }

  #sec_02 .wrap .box .circle {
    width: 100px;
    height: 100px;
  }

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

  #sec_02 .wrap {
    max-width: 230px;
  }

  #sec_03 .wrap h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #sec_03 .wrap p {
    font-size: 12px;
  }

  #sec_03 {
    height: 350px;
  }

  #sec_05 {
    padding: 100px 0;
  }

  #sec_05 h2 {
    font-size: 16px;
  }

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

  #sec_05 .wrap .box p {
    font-size: 8px;
  }

  #sec_05 h2 {
    padding: 0 20px;
  }

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

  #sec_04 h2 {
    font-size: 16px;
  }
}