/* 공통 시작 */
.page_title {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 50px;
  color: #053784;
  margin-bottom: 50px;
}

@media (max-width: 1400px) {
    .page_title {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
    .page_title {
    font-size: 36px;
  }
}

@media (max-width: 700px) {
  .page_title {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .page_title {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .page_title {
    font-size: 20px;
  }
}
/* 공통 종료 */

/* 메뉴소개 시작 */
#menu {
  width: 100%;
  height: auto;
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

#menu .wrap .banner {
  width: 100%;
  height: auto;
  padding: 130px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: url(../img/sub/menu/item_01.png) no-repeat center / cover;
  margin-bottom: 50px;
}

#menu .wrap .banner p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#menu .wrap .division {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

#menu .wrap .division li {
  width: auto;
  height: auto;
}

#menu .wrap .division li button {
  width: auto;
  height: auto;
  border: none;
  background: none;
  font-family: 'K_R';
	font-weight: normal;
  font-size: 30px;
  color: #d9d9d9;
}

#menu .wrap .division li.active button {
  color: #053784;
}

#menu .wrap .menu_list {
  width: 100%;
  height: auto;
}

#menu .wrap .menu_list .menu_group  {
  display: none;
}

#menu .wrap .menu_list .menu_group.active {
  display: block;
}

#menu .wrap .menu_list .menu_group ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

#menu .wrap .menu_list .menu_group ul li {
  width: calc((100% - 120px) / 4);
  height: 370px;
  position: relative;
}

#menu .wrap .menu_list .menu_group ul li .thumb {
  width: 100%;
  height: 100%;
}

#menu .wrap .menu_list .menu_group ul li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .wrap .menu_list .menu_group ul li .info {
  width: 100%;
  height: 80px;
  position: absolute;
  overflow: hidden;
  left: 0;
  bottom: 0;
  background: #053784;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: all 0.3s;
}

#menu .wrap .menu_list .menu_group ul li .info .name {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#menu .wrap .menu_list .menu_group ul li .info .desc {
  display: none;
  font-family: 'K_R';
	font-weight: normal;
  font-size: 16px;
  color: #fff;
}

#menu .wrap .menu_list .menu_group ul li:hover .info {
  height: 100%;
}

#menu .wrap .menu_list .menu_group ul li:hover .info .desc {
  display: block;
}

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

@media (max-width: 1400px) {
  #menu {
    padding: 100px 0;
  }

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

  #menu .wrap .banner {
    padding: 100px 0;
  }

  #menu .wrap .menu_list .menu_group ul li {
    height: 300px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .name {
    font-size: 16px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .desc {
    font-size: 14px;
  }

  #menu .wrap .menu_list .menu_group ul li .info {
    height: 60px;
  }
}

@media (max-width: 1200px) {
  #menu .wrap .menu_list .menu_group ul {
    gap: 20px;
  }

  #menu .wrap .menu_list .menu_group ul li {
    width: calc((100% - 60px) / 4);
    height: 250px;
  }

  #menu .wrap .division li button {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  #menu .wrap .banner p {
    font-size: 16px;
  }

  #menu .wrap .menu_list .menu_group ul li {
    width: calc((100% - 20px) / 2);
    height: 300px;
  }
}

@media (max-width: 700px) {
  #menu .wrap .banner p {
    font-size: 14px;
  }

  #menu .wrap .banner {
    padding: 50px 0;
  }

  #menu .wrap .division li button {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #menu {
    padding: 50px 0;
  }

  #menu .wrap .banner p br {
    display: none;
  }

  #menu .wrap .banner p {
    max-width: 90%;
  }

  #menu .wrap .menu_list .menu_group ul {
    gap: 10px;
  }

  #menu .wrap .menu_list .menu_group ul li {
    width: calc((100% - 10px) / 2);
    height: 220px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .name {
    font-size: 14px;
  }

  #menu .wrap .menu_list .menu_group ul li .info {
    height: 50px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .desc {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  #menu .wrap .banner p {
    font-size: 12px;
  }

  #menu .wrap .division li button {
    font-size: 16px;
  }

  #menu .wrap .menu_list .menu_group ul li {
    height: 150px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .name {
    font-size: 12px;
  }

  #menu .wrap .menu_list .menu_group ul li .info {
    height: 40px;
  }

  #menu .wrap .menu_list .menu_group ul li .info .desc {
    font-size: 10px;
  }
}
/* 메뉴소개 종료 */

/* 매장안내 시작 */
#store {
  width: 100%;
  height: auto;
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#store .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

#store .wrap ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
}

#store .wrap ul li {
  width: calc((100% - 100px) / 3);
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

#store .wrap ul li .name {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

#store .wrap ul li .info {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

#store .wrap ul li .tel {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

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

@media (max-width: 1400px) {
  #store {
    padding: 100px 0;
  }

  #store .wrap ul li {
    height: 350px;
  }

  #store .wrap ul li .name {
    font-size: 24px;
  }

  #store .wrap ul li .info {
    font-size: 16px;
  }

  #store .wrap ul li .tel {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  #store .wrap ul li {
    padding: 15px;
  }

  #store .wrap ul {
    gap: 20px;
  }

  #store .wrap ul li {
    width: calc((100% - 40px) / 3);
    height: 300px;
  }
}

@media (max-width: 900px) {
  #store .wrap ul li {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 700px) {
  #store .wrap ul li .name {
    font-size: 20px;
  }

  #store .wrap ul li .info {
    font-size: 14px;
  }

  #store .wrap ul li .tel {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  #store {
    padding: 50px 0;
  }

  #store .wrap ul {
    gap: 10px;
  }
  
  #store .wrap ul li {
    width: calc((100% - 10px) / 2);
    height: 200px;
  }

  #store .wrap ul li .name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #store .wrap ul li .info {
    font-size: 12px;
    margin-bottom: 5px;
  }

  #store .wrap ul li .tel {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #store .wrap ul li {
    height: 150px;
  }

  #store .wrap ul li .name {
    font-size: 14px;
  }

  #store .wrap ul li .info {
    font-size: 10px;
  }

  #store .wrap ul li .tel {
    font-size: 12px;
  }
}
/* 매장안내 종료 */

/* 인재채용 시작 */
#emp {
  width: 100%;
  height: auto;
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#emp .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

#emp .wrap h2 {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 50px;
  color: #053784;
  text-align: center;
}

#emp .wrap .line {
  width: 100%;
  height: 1px;
  background: #053784;
  margin: 50px auto;
}

#emp .wrap .txt {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

#emp .wrap .txt p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
}

#emp .wrap .txt h3 {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 30px;
  color: #053784;
}

#emp .wrap form {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

#emp .wrap form .input_wrap,
#emp .wrap form .file_wrap {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
  padding: 15px 30px;
}

#emp .wrap form .input_wrap label,
#emp .wrap form .file_wrap label:not(.input) {
  width: 210px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 15px;
}

#emp .wrap form .input_wrap label img,
#emp .wrap form .file_wrap label img {
  width: auto;
  height: auto;
}

#emp .wrap form .input_wrap input,
#emp .wrap form .input_wrap textarea {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-family: 'PB_M';
	font-weight: normal;
  border: none;
  background: none;
}

#emp .wrap form .input_wrap input::placeholder,
#emp .wrap form .input_wrap textarea::placeholder {
  color: #929292;
}

#emp .wrap form .input_wrap textarea {
  height: 100px;
  padding: 10px;
  resize: none;
}

#emp .wrap form .file_wrap {
  position: relative;
  overflow: hidden;
}

#emp .wrap form .file_wrap::after {
  content: "첨부파일은 10MB까지 등록이 가능합니다.";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 12px;
  color: #929292;
}

#emp .wrap form .file_wrap input {
  width: 0px;
  height: 0px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
}

#emp .wrap form .file_wrap .input {
  width: 55px;
  height: 25px;
  border: 1px solid #000;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 12px;
  cursor: pointer;
}

#emp .wrap form .file_wrap .input.has-image {
  width: auto;
  max-width: 100%;
  height: auto;
}

#emp .wrap form .file_wrap .input.has-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

#emp .wrap form .agree_wrap {
  width: 100%;
  height: auto;
  margin: 30px auto 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#emp .wrap form .agree_wrap input {
  width: 24px;
  height: 24px;
}

#emp .wrap form .agree_wrap label {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  cursor: pointer;
}

#emp .wrap form button {
  width: 300px;
  height: 70px;
  background: #053784;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

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

@media (max-width: 1400px) {
  #emp .wrap h2 {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  #emp {
    padding: 100px 0;
  }

  #emp .wrap h2 {
    font-size: 36px;
  }

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

  #emp .wrap .txt h3 {
    font-size: 24px;
  }

  #emp .wrap form {
    max-width: 1000%;
  }
}

@media (max-width: 900px) {
  #emp .wrap h2 {
    font-size: 32px;
  }

  #emp .wrap .txt p {
    font-size: 16px;
  }

  #emp .wrap .txt h3 {
    font-size: 20px;
  }

  #emp .wrap form .input_wrap label, #emp .wrap form .file_wrap label:not(.input) {
    width: 140px;
    font-size: 14px;
  }

  #emp .wrap form .agree_wrap input {
    width: 20px;
    height: 20px;
  }

  #emp .wrap form .agree_wrap label {
    font-size: 18px;
  }

  #emp .wrap form button {
    width: 200px;
    height: 50px;
  }
}

@media (max-width: 700px) {
  #emp .wrap h2 {
    font-size: 24px;
  }

  #emp .wrap .line {
    margin: 30px auto;
  }

  #emp .wrap .txt p {
    font-size: 14px;
  }

  #emp .wrap .txt h3 {
    font-size: 18px;
  }

  #emp .wrap form .input_wrap, #emp .wrap form .file_wrap {
    padding: 15px 10px;
  }

  #emp .wrap form .agree_wrap input {
    width: 18px;
    height: 18px;
  }

  #emp .wrap form .agree_wrap label {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  #emp {
    padding: 50px 0;
  }

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

  #emp .wrap .txt p br {
    display: none;
  }

  #emp .wrap .txt h3 {
    font-size: 16px;
  }

  #emp .wrap form .input_wrap, #emp .wrap form .file_wrap {
    flex-wrap: wrap;
    gap: 15px;
  }

  #emp .wrap form .input_wrap label, #emp .wrap form .file_wrap label:not(.input) {
    width: 100%;
  }

  #emp .wrap form .file_wrap::after {
    display: none;
  }

  #emp .wrap form .input_wrap input, #emp .wrap form .input_wrap textarea {
    padding: 0;
  }

  #emp .wrap form .input_wrap textarea {
    padding: 0;
  }

  #emp .wrap form .agree_wrap input {
    width: 15px;
    height: 15px;
  }

  #emp .wrap form .agree_wrap label {
    font-size: 14px;
  }

  #emp .wrap form button {
    width: 150px;
    height: 40px;
    font-size: 18px;
  }
}

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

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

  #emp .wrap .txt h3 {
    font-size: 14px;
  }

  #emp .wrap form .input_wrap input, #emp .wrap form .input_wrap textarea {
    height: 30px;
  }

  #emp .wrap form .input_wrap textarea {
    height: 60px;
  }

  #emp .wrap form button {
    width: 120px;
    height: 35px;
    font-size: 16px;
  }
}
/* 인재채용 종료 */

/* 멘츠루스토리 시작 */
#story {
  width: 100%;
  height: auto;
  padding: 130px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

#story .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

#story .wrap .con_1 {
  width: 100%;
  height: 725px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#story .wrap .con_1 .txt_1 {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#story .wrap .con_1 .txt_1 h2 {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 50px;
  color: #053784;
  margin-bottom: 50px;
}

#story .wrap .con_1 .txt_1 p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 30px;
}

#story .wrap .con_1 .txt_1 p span {
  color: #053784;
}

#story .wrap .con_1 .txt_1 .img_box {
  width: auto;
  height: auto;
  display: flex;
}

#story .wrap .con_1 .txt_1 .img_box img {
  width: auto;
  height: auto;
}

#story .wrap .con_1 .txt_2 {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#story .wrap .con_1 .txt_2 p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
}

#story .wrap .con_1 .txt_3 {
  width: 39%;
  height: 100%;
}

#story .wrap .con_1 .txt_3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#story.blue {
  background: #053784;
}

#story .con_2 {
  width: 100%;
  height: auto;
}

#story .con_2 .top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#story .con_2 .top h2 {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 50px;
  color: #fff;
}

#story .con_2 .top p {
  text-align: right;
  font-family: 'K_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#story .con_2 .line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 50px auto;
}

#story .con_2 .bottom {
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: space-between;
}

#story .con_2 .bottom .box_1 {
  width: 52%;
  height: 100%;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid #fff;
}

#story .con_2 .bottom .box_1 img {
  width: auto;
  height: auto;
}

#story .con_2 .bottom .box_1 .txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#story .con_2 .bottom .box_1 .txt h3 {
  font-family: 'K_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#story .con_2 .bottom .box_1 .txt p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 16px;
  color: #fff;
}

#story .con_2 .bottom .box_2 {
  width: 44%;
  height: 100%;
  border: 1px solid #fff;
  padding: 50px;
}

#story .con_2 .bottom .box_2 .item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

#story .con_2 .bottom .box_2 .item img {
  width: auto;
  height: auto;
}

#story .con_2 .bottom .box_2 .item .txt {
  width: auto;
  height: auto;
}

#story .con_2 .bottom .box_2 .item .txt h3 {
  font-family: 'K_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

#story .con_2 .bottom .box_2 .item .txt p {
  font-family: 'K_R';
	font-weight: normal;
  font-size: 16px;
  color: #fff;
}

#story .con_2 .bottom .box_2 .inline {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 50px auto;
}

.story_background {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.story_background img {
  width: auto;
  height: auto;
  position: fixed;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

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

  #story .wrap .con_1 .txt_3 {
    width: 30%;
  }

  #story .con_2 .bottom {
    flex-wrap: wrap;
    height: auto;
    gap: 50px;
  }

  #story .con_2 .bottom .box_1,
  #story .con_2 .bottom .box_2 {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1400px) {
  #story .wrap .con_1 .txt_1 h2 {
    font-size: 42px;
  }

  #story .wrap .con_1 .txt_1 p {
    font-size: 24px;
  }

  #story .wrap .con_1 .txt_1 .img_box img {
    width: 100px;
  }

  #story .wrap .con_1 .txt_2 p {
    font-size: 18px;
  }

  #story .con_2 .top h2 {
    font-size: 42px;
  }

  #story .con_2 .top p {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  #story {
    padding: 100px 0;
  }

  #story .wrap .con_1 {
    height: auto;
    flex-wrap: wrap;
    gap: 50px;
  }

  #story .wrap .con_1 .txt_1 {
    width: 100%;
    align-items: center;
    flex-direction: row;
  }

  #story .wrap .con_1 .txt_2 {
    width: 100%;
    text-align: center;
  }

  #story .wrap .con_1 .txt_3 {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 900px) {
  #story .wrap .con_1 .txt_1 {
    flex-wrap: wrap;
  }

  #story .wrap .con_1 .txt_1 h2 {
    font-size: 36px;
  }

  #story .wrap .con_1 .txt_1 p {
    font-size: 20px;
  }

  #story .wrap .con_1 .txt_1 .img_box img {
    width: 80px;
  }

  #story .wrap .con_1 .txt_3 {
    height: 300px;
  }

  #story .con_2 .top h2 {
    font-size: 36px;
  }

  #story .con_2 .bottom .box_1 img {
    width: 150px;
  }

  #story .con_2 .bottom .box_2 .item img {
    width: 150px;
  }

  #story .con_2 .bottom .box_1 .txt {
    gap: 20px;
  }

  #story .con_2 .bottom .box_1 .txt h3 {
    font-size: 18px;
  }

  #story .con_2 .bottom .box_1 .txt p {
    font-size: 14px;
  }

  #story .con_2 .bottom .box_2 .item .txt h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  #story .con_2 .bottom .box_2 .item .txt p {
    font-size: 14px;
  }

  .story_background img {
    width: 1400px;
  }

  .story_background {
    height: 300px;
  }

  .story_background img {
    top: 45%;
  }
}

@media (max-width: 700px) {
  #story .wrap .con_1 .txt_1 h2 {
    font-size: 32px;
  }

  #story .wrap .con_1 .txt_1 p {
    font-size: 18px;
  }

  #story .wrap .con_1 .txt_1 .img_bo {
    width: 100%;
  }

  #story .wrap .con_1 .txt_1 {
    gap: 30px;
  }

  #story .wrap .con_1 .txt_2 p {
    font-size: 16px;
  }

  #story .con_2 .top h2 {
    font-size: 32px;
  }

  #story .con_2 .top p {
    font-size: 16px;
  }

  #story .con_2 .bottom .box_1 {
    padding: 30px;
    gap: 30px;
  }

  #story .con_2 .bottom .box_2 {
    padding: 30px;
  }

  #story .con_2 .bottom .box_1 img,
  #story .con_2 .bottom .box_2 .item img {
    width: 120px;
  }

  #story .con_2 .bottom .box_1 .txt h3,
  #story .con_2 .bottom .box_2 .item .txt h3 {
    font-size: 16px;
  }

  #story .con_2 .bottom .box_1 .txt p,
  #story .con_2 .bottom .box_2 .item .txt p {
    font-size: 12px;
  }

  #story .con_2 .bottom .box_1 .txt p br,
  #story .con_2 .bottom .box_2 .item .txt p br {
    display: none;
  }

  #story .con_2 .bottom .box_1 .txt {
    gap: 10px;
  }
}

@media (max-width: 500px) {
  #story {
    padding: 50px 0;
  }

  #story .wrap .con_1 .txt_1 h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #story .wrap .con_1 .txt_1 p {
    font-size: 16px;
  }

  #story .wrap .con_1 .txt_1 .img_box img {
    width: 60px;
  }

  #story .wrap .con_1 .txt_2 {
    gap: 10px;
  }

  #story .wrap .con_1 .txt_2 p {
    font-size: 14px;
  }

  #story .wrap .con_1 .txt_3 {
    height: 200px;
  }

  #story .con_2 .top {
    flex-wrap: wrap;
    gap: 30px;
  }

  #story .con_2 .bottom .box_2 .item {
    gap: 30px;
  }

  #story .con_2 .top h2 {
    font-size: 24px;
  }

  #story .con_2 .top p {
    font-size: 14px;
    width: 100%;
  }

  #story .con_2 .bottom .box_1,
  #story .con_2 .bottom .box_2 .item {
    flex-wrap: wrap;
    justify-content: center;
  }

  #story .con_2 .bottom .box_1 .txt,
  #story .con_2 .bottom .box_2 .item .txt {
    width: 100%;
  }

  .story_background {
    height: 250px;
  }

  .story_background img {
    top: 60%;
  }
}

@media (max-width: 400px) {
  #story .wrap .con_1 .txt_1 h2 {
    font-size: 20px;
  }

  #story .wrap .con_1 .txt_1 p {
    font-size: 14px;
  }

  #story .wrap .con_1 .txt_2 p {
    font-size: 12px;
  }

  #story .wrap .con_1 .txt_3 {
    height: 150px;
  }

  #story .con_2 .top h2 {
    font-size: 20px;
  }

  #story .con_2 .line,
  #story .con_2 .bottom .box_2 .inline {
    margin: 30px auto;
  }

  #story .con_2 .bottom {
    gap: 30px;
  }
}
/* 멘츠루스토리 종료 */